diff --git a/.github/workflows/visual-tests-demos.yml b/.github/workflows/visual-tests-demos.yml index e7b9e9f13204..9c4291f993ed 100644 --- a/.github/workflows/visual-tests-demos.yml +++ b/.github/workflows/visual-tests-demos.yml @@ -273,17 +273,80 @@ jobs: devextreme-vue-installer.tgz retention-days: 1 + # UNTESTED DRAFT — diff-reviewed locally only, never run in real CI. + build-vendor-bundles: + name: Build vendor bundles (React, Vue) + runs-on: devextreme-shr2 + timeout-minutes: 15 + needs: [check-should-run, determine-framework-tests-scope, build-devextreme] + if: | + always() && + needs.check-should-run.outputs.should-run == 'true' && + needs.determine-framework-tests-scope.result == 'success' && + needs.determine-framework-tests-scope.outputs.framework-tests-scope != 'none' && + needs.build-devextreme.result == 'success' + env: + NODE_OPTIONS: --max-old-space-size=8192 + steps: + - name: Get sources + uses: actions/checkout@v6 + + - name: Use Node.js + uses: actions/setup-node@v6 + with: + node-version-file: '.node-version' + + - name: Download devextreme sources + uses: actions/download-artifact@v8 + with: + name: devextreme-sources + + - uses: pnpm/action-setup@v6 + with: + run_install: false + + - name: Get pnpm store directory + shell: bash + run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache/restore@v5 + name: Restore pnpm cache + with: + path: ${{ env.STORE_PATH }} + key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-cache + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Install tgz + working-directory: apps/demos + run: pnpm add --ignore-workspace --allow-build=core-js --allow-build=inferno devextreme-aspnet-data@5.1.0 devextreme-aspnet-data-nojquery@5.1.0 ../../devextreme-installer.tgz ../../devextreme-dist-installer.tgz ../../devextreme-react-installer.tgz ../../devextreme-vue-installer.tgz ../../devextreme-angular-installer.tgz && rm -f pnpm-workspace.yaml pnpm-lock.yaml + + - name: Build vendor bundles + working-directory: apps/demos + run: node utils/server/build-vendor-bundles.js + + - name: Copy vendor bundles + uses: actions/upload-artifact@v7 + with: + name: devextreme-vendor-bundles + path: apps/demos/bundles/vendor + retention-days: 1 + build-demos: name: ${{ matrix.SHARD_TOTAL == 1 && format('Build demos ({0})', matrix.FRAMEWORK) || format('Build demos ({0} {1}/{2})', matrix.FRAMEWORK, matrix.SHARD_INDEX, matrix.SHARD_TOTAL) }} runs-on: devextreme-shr2 timeout-minutes: 30 - needs: [check-should-run, determine-framework-tests-scope, build-devextreme] + needs: [check-should-run, determine-framework-tests-scope, build-devextreme, build-vendor-bundles] if: | always() && needs.check-should-run.outputs.should-run == 'true' && needs.determine-framework-tests-scope.result == 'success' && needs.determine-framework-tests-scope.outputs.framework-tests-scope != 'none' && - needs.build-devextreme.result == 'success' + needs.build-devextreme.result == 'success' && + needs.build-vendor-bundles.result == 'success' env: NODE_OPTIONS: --max-old-space-size=8192 strategy: @@ -340,6 +403,13 @@ jobs: # - name: Link wrappers packages # run: pnpm install --frozen-lockfile + # No-op for Angular (no manifest — see build-vendor-bundles). + - name: Download vendor bundles + uses: actions/download-artifact@v8 + with: + name: devextreme-vendor-bundles + path: apps/demos/bundles/vendor + - name: Build demo bundles working-directory: apps/demos env: @@ -353,11 +423,7 @@ jobs: working-directory: apps/demos run: pnpm exec tsc --noEmit - # Packed into one tarball rather than uploaded as ~950 loose files: with a - # glob path, upload-artifact roots the archive at the least common ancestor - # of the matched files, so the Demos/ prefix the consumers extract into - # would silently disappear. A single explicit file has no such ambiguity - # (and uploads far faster). + # Packed into one tarball — a glob path would lose the Demos/ prefix on extract. - name: Pack demo bundles working-directory: apps/demos run: | @@ -855,7 +921,7 @@ jobs: if-no-files-found: ignore testcafe-frameworks-all: - needs: [check-should-run, determine-framework-tests-scope, build-demos] + needs: [check-should-run, determine-framework-tests-scope, build-demos, build-vendor-bundles] if: | always() && needs.check-should-run.outputs.should-run == 'true' && @@ -938,12 +1004,6 @@ jobs: working-directory: apps/demos run: pnpm run prepare-js - # Demo bundles are built once per framework/shard in build-demos and - # downloaded here to overlay onto this job's own checkout (same commit). - # Every artifact holds a file named demo-bundles.tgz, so each lands in its - # own directory and the unpack step below extracts them all into apps/demos, - # restoring Demos////bundle.{js,css} — exactly - # where each demo's own index.html expects them. - name: Download demo bundles (React) if: startsWith(matrix.CONSTEL, 'react') uses: actions/download-artifact@v8 @@ -958,9 +1018,7 @@ jobs: name: devextreme-bundles-Vue path: apps/demos/.demo-bundles/vue - # Angular is built in 3 shards (see build-demos) but tested in 10 — every - # Angular test shard needs all 3 build shards since the two shard schemes - # don't line up demo-for-demo. + # Angular is built in 3 shards but tested in 10 — every test shard needs all 3. - name: Download demo bundles (Angular shard 1) if: startsWith(matrix.CONSTEL, 'angular') uses: actions/download-artifact@v8 @@ -982,6 +1040,13 @@ jobs: name: devextreme-bundles-Angular-shard3 path: apps/demos/.demo-bundles/angular-shard3 + # No-op for angular demos (no manifest — see build-vendor-bundles.js). + - name: Download vendor bundles + uses: actions/download-artifact@v8 + with: + name: devextreme-vendor-bundles + path: apps/demos/bundles/vendor + - name: Unpack demo bundles run: | shopt -s nullglob @@ -1048,7 +1113,7 @@ jobs: if-no-files-found: ignore testcafe-frameworks-changed: - needs: [check-should-run, determine-framework-tests-scope, build-demos] + needs: [check-should-run, determine-framework-tests-scope, build-demos, build-vendor-bundles] if: | always() && needs.check-should-run.outputs.should-run == 'true' && @@ -1119,11 +1184,6 @@ jobs: working-directory: apps/demos run: pnpm run prepare-js - # Demo bundles are built once per framework/shard in build-demos and - # downloaded here to overlay onto this job's own checkout (same commit). - # Every artifact holds a file named demo-bundles.tgz, so each lands in its - # own directory and the unpack step below extracts them all into - # apps/demos, restoring Demos////bundle.{js,css}. - name: Download demo bundles (React) if: matrix.CONSTEL == 'react' uses: actions/download-artifact@v8 @@ -1166,6 +1226,13 @@ jobs: name: changed-demos path: apps/demos + # No-op for angular demos (no manifest — see build-vendor-bundles.js). + - name: Download vendor bundles + uses: actions/download-artifact@v8 + with: + name: devextreme-vendor-bundles + path: apps/demos/bundles/vendor + - name: Unpack demo bundles run: | shopt -s nullglob @@ -1404,10 +1471,7 @@ jobs: working-directory: apps/demos run: pnpm add --ignore-workspace --allow-build=core-js --allow-build=inferno devextreme-aspnet-data@5.1.0 devextreme-aspnet-data-nojquery@5.1.0 ../../devextreme-installer.tgz ../../devextreme-dist-installer.tgz ../../devextreme-react-installer.tgz ../../devextreme-vue-installer.tgz ../../devextreme-angular-installer.tgz && rm -f pnpm-workspace.yaml pnpm-lock.yaml - # Every demo is a plain esbuild bundle now, so this is the same build - # step build-demos runs — done again here (independently, in parallel) - # rather than depending on that job, to keep this check's timing - # decoupled from the rest of the pipeline. + # Rebuilt independently rather than depending on build-demos, to keep timing decoupled. - name: Bundle demos for CSP check working-directory: apps/demos env: diff --git a/apps/demos/.gitignore b/apps/demos/.gitignore index b6bc7a1749f1..50964c61fbef 100644 --- a/apps/demos/.gitignore +++ b/apps/demos/.gitignore @@ -32,6 +32,9 @@ Demos/**/tsconfig.json # 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/_chunks .DS_Store **/.DS_Store @@ -44,5 +47,8 @@ csp-bundled-demos utils/server/.csp-bundle-angular-* Demos/**/.csp-bundle-angular-patched.*.ts +# Scratch entry files from utils/server/vendor-bundle.js (cleaned up on success). +.vendor-entry-tmp + .angular angular.json diff --git a/apps/demos/Demos/Accordion/Overview/React/index.html b/apps/demos/Demos/Accordion/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Accordion/Overview/React/index.html +++ b/apps/demos/Demos/Accordion/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Accordion/Overview/Vue/index.html b/apps/demos/Demos/Accordion/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Accordion/Overview/Vue/index.html +++ b/apps/demos/Demos/Accordion/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ActionSheet/Basics/React/index.html b/apps/demos/Demos/ActionSheet/Basics/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ActionSheet/Basics/React/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ActionSheet/Basics/Vue/index.html b/apps/demos/Demos/ActionSheet/Basics/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Vue/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Autocomplete/Overview/React/index.html b/apps/demos/Demos/Autocomplete/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Autocomplete/Overview/React/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Autocomplete/Overview/Vue/index.html b/apps/demos/Demos/Autocomplete/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Vue/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Box/Overview/React/index.html b/apps/demos/Demos/Box/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Box/Overview/React/index.html +++ b/apps/demos/Demos/Box/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Box/Overview/Vue/index.html b/apps/demos/Demos/Box/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Box/Overview/Vue/index.html +++ b/apps/demos/Demos/Box/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Button/Icons/React/index.html b/apps/demos/Demos/Button/Icons/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Button/Icons/React/index.html +++ b/apps/demos/Demos/Button/Icons/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Button/Icons/Vue/index.html b/apps/demos/Demos/Button/Icons/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Button/Icons/Vue/index.html +++ b/apps/demos/Demos/Button/Icons/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Button/PredefinedTypes/React/index.html b/apps/demos/Demos/Button/PredefinedTypes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/React/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html b/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ButtonGroup/Overview/React/index.html b/apps/demos/Demos/ButtonGroup/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/React/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html b/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Calendar/MultipleSelection/React/index.html b/apps/demos/Demos/Calendar/MultipleSelection/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/React/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Calendar/Overview/React/index.html b/apps/demos/Demos/Calendar/Overview/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Calendar/Overview/React/index.html +++ b/apps/demos/Demos/Calendar/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Calendar/Overview/Vue/index.html b/apps/demos/Demos/Calendar/Overview/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Calendar/Overview/Vue/index.html +++ b/apps/demos/Demos/Calendar/Overview/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/CardView/CardTemplate/React/index.html b/apps/demos/Demos/CardView/CardTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/CardView/CardTemplate/React/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/CardTemplate/Vue/index.html b/apps/demos/Demos/CardView/CardTemplate/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Vue/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnChooser/React/index.html b/apps/demos/Demos/CardView/ColumnChooser/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/React/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html b/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnReordering/React/index.html b/apps/demos/Demos/CardView/ColumnReordering/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/React/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html b/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/DataValidation/React/index.html b/apps/demos/Demos/CardView/DataValidation/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/DataValidation/React/index.html +++ b/apps/demos/Demos/CardView/DataValidation/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/DataValidation/Vue/index.html b/apps/demos/Demos/CardView/DataValidation/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/DataValidation/Vue/index.html +++ b/apps/demos/Demos/CardView/DataValidation/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/FieldTemplate/React/index.html b/apps/demos/Demos/CardView/FieldTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/React/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html b/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/FilterPanel/React/index.html b/apps/demos/Demos/CardView/FilterPanel/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/FilterPanel/React/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/FilterPanel/Vue/index.html b/apps/demos/Demos/CardView/FilterPanel/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/Overview/React/index.html b/apps/demos/Demos/CardView/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/CardView/Overview/React/index.html +++ b/apps/demos/Demos/CardView/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/Overview/Vue/index.html b/apps/demos/Demos/CardView/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/CardView/Overview/Vue/index.html +++ b/apps/demos/Demos/CardView/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/PopupEditing/React/index.html b/apps/demos/Demos/CardView/PopupEditing/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/PopupEditing/React/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/PopupEditing/Vue/index.html b/apps/demos/Demos/CardView/PopupEditing/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/SearchPanel/React/index.html b/apps/demos/Demos/CardView/SearchPanel/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/SearchPanel/React/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/SearchPanel/Vue/index.html b/apps/demos/Demos/CardView/SearchPanel/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Vue/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/Selection/React/index.html b/apps/demos/Demos/CardView/Selection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/CardView/Selection/React/index.html +++ b/apps/demos/Demos/CardView/Selection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/Selection/Vue/index.html b/apps/demos/Demos/CardView/Selection/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/CardView/Selection/Vue/index.html +++ b/apps/demos/Demos/CardView/Selection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CardView/SimpleArray/React/index.html b/apps/demos/Demos/CardView/SimpleArray/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/SimpleArray/React/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/SimpleArray/Vue/index.html b/apps/demos/Demos/CardView/SimpleArray/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/Sorting/React/index.html b/apps/demos/Demos/CardView/Sorting/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/Sorting/React/index.html +++ b/apps/demos/Demos/CardView/Sorting/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/Sorting/Vue/index.html b/apps/demos/Demos/CardView/Sorting/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/Sorting/Vue/index.html +++ b/apps/demos/Demos/CardView/Sorting/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/WebAPIService/React/index.html b/apps/demos/Demos/CardView/WebAPIService/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/CardView/WebAPIService/React/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/CardView/WebAPIService/Vue/index.html b/apps/demos/Demos/CardView/WebAPIService/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Charts/AjaxRequest/React/index.html b/apps/demos/Demos/Charts/AjaxRequest/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/React/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html b/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Annotation/React/index.html b/apps/demos/Demos/Charts/Annotation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Annotation/React/index.html +++ b/apps/demos/Demos/Charts/Annotation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Annotation/Vue/index.html b/apps/demos/Demos/Charts/Annotation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Annotation/Vue/index.html +++ b/apps/demos/Demos/Charts/Annotation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Area/React/index.html b/apps/demos/Demos/Charts/Area/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Area/React/index.html +++ b/apps/demos/Demos/Charts/Area/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Area/Vue/index.html b/apps/demos/Demos/Charts/Area/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Area/Vue/index.html +++ b/apps/demos/Demos/Charts/Area/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AreaSparklines/React/index.html b/apps/demos/Demos/Charts/AreaSparklines/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/React/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html b/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html index 41f94f45001e..ae1f01cb067b 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html @@ -23,6 +23,7 @@
+ diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html index f16d906cf34d..bb222ab83445 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html @@ -23,6 +23,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarColorCustomization/React/index.html b/apps/demos/Demos/Charts/BarColorCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/React/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html b/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarDrillDown/React/index.html b/apps/demos/Demos/Charts/BarDrillDown/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/React/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html b/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarSparklines/React/index.html b/apps/demos/Demos/Charts/BarSparklines/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/BarSparklines/React/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BarSparklines/Vue/index.html b/apps/demos/Demos/Charts/BarSparklines/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Bubble/React/index.html b/apps/demos/Demos/Charts/Bubble/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Bubble/React/index.html +++ b/apps/demos/Demos/Charts/Bubble/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Bubble/Vue/index.html b/apps/demos/Demos/Charts/Bubble/Vue/index.html index f0bbf9e9c2ea..2aa9da33cd95 100644 --- a/apps/demos/Demos/Charts/Bubble/Vue/index.html +++ b/apps/demos/Demos/Charts/Bubble/Vue/index.html @@ -14,6 +14,7 @@ Loading...
+ diff --git a/apps/demos/Demos/Charts/Candlestick/React/index.html b/apps/demos/Demos/Charts/Candlestick/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Candlestick/React/index.html +++ b/apps/demos/Demos/Charts/Candlestick/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Candlestick/Vue/index.html b/apps/demos/Demos/Charts/Candlestick/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Candlestick/Vue/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Colorization/React/index.html b/apps/demos/Demos/Charts/Colorization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Colorization/React/index.html +++ b/apps/demos/Demos/Charts/Colorization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Colorization/Vue/index.html b/apps/demos/Demos/Charts/Colorization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Colorization/Vue/index.html +++ b/apps/demos/Demos/Charts/Colorization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ContinuousData/React/index.html b/apps/demos/Demos/Charts/ContinuousData/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ContinuousData/React/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ContinuousData/Vue/index.html b/apps/demos/Demos/Charts/ContinuousData/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Vue/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Crosshair/React/index.html b/apps/demos/Demos/Charts/Crosshair/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Crosshair/React/index.html +++ b/apps/demos/Demos/Charts/Crosshair/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Crosshair/Vue/index.html b/apps/demos/Demos/Charts/Crosshair/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Crosshair/Vue/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomAnnotations/React/index.html b/apps/demos/Demos/Charts/CustomAnnotations/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomBarWidth/React/index.html b/apps/demos/Demos/Charts/CustomBarWidth/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/React/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomFillStyles/React/index.html b/apps/demos/Demos/Charts/CustomFillStyles/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/React/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html b/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscreteData/React/index.html b/apps/demos/Demos/Charts/DiscreteData/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DiscreteData/React/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscreteData/Vue/index.html b/apps/demos/Demos/Charts/DiscreteData/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Doughnut/React/index.html b/apps/demos/Demos/Charts/Doughnut/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Doughnut/React/index.html +++ b/apps/demos/Demos/Charts/Doughnut/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Doughnut/Vue/index.html b/apps/demos/Demos/Charts/Doughnut/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Doughnut/Vue/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DoughnutSelection/React/index.html b/apps/demos/Demos/Charts/DoughnutSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/React/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DrillDown/React/index.html b/apps/demos/Demos/Charts/DrillDown/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DrillDown/React/index.html +++ b/apps/demos/Demos/Charts/DrillDown/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DrillDown/Vue/index.html b/apps/demos/Demos/Charts/DrillDown/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DrillDown/Vue/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DynamicSeries/React/index.html b/apps/demos/Demos/Charts/DynamicSeries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/React/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html b/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/EqualSizePies/React/index.html b/apps/demos/Demos/Charts/EqualSizePies/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/React/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html b/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ErrorBars/React/index.html b/apps/demos/Demos/Charts/ErrorBars/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ErrorBars/React/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ErrorBars/Vue/index.html b/apps/demos/Demos/Charts/ErrorBars/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Vue/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FlatDataStructure/React/index.html b/apps/demos/Demos/Charts/FlatDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/React/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FullStackedBar/React/index.html b/apps/demos/Demos/Charts/FullStackedBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html b/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FunnelChart/React/index.html b/apps/demos/Demos/Charts/FunnelChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/FunnelChart/React/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/FunnelChart/Vue/index.html b/apps/demos/Demos/Charts/FunnelChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Vue/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/HoverMode/React/index.html b/apps/demos/Demos/Charts/HoverMode/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/HoverMode/React/index.html +++ b/apps/demos/Demos/Charts/HoverMode/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/HoverMode/Vue/index.html b/apps/demos/Demos/Charts/HoverMode/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/HoverMode/Vue/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/InvertedChart/React/index.html b/apps/demos/Demos/Charts/InvertedChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/InvertedChart/React/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/InvertedChart/Vue/index.html b/apps/demos/Demos/Charts/InvertedChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Vue/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LabelCustomization/React/index.html b/apps/demos/Demos/Charts/LabelCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Line/React/index.html b/apps/demos/Demos/Charts/Line/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Line/React/index.html +++ b/apps/demos/Demos/Charts/Line/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Line/Vue/index.html b/apps/demos/Demos/Charts/Line/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Line/Vue/index.html +++ b/apps/demos/Demos/Charts/Line/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultipleAxes/React/index.html b/apps/demos/Demos/Charts/MultipleAxes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/React/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html b/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultiplePanes/React/index.html b/apps/demos/Demos/Charts/MultiplePanes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/React/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html b/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/NullPointSupport/React/index.html b/apps/demos/Demos/Charts/NullPointSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/React/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html b/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Overview/React/index.html b/apps/demos/Demos/Charts/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Overview/React/index.html +++ b/apps/demos/Demos/Charts/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Overview/Vue/index.html b/apps/demos/Demos/Charts/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Overview/Vue/index.html +++ b/apps/demos/Demos/Charts/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Palette/React/index.html b/apps/demos/Demos/Charts/Palette/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Palette/React/index.html +++ b/apps/demos/Demos/Charts/Palette/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Palette/Vue/index.html b/apps/demos/Demos/Charts/Palette/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Palette/Vue/index.html +++ b/apps/demos/Demos/Charts/Palette/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ParetoChart/React/index.html b/apps/demos/Demos/Charts/ParetoChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ParetoChart/React/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ParetoChart/Vue/index.html b/apps/demos/Demos/Charts/ParetoChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Vue/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PeriodicData/React/index.html b/apps/demos/Demos/Charts/PeriodicData/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PeriodicData/React/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PeriodicData/Vue/index.html b/apps/demos/Demos/Charts/PeriodicData/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Vue/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Pie/React/index.html b/apps/demos/Demos/Charts/Pie/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Pie/React/index.html +++ b/apps/demos/Demos/Charts/Pie/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Pie/Vue/index.html b/apps/demos/Demos/Charts/Pie/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Pie/Vue/index.html +++ b/apps/demos/Demos/Charts/Pie/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieAnnotations/React/index.html b/apps/demos/Demos/Charts/PieAnnotations/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html b/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointImage/React/index.html b/apps/demos/Demos/Charts/PointImage/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PointImage/React/index.html +++ b/apps/demos/Demos/Charts/PointImage/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointImage/Vue/index.html b/apps/demos/Demos/Charts/PointImage/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PointImage/Vue/index.html +++ b/apps/demos/Demos/Charts/PointImage/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointsAggregation/React/index.html b/apps/demos/Demos/Charts/PointsAggregation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/React/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html b/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PyramidChart/React/index.html b/apps/demos/Demos/Charts/PyramidChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/PyramidChart/React/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/PyramidChart/Vue/index.html b/apps/demos/Demos/Charts/PyramidChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Vue/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/RangeArea/React/index.html b/apps/demos/Demos/Charts/RangeArea/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/RangeArea/React/index.html +++ b/apps/demos/Demos/Charts/RangeArea/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/RangeArea/Vue/index.html b/apps/demos/Demos/Charts/RangeArea/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/RangeArea/Vue/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/RangeBar/React/index.html b/apps/demos/Demos/Charts/RangeBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/RangeBar/React/index.html +++ b/apps/demos/Demos/Charts/RangeBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/RangeBar/Vue/index.html b/apps/demos/Demos/Charts/RangeBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/RangeBar/Vue/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SankeyChart/React/index.html b/apps/demos/Demos/Charts/SankeyChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SankeyChart/React/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SankeyChart/Vue/index.html b/apps/demos/Demos/Charts/SankeyChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Vue/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ScaleBreaks/React/index.html b/apps/demos/Demos/Charts/ScaleBreaks/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/React/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Scatter/React/index.html b/apps/demos/Demos/Charts/Scatter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Scatter/React/index.html +++ b/apps/demos/Demos/Charts/Scatter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Scatter/Vue/index.html b/apps/demos/Demos/Charts/Scatter/Vue/index.html index f0bbf9e9c2ea..2aa9da33cd95 100644 --- a/apps/demos/Demos/Charts/Scatter/Vue/index.html +++ b/apps/demos/Demos/Charts/Scatter/Vue/index.html @@ -14,6 +14,7 @@ Loading...
+ diff --git a/apps/demos/Demos/Charts/Selection/React/index.html b/apps/demos/Demos/Charts/Selection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Selection/React/index.html +++ b/apps/demos/Demos/Charts/Selection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Selection/Vue/index.html b/apps/demos/Demos/Charts/Selection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Selection/Vue/index.html +++ b/apps/demos/Demos/Charts/Selection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideBar/React/index.html b/apps/demos/Demos/Charts/SideBySideBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SignalRService/React/index.html b/apps/demos/Demos/Charts/SignalRService/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SignalRService/React/index.html +++ b/apps/demos/Demos/Charts/SignalRService/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SignalRService/Vue/index.html b/apps/demos/Demos/Charts/SignalRService/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SignalRService/Vue/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleArray/React/index.html b/apps/demos/Demos/Charts/SimpleArray/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SimpleArray/React/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleArray/Vue/index.html b/apps/demos/Demos/Charts/SimpleArray/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleBullets/React/index.html b/apps/demos/Demos/Charts/SimpleBullets/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/React/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html b/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleSparklines/React/index.html b/apps/demos/Demos/Charts/SimpleSparklines/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/React/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SmallValueGroups/React/index.html b/apps/demos/Demos/Charts/SmallValueGroups/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/React/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html b/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SpiderWeb/React/index.html b/apps/demos/Demos/Charts/SpiderWeb/React/index.html index 08a9b4c2edb3..ddd449123b19 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/React/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html b/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html index 2de7d709fe93..40a18ef2c969 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Charts/Spline/React/index.html b/apps/demos/Demos/Charts/Spline/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Spline/React/index.html +++ b/apps/demos/Demos/Charts/Spline/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Spline/Vue/index.html b/apps/demos/Demos/Charts/Spline/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Spline/Vue/index.html +++ b/apps/demos/Demos/Charts/Spline/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SplineArea/React/index.html b/apps/demos/Demos/Charts/SplineArea/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/SplineArea/React/index.html +++ b/apps/demos/Demos/Charts/SplineArea/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/SplineArea/Vue/index.html b/apps/demos/Demos/Charts/SplineArea/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/SplineArea/Vue/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StackedBar/React/index.html b/apps/demos/Demos/Charts/StackedBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/StackedBar/React/index.html +++ b/apps/demos/Demos/Charts/StackedBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StackedBar/Vue/index.html b/apps/demos/Demos/Charts/StackedBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/StackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StandardBar/React/index.html b/apps/demos/Demos/Charts/StandardBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/StandardBar/React/index.html +++ b/apps/demos/Demos/Charts/StandardBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StandardBar/Vue/index.html b/apps/demos/Demos/Charts/StandardBar/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/StandardBar/Vue/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StepArea/React/index.html b/apps/demos/Demos/Charts/StepArea/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/StepArea/React/index.html +++ b/apps/demos/Demos/Charts/StepArea/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StepArea/Vue/index.html b/apps/demos/Demos/Charts/StepArea/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/StepArea/Vue/index.html +++ b/apps/demos/Demos/Charts/StepArea/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StepLine/React/index.html b/apps/demos/Demos/Charts/StepLine/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/StepLine/React/index.html +++ b/apps/demos/Demos/Charts/StepLine/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/StepLine/Vue/index.html b/apps/demos/Demos/Charts/StepLine/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/StepLine/Vue/index.html +++ b/apps/demos/Demos/Charts/StepLine/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Stock/React/index.html b/apps/demos/Demos/Charts/Stock/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Stock/React/index.html +++ b/apps/demos/Demos/Charts/Stock/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Stock/Vue/index.html b/apps/demos/Demos/Charts/Stock/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Stock/Vue/index.html +++ b/apps/demos/Demos/Charts/Stock/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Strips/React/index.html b/apps/demos/Demos/Charts/Strips/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Strips/React/index.html +++ b/apps/demos/Demos/Charts/Strips/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Strips/Vue/index.html b/apps/demos/Demos/Charts/Strips/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Strips/Vue/index.html +++ b/apps/demos/Demos/Charts/Strips/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Timeline/React/index.html b/apps/demos/Demos/Charts/Timeline/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/Timeline/React/index.html +++ b/apps/demos/Demos/Charts/Timeline/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/Timeline/Vue/index.html b/apps/demos/Demos/Charts/Timeline/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/Timeline/Vue/index.html +++ b/apps/demos/Demos/Charts/Timeline/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TooltipAPI/React/index.html b/apps/demos/Demos/Charts/TooltipAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/React/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html b/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TooltipCustomization/React/index.html b/apps/demos/Demos/Charts/TooltipCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/React/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html b/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/WindRose/React/index.html b/apps/demos/Demos/Charts/WindRose/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/WindRose/React/index.html +++ b/apps/demos/Demos/Charts/WindRose/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/WindRose/Vue/index.html b/apps/demos/Demos/Charts/WindRose/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/WindRose/Vue/index.html +++ b/apps/demos/Demos/Charts/WindRose/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/WinlossSparklines/React/index.html b/apps/demos/Demos/Charts/WinlossSparklines/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/React/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/Customization/React/index.html b/apps/demos/Demos/Chat/Customization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/Customization/React/index.html +++ b/apps/demos/Demos/Chat/Customization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/Customization/Vue/index.html b/apps/demos/Demos/Chat/Customization/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/Customization/Vue/index.html +++ b/apps/demos/Demos/Chat/Customization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/FileAttachments/React/index.html b/apps/demos/Demos/Chat/FileAttachments/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/FileAttachments/React/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/FileAttachments/Vue/index.html b/apps/demos/Demos/Chat/FileAttachments/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Vue/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/MessageEditing/React/index.html b/apps/demos/Demos/Chat/MessageEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/MessageEditing/React/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/MessageEditing/Vue/index.html b/apps/demos/Demos/Chat/MessageEditing/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Vue/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/MessageStreaming/React/index.html b/apps/demos/Demos/Chat/MessageStreaming/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/React/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html b/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/Overview/React/index.html b/apps/demos/Demos/Chat/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/Overview/React/index.html +++ b/apps/demos/Demos/Chat/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/Overview/Vue/index.html b/apps/demos/Demos/Chat/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Chat/Overview/Vue/index.html +++ b/apps/demos/Demos/Chat/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/PromptSuggestions/React/index.html b/apps/demos/Demos/Chat/PromptSuggestions/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/React/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html b/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CheckBox/Overview/React/index.html b/apps/demos/Demos/CheckBox/Overview/React/index.html index b6dbd51e86ef..fa70b813101e 100644 --- a/apps/demos/Demos/CheckBox/Overview/React/index.html +++ b/apps/demos/Demos/CheckBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/CheckBox/Overview/Vue/index.html b/apps/demos/Demos/CheckBox/Overview/Vue/index.html index 24dd53a053f7..26dd850b9496 100644 --- a/apps/demos/Demos/CheckBox/Overview/Vue/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ColorBox/Overview/React/index.html b/apps/demos/Demos/ColorBox/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ColorBox/Overview/React/index.html +++ b/apps/demos/Demos/ColorBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ColorBox/Overview/Vue/index.html b/apps/demos/Demos/ColorBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ColorBox/Overview/Vue/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorsOverview/React/index.html b/apps/demos/Demos/Common/EditorsOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/EditorsOverview/React/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorsOverview/Vue/index.html b/apps/demos/Demos/Common/EditorsOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/FormsOverview/React/index.html b/apps/demos/Demos/Common/FormsOverview/React/index.html index 7369a149272c..9a0ab60e47be 100644 --- a/apps/demos/Demos/Common/FormsOverview/React/index.html +++ b/apps/demos/Demos/Common/FormsOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/FormsOverview/Vue/index.html b/apps/demos/Demos/Common/FormsOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/FormsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/FormsOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/ListsOverview/React/index.html b/apps/demos/Demos/Common/ListsOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/ListsOverview/React/index.html +++ b/apps/demos/Demos/Common/ListsOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/ListsOverview/Vue/index.html b/apps/demos/Demos/Common/ListsOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/ListsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/ListsOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/NavigationOverview/React/index.html b/apps/demos/Demos/Common/NavigationOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/NavigationOverview/React/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/NavigationOverview/Vue/index.html b/apps/demos/Demos/Common/NavigationOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Vue/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Basics/React/index.html b/apps/demos/Demos/ContextMenu/Basics/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ContextMenu/Basics/React/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Basics/Vue/index.html b/apps/demos/Demos/ContextMenu/Basics/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Scrolling/React/index.html b/apps/demos/Demos/ContextMenu/Scrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/React/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Templates/React/index.html b/apps/demos/Demos/ContextMenu/Templates/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ContextMenu/Templates/React/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ContextMenu/Templates/Vue/index.html b/apps/demos/Demos/ContextMenu/Templates/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AIAssistant/React/index.html b/apps/demos/Demos/DataGrid/AIAssistant/React/index.html index fda2015e304a..195c267d55e3 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/React/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html b/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AIColumns/React/index.html b/apps/demos/Demos/DataGrid/AIColumns/React/index.html index fda2015e304a..195c267d55e3 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html b/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Appearance/React/index.html b/apps/demos/Demos/DataGrid/Appearance/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Appearance/React/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Appearance/Vue/index.html b/apps/demos/Demos/DataGrid/Appearance/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/BatchEditing/React/index.html b/apps/demos/Demos/DataGrid/BatchEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Cell/React/index.html b/apps/demos/Demos/DataGrid/Cell/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Cell/React/index.html +++ b/apps/demos/Demos/DataGrid/Cell/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Cell/Vue/index.html b/apps/demos/Demos/DataGrid/Cell/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/Cell/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Cell/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CellEditing/React/index.html b/apps/demos/Demos/DataGrid/CellEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html b/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Column/React/index.html b/apps/demos/Demos/DataGrid/Column/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Column/React/index.html +++ b/apps/demos/Demos/DataGrid/Column/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Column/Vue/index.html b/apps/demos/Demos/DataGrid/Column/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/Column/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Column/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomEditors/React/index.html b/apps/demos/Demos/DataGrid/CustomEditors/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DataValidation/React/index.html b/apps/demos/Demos/DataGrid/DataValidation/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/React/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html b/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Filtering/React/index.html b/apps/demos/Demos/DataGrid/Filtering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Filtering/React/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Filtering/Vue/index.html b/apps/demos/Demos/DataGrid/Filtering/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FocusedRow/React/index.html b/apps/demos/Demos/DataGrid/FocusedRow/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/React/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FormEditing/React/index.html b/apps/demos/Demos/DataGrid/FormEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html b/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GridSummaries/React/index.html b/apps/demos/Demos/DataGrid/GridSummaries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/LocalReordering/React/index.html b/apps/demos/Demos/DataGrid/LocalReordering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Overview/React/index.html b/apps/demos/Demos/DataGrid/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Overview/React/index.html +++ b/apps/demos/Demos/DataGrid/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Overview/Vue/index.html b/apps/demos/Demos/DataGrid/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/Overview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFOverview/React/index.html b/apps/demos/Demos/DataGrid/PDFOverview/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PopupEditing/React/index.html b/apps/demos/Demos/DataGrid/PopupEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecordPaging/React/index.html b/apps/demos/Demos/DataGrid/RecordPaging/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/React/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Row/React/index.html b/apps/demos/Demos/DataGrid/Row/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Row/React/index.html +++ b/apps/demos/Demos/DataGrid/Row/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Row/Vue/index.html b/apps/demos/Demos/DataGrid/Row/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/Row/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Row/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RowEditing/React/index.html b/apps/demos/Demos/DataGrid/RowEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html b/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RowSelection/React/index.html b/apps/demos/Demos/DataGrid/RowSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/React/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html b/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html index ad5986c0652f..9cf5f7942554 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SignalRService/React/index.html b/apps/demos/Demos/DataGrid/SignalRService/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/React/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html b/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SimpleArray/React/index.html b/apps/demos/Demos/DataGrid/SimpleArray/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/React/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/StatePersistence/React/index.html b/apps/demos/Demos/DataGrid/StatePersistence/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/React/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Toolbar/React/index.html b/apps/demos/Demos/DataGrid/Toolbar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/React/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html b/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/WebAPIService/React/index.html b/apps/demos/Demos/DataGrid/WebAPIService/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/React/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/DateBox/Formatting/React/index.html b/apps/demos/Demos/DateBox/Formatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DateBox/Formatting/React/index.html +++ b/apps/demos/Demos/DateBox/Formatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateBox/Formatting/Vue/index.html b/apps/demos/Demos/DateBox/Formatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DateBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateBox/Overview/React/index.html b/apps/demos/Demos/DateBox/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DateBox/Overview/React/index.html +++ b/apps/demos/Demos/DateBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateBox/Overview/Vue/index.html b/apps/demos/Demos/DateBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DateBox/Overview/Vue/index.html +++ b/apps/demos/Demos/DateBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateRangeBox/Formatting/React/index.html b/apps/demos/Demos/DateRangeBox/Formatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/React/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DateRangeBox/Overview/React/index.html b/apps/demos/Demos/DateRangeBox/Overview/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/React/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html b/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Adaptability/React/index.html b/apps/demos/Demos/Diagram/Adaptability/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/Adaptability/React/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Adaptability/Vue/index.html b/apps/demos/Demos/Diagram/Adaptability/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Containers/React/index.html b/apps/demos/Demos/Diagram/Containers/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/Containers/React/index.html +++ b/apps/demos/Demos/Diagram/Containers/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Containers/Vue/index.html b/apps/demos/Demos/Diagram/Containers/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/Containers/Vue/index.html +++ b/apps/demos/Demos/Diagram/Containers/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ItemSelection/React/index.html b/apps/demos/Demos/Diagram/ItemSelection/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/React/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html b/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Overview/React/index.html b/apps/demos/Demos/Diagram/Overview/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/Overview/React/index.html +++ b/apps/demos/Demos/Diagram/Overview/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/Overview/Vue/index.html b/apps/demos/Demos/Diagram/Overview/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/Overview/Vue/index.html +++ b/apps/demos/Demos/Diagram/Overview/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ReadOnly/React/index.html b/apps/demos/Demos/Diagram/ReadOnly/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/React/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html b/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/SimpleView/React/index.html b/apps/demos/Demos/Diagram/SimpleView/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/SimpleView/React/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/SimpleView/Vue/index.html b/apps/demos/Demos/Diagram/SimpleView/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Vue/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/UICustomization/React/index.html b/apps/demos/Demos/Diagram/UICustomization/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/UICustomization/React/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/UICustomization/Vue/index.html b/apps/demos/Demos/Diagram/UICustomization/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Vue/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/WebAPIService/React/index.html b/apps/demos/Demos/Diagram/WebAPIService/React/index.html index 00b7b9bb7a3f..69adf372e057 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/React/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html b/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html index 9d946b21b66d..79873b2c5752 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownButton/Overview/React/index.html b/apps/demos/Demos/DropDownButton/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/DropDownButton/Overview/React/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/DropDownButton/Overview/Vue/index.html b/apps/demos/Demos/DropDownButton/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Vue/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FieldSet/Overview/React/index.html b/apps/demos/Demos/FieldSet/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FieldSet/Overview/React/index.html +++ b/apps/demos/Demos/FieldSet/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FieldSet/Overview/Vue/index.html b/apps/demos/Demos/FieldSet/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FieldSet/Overview/Vue/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToEF/React/index.html b/apps/demos/Demos/FileManager/BindingToEF/React/index.html index 2c89cbc51caa..f95f69e6921c 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html b/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html index 2c89cbc51caa..f95f69e6921c 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html index 2c89cbc51caa..f95f69e6921c 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html index 2c89cbc51caa..f95f69e6921c 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileManager/Overview/React/index.html b/apps/demos/Demos/FileManager/Overview/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/FileManager/Overview/React/index.html +++ b/apps/demos/Demos/FileManager/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/FileManager/Overview/Vue/index.html b/apps/demos/Demos/FileManager/Overview/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/FileManager/Overview/Vue/index.html +++ b/apps/demos/Demos/FileManager/Overview/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/FileManager/UICustomization/React/index.html b/apps/demos/Demos/FileManager/UICustomization/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/FileManager/UICustomization/React/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/FileManager/UICustomization/Vue/index.html b/apps/demos/Demos/FileManager/UICustomization/Vue/index.html index 0c119f140cf8..68413aac8f66 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Vue/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Vue/index.html @@ -13,6 +13,7 @@ Loading...
+ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/FileSelection/React/index.html b/apps/demos/Demos/FileUploader/FileSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/React/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html b/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/FileUploading/React/index.html b/apps/demos/Demos/FileUploader/FileUploading/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/React/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html b/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/Validation/React/index.html b/apps/demos/Demos/FileUploader/Validation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FileUploader/Validation/React/index.html +++ b/apps/demos/Demos/FileUploader/Validation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FileUploader/Validation/Vue/index.html b/apps/demos/Demos/FileUploader/Validation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FileUploader/Validation/Vue/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/Customization/React/index.html b/apps/demos/Demos/FilterBuilder/Customization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/React/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html b/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/WithList/React/index.html b/apps/demos/Demos/FilterBuilder/WithList/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/React/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html b/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FloatingActionButton/Overview/React/index.html b/apps/demos/Demos/FloatingActionButton/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/React/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Form/Adaptability/React/index.html b/apps/demos/Demos/Form/Adaptability/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/Adaptability/React/index.html +++ b/apps/demos/Demos/Form/Adaptability/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Adaptability/Vue/index.html b/apps/demos/Demos/Form/Adaptability/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Form/Adaptability/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Grouping/React/index.html b/apps/demos/Demos/Form/Grouping/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/Grouping/React/index.html +++ b/apps/demos/Demos/Form/Grouping/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Grouping/Vue/index.html b/apps/demos/Demos/Form/Grouping/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/Grouping/Vue/index.html +++ b/apps/demos/Demos/Form/Grouping/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/ItemCustomization/React/index.html b/apps/demos/Demos/Form/ItemCustomization/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/ItemCustomization/React/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/ItemCustomization/Vue/index.html b/apps/demos/Demos/Form/ItemCustomization/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Vue/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Overview/React/index.html b/apps/demos/Demos/Form/Overview/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/Overview/React/index.html +++ b/apps/demos/Demos/Form/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Overview/Vue/index.html b/apps/demos/Demos/Form/Overview/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/Overview/Vue/index.html +++ b/apps/demos/Demos/Form/Overview/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/SmartPaste/React/index.html b/apps/demos/Demos/Form/SmartPaste/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/SmartPaste/React/index.html +++ b/apps/demos/Demos/Form/SmartPaste/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/SmartPaste/Vue/index.html b/apps/demos/Demos/Form/SmartPaste/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/SmartPaste/Vue/index.html +++ b/apps/demos/Demos/Form/SmartPaste/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Validation/React/index.html b/apps/demos/Demos/Form/Validation/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Form/Validation/React/index.html +++ b/apps/demos/Demos/Form/Validation/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Form/Validation/Vue/index.html b/apps/demos/Demos/Form/Validation/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Form/Validation/Vue/index.html +++ b/apps/demos/Demos/Form/Validation/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gallery/ItemTemplate/React/index.html b/apps/demos/Demos/Gallery/ItemTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/React/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gallery/Overview/React/index.html b/apps/demos/Demos/Gallery/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gallery/Overview/React/index.html +++ b/apps/demos/Demos/Gallery/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gallery/Overview/Vue/index.html b/apps/demos/Demos/Gallery/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gallery/Overview/Vue/index.html +++ b/apps/demos/Demos/Gallery/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Appearance/React/index.html b/apps/demos/Demos/Gantt/Appearance/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/Appearance/React/index.html +++ b/apps/demos/Demos/Gantt/Appearance/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Appearance/Vue/index.html b/apps/demos/Demos/Gantt/Appearance/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/Appearance/Vue/index.html +++ b/apps/demos/Demos/Gantt/Appearance/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/ContextMenu/React/index.html b/apps/demos/Demos/Gantt/ContextMenu/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/React/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html b/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/DataBinding/React/index.html b/apps/demos/Demos/Gantt/DataBinding/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/DataBinding/React/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/DataBinding/Vue/index.html b/apps/demos/Demos/Gantt/DataBinding/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Vue/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/React/index.html b/apps/demos/Demos/Gantt/ExportToPDF/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/React/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/FilterRow/React/index.html b/apps/demos/Demos/Gantt/FilterRow/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/FilterRow/React/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/FilterRow/Vue/index.html b/apps/demos/Demos/Gantt/FilterRow/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Vue/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/React/index.html b/apps/demos/Demos/Gantt/HeaderFilter/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/React/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html index 09dffc7edb9b..1c9358da63c3 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Overview/React/index.html b/apps/demos/Demos/Gantt/Overview/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/Overview/React/index.html +++ b/apps/demos/Demos/Gantt/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Overview/Vue/index.html b/apps/demos/Demos/Gantt/Overview/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/Overview/Vue/index.html +++ b/apps/demos/Demos/Gantt/Overview/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Sorting/React/index.html b/apps/demos/Demos/Gantt/Sorting/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/Sorting/React/index.html +++ b/apps/demos/Demos/Gantt/Sorting/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Sorting/Vue/index.html b/apps/demos/Demos/Gantt/Sorting/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/Sorting/Vue/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/StripLines/React/index.html b/apps/demos/Demos/Gantt/StripLines/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/StripLines/React/index.html +++ b/apps/demos/Demos/Gantt/StripLines/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/StripLines/Vue/index.html b/apps/demos/Demos/Gantt/StripLines/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/StripLines/Vue/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/React/index.html b/apps/demos/Demos/Gantt/TaskTemplate/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/React/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Toolbar/React/index.html b/apps/demos/Demos/Gantt/Toolbar/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/Toolbar/React/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Toolbar/Vue/index.html b/apps/demos/Demos/Gantt/Toolbar/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Vue/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Validation/React/index.html b/apps/demos/Demos/Gantt/Validation/React/index.html index 5532c39d1be4..7fa0b4a63e25 100644 --- a/apps/demos/Demos/Gantt/Validation/React/index.html +++ b/apps/demos/Demos/Gantt/Validation/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gantt/Validation/Vue/index.html b/apps/demos/Demos/Gantt/Validation/Vue/index.html index ac22e3a71b50..f806a0c31379 100644 --- a/apps/demos/Demos/Gantt/Validation/Vue/index.html +++ b/apps/demos/Demos/Gantt/Validation/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/BarGauge/React/index.html b/apps/demos/Demos/Gauges/BarGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/BarGauge/React/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/BarGauge/Vue/index.html b/apps/demos/Demos/Gauges/BarGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CircularGauge/React/index.html b/apps/demos/Demos/Gauges/CircularGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/React/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html b/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CustomLayout/React/index.html b/apps/demos/Demos/Gauges/CustomLayout/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/React/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html b/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html index 34183a0d5203..93e8cf73a2b9 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/LinearGauge/React/index.html b/apps/demos/Demos/Gauges/LinearGauge/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Overview/React/index.html b/apps/demos/Demos/Gauges/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/Overview/React/index.html +++ b/apps/demos/Demos/Gauges/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Overview/Vue/index.html b/apps/demos/Demos/Gauges/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/Overview/Vue/index.html +++ b/apps/demos/Demos/Gauges/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Palette/React/index.html b/apps/demos/Demos/Gauges/Palette/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/Palette/React/index.html +++ b/apps/demos/Demos/Gauges/Palette/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Palette/Vue/index.html b/apps/demos/Demos/Gauges/Palette/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/Palette/Vue/index.html +++ b/apps/demos/Demos/Gauges/Palette/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Tooltip/React/index.html b/apps/demos/Demos/Gauges/Tooltip/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/Tooltip/React/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/Tooltip/Vue/index.html b/apps/demos/Demos/Gauges/Tooltip/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Vue/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Mentions/React/index.html b/apps/demos/Demos/HtmlEditor/Mentions/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Overview/React/index.html b/apps/demos/Demos/HtmlEditor/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html b/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Tables/React/index.html b/apps/demos/Demos/HtmlEditor/Tables/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html b/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/DragAndDrop/React/index.html b/apps/demos/Demos/List/DragAndDrop/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/DragAndDrop/React/index.html +++ b/apps/demos/Demos/List/DragAndDrop/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/DragAndDrop/Vue/index.html b/apps/demos/Demos/List/DragAndDrop/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/List/DragAndDrop/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Grouping/React/index.html b/apps/demos/Demos/List/Grouping/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/Grouping/React/index.html +++ b/apps/demos/Demos/List/Grouping/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Grouping/Vue/index.html b/apps/demos/Demos/List/Grouping/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/Grouping/Vue/index.html +++ b/apps/demos/Demos/List/Grouping/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/ItemDeletion/React/index.html b/apps/demos/Demos/List/ItemDeletion/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/ItemDeletion/React/index.html +++ b/apps/demos/Demos/List/ItemDeletion/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/ItemDeletion/Vue/index.html b/apps/demos/Demos/List/ItemDeletion/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/ItemDeletion/Vue/index.html +++ b/apps/demos/Demos/List/ItemDeletion/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/ItemTemplate/React/index.html b/apps/demos/Demos/List/ItemTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/ItemTemplate/React/index.html +++ b/apps/demos/Demos/List/ItemTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/ItemTemplate/Vue/index.html b/apps/demos/Demos/List/ItemTemplate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Search/React/index.html b/apps/demos/Demos/List/Search/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/Search/React/index.html +++ b/apps/demos/Demos/List/Search/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Search/Vue/index.html b/apps/demos/Demos/List/Search/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/Search/Vue/index.html +++ b/apps/demos/Demos/List/Search/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Selection/React/index.html b/apps/demos/Demos/List/Selection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/List/Selection/React/index.html +++ b/apps/demos/Demos/List/Selection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/Selection/Vue/index.html b/apps/demos/Demos/List/Selection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/List/Selection/Vue/index.html +++ b/apps/demos/Demos/List/Selection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/List/WebAPI/React/index.html b/apps/demos/Demos/List/WebAPI/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/List/WebAPI/React/index.html +++ b/apps/demos/Demos/List/WebAPI/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/List/WebAPI/Vue/index.html b/apps/demos/Demos/List/WebAPI/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/List/WebAPI/Vue/index.html +++ b/apps/demos/Demos/List/WebAPI/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/LoadIndicator/Overview/React/index.html b/apps/demos/Demos/LoadIndicator/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/React/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html b/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/LoadPanel/Overview/React/index.html b/apps/demos/Demos/LoadPanel/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/LoadPanel/Overview/React/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/LoadPanel/Overview/Vue/index.html b/apps/demos/Demos/LoadPanel/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Vue/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/React/index.html b/apps/demos/Demos/Localization/UsingGlobalize/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/React/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Localization/UsingIntl/React/index.html b/apps/demos/Demos/Localization/UsingIntl/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Localization/UsingIntl/React/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Localization/UsingIntl/Vue/index.html b/apps/demos/Demos/Localization/UsingIntl/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Vue/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Lookup/Basics/React/index.html b/apps/demos/Demos/Lookup/Basics/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Lookup/Basics/React/index.html +++ b/apps/demos/Demos/Lookup/Basics/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Lookup/Basics/Vue/index.html b/apps/demos/Demos/Lookup/Basics/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Lookup/Basics/Vue/index.html +++ b/apps/demos/Demos/Lookup/Basics/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Lookup/EventHandling/React/index.html b/apps/demos/Demos/Lookup/EventHandling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Lookup/EventHandling/React/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Lookup/EventHandling/Vue/index.html b/apps/demos/Demos/Lookup/EventHandling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Vue/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Lookup/Templates/React/index.html b/apps/demos/Demos/Lookup/Templates/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Lookup/Templates/React/index.html +++ b/apps/demos/Demos/Lookup/Templates/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Lookup/Templates/Vue/index.html b/apps/demos/Demos/Lookup/Templates/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Lookup/Templates/Vue/index.html +++ b/apps/demos/Demos/Lookup/Templates/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Map/Markers/React/index.html b/apps/demos/Demos/Map/Markers/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Map/Markers/React/index.html +++ b/apps/demos/Demos/Map/Markers/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Map/Markers/Vue/index.html b/apps/demos/Demos/Map/Markers/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Map/Markers/Vue/index.html +++ b/apps/demos/Demos/Map/Markers/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Map/Routes/React/index.html b/apps/demos/Demos/Map/Routes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Map/Routes/React/index.html +++ b/apps/demos/Demos/Map/Routes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Map/Routes/Vue/index.html b/apps/demos/Demos/Map/Routes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Map/Routes/Vue/index.html +++ b/apps/demos/Demos/Map/Routes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Menu/Overview/React/index.html b/apps/demos/Demos/Menu/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Menu/Overview/React/index.html +++ b/apps/demos/Demos/Menu/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Menu/Overview/Vue/index.html b/apps/demos/Demos/Menu/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Menu/Overview/Vue/index.html +++ b/apps/demos/Demos/Menu/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Menu/Scrolling/React/index.html b/apps/demos/Demos/Menu/Scrolling/React/index.html index 576c107e0152..4121091ed789 100644 --- a/apps/demos/Demos/Menu/Scrolling/React/index.html +++ b/apps/demos/Demos/Menu/Scrolling/React/index.html @@ -10,6 +10,7 @@
+ diff --git a/apps/demos/Demos/Menu/Scrolling/Vue/index.html b/apps/demos/Demos/Menu/Scrolling/Vue/index.html index 576c107e0152..261299e37307 100644 --- a/apps/demos/Demos/Menu/Scrolling/Vue/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Vue/index.html @@ -10,6 +10,7 @@
+ diff --git a/apps/demos/Demos/MultiView/Overview/React/index.html b/apps/demos/Demos/MultiView/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/MultiView/Overview/React/index.html +++ b/apps/demos/Demos/MultiView/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/MultiView/Overview/Vue/index.html b/apps/demos/Demos/MultiView/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/MultiView/Overview/Vue/index.html +++ b/apps/demos/Demos/MultiView/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/NumberBox/Formatting/React/index.html b/apps/demos/Demos/NumberBox/Formatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/NumberBox/Formatting/React/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/NumberBox/Formatting/Vue/index.html b/apps/demos/Demos/NumberBox/Formatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/NumberBox/Overview/React/index.html b/apps/demos/Demos/NumberBox/Overview/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/NumberBox/Overview/React/index.html +++ b/apps/demos/Demos/NumberBox/Overview/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/NumberBox/Overview/Vue/index.html b/apps/demos/Demos/NumberBox/Overview/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/NumberBox/Overview/Vue/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Pagination/Overview/React/index.html b/apps/demos/Demos/Pagination/Overview/React/index.html index 2019c420e632..c60426f16a27 100644 --- a/apps/demos/Demos/Pagination/Overview/React/index.html +++ b/apps/demos/Demos/Pagination/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Pagination/Overview/Vue/index.html b/apps/demos/Demos/Pagination/Overview/Vue/index.html index 2019c420e632..05a7cb03c2b3 100644 --- a/apps/demos/Demos/Pagination/Overview/Vue/index.html +++ b/apps/demos/Demos/Pagination/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Customization/React/index.html b/apps/demos/Demos/PivotGrid/Customization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/Customization/React/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Customization/Vue/index.html b/apps/demos/Demos/PivotGrid/Customization/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/React/index.html b/apps/demos/Demos/PivotGrid/DrillDown/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/React/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Filtering/React/index.html b/apps/demos/Demos/PivotGrid/Filtering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/React/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html b/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Overview/React/index.html b/apps/demos/Demos/PivotGrid/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/Overview/React/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/Overview/Vue/index.html b/apps/demos/Demos/PivotGrid/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts index e50a625ea277..6a8ff32296e9 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts @@ -1,108 +1,17 @@ import { bootstrapApplication } from '@angular/platform-browser'; -import { Component, enableProdMode, provideZoneChangeDetection } from '@angular/core'; -import { - DxPivotGridFieldChooserModule, - DxRadioGroupModule, - DxButtonModule, - DxSelectBoxModule, -} from 'devextreme-angular'; -import PivotGridDataSource from 'devextreme/ui/pivot_grid/data_source'; -import { DxPivotGridModule, DxPivotGridTypes } from 'devextreme-angular/ui/pivot-grid'; -import { Service, Layout, Sale } from './app.service'; - -if (!/localhost/.test(document.location.host)) { - enableProdMode(); -} - -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - +import { Component } from '@angular/core'; + +// TODO: restore the original demo (see git history for this file, app.component.html, +// app.component.css, app.service.ts — all left untouched/unused for easy restoration). +// Temporarily simplified because combining DxPivotGridModule + DxPivotGridFieldChooserModule +// in one component's `imports` triggers NG8023 ("Multiple components match node with tagname +// dxo-pivot-grid-field-chooser-texts") during devextreme-site's CI daily build. Doesn't +// reproduce with a from-scratch local rebuild of devextreme-angular on this branch — +// suspected stale nx/build cache on that CI runner. Restore once that's confirmed cleared. @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], - providers: [Service], - preserveWhitespaces: true, - imports: [ - DxPivotGridModule, - DxRadioGroupModule, - DxPivotGridFieldChooserModule, - DxSelectBoxModule, - DxButtonModule, - ], + template: '

This demo is temporarily disabled. See the TODO in app.component.ts.

', }) -export class AppComponent { - pivotGridDataSource: PivotGridDataSource; - - layouts: Layout[]; - - layout = 0; - - applyChangesModes: DxPivotGridTypes.ApplyChangesMode[] = ['instantly', 'onDemand']; - - applyChangesMode = this.applyChangesModes[0]; - - state: Record; - - constructor(service: Service) { - this.pivotGridDataSource = new PivotGridDataSource({ - fields: [{ - caption: 'Region', - width: 120, - dataField: 'region', - area: 'row', - headerFilter: { - search: { - enabled: true, - }, - }, - }, { - caption: 'City', - dataField: 'city', - width: 150, - area: 'row', - headerFilter: { - search: { - enabled: true, - }, - }, - selector(data: Sale) { - return `${data.city} (${data.country})`; - }, - }, { - dataField: 'date', - dataType: 'date', - area: 'column', - }, { - caption: 'Sales', - dataField: 'amount', - dataType: 'number', - summaryType: 'sum', - format: 'currency', - area: 'data', - }], - store: service.getSales(), - }); - - this.state = this.pivotGridDataSource.state(); - - this.layouts = service.getLayouts(); - } - - applyClick() { - this.pivotGridDataSource.state(this.state); - } - - cancelClick() { - this.state = this.pivotGridDataSource.state(); - } -} +export class AppComponent {} -bootstrapApplication(AppComponent, { - providers: [ - provideZoneChangeDetection({ eventCoalescing: true, runCoalescing: true }), - ], -}); +bootstrapApplication(AppComponent); diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Popover/Overview/React/index.html b/apps/demos/Demos/Popover/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Popover/Overview/React/index.html +++ b/apps/demos/Demos/Popover/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Popover/Overview/Vue/index.html b/apps/demos/Demos/Popover/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Popover/Overview/Vue/index.html +++ b/apps/demos/Demos/Popover/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Popup/Overview/React/index.html b/apps/demos/Demos/Popup/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Popup/Overview/React/index.html +++ b/apps/demos/Demos/Popup/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Popup/Overview/Vue/index.html b/apps/demos/Demos/Popup/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Popup/Overview/Vue/index.html +++ b/apps/demos/Demos/Popup/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Popup/Scrolling/React/index.html b/apps/demos/Demos/Popup/Scrolling/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Popup/Scrolling/React/index.html +++ b/apps/demos/Demos/Popup/Scrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Popup/Scrolling/Vue/index.html b/apps/demos/Demos/Popup/Scrolling/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Popup/Scrolling/Vue/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ProgressBar/Overview/React/index.html b/apps/demos/Demos/ProgressBar/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ProgressBar/Overview/React/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ProgressBar/Overview/Vue/index.html b/apps/demos/Demos/ProgressBar/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Vue/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RadioGroup/Overview/React/index.html b/apps/demos/Demos/RadioGroup/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RadioGroup/Overview/React/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RadioGroup/Overview/Vue/index.html b/apps/demos/Demos/RadioGroup/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Vue/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/Calculation/React/index.html b/apps/demos/Demos/RangeSelector/Calculation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/React/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html b/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/Filter/React/index.html b/apps/demos/Demos/RangeSelector/Filter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/Filter/React/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/Filter/Vue/index.html b/apps/demos/Demos/RangeSelector/Filter/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScale/React/index.html b/apps/demos/Demos/RangeSelector/NumericScale/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSlider/Overview/React/index.html b/apps/demos/Demos/RangeSlider/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/RangeSlider/Overview/React/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/RangeSlider/Overview/Vue/index.html b/apps/demos/Demos/RangeSlider/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Vue/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Resizable/Overview/React/index.html b/apps/demos/Demos/Resizable/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Resizable/Overview/React/index.html +++ b/apps/demos/Demos/Resizable/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Resizable/Overview/Vue/index.html b/apps/demos/Demos/Resizable/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Resizable/Overview/Vue/index.html +++ b/apps/demos/Demos/Resizable/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/React/index.html b/apps/demos/Demos/ResponsiveBox/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/React/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Adaptability/React/index.html b/apps/demos/Demos/Scheduler/Adaptability/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/React/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html b/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Agenda/React/index.html b/apps/demos/Demos/Scheduler/Agenda/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/Agenda/React/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Agenda/Vue/index.html b/apps/demos/Demos/Scheduler/Agenda/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/BasicViews/React/index.html b/apps/demos/Demos/Scheduler/BasicViews/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/React/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html b/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CellTemplates/React/index.html b/apps/demos/Demos/Scheduler/CellTemplates/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/React/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/ContextMenu/React/index.html b/apps/demos/Demos/Scheduler/ContextMenu/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/React/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html b/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Editing/React/index.html b/apps/demos/Demos/Scheduler/Editing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/Editing/React/index.html +++ b/apps/demos/Demos/Scheduler/Editing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Editing/Vue/index.html b/apps/demos/Demos/Scheduler/Editing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/Editing/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GroupByDate/React/index.html b/apps/demos/Demos/Scheduler/GroupByDate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/React/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/HiddenDays/React/index.html b/apps/demos/Demos/Scheduler/HiddenDays/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/React/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html b/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Overview/React/index.html b/apps/demos/Demos/Scheduler/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/Overview/React/index.html +++ b/apps/demos/Demos/Scheduler/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Overview/Vue/index.html b/apps/demos/Demos/Scheduler/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/Overview/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Resources/React/index.html b/apps/demos/Demos/Scheduler/Resources/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/Resources/React/index.html +++ b/apps/demos/Demos/Scheduler/Resources/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Resources/Vue/index.html b/apps/demos/Demos/Scheduler/Resources/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/Resources/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/SignalRService/React/index.html b/apps/demos/Demos/Scheduler/SignalRService/React/index.html index 952e0ab92fee..744a0082b95e 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/React/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html b/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html index 0f837a96a5e6..04f3ddfd83a3 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/SimpleArray/React/index.html b/apps/demos/Demos/Scheduler/SimpleArray/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/React/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Templates/React/index.html b/apps/demos/Demos/Scheduler/Templates/React/index.html index e3cb17f9591c..1a4405c4653d 100644 --- a/apps/demos/Demos/Scheduler/Templates/React/index.html +++ b/apps/demos/Demos/Scheduler/Templates/React/index.html @@ -13,6 +13,7 @@

DXCinema Show Times

+ diff --git a/apps/demos/Demos/Scheduler/Templates/Vue/index.html b/apps/demos/Demos/Scheduler/Templates/Vue/index.html index 81bf74454a07..ec8fbdb259f4 100644 --- a/apps/demos/Demos/Scheduler/Templates/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Templates/Vue/index.html @@ -14,6 +14,7 @@

DXCinema Show Times

+ diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Timelines/React/index.html b/apps/demos/Demos/Scheduler/Timelines/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/Timelines/React/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Timelines/Vue/index.html b/apps/demos/Demos/Scheduler/Timelines/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Toolbar/React/index.html b/apps/demos/Demos/Scheduler/Toolbar/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/React/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html b/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html index 46a2868ee988..a493eeacdd93 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html index ce90d3d1ebce..decb444072b5 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/WebAPIService/React/index.html b/apps/demos/Demos/Scheduler/WebAPIService/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/React/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/WorkShifts/React/index.html b/apps/demos/Demos/Scheduler/WorkShifts/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/React/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ScrollView/Overview/React/index.html b/apps/demos/Demos/ScrollView/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/ScrollView/Overview/React/index.html +++ b/apps/demos/Demos/ScrollView/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/ScrollView/Overview/Vue/index.html b/apps/demos/Demos/ScrollView/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/ScrollView/Overview/Vue/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/Grouping/React/index.html b/apps/demos/Demos/SelectBox/Grouping/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/SelectBox/Grouping/React/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/Grouping/Vue/index.html b/apps/demos/Demos/SelectBox/Grouping/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Vue/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/Overview/React/index.html b/apps/demos/Demos/SelectBox/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/SelectBox/Overview/React/index.html +++ b/apps/demos/Demos/SelectBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/Overview/Vue/index.html b/apps/demos/Demos/SelectBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/SelectBox/Overview/Vue/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Slider/Overview/React/index.html b/apps/demos/Demos/Slider/Overview/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Slider/Overview/React/index.html +++ b/apps/demos/Demos/Slider/Overview/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Slider/Overview/Vue/index.html b/apps/demos/Demos/Slider/Overview/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Slider/Overview/Vue/index.html +++ b/apps/demos/Demos/Slider/Overview/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Sortable/Customization/React/index.html b/apps/demos/Demos/Sortable/Customization/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/Sortable/Customization/React/index.html +++ b/apps/demos/Demos/Sortable/Customization/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Sortable/Customization/Vue/index.html b/apps/demos/Demos/Sortable/Customization/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/Sortable/Customization/Vue/index.html +++ b/apps/demos/Demos/Sortable/Customization/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/Sortable/Kanban/React/index.html b/apps/demos/Demos/Sortable/Kanban/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Sortable/Kanban/React/index.html +++ b/apps/demos/Demos/Sortable/Kanban/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Sortable/Kanban/Vue/index.html b/apps/demos/Demos/Sortable/Kanban/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Sortable/Kanban/Vue/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SpeechToText/Overview/React/index.html b/apps/demos/Demos/SpeechToText/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/SpeechToText/Overview/React/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/SpeechToText/Overview/Vue/index.html b/apps/demos/Demos/SpeechToText/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Vue/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Splitter/Overview/React/index.html b/apps/demos/Demos/Splitter/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Splitter/Overview/React/index.html +++ b/apps/demos/Demos/Splitter/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Splitter/Overview/Vue/index.html b/apps/demos/Demos/Splitter/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Splitter/Overview/Vue/index.html +++ b/apps/demos/Demos/Splitter/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/FormIntegration/React/index.html b/apps/demos/Demos/Stepper/FormIntegration/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/React/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html b/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/Overview/React/index.html b/apps/demos/Demos/Stepper/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Stepper/Overview/React/index.html +++ b/apps/demos/Demos/Stepper/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/Overview/Vue/index.html b/apps/demos/Demos/Stepper/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Stepper/Overview/Vue/index.html +++ b/apps/demos/Demos/Stepper/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/StepTemplate/React/index.html b/apps/demos/Demos/Stepper/StepTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/React/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html b/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Switch/Overview/React/index.html b/apps/demos/Demos/Switch/Overview/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/Switch/Overview/React/index.html +++ b/apps/demos/Demos/Switch/Overview/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Switch/Overview/Vue/index.html b/apps/demos/Demos/Switch/Overview/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/Switch/Overview/Vue/index.html +++ b/apps/demos/Demos/Switch/Overview/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/Overview/React/index.html b/apps/demos/Demos/TabPanel/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TabPanel/Overview/React/index.html +++ b/apps/demos/Demos/TabPanel/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/Overview/Vue/index.html b/apps/demos/Demos/TabPanel/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TabPanel/Overview/Vue/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/Templates/React/index.html b/apps/demos/Demos/TabPanel/Templates/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TabPanel/Templates/React/index.html +++ b/apps/demos/Demos/TabPanel/Templates/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TabPanel/Templates/Vue/index.html b/apps/demos/Demos/TabPanel/Templates/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TabPanel/Templates/Vue/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tabs/Overview/React/index.html b/apps/demos/Demos/Tabs/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Tabs/Overview/React/index.html +++ b/apps/demos/Demos/Tabs/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tabs/Overview/Vue/index.html b/apps/demos/Demos/Tabs/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Tabs/Overview/Vue/index.html +++ b/apps/demos/Demos/Tabs/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tabs/Selection/React/index.html b/apps/demos/Demos/Tabs/Selection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Tabs/Selection/React/index.html +++ b/apps/demos/Demos/Tabs/Selection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tabs/Selection/Vue/index.html b/apps/demos/Demos/Tabs/Selection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Tabs/Selection/Vue/index.html +++ b/apps/demos/Demos/Tabs/Selection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TagBox/Grouping/React/index.html b/apps/demos/Demos/TagBox/Grouping/React/index.html index 49ffa5dcc27f..c32d911ec60e 100644 --- a/apps/demos/Demos/TagBox/Grouping/React/index.html +++ b/apps/demos/Demos/TagBox/Grouping/React/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/TagBox/Grouping/Vue/index.html b/apps/demos/Demos/TagBox/Grouping/Vue/index.html index 90f32feafe4e..b11fce28db71 100644 --- a/apps/demos/Demos/TagBox/Grouping/Vue/index.html +++ b/apps/demos/Demos/TagBox/Grouping/Vue/index.html @@ -13,6 +13,7 @@
+ diff --git a/apps/demos/Demos/TagBox/Overview/React/index.html b/apps/demos/Demos/TagBox/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TagBox/Overview/React/index.html +++ b/apps/demos/Demos/TagBox/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TagBox/Overview/Vue/index.html b/apps/demos/Demos/TagBox/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TagBox/Overview/Vue/index.html +++ b/apps/demos/Demos/TagBox/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TextArea/Overview/React/index.html b/apps/demos/Demos/TextArea/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TextArea/Overview/React/index.html +++ b/apps/demos/Demos/TextArea/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TextArea/Overview/Vue/index.html b/apps/demos/Demos/TextArea/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TextArea/Overview/Vue/index.html +++ b/apps/demos/Demos/TextArea/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TextBox/Overview/React/index.html b/apps/demos/Demos/TextBox/Overview/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/TextBox/Overview/React/index.html +++ b/apps/demos/Demos/TextBox/Overview/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TextBox/Overview/Vue/index.html b/apps/demos/Demos/TextBox/Overview/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/TextBox/Overview/Vue/index.html +++ b/apps/demos/Demos/TextBox/Overview/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TileView/Basics/React/index.html b/apps/demos/Demos/TileView/Basics/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TileView/Basics/React/index.html +++ b/apps/demos/Demos/TileView/Basics/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TileView/Basics/Vue/index.html b/apps/demos/Demos/TileView/Basics/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TileView/Basics/Vue/index.html +++ b/apps/demos/Demos/TileView/Basics/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TileView/Directions/React/index.html b/apps/demos/Demos/TileView/Directions/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TileView/Directions/React/index.html +++ b/apps/demos/Demos/TileView/Directions/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TileView/Directions/Vue/index.html b/apps/demos/Demos/TileView/Directions/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TileView/Directions/Vue/index.html +++ b/apps/demos/Demos/TileView/Directions/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TileView/ItemTemplate/React/index.html b/apps/demos/Demos/TileView/ItemTemplate/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/React/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html b/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toast/Overview/React/index.html b/apps/demos/Demos/Toast/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Toast/Overview/React/index.html +++ b/apps/demos/Demos/Toast/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toast/Overview/Vue/index.html b/apps/demos/Demos/Toast/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Toast/Overview/Vue/index.html +++ b/apps/demos/Demos/Toast/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toast/Stack/React/index.html b/apps/demos/Demos/Toast/Stack/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Toast/Stack/React/index.html +++ b/apps/demos/Demos/Toast/Stack/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toast/Stack/Vue/index.html b/apps/demos/Demos/Toast/Stack/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Toast/Stack/Vue/index.html +++ b/apps/demos/Demos/Toast/Stack/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toolbar/Adaptability/React/index.html b/apps/demos/Demos/Toolbar/Adaptability/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/React/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html b/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toolbar/Overview/React/index.html b/apps/demos/Demos/Toolbar/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Toolbar/Overview/React/index.html +++ b/apps/demos/Demos/Toolbar/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Toolbar/Overview/Vue/index.html b/apps/demos/Demos/Toolbar/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Toolbar/Overview/Vue/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tooltip/Overview/React/index.html b/apps/demos/Demos/Tooltip/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Tooltip/Overview/React/index.html +++ b/apps/demos/Demos/Tooltip/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Tooltip/Overview/Vue/index.html b/apps/demos/Demos/Tooltip/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Tooltip/Overview/Vue/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/AIColumns/React/index.html b/apps/demos/Demos/TreeList/AIColumns/React/index.html index 393ce82bc4f4..91386e30e778 100644 --- a/apps/demos/Demos/TreeList/AIColumns/React/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/React/index.html @@ -14,6 +14,7 @@
+ diff --git a/apps/demos/Demos/TreeList/AIColumns/Vue/index.html b/apps/demos/Demos/TreeList/AIColumns/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Vue/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Adaptability/React/index.html b/apps/demos/Demos/TreeList/Adaptability/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/Adaptability/React/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Adaptability/Vue/index.html b/apps/demos/Demos/TreeList/Adaptability/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Vue/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/BatchEditing/React/index.html b/apps/demos/Demos/TreeList/BatchEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/React/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html b/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/CellEditing/React/index.html b/apps/demos/Demos/TreeList/CellEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/CellEditing/React/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/CellEditing/Vue/index.html b/apps/demos/Demos/TreeList/CellEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/ColumnChooser/React/index.html b/apps/demos/Demos/TreeList/ColumnChooser/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/React/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterModes/React/index.html b/apps/demos/Demos/TreeList/FilterModes/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FilterModes/React/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterModes/Vue/index.html b/apps/demos/Demos/TreeList/FilterModes/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterPanel/React/index.html b/apps/demos/Demos/TreeList/FilterPanel/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/React/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html b/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterRow/React/index.html b/apps/demos/Demos/TreeList/FilterRow/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FilterRow/React/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FilterRow/Vue/index.html b/apps/demos/Demos/TreeList/FilterRow/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FocusedRow/React/index.html b/apps/demos/Demos/TreeList/FocusedRow/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/React/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html b/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FormEditing/React/index.html b/apps/demos/Demos/TreeList/FormEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/FormEditing/React/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/FormEditing/Vue/index.html b/apps/demos/Demos/TreeList/FormEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html index 580d70095891..b6b3446f68f0 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html @@ -12,6 +12,7 @@

Click this text and press Tab

+ diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html index 580d70095891..b2cefbd42355 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html @@ -12,6 +12,7 @@

Click this text and press Tab

+ diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/LocalReordering/React/index.html b/apps/demos/Demos/TreeList/LocalReordering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/React/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html b/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/MultipleSorting/React/index.html b/apps/demos/Demos/TreeList/MultipleSorting/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/React/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Overview/React/index.html b/apps/demos/Demos/TreeList/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/Overview/React/index.html +++ b/apps/demos/Demos/TreeList/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Overview/Vue/index.html b/apps/demos/Demos/TreeList/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/Overview/Vue/index.html +++ b/apps/demos/Demos/TreeList/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Paging/React/index.html b/apps/demos/Demos/TreeList/Paging/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/TreeList/Paging/React/index.html +++ b/apps/demos/Demos/TreeList/Paging/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Paging/Vue/index.html b/apps/demos/Demos/TreeList/Paging/Vue/index.html index fb771a33adc4..73454624c3fc 100644 --- a/apps/demos/Demos/TreeList/Paging/Vue/index.html +++ b/apps/demos/Demos/TreeList/Paging/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TreeList/PopupEditing/React/index.html b/apps/demos/Demos/TreeList/PopupEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/React/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html b/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Reordering/React/index.html b/apps/demos/Demos/TreeList/Reordering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/Reordering/React/index.html +++ b/apps/demos/Demos/TreeList/Reordering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Reordering/Vue/index.html b/apps/demos/Demos/TreeList/Reordering/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/Reordering/Vue/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Resizing/React/index.html b/apps/demos/Demos/TreeList/Resizing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/Resizing/React/index.html +++ b/apps/demos/Demos/TreeList/Resizing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/Resizing/Vue/index.html b/apps/demos/Demos/TreeList/Resizing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/Resizing/Vue/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/RowEditing/React/index.html b/apps/demos/Demos/TreeList/RowEditing/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/RowEditing/React/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/RowEditing/Vue/index.html b/apps/demos/Demos/TreeList/RowEditing/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SearchPanel/React/index.html b/apps/demos/Demos/TreeList/SearchPanel/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/React/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html b/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/StatePersistence/React/index.html b/apps/demos/Demos/TreeList/StatePersistence/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/React/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html b/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/WebAPIService/React/index.html b/apps/demos/Demos/TreeList/WebAPIService/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/React/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html b/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html index e97e1d43d2f6..3dfd751a307e 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/TreeView/VirtualMode/React/index.html b/apps/demos/Demos/TreeView/VirtualMode/React/index.html index 1da2da79d709..3551d62c9efe 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/React/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/React/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html b/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html index fb4cf0d3a3e5..14ef949de450 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html @@ -11,6 +11,7 @@
+ diff --git a/apps/demos/Demos/Validation/Overview/React/index.html b/apps/demos/Demos/Validation/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/Validation/Overview/React/index.html +++ b/apps/demos/Demos/Validation/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/Validation/Overview/Vue/index.html b/apps/demos/Demos/Validation/Overview/Vue/index.html index 7369a149272c..c7abf5532cd1 100644 --- a/apps/demos/Demos/Validation/Overview/Vue/index.html +++ b/apps/demos/Demos/Validation/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomMapData/React/index.html b/apps/demos/Demos/VectorMap/CustomMapData/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/FloorPlan/React/index.html b/apps/demos/Demos/VectorMap/FloorPlan/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/React/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Legend/React/index.html b/apps/demos/Demos/VectorMap/Legend/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/Legend/React/index.html +++ b/apps/demos/Demos/VectorMap/Legend/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Legend/Vue/index.html b/apps/demos/Demos/VectorMap/Legend/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/Legend/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Legend/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Overview/React/index.html b/apps/demos/Demos/VectorMap/Overview/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/Overview/React/index.html +++ b/apps/demos/Demos/VectorMap/Overview/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Overview/Vue/index.html b/apps/demos/Demos/VectorMap/Overview/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/Overview/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Palette/React/index.html b/apps/demos/Demos/VectorMap/Palette/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/Palette/React/index.html +++ b/apps/demos/Demos/VectorMap/Palette/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/Palette/Vue/index.html b/apps/demos/Demos/VectorMap/Palette/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/Palette/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html index 7b47950bbaff..b6ad2f9b1595 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html index 7b47950bbaff..e0b2856fbaa6 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html @@ -12,6 +12,7 @@
+ diff --git a/apps/demos/package.json b/apps/demos/package.json index 5f59605a5908..1aaf357604bb 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -177,6 +177,7 @@ "test-testcafe:accessibility": "cross-env STRATEGY=accessibility CONSTEL=jquery node utils/visual-tests/testcafe-runner.ts", "csp-server": "node utils/server/csp-server.js 8080", "csp-check": "node utils/server/csp-check.js", + "build-vendor-bundles": "node utils/server/build-vendor-bundles.js", "fix-lint": "prettier --write . && eslint --fix . && stylelint **/*.{css,vue} --fix", "prettier": "prettier", "convert-to-js": "ts-node ./utils/ts-to-js-converter/cli.ts", diff --git a/apps/demos/utils/server/build-vendor-bundles.js b/apps/demos/utils/server/build-vendor-bundles.js new file mode 100644 index 000000000000..d691ad371983 --- /dev/null +++ b/apps/demos/utils/server/build-vendor-bundles.js @@ -0,0 +1,43 @@ +// 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']; + +function reactVueOptions(framework) { + // eslint-disable-next-line global-require + const { getSharedOptions } = require('./csp-bundle'); + const options = getSharedOptions(framework); + return { + ...options, + plugins: options.plugins.filter((p) => p.name !== 'vendor-bundle:external-global'), + }; +} + +async function main() { + for (const framework of FRAMEWORKS) { + const options = reactVueOptions(framework); + process.stdout.write(`Building vendor bundle for ${framework}... `); + const manifest = await buildVendorBundle(framework, options); + if (!manifest) { + console.log('skipped (no vendor-eligible imports found)'); + // eslint-disable-next-line no-continue + continue; + } + const outFile = path.join(__dirname, '..', '..', 'bundles', 'vendor', manifest.file); + const size = fs.statSync(outFile).size; + console.log(`${manifest.specifiers.length} specifiers, ${(size / 1024).toFixed(0)} KB -> bundles/vendor/${manifest.file}`); + } +} + +main().catch((err) => { + console.error('build-vendor-bundles failed:', err); + process.exit(1); +}); diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 00506cbb83f4..fd5af02833a4 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -1,8 +1,6 @@ /* eslint-disable global-require, import/no-dynamic-require */ -// Bundles every Angular demo into csp-bundled-demos///Angular/ via -// AOT (@angular/build/private's createCompilerPlugin). Kept separate from -// csp-bundle.js, which delegates here for --framework=Angular. +// Bundles every Angular demo via AOT; csp-bundle.js delegates here for --framework=Angular. const path = require('path'); const fs = require('fs'); @@ -14,9 +12,6 @@ const DEMOS_APP_ROOT = path.resolve(__dirname, '..', '..'); const REPO_ROOT = path.resolve(DEMOS_APP_ROOT, '..', '..'); const SRC_DEMOS_DIR = path.join(DEMOS_APP_ROOT, 'Demos'); -// Write bundle.js next to each demo's own source (the real, only demo tree) -// instead of into the csp-bundled-demos/ side directory used by the CSP-only -// check. This is what CI's demo-build step uses in production. const IN_PLACE = process.env.BUNDLE_IN_PLACE === '1'; const OUT_ROOT = IN_PLACE ? SRC_DEMOS_DIR : path.join(DEMOS_APP_ROOT, 'csp-bundled-demos'); const NODE_MODULES = path.join(DEMOS_APP_ROOT, 'node_modules'); @@ -34,9 +29,7 @@ const RETRY_CONCURRENCY = (() => { return 2; })(); -// Demos per esbuild build. Larger batches amortize the per-build Angular -// compilation setup but are memory-bound — too large OOMs the CI runner. 12 is -// the safe default; raise via CSP_BUNDLE_BATCH_SIZE only on a high-RAM box. +// 12 is a safe default — larger batches OOM the CI runner. const BATCH_SIZE = (() => { const fromEnv = parseInt(process.env.CSP_BUNDLE_BATCH_SIZE, 10); if (fromEnv > 0) return fromEnv; @@ -49,11 +42,8 @@ const BATCH_CONCURRENCY = (() => { return 1; })(); -// Optional substring filter for local smoke tests, e.g. CSP_BUNDLE_FILTER=Common/FormsOverview. const FILTER = (process.env.CSP_BUNDLE_FILTER || '').trim(); -// Optional round-robin sharding across parallel CI jobs (CSP_SHARD_TOTAL / -// CSP_SHARD_INDEX, 1-based). const SHARD_TOTAL = Math.max(1, parseInt(process.env.CSP_SHARD_TOTAL, 10) || 1); const SHARD_INDEX = (() => { const n = parseInt(process.env.CSP_SHARD_INDEX, 10); @@ -71,6 +61,9 @@ function applyShard(demos) { const SHARED_TSCONFIG_TEMPLATE = path.join(__dirname, 'tsconfig.csp-bundle-angular.json'); const GENERATED_TSCONFIG_DIR = path.join(__dirname, '.csp-bundle-angular-tsconfigs'); const ANGULAR_ZONE_SCRIPT = '../../../../node_modules/zone.js/bundles/zone.umd.js'; +// esbuild's own code-splitting output (shared chunks across a batch's demos) — a plain +// build artifact directory, wiped and regenerated on every run. +const CHUNKS_DIRNAME = '_chunks'; // @angular/build is transitive via @angular-devkit/build-angular; resolve through it for pnpm. function resolveAngularBuildPrivate() { @@ -81,8 +74,7 @@ function resolveAngularBuildPrivate() { return require(require.resolve('@angular/build/private', { paths: [buildAngularDir] })); } -// Per demo, write a tsconfig that extends the shared template and lists the entry -// in `files` (ngc rejects empty files+include, TS18002). Slug avoids collisions. +// ngc rejects empty files+include (TS18002), so `files` always lists the entry. function writeTsconfig(name, entryPaths) { fs.mkdirSync(GENERATED_TSCONFIG_DIR, { recursive: true }); const slug = name.replace(/[\\/]/g, '__').replace(/[^a-zA-Z0-9_.-]/g, '_'); @@ -104,8 +96,6 @@ function writeDemoTsconfig(entryPath) { return writeTsconfig(path.relative(REPO_ROOT, entryPath), [entryPath]); } -// A couple of demos add their own markup next to (Charts/AxisLabelCustomization -// keeps its SVG filter there), so the body is carried over rather than fixed. const DEFAULT_BODY_INNER = `
Loading...
`; @@ -175,10 +165,8 @@ function findDemos() { return out; } -// ---- CSS asset shim infrastructure ---- -// Demo component CSS uses url() paths that assumed inline injection (resolved -// against the document URL). Under AOT they resolve against the CSS file location -// and fall one dir short, so we symlink the asset at the "wrong" location. +// Under AOT, component CSS url() paths resolve one dir short of where they used +// to (against the CSS file, not the document) — symlink the asset at the wrong path. const ASSET_EXT_RE = /\.(png|jpe?g|gif|svg|webp|ico|avif)(\?[^)'"\s]*)?$/i; const URL_RE = /url\(\s*(['"]?)([^)'"]+?)\1\s*\)/g; @@ -215,7 +203,6 @@ function discoverComponentStyleFiles(tsFiles) { return Array.from(result); } -// Build a deduplicated list of (wrongPath -> realPath) asset shims across all demos. function computeGlobalShims(allCssFiles) { const seen = new Map(); // wrongPath -> { rescued } for (const cssFile of allCssFiles) { @@ -273,20 +260,14 @@ function removeShims(installed) { } } -// ---- SystemJS-style templateUrl / styleUrls patcher ---- -// Demo components use SystemJS-era paths (`.${modulePrefix}/.html`) that -// resolve wrong under AOT. The real resource is always a sibling of the .ts with -// the same basename, so rewrite to `./.` and feed the patched copy -// (written next to the original so its relative imports still resolve) via -// fileReplacements. +// Demo components use SystemJS-era templateUrl/styleUrls paths that resolve wrong +// under AOT; patch to `./.` and feed the copy via fileReplacements. const PATCHED_TS_PREFIX = '.csp-bundle-angular-patched.'; const TEMPLATE_URL_RE = /templateUrl\s*:\s*([`'"])([^`'"]+)\1/g; const STYLE_URLS_INLINE_RE = /styleUrls\s*:\s*\[\s*([`'"])([^`'"]+)\1\s*\]/g; const allPatchedTsFiles = new Set(); function aotRelativeFor(tsFile, originalSpec) { - // The original spec embeds the SystemJS `${modulePrefix}` plus the dir name. - // The real resource is a sibling of the .ts with the same basename. const ext = path.extname(originalSpec); if (!ext) return null; const tsBase = path.basename(tsFile, '.ts'); @@ -341,8 +322,7 @@ function sweepStalePatchedTsFiles(rootDir) { } } -// Collect every .ts file under the demo's app/ subtree (all need @ts-nocheck), -// excluding patch siblings so re-runs are idempotent. +// Excludes patch siblings so re-runs stay idempotent. function findDemoTsFiles(rootDir) { const out = []; function walk(dir) { @@ -363,7 +343,6 @@ function findDemoTsFiles(rootDir) { return out; } -// Map the bare `anti-forgery` specifier as the SystemJS config does. const ANTI_FORGERY_PATH = path.join(DEMOS_APP_ROOT, 'shared', 'anti-forgery', 'fetch-override.js'); const antiForgeryPlugin = { name: 'csp-bundle-angular:anti-forgery', @@ -372,15 +351,12 @@ const antiForgeryPlugin = { }, }; -// ---- single @angular copy ---- -// The pnpm store holds several @angular/core versions, so an importer-relative -// resolve can bundle two — two DI systems (NG0203/NG05100/NG0300). Resolve every -// @angular/* from a single base (apps/demos) so the bundle shares one copy. +// Resolves every @angular/* from a single base so the bundle shares one copy — +// otherwise two DI systems can end up bundled (NG0203/NG05100/NG0300). const angularSingleCopyPlugin = { name: 'csp-bundle-angular:single-angular-copy', setup(build) { build.onResolve({ filter: /^@angular\// }, async (args) => { - // Re-entry guard: our own build.resolve() below re-triggers this hook. if (args.pluginData && args.pluginData.ngDeduped) return null; const resolved = await build.resolve(args.path, { kind: args.kind, @@ -402,9 +378,7 @@ function isFileCached(filePath) { return fileExistsCache.get(filePath); } -// ---- devextreme path redirect plugin ---- -// apps/demos/node_modules/devextreme only ships bundles/; redirect to the real CJS -// modules under packages/devextreme/artifacts, as the SystemJS dev config does. +// apps/demos/node_modules/devextreme only ships bundles/; redirect to the real CJS modules. const DEVEXTREME_CJS_ROOT = path.join( REPO_ROOT, 'packages', 'devextreme', 'artifacts', 'transpiled-esm-npm', 'cjs', ); @@ -413,7 +387,6 @@ const devextremeRedirectPlugin = { setup(build) { build.onResolve({ filter: /^devextreme(\/.*)?$/ }, (args) => { const sub = args.path === 'devextreme' ? '' : args.path.slice('devextreme/'.length); - // Try the path as-is first (explicit extensions), then implicit .js/index.js/.mjs. const candidates = sub ? [ path.join(DEVEXTREME_CJS_ROOT, sub), @@ -432,8 +405,8 @@ const devextremeRedirectPlugin = { }, }; -// Re-resolve snake_case devextreme-angular/ui/* imports (e.g. html_editor) to the -// kebab-case form the npm dist actually ships. +// Re-resolves snake_case devextreme-angular/ui/* imports (e.g. html_editor) to +// the kebab-case form the npm dist actually ships. const devextremeAngularSnakeCasePlugin = { name: 'csp-bundle-angular:devextreme-angular-snake-case', setup(build) { @@ -452,8 +425,7 @@ const devextremeAngularSnakeCasePlugin = { }, }; -// Redirect devextreme-dist/js/* (VectorMap data) to the real files under -// packages/devextreme/artifacts/js — the dist package is near-empty. +// devextreme-dist/js is near-empty — redirect VectorMap data to the real artifacts/js files. const DEVEXTREME_ARTIFACTS_JS = path.join(REPO_ROOT, 'packages', 'devextreme', 'artifacts', 'js'); const devextremeDistRedirectPlugin = { name: 'csp-bundle-angular:devextreme-dist-redirect', @@ -542,8 +514,6 @@ function makeCompilerPlugin(createCompilerPlugin, tsconfig, fileReplacements) { } function prepareDemo(demo) { - // Patch every .ts in the demo and feed the copies via fileReplacements; point - // the entry (which bypasses resolveModuleNames) at its patched copy directly. const fileReplacements = {}; for (const tsFile of findDemoTsFiles(path.join(demo.srcDir, 'app'))) { const patched = patchComponentTs(tsFile); @@ -587,14 +557,19 @@ function makeBuildOptions({ outdir, bundle: true, format: 'esm', + // A batch's demos share one esbuild build (see bundleDemoBatch); splitting lets esbuild + // find and extract code common across its entry points into a shared chunk automatically + // — no custom externalization plugin involved, so nothing can shadow the AOT compiler + // plugin's own need to read every file's real source (see git history for what happens + // when something does: NG0919/`void 0` dependency arrays). Content-hashed and a no-op for + // a single-entry (non-batched) build, so safe to always set. + splitting: true, + chunkNames: `${CHUNKS_DIRNAME}/[hash]`, platform: 'browser', target: 'es2022', mainFields: ['es2020', 'es2015', 'browser', 'module', 'main'], conditions: ['es2020', 'es2015', 'module'], - // Resolve bare `globalize` to the core build (as the dev config and the - // React/Vue bundler do). Its package main (node-main.js) eagerly requires - // globalize/plural, which demands plurals-type-cardinal CLDR data the demos - // don't load (E_MISSING_CLDR). + // globalize's package main eagerly requires plural CLDR data the demos don't load (E_MISSING_CLDR). alias: { globalize: path.join(NODE_MODULES, 'globalize', 'dist', 'globalize.js'), }, @@ -649,9 +624,7 @@ async function bundleDemo(demo, createCompilerPlugin, destDirOverride) { return { ok: false, reason: (err && err.message) || String(err) }; } - // The Angular AOT compiler plugin can list a component style output in the - // metafile that it ends up inlining instead of actually emitting (no file on - // disk) — filter to outputs that are really there before linking them. + // The AOT compiler plugin can list a style output it actually inlined instead of emitting. const outputs = Object.keys((result.metafile && result.metafile.outputs) || {}) .filter((o) => fs.existsSync(path.resolve(DEMOS_APP_ROOT, o))); const localJsFiles = sortJsFiles(outputs.filter((o) => o.endsWith('.js')).map((o) => path.basename(o))); @@ -732,9 +705,7 @@ async function main() { if (FILTER) console.log(`Filter: ${FILTER}`); console.log(''); - // Wipe previous Angular output; leave React/Vue subtrees alone. In-place - // mode writes into the demo's own source folder, which must NOT be wiped - // (that would delete the demo's actual source, not just old output). + // IN_PLACE writes into the demo's own source folder, which must not be wiped. if (!IN_PLACE && fs.existsSync(OUT_ROOT)) { const existingWidgets = fs.readdirSync(OUT_ROOT, { withFileTypes: true }).filter((w) => w.isDirectory()); for (const widget of existingWidgets) { @@ -750,6 +721,13 @@ async function main() { if (fs.existsSync(GENERATED_TSCONFIG_DIR)) { fs.rmSync(GENERATED_TSCONFIG_DIR, { recursive: true, force: true }); } + // Shared across every demo's own build (see makeBuildOptions' chunkNames) — not owned by + // any single demo's own folder, so not covered by the per-demo wipe above; always safe to + // fully regenerate since chunk filenames are content-hashed. + const chunksDir = path.join(OUT_ROOT, CHUNKS_DIRNAME); + if (fs.existsSync(chunksDir)) { + fs.rmSync(chunksDir, { recursive: true, force: true }); + } sweepStalePatchedTsFiles(SRC_DEMOS_DIR); const { createCompilerPlugin } = resolveAngularBuildPrivate(); @@ -854,11 +832,6 @@ if (require.main === module) { }); } -// The exports below (beyond `main`) exist so utils/build/build-angular-demo.js -// can drive a single, in-place demo build (e.g. for the dev server's -// lazy-build-on-request path) without duplicating this file's AOT/asset-shim -// logic — they're the same internals `main()` uses, just with `destDir` -// overridable per call instead of hardcoded to OUT_ROOT. module.exports = { main, resolveAngularBuildPrivate, @@ -872,4 +845,12 @@ module.exports = { bundleDemo, buildHtml, ANGULAR_ZONE_SCRIPT, + angularSingleCopyPlugin, + antiForgeryPlugin, + systemJsQuirksPlugin, + devextremeAngularSnakeCasePlugin, + devextremeDistRedirectPlugin, + devextremeRedirectPlugin, + NODE_MODULES, + DEMOS_APP_ROOT, }; diff --git a/apps/demos/utils/server/csp-bundle.js b/apps/demos/utils/server/csp-bundle.js index 9e2c27af40e2..8c7ac3b77957 100644 --- a/apps/demos/utils/server/csp-bundle.js +++ b/apps/demos/utils/server/csp-bundle.js @@ -1,7 +1,4 @@ -// Pre-bundles React/Vue demos with esbuild for the CSP check, so it validates the -// production CSP profile instead of the SystemJS dev loader's relaxations. -// Output: apps/demos/csp-bundled-demos////index.html. -// Angular is delegated to csp-bundle-angular.js. +// Bundles React/Vue demos with esbuild. Angular is delegated to csp-bundle-angular.js. const path = require('path'); const fs = require('fs'); @@ -12,9 +9,6 @@ const { extractDemoHeadExtras, extractDemoBodyInner } = require('./demo-html'); const FRAMEWORK_ARG = (process.argv.find((a) => a.startsWith('--framework=')) || '').split('=')[1]; const FRAMEWORK = FRAMEWORK_ARG || process.env.CSP_FRAMEWORKS || 'React'; -// ReactJs is the generated JavaScript twin of each React demo (see -// utils/ts-to-js-converter) — same JSX sources with .js extensions, which the -// shared '.js': 'jsx' loader already covers, so it needs no separate handling. const SUPPORTED = ['React', 'ReactJs', 'Vue', 'Angular']; if (!SUPPORTED.includes(FRAMEWORK)) { console.log(`csp-bundle: framework ${FRAMEWORK} is not supported (only ${SUPPORTED.join(', ')}). Nothing to do.`); @@ -23,9 +17,6 @@ if (!SUPPORTED.includes(FRAMEWORK)) { const IS_ANGULAR = FRAMEWORK === 'Angular'; -// Write bundle.js/bundle.css next to each demo's own source (the real, only -// demo tree) instead of into the csp-bundled-demos/ side directory used by the -// CSP-only check. This is what CI's demo-build step uses in production. const IN_PLACE = process.env.BUNDLE_IN_PLACE === '1'; const DEMOS_APP_ROOT = path.join(__dirname, '..', '..'); @@ -39,8 +30,6 @@ const CONCURRENCY = (() => { return Math.max(4, (os.cpus() || []).length - 1); })(); -// Optional round-robin sharding across parallel CI jobs (CSP_SHARD_TOTAL / -// CSP_SHARD_INDEX, 1-based). const SHARD_TOTAL = Math.max(1, parseInt(process.env.CSP_SHARD_TOTAL, 10) || 1); const SHARD_INDEX = (() => { const n = parseInt(process.env.CSP_SHARD_INDEX, 10); @@ -59,7 +48,6 @@ function findDemos() { const out = []; if (!fs.existsSync(SRC_DEMOS_DIR)) return out; - // Optional substring filter for local smoke tests: CSP_BUNDLE_FILTER=Button/Icons const filter = (process.env.CSP_BUNDLE_FILTER || '').trim(); const widgets = fs.readdirSync(SRC_DEMOS_DIR, { withFileTypes: true }) @@ -87,7 +75,6 @@ function findEntry(srcDir) { return null; } -// Treat imports of missing .css files (carried over from SystemJS configs) as empty. const ignoreMissingCssPlugin = { name: 'csp-bundle:ignore-missing-css', setup(build) { @@ -105,8 +92,6 @@ const ignoreMissingCssPlugin = { }, }; -// Rewrite SystemJS-specific import specifiers (npm:, !json, -// anti-forgery, globalize/) so esbuild resolves them like the dev loader. const ANTI_FORGERY_PATH = path.join(DEMOS_APP_ROOT, 'shared', 'anti-forgery', 'fetch-override.js'); const GLOBALIZE_BASE = path.join(NODE_MODULES, 'globalize', 'dist', 'globalize'); @@ -122,7 +107,6 @@ const systemJsQuirksPlugin = { return null; }); - // `npm:foo/bar` -> `foo/bar`; trailing `!json` -> stripped, JSON loader forced. build.onResolve({ filter: /(^npm:)|(!json$)/ }, async (args) => { let spec = args.path; const forceJson = spec.endsWith('!json'); @@ -150,16 +134,14 @@ const systemJsQuirksPlugin = { }, }; -// Force a single devextreme copy: collapse resolved cjs paths to their esm twin. -// Mixing both (esm via devextreme-react, cjs via aspnet-data require) bundles two -// copies of the Class/callBase system and infinitely recurses in the data path. +// Collapse resolved cjs devextreme paths to their esm twin — mixing both copies +// the Class/callBase system and infinitely recurses in the data path. const DX_CJS_SEG = `${path.sep}devextreme${path.sep}cjs${path.sep}`; const DX_ESM_SEG = `${path.sep}devextreme${path.sep}esm${path.sep}`; const devextremeDedupePlugin = { name: 'csp-bundle:devextreme-single-copy', setup(build) { build.onResolve({ filter: /^devextreme(\/.*)?$/ }, async (args) => { - // Re-entry guard: our own build.resolve() below re-triggers this hook. if (args.pluginData && args.pluginData.dxDeduped) return null; const resolved = await build.resolve(args.path, { kind: args.kind, @@ -179,11 +161,6 @@ const devextremeDedupePlugin = { }, }; -// Vue's esbuild plugin is safe to reuse across builds, so it's memoized per -// process rather than tied to the CLI's single module-level FRAMEWORK — lets -// getSharedOptions() be called for either framework from a long-lived process -// (e.g. the dev server's lazy build-on-request path), not just this CLI's -// single-framework-per-run invocation. let vuePluginInstance = null; function getVuePlugin() { if (!vuePluginInstance) { @@ -196,6 +173,8 @@ function getVuePlugin() { } function getSharedOptions(framework) { + // eslint-disable-next-line global-require + const { vendorGlobalPlugin } = require('./vendor-bundle'); return { bundle: true, minify: false, @@ -211,7 +190,6 @@ function getSharedOptions(framework) { alias: { react: path.join(NODE_MODULES, 'react'), 'react-dom': path.join(NODE_MODULES, 'react-dom'), - // Alias bare 'globalize' to the browser build, as the SystemJS configs do. globalize: path.join(NODE_MODULES, 'globalize', 'dist', 'globalize.js'), }, define: { @@ -221,6 +199,7 @@ function getSharedOptions(framework) { }, logLevel: 'silent', plugins: [ + vendorGlobalPlugin(framework), devextremeDedupePlugin, systemJsQuirksPlugin, ignoreMissingCssPlugin, @@ -229,15 +208,13 @@ function getSharedOptions(framework) { }; } -// Reuse the dev markup (minus its SystemJS + ${vendorTag ? `${vendorTag}\n ` : ''} `; } -// Core esbuild step, parameterized by destination + framework so it can be -// reused both for the CSP-check output (below) and for an in-place build that -// writes bundle.js next to the demo's own source (see utils/build/). async function bundleDemoTo({ srcDir, destDir, framework }) { const entry = findEntry(srcDir); if (!entry) return { ok: false, reason: 'no entry point (index.tsx|ts|jsx|js)' }; @@ -292,8 +270,6 @@ async function bundleDemoTo({ srcDir, destDir, framework }) { if (jsFiles.length === 0) return { ok: false, reason: 'no JS output produced' }; - // Standalone styles.css that the dev demo references separately (React) — - // normalized to bundle.css too, so callers only ever deal with one CSS name. const stylesSrc = path.join(srcDir, 'styles.css'); if (cssFiles.length === 0 && fs.existsSync(stylesSrc)) { const dest = path.join(destDir, 'bundle.css'); @@ -311,7 +287,9 @@ async function bundleDemo(demo, { destDir: destDirOverride, framework = FRAMEWOR fs.writeFileSync( path.join(destDir, 'index.html'), - buildHtml({ jsFile: result.jsFiles[0], cssFiles: result.cssFiles, srcDir: demo.srcDir }), + buildHtml({ + jsFile: result.jsFiles[0], cssFiles: result.cssFiles, srcDir: demo.srcDir, framework, + }), ); return { ok: true }; @@ -336,9 +314,7 @@ async function main() { console.log(`Source: ${SRC_DEMOS_DIR}`); console.log(`Output: ${OUT_ROOT}\n`); - // Wipe only this framework's previous output so per-framework runs don't clash. - // In-place mode writes into the demo's own source folder, which must NOT be - // wiped (that would delete the demo's actual source, not just old output). + // IN_PLACE writes into the demo's own source folder, which must not be wiped. if (!IN_PLACE && fs.existsSync(OUT_ROOT)) { const existingWidgets = fs.readdirSync(OUT_ROOT, { withFileTypes: true }) .filter((w) => w.isDirectory()); @@ -405,5 +381,5 @@ if (require.main === module) { } module.exports = { - bundleDemo, bundleDemoTo, findEntry, buildHtml, extractDemoBodyInner, + bundleDemo, bundleDemoTo, findEntry, buildHtml, extractDemoBodyInner, getSharedOptions, }; diff --git a/apps/demos/utils/server/csp-check.js b/apps/demos/utils/server/csp-check.js index 32e47f847f0b..cd423f8cc9e6 100644 --- a/apps/demos/utils/server/csp-check.js +++ b/apps/demos/utils/server/csp-check.js @@ -71,11 +71,8 @@ function findChrome() { const CHROME_PATH = findChrome(); -// The CI job that runs this script bundles only its own shard (csp-bundle.js -// applies the same round-robin split), so checking must use the identical -// partition. Checking a demo another shard bundled means no bundle.js on disk, -// which costs a 30s render deadline plus a retry each — enough to blow the -// job's timeout rather than fail. +// Must use the same shard partition as csp-bundle.js, or a demo bundled by +// another shard has no bundle.js on disk and burns its render deadline + retry. const SHARD_TOTAL = Math.max(1, parseInt(process.env.CSP_SHARD_TOTAL, 10) || 1); const SHARD_INDEX = (() => { const n = parseInt(process.env.CSP_SHARD_INDEX, 10); @@ -222,8 +219,7 @@ function findDemos() { return applyShard(result); } -// Wait until the DOM is quiet after load so late-rendered resources fire their -// CSP violations before we snapshot, bounded by SETTLE_MAX_MS. +// Waits until the DOM is quiet so late-rendered resources fire their CSP violations first. function waitForDomIdle(tab) { return tab.send('Runtime.evaluate', { awaitPromise: true, diff --git a/apps/demos/utils/server/csp-server.js b/apps/demos/utils/server/csp-server.js index c9acc399d90b..5589d8686c0f 100644 --- a/apps/demos/utils/server/csp-server.js +++ b/apps/demos/utils/server/csp-server.js @@ -244,8 +244,7 @@ function buildCspHeader(demoKey, nonce, framework) { directives[key] = [...values]; } - // Angular stamps this nonce (via ngCspNonce) on the