Skip to content

Commit 8101a35

Browse files
committed
chore: Finalize build
1 parent 3a7f8be commit 8101a35

File tree

11 files changed

+43
-24
lines changed

11 files changed

+43
-24
lines changed

browser/public/index.html

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,9 @@
445445
<a class="nav-link" href="#" data-nav="/samples/grids/grid/conditional-cell-style-2"><span>Conditional Cell Style2</span></a>
446446
<a class="nav-link" href="#" data-nav="/samples/grids/grid/conditional-row-selectors"><span>Conditional Row Selectors</span></a>
447447
<a class="nav-link" href="#" data-nav="/samples/grids/grid/custom-context-menu"><span>Custom Context Menu</span></a>
448+
<a class="nav-link" href="#" data-nav="/samples/grids/grid/custom-filtering"><span>Custom Filtering</span></a>
448449
<a class="nav-link" href="#" data-nav="/samples/grids/grid/data-batch-editing-actions"><span>Data Batch Editing Actions</span></a>
450+
<a class="nav-link" href="#" data-nav="/samples/grids/grid/data-exporting-indicator"><span>Data Exporting Indicator</span></a>
449451
<a class="nav-link" href="#" data-nav="/samples/grids/grid/data-paste-options"><span>Data Paste Options</span></a>
450452
<a class="nav-link" href="#" data-nav="/samples/grids/grid/data-performance-virtualization"><span>Data Performance Virtualization</span></a>
451453
<a class="nav-link" href="#" data-nav="/samples/grids/grid/data-searching"><span>Data Searching</span></a>
@@ -702,13 +704,13 @@
702704
<a class="nav-link" href="#" data-nav="/samples/inputs/switches/label"><span>Label</span></a>
703705
<a class="nav-link" href="#" data-nav="/samples/inputs/switches/overview"><span>Overview</span></a>
704706
</div>
705-
<label id="nav-textarea" class="nav-component">Textarea</label>
706-
<div id="nav-textarea-list" class="nav-list" state="collapsed">
707-
<a class="nav-link" href="#" data-nav="/samples/input/textarea/form-integration">-<span>Form Integration</span></a>
708-
<a class="nav-link" href="#" data-nav="/samples/input/textarea/overview">-<span>Overview</span></a>
709-
<a class="nav-link" href="#" data-nav="/samples/input/textarea/resize">-<span>Resize</span></a>
710-
<a class="nav-link" href="#" data-nav="/samples/input/textarea/slots">-<span>Slots</span></a>
711-
<a class="nav-link" href="#" data-nav="/samples/input/textarea/styling">-<span>Styling</span></a>
707+
<label id="nav-textarea" class="nav-component">Textarea</label>
708+
<div id="nav-textarea-list" class="nav-list" state="collapsed">
709+
<a class="nav-link" href="#" data-nav="/samples/inputs/textarea/form-integration"><span>Form Integration</span></a>
710+
<a class="nav-link" href="#" data-nav="/samples/inputs/textarea/overview"><span>Overview</span></a>
711+
<a class="nav-link" href="#" data-nav="/samples/inputs/textarea/resize"><span>Resize</span></a>
712+
<a class="nav-link" href="#" data-nav="/samples/inputs/textarea/slots"><span>Slots</span></a>
713+
<a class="nav-link" href="#" data-nav="/samples/inputs/textarea/styling"><span>Styling</span></a>
712714
</div>
713715

714716
<div class="nav-group">LAYOUTS</div>
@@ -871,4 +873,4 @@
871873
</div>
872874

873875
</body>
874-
</html>
876+
</html>

samples/inputs/textarea/form-integration/ReadMe.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- NOTE: do not change this file because it's auto re-generated from template: -->
22
<!-- https://github.com/IgniteUI/igniteui-wc-examples/tree/vnext/templates/browser/sample/ReadMe.md -->
33

4-
This folder contains implementation of Web Components application with example of Overview feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
4+
This folder contains implementation of Web Components application with example of Form Integration feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
5+
56

67
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
78
<body>
@@ -31,7 +32,6 @@ cd ./samples/inputs/textarea/form-integration
3132
```
3233

3334
open above folder in VS Code or type:
34-
3535
```
3636
code .
3737
```
@@ -45,6 +45,7 @@ npm run start
4545

4646
Then open http://localhost:4200/ in your browser
4747

48+
4849
## Learn More
4950

5051
To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html).

samples/inputs/textarea/form-integration/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { defineComponents, IgcTextareaComponent, IgcButtonComponent, IgcToastComponent } from "igniteui-webcomponents";
2-
import "igniteui-webcomponents/themes/light/fluent.css";
2+
import "igniteui-webcomponents/themes/light/bootstrap.css";
33
import "./index.css";
44

55
defineComponents(IgcTextareaComponent, IgcButtonComponent, IgcToastComponent);
66

7-
export class IgcTextareaFormIntegration {
7+
export class TextareaFormIntegration {
88
constructor() {
99
const toast = document.querySelector("#submitted") as IgcToastComponent;
1010
const form = document.querySelector("#form") as HTMLFormElement;
@@ -16,4 +16,4 @@ export class IgcTextareaFormIntegration {
1616
}
1717
}
1818

19-
new IgcTextareaFormIntegration();
19+
new TextareaFormIntegration();

samples/inputs/textarea/overview/ReadMe.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
This folder contains implementation of Web Components application with example of Overview feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
55

6+
67
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
78
<body>
89
<a target="_blank" href="https://infragistics.com/webcomponentssite/components/general-getting-started.html" rel="noopener noreferrer">
@@ -31,7 +32,6 @@ cd ./samples/inputs/textarea/overview
3132
```
3233

3334
open above folder in VS Code or type:
34-
3535
```
3636
code .
3737
```
@@ -45,6 +45,7 @@ npm run start
4545

4646
Then open http://localhost:4200/ in your browser
4747

48+
4849
## Learn More
4950

5051
To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html).

samples/inputs/textarea/overview/src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ import { defineComponents, IgcTextareaComponent } from "igniteui-webcomponents";
22
import "igniteui-webcomponents/themes/light/bootstrap.css";
33

44
defineComponents(IgcTextareaComponent);
5+
6+
export class TextareaOverview {
7+
constructor() {}
8+
}
9+
10+
new TextareaOverview();

samples/inputs/textarea/resize/ReadMe.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- NOTE: do not change this file because it's auto re-generated from template: -->
22
<!-- https://github.com/IgniteUI/igniteui-wc-examples/tree/vnext/templates/browser/sample/ReadMe.md -->
33

4-
This folder contains implementation of Web Components application with example of Overview feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
4+
This folder contains implementation of Web Components application with example of Resize feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
5+
56

67
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
78
<body>
@@ -31,7 +32,6 @@ cd ./samples/inputs/textarea/resize
3132
```
3233

3334
open above folder in VS Code or type:
34-
3535
```
3636
code .
3737
```
@@ -45,6 +45,7 @@ npm run start
4545

4646
Then open http://localhost:4200/ in your browser
4747

48+
4849
## Learn More
4950

5051
To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html).

samples/inputs/textarea/resize/src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,9 @@ import { defineComponents, IgcTextareaComponent } from "igniteui-webcomponents";
22
import "igniteui-webcomponents/themes/light/bootstrap.css";
33

44
defineComponents(IgcTextareaComponent);
5+
6+
export class TextareaResize {
7+
constructor() {}
8+
}
9+
10+
new TextareaResize();

samples/inputs/textarea/slots/ReadMe.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- NOTE: do not change this file because it's auto re-generated from template: -->
22
<!-- https://github.com/IgniteUI/igniteui-wc-examples/tree/vnext/templates/browser/sample/ReadMe.md -->
33

4-
This folder contains implementation of Web Components application with example of Overview feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
4+
This folder contains implementation of Web Components application with example of Slots feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
5+
56

67
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
78
<body>
@@ -31,7 +32,6 @@ cd ./samples/inputs/textarea/slots
3132
```
3233

3334
open above folder in VS Code or type:
34-
3535
```
3636
code .
3737
```
@@ -45,6 +45,7 @@ npm run start
4545

4646
Then open http://localhost:4200/ in your browser
4747

48+
4849
## Learn More
4950

5051
To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html).

samples/inputs/textarea/slots/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import "igniteui-webcomponents/themes/light/bootstrap.css";
33

44
defineComponents(IgcIconComponent, IgcTextareaComponent);
55

6-
export class IgcTextareaSlot {
6+
export class TextareaSlots {
77
constructor() {
88
registerIconFromText(
99
"feedback",
@@ -12,4 +12,4 @@ export class IgcTextareaSlot {
1212
}
1313
}
1414

15-
new IgcTextareaSlot();
15+
new TextareaSlots();

samples/inputs/textarea/styling/ReadMe.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- NOTE: do not change this file because it's auto re-generated from template: -->
22
<!-- https://github.com/IgniteUI/igniteui-wc-examples/tree/vnext/templates/browser/sample/ReadMe.md -->
33

4-
This folder contains implementation of Web Components application with example of Overview feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
4+
This folder contains implementation of Web Components application with example of Styling feature using [Textarea](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component.
5+
56

67
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
78
<body>
@@ -31,7 +32,6 @@ cd ./samples/inputs/textarea/styling
3132
```
3233

3334
open above folder in VS Code or type:
34-
3535
```
3636
code .
3737
```
@@ -45,6 +45,7 @@ npm run start
4545

4646
Then open http://localhost:4200/ in your browser
4747

48+
4849
## Learn More
4950

5051
To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html).

0 commit comments

Comments
 (0)