Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes from igniteui-xplat-examples-output+PRs_2024.12.13.3 #897

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 12 additions & 0 deletions browser/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,13 @@
<a class="nav-link" href="#" data-nav="/samples/charts/category-chart/trendline">─<span>Trendline</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/category-chart/value-lines">─<span>Value Lines</span></a>
</div>
<label id="nav-dashboard-tile" class="nav-component">Dashboard Tile</label>
<div id="nav-dashboard-tile-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/chart-dashboard">─<span>Chart Dashboard</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/gauge-dashboard">─<span>Gauge Dashboard</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/map-dashboard">─<span>Map Dashboard</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/dashboard-tile/pie-dashboard">─<span>Pie Dashboard</span></a>
</div>
<label id="nav-data-chart" class="nav-component">Data Chart</label>
<div id="nav-data-chart-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/charts/data-chart/annotations-custom">─<span>Annotations Custom</span></a>
Expand Down Expand Up @@ -292,6 +299,7 @@
<div id="nav-toolbar-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/actions-built-in-category-chart">─<span>Actions Built In Category Chart</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/actions-built-in-data-chart">─<span>Actions Built In Data Chart</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/color-editor-support">─<span>Color Editor Support</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/custom-tool">─<span>Custom Tool</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/layout-actions-for-data-chart">─<span>Layout Actions For Data Chart</span></a>
<a class="nav-link" href="#" data-nav="/samples/charts/toolbar/layout-in-vertical-orientation">─<span>Layout In Vertical Orientation</span></a>
Expand Down Expand Up @@ -814,6 +822,10 @@
<a class="nav-link" href="#" data-nav="/samples/inputs/circular-progress-indicator/simple">─<span>Simple</span></a>
<a class="nav-link" href="#" data-nav="/samples/inputs/circular-progress-indicator/styling">─<span>Styling</span></a>
</div>
<label id="nav-color-editor" class="nav-component">Color Editor</label>
<div id="nav-color-editor-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/inputs/color-editor/overview">─<span>Overview</span></a>
</div>
<label id="nav-combo" class="nav-component">Combo</label>
<div id="nav-combo-list" class="nav-list" state="collapsed">
<a class="nav-link" href="#" data-nav="/samples/inputs/combo/features">─<span>Features</span></a>
Expand Down
23 changes: 23 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"igniteui-webcomponents-maps": "5.1.1-beta.0",
"igniteui-webcomponents-spreadsheet": "5.1.1-beta.0",
"igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.0",
"igniteui-webcomponents-dashboards": "5.1.1-beta.0",
"lit": "^3.2.0",
"lit-html": "^3.2.0"
},
Expand Down
3 changes: 2 additions & 1 deletion samples/charts/category-chart/annotations-all/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
final-value-annotations-text-color="white"
final-value-annotations-precision="0"
y-axis-maximum-value="35"
y-axis-label-location="OutsideRight">
y-axis-label-location="OutsideRight"
is-transition-in-enabled="false">
</igc-category-chart>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
"hardReloadOnChange": false,
"view": "browser",
"template": "parcel"
}

}
3 changes: 2 additions & 1 deletion samples/charts/category-chart/annotations-all/src/index.css
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/* shared styles are loaded from: */
/* https://static.infragistics.com/xplatform/css/samples */
/* https://static.infragistics.com/xplatform/css/samples */

3 changes: 2 additions & 1 deletion samples/charts/category-chart/annotations-all/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';

import 'igniteui-webcomponents/themes/light/bootstrap.css';
import { defineAllComponents } from 'igniteui-webcomponents';
import { ModuleManager } from 'igniteui-webcomponents-core';

defineAllComponents();

import "./index.css";
Expand Down Expand Up @@ -41,6 +41,7 @@ export class Sample {
chart.dataSource = this.temperatureAnnotatedData;
}
this._bind();

}

private _temperatureAnnotatedData: TemperatureAnnotatedData = null;
Expand Down
38 changes: 29 additions & 9 deletions samples/charts/category-chart/annotations-all/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
{
"compilerOptions": {
"noImplicitReturns": true,
"esModuleInterop": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true
"noImplicitReturns": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true,
"strictNullChecks": false,
"baseUrl": ".",
"paths": {
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
}
},
"include": [
"src/**/*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ module.exports = env => {

return {
entry: isLegacy ? [
path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'),
path.resolve(__dirname, 'node_modules/@webcomponents/template'),
path.resolve(__dirname, 'src')
] : path.resolve(__dirname, 'src'),
devtool: isProd ? false : 'source-map',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
crosshairs-annotation-y-axis-precision="0"
y-axis-maximum-value="35"
y-axis-title="Degrees Celsius"
y-axis-label-location="OutsideRight">
y-axis-label-location="OutsideRight"
is-transition-in-enabled="false">
</igc-category-chart>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
"hardReloadOnChange": false,
"view": "browser",
"template": "parcel"
}

}
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/* shared styles are loaded from: */
/* https://static.infragistics.com/xplatform/css/samples */
/* https://static.infragistics.com/xplatform/css/samples */

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';

import 'igniteui-webcomponents/themes/light/bootstrap.css';
import { defineAllComponents } from 'igniteui-webcomponents';
import { ModuleManager } from 'igniteui-webcomponents-core';

defineAllComponents();

import "./index.css";
Expand Down Expand Up @@ -35,6 +35,7 @@ export class Sample {
chart.dataSource = this.temperatureAnnotatedData;
}
this._bind();

}

private _temperatureAnnotatedData: TemperatureAnnotatedData = null;
Expand Down
38 changes: 29 additions & 9 deletions samples/charts/category-chart/annotations-callouts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
{
"compilerOptions": {
"noImplicitReturns": true,
"esModuleInterop": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true
"noImplicitReturns": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true,
"strictNullChecks": false,
"baseUrl": ".",
"paths": {
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
}
},
"include": [
"src/**/*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ module.exports = env => {

return {
entry: isLegacy ? [
path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'),
path.resolve(__dirname, 'node_modules/@webcomponents/template'),
path.resolve(__dirname, 'src')
] : path.resolve(__dirname, 'src'),
devtool: isProd ? false : 'source-map',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
crosshairs-line-thickness="2"
crosshairs-snap-to-data="true"
y-axis-maximum-value="35"
y-axis-label-location="OutsideRight">
y-axis-label-location="OutsideRight"
is-transition-in-enabled="false">
</igc-category-chart>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
"hardReloadOnChange": false,
"view": "browser",
"template": "parcel"
}

}
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/* shared styles are loaded from: */
/* https://static.infragistics.com/xplatform/css/samples */
/* https://static.infragistics.com/xplatform/css/samples */

Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD
import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts';
import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts';
import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData';

import 'igniteui-webcomponents/themes/light/bootstrap.css';
import { defineAllComponents } from 'igniteui-webcomponents';
import { ModuleManager } from 'igniteui-webcomponents-core';

defineAllComponents();

import "./index.css";
Expand Down Expand Up @@ -37,6 +37,7 @@ export class Sample {
chart.dataSource = this.temperatureAnnotatedData;
}
this._bind();

}

private _temperatureAnnotatedData: TemperatureAnnotatedData = null;
Expand Down
38 changes: 29 additions & 9 deletions samples/charts/category-chart/annotations-crosshairs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
{
"compilerOptions": {
"noImplicitReturns": true,
"esModuleInterop": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true
"noImplicitReturns": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": true,
"declarationDir": "dist/types",
"moduleResolution": "node",
"declaration": true,
"target": "es2015",
"module": "es2015",
"strict": true,
"strictNullChecks": false,
"baseUrl": ".",
"paths": {
"igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ],
"igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ],
"igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ],
"igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ],
"igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ],
"igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ],
"igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ],
"igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ],
"igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ],
"igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ],
"igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ],
"igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ],
"igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ],
"igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ],
"igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ]
}
},
"include": [
"src/**/*"
Expand Down
Loading
Loading