Skip to content

Commit 509e738

Browse files
Merge pull request #897 from IgniteUI/ESShared/XPlaform_examples_igniteui-xplat-examples-output+PRs_2024.12.13.3
Changes from igniteui-xplat-examples-output+PRs_2024.12.13.3
2 parents 97d5f80 + 49812ee commit 509e738

File tree

2,051 files changed

+25652
-8809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,051 files changed

+25652
-8809
lines changed

browser/public/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@
105105
<a class="nav-link" href="#" data-nav="/samples/charts/category-chart/trendline"><span>Trendline</span></a>
106106
<a class="nav-link" href="#" data-nav="/samples/charts/category-chart/value-lines"><span>Value Lines</span></a>
107107
</div>
108+
<label id="nav-dashboard-tile" class="nav-component">Dashboard Tile</label>
109+
<div id="nav-dashboard-tile-list" class="nav-list" state="collapsed">
110+
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/chart-dashboard"><span>Chart Dashboard</span></a>
111+
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/gauge-dashboard"><span>Gauge Dashboard</span></a>
112+
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/map-dashboard"><span>Map Dashboard</span></a>
113+
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/pie-dashboard"><span>Pie Dashboard</span></a>
114+
</div>
108115
<label id="nav-data-chart" class="nav-component">Data Chart</label>
109116
<div id="nav-data-chart-list" class="nav-list" state="collapsed">
110117
<a class="nav-link" href="#" data-nav="/samples/charts/data-chart/annotations-custom"><span>Annotations Custom</span></a>
@@ -292,6 +299,7 @@
292299
<div id="nav-toolbar-list" class="nav-list" state="collapsed">
293300
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/actions-built-in-category-chart"><span>Actions Built In Category Chart</span></a>
294301
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/actions-built-in-data-chart"><span>Actions Built In Data Chart</span></a>
302+
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/color-editor-support"><span>Color Editor Support</span></a>
295303
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/custom-tool"><span>Custom Tool</span></a>
296304
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/layout-actions-for-data-chart"><span>Layout Actions For Data Chart</span></a>
297305
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/layout-in-vertical-orientation"><span>Layout In Vertical Orientation</span></a>
@@ -814,6 +822,10 @@
814822
<a class="nav-link" href="#" data-nav="/samples/inputs/circular-progress-indicator/simple"><span>Simple</span></a>
815823
<a class="nav-link" href="#" data-nav="/samples/inputs/circular-progress-indicator/styling"><span>Styling</span></a>
816824
</div>
825+
<label id="nav-color-editor" class="nav-component">Color Editor</label>
826+
<div id="nav-color-editor-list" class="nav-list" state="collapsed">
827+
<a class="nav-link" href="#" data-nav="/samples/inputs/color-editor/overview"><span>Overview</span></a>
828+
</div>
817829
<label id="nav-combo" class="nav-component">Combo</label>
818830
<div id="nav-combo-list" class="nav-list" state="collapsed">
819831
<a class="nav-link" href="#" data-nav="/samples/inputs/combo/features"><span>Features</span></a>

package-lock.json

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"igniteui-webcomponents-maps": "5.1.1-beta.0",
5454
"igniteui-webcomponents-spreadsheet": "5.1.1-beta.0",
5555
"igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.0",
56+
"igniteui-webcomponents-dashboards": "5.1.1-beta.0",
5657
"lit": "^3.2.0",
5758
"lit-html": "^3.2.0"
5859
},

samples/charts/category-chart/annotations-all/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
final-value-annotations-text-color="white"
8383
final-value-annotations-precision="0"
8484
y-axis-maximum-value="35"
85-
y-axis-label-location="OutsideRight">
85+
y-axis-label-location="OutsideRight"
86+
is-transition-in-enabled="false">
8687
</igc-category-chart>
8788
</div>
8889
</div>

samples/charts/category-chart/annotations-all/sandbox.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
"hardReloadOnChange": false,
44
"view": "browser",
55
"template": "parcel"
6-
}
7-
6+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/* shared styles are loaded from: */
2-
/* https://static.infragistics.com/xplatform/css/samples */
2+
/* https://static.infragistics.com/xplatform/css/samples */
3+

samples/charts/category-chart/annotations-all/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
44
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
55
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
66
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';
7+
78
import 'igniteui-webcomponents/themes/light/bootstrap.css';
89
import { defineAllComponents } from 'igniteui-webcomponents';
910
import { ModuleManager } from 'igniteui-webcomponents-core';
10-
1111
defineAllComponents();
1212

1313
import "./index.css";
@@ -41,6 +41,7 @@ export class Sample {
4141
chart.dataSource = this.temperatureAnnotatedData;
4242
}
4343
this._bind();
44+
4445
}
4546

4647
private _temperatureAnnotatedData: TemperatureAnnotatedData = null;

samples/charts/category-chart/annotations-all/tsconfig.json

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,34 @@
11
{
22
"compilerOptions": {
3-
"noImplicitReturns": true,
4-
"esModuleInterop": true,
5-
"noImplicitAny": true,
6-
"declarationDir": "dist/types",
7-
"moduleResolution": "node",
8-
"declaration": true,
9-
"target": "es2015",
10-
"module": "es2015",
11-
"strict": true
3+
"noImplicitReturns": true,
4+
"esModuleInterop": true,
5+
"resolveJsonModule": true,
6+
"noImplicitAny": true,
7+
"declarationDir": "dist/types",
8+
"moduleResolution": "node",
9+
"declaration": true,
10+
"target": "es2015",
11+
"module": "es2015",
12+
"strict": true,
13+
"strictNullChecks": false,
14+
"baseUrl": ".",
15+
"paths": {
16+
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
17+
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
18+
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
19+
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
20+
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
21+
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
22+
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
23+
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
24+
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
25+
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
26+
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
27+
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
28+
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
29+
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
30+
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
31+
}
1232
},
1333
"include": [
1434
"src/**/*"

samples/charts/category-chart/annotations-all/webpack.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ module.exports = env => {
2929

3030
return {
3131
entry: isLegacy ? [
32-
path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'),
33-
path.resolve(__dirname, 'node_modules/@webcomponents/template'),
3432
path.resolve(__dirname, 'src')
3533
] : path.resolve(__dirname, 'src'),
3634
devtool: isProd ? false : 'source-map',

samples/charts/category-chart/annotations-callouts/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
crosshairs-annotation-y-axis-precision="0"
5353
y-axis-maximum-value="35"
5454
y-axis-title="Degrees Celsius"
55-
y-axis-label-location="OutsideRight">
55+
y-axis-label-location="OutsideRight"
56+
is-transition-in-enabled="false">
5657
</igc-category-chart>
5758
</div>
5859
</div>

samples/charts/category-chart/annotations-callouts/sandbox.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
"hardReloadOnChange": false,
44
"view": "browser",
55
"template": "parcel"
6-
}
7-
6+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/* shared styles are loaded from: */
2-
/* https://static.infragistics.com/xplatform/css/samples */
2+
/* https://static.infragistics.com/xplatform/css/samples */
3+

samples/charts/category-chart/annotations-callouts/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
44
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
55
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
66
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';
7+
78
import 'igniteui-webcomponents/themes/light/bootstrap.css';
89
import { defineAllComponents } from 'igniteui-webcomponents';
910
import { ModuleManager } from 'igniteui-webcomponents-core';
10-
1111
defineAllComponents();
1212

1313
import "./index.css";
@@ -35,6 +35,7 @@ export class Sample {
3535
chart.dataSource = this.temperatureAnnotatedData;
3636
}
3737
this._bind();
38+
3839
}
3940

4041
private _temperatureAnnotatedData: TemperatureAnnotatedData = null;

samples/charts/category-chart/annotations-callouts/tsconfig.json

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,34 @@
11
{
22
"compilerOptions": {
3-
"noImplicitReturns": true,
4-
"esModuleInterop": true,
5-
"noImplicitAny": true,
6-
"declarationDir": "dist/types",
7-
"moduleResolution": "node",
8-
"declaration": true,
9-
"target": "es2015",
10-
"module": "es2015",
11-
"strict": true
3+
"noImplicitReturns": true,
4+
"esModuleInterop": true,
5+
"resolveJsonModule": true,
6+
"noImplicitAny": true,
7+
"declarationDir": "dist/types",
8+
"moduleResolution": "node",
9+
"declaration": true,
10+
"target": "es2015",
11+
"module": "es2015",
12+
"strict": true,
13+
"strictNullChecks": false,
14+
"baseUrl": ".",
15+
"paths": {
16+
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
17+
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
18+
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
19+
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
20+
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
21+
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
22+
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
23+
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
24+
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
25+
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
26+
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
27+
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
28+
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
29+
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
30+
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
31+
}
1232
},
1333
"include": [
1434
"src/**/*"

samples/charts/category-chart/annotations-callouts/webpack.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ module.exports = env => {
2929

3030
return {
3131
entry: isLegacy ? [
32-
path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'),
33-
path.resolve(__dirname, 'node_modules/@webcomponents/template'),
3432
path.resolve(__dirname, 'src')
3533
] : path.resolve(__dirname, 'src'),
3634
devtool: isProd ? false : 'source-map',

samples/charts/category-chart/annotations-crosshairs/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@
6464
crosshairs-line-thickness="2"
6565
crosshairs-snap-to-data="true"
6666
y-axis-maximum-value="35"
67-
y-axis-label-location="OutsideRight">
67+
y-axis-label-location="OutsideRight"
68+
is-transition-in-enabled="false">
6869
</igc-category-chart>
6970
</div>
7071
</div>

samples/charts/category-chart/annotations-crosshairs/sandbox.config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@
33
"hardReloadOnChange": false,
44
"view": "browser",
55
"template": "parcel"
6-
}
7-
6+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/* shared styles are loaded from: */
2-
/* https://static.infragistics.com/xplatform/css/samples */
2+
/* https://static.infragistics.com/xplatform/css/samples */
3+

samples/charts/category-chart/annotations-crosshairs/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
44
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
55
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
66
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';
7+
78
import 'igniteui-webcomponents/themes/light/bootstrap.css';
89
import { defineAllComponents } from 'igniteui-webcomponents';
910
import { ModuleManager } from 'igniteui-webcomponents-core';
10-
1111
defineAllComponents();
1212

1313
import "./index.css";
@@ -37,6 +37,7 @@ export class Sample {
3737
chart.dataSource = this.temperatureAnnotatedData;
3838
}
3939
this._bind();
40+
4041
}
4142

4243
private _temperatureAnnotatedData: TemperatureAnnotatedData = null;

samples/charts/category-chart/annotations-crosshairs/tsconfig.json

Lines changed: 29 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,34 @@
11
{
22
"compilerOptions": {
3-
"noImplicitReturns": true,
4-
"esModuleInterop": true,
5-
"noImplicitAny": true,
6-
"declarationDir": "dist/types",
7-
"moduleResolution": "node",
8-
"declaration": true,
9-
"target": "es2015",
10-
"module": "es2015",
11-
"strict": true
3+
"noImplicitReturns": true,
4+
"esModuleInterop": true,
5+
"resolveJsonModule": true,
6+
"noImplicitAny": true,
7+
"declarationDir": "dist/types",
8+
"moduleResolution": "node",
9+
"declaration": true,
10+
"target": "es2015",
11+
"module": "es2015",
12+
"strict": true,
13+
"strictNullChecks": false,
14+
"baseUrl": ".",
15+
"paths": {
16+
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
17+
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
18+
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
19+
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
20+
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
21+
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
22+
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
23+
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
24+
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
25+
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
26+
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
27+
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
28+
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
29+
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
30+
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
31+
}
1232
},
1333
"include": [
1434
"src/**/*"

0 commit comments

Comments
 (0)