From 61fb13314fe818fed1c23d39f53e1e02e0ec31aa Mon Sep 17 00:00:00 2001 From: Arman Jivanyan Date: Thu, 13 Aug 2026 11:15:22 +0400 Subject: [PATCH 01/10] draft vendors for react and vue --- .github/workflows/visual-tests-demos.yml | 1 - apps/demos/utils/server/csp-bundle-angular.js | 5 ++++- apps/demos/utils/server/vendor-bundle.js | 6 +++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/visual-tests-demos.yml b/.github/workflows/visual-tests-demos.yml index ca8db655c7ea..494ea3620776 100644 --- a/.github/workflows/visual-tests-demos.yml +++ b/.github/workflows/visual-tests-demos.yml @@ -272,7 +272,6 @@ jobs: devextreme-react-installer.tgz devextreme-vue-installer.tgz retention-days: 1 - build-vendor-bundles: name: Build vendor bundles (React, Vue) runs-on: devextreme-shr2 diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index d09d272bb7b5..758600a76b56 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -7,6 +7,7 @@ const fs = require('fs'); const os = require('os'); const esbuild = require('esbuild'); const { extractDemoHeadExtras, extractDemoBodyInner } = require('./demo-html'); +const { vendorGlobalPlugin, vendorScriptTag } = require('./vendor-bundle'); const DEMOS_APP_ROOT = path.resolve(__dirname, '..', '..'); const REPO_ROOT = path.resolve(DEMOS_APP_ROOT, '..', '..'); @@ -115,6 +116,7 @@ function buildHtml({ jsFiles, cssFiles, srcDir }) { return ``; }) .join('\n '); + const vendorTag = vendorScriptTag('Angular'); return ` @@ -126,7 +128,7 @@ function buildHtml({ jsFiles, cssFiles, srcDir }) { ${bodyInner} - ${scripts} + ${vendorTag ? `${vendorTag}\n ` : ''}${scripts} `; @@ -590,6 +592,7 @@ function makeBuildOptions({ logLevel: 'silent', metafile: true, plugins: [ + vendorGlobalPlugin('Angular'), angularSingleCopyPlugin, antiForgeryPlugin, systemJsQuirksPlugin, diff --git a/apps/demos/utils/server/vendor-bundle.js b/apps/demos/utils/server/vendor-bundle.js index e24b96aec1e3..b410b204c451 100644 --- a/apps/demos/utils/server/vendor-bundle.js +++ b/apps/demos/utils/server/vendor-bundle.js @@ -36,8 +36,6 @@ function isVendorSpecifier(spec, framework) { return (VENDOR_PREFIXES[framework] || []).some((re) => re.test(spec)); } -// Substring match for the coverage-map check in vendorGlobalPlugin — a resolved chunk -// file path won't match VENDOR_PREFIXES' bare-specifier regexes but still contains this. const VENDOR_KEYWORDS = { React: ['devextreme-react', 'devextreme', 'react-dom', 'react', 'globalize'], ReactJs: ['devextreme-react', 'devextreme', 'react-dom', 'react', 'globalize'], @@ -179,7 +177,9 @@ async function buildVendorBundle(framework, esbuildOptions = {}) { break; } - // Regex discovery can pick up dead specifiers that never resolve; drop and retry. + // Regex-based discovery can pick up type-only/dead specifiers that never + // actually resolve; drop exactly the lines esbuild reports and retry. + const buildCwd = esbuildOptions.absWorkingDir || process.cwd(); const badLines = new Set(); for (const e of result.err.errors || []) { if (!e.location) continue; // eslint-disable-line no-continue From 887783439d0e6fc94481253692dcbef58ab4a372 Mon Sep 17 00:00:00 2001 From: Arman Jivanyan Date: Thu, 13 Aug 2026 15:10:17 +0400 Subject: [PATCH 02/10] add angular linker along with vendor bundles --- apps/demos/utils/server/build-vendor-bundles.js | 7 +++---- apps/demos/utils/server/vendor-bundle.js | 4 +--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/apps/demos/utils/server/build-vendor-bundles.js b/apps/demos/utils/server/build-vendor-bundles.js index 568283d242a2..fbc1e57d4b49 100644 --- a/apps/demos/utils/server/build-vendor-bundles.js +++ b/apps/demos/utils/server/build-vendor-bundles.js @@ -1,13 +1,12 @@ -// CLI: node utils/server/build-vendor-bundles.js [React|Vue ...] -// Defaults to both. Angular isn't supported here — see csp-bundle-angular.js's -// `splitting: true` batch build instead. +// CLI: node utils/server/build-vendor-bundles.js [React|Vue|Angular ...] +// Defaults to all three. const path = require('path'); const fs = require('fs'); const { buildVendorBundle } = require('./vendor-bundle'); const REQUESTED = process.argv.slice(2); -const FRAMEWORKS = REQUESTED.length > 0 ? REQUESTED : ['React', 'Vue']; +const FRAMEWORKS = REQUESTED.length > 0 ? REQUESTED : ['React', 'Vue', 'Angular']; function reactVueOptions(framework) { // eslint-disable-next-line global-require diff --git a/apps/demos/utils/server/vendor-bundle.js b/apps/demos/utils/server/vendor-bundle.js index b410b204c451..6622ef7b3847 100644 --- a/apps/demos/utils/server/vendor-bundle.js +++ b/apps/demos/utils/server/vendor-bundle.js @@ -177,9 +177,7 @@ async function buildVendorBundle(framework, esbuildOptions = {}) { break; } - // Regex-based discovery can pick up type-only/dead specifiers that never - // actually resolve; drop exactly the lines esbuild reports and retry. - const buildCwd = esbuildOptions.absWorkingDir || process.cwd(); + // Regex discovery can pick up dead specifiers that never resolve; drop and retry. const badLines = new Set(); for (const e of result.err.errors || []) { if (!e.location) continue; // eslint-disable-line no-continue From 571b0c5e516ef8523b071f4a3956434049c703cd Mon Sep 17 00:00:00 2001 From: Arman Jivanyan Date: Thu, 13 Aug 2026 15:57:19 +0400 Subject: [PATCH 03/10] small bug fix and update angular demos to use vendors --- .../Accordion/Overview/Angular/index.html | 1 + .../ActionSheet/Basics/Angular/index.html | 1 + .../PopoverMode/Angular/index.html | 1 + .../Autocomplete/Overview/Angular/index.html | 1 + .../Demos/Box/Overview/Angular/index.html | 1 + .../Demos/Button/Icons/Angular/index.html | 1 + .../Button/PredefinedTypes/Angular/index.html | 1 + .../ButtonGroup/Overview/Angular/index.html | 1 + .../MultipleSelection/Angular/index.html | 1 + .../Calendar/Overview/Angular/index.html | 1 + .../CardView/CardTemplate/Angular/index.html | 1 + .../CardView/ColumnChooser/Angular/index.html | 1 + .../ColumnHeaderFilter/Angular/index.html | 1 + .../ColumnReordering/Angular/index.html | 1 + .../DataValidation/Angular/index.html | 1 + .../CardView/FieldTemplate/Angular/index.html | 1 + .../CardView/FilterPanel/Angular/index.html | 1 + .../CardView/Overview/Angular/index.html | 1 + .../CardView/PopupEditing/Angular/index.html | 1 + .../CardView/SearchPanel/Angular/index.html | 1 + .../CardView/Selection/Angular/index.html | 1 + .../CardView/SimpleArray/Angular/index.html | 1 + .../Demos/CardView/Sorting/Angular/index.html | 1 + .../CardView/WebAPIService/Angular/index.html | 1 + .../Charts/AjaxRequest/Angular/index.html | 1 + .../Charts/Annotation/Angular/index.html | 1 + .../Demos/Charts/Area/Angular/index.html | 1 + .../AreaSelectionZooming/Angular/index.html | 1 + .../Charts/AreaSparklines/Angular/index.html | 1 + .../AutoCalculatedBarWidth/Angular/index.html | 1 + .../AxisCustomPosition/Angular/index.html | 1 + .../AxisLabelCustomization/Angular/index.html | 1 + .../BarColorCustomization/Angular/index.html | 1 + .../Charts/BarDrillDown/Angular/index.html | 1 + .../Charts/BarSparklines/Angular/index.html | 1 + .../BiDirectionalBarChart/Angular/index.html | 1 + .../Demos/Charts/Bubble/Angular/index.html | 1 + .../Charts/Candlestick/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Charts/Colorization/Angular/index.html | 1 + .../Charts/ContinuousData/Angular/index.html | 1 + .../Demos/Charts/Crosshair/Angular/index.html | 1 + .../CustomAnnotations/Angular/index.html | 1 + .../Charts/CustomBarWidth/Angular/index.html | 1 + .../CustomFillStyles/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Charts/DiscreteData/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Demos/Charts/Doughnut/Angular/index.html | 1 + .../DoughnutSelection/Angular/index.html | 1 + .../DoughnutWithTopNSeries/Angular/index.html | 1 + .../Demos/Charts/DrillDown/Angular/index.html | 1 + .../Charts/DynamicSeries/Angular/index.html | 1 + .../Charts/EqualSizePies/Angular/index.html | 1 + .../Demos/Charts/ErrorBars/Angular/index.html | 1 + .../ExportAndPrintingAPI/Angular/index.html | 1 + .../ExportCustomMarkup/Angular/index.html | 1 + .../ExportSeveralCharts/Angular/index.html | 1 + .../FlatDataStructure/Angular/index.html | 1 + .../Charts/FullStackedBar/Angular/index.html | 1 + .../Charts/FunnelChart/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Demos/Charts/HoverMode/Angular/index.html | 1 + .../Charts/InvertedChart/Angular/index.html | 1 + .../LabelCustomization/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Demos/Charts/Line/Angular/index.html | 1 + .../LoadDataOnDemand/Angular/index.html | 1 + .../Charts/LogarithmicAxis/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Charts/MultipleAxes/Angular/index.html | 1 + .../Charts/MultiplePanes/Angular/index.html | 1 + .../MultiplePointSelection/Angular/index.html | 1 + .../Angular/index.html | 1 + .../NullPointSupport/Angular/index.html | 1 + .../Demos/Charts/Overview/Angular/index.html | 1 + .../Demos/Charts/Palette/Angular/index.html | 1 + .../Charts/ParetoChart/Angular/index.html | 1 + .../Charts/PeriodicData/Angular/index.html | 1 + .../demos/Demos/Charts/Pie/Angular/index.html | 1 + .../Charts/PieAnnotations/Angular/index.html | 1 + .../PieResolveLabelOverlap/Angular/index.html | 1 + .../PieWithMultipleSeries/Angular/index.html | 1 + .../Charts/PointImage/Angular/index.html | 1 + .../PointSelectionAPI/Angular/index.html | 1 + .../PointsAggregation/Angular/index.html | 1 + .../Angular/index.html | 1 + .../PolarChartAnnotations/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Charts/PyramidChart/Angular/index.html | 1 + .../Demos/Charts/RangeArea/Angular/index.html | 1 + .../Demos/Charts/RangeBar/Angular/index.html | 1 + .../ResolveLabelOverlap/Angular/index.html | 1 + .../Charts/SankeyChart/Angular/index.html | 1 + .../Charts/ScaleBreaks/Angular/index.html | 1 + .../Demos/Charts/Scatter/Angular/index.html | 1 + .../Demos/Charts/Selection/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Charts/SideBySideBar/Angular/index.html | 1 + .../Angular/index.html | 1 + .../SideBySideStackedBar/Angular/index.html | 1 + .../Charts/SignalRService/Angular/index.html | 1 + .../Charts/SimpleArray/Angular/index.html | 1 + .../Charts/SimpleBullets/Angular/index.html | 1 + .../SimpleSparklines/Angular/index.html | 1 + .../SmallValueGroups/Angular/index.html | 1 + .../Demos/Charts/SpiderWeb/Angular/index.html | 1 + .../Demos/Charts/Spline/Angular/index.html | 1 + .../Charts/SplineArea/Angular/index.html | 1 + .../Charts/StackedBar/Angular/index.html | 1 + .../Charts/StandardBar/Angular/index.html | 1 + .../Demos/Charts/StepArea/Angular/index.html | 1 + .../Demos/Charts/StepLine/Angular/index.html | 1 + .../Demos/Charts/Stock/Angular/index.html | 1 + .../Demos/Charts/Strips/Angular/index.html | 1 + .../TilingAlgorithms/Angular/index.html | 1 + .../Demos/Charts/Timeline/Angular/index.html | 1 + .../Charts/TooltipAPI/Angular/index.html | 1 + .../TooltipCustomization/Angular/index.html | 1 + .../Demos/Charts/WindRose/Angular/index.html | 1 + .../WinlossSparklines/Angular/index.html | 1 + .../ZoomingAndScrolling/Angular/index.html | 1 + .../ZoomingAndScrollingAPI/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Chat/Customization/Angular/index.html | 1 + .../Chat/FileAttachments/Angular/index.html | 1 + .../Chat/MessageEditing/Angular/index.html | 1 + .../Chat/MessageStreaming/Angular/index.html | 1 + .../Demos/Chat/Overview/Angular/index.html | 1 + .../Chat/PromptSuggestions/Angular/index.html | 1 + .../CheckBox/Overview/Angular/index.html | 1 + .../ColorBox/Overview/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Common/EditorsOverview/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Common/FormsOverview/Angular/index.html | 1 + .../Common/ListsOverview/Angular/index.html | 1 + .../NavigationOverview/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../ContextMenu/Basics/Angular/index.html | 1 + .../ContextMenu/Scrolling/Angular/index.html | 1 + .../ContextMenu/Templates/Angular/index.html | 1 + .../DataGrid/AIAssistant/Angular/index.html | 1 + .../DataGrid/AIColumns/Angular/index.html | 1 + .../Angular/index.html | 1 + .../DataGrid/AjaxRequest/Angular/index.html | 1 + .../DataGrid/Appearance/Angular/index.html | 1 + .../AutoPopulatedColumns/Angular/index.html | 1 + .../DataGrid/BatchEditing/Angular/index.html | 1 + .../BatchUpdateRequest/Angular/index.html | 1 + .../CascadingLookups/Angular/index.html | 1 + .../Demos/DataGrid/Cell/Angular/index.html | 1 + .../DataGrid/CellEditing/Angular/index.html | 1 + .../CollaborativeEditing/Angular/index.html | 1 + .../Demos/DataGrid/Column/Angular/index.html | 1 + .../DataGrid/ColumnChooser/Angular/index.html | 1 + .../ColumnHeaderFilter/Angular/index.html | 1 + .../ColumnReordering/Angular/index.html | 1 + .../ColumnResizing/Angular/index.html | 1 + .../ColumnsHidingPriority/Angular/index.html | 1 + .../Angular/index.html | 1 + .../CustomDataSource/Angular/index.html | 1 + .../DataGrid/CustomEditors/Angular/index.html | 1 + .../CustomSummaries/Angular/index.html | 1 + .../Angular/index.html | 1 + .../DataValidation/Angular/index.html | 1 + .../DeferredSelection/Angular/index.html | 1 + .../DnDBetweenGrids/Angular/index.html | 1 + .../EditStateManagement/Angular/index.html | 1 + .../Angular/index.html | 1 + .../ExcelJSExportImages/Angular/index.html | 1 + .../Angular/index.html | 1 + .../ExcelJSHeaderAndFooter/Angular/index.html | 1 + .../ExcelJSOverview/Angular/index.html | 1 + .../DataGrid/FilterPanel/Angular/index.html | 1 + .../DataGrid/Filtering/Angular/index.html | 1 + .../DataGrid/FilteringAPI/Angular/index.html | 1 + .../FixedAndStickyColumns/Angular/index.html | 1 + .../DataGrid/FocusedRow/Angular/index.html | 1 + .../DataGrid/FormEditing/Angular/index.html | 1 + .../Angular/index.html | 1 + .../DataGrid/GridSummaries/Angular/index.html | 1 + .../GroupSummaries/Angular/index.html | 1 + .../Angular/index.html | 1 + .../InfiniteScrolling/Angular/index.html | 1 + .../KeyboardNavigation/Angular/index.html | 1 + .../LocalReordering/Angular/index.html | 1 + .../MasterDetailAPI/Angular/index.html | 1 + .../MasterDetailView/Angular/index.html | 1 + .../MultiRowHeadersBands/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../MultipleSorting/Angular/index.html | 1 + .../NewRecordPosition/Angular/index.html | 1 + .../DataGrid/Overview/Angular/index.html | 1 + .../PDFCellCustomization/Angular/index.html | 1 + .../PDFExportImages/Angular/index.html | 1 + .../PDFExportMultipleGrids/Angular/index.html | 1 + .../PDFHeaderAndFooter/Angular/index.html | 1 + .../DataGrid/PDFOverview/Angular/index.html | 1 + .../DataGrid/PopupEditing/Angular/index.html | 1 + .../RealTimeUpdates/Angular/index.html | 1 + .../Angular/index.html | 1 + .../RecordGrouping/Angular/index.html | 1 + .../DataGrid/RecordPaging/Angular/index.html | 1 + .../RemoteCRUDOperations/Angular/index.html | 1 + .../RemoteGrouping/Angular/index.html | 1 + .../RemoteReordering/Angular/index.html | 1 + .../RemoteVirtualScrolling/Angular/index.html | 1 + .../RightToLeftSupport/Angular/index.html | 1 + .../Demos/DataGrid/Row/Angular/index.html | 1 + .../DataGrid/RowEditing/Angular/index.html | 1 + .../DataGrid/RowSelection/Angular/index.html | 1 + .../SemanticSearch/Angular/index.html | 1 + .../SignalRService/Angular/index.html | 1 + .../DataGrid/SimpleArray/Angular/index.html | 1 + .../StatePersistence/Angular/index.html | 1 + .../Demos/DataGrid/Toolbar/Angular/index.html | 1 + .../VirtualScrolling/Angular/index.html | 1 + .../DataGrid/WebAPIService/Angular/index.html | 1 + .../DateBox/Formatting/Angular/index.html | 1 + .../Demos/DateBox/Overview/Angular/index.html | 1 + .../Formatting/Angular/index.html | 1 + .../DateRangeBox/Overview/Angular/index.html | 1 + .../Diagram/Adaptability/Angular/index.html | 1 + .../AdvancedDataBinding/Angular/index.html | 1 + .../Diagram/Containers/Angular/index.html | 1 + .../CustomShapesWithIcons/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../CustomShapesWithTexts/Angular/index.html | 1 + .../Diagram/ImagesInShapes/Angular/index.html | 1 + .../Diagram/ItemSelection/Angular/index.html | 1 + .../NodesAndEdgesArrays/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../OperationRestrictions/Angular/index.html | 1 + .../Demos/Diagram/Overview/Angular/index.html | 1 + .../Demos/Diagram/ReadOnly/Angular/index.html | 1 + .../Diagram/SimpleView/Angular/index.html | 1 + .../UICustomization/Angular/index.html | 1 + .../Diagram/WebAPIService/Angular/index.html | 1 + .../LeftOrRightPosition/Angular/index.html | 1 + .../TopOrBottomPosition/Angular/index.html | 1 + .../MultipleSelection/Angular/index.html | 1 + .../SingleSelection/Angular/index.html | 1 + .../Overview/Angular/index.html | 1 + .../FieldSet/Overview/Angular/index.html | 1 + .../BindingToEF/Angular/index.html | 1 + .../BindingToFileSystem/Angular/index.html | 1 + .../Angular/index.html | 1 + .../CustomThumbnails/Angular/index.html | 1 + .../FileManager/Overview/Angular/index.html | 1 + .../UICustomization/Angular/index.html | 1 + .../ChunkUpload/Angular/index.html | 1 + .../CustomDropzone/Angular/index.html | 1 + .../FileSelection/Angular/index.html | 1 + .../FileUploading/Angular/index.html | 1 + .../Validation/Angular/index.html | 1 + .../Customization/Angular/index.html | 1 + .../WithDataGrid/Angular/index.html | 1 + .../FilterBuilder/WithList/Angular/index.html | 1 + .../Overview/Angular/index.html | 1 + .../Form/Adaptability/Angular/index.html | 1 + .../Demos/Form/Grouping/Angular/index.html | 1 + .../Form/ItemCustomization/Angular/index.html | 1 + .../Demos/Form/Overview/Angular/index.html | 1 + .../Demos/Form/SmartPaste/Angular/index.html | 1 + .../UpdateItemsDynamically/Angular/index.html | 1 + .../Demos/Form/Validation/Angular/index.html | 1 + .../Gallery/ItemTemplate/Angular/index.html | 1 + .../Demos/Gallery/Overview/Angular/index.html | 1 + .../Demos/Gantt/Appearance/Angular/index.html | 1 + .../Gantt/ContextMenu/Angular/index.html | 1 + .../Gantt/DataBinding/Angular/index.html | 1 + .../Gantt/ExportToPDF/Angular/index.html | 1 + .../Demos/Gantt/FilterRow/Angular/index.html | 1 + .../Gantt/HeaderFilter/Angular/index.html | 1 + .../Demos/Gantt/Overview/Angular/index.html | 1 + .../Demos/Gantt/Sorting/Angular/index.html | 1 + .../Demos/Gantt/StripLines/Angular/index.html | 1 + .../Gantt/TaskTemplate/Angular/index.html | 1 + .../Demos/Gantt/Toolbar/Angular/index.html | 1 + .../Demos/Gantt/Validation/Angular/index.html | 1 + .../AnglesCustomization/Angular/index.html | 1 + .../Demos/Gauges/BarGauge/Angular/index.html | 1 + .../Gauges/CircularGauge/Angular/index.html | 1 + .../Gauges/CustomLayout/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../GaugeTitleCustomized/Angular/index.html | 1 + .../Gauges/GaugeTooltip/Angular/index.html | 1 + .../LabelsCustomization/Angular/index.html | 1 + .../Gauges/LinearGauge/Angular/index.html | 1 + .../Demos/Gauges/Overview/Angular/index.html | 1 + .../Demos/Gauges/Palette/Angular/index.html | 1 + .../PaletteForRanges/Angular/index.html | 1 + .../RangeBarBaseValue/Angular/index.html | 1 + .../Angular/index.html | 1 + .../ScaleCustomTickValues/Angular/index.html | 1 + .../ScaleLabelFormatting/Angular/index.html | 1 + .../Gauges/ScaleMinorTicks/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../Demos/Gauges/Tooltip/Angular/index.html | 1 + .../ValueIndicatorsAPI/Angular/index.html | 1 + .../VariableNumberOfBars/Angular/index.html | 1 + .../AITextEditing/Angular/index.html | 1 + .../MarkdownSupport/Angular/index.html | 1 + .../HtmlEditor/Mentions/Angular/index.html | 1 + .../HtmlEditor/Overview/Angular/index.html | 1 + .../HtmlEditor/Tables/Angular/index.html | 1 + .../ToolbarCustomization/Angular/index.html | 1 + .../Demos/List/DragAndDrop/Angular/index.html | 1 + .../Demos/List/Grouping/Angular/index.html | 1 + .../List/ItemDeletion/Angular/index.html | 1 + .../List/ItemTemplate/Angular/index.html | 1 + .../Demos/List/Search/Angular/index.html | 1 + .../Demos/List/Selection/Angular/index.html | 1 + .../Demos/List/WebAPI/Angular/index.html | 1 + .../LoadIndicator/Overview/Angular/index.html | 1 + .../LoadPanel/Overview/Angular/index.html | 1 + .../UsingGlobalize/Angular/index.html | 1 + .../Localization/UsingIntl/Angular/index.html | 1 + .../Demos/Lookup/Basics/Angular/index.html | 1 + .../Lookup/EventHandling/Angular/index.html | 1 + .../Demos/Lookup/Templates/Angular/index.html | 1 + .../Demos/Map/Markers/Angular/index.html | 1 + .../Map/ProvidersAndTypes/Angular/index.html | 1 + .../demos/Demos/Map/Routes/Angular/index.html | 1 + .../Demos/Menu/Overview/Angular/index.html | 1 + .../Demos/Menu/Scrolling/Angular/index.html | 1 + .../MultiView/Overview/Angular/index.html | 1 + .../NumberBox/Formatting/Angular/index.html | 1 + .../NumberBox/Overview/Angular/index.html | 1 + .../Pagination/Overview/Angular/index.html | 1 + .../ChartIntegration/Angular/index.html | 1 + .../Customization/Angular/index.html | 1 + .../PivotGrid/DrillDown/Angular/index.html | 1 + .../Angular/index.html | 1 + .../ExcelJSOverview/Angular/index.html | 1 + .../ExcelJsHeaderAndFooter/Angular/index.html | 1 + .../PivotGrid/FieldPanel/Angular/index.html | 1 + .../PivotGrid/Filtering/Angular/index.html | 1 + .../IntegratedFieldChooser/Angular/index.html | 1 + .../OLAPDataSource/Angular/index.html | 1 + .../PivotGrid/Overview/Angular/index.html | 1 + .../RemoteVirtualScrolling/Angular/index.html | 1 + .../RunningTotals/Angular/index.html | 1 + .../PivotGrid/SimpleArray/Angular/index.html | 1 + .../StandaloneFieldChooser/Angular/index.html | 1 + .../StatePersistence/Angular/index.html | 1 + .../SummaryDisplayModes/Angular/index.html | 1 + .../VirtualScrolling/Angular/index.html | 1 + .../WebAPIService/Angular/index.html | 1 + .../Demos/Popover/Overview/Angular/index.html | 1 + .../Demos/Popup/Overview/Angular/index.html | 1 + .../Demos/Popup/Scrolling/Angular/index.html | 1 + .../ProgressBar/Overview/Angular/index.html | 1 + .../RadioGroup/Overview/Angular/index.html | 1 + .../BackgroundImage/Angular/index.html | 1 + .../Calculation/Angular/index.html | 1 + .../CustomFormatting/Angular/index.html | 1 + .../DateTimeScale/Angular/index.html | 1 + .../Angular/index.html | 1 + .../DiscreteScale/Angular/index.html | 1 + .../EmbeddedChart/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../RangeSelector/Filter/Angular/index.html | 1 + .../LogarithmicScale/Angular/index.html | 1 + .../NumericScale/Angular/index.html | 1 + .../Angular/index.html | 1 + .../RangeSlider/Overview/Angular/index.html | 1 + .../Resizable/Overview/Angular/index.html | 1 + .../ResponsiveBox/Overview/Angular/index.html | 1 + .../Scheduler/Adaptability/Angular/index.html | 1 + .../Demos/Scheduler/Agenda/Angular/index.html | 1 + .../AllDayPanelMode/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Scheduler/BasicViews/Angular/index.html | 1 + .../CellTemplates/Angular/index.html | 1 + .../Scheduler/ContextMenu/Angular/index.html | 1 + .../CreateFromSelection/Angular/index.html | 1 + .../CurrentTimeIndicator/Angular/index.html | 1 + .../CustomViewDuration/Angular/index.html | 1 + .../Scheduler/DragAndDrop/Angular/index.html | 1 + .../Scheduler/Editing/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Scheduler/GroupByDate/Angular/index.html | 1 + .../GroupingByResources/Angular/index.html | 1 + .../Scheduler/HiddenDays/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Scheduler/Overview/Angular/index.html | 1 + .../RecurringAppointments/Angular/index.html | 1 + .../ResolveTimeConflicts/Angular/index.html | 1 + .../Scheduler/Resources/Angular/index.html | 1 + .../SignalRService/Angular/index.html | 1 + .../Scheduler/SimpleArray/Angular/index.html | 1 + .../Scheduler/Templates/Angular/index.html | 1 + .../TimeZonesSupport/Angular/index.html | 1 + .../Scheduler/Timelines/Angular/index.html | 1 + .../Scheduler/Toolbar/Angular/index.html | 1 + .../VirtualScrolling/Angular/index.html | 1 + .../WebAPIService/Angular/index.html | 1 + .../Scheduler/WorkShifts/Angular/index.html | 1 + .../ScrollView/Overview/Angular/index.html | 1 + .../Angular/index.html | 1 + .../SelectBox/Grouping/Angular/index.html | 1 + .../SelectBox/Overview/Angular/index.html | 1 + .../SearchAndEditing/Angular/index.html | 1 + .../Demos/Slider/Overview/Angular/index.html | 1 + .../Sortable/Customization/Angular/index.html | 1 + .../Demos/Sortable/Kanban/Angular/index.html | 1 + .../SpeechToText/Overview/Angular/index.html | 1 + .../Splitter/Overview/Angular/index.html | 1 + .../FormIntegration/Angular/index.html | 1 + .../Demos/Stepper/Overview/Angular/index.html | 1 + .../Stepper/StepTemplate/Angular/index.html | 1 + .../Demos/Switch/Overview/Angular/index.html | 1 + .../TabPanel/DragAndDrop/Angular/index.html | 1 + .../TabPanel/Overview/Angular/index.html | 1 + .../TabPanel/Templates/Angular/index.html | 1 + .../Demos/Tabs/Overview/Angular/index.html | 1 + .../Demos/Tabs/Selection/Angular/index.html | 1 + .../Demos/TagBox/Grouping/Angular/index.html | 1 + .../Demos/TagBox/Overview/Angular/index.html | 1 + .../TagCountLimitation/Angular/index.html | 1 + .../TextArea/Overview/Angular/index.html | 1 + .../Demos/TextBox/Overview/Angular/index.html | 1 + .../Demos/TileView/Basics/Angular/index.html | 1 + .../TileView/Directions/Angular/index.html | 1 + .../TileView/ItemTemplate/Angular/index.html | 1 + .../Demos/Toast/Overview/Angular/index.html | 1 + .../Demos/Toast/Stack/Angular/index.html | 1 + .../Toolbar/Adaptability/Angular/index.html | 1 + .../Demos/Toolbar/Overview/Angular/index.html | 1 + .../Demos/Tooltip/Overview/Angular/index.html | 1 + .../TreeList/AIColumns/Angular/index.html | 1 + .../TreeList/Adaptability/Angular/index.html | 1 + .../TreeList/BatchEditing/Angular/index.html | 1 + .../TreeList/CellEditing/Angular/index.html | 1 + .../TreeList/ColumnChooser/Angular/index.html | 1 + .../ColumnHeaderFilter/Angular/index.html | 1 + .../Angular/index.html | 1 + .../TreeList/FilterModes/Angular/index.html | 1 + .../TreeList/FilterPanel/Angular/index.html | 1 + .../TreeList/FilterRow/Angular/index.html | 1 + .../FixedAndStickyColumns/Angular/index.html | 1 + .../TreeList/FocusedRow/Angular/index.html | 1 + .../TreeList/FormEditing/Angular/index.html | 1 + .../KeyboardNavigation/Angular/index.html | 1 + .../LoadDataOnDemand/Angular/index.html | 1 + .../LocalReordering/Angular/index.html | 1 + .../MultipleRowSelection/Angular/index.html | 1 + .../MultipleSorting/Angular/index.html | 1 + .../TreeList/Overview/Angular/index.html | 1 + .../Demos/TreeList/Paging/Angular/index.html | 1 + .../TreeList/PopupEditing/Angular/index.html | 1 + .../TreeList/Reordering/Angular/index.html | 1 + .../TreeList/Resizing/Angular/index.html | 1 + .../TreeList/RowEditing/Angular/index.html | 1 + .../TreeList/SearchPanel/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../SingleRowSelection/Angular/index.html | 1 + .../StatePersistence/Angular/index.html | 1 + .../TreeList/WebAPIService/Angular/index.html | 1 + .../ContextMenuIntegration/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../FlatDataStructure/Angular/index.html | 1 + .../Angular/index.html | 1 + .../Angular/index.html | 1 + .../LoadDataOnDemand/Angular/index.html | 1 + .../TreeViewWithSearchBar/Angular/index.html | 1 + .../TreeView/VirtualMode/Angular/index.html | 1 + .../Validation/Overview/Angular/index.html | 1 + .../BubbleMarkers/Angular/index.html | 1 + .../ColorsCustomization/Angular/index.html | 1 + .../CustomAnnotations/Angular/index.html | 1 + .../CustomMapData/Angular/index.html | 1 + .../CustomProjection/Angular/index.html | 1 + .../DynamicViewport/Angular/index.html | 1 + .../VectorMap/FloorPlan/Angular/index.html | 1 + .../VectorMap/ImageMarkers/Angular/index.html | 1 + .../Demos/VectorMap/Legend/Angular/index.html | 1 + .../MultipleLayers/Angular/index.html | 1 + .../VectorMap/Overview/Angular/index.html | 1 + .../VectorMap/Palette/Angular/index.html | 1 + .../VectorMap/PieMarkers/Angular/index.html | 1 + .../TooltipsCustomization/Angular/index.html | 1 + .../ZoomingAndCentering/Angular/index.html | 1 + apps/demos/utils/server/csp-bundle-angular.js | 21 ++++++++++++------- 501 files changed, 513 insertions(+), 8 deletions(-) diff --git a/apps/demos/Demos/Accordion/Overview/Angular/index.html b/apps/demos/Demos/Accordion/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/index.html +++ b/apps/demos/Demos/Accordion/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Box/Overview/Angular/index.html b/apps/demos/Demos/Box/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Box/Overview/Angular/index.html +++ b/apps/demos/Demos/Box/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Button/Icons/Angular/index.html b/apps/demos/Demos/Button/Icons/Angular/index.html index 9bb26cdb89e8..f003a8295bf4 100644 --- a/apps/demos/Demos/Button/Icons/Angular/index.html +++ b/apps/demos/Demos/Button/Icons/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Calendar/Overview/Angular/index.html b/apps/demos/Demos/Calendar/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/index.html +++ b/apps/demos/Demos/Calendar/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/DataValidation/Angular/index.html b/apps/demos/Demos/CardView/DataValidation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/DataValidation/Angular/index.html +++ b/apps/demos/Demos/CardView/DataValidation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/Overview/Angular/index.html b/apps/demos/Demos/CardView/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/Overview/Angular/index.html +++ b/apps/demos/Demos/CardView/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/Selection/Angular/index.html b/apps/demos/Demos/CardView/Selection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/Selection/Angular/index.html +++ b/apps/demos/Demos/CardView/Selection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/Sorting/Angular/index.html b/apps/demos/Demos/CardView/Sorting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/Sorting/Angular/index.html +++ b/apps/demos/Demos/CardView/Sorting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Annotation/Angular/index.html b/apps/demos/Demos/Charts/Annotation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/index.html +++ b/apps/demos/Demos/Charts/Annotation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Area/Angular/index.html b/apps/demos/Demos/Charts/Area/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Area/Angular/index.html +++ b/apps/demos/Demos/Charts/Area/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html index e84d5b268851..51be7f4464ed 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html @@ -23,6 +23,7 @@ + diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Bubble/Angular/index.html b/apps/demos/Demos/Charts/Bubble/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/index.html +++ b/apps/demos/Demos/Charts/Bubble/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/index.html b/apps/demos/Demos/Charts/Candlestick/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Colorization/Angular/index.html b/apps/demos/Demos/Charts/Colorization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/index.html +++ b/apps/demos/Demos/Charts/Colorization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/index.html b/apps/demos/Demos/Charts/Crosshair/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/index.html b/apps/demos/Demos/Charts/Doughnut/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/index.html b/apps/demos/Demos/Charts/DrillDown/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/index.html b/apps/demos/Demos/Charts/HoverMode/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Line/Angular/index.html b/apps/demos/Demos/Charts/Line/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Line/Angular/index.html +++ b/apps/demos/Demos/Charts/Line/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Overview/Angular/index.html b/apps/demos/Demos/Charts/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/index.html +++ b/apps/demos/Demos/Charts/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Palette/Angular/index.html b/apps/demos/Demos/Charts/Palette/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/index.html +++ b/apps/demos/Demos/Charts/Palette/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Pie/Angular/index.html b/apps/demos/Demos/Charts/Pie/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/index.html +++ b/apps/demos/Demos/Charts/Pie/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PointImage/Angular/index.html b/apps/demos/Demos/Charts/PointImage/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/index.html +++ b/apps/demos/Demos/Charts/PointImage/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/index.html b/apps/demos/Demos/Charts/RangeArea/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/index.html b/apps/demos/Demos/Charts/RangeBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Scatter/Angular/index.html b/apps/demos/Demos/Charts/Scatter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/index.html +++ b/apps/demos/Demos/Charts/Scatter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Selection/Angular/index.html b/apps/demos/Demos/Charts/Selection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/index.html +++ b/apps/demos/Demos/Charts/Selection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/index.html b/apps/demos/Demos/Charts/SignalRService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html index 0eba71e12649..9eadaab352db 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Spline/Angular/index.html b/apps/demos/Demos/Charts/Spline/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/index.html +++ b/apps/demos/Demos/Charts/Spline/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/index.html b/apps/demos/Demos/Charts/SplineArea/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/index.html b/apps/demos/Demos/Charts/StackedBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/index.html b/apps/demos/Demos/Charts/StandardBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/StepArea/Angular/index.html b/apps/demos/Demos/Charts/StepArea/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/index.html +++ b/apps/demos/Demos/Charts/StepArea/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/StepLine/Angular/index.html b/apps/demos/Demos/Charts/StepLine/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/index.html +++ b/apps/demos/Demos/Charts/StepLine/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Stock/Angular/index.html b/apps/demos/Demos/Charts/Stock/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/index.html +++ b/apps/demos/Demos/Charts/Stock/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Strips/Angular/index.html b/apps/demos/Demos/Charts/Strips/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/index.html +++ b/apps/demos/Demos/Charts/Strips/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/Timeline/Angular/index.html b/apps/demos/Demos/Charts/Timeline/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/index.html +++ b/apps/demos/Demos/Charts/Timeline/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/WindRose/Angular/index.html b/apps/demos/Demos/Charts/WindRose/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/index.html +++ b/apps/demos/Demos/Charts/WindRose/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/Customization/Angular/index.html b/apps/demos/Demos/Chat/Customization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/Customization/Angular/index.html +++ b/apps/demos/Demos/Chat/Customization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/Overview/Angular/index.html b/apps/demos/Demos/Chat/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/Overview/Angular/index.html +++ b/apps/demos/Demos/Chat/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/index.html b/apps/demos/Demos/CheckBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/index.html b/apps/demos/Demos/ColorBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/FormsOverview/Angular/index.html b/apps/demos/Demos/Common/FormsOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/FormsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/FormsOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/ListsOverview/Angular/index.html b/apps/demos/Demos/Common/ListsOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/ListsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/ListsOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Cell/Angular/index.html b/apps/demos/Demos/DataGrid/Cell/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Cell/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Column/Angular/index.html b/apps/demos/Demos/DataGrid/Column/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Column/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Column/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/index.html b/apps/demos/Demos/DataGrid/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Row/Angular/index.html b/apps/demos/Demos/DataGrid/Row/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Row/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Row/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/index.html b/apps/demos/Demos/DateBox/Formatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DateBox/Overview/Angular/index.html b/apps/demos/Demos/DateBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/Containers/Angular/index.html b/apps/demos/Demos/Diagram/Containers/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/index.html +++ b/apps/demos/Demos/Diagram/Containers/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/Overview/Angular/index.html b/apps/demos/Demos/Diagram/Overview/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/index.html +++ b/apps/demos/Demos/Diagram/Overview/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html index 4116cff0f866..42f9e78710d8 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/index.html b/apps/demos/Demos/FieldSet/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/Overview/Angular/index.html b/apps/demos/Demos/FileManager/Overview/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/index.html +++ b/apps/demos/Demos/FileManager/Overview/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/index.html b/apps/demos/Demos/FileUploader/Validation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html index 9bb26cdb89e8..f003a8295bf4 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html index 9bb26cdb89e8..f003a8295bf4 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html index 9bb26cdb89e8..f003a8295bf4 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/Adaptability/Angular/index.html b/apps/demos/Demos/Form/Adaptability/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Form/Adaptability/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/Grouping/Angular/index.html b/apps/demos/Demos/Form/Grouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/Grouping/Angular/index.html +++ b/apps/demos/Demos/Form/Grouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/Overview/Angular/index.html b/apps/demos/Demos/Form/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/Overview/Angular/index.html +++ b/apps/demos/Demos/Form/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/SmartPaste/Angular/index.html b/apps/demos/Demos/Form/SmartPaste/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/SmartPaste/Angular/index.html +++ b/apps/demos/Demos/Form/SmartPaste/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Form/Validation/Angular/index.html b/apps/demos/Demos/Form/Validation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Form/Validation/Angular/index.html +++ b/apps/demos/Demos/Form/Validation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gallery/Overview/Angular/index.html b/apps/demos/Demos/Gallery/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/index.html +++ b/apps/demos/Demos/Gallery/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/Appearance/Angular/index.html b/apps/demos/Demos/Gantt/Appearance/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/Appearance/Angular/index.html +++ b/apps/demos/Demos/Gantt/Appearance/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/Overview/Angular/index.html b/apps/demos/Demos/Gantt/Overview/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/index.html +++ b/apps/demos/Demos/Gantt/Overview/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/index.html b/apps/demos/Demos/Gantt/Sorting/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/index.html b/apps/demos/Demos/Gantt/StripLines/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gantt/Validation/Angular/index.html b/apps/demos/Demos/Gantt/Validation/Angular/index.html index 37a1f593d5a2..600637d76c5e 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/index.html +++ b/apps/demos/Demos/Gantt/Validation/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/Overview/Angular/index.html b/apps/demos/Demos/Gauges/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/index.html +++ b/apps/demos/Demos/Gauges/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/Palette/Angular/index.html b/apps/demos/Demos/Gauges/Palette/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/index.html +++ b/apps/demos/Demos/Gauges/Palette/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/DragAndDrop/Angular/index.html b/apps/demos/Demos/List/DragAndDrop/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/List/DragAndDrop/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/Grouping/Angular/index.html b/apps/demos/Demos/List/Grouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/Grouping/Angular/index.html +++ b/apps/demos/Demos/List/Grouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/ItemDeletion/Angular/index.html b/apps/demos/Demos/List/ItemDeletion/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/ItemDeletion/Angular/index.html +++ b/apps/demos/Demos/List/ItemDeletion/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/index.html b/apps/demos/Demos/List/ItemTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/Search/Angular/index.html b/apps/demos/Demos/List/Search/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/Search/Angular/index.html +++ b/apps/demos/Demos/List/Search/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/Selection/Angular/index.html b/apps/demos/Demos/List/Selection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/Selection/Angular/index.html +++ b/apps/demos/Demos/List/Selection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/List/WebAPI/Angular/index.html b/apps/demos/Demos/List/WebAPI/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/index.html +++ b/apps/demos/Demos/List/WebAPI/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Lookup/Basics/Angular/index.html b/apps/demos/Demos/Lookup/Basics/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/index.html +++ b/apps/demos/Demos/Lookup/Basics/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Lookup/Templates/Angular/index.html b/apps/demos/Demos/Lookup/Templates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/index.html +++ b/apps/demos/Demos/Lookup/Templates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Map/Markers/Angular/index.html b/apps/demos/Demos/Map/Markers/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Map/Markers/Angular/index.html +++ b/apps/demos/Demos/Map/Markers/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Map/Routes/Angular/index.html b/apps/demos/Demos/Map/Routes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Map/Routes/Angular/index.html +++ b/apps/demos/Demos/Map/Routes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Menu/Overview/Angular/index.html b/apps/demos/Demos/Menu/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/index.html +++ b/apps/demos/Demos/Menu/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/index.html b/apps/demos/Demos/Menu/Scrolling/Angular/index.html index 3f08cd754b29..33a24f52ba0b 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Angular/index.html @@ -10,6 +10,7 @@ Loading... + diff --git a/apps/demos/Demos/MultiView/Overview/Angular/index.html b/apps/demos/Demos/MultiView/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/index.html +++ b/apps/demos/Demos/MultiView/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/index.html b/apps/demos/Demos/NumberBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Pagination/Overview/Angular/index.html b/apps/demos/Demos/Pagination/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/index.html +++ b/apps/demos/Demos/Pagination/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Popover/Overview/Angular/index.html b/apps/demos/Demos/Popover/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/index.html +++ b/apps/demos/Demos/Popover/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Popup/Overview/Angular/index.html b/apps/demos/Demos/Popup/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/index.html +++ b/apps/demos/Demos/Popup/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/index.html b/apps/demos/Demos/Popup/Scrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Resizable/Overview/Angular/index.html b/apps/demos/Demos/Resizable/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/index.html +++ b/apps/demos/Demos/Resizable/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/index.html b/apps/demos/Demos/Scheduler/Editing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/index.html b/apps/demos/Demos/Scheduler/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/index.html b/apps/demos/Demos/Scheduler/Resources/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html index 950ccb18e117..3344817fb56a 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/index.html b/apps/demos/Demos/Scheduler/Templates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Templates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/index.html b/apps/demos/Demos/ScrollView/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/index.html b/apps/demos/Demos/SelectBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Slider/Overview/Angular/index.html b/apps/demos/Demos/Slider/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/index.html +++ b/apps/demos/Demos/Slider/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Sortable/Customization/Angular/index.html b/apps/demos/Demos/Sortable/Customization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/index.html +++ b/apps/demos/Demos/Sortable/Customization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/index.html b/apps/demos/Demos/Sortable/Kanban/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Splitter/Overview/Angular/index.html b/apps/demos/Demos/Splitter/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/index.html +++ b/apps/demos/Demos/Splitter/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Stepper/Overview/Angular/index.html b/apps/demos/Demos/Stepper/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Stepper/Overview/Angular/index.html +++ b/apps/demos/Demos/Stepper/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Switch/Overview/Angular/index.html b/apps/demos/Demos/Switch/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/index.html +++ b/apps/demos/Demos/Switch/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/index.html b/apps/demos/Demos/TabPanel/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/index.html b/apps/demos/Demos/TabPanel/Templates/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Tabs/Overview/Angular/index.html b/apps/demos/Demos/Tabs/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/index.html +++ b/apps/demos/Demos/Tabs/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Tabs/Selection/Angular/index.html b/apps/demos/Demos/Tabs/Selection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/index.html +++ b/apps/demos/Demos/Tabs/Selection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TagBox/Grouping/Angular/index.html b/apps/demos/Demos/TagBox/Grouping/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TagBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/TagBox/Grouping/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TagBox/Overview/Angular/index.html b/apps/demos/Demos/TagBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TagBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TextArea/Overview/Angular/index.html b/apps/demos/Demos/TextArea/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/index.html +++ b/apps/demos/Demos/TextArea/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TextBox/Overview/Angular/index.html b/apps/demos/Demos/TextBox/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TextBox/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TileView/Basics/Angular/index.html b/apps/demos/Demos/TileView/Basics/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/index.html +++ b/apps/demos/Demos/TileView/Basics/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TileView/Directions/Angular/index.html b/apps/demos/Demos/TileView/Directions/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/index.html +++ b/apps/demos/Demos/TileView/Directions/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Toast/Overview/Angular/index.html b/apps/demos/Demos/Toast/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/index.html +++ b/apps/demos/Demos/Toast/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Toast/Stack/Angular/index.html b/apps/demos/Demos/Toast/Stack/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/index.html +++ b/apps/demos/Demos/Toast/Stack/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/index.html b/apps/demos/Demos/Toolbar/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/index.html b/apps/demos/Demos/Tooltip/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/Overview/Angular/index.html b/apps/demos/Demos/TreeList/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/index.html +++ b/apps/demos/Demos/TreeList/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/Paging/Angular/index.html b/apps/demos/Demos/TreeList/Paging/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/index.html +++ b/apps/demos/Demos/TreeList/Paging/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/index.html b/apps/demos/Demos/TreeList/Reordering/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/index.html b/apps/demos/Demos/TreeList/Resizing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/Validation/Overview/Angular/index.html b/apps/demos/Demos/Validation/Overview/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/index.html +++ b/apps/demos/Demos/Validation/Overview/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html index 7dd155b53981..f62a37b06749 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html @@ -12,6 +12,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/Legend/Angular/index.html b/apps/demos/Demos/VectorMap/Legend/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/Legend/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Legend/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/index.html b/apps/demos/Demos/VectorMap/Overview/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/index.html b/apps/demos/Demos/VectorMap/Palette/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html index 6c25556bab9b..61d99198d988 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html @@ -13,6 +13,7 @@ Loading... + diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 758600a76b56..fe4f17624058 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -109,14 +109,19 @@ function buildHtml({ jsFiles, cssFiles, srcDir }) { ...cssFiles.map((f) => ``), ].join('\n '); const bodyInner = extractDemoBodyInner(srcDir) || DEFAULT_BODY_INNER; - const scripts = jsFiles - .map((f) => { - const src = f.startsWith('.') ? f : `./${f}`; - const type = f === ANGULAR_ZONE_SCRIPT ? '' : ' type="module"'; - return ``; - }) - .join('\n '); + const scriptTag = (f) => { + const src = f.startsWith('.') ? f : `./${f}`; + const type = f === ANGULAR_ZONE_SCRIPT ? '' : ' type="module"'; + return ``; + }; + // zone.js must load before the vendor bundle: @angular/core does async work + // (promises, etc.) at module-evaluation time, and that needs to be zone-patched. const vendorTag = vendorScriptTag('Angular'); + const scripts = [ + ...jsFiles.filter((f) => f === ANGULAR_ZONE_SCRIPT).map(scriptTag), + vendorTag, + ...jsFiles.filter((f) => f !== ANGULAR_ZONE_SCRIPT).map(scriptTag), + ].filter(Boolean).join('\n '); return ` @@ -128,7 +133,7 @@ function buildHtml({ jsFiles, cssFiles, srcDir }) { ${bodyInner} - ${vendorTag ? `${vendorTag}\n ` : ''}${scripts} + ${scripts} `; From 1b0e4c688f6f5d7aab18c0acff3441ec8ca0e7ae Mon Sep 17 00:00:00 2001 From: Arman Jivanyan Date: Thu, 13 Aug 2026 19:49:38 +0400 Subject: [PATCH 04/10] update angular vendors and bundling logic to avoid circular deps --- .../Accordion/Overview/Angular/index.html | 1 - .../ActionSheet/Basics/Angular/index.html | 1 - .../PopoverMode/Angular/index.html | 1 - .../Autocomplete/Overview/Angular/index.html | 1 - .../Demos/Box/Overview/Angular/index.html | 1 - .../Demos/Button/Icons/Angular/index.html | 1 - .../Button/PredefinedTypes/Angular/index.html | 1 - .../ButtonGroup/Overview/Angular/index.html | 1 - .../MultipleSelection/Angular/index.html | 1 - .../Calendar/Overview/Angular/index.html | 1 - .../CardView/CardTemplate/Angular/index.html | 1 - .../CardView/ColumnChooser/Angular/index.html | 1 - .../ColumnHeaderFilter/Angular/index.html | 1 - .../ColumnReordering/Angular/index.html | 1 - .../DataValidation/Angular/index.html | 1 - .../CardView/FieldTemplate/Angular/index.html | 1 - .../CardView/FilterPanel/Angular/index.html | 1 - .../CardView/Overview/Angular/index.html | 1 - .../CardView/PopupEditing/Angular/index.html | 1 - .../CardView/SearchPanel/Angular/index.html | 1 - .../CardView/Selection/Angular/index.html | 1 - .../CardView/SimpleArray/Angular/index.html | 1 - .../Demos/CardView/Sorting/Angular/index.html | 1 - .../CardView/WebAPIService/Angular/index.html | 1 - .../Charts/AjaxRequest/Angular/index.html | 1 - .../Charts/Annotation/Angular/index.html | 1 - .../Demos/Charts/Area/Angular/index.html | 1 - .../AreaSelectionZooming/Angular/index.html | 1 - .../Charts/AreaSparklines/Angular/index.html | 1 - .../AutoCalculatedBarWidth/Angular/index.html | 1 - .../AxisCustomPosition/Angular/index.html | 1 - .../AxisLabelCustomization/Angular/index.html | 1 - .../BarColorCustomization/Angular/index.html | 1 - .../Charts/BarDrillDown/Angular/index.html | 1 - .../Charts/BarSparklines/Angular/index.html | 1 - .../BiDirectionalBarChart/Angular/index.html | 1 - .../Demos/Charts/Bubble/Angular/index.html | 1 - .../Charts/Candlestick/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Charts/Colorization/Angular/index.html | 1 - .../Charts/ContinuousData/Angular/index.html | 1 - .../Demos/Charts/Crosshair/Angular/index.html | 1 - .../CustomAnnotations/Angular/index.html | 1 - .../Charts/CustomBarWidth/Angular/index.html | 1 - .../CustomFillStyles/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Charts/DiscreteData/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Demos/Charts/Doughnut/Angular/index.html | 1 - .../DoughnutSelection/Angular/index.html | 1 - .../DoughnutWithTopNSeries/Angular/index.html | 1 - .../Demos/Charts/DrillDown/Angular/index.html | 1 - .../Charts/DynamicSeries/Angular/index.html | 1 - .../Charts/EqualSizePies/Angular/index.html | 1 - .../Demos/Charts/ErrorBars/Angular/index.html | 1 - .../ExportAndPrintingAPI/Angular/index.html | 1 - .../ExportCustomMarkup/Angular/index.html | 1 - .../ExportSeveralCharts/Angular/index.html | 1 - .../FlatDataStructure/Angular/index.html | 1 - .../Charts/FullStackedBar/Angular/index.html | 1 - .../Charts/FunnelChart/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Demos/Charts/HoverMode/Angular/index.html | 1 - .../Charts/InvertedChart/Angular/index.html | 1 - .../LabelCustomization/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Demos/Charts/Line/Angular/index.html | 1 - .../LoadDataOnDemand/Angular/index.html | 1 - .../Charts/LogarithmicAxis/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Charts/MultipleAxes/Angular/index.html | 1 - .../Charts/MultiplePanes/Angular/index.html | 1 - .../MultiplePointSelection/Angular/index.html | 1 - .../Angular/index.html | 1 - .../NullPointSupport/Angular/index.html | 1 - .../Demos/Charts/Overview/Angular/index.html | 1 - .../Demos/Charts/Palette/Angular/index.html | 1 - .../Charts/ParetoChart/Angular/index.html | 1 - .../Charts/PeriodicData/Angular/index.html | 1 - .../demos/Demos/Charts/Pie/Angular/index.html | 1 - .../Charts/PieAnnotations/Angular/index.html | 1 - .../PieResolveLabelOverlap/Angular/index.html | 1 - .../PieWithMultipleSeries/Angular/index.html | 1 - .../Charts/PointImage/Angular/index.html | 1 - .../PointSelectionAPI/Angular/index.html | 1 - .../PointsAggregation/Angular/index.html | 1 - .../Angular/index.html | 1 - .../PolarChartAnnotations/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Charts/PyramidChart/Angular/index.html | 1 - .../Demos/Charts/RangeArea/Angular/index.html | 1 - .../Demos/Charts/RangeBar/Angular/index.html | 1 - .../ResolveLabelOverlap/Angular/index.html | 1 - .../Charts/SankeyChart/Angular/index.html | 1 - .../Charts/ScaleBreaks/Angular/index.html | 1 - .../Demos/Charts/Scatter/Angular/index.html | 1 - .../Demos/Charts/Selection/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Charts/SideBySideBar/Angular/index.html | 1 - .../Angular/index.html | 1 - .../SideBySideStackedBar/Angular/index.html | 1 - .../Charts/SignalRService/Angular/index.html | 1 - .../Charts/SimpleArray/Angular/index.html | 1 - .../Charts/SimpleBullets/Angular/index.html | 1 - .../SimpleSparklines/Angular/index.html | 1 - .../SmallValueGroups/Angular/index.html | 1 - .../Demos/Charts/SpiderWeb/Angular/index.html | 1 - .../Demos/Charts/Spline/Angular/index.html | 1 - .../Charts/SplineArea/Angular/index.html | 1 - .../Charts/StackedBar/Angular/index.html | 1 - .../Charts/StandardBar/Angular/index.html | 1 - .../Demos/Charts/StepArea/Angular/index.html | 1 - .../Demos/Charts/StepLine/Angular/index.html | 1 - .../Demos/Charts/Stock/Angular/index.html | 1 - .../Demos/Charts/Strips/Angular/index.html | 1 - .../TilingAlgorithms/Angular/index.html | 1 - .../Demos/Charts/Timeline/Angular/index.html | 1 - .../Charts/TooltipAPI/Angular/index.html | 1 - .../TooltipCustomization/Angular/index.html | 1 - .../Demos/Charts/WindRose/Angular/index.html | 1 - .../WinlossSparklines/Angular/index.html | 1 - .../ZoomingAndScrolling/Angular/index.html | 1 - .../ZoomingAndScrollingAPI/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Chat/Customization/Angular/index.html | 1 - .../Chat/FileAttachments/Angular/index.html | 1 - .../Chat/MessageEditing/Angular/index.html | 1 - .../Chat/MessageStreaming/Angular/index.html | 1 - .../Demos/Chat/Overview/Angular/index.html | 1 - .../Chat/PromptSuggestions/Angular/index.html | 1 - .../CheckBox/Overview/Angular/index.html | 1 - .../ColorBox/Overview/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Common/EditorsOverview/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Common/FormsOverview/Angular/index.html | 1 - .../Common/ListsOverview/Angular/index.html | 1 - .../NavigationOverview/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../ContextMenu/Basics/Angular/index.html | 1 - .../ContextMenu/Scrolling/Angular/index.html | 1 - .../ContextMenu/Templates/Angular/index.html | 1 - .../DataGrid/AIAssistant/Angular/index.html | 1 - .../DataGrid/AIColumns/Angular/index.html | 1 - .../Angular/index.html | 1 - .../DataGrid/AjaxRequest/Angular/index.html | 1 - .../DataGrid/Appearance/Angular/index.html | 1 - .../AutoPopulatedColumns/Angular/index.html | 1 - .../DataGrid/BatchEditing/Angular/index.html | 1 - .../BatchUpdateRequest/Angular/index.html | 1 - .../CascadingLookups/Angular/index.html | 1 - .../Demos/DataGrid/Cell/Angular/index.html | 1 - .../DataGrid/CellEditing/Angular/index.html | 1 - .../CollaborativeEditing/Angular/index.html | 1 - .../Demos/DataGrid/Column/Angular/index.html | 1 - .../DataGrid/ColumnChooser/Angular/index.html | 1 - .../ColumnHeaderFilter/Angular/index.html | 1 - .../ColumnReordering/Angular/index.html | 1 - .../ColumnResizing/Angular/index.html | 1 - .../ColumnsHidingPriority/Angular/index.html | 1 - .../Angular/index.html | 1 - .../CustomDataSource/Angular/index.html | 1 - .../DataGrid/CustomEditors/Angular/index.html | 1 - .../CustomSummaries/Angular/index.html | 1 - .../Angular/index.html | 1 - .../DataValidation/Angular/index.html | 1 - .../DeferredSelection/Angular/index.html | 1 - .../DnDBetweenGrids/Angular/index.html | 1 - .../EditStateManagement/Angular/index.html | 1 - .../Angular/index.html | 1 - .../ExcelJSExportImages/Angular/index.html | 1 - .../Angular/index.html | 1 - .../ExcelJSHeaderAndFooter/Angular/index.html | 1 - .../ExcelJSOverview/Angular/index.html | 1 - .../DataGrid/FilterPanel/Angular/index.html | 1 - .../DataGrid/Filtering/Angular/index.html | 1 - .../DataGrid/FilteringAPI/Angular/index.html | 1 - .../FixedAndStickyColumns/Angular/index.html | 1 - .../DataGrid/FocusedRow/Angular/index.html | 1 - .../DataGrid/FormEditing/Angular/index.html | 1 - .../Angular/index.html | 1 - .../DataGrid/GridSummaries/Angular/index.html | 1 - .../GroupSummaries/Angular/index.html | 1 - .../Angular/index.html | 1 - .../InfiniteScrolling/Angular/index.html | 1 - .../KeyboardNavigation/Angular/index.html | 1 - .../LocalReordering/Angular/index.html | 1 - .../MasterDetailAPI/Angular/index.html | 1 - .../MasterDetailView/Angular/index.html | 1 - .../MultiRowHeadersBands/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../MultipleSorting/Angular/index.html | 1 - .../NewRecordPosition/Angular/index.html | 1 - .../DataGrid/Overview/Angular/index.html | 1 - .../PDFCellCustomization/Angular/index.html | 1 - .../PDFExportImages/Angular/index.html | 1 - .../PDFExportMultipleGrids/Angular/index.html | 1 - .../PDFHeaderAndFooter/Angular/index.html | 1 - .../DataGrid/PDFOverview/Angular/index.html | 1 - .../DataGrid/PopupEditing/Angular/index.html | 1 - .../RealTimeUpdates/Angular/index.html | 1 - .../Angular/index.html | 1 - .../RecordGrouping/Angular/index.html | 1 - .../DataGrid/RecordPaging/Angular/index.html | 1 - .../RemoteCRUDOperations/Angular/index.html | 1 - .../RemoteGrouping/Angular/index.html | 1 - .../RemoteReordering/Angular/index.html | 1 - .../RemoteVirtualScrolling/Angular/index.html | 1 - .../RightToLeftSupport/Angular/index.html | 1 - .../Demos/DataGrid/Row/Angular/index.html | 1 - .../DataGrid/RowEditing/Angular/index.html | 1 - .../DataGrid/RowSelection/Angular/index.html | 1 - .../SemanticSearch/Angular/index.html | 1 - .../SignalRService/Angular/index.html | 1 - .../DataGrid/SimpleArray/Angular/index.html | 1 - .../StatePersistence/Angular/index.html | 1 - .../Demos/DataGrid/Toolbar/Angular/index.html | 1 - .../VirtualScrolling/Angular/index.html | 1 - .../DataGrid/WebAPIService/Angular/index.html | 1 - .../DateBox/Formatting/Angular/index.html | 1 - .../Demos/DateBox/Overview/Angular/index.html | 1 - .../Formatting/Angular/index.html | 1 - .../DateRangeBox/Overview/Angular/index.html | 1 - .../Diagram/Adaptability/Angular/index.html | 1 - .../AdvancedDataBinding/Angular/index.html | 1 - .../Diagram/Containers/Angular/index.html | 1 - .../CustomShapesWithIcons/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../CustomShapesWithTexts/Angular/index.html | 1 - .../Diagram/ImagesInShapes/Angular/index.html | 1 - .../Diagram/ItemSelection/Angular/index.html | 1 - .../NodesAndEdgesArrays/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../OperationRestrictions/Angular/index.html | 1 - .../Demos/Diagram/Overview/Angular/index.html | 1 - .../Demos/Diagram/ReadOnly/Angular/index.html | 1 - .../Diagram/SimpleView/Angular/index.html | 1 - .../UICustomization/Angular/index.html | 1 - .../Diagram/WebAPIService/Angular/index.html | 1 - .../LeftOrRightPosition/Angular/index.html | 1 - .../TopOrBottomPosition/Angular/index.html | 1 - .../MultipleSelection/Angular/index.html | 1 - .../SingleSelection/Angular/index.html | 1 - .../Overview/Angular/index.html | 1 - .../FieldSet/Overview/Angular/index.html | 1 - .../BindingToEF/Angular/index.html | 1 - .../BindingToFileSystem/Angular/index.html | 1 - .../Angular/index.html | 1 - .../CustomThumbnails/Angular/index.html | 1 - .../FileManager/Overview/Angular/index.html | 1 - .../UICustomization/Angular/index.html | 1 - .../ChunkUpload/Angular/index.html | 1 - .../CustomDropzone/Angular/index.html | 1 - .../FileSelection/Angular/index.html | 1 - .../FileUploading/Angular/index.html | 1 - .../Validation/Angular/index.html | 1 - .../Customization/Angular/index.html | 1 - .../WithDataGrid/Angular/index.html | 1 - .../FilterBuilder/WithList/Angular/index.html | 1 - .../Overview/Angular/index.html | 1 - .../Form/Adaptability/Angular/index.html | 1 - .../Demos/Form/Grouping/Angular/index.html | 1 - .../Form/ItemCustomization/Angular/index.html | 1 - .../Demos/Form/Overview/Angular/index.html | 1 - .../Demos/Form/SmartPaste/Angular/index.html | 1 - .../UpdateItemsDynamically/Angular/index.html | 1 - .../Demos/Form/Validation/Angular/index.html | 1 - .../Gallery/ItemTemplate/Angular/index.html | 1 - .../Demos/Gallery/Overview/Angular/index.html | 1 - .../Demos/Gantt/Appearance/Angular/index.html | 1 - .../Gantt/ContextMenu/Angular/index.html | 1 - .../Gantt/DataBinding/Angular/index.html | 1 - .../Gantt/ExportToPDF/Angular/index.html | 1 - .../Demos/Gantt/FilterRow/Angular/index.html | 1 - .../Gantt/HeaderFilter/Angular/index.html | 1 - .../Demos/Gantt/Overview/Angular/index.html | 1 - .../Demos/Gantt/Sorting/Angular/index.html | 1 - .../Demos/Gantt/StripLines/Angular/index.html | 1 - .../Gantt/TaskTemplate/Angular/index.html | 1 - .../Demos/Gantt/Toolbar/Angular/index.html | 1 - .../Demos/Gantt/Validation/Angular/index.html | 1 - .../AnglesCustomization/Angular/index.html | 1 - .../Demos/Gauges/BarGauge/Angular/index.html | 1 - .../Gauges/CircularGauge/Angular/index.html | 1 - .../Gauges/CustomLayout/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../GaugeTitleCustomized/Angular/index.html | 1 - .../Gauges/GaugeTooltip/Angular/index.html | 1 - .../LabelsCustomization/Angular/index.html | 1 - .../Gauges/LinearGauge/Angular/index.html | 1 - .../Demos/Gauges/Overview/Angular/index.html | 1 - .../Demos/Gauges/Palette/Angular/index.html | 1 - .../PaletteForRanges/Angular/index.html | 1 - .../RangeBarBaseValue/Angular/index.html | 1 - .../Angular/index.html | 1 - .../ScaleCustomTickValues/Angular/index.html | 1 - .../ScaleLabelFormatting/Angular/index.html | 1 - .../Gauges/ScaleMinorTicks/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../Demos/Gauges/Tooltip/Angular/index.html | 1 - .../ValueIndicatorsAPI/Angular/index.html | 1 - .../VariableNumberOfBars/Angular/index.html | 1 - .../AITextEditing/Angular/index.html | 1 - .../MarkdownSupport/Angular/index.html | 1 - .../HtmlEditor/Mentions/Angular/index.html | 1 - .../HtmlEditor/Overview/Angular/index.html | 1 - .../HtmlEditor/Tables/Angular/index.html | 1 - .../ToolbarCustomization/Angular/index.html | 1 - .../Demos/List/DragAndDrop/Angular/index.html | 1 - .../Demos/List/Grouping/Angular/index.html | 1 - .../List/ItemDeletion/Angular/index.html | 1 - .../List/ItemTemplate/Angular/index.html | 1 - .../Demos/List/Search/Angular/index.html | 1 - .../Demos/List/Selection/Angular/index.html | 1 - .../Demos/List/WebAPI/Angular/index.html | 1 - .../LoadIndicator/Overview/Angular/index.html | 1 - .../LoadPanel/Overview/Angular/index.html | 1 - .../UsingGlobalize/Angular/index.html | 1 - .../Localization/UsingIntl/Angular/index.html | 1 - .../Demos/Lookup/Basics/Angular/index.html | 1 - .../Lookup/EventHandling/Angular/index.html | 1 - .../Demos/Lookup/Templates/Angular/index.html | 1 - .../Demos/Map/Markers/Angular/index.html | 1 - .../Map/ProvidersAndTypes/Angular/index.html | 1 - .../demos/Demos/Map/Routes/Angular/index.html | 1 - .../Demos/Menu/Overview/Angular/index.html | 1 - .../Demos/Menu/Scrolling/Angular/index.html | 1 - .../MultiView/Overview/Angular/index.html | 1 - .../NumberBox/Formatting/Angular/index.html | 1 - .../NumberBox/Overview/Angular/index.html | 1 - .../Pagination/Overview/Angular/index.html | 1 - .../ChartIntegration/Angular/index.html | 1 - .../Customization/Angular/index.html | 1 - .../PivotGrid/DrillDown/Angular/index.html | 1 - .../Angular/index.html | 1 - .../ExcelJSOverview/Angular/index.html | 1 - .../ExcelJsHeaderAndFooter/Angular/index.html | 1 - .../PivotGrid/FieldPanel/Angular/index.html | 1 - .../PivotGrid/Filtering/Angular/index.html | 1 - .../IntegratedFieldChooser/Angular/index.html | 1 - .../OLAPDataSource/Angular/index.html | 1 - .../PivotGrid/Overview/Angular/index.html | 1 - .../RemoteVirtualScrolling/Angular/index.html | 1 - .../RunningTotals/Angular/index.html | 1 - .../PivotGrid/SimpleArray/Angular/index.html | 1 - .../StandaloneFieldChooser/Angular/index.html | 1 - .../StatePersistence/Angular/index.html | 1 - .../SummaryDisplayModes/Angular/index.html | 1 - .../VirtualScrolling/Angular/index.html | 1 - .../WebAPIService/Angular/index.html | 1 - .../Demos/Popover/Overview/Angular/index.html | 1 - .../Demos/Popup/Overview/Angular/index.html | 1 - .../Demos/Popup/Scrolling/Angular/index.html | 1 - .../ProgressBar/Overview/Angular/index.html | 1 - .../RadioGroup/Overview/Angular/index.html | 1 - .../BackgroundImage/Angular/index.html | 1 - .../Calculation/Angular/index.html | 1 - .../CustomFormatting/Angular/index.html | 1 - .../DateTimeScale/Angular/index.html | 1 - .../Angular/index.html | 1 - .../DiscreteScale/Angular/index.html | 1 - .../EmbeddedChart/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../RangeSelector/Filter/Angular/index.html | 1 - .../LogarithmicScale/Angular/index.html | 1 - .../NumericScale/Angular/index.html | 1 - .../Angular/index.html | 1 - .../RangeSlider/Overview/Angular/index.html | 1 - .../Resizable/Overview/Angular/index.html | 1 - .../ResponsiveBox/Overview/Angular/index.html | 1 - .../Scheduler/Adaptability/Angular/index.html | 1 - .../Demos/Scheduler/Agenda/Angular/index.html | 1 - .../AllDayPanelMode/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Scheduler/BasicViews/Angular/index.html | 1 - .../CellTemplates/Angular/index.html | 1 - .../Scheduler/ContextMenu/Angular/index.html | 1 - .../CreateFromSelection/Angular/index.html | 1 - .../CurrentTimeIndicator/Angular/index.html | 1 - .../CustomViewDuration/Angular/index.html | 1 - .../Scheduler/DragAndDrop/Angular/index.html | 1 - .../Scheduler/Editing/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Scheduler/GroupByDate/Angular/index.html | 1 - .../GroupingByResources/Angular/index.html | 1 - .../Scheduler/HiddenDays/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Scheduler/Overview/Angular/index.html | 1 - .../RecurringAppointments/Angular/index.html | 1 - .../ResolveTimeConflicts/Angular/index.html | 1 - .../Scheduler/Resources/Angular/index.html | 1 - .../SignalRService/Angular/index.html | 1 - .../Scheduler/SimpleArray/Angular/index.html | 1 - .../Scheduler/Templates/Angular/index.html | 1 - .../TimeZonesSupport/Angular/index.html | 1 - .../Scheduler/Timelines/Angular/index.html | 1 - .../Scheduler/Toolbar/Angular/index.html | 1 - .../VirtualScrolling/Angular/index.html | 1 - .../WebAPIService/Angular/index.html | 1 - .../Scheduler/WorkShifts/Angular/index.html | 1 - .../ScrollView/Overview/Angular/index.html | 1 - .../Angular/index.html | 1 - .../SelectBox/Grouping/Angular/index.html | 1 - .../SelectBox/Overview/Angular/index.html | 1 - .../SearchAndEditing/Angular/index.html | 1 - .../Demos/Slider/Overview/Angular/index.html | 1 - .../Sortable/Customization/Angular/index.html | 1 - .../Demos/Sortable/Kanban/Angular/index.html | 1 - .../SpeechToText/Overview/Angular/index.html | 1 - .../Splitter/Overview/Angular/index.html | 1 - .../FormIntegration/Angular/index.html | 1 - .../Demos/Stepper/Overview/Angular/index.html | 1 - .../Stepper/StepTemplate/Angular/index.html | 1 - .../Demos/Switch/Overview/Angular/index.html | 1 - .../TabPanel/DragAndDrop/Angular/index.html | 1 - .../TabPanel/Overview/Angular/index.html | 1 - .../TabPanel/Templates/Angular/index.html | 1 - .../Demos/Tabs/Overview/Angular/index.html | 1 - .../Demos/Tabs/Selection/Angular/index.html | 1 - .../Demos/TagBox/Grouping/Angular/index.html | 1 - .../Demos/TagBox/Overview/Angular/index.html | 1 - .../TagCountLimitation/Angular/index.html | 1 - .../TextArea/Overview/Angular/index.html | 1 - .../Demos/TextBox/Overview/Angular/index.html | 1 - .../Demos/TileView/Basics/Angular/index.html | 1 - .../TileView/Directions/Angular/index.html | 1 - .../TileView/ItemTemplate/Angular/index.html | 1 - .../Demos/Toast/Overview/Angular/index.html | 1 - .../Demos/Toast/Stack/Angular/index.html | 1 - .../Toolbar/Adaptability/Angular/index.html | 1 - .../Demos/Toolbar/Overview/Angular/index.html | 1 - .../Demos/Tooltip/Overview/Angular/index.html | 1 - .../TreeList/AIColumns/Angular/index.html | 1 - .../TreeList/Adaptability/Angular/index.html | 1 - .../TreeList/BatchEditing/Angular/index.html | 1 - .../TreeList/CellEditing/Angular/index.html | 1 - .../TreeList/ColumnChooser/Angular/index.html | 1 - .../ColumnHeaderFilter/Angular/index.html | 1 - .../Angular/index.html | 1 - .../TreeList/FilterModes/Angular/index.html | 1 - .../TreeList/FilterPanel/Angular/index.html | 1 - .../TreeList/FilterRow/Angular/index.html | 1 - .../FixedAndStickyColumns/Angular/index.html | 1 - .../TreeList/FocusedRow/Angular/index.html | 1 - .../TreeList/FormEditing/Angular/index.html | 1 - .../KeyboardNavigation/Angular/index.html | 1 - .../LoadDataOnDemand/Angular/index.html | 1 - .../LocalReordering/Angular/index.html | 1 - .../MultipleRowSelection/Angular/index.html | 1 - .../MultipleSorting/Angular/index.html | 1 - .../TreeList/Overview/Angular/index.html | 1 - .../Demos/TreeList/Paging/Angular/index.html | 1 - .../TreeList/PopupEditing/Angular/index.html | 1 - .../TreeList/Reordering/Angular/index.html | 1 - .../TreeList/Resizing/Angular/index.html | 1 - .../TreeList/RowEditing/Angular/index.html | 1 - .../TreeList/SearchPanel/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../SingleRowSelection/Angular/index.html | 1 - .../StatePersistence/Angular/index.html | 1 - .../TreeList/WebAPIService/Angular/index.html | 1 - .../ContextMenuIntegration/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../FlatDataStructure/Angular/index.html | 1 - .../Angular/index.html | 1 - .../Angular/index.html | 1 - .../LoadDataOnDemand/Angular/index.html | 1 - .../TreeViewWithSearchBar/Angular/index.html | 1 - .../TreeView/VirtualMode/Angular/index.html | 1 - .../Validation/Overview/Angular/index.html | 1 - .../BubbleMarkers/Angular/index.html | 1 - .../ColorsCustomization/Angular/index.html | 1 - .../CustomAnnotations/Angular/index.html | 1 - .../CustomMapData/Angular/index.html | 1 - .../CustomProjection/Angular/index.html | 1 - .../DynamicViewport/Angular/index.html | 1 - .../VectorMap/FloorPlan/Angular/index.html | 1 - .../VectorMap/ImageMarkers/Angular/index.html | 1 - .../Demos/VectorMap/Legend/Angular/index.html | 1 - .../MultipleLayers/Angular/index.html | 1 - .../VectorMap/Overview/Angular/index.html | 1 - .../VectorMap/Palette/Angular/index.html | 1 - .../VectorMap/PieMarkers/Angular/index.html | 1 - .../TooltipsCustomization/Angular/index.html | 1 - .../ZoomingAndCentering/Angular/index.html | 1 - .../utils/server/build-vendor-bundles.js | 9 +++++--- apps/demos/utils/server/csp-bundle-angular.js | 22 ++++++------------- 502 files changed, 13 insertions(+), 518 deletions(-) diff --git a/apps/demos/Demos/Accordion/Overview/Angular/index.html b/apps/demos/Demos/Accordion/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/index.html +++ b/apps/demos/Demos/Accordion/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Box/Overview/Angular/index.html b/apps/demos/Demos/Box/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Box/Overview/Angular/index.html +++ b/apps/demos/Demos/Box/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Button/Icons/Angular/index.html b/apps/demos/Demos/Button/Icons/Angular/index.html index f003a8295bf4..9bb26cdb89e8 100644 --- a/apps/demos/Demos/Button/Icons/Angular/index.html +++ b/apps/demos/Demos/Button/Icons/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Calendar/Overview/Angular/index.html b/apps/demos/Demos/Calendar/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/index.html +++ b/apps/demos/Demos/Calendar/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/DataValidation/Angular/index.html b/apps/demos/Demos/CardView/DataValidation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/DataValidation/Angular/index.html +++ b/apps/demos/Demos/CardView/DataValidation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/Overview/Angular/index.html b/apps/demos/Demos/CardView/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Overview/Angular/index.html +++ b/apps/demos/Demos/CardView/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/Selection/Angular/index.html b/apps/demos/Demos/CardView/Selection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Selection/Angular/index.html +++ b/apps/demos/Demos/CardView/Selection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/Sorting/Angular/index.html b/apps/demos/Demos/CardView/Sorting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Sorting/Angular/index.html +++ b/apps/demos/Demos/CardView/Sorting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Annotation/Angular/index.html b/apps/demos/Demos/Charts/Annotation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/index.html +++ b/apps/demos/Demos/Charts/Annotation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Area/Angular/index.html b/apps/demos/Demos/Charts/Area/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Area/Angular/index.html +++ b/apps/demos/Demos/Charts/Area/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html index 51be7f4464ed..e84d5b268851 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html @@ -23,7 +23,6 @@ - diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Bubble/Angular/index.html b/apps/demos/Demos/Charts/Bubble/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/index.html +++ b/apps/demos/Demos/Charts/Bubble/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/index.html b/apps/demos/Demos/Charts/Candlestick/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Colorization/Angular/index.html b/apps/demos/Demos/Charts/Colorization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/index.html +++ b/apps/demos/Demos/Charts/Colorization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/index.html b/apps/demos/Demos/Charts/Crosshair/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/index.html b/apps/demos/Demos/Charts/Doughnut/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/index.html b/apps/demos/Demos/Charts/DrillDown/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/index.html b/apps/demos/Demos/Charts/HoverMode/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Line/Angular/index.html b/apps/demos/Demos/Charts/Line/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Line/Angular/index.html +++ b/apps/demos/Demos/Charts/Line/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Overview/Angular/index.html b/apps/demos/Demos/Charts/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/index.html +++ b/apps/demos/Demos/Charts/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Palette/Angular/index.html b/apps/demos/Demos/Charts/Palette/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/index.html +++ b/apps/demos/Demos/Charts/Palette/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Pie/Angular/index.html b/apps/demos/Demos/Charts/Pie/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/index.html +++ b/apps/demos/Demos/Charts/Pie/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PointImage/Angular/index.html b/apps/demos/Demos/Charts/PointImage/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/index.html +++ b/apps/demos/Demos/Charts/PointImage/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/index.html b/apps/demos/Demos/Charts/RangeArea/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/index.html b/apps/demos/Demos/Charts/RangeBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Scatter/Angular/index.html b/apps/demos/Demos/Charts/Scatter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/index.html +++ b/apps/demos/Demos/Charts/Scatter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Selection/Angular/index.html b/apps/demos/Demos/Charts/Selection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/index.html +++ b/apps/demos/Demos/Charts/Selection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/index.html b/apps/demos/Demos/Charts/SignalRService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html index 9eadaab352db..0eba71e12649 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Spline/Angular/index.html b/apps/demos/Demos/Charts/Spline/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/index.html +++ b/apps/demos/Demos/Charts/Spline/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/index.html b/apps/demos/Demos/Charts/SplineArea/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/index.html b/apps/demos/Demos/Charts/StackedBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/index.html b/apps/demos/Demos/Charts/StandardBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/StepArea/Angular/index.html b/apps/demos/Demos/Charts/StepArea/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/index.html +++ b/apps/demos/Demos/Charts/StepArea/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/StepLine/Angular/index.html b/apps/demos/Demos/Charts/StepLine/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/index.html +++ b/apps/demos/Demos/Charts/StepLine/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Stock/Angular/index.html b/apps/demos/Demos/Charts/Stock/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/index.html +++ b/apps/demos/Demos/Charts/Stock/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Strips/Angular/index.html b/apps/demos/Demos/Charts/Strips/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/index.html +++ b/apps/demos/Demos/Charts/Strips/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/Timeline/Angular/index.html b/apps/demos/Demos/Charts/Timeline/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/index.html +++ b/apps/demos/Demos/Charts/Timeline/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/WindRose/Angular/index.html b/apps/demos/Demos/Charts/WindRose/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/index.html +++ b/apps/demos/Demos/Charts/WindRose/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/Customization/Angular/index.html b/apps/demos/Demos/Chat/Customization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/Customization/Angular/index.html +++ b/apps/demos/Demos/Chat/Customization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/Overview/Angular/index.html b/apps/demos/Demos/Chat/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/Overview/Angular/index.html +++ b/apps/demos/Demos/Chat/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/index.html b/apps/demos/Demos/CheckBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/index.html b/apps/demos/Demos/ColorBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/FormsOverview/Angular/index.html b/apps/demos/Demos/Common/FormsOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/FormsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/FormsOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/ListsOverview/Angular/index.html b/apps/demos/Demos/Common/ListsOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/ListsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/ListsOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Cell/Angular/index.html b/apps/demos/Demos/DataGrid/Cell/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Cell/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Column/Angular/index.html b/apps/demos/Demos/DataGrid/Column/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Column/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Column/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/index.html b/apps/demos/Demos/DataGrid/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Row/Angular/index.html b/apps/demos/Demos/DataGrid/Row/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Row/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Row/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/index.html b/apps/demos/Demos/DateBox/Formatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DateBox/Overview/Angular/index.html b/apps/demos/Demos/DateBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/Containers/Angular/index.html b/apps/demos/Demos/Diagram/Containers/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/index.html +++ b/apps/demos/Demos/Diagram/Containers/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/Overview/Angular/index.html b/apps/demos/Demos/Diagram/Overview/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/index.html +++ b/apps/demos/Demos/Diagram/Overview/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html index 42f9e78710d8..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/index.html b/apps/demos/Demos/FieldSet/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/Overview/Angular/index.html b/apps/demos/Demos/FileManager/Overview/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/index.html +++ b/apps/demos/Demos/FileManager/Overview/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/index.html b/apps/demos/Demos/FileUploader/Validation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html index f003a8295bf4..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html index f003a8295bf4..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html index f003a8295bf4..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/Adaptability/Angular/index.html b/apps/demos/Demos/Form/Adaptability/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Form/Adaptability/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/Grouping/Angular/index.html b/apps/demos/Demos/Form/Grouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Grouping/Angular/index.html +++ b/apps/demos/Demos/Form/Grouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/Overview/Angular/index.html b/apps/demos/Demos/Form/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Overview/Angular/index.html +++ b/apps/demos/Demos/Form/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/SmartPaste/Angular/index.html b/apps/demos/Demos/Form/SmartPaste/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/SmartPaste/Angular/index.html +++ b/apps/demos/Demos/Form/SmartPaste/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Form/Validation/Angular/index.html b/apps/demos/Demos/Form/Validation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Validation/Angular/index.html +++ b/apps/demos/Demos/Form/Validation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gallery/Overview/Angular/index.html b/apps/demos/Demos/Gallery/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/index.html +++ b/apps/demos/Demos/Gallery/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/Appearance/Angular/index.html b/apps/demos/Demos/Gantt/Appearance/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Appearance/Angular/index.html +++ b/apps/demos/Demos/Gantt/Appearance/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/Overview/Angular/index.html b/apps/demos/Demos/Gantt/Overview/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/index.html +++ b/apps/demos/Demos/Gantt/Overview/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/index.html b/apps/demos/Demos/Gantt/Sorting/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/index.html b/apps/demos/Demos/Gantt/StripLines/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gantt/Validation/Angular/index.html b/apps/demos/Demos/Gantt/Validation/Angular/index.html index 600637d76c5e..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/index.html +++ b/apps/demos/Demos/Gantt/Validation/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/Overview/Angular/index.html b/apps/demos/Demos/Gauges/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/index.html +++ b/apps/demos/Demos/Gauges/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/Palette/Angular/index.html b/apps/demos/Demos/Gauges/Palette/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/index.html +++ b/apps/demos/Demos/Gauges/Palette/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/DragAndDrop/Angular/index.html b/apps/demos/Demos/List/DragAndDrop/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/List/DragAndDrop/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/Grouping/Angular/index.html b/apps/demos/Demos/List/Grouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/Grouping/Angular/index.html +++ b/apps/demos/Demos/List/Grouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/ItemDeletion/Angular/index.html b/apps/demos/Demos/List/ItemDeletion/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/ItemDeletion/Angular/index.html +++ b/apps/demos/Demos/List/ItemDeletion/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/index.html b/apps/demos/Demos/List/ItemTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/Search/Angular/index.html b/apps/demos/Demos/List/Search/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/Search/Angular/index.html +++ b/apps/demos/Demos/List/Search/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/Selection/Angular/index.html b/apps/demos/Demos/List/Selection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/Selection/Angular/index.html +++ b/apps/demos/Demos/List/Selection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/List/WebAPI/Angular/index.html b/apps/demos/Demos/List/WebAPI/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/index.html +++ b/apps/demos/Demos/List/WebAPI/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Lookup/Basics/Angular/index.html b/apps/demos/Demos/Lookup/Basics/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/index.html +++ b/apps/demos/Demos/Lookup/Basics/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Lookup/Templates/Angular/index.html b/apps/demos/Demos/Lookup/Templates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/index.html +++ b/apps/demos/Demos/Lookup/Templates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Map/Markers/Angular/index.html b/apps/demos/Demos/Map/Markers/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Map/Markers/Angular/index.html +++ b/apps/demos/Demos/Map/Markers/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Map/Routes/Angular/index.html b/apps/demos/Demos/Map/Routes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Map/Routes/Angular/index.html +++ b/apps/demos/Demos/Map/Routes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Menu/Overview/Angular/index.html b/apps/demos/Demos/Menu/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/index.html +++ b/apps/demos/Demos/Menu/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/index.html b/apps/demos/Demos/Menu/Scrolling/Angular/index.html index 33a24f52ba0b..3f08cd754b29 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Angular/index.html @@ -10,7 +10,6 @@ Loading... - diff --git a/apps/demos/Demos/MultiView/Overview/Angular/index.html b/apps/demos/Demos/MultiView/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/index.html +++ b/apps/demos/Demos/MultiView/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/index.html b/apps/demos/Demos/NumberBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Pagination/Overview/Angular/index.html b/apps/demos/Demos/Pagination/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/index.html +++ b/apps/demos/Demos/Pagination/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Popover/Overview/Angular/index.html b/apps/demos/Demos/Popover/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/index.html +++ b/apps/demos/Demos/Popover/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Popup/Overview/Angular/index.html b/apps/demos/Demos/Popup/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/index.html +++ b/apps/demos/Demos/Popup/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/index.html b/apps/demos/Demos/Popup/Scrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Resizable/Overview/Angular/index.html b/apps/demos/Demos/Resizable/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/index.html +++ b/apps/demos/Demos/Resizable/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/index.html b/apps/demos/Demos/Scheduler/Editing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/index.html b/apps/demos/Demos/Scheduler/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/index.html b/apps/demos/Demos/Scheduler/Resources/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html index 3344817fb56a..950ccb18e117 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/index.html b/apps/demos/Demos/Scheduler/Templates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Templates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/index.html b/apps/demos/Demos/ScrollView/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/index.html b/apps/demos/Demos/SelectBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Slider/Overview/Angular/index.html b/apps/demos/Demos/Slider/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/index.html +++ b/apps/demos/Demos/Slider/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Sortable/Customization/Angular/index.html b/apps/demos/Demos/Sortable/Customization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/index.html +++ b/apps/demos/Demos/Sortable/Customization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/index.html b/apps/demos/Demos/Sortable/Kanban/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Splitter/Overview/Angular/index.html b/apps/demos/Demos/Splitter/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/index.html +++ b/apps/demos/Demos/Splitter/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Stepper/Overview/Angular/index.html b/apps/demos/Demos/Stepper/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/Overview/Angular/index.html +++ b/apps/demos/Demos/Stepper/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Switch/Overview/Angular/index.html b/apps/demos/Demos/Switch/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/index.html +++ b/apps/demos/Demos/Switch/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/index.html b/apps/demos/Demos/TabPanel/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/index.html b/apps/demos/Demos/TabPanel/Templates/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Tabs/Overview/Angular/index.html b/apps/demos/Demos/Tabs/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/index.html +++ b/apps/demos/Demos/Tabs/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Tabs/Selection/Angular/index.html b/apps/demos/Demos/Tabs/Selection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/index.html +++ b/apps/demos/Demos/Tabs/Selection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TagBox/Grouping/Angular/index.html b/apps/demos/Demos/TagBox/Grouping/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/TagBox/Grouping/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TagBox/Overview/Angular/index.html b/apps/demos/Demos/TagBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TagBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TextArea/Overview/Angular/index.html b/apps/demos/Demos/TextArea/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/index.html +++ b/apps/demos/Demos/TextArea/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TextBox/Overview/Angular/index.html b/apps/demos/Demos/TextBox/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TextBox/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TileView/Basics/Angular/index.html b/apps/demos/Demos/TileView/Basics/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/index.html +++ b/apps/demos/Demos/TileView/Basics/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TileView/Directions/Angular/index.html b/apps/demos/Demos/TileView/Directions/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/index.html +++ b/apps/demos/Demos/TileView/Directions/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Toast/Overview/Angular/index.html b/apps/demos/Demos/Toast/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/index.html +++ b/apps/demos/Demos/Toast/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Toast/Stack/Angular/index.html b/apps/demos/Demos/Toast/Stack/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/index.html +++ b/apps/demos/Demos/Toast/Stack/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/index.html b/apps/demos/Demos/Toolbar/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/index.html b/apps/demos/Demos/Tooltip/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/Overview/Angular/index.html b/apps/demos/Demos/TreeList/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/index.html +++ b/apps/demos/Demos/TreeList/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/Paging/Angular/index.html b/apps/demos/Demos/TreeList/Paging/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/index.html +++ b/apps/demos/Demos/TreeList/Paging/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/index.html b/apps/demos/Demos/TreeList/Reordering/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/index.html b/apps/demos/Demos/TreeList/Resizing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/Validation/Overview/Angular/index.html b/apps/demos/Demos/Validation/Overview/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/index.html +++ b/apps/demos/Demos/Validation/Overview/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html index f62a37b06749..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html @@ -12,7 +12,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/Legend/Angular/index.html b/apps/demos/Demos/VectorMap/Legend/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Legend/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Legend/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/index.html b/apps/demos/Demos/VectorMap/Overview/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/index.html b/apps/demos/Demos/VectorMap/Palette/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html index 61d99198d988..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html @@ -13,7 +13,6 @@ Loading... - diff --git a/apps/demos/utils/server/build-vendor-bundles.js b/apps/demos/utils/server/build-vendor-bundles.js index fbc1e57d4b49..d691ad371983 100644 --- a/apps/demos/utils/server/build-vendor-bundles.js +++ b/apps/demos/utils/server/build-vendor-bundles.js @@ -1,12 +1,15 @@ -// CLI: node utils/server/build-vendor-bundles.js [React|Vue|Angular ...] -// Defaults to all three. +// CLI: node utils/server/build-vendor-bundles.js [React|Vue ...] +// Defaults to both. Angular isn't supported here — see csp-bundle-angular.js's +// `splitting: true` batch build instead (a standalone vendor bundle conflicts with the +// per-demo Angular compiler plugin's own need to read every file's real source; see git +// history / project memory for the investigation). const path = require('path'); const fs = require('fs'); const { buildVendorBundle } = require('./vendor-bundle'); const REQUESTED = process.argv.slice(2); -const FRAMEWORKS = REQUESTED.length > 0 ? REQUESTED : ['React', 'Vue', 'Angular']; +const FRAMEWORKS = REQUESTED.length > 0 ? REQUESTED : ['React', 'Vue']; function reactVueOptions(framework) { // eslint-disable-next-line global-require diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index fe4f17624058..d09d272bb7b5 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -7,7 +7,6 @@ const fs = require('fs'); const os = require('os'); const esbuild = require('esbuild'); const { extractDemoHeadExtras, extractDemoBodyInner } = require('./demo-html'); -const { vendorGlobalPlugin, vendorScriptTag } = require('./vendor-bundle'); const DEMOS_APP_ROOT = path.resolve(__dirname, '..', '..'); const REPO_ROOT = path.resolve(DEMOS_APP_ROOT, '..', '..'); @@ -109,19 +108,13 @@ function buildHtml({ jsFiles, cssFiles, srcDir }) { ...cssFiles.map((f) => ``), ].join('\n '); const bodyInner = extractDemoBodyInner(srcDir) || DEFAULT_BODY_INNER; - const scriptTag = (f) => { - const src = f.startsWith('.') ? f : `./${f}`; - const type = f === ANGULAR_ZONE_SCRIPT ? '' : ' type="module"'; - return ``; - }; - // zone.js must load before the vendor bundle: @angular/core does async work - // (promises, etc.) at module-evaluation time, and that needs to be zone-patched. - const vendorTag = vendorScriptTag('Angular'); - const scripts = [ - ...jsFiles.filter((f) => f === ANGULAR_ZONE_SCRIPT).map(scriptTag), - vendorTag, - ...jsFiles.filter((f) => f !== ANGULAR_ZONE_SCRIPT).map(scriptTag), - ].filter(Boolean).join('\n '); + const scripts = jsFiles + .map((f) => { + const src = f.startsWith('.') ? f : `./${f}`; + const type = f === ANGULAR_ZONE_SCRIPT ? '' : ' type="module"'; + return ``; + }) + .join('\n '); return ` @@ -597,7 +590,6 @@ function makeBuildOptions({ logLevel: 'silent', metafile: true, plugins: [ - vendorGlobalPlugin('Angular'), angularSingleCopyPlugin, antiForgeryPlugin, systemJsQuirksPlugin, From 394bf4cf9729aab469e1970184dfca33fd32742f Mon Sep 17 00:00:00 2001 From: Andrei Vorobev Date: Tue, 18 Aug 2026 18:42:49 +0300 Subject: [PATCH 05/10] feat: added demo-manifests for demos --- apps/demos/.gitignore | 5 +- apps/demos/utils/server/csp-bundle-angular.js | 16 +++ apps/demos/utils/server/csp-bundle.js | 21 ++++ apps/demos/utils/server/vendor-bundle.js | 116 +++++++++++++++--- 4 files changed, 134 insertions(+), 24 deletions(-) diff --git a/apps/demos/.gitignore b/apps/demos/.gitignore index 50964c61fbef..f04b29a36288 100644 --- a/apps/demos/.gitignore +++ b/apps/demos/.gitignore @@ -28,12 +28,9 @@ shared/empty-file.js Demos/**/config.js Demos/**/tsconfig.json -# esbuild in-place demo build output (see utils/build/) — generated next to -# each demo's own source, same convention as Demos/**/config.js above. Demos/**/bundle.js Demos/**/bundle.css -# esbuild's own code-splitting output for batched Angular demo builds (see -# csp-bundle-angular.js's makeBuildOptions) — shared chunks, not owned by any one demo. +Demos/**/demo.manifest.json Demos/_chunks .DS_Store diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index d09d272bb7b5..8c676085ce72 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -524,6 +524,20 @@ function prepareDemo(demo) { return { ...demo, effectiveEntry, fileReplacements }; } +// CodeSandbox-facing manifest of every npm package a demo needs. Angular has no shared +// vendor bundle (see this file's header comment), so unlike React/Vue this is entirely +// derived from the demo's own imports — plus zone.js, which every Angular demo needs but +// none of them import (it's loaded via ANGULAR_ZONE_SCRIPT's