From faaeada402b674f37cfc7cf1379f731cf07c463e Mon Sep 17 00:00:00 2001 From: Andrey Vorobev <738482+vorobey@users.noreply.github.com> Date: Thu, 6 Aug 2026 12:13:53 +0300 Subject: [PATCH 1/8] Feature/demos remove system js infra (#34671) Co-authored-by: Arman Jivanyan --- .github/renovate.json | 3 +- .github/workflows/visual-tests-demos.yml | 168 +- apps/demos/.gitignore | 5 + apps/demos/.prettierrc.json | 7 - apps/demos/configs/Angular/config.bundle.js | 89 - apps/demos/configs/Angular/config.js | 392 --- apps/demos/configs/Angular/tsconfig.json | 15 - apps/demos/configs/React/config.bundle.js | 78 - apps/demos/configs/React/config.js | 257 -- apps/demos/configs/React/tsconfig.json | 10 - apps/demos/configs/ReactJs/config.bundle.js | 78 - apps/demos/configs/ReactJs/config.js | 273 -- apps/demos/configs/Vue/config.bundle.js | 63 - apps/demos/configs/Vue/config.js | 263 -- apps/demos/configs/Vue/tsconfig.json | 10 - apps/demos/index.html | 4 +- apps/demos/menuMeta.json | 48 +- apps/demos/package.json | 8 - apps/demos/project.json | 33 - apps/demos/scripts/build-bundles.js | 20 - apps/demos/scripts/prepare-js-configs.js | 6 - apps/demos/scripts/update-config.js | 9 - apps/demos/shared/loaders/demo-ts-loader.js | 19 - apps/demos/shared/loaders/demo-ts-shared.js | 78 - apps/demos/shared/loaders/demo-vue-loader.js | 45 - apps/demos/utils/build/build-angular-demo.js | 42 + .../demos/utils/build/build-react-vue-demo.js | 7 + apps/demos/utils/bundle/index.js | 304 --- apps/demos/utils/internal/create-config.js | 158 -- apps/demos/utils/server/csp-bundle-angular.js | 72 +- apps/demos/utils/server/csp-bundle.js | 145 +- apps/demos/utils/server/csp-check.js | 43 +- apps/demos/utils/server/csp-server.js | 123 +- apps/demos/utils/shell/server.js | 76 +- apps/demos/utils/svg-loader.js | 1 - apps/demos/utils/templates/Angular/index.html | 12 +- apps/demos/utils/templates/React/index.html | 11 +- apps/demos/utils/templates/Vue/index.html | 16 +- .../utils/ts-to-js-converter/converter.ts | 5 +- .../src/ui/pivot-grid/index.ts | 6 +- ...xts.ts => embedded-field-chooser-texts.ts} | 10 +- .../src/ui/pivot-grid/nested/index.ts | 2 +- .../make-integration-metadata.ts | 4 + packages/devextreme-react/src/pivot-grid.ts | 50 +- packages/devextreme-vue/src/pivot-grid.ts | 54 +- .../m_data_controller.integration.test.ts | 88 + patches/babel-core@6.26.3.patch | 22 - patches/systemjs-builder@0.16.15.patch | 143 -- pnpm-lock.yaml | 2261 ++++++----------- pnpm-workspace.yaml | 2 - 50 files changed, 1433 insertions(+), 4205 deletions(-) delete mode 100644 apps/demos/configs/Angular/config.bundle.js delete mode 100644 apps/demos/configs/Angular/config.js delete mode 100644 apps/demos/configs/Angular/tsconfig.json delete mode 100644 apps/demos/configs/React/config.bundle.js delete mode 100644 apps/demos/configs/React/config.js delete mode 100644 apps/demos/configs/React/tsconfig.json delete mode 100644 apps/demos/configs/ReactJs/config.bundle.js delete mode 100644 apps/demos/configs/ReactJs/config.js delete mode 100644 apps/demos/configs/Vue/config.bundle.js delete mode 100644 apps/demos/configs/Vue/config.js delete mode 100644 apps/demos/configs/Vue/tsconfig.json delete mode 100644 apps/demos/scripts/build-bundles.js delete mode 100644 apps/demos/scripts/update-config.js delete mode 100644 apps/demos/shared/loaders/demo-ts-loader.js delete mode 100644 apps/demos/shared/loaders/demo-ts-shared.js delete mode 100644 apps/demos/shared/loaders/demo-vue-loader.js create mode 100644 apps/demos/utils/build/build-angular-demo.js create mode 100644 apps/demos/utils/build/build-react-vue-demo.js delete mode 100644 apps/demos/utils/bundle/index.js delete mode 100644 apps/demos/utils/internal/create-config.js delete mode 100644 apps/demos/utils/svg-loader.js rename packages/devextreme-angular/src/ui/pivot-grid/nested/{field-chooser-texts.ts => embedded-field-chooser-texts.ts} (84%) create mode 100644 packages/devextreme/js/__internal/grids/grid_core/data_controller/__tests__/m_data_controller.integration.test.ts delete mode 100644 patches/babel-core@6.26.3.patch delete mode 100644 patches/systemjs-builder@0.16.15.patch diff --git a/.github/renovate.json b/.github/renovate.json index df3d3d21ff4a..7d602be924f7 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -85,8 +85,7 @@ "devexpress-gantt", "devexpress-diagram", "rrule", - "sass-embedded", - "systemjs" + "sass-embedded" ], "enabled": false }, diff --git a/.github/workflows/visual-tests-demos.yml b/.github/workflows/visual-tests-demos.yml index 54c485c1817d..8af7a43ffb91 100644 --- a/.github/workflows/visual-tests-demos.yml +++ b/.github/workflows/visual-tests-demos.yml @@ -274,8 +274,8 @@ jobs: 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 - name: Build Demos Bundles timeout-minutes: 30 needs: [check-should-run, determine-framework-tests-scope, build-devextreme] if: | @@ -286,6 +286,15 @@ jobs: needs.build-devextreme.result == 'success' env: NODE_OPTIONS: --max-old-space-size=8192 + strategy: + fail-fast: false + matrix: + include: + - { FRAMEWORK: React, SHARD_INDEX: 1, SHARD_TOTAL: 1 } + - { FRAMEWORK: Vue, SHARD_INDEX: 1, SHARD_TOTAL: 1 } + - { FRAMEWORK: Angular, SHARD_INDEX: 1, SHARD_TOTAL: 3 } + - { FRAMEWORK: Angular, SHARD_INDEX: 2, SHARD_TOTAL: 3 } + - { FRAMEWORK: Angular, SHARD_INDEX: 3, SHARD_TOTAL: 3 } steps: - name: Get sources @@ -331,20 +340,36 @@ jobs: # - name: Link wrappers packages # run: pnpm install --frozen-lockfile - - name: Prepare bundles + - name: Build demo bundles working-directory: apps/demos - run: pnpm exec nx prepare-bundles + env: + BUNDLE_IN_PLACE: '1' + CSP_SHARD_INDEX: ${{ matrix.SHARD_INDEX }} + CSP_SHARD_TOTAL: ${{ matrix.SHARD_TOTAL }} + run: node utils/server/csp-bundle.js --framework=${{ matrix.FRAMEWORK }} - name: Demos - Run tsc + if: matrix.FRAMEWORK == 'React' && matrix.SHARD_INDEX == 1 # global check, only needs to run once 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). + - name: Pack demo bundles + working-directory: apps/demos + run: | + find Demos \( -name 'bundle.js' -o -name 'bundle.css' \) -print0 \ + | tar -czf demo-bundles.tgz --null --files-from - + tar -tzf demo-bundles.tgz | head -3 + - name: Copy build artifacts uses: actions/upload-artifact@v7 with: - name: devextreme-bundles - path: | - apps/demos/bundles/ + name: devextreme-bundles-${{ matrix.FRAMEWORK }}${{ matrix.SHARD_TOTAL != 1 && format('-shard{0}', matrix.SHARD_INDEX) || '' }} + path: apps/demos/demo-bundles.tgz retention-days: 1 lint: @@ -913,18 +938,63 @@ jobs: working-directory: apps/demos run: pnpm run prepare-js - - name: Update bundles config - working-directory: apps/demos - run: pnpm run update-config + # 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 + with: + name: devextreme-bundles-React + path: apps/demos/.demo-bundles/react - - name: Create bundles dir - run: mkdir -p apps/demos/bundles + - name: Download demo bundles (Vue) + if: startsWith(matrix.CONSTEL, 'vue') + uses: actions/download-artifact@v8 + with: + 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. + - name: Download demo bundles (Angular shard 1) + if: startsWith(matrix.CONSTEL, 'angular') + uses: actions/download-artifact@v8 + with: + name: devextreme-bundles-Angular-shard1 + path: apps/demos/.demo-bundles/angular-shard1 + + - name: Download demo bundles (Angular shard 2) + if: startsWith(matrix.CONSTEL, 'angular') + uses: actions/download-artifact@v8 + with: + name: devextreme-bundles-Angular-shard2 + path: apps/demos/.demo-bundles/angular-shard2 - - name: Download bundles artifacts + - name: Download demo bundles (Angular shard 3) + if: startsWith(matrix.CONSTEL, 'angular') uses: actions/download-artifact@v8 with: - name: devextreme-bundles - path: apps/demos/bundles + name: devextreme-bundles-Angular-shard3 + path: apps/demos/.demo-bundles/angular-shard3 + + - name: Unpack demo bundles + run: | + shopt -s nullglob + archives=(apps/demos/.demo-bundles/*/demo-bundles.tgz) + if [ ${#archives[@]} -eq 0 ]; then + echo "No demo bundle archives downloaded for constellation '${{ matrix.CONSTEL }}'" >&2 + exit 1 + fi + for archive in "${archives[@]}"; do + tar -xzf "$archive" -C apps/demos + done + rm -rf apps/demos/.demo-bundles + echo "Unpacked $(find apps/demos/Demos -name 'bundle.js' | wc -l) demo bundle(s)" - name: Run Web Server run: | @@ -1049,18 +1119,46 @@ jobs: working-directory: apps/demos run: pnpm run prepare-js - - name: Update bundles config - working-directory: apps/demos - run: pnpm run update-config + # 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 + with: + name: devextreme-bundles-React + path: apps/demos/.demo-bundles/react + + - name: Download demo bundles (Vue) + if: matrix.CONSTEL == 'vue' + uses: actions/download-artifact@v8 + with: + name: devextreme-bundles-Vue + path: apps/demos/.demo-bundles/vue - - name: Create bundles dir - run: mkdir -p apps/demos/bundles + # build-demos shards Angular 3 ways regardless of how it's tested here. + - name: Download demo bundles (Angular shard 1) + if: matrix.CONSTEL == 'angular' + uses: actions/download-artifact@v8 + with: + name: devextreme-bundles-Angular-shard1 + path: apps/demos/.demo-bundles/angular-shard1 + + - name: Download demo bundles (Angular shard 2) + if: matrix.CONSTEL == 'angular' + uses: actions/download-artifact@v8 + with: + name: devextreme-bundles-Angular-shard2 + path: apps/demos/.demo-bundles/angular-shard2 - - name: Download bundles artifacts + - name: Download demo bundles (Angular shard 3) + if: matrix.CONSTEL == 'angular' uses: actions/download-artifact@v8 with: - name: devextreme-bundles - path: apps/demos/bundles + name: devextreme-bundles-Angular-shard3 + path: apps/demos/.demo-bundles/angular-shard3 - name: Download changes artifacts uses: actions/download-artifact@v8 @@ -1068,6 +1166,20 @@ jobs: name: changed-demos path: apps/demos + - name: Unpack demo bundles + run: | + shopt -s nullglob + archives=(apps/demos/.demo-bundles/*/demo-bundles.tgz) + if [ ${#archives[@]} -eq 0 ]; then + echo "No demo bundle archives downloaded for constellation '${{ matrix.CONSTEL }}'" >&2 + exit 1 + fi + for archive in "${archives[@]}"; do + tar -xzf "$archive" -C apps/demos + done + rm -rf apps/demos/.demo-bundles + echo "Unpacked $(find apps/demos/Demos -name 'bundle.js' | wc -l) demo bundle(s)" + - name: Run Web Server run: | python -m http.server 8080 & @@ -1163,8 +1275,6 @@ jobs: needs.build-devextreme.result == 'success' runs-on: devextreme-shr2 timeout-minutes: 60 - env: - CSP_USE_BUNDLED: '0' steps: - name: Get sources @@ -1251,8 +1361,6 @@ jobs: - { FRAMEWORK: Angular, SHARD_INDEX: 3, SHARD_TOTAL: 3 } runs-on: devextreme-shr2 timeout-minutes: 60 - env: - CSP_USE_BUNDLED: '1' steps: - name: Get sources @@ -1296,12 +1404,14 @@ 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 - # Bundle production-style pages only when the CSP check is configured to - # read csp-bundled-demos; otherwise the checker uses SystemJS dev demos. + # 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. - name: Bundle demos for CSP check - if: env.CSP_USE_BUNDLED == '1' || env.CSP_USE_BUNDLED == 'true' working-directory: apps/demos env: + BUNDLE_IN_PLACE: '1' CSP_SHARD_INDEX: ${{ matrix.SHARD_INDEX }} CSP_SHARD_TOTAL: ${{ matrix.SHARD_TOTAL }} run: node utils/server/csp-bundle.js --framework=${{ matrix.FRAMEWORK }} diff --git a/apps/demos/.gitignore b/apps/demos/.gitignore index f6c9d4263dc9..b6bc7a1749f1 100644 --- a/apps/demos/.gitignore +++ b/apps/demos/.gitignore @@ -28,6 +28,11 @@ shared/empty-file.js Demos/**/config.js Demos/**/tsconfig.json +# esbuild in-place demo build output (see utils/build/) — generated next to +# each demo's own source, same convention as Demos/**/config.js above. +Demos/**/bundle.js +Demos/**/bundle.css + .DS_Store **/.DS_Store publish-demos diff --git a/apps/demos/.prettierrc.json b/apps/demos/.prettierrc.json index b4c6d26502b7..4f5977701e68 100644 --- a/apps/demos/.prettierrc.json +++ b/apps/demos/.prettierrc.json @@ -16,13 +16,6 @@ "singleAttributePerLine": true, "trailingComma": "all" } - }, - { - "files": "**/ReactJs/**/*.html", - "options": { - "printWidth": 100, - "singleAttributePerLine": true - } } ] } diff --git a/apps/demos/configs/Angular/config.bundle.js b/apps/demos/configs/Angular/config.bundle.js deleted file mode 100644 index 8d08484e5534..000000000000 --- a/apps/demos/configs/Angular/config.bundle.js +++ /dev/null @@ -1,89 +0,0 @@ -const bundleConfig = { - bundles: { - 'devextreme.angular.systemjs.js': [ - 'devextreme/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/animation/*', - 'devextreme/core/*', - 'devextreme/core/utils/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/events/*', - 'devextreme/file_management/*', - 'devextreme/framework/*', - 'devextreme/integration/*', - 'devextreme/localization/*', - 'devextreme/localization/globalize/*', - 'devextreme/mobile/*', - 'devextreme/ui/*', - 'devextreme/ui/html_editor/*', - 'devextreme/ui/html_editor/converters/*', - 'devextreme/ui/pivot_grid/*', - 'devextreme/ui/speed_dial_action/*', - 'devextreme/ui/toast/*', - 'devextreme/viz/*', - 'devextreme/viz/vector_map/*', - 'devextreme/common/*', - 'devextreme/common/ai-integration/*', - 'devextreme/common/data/*', - 'devextreme/common/data/odata/*', - 'devextreme/common/export/*', - 'devextreme/common/core/*', - 'devextreme/common/core/animation/*', - 'devextreme/common/core/environment/*', - 'devextreme/common/core/events/*', - 'devextreme/common/core/localization/*', - 'devextreme/common/core/localization/globalize/*', - 'devextreme-angular', - 'devextreme-angular/*', - 'devextreme-angular/common/*', - 'devextreme-angular/common/core/*', - 'devextreme-angular/common/export/*', - 'devextreme-angular/core/*', - 'devextreme-angular/core/tokens/*', - 'devexpress-gantt', - 'devexpress-diagram', - 'rxjs/*', - 'rxjs/operator/*', - 'rxjs/operators/*', - 'rxjs/observable/*', - ], - }, - map: { - 'devextreme.angular.systemjs.js': '../../../../bundles/devextreme.angular.systemjs.js', - 'rxjs': 'npm:rxjs/dist/bundles/rxjs.umd.js', - 'rxjs/operators': 'npm:rxjs/dist/cjs/operators/index.js', - }, - packages: { - 'rxjs': { defaultExtension: 'js' }, - 'rxjs/operators': { defaultExtension: 'js' }, - }, -}; - -// eslint-disable-next-line no-unused-vars -function useBundle() { - System.config(bundleConfig); - - if (window.config) { - [ - 'devextreme', - 'devextreme-angular', - 'devexpress-gantt', - 'devexpress-diagram', - 'rxjs', - ].forEach((pkg) => delete window.config.map[pkg]); - /* - Object.keys(window.config.map).forEach((pkg) => { - if (pkg.startsWith('devextreme-angular/')) { - delete window.config.map[pkg]; - } - }); - */ - } -} - -// useBundle(); -System.config(window.config); -// eslint-disable-next-line no-console -System.import('@angular/compiler').catch(console.error.bind(console)); diff --git a/apps/demos/configs/Angular/config.js b/apps/demos/configs/Angular/config.js deleted file mode 100644 index 94d4906fd2a4..000000000000 --- a/apps/demos/configs/Angular/config.js +++ /dev/null @@ -1,392 +0,0 @@ -// In real applications, you should not transpile code in the browser. -// You can see how to create your own application with Angular and DevExtreme here: -// https://js.devexpress.com/Documentation/Guide/Angular_Components/Getting_Started/Create_a_DevExtreme_Application/ - -const componentNames = [ - 'accordion', - 'action-sheet', - 'autocomplete', - 'bar-gauge', - 'box', - 'bullet', - 'button-group', - 'button', - 'calendar', - 'card-view', - 'chart', - 'chat', - 'check-box', - 'circular-gauge', - 'color-box', - 'context-menu', - 'data-grid', - 'date-box', - 'date-range-box', - 'defer-rendering', - 'diagram', - 'draggable', - 'drawer', - 'drop-down-box', - 'drop-down-button', - 'file-manager', - 'file-uploader', - 'filter-builder', - 'form', - 'funnel', - 'gallery', - 'gantt', - 'html-editor', - 'linear-gauge', - 'list', - 'load-indicator', - 'load-panel', - 'lookup', - 'map', - 'menu', - 'multi-view', - 'nested', - 'number-box', - 'pagination', - 'pie-chart', - 'pivot-grid-field-chooser', - 'pivot-grid', - 'polar-chart', - 'popover', - 'popup', - 'progress-bar', - 'radio-group', - 'range-selector', - 'range-slider', - 'recurrence-editor', - 'resizable', - 'responsive-box', - 'sankey', - 'scheduler', - 'scroll-view', - 'select-box', - 'slider', - 'sortable', - 'sparkline', - 'speech-to-text', - 'speed-dial-action', - 'splitter', - 'stepper', - 'switch', - 'tab-panel', - 'tabs', - 'tag-box', - 'text-area', - 'text-box', - 'tile-view', - 'toast', - 'toolbar', - 'tooltip', - 'tree-list', - 'tree-map', - 'tree-view', - 'validation-group', - 'validation-summary', - 'validator', - 'vector-map', -]; - -window.exports = window.exports || {}; -window.config = { - transpiler: false, - meta: { - '*.ts': { - loader: 'demo-ts-loader', - }, - 'typescript': { - 'exports': 'ts', - }, - 'anti-forgery': { - loader: 'demo-ts-loader', - }, - /** unified */ - 'unified': { - loader: 'demo-ts-loader', - }, - 'remark-parse': { - loader: 'demo-ts-loader', - }, - 'remark-rehype': { - loader: 'demo-ts-loader', - }, - 'remark-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-parse': { - loader: 'demo-ts-loader', - }, - 'rehype-remark': { - loader: 'demo-ts-loader', - }, - 'rehype-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-minify-whitespace': { - loader: 'demo-ts-loader', - }, - /**/ - /** canvg */ - 'canvg': { - loader: 'demo-ts-loader', - }, - /**/ - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': { - 'esModule': true, - }, - /**/ - /** vectormap */ - 'devextreme-dist/js/vectormap-data/*': { - 'esModule': true, - }, - /**/ - 'devextreme/time_zone_utils.js': { - 'esModule': true, - }, - 'devextreme/localization.js': { - 'esModule': true, - }, - 'devextreme/viz/palette.js': { - 'esModule': true, - }, - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': { - 'esModule': true, - }, - /**/ - '@angular/platform-browser-dynamic': { - 'esModule': true, - }, - '@angular/platform-browser': { - 'esModule': true, - }, - '@angular/core': { - 'esModule': true, - }, - '@angular/common': { - 'esModule': true, - }, - '@angular/common/http': { - 'esModule': true, - }, - '@angular/animations': { - 'esModule': true, - }, - '@angular/forms': { - 'esModule': true, - }, - 'openai': { - 'esModule': true, - }, - 'zod': { - 'esModule': true, - }, - 'zod-to-json-schema': { - 'esModule': true, - }, - }, - paths: { - 'npm:': '../../../../node_modules/', - 'bundles:': '../../../../bundles/', - 'externals:': '../../../../bundles/externals/', - 'anti-forgery:': '../../../../shared/anti-forgery/', - 'loaders:': '../../../../shared/loaders/', - }, - map: { - 'anti-forgery': 'anti-forgery:fetch-override.js', - 'demo-ts-loader': 'loaders:demo-ts-loader.js', - 'demo-ts-shared': 'loaders:demo-ts-shared.js', - 'typescript': 'npm:typescript/lib/typescript.js', - 'jszip': 'npm:jszip/dist/jszip.min.js', - - /* @angular */ - '@angular/compiler': 'bundles:@angular/compiler.umd.js', - '@angular/platform-browser-dynamic': 'bundles:@angular/platform-browser-dynamic.umd.js', - '@angular/core': 'bundles:@angular/core.umd.js', - '@angular/core/primitives/signals': 'bundles:@angular/core.primitives.signals.umd.js', - '@angular/core/primitives/di': 'bundles:@angular/core.primitives.di.umd.js', - '@angular/common': 'bundles:@angular/common.umd.js', - '@angular/common/http': 'bundles:@angular/common-http.umd.js', - '@angular/platform-browser': 'bundles:@angular/platform-browser.umd.js', - '@angular/platform-browser/animations': 'bundles:@angular/platform-browser.umd.js', - '@angular/forms': 'bundles:@angular/forms.umd.js', - - /* devextreme */ - 'devextreme': 'npm:devextreme/cjs', - 'devextreme-quill': 'npm:devextreme-quill/dist/dx-quill.min.js', - 'devexpress-diagram': 'npm:devexpress-diagram', - 'devexpress-gantt': 'npm:devexpress-gantt', - - /* devextreme-angular umd maps */ - 'devextreme-angular': 'bundles:devextreme-angular/devextreme-angular.umd.js', - 'devextreme-angular/common/ai-integration': 'bundles:devextreme-angular/devextreme-angular-common-ai-integration.umd.js', - 'devextreme-angular/core': 'bundles:devextreme-angular/devextreme-angular-core.umd.js', - 'devextreme-angular/common/charts': 'bundles:devextreme-angular/devextreme-angular-common-charts.umd.js', - 'devextreme-angular/common/core/animation': 'bundles:devextreme-angular/devextreme-angular-common-core-animation.umd.js', - 'devextreme-angular/common/core/environment': 'bundles:devextreme-angular/devextreme-angular-common-core-environment.umd.js', - 'devextreme-angular/common/core/events': 'bundles:devextreme-angular/devextreme-angular-common-core-events.umd.js', - 'devextreme-angular/common/core/localization': 'bundles:devextreme-angular/devextreme-angular-common-core-localization.umd.js', - 'devextreme-angular/common/core': 'bundles:devextreme-angular/devextreme-angular-common-core.umd.js', - 'devextreme-angular/common/data/custom-store': 'bundles:devextreme-angular/devextreme-angular-common-data-custom-store.umd.js', - 'devextreme-angular/common/data': 'bundles:devextreme-angular/devextreme-angular-common-data.umd.js', - 'devextreme-angular/common/export/excel': 'bundles:devextreme-angular/devextreme-angular-common-export-excel.umd.js', - 'devextreme-angular/common/export/pdf': 'bundles:devextreme-angular/devextreme-angular-common-export-pdf.umd.js', - 'devextreme-angular/common/export': 'bundles:devextreme-angular/devextreme-angular-common-export.umd.js', - 'devextreme-angular/common/grids': 'bundles:devextreme-angular/devextreme-angular-common-grids.umd.js', - 'devextreme-angular/common': 'bundles:devextreme-angular/devextreme-angular-common.umd.js', - 'devextreme-angular/http': 'bundles:devextreme-angular/devextreme-angular-http.umd.js', - 'devextreme-angular/core/tokens': 'bundles:devextreme-angular/devextreme-angular-core-tokens.umd.js', - ...componentNames.reduce((acc, name) => { - acc[`devextreme-angular/ui/${name}`] = `bundles:devextreme-angular/devextreme-angular-ui-${name}.umd.js`; - acc[`devextreme-angular/ui/${name}/nested`] = `bundles:devextreme-angular/devextreme-angular-ui-${name}-nested.umd.js`; - return acc; - }, {}), - - /** unified */ - 'unified': 'externals:unified/unified.bundle.js', - 'remark-parse': 'externals:unified/remark-parse.bundle.js', - 'remark-rehype': 'externals:unified/remark-rehype.bundle.js', - 'remark-stringify': 'externals:unified/remark-stringify.bundle.js', - 'rehype-parse': 'externals:unified/rehype-parse.bundle.js', - 'rehype-remark': 'externals:unified/rehype-remark.bundle.js', - 'rehype-stringify': 'externals:unified/rehype-stringify.bundle.js', - 'rehype-minify-whitespace': 'externals:unified/rehype-minify-whitespace.bundle.js', - /**/ - - /** openai */ - 'openai': 'externals:openai.bundle.js', - /**/ - - 'zod': 'externals:zod.bundle.js', - 'zod-to-json-schema': 'externals:zod-to-json-schema.bundle.js', - - 'tslib': 'npm:tslib/tslib.js', - 'rxjs': 'npm:rxjs/dist/bundles/rxjs.umd.js', - 'rxjs/operators': 'npm:rxjs/dist/cjs/operators/index.js', - - /** signalr */ - '@aspnet/signalr': 'npm:@aspnet/signalr/dist/cjs/index.js', - /**/ - - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': 'npm:devextreme-aspnet-data-nojquery/index.js', - /**/ - - /** globalize */ - 'globalize': 'npm:globalize/dist/globalize', - 'json': 'npm:systemjs-plugin-json/json.js', - 'cldr': 'npm:cldrjs/dist/cldr', - /**/ - - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': 'npm:devextreme-exceljs-fork/dist/dx-exceljs-fork.min.js', - 'file-saver-es': 'npm:file-saver-es/dist/FileSaver.min.js', - /**/ - - /** jspdf */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - /**/ - - /** jspdf&jspdf-autotable */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - 'jspdf-autotable': 'npm:jspdf-autotable/dist/jspdf.plugin.autotable.min.js', - /**/ - - /** devextreme-intl */ - 'json': 'npm:systemjs-plugin-json/json.js', - /**/ - - /** canvg */ - 'canvg': 'externals:canvg.bundle.js', - /**/ - - /** vectormap */ - 'devextreme-dist/js/vectormap-data': 'npm:devextreme-dist/js/vectormap-data', - /**/ - - 'rrule': 'npm:rrule/dist/es5/rrule.js', - 'luxon': 'npm:luxon/build/global/luxon.min.js', - 'es6-object-assign': 'npm:es6-object-assign', - - 'inferno': 'npm:inferno/dist/inferno.min.js', - 'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js', - 'inferno-create-element': 'npm:inferno-create-element/dist/inferno-create-element.min.js', - 'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js', - 'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js', - 'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js', - 'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js', - 'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js', - '@preact/signals-core': 'npm:@preact/signals-core/dist/signals-core.min.js', - - // Prettier - 'prettier/standalone': 'npm:prettier/standalone.js', - 'prettier/parser-html': 'npm:prettier/parser-html.js', - - 'zone.js': 'npm:zone.js/bundles/zone.umd.js', - }, - packages: { - 'app': { - main: './app.component.ts', - defaultExtension: 'ts', - }, - 'devextreme': { - defaultExtension: 'js', - }, - 'devextreme/events/utils': { - main: 'index', - }, - 'devextreme/common/core/events/utils': { - main: 'index', - }, - 'devextreme/events': { - main: 'index', - }/** globalize */, - 'globalize': { - main: '../globalize.js', - defaultExtension: 'js', - }, - 'cldr': { - main: '../cldr.js', - defaultExtension: 'js', - }/**/, - 'es6-object-assign': { - main: './index.js', - defaultExtension: 'js', - }, - 'rxjs': { - defaultExtension: 'js', - }, - 'rxjs/operators': { - defaultExtension: 'js', - }, - }, - packageConfigPaths: [ - 'npm:@devextreme/*/package.json', - 'npm:rxjs/package.json', - 'npm:rxjs/operators/package.json', - 'npm:devexpress-diagram/package.json', - 'npm:devexpress-gantt/package.json', - - /** signalr */ - 'npm:@aspnet/*/package.json', - /**/ - ], -}; - -window.process = { - env: { - NODE_ENV: 'production', - }, -}; - -System.config(window.config); -// eslint-disable-next-line no-console -System.import('@angular/compiler').catch(console.error.bind(console)); -// eslint-disable-next-line -const useTgzInCSB = ['openai']; diff --git a/apps/demos/configs/Angular/tsconfig.json b/apps/demos/configs/Angular/tsconfig.json deleted file mode 100644 index 628a58964c63..000000000000 --- a/apps/demos/configs/Angular/tsconfig.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "experimentalDecorators": true, - "esModuleInterop": true, - "ignoreDeprecations": "6.0", - "moduleResolution": "node", - "skipLibCheck": true, - "baseUrl": "./", - "paths": { - "@angular/*": [ "../../../../node_modules/@angular/*"] - }, - }, - "include": ["**/*", "../../../../utils/create-bundles/Angular/polyfill.ts"] -} diff --git a/apps/demos/configs/React/config.bundle.js b/apps/demos/configs/React/config.bundle.js deleted file mode 100644 index 21ba8dc0190c..000000000000 --- a/apps/demos/configs/React/config.bundle.js +++ /dev/null @@ -1,78 +0,0 @@ -const bundleConfig = { - bundles: { - 'devextreme.react.systemjs.js': [ - 'devextreme/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/animation/*', - 'devextreme/core/*', - 'devextreme/core/utils/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/events/*', - 'devextreme/file_management/*', - 'devextreme/framework/*', - 'devextreme/integration/*', - 'devextreme/localization/*', - 'devextreme/localization/globalize/*', - 'devextreme/mobile/*', - 'devextreme/ui/*', - 'devextreme/ui/html_editor/*', - 'devextreme/ui/html_editor/converters/*', - 'devextreme/ui/pivot_grid/*', - 'devextreme/ui/speed_dial_action/*', - 'devextreme/ui/toast/*', - 'devextreme/viz/*', - 'devextreme/viz/vector_map/*', - 'devextreme/common/*', - 'devextreme/common/ai-integration/*', - 'devextreme/common/data/*', - 'devextreme/common/data/odata/*', - 'devextreme/common/export/*', - 'devextreme/common/core/*', - 'devextreme/common/core/animation/*', - 'devextreme/common/core/environment/*', - 'devextreme/common/core/events/*', - 'devextreme/common/core/localization/*', - 'devextreme/common/core/localization/globalize/*', - 'devextreme-react/*', - 'devextreme-react/common/*', - 'devextreme-react/common/core/*', - 'devextreme-react/common/export/*', - 'devextreme-react/core/*', - 'devexpress-gantt', - 'devexpress-diagram', - 'react/*', - 'react-dom/*', - ], - }, - map: { - 'devextreme.react.systemjs.js': '../../../../bundles/devextreme.react.systemjs.js', - 'devextreme/localization/messages': 'npm:devextreme/localization/messages', - }, - packages: { - 'react': { - defaultExtension: 'js', - main: '../../../../../node_modules/react/umd/react.development.js', - }, - 'react-dom': { - defaultExtension: 'js', - main: '../../../../../node_modules/react-dom/umd/react-dom.development.js', - }, - }, -}; - -System.config(bundleConfig); - -if (window.config) { - [ - 'devextreme', - 'devextreme-react', - 'devexpress-gantt', - 'devexpress-diagram', - 'react', - 'react-dom', - ].forEach((pkg) => delete window.config.map[pkg]); - - System.config(window.config); -} diff --git a/apps/demos/configs/React/config.js b/apps/demos/configs/React/config.js deleted file mode 100644 index c352444c615c..000000000000 --- a/apps/demos/configs/React/config.js +++ /dev/null @@ -1,257 +0,0 @@ -window.exports = window.exports || {}; -window.config = { - transpiler: false, - meta: { - '*.ts': { - loader: 'demo-ts-loader', - }, - '*.tsx': { - loader: 'demo-ts-loader', - typescriptOptions: { - jsx: 'react', - }, - }, - 'typescript': { - 'exports': 'ts', - }, - 'anti-forgery': { - loader: 'demo-ts-loader', - }, - /** unified */ - 'unified': { - loader: 'demo-ts-loader', - }, - 'remark-parse': { - loader: 'demo-ts-loader', - }, - 'remark-rehype': { - loader: 'demo-ts-loader', - }, - 'remark-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-parse': { - loader: 'demo-ts-loader', - }, - 'rehype-remark': { - loader: 'demo-ts-loader', - }, - 'rehype-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-minify-whitespace': { - loader: 'demo-ts-loader', - }, - /**/ - /** canvg */ - 'canvg': { - loader: 'demo-ts-loader', - }, - /**/ - 'react': { - 'esModule': true, - }, - 'devextreme/time_zone_utils.js': { - 'esModule': true, - }, - 'devextreme/localization.js': { - 'esModule': true, - }, - 'devextreme/viz/palette.js': { - 'esModule': true, - }, - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': { - 'esModule': true, - }, - /**/ - /** vectormap */ - 'devextreme-dist/js/vectormap-data/*': { - 'esModule': true, - }, - /**/ - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': { - 'esModule': true, - }, - /**/ - 'openai': { - 'esModule': true, - }, - 'zod': { - 'esModule': true, - }, - 'zod-to-json-schema': { - 'esModule': true, - }, - }, - paths: { - 'npm:': '../../../../node_modules/', - 'bundles:': '../../../../bundles/', - 'externals:': '../../../../bundles/externals/', - 'anti-forgery:': '../../../../shared/anti-forgery/', - 'loaders:': '../../../../shared/loaders/', - }, - defaultExtension: 'js', - map: { - 'anti-forgery': 'anti-forgery:fetch-override.js', - 'demo-ts-loader': 'loaders:demo-ts-loader.js', - 'demo-ts-shared': 'loaders:demo-ts-shared.js', - 'typescript': 'npm:typescript/lib/typescript.js', - 'jszip': 'npm:jszip/dist/jszip.min.js', - 'react': 'npm:react/umd/react.development.js', - 'react-dom': 'npm:react-dom/umd/react-dom.development.js', - 'prop-types': 'npm:prop-types/prop-types.js', - - /** signalr */ - '@aspnet/signalr': 'npm:@aspnet/signalr/dist/cjs', - 'tslib': 'npm:tslib/tslib.js', - /**/ - - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': 'npm:devextreme-aspnet-data-nojquery/index.js', - /**/ - - /** html-react-parser */ - 'html-react-parser': 'npm:html-react-parser/dist/html-react-parser.min.js', - /**/ - - /** globalize */ - 'globalize': 'npm:globalize/dist/globalize', - 'json': 'npm:systemjs-plugin-json/json.js', - 'cldr': 'npm:cldrjs/dist/cldr', - /**/ - - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': 'npm:devextreme-exceljs-fork/dist/dx-exceljs-fork.min.js', - 'file-saver-es': 'npm:file-saver-es/dist/FileSaver.min.js', - /**/ - - /** jspdf */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - /**/ - - /** jspdf&jspdf-autotable */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - 'jspdf-autotable': 'npm:jspdf-autotable/dist/jspdf.plugin.autotable.min.js', - /**/ - - /** devextreme-intl */ - 'json': 'npm:systemjs-plugin-json/json.js', - /**/ - - /** canvg */ - 'canvg': 'externals:canvg.bundle.js', - /**/ - - /** whatwg-fetch */ - 'whatwg-fetch': 'npm:whatwg-fetch/fetch.js', - /**/ - - /** vectormap */ - 'devextreme-dist/js/vectormap-data': 'npm:devextreme-dist/js/vectormap-data', - /**/ - - 'rrule': 'npm:rrule/dist/es5/rrule.js', - 'luxon': 'npm:luxon/build/global/luxon.min.js', - 'es6-object-assign': 'npm:es6-object-assign', - - 'devextreme': 'npm:devextreme/cjs', - 'devextreme-react': 'npm:devextreme-react/cjs', - - /** unified */ - 'unified': 'externals:unified/unified.bundle.js', - 'remark-parse': 'externals:unified/remark-parse.bundle.js', - 'remark-rehype': 'externals:unified/remark-rehype.bundle.js', - 'remark-stringify': 'externals:unified/remark-stringify.bundle.js', - 'rehype-parse': 'externals:unified/rehype-parse.bundle.js', - 'rehype-remark': 'externals:unified/rehype-remark.bundle.js', - 'rehype-stringify': 'externals:unified/rehype-stringify.bundle.js', - 'rehype-minify-whitespace': 'externals:unified/rehype-minify-whitespace.bundle.js', - /**/ - - /** openai */ - 'openai': 'externals:openai.bundle.js', - /**/ - - 'zod': 'externals:zod.bundle.js', - 'zod-to-json-schema': 'externals:zod-to-json-schema.bundle.js', - - 'devextreme-quill': 'npm:devextreme-quill/dist/dx-quill.min.js', - 'devexpress-diagram': 'npm:devexpress-diagram/dist/dx-diagram.js', - 'devexpress-gantt': 'npm:devexpress-gantt/dist/dx-gantt.js', - 'inferno': 'npm:inferno/dist/inferno.min.js', - 'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js', - 'inferno-create-element': 'npm:inferno-create-element/dist/inferno-create-element.min.js', - 'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js', - 'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js', - 'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js', - 'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js', - 'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js', - '@preact/signals-core': 'npm:@preact/signals-core/dist/signals-core.min.js', - 'devextreme-cldr-data': 'npm:devextreme-cldr-data', - - // Prettier - 'prettier/standalone': 'npm:prettier/standalone.js', - 'prettier/parser-html': 'npm:prettier/parser-html.js', - }, - packages: { - 'devextreme': { - defaultExtension: 'js', - }, - 'devextreme-react': { - main: 'index.js', - }, - 'devextreme-react/common': { - main: 'index.js', - }, - 'devextreme/events/utils': { - main: 'index', - }, - 'devextreme/common/core/events/utils': { - main: 'index', - }, - 'devextreme/localization/messages': { - format: 'json', - defaultExtension: 'json', - }, - 'devextreme/events': { - main: 'index', - }/** globalize */, - 'devextreme-cldr-data': { - format: 'json', - defaultExtension: 'json', - }/**//** globalize */, - 'globalize': { - main: '../globalize.js', - defaultExtension: 'js', - }, - 'cldr': { - main: '../cldr.js', - defaultExtension: 'js', - }/**//** signalr */, - '@aspnet/signalr': { - main: 'index.js', - defaultExtension: 'js', - }/**/, - 'es6-object-assign': { - main: './index.js', - defaultExtension: 'js', - }, - }, - packageConfigPaths: [ - 'npm:@devextreme/*/package.json', - ], -}; - -window.process = { - env: { - NODE_ENV: 'production', - }, -}; - -System.config(window.config); -// eslint-disable-next-line -const useTgzInCSB = ['openai']; diff --git a/apps/demos/configs/React/tsconfig.json b/apps/demos/configs/React/tsconfig.json deleted file mode 100644 index 3b8ad066e0ef..000000000000 --- a/apps/demos/configs/React/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2015", - "jsx": "react", - "moduleResolution": "bundler", - "esModuleInterop": true, - "allowImportingTsExtensions": true, - "noEmit": true - }, -} diff --git a/apps/demos/configs/ReactJs/config.bundle.js b/apps/demos/configs/ReactJs/config.bundle.js deleted file mode 100644 index 21ba8dc0190c..000000000000 --- a/apps/demos/configs/ReactJs/config.bundle.js +++ /dev/null @@ -1,78 +0,0 @@ -const bundleConfig = { - bundles: { - 'devextreme.react.systemjs.js': [ - 'devextreme/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/animation/*', - 'devextreme/core/*', - 'devextreme/core/utils/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/events/*', - 'devextreme/file_management/*', - 'devextreme/framework/*', - 'devextreme/integration/*', - 'devextreme/localization/*', - 'devextreme/localization/globalize/*', - 'devextreme/mobile/*', - 'devextreme/ui/*', - 'devextreme/ui/html_editor/*', - 'devextreme/ui/html_editor/converters/*', - 'devextreme/ui/pivot_grid/*', - 'devextreme/ui/speed_dial_action/*', - 'devextreme/ui/toast/*', - 'devextreme/viz/*', - 'devextreme/viz/vector_map/*', - 'devextreme/common/*', - 'devextreme/common/ai-integration/*', - 'devextreme/common/data/*', - 'devextreme/common/data/odata/*', - 'devextreme/common/export/*', - 'devextreme/common/core/*', - 'devextreme/common/core/animation/*', - 'devextreme/common/core/environment/*', - 'devextreme/common/core/events/*', - 'devextreme/common/core/localization/*', - 'devextreme/common/core/localization/globalize/*', - 'devextreme-react/*', - 'devextreme-react/common/*', - 'devextreme-react/common/core/*', - 'devextreme-react/common/export/*', - 'devextreme-react/core/*', - 'devexpress-gantt', - 'devexpress-diagram', - 'react/*', - 'react-dom/*', - ], - }, - map: { - 'devextreme.react.systemjs.js': '../../../../bundles/devextreme.react.systemjs.js', - 'devextreme/localization/messages': 'npm:devextreme/localization/messages', - }, - packages: { - 'react': { - defaultExtension: 'js', - main: '../../../../../node_modules/react/umd/react.development.js', - }, - 'react-dom': { - defaultExtension: 'js', - main: '../../../../../node_modules/react-dom/umd/react-dom.development.js', - }, - }, -}; - -System.config(bundleConfig); - -if (window.config) { - [ - 'devextreme', - 'devextreme-react', - 'devexpress-gantt', - 'devexpress-diagram', - 'react', - 'react-dom', - ].forEach((pkg) => delete window.config.map[pkg]); - - System.config(window.config); -} diff --git a/apps/demos/configs/ReactJs/config.js b/apps/demos/configs/ReactJs/config.js deleted file mode 100644 index 5ecc285c972b..000000000000 --- a/apps/demos/configs/ReactJs/config.js +++ /dev/null @@ -1,273 +0,0 @@ -window.exports = window.exports || {}; -window.config = { - transpiler: false, - meta: { - 'demo-ts-loader': { - loader: false, - }, - 'demo-ts-shared': { - loader: false, - }, - 'typescript': { - exports: 'ts', - loader: false, - }, - 'anti-forgery': { - loader: 'demo-ts-loader', - }, - /** unified */ - 'unified': { - loader: 'demo-ts-loader', - }, - 'remark-parse': { - loader: 'demo-ts-loader', - }, - 'remark-rehype': { - loader: 'demo-ts-loader', - }, - 'remark-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-parse': { - loader: 'demo-ts-loader', - }, - 'rehype-remark': { - loader: 'demo-ts-loader', - }, - 'rehype-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-minify-whitespace': { - loader: 'demo-ts-loader', - }, - /**/ - /** canvg */ - 'canvg': { - loader: 'demo-ts-loader', - }, - /**/ - 'react': { - loader: false, - esModule: true, - }, - 'react-dom': { - loader: false, - esModule: true, - }, - 'prop-types': { - loader: false, - }, - 'devextreme/time_zone_utils.js': { - 'esModule': true, - }, - 'devextreme/localization.js': { - 'esModule': true, - }, - 'devextreme/viz/palette.js': { - 'esModule': true, - }, - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': { - 'esModule': true, - }, - /**/ - /** vectormap */ - 'devextreme-dist/js/vectormap-data/*': { - 'esModule': true, - }, - /**/ - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': { - 'esModule': true, - }, - /**/ - 'openai': { - 'esModule': true, - }, - 'zod': { - 'esModule': true, - }, - 'zod-to-json-schema': { - 'esModule': true, - }, - }, - paths: { - 'npm:': '../../../../node_modules/', - 'bundles:': '../../../../bundles/', - 'externals:': '../../../../bundles/externals/', - 'anti-forgery:': '../../../../shared/anti-forgery/', - 'loaders:': '../../../../shared/loaders/', - }, - defaultExtension: 'js', - map: { - 'anti-forgery': 'anti-forgery:fetch-override.js', - 'demo-ts-loader': 'loaders:demo-ts-loader.js', - 'demo-ts-shared': 'loaders:demo-ts-shared.js', - 'typescript': 'npm:typescript/lib/typescript.js', - 'jszip': 'npm:jszip/dist/jszip.min.js', - 'react': 'npm:react/umd/react.development.js', - 'react-dom': 'npm:react-dom/umd/react-dom.development.js', - 'prop-types': 'npm:prop-types/prop-types.js', - - /** signalr */ - '@aspnet/signalr': 'npm:@aspnet/signalr/dist/cjs', - 'tslib': 'npm:tslib/tslib.js', - /**/ - - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': 'npm:devextreme-aspnet-data-nojquery/index.js', - /**/ - - /** html-react-parser */ - 'html-react-parser': 'npm:html-react-parser/dist/html-react-parser.min.js', - /**/ - - /** globalize */ - 'globalize': 'npm:globalize/dist/globalize', - 'json': 'npm:systemjs-plugin-json/json.js', - 'cldr': 'npm:cldrjs/dist/cldr', - /**/ - - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': 'npm:devextreme-exceljs-fork/dist/dx-exceljs-fork.min.js', - 'file-saver-es': 'npm:file-saver-es/dist/FileSaver.min.js', - /**/ - - /** jspdf */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - /**/ - - /** jspdf&jspdf-autotable */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - 'jspdf-autotable': 'npm:jspdf-autotable/dist/jspdf.plugin.autotable.min.js', - /**/ - - /** devextreme-intl */ - 'json': 'npm:systemjs-plugin-json/json.js', - /**/ - - /** canvg */ - 'canvg': 'externals:canvg.bundle.js', - /**/ - - /** whatwg-fetch */ - 'whatwg-fetch': 'npm:whatwg-fetch/fetch.js', - /**/ - - /** vectormap */ - 'devextreme-dist/js/vectormap-data': 'npm:devextreme-dist/js/vectormap-data', - /**/ - - 'rrule': 'npm:rrule/dist/es5/rrule.js', - 'luxon': 'npm:luxon/build/global/luxon.min.js', - 'es6-object-assign': 'npm:es6-object-assign', - - 'devextreme': 'npm:devextreme/cjs', - 'devextreme-react': 'npm:devextreme-react/cjs', - - /** unified */ - 'unified': 'externals:unified/unified.bundle.js', - 'remark-parse': 'externals:unified/remark-parse.bundle.js', - 'remark-rehype': 'externals:unified/remark-rehype.bundle.js', - 'remark-stringify': 'externals:unified/remark-stringify.bundle.js', - 'rehype-parse': 'externals:unified/rehype-parse.bundle.js', - 'rehype-remark': 'externals:unified/rehype-remark.bundle.js', - 'rehype-stringify': 'externals:unified/rehype-stringify.bundle.js', - 'rehype-minify-whitespace': 'externals:unified/rehype-minify-whitespace.bundle.js', - /**/ - - /** openai */ - 'openai': 'externals:openai.bundle.js', - /**/ - - 'zod': 'externals:zod.bundle.js', - 'zod-to-json-schema': 'externals:zod-to-json-schema.bundle.js', - - 'devextreme-quill': 'npm:devextreme-quill/dist/dx-quill.min.js', - 'devexpress-diagram': 'npm:devexpress-diagram/dist/dx-diagram.js', - 'devexpress-gantt': 'npm:devexpress-gantt/dist/dx-gantt.js', - 'inferno': 'npm:inferno/dist/inferno.min.js', - 'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js', - 'inferno-create-element': 'npm:inferno-create-element/dist/inferno-create-element.min.js', - 'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js', - 'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js', - 'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js', - 'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js', - 'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js', - '@preact/signals-core': 'npm:@preact/signals-core/dist/signals-core.min.js', - 'devextreme-cldr-data': 'npm:devextreme-cldr-data', - - // Prettier - 'prettier/standalone': 'npm:prettier/standalone.js', - 'prettier/parser-html': 'npm:prettier/parser-html.js', - }, - packages: { - '.': { - meta: { - '*.js': { - loader: 'demo-ts-loader', - typescriptOptions: { - jsx: 'react', - }, - }, - }, - }, - 'devextreme': { - defaultExtension: 'js', - }, - 'devextreme-react': { - main: 'index.js', - }, - 'devextreme-react/common': { - main: 'index.js', - }, - 'devextreme/events/utils': { - main: 'index', - }, - 'devextreme/common/core/events/utils': { - main: 'index', - }, - 'devextreme/localization/messages': { - format: 'json', - defaultExtension: 'json', - }, - 'devextreme/events': { - main: 'index', - }/** globalize */, - 'devextreme-cldr-data': { - format: 'json', - defaultExtension: 'json', - }/**//** globalize */, - 'globalize': { - main: '../globalize.js', - defaultExtension: 'js', - }, - 'cldr': { - main: '../cldr.js', - defaultExtension: 'js', - }/**//** signalr */, - '@aspnet/signalr': { - main: 'index.js', - defaultExtension: 'js', - }/**/, - 'es6-object-assign': { - main: './index.js', - defaultExtension: 'js', - }, - }, - packageConfigPaths: [ - 'npm:@devextreme/*/package.json', - ], -}; - -window.process = { - env: { - NODE_ENV: 'production', - }, -}; - -System.config(window.config); -// eslint-disable-next-line -const useTgzInCSB = ['openai']; diff --git a/apps/demos/configs/Vue/config.bundle.js b/apps/demos/configs/Vue/config.bundle.js deleted file mode 100644 index c0ae2b0b0be4..000000000000 --- a/apps/demos/configs/Vue/config.bundle.js +++ /dev/null @@ -1,63 +0,0 @@ -const bundleConfig = { - bundles: { - 'devextreme.vue.systemjs.js': [ - 'devextreme/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/animation/*', - 'devextreme/core/*', - 'devextreme/core/utils/*', - 'devextreme/data/*', - 'devextreme/data/odata/*', - 'devextreme/events/*', - 'devextreme/file_management/*', - 'devextreme/framework/*', - 'devextreme/integration/*', - 'devextreme/localization/*', - 'devextreme/localization/globalize/*', - 'devextreme/mobile/*', - 'devextreme/ui/*', - 'devextreme/ui/html_editor/*', - 'devextreme/ui/html_editor/converters/*', - 'devextreme/ui/pivot_grid/*', - 'devextreme/ui/speed_dial_action/*', - 'devextreme/ui/toast/*', - 'devextreme/viz/*', - 'devextreme/viz/vector_map/*', - 'devextreme/common/*', - 'devextreme/common/ai-integration/*', - 'devextreme/common/data/*', - 'devextreme/common/data/odata/*', - 'devextreme/common/export/*', - 'devextreme/common/core/*', - 'devextreme/common/core/animation/*', - 'devextreme/common/core/environment/*', - 'devextreme/common/core/events/*', - 'devextreme/common/core/localization/*', - 'devextreme/common/core/localization/globalize/*', - 'devextreme-vue/*', - 'devextreme-vue/common/*', - 'devextreme-vue/common/core/*', - 'devextreme-vue/common/export/*', - 'devextreme-vue/core/*', - 'devexpress-gantt', - 'devexpress-diagram', - ], - }, - map: { - 'devextreme.vue.systemjs.js': '../../../../bundles/devextreme.vue.systemjs.js', - }, -}; - -System.config(bundleConfig); - -if (window.config) { - [ - 'devextreme', - 'devextreme-vue', - 'devexpress-gantt', - 'devexpress-diagram', - ].forEach((pkg) => delete window.config.map[pkg]); - - System.config(window.config); -} diff --git a/apps/demos/configs/Vue/config.js b/apps/demos/configs/Vue/config.js deleted file mode 100644 index 22b3bb46ca5f..000000000000 --- a/apps/demos/configs/Vue/config.js +++ /dev/null @@ -1,263 +0,0 @@ -window.exports = window.exports || {}; -window.config = { - transpiler: false, - meta: { - '*.vue': { - loader: 'vue-loader', - }, - '*.ts': { - loader: 'demo-ts-loader', - }, - '*.svg': { - loader: 'svg-loader', - }, - 'typescript': { - 'exports': 'ts', - }, - 'vue': { - format: 'global', - exports: 'Vue', - esModule: true, - }, - 'vuex': { - format: 'global', - exports: 'Vuex', - esModule: true, - }, - 'devextreme/time_zone_utils.js': { - 'esModule': true, - }, - 'devextreme/localization.js': { - 'esModule': true, - }, - 'devextreme/viz/palette.js': { - 'esModule': true, - }, - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': { - 'esModule': true, - }, - /**/ - /** vectormap */ - 'devextreme-dist/js/vectormap-data/*': { - 'esModule': true, - }, - /**/ - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': { - 'esModule': true, - }, - /**/ - 'openai': { - 'esModule': true, - }, - 'zod': { - 'esModule': true, - }, - 'zod-to-json-schema': { - 'esModule': true, - }, - 'anti-forgery': { - loader: 'demo-ts-loader', - }, - /** unified */ - 'unified': { - loader: 'demo-ts-loader', - }, - 'remark-parse': { - loader: 'demo-ts-loader', - }, - 'remark-rehype': { - loader: 'demo-ts-loader', - }, - 'remark-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-parse': { - loader: 'demo-ts-loader', - }, - 'rehype-remark': { - loader: 'demo-ts-loader', - }, - 'rehype-stringify': { - loader: 'demo-ts-loader', - }, - 'rehype-minify-whitespace': { - loader: 'demo-ts-loader', - }, - /**/ - /** canvg */ - 'canvg': { - loader: 'demo-ts-loader', - }, - /**/ - }, - paths: { - 'project:': '../../../../', - 'npm:': '../../../../node_modules/', - 'bundles:': '../../../../bundles/', - 'externals:': '../../../../bundles/externals/', - 'anti-forgery:': '../../../../shared/anti-forgery/', - 'loaders:': '../../../../shared/loaders/', - }, - map: { - 'anti-forgery': 'anti-forgery:fetch-override.js', - 'vue': 'npm:vue/dist/vue.global.js', - '@vue/shared': 'npm:@vue/shared/dist/shared.cjs.prod.js', - 'dx-systemjs-vue-browser': 'npm:dx-systemjs-vue-browser/index.js', - 'demo-ts-loader': 'loaders:demo-ts-loader.js', - 'demo-ts-shared': 'loaders:demo-ts-shared.js', - 'vue-loader': 'loaders:demo-vue-loader.js', - 'typescript': 'npm:typescript/lib/typescript.js', - 'jszip': 'npm:jszip/dist/jszip.min.js', - 'svg-loader': 'project:utils/svg-loader.js', - - /** signalr */ - '@aspnet/signalr': 'npm:@aspnet/signalr/dist/cjs', - 'tslib': 'npm:tslib/tslib.js', - /**/ - - /** devextreme-aspnet-data-nojquery */ - 'devextreme-aspnet-data-nojquery': 'npm:devextreme-aspnet-data-nojquery/index.js', - /**/ - - /** globalize */ - 'globalize': 'npm:globalize/dist/globalize', - 'json': 'npm:systemjs-plugin-json/json.js', - 'cldr': 'npm:cldrjs/dist/cldr', - /**/ - - /** devextreme-exceljs-fork&file-saver */ - 'devextreme-exceljs-fork': 'npm:devextreme-exceljs-fork/dist/dx-exceljs-fork.min.js', - 'file-saver-es': 'npm:file-saver-es/dist/FileSaver.min.js', - /**/ - - /** jspdf */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - /**/ - - /** jspdf&jspdf-autotable */ - 'fflate': 'npm:fflate/esm/browser.js', - 'jspdf': 'npm:jspdf/dist/jspdf.umd.min.js', - 'jspdf-autotable': 'npm:jspdf-autotable/dist/jspdf.plugin.autotable.min.js', - /**/ - - /** devextreme-intl */ - 'json': 'npm:systemjs-plugin-json/json.js', - /**/ - - /** canvg */ - 'canvg': 'externals:canvg.bundle.js', - /**/ - - /** whatwg-fetch */ - 'whatwg-fetch': 'npm:whatwg-fetch/fetch.js', - /**/ - - /** vectormap */ - 'devextreme-dist/js/vectormap-data': 'npm:devextreme-dist/js/vectormap-data', - /**/ - - 'mitt': 'npm:mitt/dist/mitt.umd.js', - - /** vuex */ - 'vuex': 'npm:vuex/dist/vuex.global.js', - /**/ - - 'rrule': 'npm:rrule/dist/es5/rrule.js', - 'luxon': 'npm:luxon/build/global/luxon.min.js', - 'es6-object-assign': 'npm:es6-object-assign', - - 'devextreme': 'npm:devextreme/cjs', - 'devextreme-vue': 'npm:devextreme-vue/cjs', - - /** unified */ - 'unified': 'externals:unified/unified.bundle.js', - 'remark-parse': 'externals:unified/remark-parse.bundle.js', - 'remark-rehype': 'externals:unified/remark-rehype.bundle.js', - 'remark-stringify': 'externals:unified/remark-stringify.bundle.js', - 'rehype-parse': 'externals:unified/rehype-parse.bundle.js', - 'rehype-remark': 'externals:unified/rehype-remark.bundle.js', - 'rehype-stringify': 'externals:unified/rehype-stringify.bundle.js', - 'rehype-minify-whitespace': 'externals:unified/rehype-minify-whitespace.bundle.js', - /**/ - - /** openai */ - 'openai': 'externals:openai.bundle.js', - /**/ - - 'zod': 'externals:zod.bundle.js', - 'zod-to-json-schema': 'externals:zod-to-json-schema.bundle.js', - - 'devextreme-quill': 'npm:devextreme-quill/dist/dx-quill.min.js', - 'devexpress-diagram': 'npm:devexpress-diagram/dist/dx-diagram.js', - 'devexpress-gantt': 'npm:devexpress-gantt/dist/dx-gantt.js', - 'inferno': 'npm:inferno/dist/inferno.min.js', - 'inferno-compat': 'npm:inferno-compat/dist/inferno-compat.min.js', - 'inferno-create-element': 'npm:inferno-create-element/dist/inferno-create-element.min.js', - 'inferno-dom': 'npm:inferno-dom/dist/inferno-dom.min.js', - 'inferno-hydrate': 'npm:inferno-hydrate/dist/inferno-hydrate.min.js', - 'inferno-clone-vnode': 'npm:inferno-clone-vnode/dist/inferno-clone-vnode.min.js', - 'inferno-create-class': 'npm:inferno-create-class/dist/inferno-create-class.min.js', - 'inferno-extras': 'npm:inferno-extras/dist/inferno-extras.min.js', - '@preact/signals-core': 'npm:@preact/signals-core/dist/signals-core.min.js', - - // Prettier - 'prettier/standalone': 'npm:prettier/standalone.js', - 'prettier/parser-html': 'npm:prettier/parser-html.js', - }, - packages: { - 'devextreme-vue': { - main: 'index.js', - }, - 'devextreme-vue/common': { - main: 'index.js', - }, - 'devextreme': { - defaultExtension: 'js', - }, - 'devextreme/events/utils': { - main: 'index', - }, - 'devextreme/common/core/events/utils': { - main: 'index', - }, - 'devextreme/events': { - main: 'index', - }/** globalize */, - 'devextreme-cldr-data': { - format: 'json', - defaultExtension: 'json', - }, - 'globalize': { - main: '../globalize.js', - defaultExtension: 'js', - }, - 'cldr': { - main: '../cldr.js', - defaultExtension: 'js', - }/**//** signalr */, - '@aspnet/signalr': { - main: 'index.js', - defaultExtension: 'js', - }/**/, - 'es6-object-assign': { - main: './index.js', - defaultExtension: 'js', - }, - }, - packageConfigPaths: [ - 'npm:@devextreme/*/package.json', - ], -}; - -window.process = { - env: { - NODE_ENV: 'production', - }, -}; - -System.config(window.config); -// eslint-disable-next-line -const useTgzInCSB = ['openai']; diff --git a/apps/demos/configs/Vue/tsconfig.json b/apps/demos/configs/Vue/tsconfig.json deleted file mode 100644 index 10baa560d09a..000000000000 --- a/apps/demos/configs/Vue/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2023", - "lib": ["es2023"], - "experimentalDecorators": true, - "esModuleInterop": true, - "moduleResolution": "node", - "ignoreDeprecations": "6.0" - } -} diff --git a/apps/demos/index.html b/apps/demos/index.html index bf889bd6df05..150587b60508 100644 --- a/apps/demos/index.html +++ b/apps/demos/index.html @@ -81,7 +81,7 @@ .filter((s) => s !== ""); const selectedData = treeList?.getSelectedRowsData("leavesOnly"); - if (selectedData?.length) { + if (selectedData?.length && selectedData[0].Widget) { pathParts[1] = selectedData[0].Widget; pathParts[2] = selectedData[0].Name; } @@ -132,7 +132,7 @@ item.Groups.forEach(processDataSourceItem); } - item.key = (!item.Widget ? Math.random() : item.Widget) + item.Name; + item.key = (item.TopLevel ? "TopLevel/" : "") + (!item.Widget ? Math.random() : item.Widget) + item.Name; return item; }; diff --git a/apps/demos/menuMeta.json b/apps/demos/menuMeta.json index 56197dc27873..0f6951a5918a 100644 --- a/apps/demos/menuMeta.json +++ b/apps/demos/menuMeta.json @@ -265,8 +265,7 @@ ], "MvcDocUrl": "https://docs.devexpress.com/DevExtremeAspNetMvc/400704/concepts/data-binding", "NetCoreDocUrl": "https://docs.devexpress.com/AspNetCore/400575/concepts/devextreme-based-controls/data-binding", - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" }, { "Title": "SignalR Service", @@ -469,8 +468,7 @@ "/Models/SampleData/CustomEditorsTasks.cs", "/Scripts/data/statuses.js" ], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" }, { "Title": "Data Validation", @@ -486,8 +484,7 @@ "MvcDocUrl": "https://docs.devexpress.com/DevExtremeAspNetMvc/400705/concepts/client-side-data-validation#overview", "NetCoreDocUrl": "https://docs.devexpress.com/AspNetCore/400576/concepts/devextreme-based-controls/client-side-data-validation#overview", "DemoType": "Web", - "Modules": "devextreme-aspnet-data-nojquery", - "DisableExternalEditor": true + "Modules": "devextreme-aspnet-data-nojquery" }, { "Title": "Cascading Lookups", @@ -524,8 +521,7 @@ "BackendFiles": [ "DataGridCollaborativeEditingController.cs", "DataGridCollaborativeEditingHub.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Remote CRUD Operations", @@ -560,8 +556,7 @@ "BackendFiles": [ "DataGridBatchUpdateWebApiController.cs", "InMemoryNorthwindContext.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Edit State Management", @@ -585,8 +580,7 @@ "NetCoreDescription": "", "MvcAdditionalFiles": [], "Modules": "devextreme-aspnet-data-nojquery", - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -1338,8 +1332,7 @@ ], "MvcDocUrl": "https://docs.devexpress.com/DevExtremeAspNetMvc/400704/concepts/data-binding", "NetCoreDocUrl": "https://docs.devexpress.com/AspNetCore/400575/concepts/devextreme-based-controls/data-binding", - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -1714,8 +1707,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -1789,8 +1781,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -3564,8 +3555,7 @@ "BackendFiles": [ "DiagramEmployeesController.cs", "InMemoryEmployeesDataContext.cs" - ], - "DisableExternalEditor": true + ] } ] }, @@ -3768,8 +3758,7 @@ "SchedulerDataController.cs", "InMemoryAppointmentsDataContext" ], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" }, { "Title": "SignalR Service", @@ -3787,8 +3776,7 @@ "BackendFiles": [ "SchedulerSignalRController.cs", "SchedulerSignalRHub.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Google Calendar Integration", @@ -5507,8 +5495,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Validation", @@ -5517,8 +5504,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Chunk Upload", @@ -5536,8 +5522,7 @@ "Title": "Custom Drop Zone", "Name": "CustomDropzone", "DocUrl": "", - "Widget": "FileUploader", - "DisableExternalEditor": true + "Widget": "FileUploader" } ] } @@ -6754,8 +6739,7 @@ ], "MvcDocUrl": "https://docs.devexpress.com/DevExtremeAspNetMvc/400706/concepts/localization#globalize", "NetCoreDocUrl": "https://docs.devexpress.com/AspNetCore/400577/concepts/devextreme-based-controls/localization#globalize", - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] } diff --git a/apps/demos/package.json b/apps/demos/package.json index 43a56ae02144..5f59605a5908 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -45,7 +45,6 @@ "devextreme-cldr-data": "1.0.3", "devextreme-exceljs-fork": "catalog:", "devextreme-quill": "catalog:", - "dx-systemjs-vue-browser": "1.1.2", "esbuild": "0.28.1", "esbuild-plugin-vue3": "0.3.2", "file-saver-es": "2.0.5", @@ -77,8 +76,6 @@ "rrule": "2.6.4", "rxjs": "7.8.2", "signalr": "2.4.3", - "systemjs": "0.19.41", - "systemjs-plugin-json": "0.3.0", "typescript": "~6.0.0", "unified": "10.1.2", "vue": "^3.3.4", @@ -151,7 +148,6 @@ "stylelint": "catalog:", "stylelint-config-recommended-vue": "1.6.1", "stylelint-config-standard": "38.0.0", - "systemjs-builder": "0.16.15", "testcafe": "catalog:", "testcafe-reporter-spec-time": "4.0.0", "ts-node": "10.9.2", @@ -163,7 +159,6 @@ "clean": "git clean -f -x -d", "add-demo": "node utils/interactive/add-demo.js", "link-repos": "node utils/interactive/link-repos.js", - "create-config": "node utils/internal/create-config.js", "launch-demo": "node utils/shell/server.js", "generate-ng-umd": "rollup -c ./rollup.ng.umd.config.mjs --silent", "generate-tgz-packages": "node utils/create-tgz-packages.js", @@ -184,9 +179,6 @@ "csp-check": "node utils/server/csp-check.js", "fix-lint": "prettier --write . && eslint --fix . && stylelint **/*.{css,vue} --fix", "prettier": "prettier", - "build-bundles": "node scripts/build-bundles.js", - "update-config": "node scripts/update-config.js", - "prepare-bundles": "pnpm run generate-devextreme-angular-umd && node scripts/build-bundles.js && pnpm run update-config", "convert-to-js": "ts-node ./utils/ts-to-js-converter/cli.ts", "create-typestat-cfg": "cd ./utils/internal && node ./create-typestat-cfg.js", "make-demos-bundle": "ts-node ./utils/create-bundles", diff --git a/apps/demos/project.json b/apps/demos/project.json index d2d2ba5b413d..cc1a4db40dfb 100644 --- a/apps/demos/project.json +++ b/apps/demos/project.json @@ -47,34 +47,6 @@ "{projectRoot}/testing/artifacts" ] }, - "prepare-bundles": { - "executor": "nx:run-commands", - "options": { - "commands": [ - "pnpm run generate-devextreme-angular-umd", - "node scripts/build-bundles.js", - "node scripts/update-config.js" - ], - "parallel": false, - "cwd": "{projectRoot}" - }, - "dependsOn": [ - // "^build" uncomment me after migrating to PNPM - ], - "inputs": [ - "default", - "{projectRoot}/scripts/**/*", - "{projectRoot}/utils/bundle/**/*", - "{projectRoot}/utils/internal/create-config.js", - "{projectRoot}/menuMeta.json", - "{projectRoot}/rollup.devextreme-angular.umd.config.mjs" - ], - "outputs": [ - "{projectRoot}/bundles", - "{projectRoot}/Demos/**/config.js", - "{projectRoot}/Demos/**/tsconfig.json" - ] - }, "lint-js": { "executor": "nx:run-script", "options": { @@ -151,21 +123,16 @@ "default", "{projectRoot}/scripts/**/*", "{projectRoot}/utils/shared/config-helper.js", - "{projectRoot}/utils/internal/create-config.js", "{projectRoot}/utils/copy-shared-resources/**/*", "{projectRoot}/menuMeta.json", "{projectRoot}/rollup.ng.umd.config.mjs", "{projectRoot}/rollup.devextreme-angular.umd.config.mjs", "{projectRoot}/rollup.external.bundles.config.mjs" - ], - "outputs": [ - "{projectRoot}/Demos/**/config.js" ] } }, "namedInputs": { "default": [ - "{projectRoot}/configs/**/*", "{projectRoot}/data/**/*", "{projectRoot}/Demos/**/*", "{projectRoot}/images/**/*", diff --git a/apps/demos/scripts/build-bundles.js b/apps/demos/scripts/build-bundles.js deleted file mode 100644 index cada477770bf..000000000000 --- a/apps/demos/scripts/build-bundles.js +++ /dev/null @@ -1,20 +0,0 @@ -const { copyBundlesFolder, build } = require('../utils/bundle'); - -async function main() { - copyBundlesFolder(); - console.log('copy-bundles: done'); - - const frameworks = ['vue', 'angular', 'react']; - await Promise.all(frameworks.map(async (framework) => { - console.log(`bundle-${framework}: starting...`); - await build(framework); - console.log(`bundle-${framework}: done`); - })); - - console.log('build-bundles: done'); -} - -main().catch((err) => { - console.error('build-bundles failed:', err); - process.exit(1); -}); diff --git a/apps/demos/scripts/prepare-js-configs.js b/apps/demos/scripts/prepare-js-configs.js index 6035ff20cb95..e5b33c0dc870 100644 --- a/apps/demos/scripts/prepare-js-configs.js +++ b/apps/demos/scripts/prepare-js-configs.js @@ -1,13 +1,7 @@ -const { join } = require('path'); const { init } = require('../utils/shared/config-helper'); -const createConfig = require('../utils/internal/create-config'); const { copyJsSharedResources } = require('../utils/copy-shared-resources/copy'); -const demosDir = join(__dirname, '..', 'Demos'); - init(); copyJsSharedResources(() => {}); -createConfig.useBundles = false; -createConfig.run(demosDir); console.log('prepare-js-configs: done'); diff --git a/apps/demos/scripts/update-config.js b/apps/demos/scripts/update-config.js deleted file mode 100644 index 6379ee5fdc8a..000000000000 --- a/apps/demos/scripts/update-config.js +++ /dev/null @@ -1,9 +0,0 @@ -const { join } = require('path'); -const createConfig = require('../utils/internal/create-config'); - -const demosDir = join(__dirname, '..', 'Demos'); - -createConfig.useBundles = true; -createConfig.run(demosDir); - -console.log('update-config: done'); diff --git a/apps/demos/shared/loaders/demo-ts-loader.js b/apps/demos/shared/loaders/demo-ts-loader.js deleted file mode 100644 index 3f22ab2fe8de..000000000000 --- a/apps/demos/shared/loaders/demo-ts-loader.js +++ /dev/null @@ -1,19 +0,0 @@ -/* global System */ - -const { - ensureTypeScript, - transpileToSystemRegister, -} = require('demo-ts-shared'); - -module.exports.translate = function translate(load) { - const parentName = load.name || load.address; - - return ensureTypeScript(parentName).then((tsApi) => { - const globalOpts = (typeof System !== 'undefined' && System.typescriptOptions) || {}; - const loadOpts = (load.metadata && load.metadata.typescriptOptions) || {}; - - load.metadata.format = 'register'; - - return transpileToSystemRegister(tsApi, load.source, loadOpts, globalOpts); - }); -}; diff --git a/apps/demos/shared/loaders/demo-ts-shared.js b/apps/demos/shared/loaders/demo-ts-shared.js deleted file mode 100644 index 1694adb15119..000000000000 --- a/apps/demos/shared/loaders/demo-ts-shared.js +++ /dev/null @@ -1,78 +0,0 @@ -/* global ts, System */ - -let typescriptLoadPromise; - -function ensureTypeScript(parentName) { - if (typeof ts !== 'undefined') { - return Promise.resolve(ts); - } - - if (!typescriptLoadPromise) { - typescriptLoadPromise = new Promise((resolve, reject) => { - let scriptUrl; - - try { - if (typeof System.normalizeSync !== 'function') { - throw new Error('System.normalizeSync is not available'); - } - scriptUrl = System.normalizeSync('typescript', parentName); - } catch (err) { - reject(err); - return; - } - - const script = document.createElement('script'); - script.src = scriptUrl; - script.onload = () => { - if (typeof ts === 'undefined') { - reject(new Error('typescript.js did not define global ts')); - return; - } - resolve(ts); - }; - script.onerror = () => reject(new Error(`Failed to load TypeScript from ${script.src}`)); - document.head.appendChild(script); - }); - } - - return typescriptLoadPromise; -} - -function getDemoTsCompilerOptions(tsApi, globalOpts = {}) { - return { - target: tsApi.ScriptTarget.ES2015, - module: tsApi.ModuleKind.System, - moduleResolution: tsApi.ModuleResolutionKind.Bundler, - emitDecoratorMetadata: true, - experimentalDecorators: true, - ignoreDeprecations: '6.0', - allowJs: true, - strict: false, - ...globalOpts, - }; -} - -function transpileToSystemRegister(tsApi, source, extraOpts = {}, globalOpts = {}) { - const compilerOptions = { - ...getDemoTsCompilerOptions(tsApi, globalOpts), - ...extraOpts, - }; - const result = tsApi.transpileModule(source, { compilerOptions }); - - if (result.diagnostics && result.diagnostics.length) { - const errors = result.diagnostics - .filter((d) => d.category === tsApi.DiagnosticCategory.Error) - .map((d) => tsApi.flattenDiagnosticMessageText(d.messageText, '\n')); - if (errors.length) { - throw new Error(`TypeScript transpilation failed:\n${errors.join('\n')}`); - } - } - - return result.outputText; -} - -module.exports = { - ensureTypeScript, - getDemoTsCompilerOptions, - transpileToSystemRegister, -}; diff --git a/apps/demos/shared/loaders/demo-vue-loader.js b/apps/demos/shared/loaders/demo-vue-loader.js deleted file mode 100644 index 7826cc5bd10c..000000000000 --- a/apps/demos/shared/loaders/demo-vue-loader.js +++ /dev/null @@ -1,45 +0,0 @@ -/* global System, translateSFC */ - -const { - ensureTypeScript, - getDemoTsCompilerOptions, -} = require('demo-ts-shared'); - -const DX_SYSTEMJS_VUE_BROWSER = 'npm:dx-systemjs-vue-browser/index.js'; - -let translateSfcModulePromise; - -function ensureTranslateSFC() { - if (typeof translateSFC !== 'undefined') { - return Promise.resolve(); - } - - if (!translateSfcModulePromise) { - translateSfcModulePromise = System.import(DX_SYSTEMJS_VUE_BROWSER); - } - - return translateSfcModulePromise.then(() => { - if (typeof translateSFC === 'undefined') { - throw new Error('dx-systemjs-vue-browser did not define translateSFC'); - } - }); -} - -module.exports.translate = function translate(load) { - const parentName = load.name || load.address; - - return ensureTypeScript(parentName) - .then((tsApi) => ensureTranslateSFC().then(() => { - const globalOpts = (typeof System !== 'undefined' && System.typescriptOptions) || {}; - const loadOpts = (load.metadata && load.metadata.typescriptOptions) || {}; - const compilerOptions = { - ...getDemoTsCompilerOptions(tsApi, globalOpts), - ...loadOpts, - }; - - load.source = translateSFC(load.source, true, { compilerOptions }); - load.metadata.format = 'register'; - - return load.source; - })); -}; diff --git a/apps/demos/utils/build/build-angular-demo.js b/apps/demos/utils/build/build-angular-demo.js new file mode 100644 index 000000000000..d2dc09950eb2 --- /dev/null +++ b/apps/demos/utils/build/build-angular-demo.js @@ -0,0 +1,42 @@ +const { + resolveAngularBuildPrivate, + findAngularEntry, + prepareDemo, + discoverComponentStyleFiles, + computeGlobalShims, + installShims, + removeShims, + cleanupPatchedTsFiles, + bundleDemo, +} = require('../server/csp-bundle-angular'); + +let createCompilerPluginPromise = null; +function getCreateCompilerPlugin() { + if (!createCompilerPluginPromise) { + createCompilerPluginPromise = Promise.resolve() + .then(() => resolveAngularBuildPrivate().createCompilerPlugin); + } + return createCompilerPluginPromise; +} + +async function buildAngularDemoInPlace(widget, name, srcDir) { + const entry = findAngularEntry(srcDir); + if (!entry) return { ok: false, reason: 'no app/app.component.ts (or main.ts/index.ts) entry' }; + + const demo = { widget, name, srcDir, entry }; + const cssFiles = discoverComponentStyleFiles([entry]); + const shims = computeGlobalShims(cssFiles); + let installed = []; + + try { + installed = installShims(shims); + const createCompilerPlugin = await getCreateCompilerPlugin(); + const prepared = prepareDemo(demo); + return await bundleDemo(prepared, createCompilerPlugin, srcDir); + } finally { + removeShims(installed); + cleanupPatchedTsFiles(); + } +} + +module.exports = { buildAngularDemoInPlace }; diff --git a/apps/demos/utils/build/build-react-vue-demo.js b/apps/demos/utils/build/build-react-vue-demo.js new file mode 100644 index 000000000000..e1ec277c9b9f --- /dev/null +++ b/apps/demos/utils/build/build-react-vue-demo.js @@ -0,0 +1,7 @@ +const { bundleDemo } = require('../server/csp-bundle'); + +async function buildReactVueDemoInPlace(framework, widget, name, srcDir) { + return bundleDemo({ widget, name, srcDir }, { destDir: srcDir, framework }); +} + +module.exports = { buildReactVueDemoInPlace }; diff --git a/apps/demos/utils/bundle/index.js b/apps/demos/utils/bundle/index.js deleted file mode 100644 index 150f6ae0dc26..000000000000 --- a/apps/demos/utils/bundle/index.js +++ /dev/null @@ -1,304 +0,0 @@ -/* eslint-disable import/no-extraneous-dependencies */ -const path = require('path'); -const fs = require('fs-extra'); -const Builder = require('systemjs-builder'); -const babel = require('@babel/core'); -const url = require('url'); - -const GRID_COMMON_STAR_IMPORT = 'exports.Grids = __importStar(require("./grids"));'; - -const PRESET_ENV_DIR = path.dirname(require.resolve('@babel/preset-env/package.json')); -const resolvePlugin = (name) => require.resolve(name, { paths: [PRESET_ENV_DIR] }); -const BABEL7_PREPASS_PLUGINS = [ - '@babel/plugin-transform-nullish-coalescing-operator', - '@babel/plugin-transform-object-rest-spread', - '@babel/plugin-transform-optional-catch-binding', - '@babel/plugin-transform-optional-chaining', -].map(resolvePlugin); - -// https://stackoverflow.com/questions/42412965/how-to-load-named-exports-with-systemjs/47108328 -const prepareModulesToNamedImport = () => { - const modules = [ - 'time_zone_utils.js', - 'localization.js', - 'viz/export.js', - 'viz/core/export.js', - 'viz/vector_map/projection.js', - 'viz/palette.js', - 'excel_exporter.js', - 'pdf_exporter.js', - 'time_zone_utils.js', - 'devextreme/ui/dialog.js', - 'common/charts.js', - 'common/data.js', - ]; - - const paths = [ - '../npm-scripts/npm-devextreme/cjs', - 'node_modules/devextreme/cjs', - ]; - - const esModuleExport = 'exports.__esModule = true;'; - - paths.forEach((p) => { - modules.forEach((name) => { - const filePath = `${p}/${name}`; - - if (fs.existsSync(filePath)) { - const fileText = fs.readFileSync(filePath, 'utf8'); - if (fileText.search(esModuleExport) === -1) { - fs.appendFileSync(filePath, `\n ${esModuleExport}`); - } - } - }); - }); -}; - -const getDefaultBuilderConfig = (framework, additionPaths, map) => ({ - defaultExtension: false, - defaultJSExtensions: 'js', - packages: { - 'devextreme/common/core/events/utils': { - main: 'index', - }, - 'devextreme/events/utils': { - main: 'index', - }, - 'devextreme/events': { - main: 'index', - }, - }, - map, - meta: { - '*': { - build: false, - transpile: true, - }, - 'devextreme/*': { - build: true, - }, - 'devexpress-gantt': { - build: true, - }, - 'devexpress-diagram': { - build: true, - }, - [`devextreme-${framework}/*`]: { - build: true, - main: 'index.js', - }, - }, - paths: { - 'devextreme/*': 'node_modules/devextreme/cjs/*', - 'devexpress-gantt': 'node_modules/devexpress-gantt/dist/dx-gantt.min.js', - 'devexpress-diagram': 'node_modules/devexpress-diagram/dist/dx-diagram.min.js', - [`devextreme-${framework}/*`]: `node_modules/devextreme-${framework}/${['react', 'vue'].includes(framework) ? 'cjs/*' : '*'}`, - ...additionPaths, - }, -}); - -const prepareDevextremexAngularFiles = () => { - const dxNgBaseDir = path.resolve('node_modules/devextreme-angular/bundles'); - - try { - fs.rmSync(dxNgBaseDir, { recursive: true }); - } catch { /* NOOP */ } - - try { - fs.mkdirSync('node_modules/devextreme-angular/bundles'); - console.log(`Directory ${dxNgBaseDir} CLEANED successfully`); - } catch { /* NOOP */ } - - fs.copySync('./bundles/devextreme-angular', 'node_modules/devextreme-angular/bundles'); - console.log('Copy devextreme-angular files to node_modules/devextreme-angular/bundles completed!'); -}; - -const prepareConfigs = (framework) => { - // eslint-disable-next-line import/no-dynamic-require,global-require - const currentPackage = require(`devextreme-${framework}/package.json`); - - let additionPackage = []; - let packages = []; - let additionPaths = {}; - let modulesMap = {}; - - let main = `devextreme-${framework}/index.js`; - let minify = true; - - if (framework === 'angular') { - additionPackage = [{ - name: 'rxjs/*', - metaValue: { - build: true, - }, - pathValue: 'node_modules/rxjs/*', - }]; - - packages = [ - 'rxjs/dist/cjs/index.js', - 'rxjs/dist/cjs/operators/index.js', - ]; - - if (currentPackage.module?.startsWith('fesm2022')) { - main = `devextreme-${framework}`; - minify = false; - - prepareDevextremexAngularFiles(); - - const bundlesRoot = 'node_modules/devextreme-angular/bundles'; - - const componentNames = fs.readdirSync(bundlesRoot) - .filter((fileName) => fileName.indexOf('umd.js') !== -1) - .filter((fileName) => fileName.indexOf('devextreme-angular-ui') === 0) - .map((fileName) => fileName.replace('devextreme-angular-ui-', '').replace('.umd.js', '')); - - additionPaths = { - 'devextreme-angular': `${bundlesRoot}/devextreme-angular.umd.js`, - 'devextreme-angular/core': `${bundlesRoot}/devextreme-angular-core.umd.js`, - 'devextreme-angular/core/tokens': `${bundlesRoot}/devextreme-angular-core-tokens.umd.js`, - ...componentNames.reduce((items, item) => { - items[`devextreme-angular/ui/${item.replace('-nested', '/nested')}`] = `${bundlesRoot}/devextreme-angular-ui-${item}.umd.js`; - return items; - }, {}), - }; - - modulesMap = { - ...componentNames.reduce((items, item) => { - items[`devextreme-angular/ui/${item.replace('-nested', '/nested')}`] = `${bundlesRoot}/devextreme-angular-ui-${item}.umd.js`; - return items; - }, {}), - }; - } - } - - if (framework === 'react') { - additionPackage = [{ - name: 'react/*', - metaValue: { - build: true, - esModule: true, - }, - pathValue: 'node_modules/react/*', - }, { - name: 'react-dom/*', - metaValue: { - build: true, - }, - pathValue: 'node_modules/react-dom/*', - }]; - - additionPaths = { - 'devextreme/localization/messages/*': 'node_modules/devextreme/localization/messages/*', - }; - - packages = [ - 'react/umd/react.development.js', - 'react-dom/umd/react-dom.development.js', - ]; - } - - if (['react', 'vue'].includes(framework)) { - const commonDir = path.join(process.cwd(), 'node_modules', `devextreme-${framework}`, 'cjs', 'common'); - - if (fs.existsSync(commonDir)) { - const collectJsExceptIndex = (dir, prefix = '') => { - const names = fs.readdirSync(dir, { withFileTypes: true }); - - for (const ent of names) { - const rel = prefix ? `${prefix}/${ent.name}` : ent.name; - - if (ent.isDirectory()) { - collectJsExceptIndex(path.join(dir, ent.name), rel); - } else if (ent.isFile() && ent.name.endsWith('.js') && ent.name !== 'index.js') { - packages.push(`devextreme-${framework}/common/${rel}`); - } - } - }; - - collectJsExceptIndex(commonDir); - } - } - - const builderConfig = getDefaultBuilderConfig(framework, additionPaths, modulesMap); - - additionPackage.forEach((p) => { - builderConfig.meta[p.name] = p.metaValue; - builderConfig.paths[p.name] = p.pathValue; - }); - - packages.push( - 'devextreme/bundles/dx.custom.config.js', - main, - ); - - return { - builderConfig, - packages: packages.join(' + '), - bundlePath: `bundles/devextreme.${framework}.systemjs.js`, - bundleOpts: { - minify, - uglify: { mangle: true }, - async fetch(load, fetch) { - if (load?.metadata?.transpile) { - // access to path-specific meta if required: load?.metadata?.babelOptions - const babelOptions = { - plugins: BABEL7_PREPASS_PLUGINS, - }; - - // This auto-generated runtime import is useless because grid.js exports only types, - // but System.js transpiles this import into code that crashes when triggered in a Demo. - const removeImportTranspiledToCrashingCode = (result) => { - if (result.code.includes(GRID_COMMON_STAR_IMPORT)) { - result.code = result.code.replace(GRID_COMMON_STAR_IMPORT, ''); - } - }; - - return new Promise((resolve, reject) => { - // systemjs-builder uses babel 6, so we use babel 7 here for transpiling ES2020 - babel.transformFile(url.fileURLToPath(load.name), babelOptions, (err, result) => { - if (err) { - console.error(`Babel 7 pre-pass failed for ${load.name}: ${err}`); - reject(err); - } else { - removeImportTranspiledToCrashingCode(result); - resolve(result.code); - } - }); - }); - } - return fetch(load); - }, - }, - }; -}; - -const build = async (framework) => { - const builder = new Builder(); - prepareModulesToNamedImport(); - - const { - builderConfig, packages, bundlePath, bundleOpts, - } = prepareConfigs(framework); - - builder.config(builderConfig); - - try { - await builder.bundle(packages, bundlePath, bundleOpts); - } catch (err) { - console.error(`Build ${framework} error `, err); - process.exit(1); - } -}; - -const copyBundlesFolder = () => { - const dxPath = path.join(process.cwd(), 'node_modules', 'devextreme'); - const dxBundlesPath = path.join(dxPath, 'bundles'); - const dxCjsBundlesPath = path.join(dxPath, 'cjs', 'bundles'); - - fs.copySync(dxBundlesPath, dxCjsBundlesPath, { overwrite: true }); -}; - -module.exports = { - copyBundlesFolder, - build, -}; diff --git a/apps/demos/utils/internal/create-config.js b/apps/demos/utils/internal/create-config.js deleted file mode 100644 index 94c1b8ace9b3..000000000000 --- a/apps/demos/utils/internal/create-config.js +++ /dev/null @@ -1,158 +0,0 @@ -const path = require('path'); -const fs = require('fs'); -const meta = require('../../menuMeta.json'); - -class CreateConfig { - constructor() { - this.configDir = path.join(__dirname, '..', '..', 'configs'); - - this.approaches = ['Angular', 'React', 'ReactJs', 'Vue']; - - this.meta = meta; - - this.useBundles = false; - } - - getKey(widget, name) { - return `${widget}--${name}`.toLowerCase(); - } - - unique(array) { - return array.filter((value, index, that) => that.indexOf(value) === index); - } - - getDemoKey(approach, modulesList) { - return approach + modulesList.replace(/[\W]/g, ''); - } - - removeEmptyLines(content) { - return content.replace(/(^\s*[\r\n])/gm, ''); - } - - removeModules(content, exceptions) { - const moduleRegex = /\/\*\*\s*(.*?)\s*\*\/([\w\W]*?)\/\*\*\//g; - const handler = (_, moduleName, moduleContent) => (exceptions.indexOf(moduleName) >= 0 ? moduleContent : ''); - return content.replace(moduleRegex, handler); - } - - getConfigContent(approach, modulesString) { - const modules = modulesString.replace(/\s/g, '').split(','); - let baseContent = ''; - - baseContent += fs.readFileSync(path.join(this.configDir, approach, 'config.js'), 'utf8'); - if (this.useBundles) { - // removes ending non bundle config.js call, config.bundle.js calls its own (single per merged file) - baseContent = baseContent.replace('System.config(window.config);', ''); - if (approach === 'Angular') { - // removes ending non bundle Angular call, config.bundle.js calls its own (single per merged file) - baseContent = baseContent.replace('System.import(\'@angular/compiler\').catch(console.error.bind(console));', ''); - } - baseContent += fs.readFileSync(path.join(this.configDir, approach, 'config.bundle.js'), 'utf8'); - } - - return this.removeEmptyLines(this.removeModules(baseContent, modules)); - } - - getDemosWithExtraModules() { - const result = {}; - - const handleGroup = (group) => { - if (group.Demos) { - group.Demos.forEach((demo) => { - if (demo.Modules) result[this.getKey(demo.Widget, demo.Name)] = demo.Modules; - }); - } else if (group.Groups) { - group.Groups.forEach(handleGroup); - } - }; - - this.meta.forEach((section) => { - if (section.Groups) { - section.Groups.forEach((group) => { - if (group.Groups) { - group.Groups.forEach(handleGroup); - } - handleGroup(group); - }); - } - }); - return result; - } - - createConfigFilesContent(demos) { - const result = {}; - const uniqueConfigurations = this.unique(Object.values(demos)); - uniqueConfigurations.push(''); // default config has no modules - - uniqueConfigurations.forEach((modulesList) => { - this.approaches.forEach((approach) => { - result[this.getDemoKey(approach, modulesList)] = this.getConfigContent( - approach, - modulesList, - ); - }); - }); - - return result; - } - - createConfigForApproaches( - fullDemoName, - widgetName, - demoName, - extraModulesDemos, - approachesConfigContent, - ) { - this.approaches.forEach((approach) => { - const demoApproachName = path.join(fullDemoName, approach); - if (!fs.existsSync(demoApproachName)) return; - - const demoConfigName = path.join(demoApproachName, 'config.js'); - if (fs.existsSync(demoConfigName)) { - fs.unlinkSync(demoConfigName); - } - - const demoModulesList = extraModulesDemos[this.getKey(widgetName, demoName)] || ''; - fs.writeFileSync(demoConfigName, approachesConfigContent[this.getDemoKey(approach, demoModulesList)], 'utf8'); - }); - } - - copyTsConfigForApproaches(fullDemoName) { - this.approaches.forEach((approach) => { - if (approach === 'ReactJs' || !fs.existsSync(path.join(fullDemoName, approach))) return; - const approachConfigPath = path.join(this.configDir, approach, 'tsconfig.json'); - const demoConfigPath = path.join(fullDemoName, approach, 'tsconfig.json'); - fs.copyFileSync(approachConfigPath, demoConfigPath); - }); - } - - run(demosDir) { - const demosWithExtraModules = this.getDemosWithExtraModules(); - const configContent = this.createConfigFilesContent(demosWithExtraModules); - const widgetNames = fs.readdirSync(demosDir); - - widgetNames.forEach((widgetName) => { - const fullWidgetName = path.join(demosDir, widgetName); - if (!fs.statSync(fullWidgetName).isDirectory()) return; - - const demoNames = fs.readdirSync(fullWidgetName); - - demoNames.forEach((demoName) => { - const fullDemoName = path.join(fullWidgetName, demoName); - if (!fs.statSync(fullDemoName).isDirectory()) return; - - this.createConfigForApproaches( - fullDemoName, - widgetName, - demoName, - demosWithExtraModules, - configContent, - ); - - this.copyTsConfigForApproaches(fullDemoName); - }); - }); - } -} - -module.exports = new CreateConfig(); diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 829db5ab6438..548391b0af02 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -12,7 +12,12 @@ const esbuild = require('esbuild'); 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'); -const OUT_ROOT = path.join(DEMOS_APP_ROOT, 'csp-bundled-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'); const FRAMEWORK = 'Angular'; @@ -66,14 +71,6 @@ const SHARED_TSCONFIG_TEMPLATE = path.join(__dirname, 'tsconfig.csp-bundle-angul const GENERATED_TSCONFIG_DIR = path.join(__dirname, '.csp-bundle-angular-tsconfigs'); const ANGULAR_ZONE_SCRIPT = '../../../../node_modules/zone.js/bundles/zone.umd.js'; -// Skipped from the bundled Angular CSP check. NG0300: devextreme-angular's -// fesm2022 build duplicates DxoPivotGridFieldChooserTextsComponent across the -// pivot-grid and field-chooser entries, so this demo (using both) registers two -// components for one selector. A library packaging defect, not a demo-source bug. -const KNOWN_BROKEN_DEMOS = new Set([ - 'PivotGrid/StandaloneFieldChooser', -]); - // @angular/build is transitive via @angular-devkit/build-angular; resolve through it for pnpm. function resolveAngularBuildPrivate() { const buildAngularPkg = require.resolve('@angular-devkit/build-angular/package.json', { @@ -150,8 +147,7 @@ function findAngularEntry(srcDir) { function findDemos() { const out = []; - const skipped = []; - if (!fs.existsSync(SRC_DEMOS_DIR)) return { out, skipped }; + if (!fs.existsSync(SRC_DEMOS_DIR)) return out; const widgets = fs.readdirSync(SRC_DEMOS_DIR, { withFileTypes: true }).filter((w) => w.isDirectory()); for (const widget of widgets) { @@ -164,16 +160,12 @@ function findDemos() { if (matchesFilter && fs.existsSync(path.join(fwDir, 'index.html'))) { const entry = findAngularEntry(fwDir); if (entry) { - if (KNOWN_BROKEN_DEMOS.has(key)) { - skipped.push({ widget: widget.name, name: demo.name }); - } else { - out.push({ widget: widget.name, name: demo.name, srcDir: fwDir, entry }); - } + out.push({ widget: widget.name, name: demo.name, srcDir: fwDir, entry }); } } } } - return { out, skipped }; + return out; } // ---- CSS asset shim infrastructure ---- @@ -629,9 +621,9 @@ function makeBuildOptions({ }; } -async function bundleDemo(demo, createCompilerPlugin) { +async function bundleDemo(demo, createCompilerPlugin, destDirOverride) { const prepared = demo.effectiveEntry ? demo : prepareDemo(demo); - const destDir = path.join(OUT_ROOT, prepared.widget, prepared.name, FRAMEWORK); + const destDir = destDirOverride || path.join(OUT_ROOT, prepared.widget, prepared.name, FRAMEWORK); fs.mkdirSync(destDir, { recursive: true }); const effectiveEntry = prepared.effectiveEntry; @@ -650,7 +642,11 @@ async function bundleDemo(demo, createCompilerPlugin) { return { ok: false, reason: (err && err.message) || String(err) }; } - const outputs = Object.keys((result.metafile && result.metafile.outputs) || {}); + // 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. + 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))); if (localJsFiles.length === 0) return { ok: false, reason: 'no JS output produced' }; @@ -729,8 +725,10 @@ async function main() { if (FILTER) console.log(`Filter: ${FILTER}`); console.log(''); - // Wipe previous Angular output; leave React/Vue subtrees alone. - if (fs.existsSync(OUT_ROOT)) { + // 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). + if (!IN_PLACE && fs.existsSync(OUT_ROOT)) { const existingWidgets = fs.readdirSync(OUT_ROOT, { withFileTypes: true }).filter((w) => w.isDirectory()); for (const widget of existingWidgets) { const widgetPath = path.join(OUT_ROOT, widget.name); @@ -749,14 +747,10 @@ async function main() { const { createCompilerPlugin } = resolveAngularBuildPrivate(); - const { out: allDemos, skipped } = findDemos(); + const allDemos = findDemos(); const demos = applyShard(allDemos); - const shardNote = SHARD_TOTAL > 1 ? ` — shard ${SHARD_INDEX}/${SHARD_TOTAL}: ${demos.length} of ${allDemos.length} bundleable` : ''; - console.log(`Discovered ${allDemos.length + skipped.length} ${FRAMEWORK} demo(s) — ${allDemos.length} bundleable, ${skipped.length} skipped (KNOWN_BROKEN_DEMOS)${shardNote}\n`); - if (skipped.length > 0) { - for (const s of skipped) console.log(` • skipping ${s.widget}/${s.name}`); - console.log(''); - } + const shardNote = SHARD_TOTAL > 1 ? ` — shard ${SHARD_INDEX}/${SHARD_TOTAL}: ${demos.length} of ${allDemos.length}` : ''; + console.log(`Discovered ${allDemos.length} ${FRAMEWORK} demo(s)${shardNote}\n`); if (demos.length === 0) { console.log('Nothing to bundle.'); return; @@ -853,4 +847,22 @@ if (require.main === module) { }); } -module.exports = { main }; +// 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, + findAngularEntry, + prepareDemo, + discoverComponentStyleFiles, + computeGlobalShims, + installShims, + removeShims, + cleanupPatchedTsFiles, + bundleDemo, + buildHtml, + ANGULAR_ZONE_SCRIPT, +}; diff --git a/apps/demos/utils/server/csp-bundle.js b/apps/demos/utils/server/csp-bundle.js index a7373e2ea600..b821546c72d0 100644 --- a/apps/demos/utils/server/csp-bundle.js +++ b/apps/demos/utils/server/csp-bundle.js @@ -11,7 +11,10 @@ const esbuild = require('esbuild'); const FRAMEWORK_ARG = (process.argv.find((a) => a.startsWith('--framework=')) || '').split('=')[1]; const FRAMEWORK = FRAMEWORK_ARG || process.env.CSP_FRAMEWORKS || 'React'; -const SUPPORTED = ['React', 'Vue', 'Angular']; +// 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.`); process.exit(0); @@ -19,9 +22,14 @@ 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, '..', '..'); const SRC_DEMOS_DIR = path.join(DEMOS_APP_ROOT, 'Demos'); -const OUT_ROOT = path.join(DEMOS_APP_ROOT, 'csp-bundled-demos'); +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'); const CONCURRENCY = (() => { @@ -170,40 +178,55 @@ const devextremeDedupePlugin = { }, }; -let vuePlugin = null; -if (FRAMEWORK === 'Vue') { - // eslint-disable-next-line global-require - const mod = require('esbuild-plugin-vue3'); - const factory = typeof mod === 'function' ? mod : (mod.default || mod); - vuePlugin = factory(); +// 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) { + // eslint-disable-next-line global-require + const mod = require('esbuild-plugin-vue3'); + const factory = typeof mod === 'function' ? mod : (mod.default || mod); + vuePluginInstance = factory(); + } + return vuePluginInstance; } -const SHARED_OPTIONS = { - bundle: true, - minify: false, - format: 'iife', - loader: { - '.js': 'jsx', - '.png': 'dataurl', - '.jpg': 'dataurl', - '.jpeg': 'dataurl', - '.gif': 'dataurl', - '.svg': 'dataurl', - }, - 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: { - 'process.env.NODE_ENV': '"production"', - __VUE_OPTIONS_API__: 'true', - __VUE_PROD_DEVTOOLS__: 'false', - }, - logLevel: 'silent', - plugins: [devextremeDedupePlugin, systemJsQuirksPlugin, ignoreMissingCssPlugin, ...(vuePlugin ? [vuePlugin] : [])], -}; +function getSharedOptions(framework) { + return { + bundle: true, + minify: false, + format: 'iife', + loader: { + '.js': 'jsx', + '.png': 'dataurl', + '.jpg': 'dataurl', + '.jpeg': 'dataurl', + '.gif': 'dataurl', + '.svg': 'dataurl', + }, + 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: { + 'process.env.NODE_ENV': '"production"', + __VUE_OPTIONS_API__: 'true', + __VUE_PROD_DEVTOOLS__: 'false', + }, + logLevel: 'silent', + plugins: [ + devextremeDedupePlugin, + systemJsQuirksPlugin, + ignoreMissingCssPlugin, + ...(framework === 'Vue' ? [getVuePlugin()] : []), + ], + }; +} // Reuse the dev markup (minus its SystemJS - - - - -
Loading...
+ diff --git a/apps/demos/utils/templates/React/index.html b/apps/demos/utils/templates/React/index.html index a8e5ed3329d8..12fd54cc7f5e 100644 --- a/apps/demos/utils/templates/React/index.html +++ b/apps/demos/utils/templates/React/index.html @@ -5,19 +5,14 @@ - - - - - - + +
+ diff --git a/apps/demos/utils/templates/Vue/index.html b/apps/demos/utils/templates/Vue/index.html index 9d70f08217c0..12fd54cc7f5e 100644 --- a/apps/demos/utils/templates/Vue/index.html +++ b/apps/demos/utils/templates/Vue/index.html @@ -5,24 +5,14 @@ - - - - - - - + +
+ diff --git a/apps/demos/utils/ts-to-js-converter/converter.ts b/apps/demos/utils/ts-to-js-converter/converter.ts index 9a9c77880ce0..1588a5e1af4f 100644 --- a/apps/demos/utils/ts-to-js-converter/converter.ts +++ b/apps/demos/utils/ts-to-js-converter/converter.ts @@ -231,8 +231,11 @@ const formatOutputs = async ( prettierConfig: string, eslintConfig: string, ) => { + // index.html is excluded: it is generated by the demo builder (utils/build/), not + // authored here, and the forced flags below would reflow it away from the builder's + // output — leaving `lint-html` and every in-place rebuild fighting each other. const prettierPatterns = outDirs - .map((outDir) => quoteShellArg(`${path.resolve(outDir)}${path.sep}!(*.{css,json,md,tsbuildinfo})`)) + .map((outDir) => quoteShellArg(`${path.resolve(outDir)}${path.sep}!(*.{css,json,md,tsbuildinfo,html})`)) .join(' '); const eslintPatterns = outDirs .map((outDir) => quoteShellArg( diff --git a/packages/devextreme-angular/src/ui/pivot-grid/index.ts b/packages/devextreme-angular/src/ui/pivot-grid/index.ts index efc7d1d563ec..828c85c30f4e 100644 --- a/packages/devextreme-angular/src/ui/pivot-grid/index.ts +++ b/packages/devextreme-angular/src/ui/pivot-grid/index.ts @@ -48,9 +48,9 @@ import { DxoLoadPanelModule } from 'devextreme-angular/ui/nested'; import { DxoScrollingModule } from 'devextreme-angular/ui/nested'; import { DxoStateStoringModule } from 'devextreme-angular/ui/nested'; +import { DxoPivotGridEmbeddedFieldChooserTextsModule } from 'devextreme-angular/ui/pivot-grid/nested'; import { DxoPivotGridExportModule } from 'devextreme-angular/ui/pivot-grid/nested'; import { DxoPivotGridFieldChooserModule } from 'devextreme-angular/ui/pivot-grid/nested'; -import { DxoPivotGridFieldChooserTextsModule } from 'devextreme-angular/ui/pivot-grid/nested'; import { DxoPivotGridFieldPanelModule } from 'devextreme-angular/ui/pivot-grid/nested'; import { DxoPivotGridFieldPanelTextsModule } from 'devextreme-angular/ui/pivot-grid/nested'; import { DxoPivotGridHeaderFilterModule } from 'devextreme-angular/ui/pivot-grid/nested'; @@ -895,9 +895,9 @@ export class DxPivotGridComponent extends DxComponent implements OnDestroy, OnCh DxoLoadPanelModule, DxoScrollingModule, DxoStateStoringModule, + DxoPivotGridEmbeddedFieldChooserTextsModule, DxoPivotGridExportModule, DxoPivotGridFieldChooserModule, - DxoPivotGridFieldChooserTextsModule, DxoPivotGridFieldPanelModule, DxoPivotGridFieldPanelTextsModule, DxoPivotGridHeaderFilterModule, @@ -922,9 +922,9 @@ export class DxPivotGridComponent extends DxComponent implements OnDestroy, OnCh DxoLoadPanelModule, DxoScrollingModule, DxoStateStoringModule, + DxoPivotGridEmbeddedFieldChooserTextsModule, DxoPivotGridExportModule, DxoPivotGridFieldChooserModule, - DxoPivotGridFieldChooserTextsModule, DxoPivotGridFieldPanelModule, DxoPivotGridFieldPanelTextsModule, DxoPivotGridHeaderFilterModule, diff --git a/packages/devextreme-angular/src/ui/pivot-grid/nested/field-chooser-texts.ts b/packages/devextreme-angular/src/ui/pivot-grid/nested/embedded-field-chooser-texts.ts similarity index 84% rename from packages/devextreme-angular/src/ui/pivot-grid/nested/field-chooser-texts.ts rename to packages/devextreme-angular/src/ui/pivot-grid/nested/embedded-field-chooser-texts.ts index 0081de32be60..581207f847f7 100644 --- a/packages/devextreme-angular/src/ui/pivot-grid/nested/field-chooser-texts.ts +++ b/packages/devextreme-angular/src/ui/pivot-grid/nested/embedded-field-chooser-texts.ts @@ -23,13 +23,13 @@ import { NestedOption } from 'devextreme-angular/core'; @Component({ - selector: 'dxo-pivot-grid-field-chooser-texts', + selector: 'dxo-pivot-grid-embedded-field-chooser-texts', template: '', styles: [''], imports: [ DxIntegrationModule ], providers: [NestedOptionHost] }) -export class DxoPivotGridFieldChooserTextsComponent extends NestedOption implements OnDestroy, OnInit { +export class DxoPivotGridEmbeddedFieldChooserTextsComponent extends NestedOption implements OnDestroy, OnInit { @Input() get allFields(): string { return this._getOption('allFields'); @@ -97,10 +97,10 @@ export class DxoPivotGridFieldChooserTextsComponent extends NestedOption impleme @NgModule({ imports: [ - DxoPivotGridFieldChooserTextsComponent + DxoPivotGridEmbeddedFieldChooserTextsComponent ], exports: [ - DxoPivotGridFieldChooserTextsComponent + DxoPivotGridEmbeddedFieldChooserTextsComponent ], }) -export class DxoPivotGridFieldChooserTextsModule { } +export class DxoPivotGridEmbeddedFieldChooserTextsModule { } diff --git a/packages/devextreme-angular/src/ui/pivot-grid/nested/index.ts b/packages/devextreme-angular/src/ui/pivot-grid/nested/index.ts index 3d6d81094573..7b35c59209af 100644 --- a/packages/devextreme-angular/src/ui/pivot-grid/nested/index.ts +++ b/packages/devextreme-angular/src/ui/pivot-grid/nested/index.ts @@ -1,5 +1,5 @@ +export * from './embedded-field-chooser-texts'; export * from './export'; -export * from './field-chooser-texts'; export * from './field-chooser'; export * from './field-panel-texts'; export * from './field-panel'; diff --git a/packages/devextreme-metadata/make-integration-metadata.ts b/packages/devextreme-metadata/make-integration-metadata.ts index 14ac44d14eae..8212aa40bd7b 100644 --- a/packages/devextreme-metadata/make-integration-metadata.ts +++ b/packages/devextreme-metadata/make-integration-metadata.ts @@ -113,6 +113,10 @@ Imd.makeMetadata({ forcedName: 'treeListToolbarItem', }), + addMetadata('ui/pivot_grid:dxPivotGridOptions.fieldChooser.texts', { + forcedName: 'embeddedFieldChooserTexts', + }), + replaceTypes(/.+/, ['core/element:UserDefinedElement'], ['any']), removeMembers(['core/element:DxElement', 'core/element:UserDefinedElement'], 'any'), diff --git a/packages/devextreme-react/src/pivot-grid.ts b/packages/devextreme-react/src/pivot-grid.ts index e7c6fa0eae86..22ae796605ab 100644 --- a/packages/devextreme-react/src/pivot-grid.ts +++ b/packages/devextreme-react/src/pivot-grid.ts @@ -73,6 +73,28 @@ const PivotGrid = memo( ) as (props: React.PropsWithChildren & { ref?: Ref }) => ReactElement | null; +// owners: +// FieldChooser +type IEmbeddedFieldChooserTextsProps = React.PropsWithChildren<{ + allFields?: string; + columnFields?: string; + dataFields?: string; + filterFields?: string; + rowFields?: string; +}> +const _componentEmbeddedFieldChooserTexts = (props: IEmbeddedFieldChooserTextsProps) => { + return React.createElement(NestedOption, { + ...props, + elementDescriptor: { + OptionName: "texts", + }, + }); +}; + +const EmbeddedFieldChooserTexts = Object.assign(_componentEmbeddedFieldChooserTexts, { + componentType: "option", +}); + // owners: // PivotGrid type IExportProps = React.PropsWithChildren<{ @@ -116,7 +138,7 @@ const _componentFieldChooser = (props: IFieldChooserProps) => { elementDescriptor: { OptionName: "fieldChooser", ExpectedChildren: { - fieldChooserTexts: { optionName: "texts", isCollectionItem: false }, + embeddedFieldChooserTexts: { optionName: "texts", isCollectionItem: false }, texts: { optionName: "texts", isCollectionItem: false } }, }, @@ -127,28 +149,6 @@ const FieldChooser = Object.assign -const _componentFieldChooserTexts = (props: IFieldChooserTextsProps) => { - return React.createElement(NestedOption, { - ...props, - elementDescriptor: { - OptionName: "texts", - }, - }); -}; - -const FieldChooserTexts = Object.assign(_componentFieldChooserTexts, { - componentType: "option", -}); - // owners: // PivotGrid type IFieldPanelProps = React.PropsWithChildren<{ @@ -422,12 +422,12 @@ export { PivotGrid, IPivotGridOptions, PivotGridRef, + EmbeddedFieldChooserTexts, + IEmbeddedFieldChooserTextsProps, Export, IExportProps, FieldChooser, IFieldChooserProps, - FieldChooserTexts, - IFieldChooserTextsProps, FieldPanel, IFieldPanelProps, FieldPanelTexts, diff --git a/packages/devextreme-vue/src/pivot-grid.ts b/packages/devextreme-vue/src/pivot-grid.ts index 75169fb9ee02..3dff93c444ab 100644 --- a/packages/devextreme-vue/src/pivot-grid.ts +++ b/packages/devextreme-vue/src/pivot-grid.ts @@ -193,6 +193,31 @@ prepareComponentConfig(componentConfig); const DxPivotGrid = defineComponent(componentConfig); +const DxEmbeddedFieldChooserTextsConfig = { + emits: { + "update:isActive": null, + "update:hoveredElement": null, + "update:allFields": null, + "update:columnFields": null, + "update:dataFields": null, + "update:filterFields": null, + "update:rowFields": null, + }, + props: { + allFields: String, + columnFields: String, + dataFields: String, + filterFields: String, + rowFields: String + } +}; + +prepareConfigurationComponentConfig(DxEmbeddedFieldChooserTextsConfig); + +const DxEmbeddedFieldChooserTexts = defineComponent(DxEmbeddedFieldChooserTextsConfig); + +(DxEmbeddedFieldChooserTexts as any).$_optionName = "texts"; + const DxExportConfig = { emits: { "update:isActive": null, @@ -243,35 +268,10 @@ const DxFieldChooser = defineComponent(DxFieldChooserConfig); (DxFieldChooser as any).$_optionName = "fieldChooser"; (DxFieldChooser as any).$_expectedChildren = { - fieldChooserTexts: { isCollectionItem: false, optionName: "texts" }, + embeddedFieldChooserTexts: { isCollectionItem: false, optionName: "texts" }, texts: { isCollectionItem: false, optionName: "texts" } }; -const DxFieldChooserTextsConfig = { - emits: { - "update:isActive": null, - "update:hoveredElement": null, - "update:allFields": null, - "update:columnFields": null, - "update:dataFields": null, - "update:filterFields": null, - "update:rowFields": null, - }, - props: { - allFields: String, - columnFields: String, - dataFields: String, - filterFields: String, - rowFields: String - } -}; - -prepareConfigurationComponentConfig(DxFieldChooserTextsConfig); - -const DxFieldChooserTexts = defineComponent(DxFieldChooserTextsConfig); - -(DxFieldChooserTexts as any).$_optionName = "texts"; - const DxFieldPanelConfig = { emits: { "update:isActive": null, @@ -588,9 +588,9 @@ const DxTexts = defineComponent(DxTextsConfig); export default DxPivotGrid; export { DxPivotGrid, + DxEmbeddedFieldChooserTexts, DxExport, DxFieldChooser, - DxFieldChooserTexts, DxFieldPanel, DxFieldPanelTexts, DxHeaderFilter, diff --git a/packages/devextreme/js/__internal/grids/grid_core/data_controller/__tests__/m_data_controller.integration.test.ts b/packages/devextreme/js/__internal/grids/grid_core/data_controller/__tests__/m_data_controller.integration.test.ts new file mode 100644 index 000000000000..cc7a35aa02c1 --- /dev/null +++ b/packages/devextreme/js/__internal/grids/grid_core/data_controller/__tests__/m_data_controller.integration.test.ts @@ -0,0 +1,88 @@ +import { + afterEach, beforeEach, describe, expect, it, jest, +} from '@jest/globals'; + +import { + afterTest, beforeTest, createDataGrid, flushAsync, +} from '../../__tests__/__mock__/helpers/utils'; + +const employees = [ + { id: 1, name: 'Alice Johnson', department: 'Engineering' }, + { id: 2, name: 'Bob Smith', department: 'Engineering' }, + { id: 3, name: 'Carol White', department: 'Engineering' }, + { id: 4, name: 'Dan Brown', department: 'Sales' }, + { id: 5, name: 'Eve Davis', department: 'Sales' }, + { id: 6, name: 'Frank Miller', department: 'Sales' }, + { id: 7, name: 'Grace Wilson', department: 'HR' }, + { id: 8, name: 'Hank Moore', department: 'HR' }, + { id: 9, name: 'Ivy Taylor', department: 'Finance' }, + { id: 10, name: 'Jack Anderson', department: 'Finance' }, +]; + +describe('DataController paging.pageIndex option sync', () => { + beforeEach(beforeTest); + afterEach(afterTest); + + it('should reset bound paging.pageIndex to 0 when a filter shrinks the page count (T1333073)', async () => { + const onOptionChanged = jest.fn(); + const { instance } = await createDataGrid({ + dataSource: employees, + keyExpr: 'id', + paging: { pageIndex: 2, pageSize: 3 }, + onOptionChanged, + }); + + expect(instance.option('paging.pageIndex')).toBe(2); + onOptionChanged.mockClear(); + + instance.filter(['department', '=', 'Engineering']); + await flushAsync(); + + expect(instance.option('paging.pageIndex')).toBe(0); + const pageIndexCall = onOptionChanged.mock.calls + .find((call) => (call[0] as { fullName: string }).fullName === 'paging.pageIndex'); + expect(pageIndexCall?.[0]).toMatchObject({ fullName: 'paging.pageIndex', value: 0 }); + }); + + it('should reset bound paging.pageIndex to 0 when the search panel shrinks the page count (T1333073)', async () => { + const onOptionChanged = jest.fn(); + const { instance } = await createDataGrid({ + dataSource: employees, + keyExpr: 'id', + paging: { pageIndex: 2, pageSize: 3 }, + searchPanel: { visible: true }, + onOptionChanged, + }); + + expect(instance.option('paging.pageIndex')).toBe(2); + onOptionChanged.mockClear(); + + instance.option('searchPanel.text', 'Alice'); + await flushAsync(); + + expect(instance.option('paging.pageIndex')).toBe(0); + const pageIndexCall = onOptionChanged.mock.calls + .find((call) => (call[0] as { fullName: string }).fullName === 'paging.pageIndex'); + expect(pageIndexCall?.[0]).toMatchObject({ fullName: 'paging.pageIndex', value: 0 }); + }); + + it('should not fire paging.pageIndex change when filtering while already on the first page (T1333073)', async () => { + const onOptionChanged = jest.fn(); + const { instance } = await createDataGrid({ + dataSource: employees, + keyExpr: 'id', + paging: { pageIndex: 0, pageSize: 3 }, + onOptionChanged, + }); + + onOptionChanged.mockClear(); + + instance.filter(['department', '=', 'Engineering']); + await flushAsync(); + + expect(instance.option('paging.pageIndex')).toBe(0); + const pageIndexCall = onOptionChanged.mock.calls + .find((call) => (call[0] as { fullName: string }).fullName === 'paging.pageIndex'); + expect(pageIndexCall).toBeUndefined(); + }); +}); diff --git a/patches/babel-core@6.26.3.patch b/patches/babel-core@6.26.3.patch deleted file mode 100644 index 617b3979c165..000000000000 --- a/patches/babel-core@6.26.3.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/lib/transformation/internal-plugins/shadow-functions.js b/lib/transformation/internal-plugins/shadow-functions.js -index e7f8739c31b4e079730a15e738ad864dbc458502..3ca4861b941c594e9500dcd6c0380f5dea7379cc 100644 ---- a/lib/transformation/internal-plugins/shadow-functions.js -+++ b/lib/transformation/internal-plugins/shadow-functions.js -@@ -58,7 +58,7 @@ function shouldShadow(path, shadowPath) { - } - - function remap(path, key) { -- var shadowPath = path.inShadow(key); -+ var shadowPath = typeof path.inShadow === 'function' ? path.inShadow(key) : false; - if (!shouldShadow(path, shadowPath)) return; - - var shadowFunction = path.node._shadowedFunctionLiteral; -@@ -83,7 +83,7 @@ function remap(path, key) { - if (shadowFunction) { - if (innerPath === shadowFunction || innerPath.node === shadowFunction.node) return true; - } else { -- if (!innerPath.is("shadow")) return true; -+ if (typeof innerPath.is !== 'function' || !innerPath.is("shadow")) return true; - } - - passedShadowFunction = true; diff --git a/patches/systemjs-builder@0.16.15.patch b/patches/systemjs-builder@0.16.15.patch deleted file mode 100644 index 35494d1f73b9..000000000000 --- a/patches/systemjs-builder@0.16.15.patch +++ /dev/null @@ -1,143 +0,0 @@ -diff --git a/lib/output.js b/lib/output.js -index 18999ece8f59ff4f7f94b70244f8080dcc9b8da5..99749e9c67be7848f7e9629a0a10ec27c9300636 100644 ---- a/lib/output.js -+++ b/lib/output.js -@@ -9,17 +9,6 @@ var terser = require('terser'); - var fromFileURL = require('./utils').fromFileURL; - var toFileURL = require('./utils').toFileURL; - --// Ugly hack to get around terser's strange code loading and export system --// (inherited from uglify-js), and the fact that their SourceMap wrapper is --// not exported --var TerserSourceMap = new Function('MOZ_SourceMap', "exports", "require", function() { -- var code = ['terser/lib/utils.js', 'terser/lib/sourcemap.js'].map(function(file) { -- return fs.readFileSync(require.resolve(file), 'utf8'); -- }); -- code.push('return SourceMap;'); -- return code.join('\n'); --}())(require('source-map'), terser, require); -- - function countLines(str) { - return str.split(/\r\n|\r|\n/).length; - } -@@ -84,48 +73,43 @@ function createOutput(outFile, outputs, basePath, sourceMaps, sourceMapContents) - } - - function minify(output, fileName, mangle, uglifyOpts) { -- var files = {}; -- files[fileName] = output.source; -- var result; -- try{ -- result = terser.minify(files, { -- parse: {}, -- compress: uglifyOpts.compress, -- mangle: mangle, -- output: { ast: true, code: false } -- }); -- } catch(e){ -- throw new Error(e); -- } -- -- if (result.error) { -- throw new Error(result.error); -- } -- -- var ast = result.ast; -+ uglifyOpts = uglifyOpts || {}; - -- var sourceMap; -+ var sourceMapConfig = false; - if (output.sourceMap) { -- if (typeof output.sourceMap === 'string') -- output.sourceMap = JSON.parse(output.sourceMap); -- -- sourceMap = TerserSourceMap({ -- file: fileName, -- orig: output.sourceMap -- }); -+ var mapContent = output.sourceMap; -+ if (typeof mapContent !== 'string') -+ mapContent = JSON.stringify(mapContent); -+ -+ sourceMapConfig = { -+ filename: fileName, -+ content: mapContent, -+ }; - } - -- var outputOptions = uglifyOpts.beautify; -- // keep first comment -- outputOptions.comments = outputOptions.comments || function(node, comment) { -+ var formatOptions = uglifyOpts.beautify || uglifyOpts.output || {}; -+ var comments = formatOptions.comments || function(_node, comment) { - return comment.line === 1 && comment.col === 0; - }; -- outputOptions.source_map = sourceMap; - -- output.source = ast.print_to_string(outputOptions); -- output.sourceMap = sourceMap; -+ return Promise.resolve(terser.minify(output.source, { -+ compress: uglifyOpts.compress, -+ mangle: mangle, -+ sourceMap: sourceMapConfig, -+ format: extend({ -+ comments: comments, -+ }, formatOptions), -+ })).then(function(result) { -+ if (result.error) -+ throw new Error(result.error); -+ -+ output.source = result.code; - -- return output; -+ if (result.map) -+ output.sourceMap = typeof result.map === 'string' ? result.map : JSON.stringify(result.map); -+ -+ return output; -+ }); - } - - function writeOutputFile(outFile, source, sourceMap) { -@@ -138,7 +122,7 @@ function writeOutputFile(outFile, source, sourceMap) { - - var sourceMapFileName = path.basename(outFile) + '.map'; - source += '\n//# sourceMappingURL=' + sourceMapFileName; -- -+ - return asp(fs.writeFile)(path.resolve(outDir, sourceMapFileName), sourceMap); - }) - .then(function() { -@@ -160,19 +144,22 @@ exports.writeOutputs = function(outputs, baseURL, outputOpts) { - var fileName = outFile && path.basename(outFile) || 'output.js'; - - var output = createOutput(outFile || path.resolve(basePath, fileName), outputs, basePath, outputOpts.sourceMaps, outputOpts.sourceMapContents); -- -- if (outputOpts.minify) -- output = minify(output, fileName, outputOpts.mangle, outputOpts.uglify); - -- if (outputOpts.sourceMaps == 'inline') { -- output.source = inlineSourceMap(output.source, output.sourceMap); -- output.sourceMap = undefined; -- } -+ var outputPromise = outputOpts.minify -+ ? minify(output, fileName, outputOpts.mangle, outputOpts.uglify) -+ : Promise.resolve(output); - -- if (!outputOpts.outFile) -- return Promise.resolve(output); -+ return outputPromise.then(function(output) { -+ if (outputOpts.sourceMaps == 'inline') { -+ output.source = inlineSourceMap(output.source, output.sourceMap); -+ output.sourceMap = undefined; -+ } - -- return writeOutputFile(outFile, output.source, output.sourceMap).then(function() { -- return output; -+ if (!outputOpts.outFile) -+ return output; -+ -+ return writeOutputFile(outFile, output.source, output.sourceMap).then(function() { -+ return output; -+ }); - }); - }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a1f3b7d6d665..2416842c62d8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -227,8 +227,6 @@ overrides: nanoid@<3.3.17: ^3.3.17 patchedDependencies: - babel-core@6.26.3: c0f53059bb7026b811209ee3af7fd4c700c900c615d0a0b14981ce911fcf3392 - systemjs-builder@0.16.15: c78b3d7eb812436aa2d80299b3d3f2738f0366b53f710a25956a3762edf73014 testcafe-hammerhead@31.7.8: 8655c07786177d3b611a05abf6b0ea87d32796eb2601f92a800ef041095f264c importers: @@ -285,7 +283,7 @@ importers: version: 0.8.5 stylelint: specifier: 'catalog:' - version: 16.22.0(supports-color@7.2.0)(typescript@5.9.3) + version: 16.22.0(typescript@5.9.3) ts-node: specifier: 10.9.2 version: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3) @@ -343,7 +341,7 @@ importers: version: 20.3.24(9c96f6f89ff339f3b03a8e5071cfef81) '@angular/cli': specifier: catalog:angular - version: 20.3.24(@types/node@20.11.17)(chokidar@4.0.3)(supports-color@7.2.0) + version: 20.3.24(@types/node@20.11.17)(chokidar@4.0.3) '@types/jasmine': specifier: 5.1.4 version: 5.1.4 @@ -364,13 +362,13 @@ importers: dependencies: '@angular-devkit/build-angular': specifier: ^22.0.9 - version: 22.1.2(9ab32ed578a68caf92174a202d695664) + version: 22.1.2(5ff3e14daa3065d6e7c118ba510a3c83) '@angular/animations': specifier: ^22.0.8 version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)(zone.js@0.16.2)) '@angular/cli': specifier: ^22.0.9 - version: 22.1.2(@types/node@26.1.1)(chokidar@5.0.0) + version: 22.1.2(@types/node@20.19.37)(chokidar@5.0.0) '@angular/common': specifier: ^22.0.8 version: 22.1.0(@angular/core@22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)(zone.js@0.16.2))(rxjs@7.8.2) @@ -464,9 +462,6 @@ importers: devextreme-vue: specifier: workspace:* version: link:../../packages/devextreme-vue/npm - dx-systemjs-vue-browser: - specifier: 1.1.2 - version: 1.1.2 esbuild: specifier: 0.28.1 version: 0.28.1 @@ -566,12 +561,6 @@ importers: signalr: specifier: 2.4.3 version: 2.4.3 - systemjs: - specifier: 0.19.41 - version: 0.19.41 - systemjs-plugin-json: - specifier: 0.3.0 - version: 0.3.0 typescript: specifier: ~6.0.0 version: 6.0.3 @@ -608,7 +597,7 @@ importers: version: 7.29.7 '@babel/eslint-parser': specifier: 'catalog:' - version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)) '@babel/preset-env': specifier: 7.29.7 version: 7.29.7(@babel/core@7.29.7) @@ -620,7 +609,7 @@ importers: version: 7.29.7(@babel/core@7.29.7) '@eslint/compat': specifier: 1.4.1 - version: 1.4.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 1.4.1(eslint@9.39.4(jiti@2.6.1)) '@eslint/eslintrc': specifier: 'catalog:' version: 3.3.5 @@ -638,7 +627,7 @@ importers: version: 5.0.7(rollup@4.59.0) '@stylistic/eslint-plugin': specifier: 'catalog:' - version: 5.10.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 5.10.0(eslint@9.39.4(jiti@2.6.1)) '@testcafe-community/axe': specifier: 3.5.0 version: 3.5.0(axe-core@4.11.3)(testcafe@3.7.5) @@ -662,13 +651,13 @@ importers: version: 17.0.35 '@typescript-eslint/eslint-plugin': specifier: 'catalog:' - version: 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) '@vue/eslint-config-typescript': specifier: 12.0.0 - version: 12.0.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 12.0.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))))(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) '@vue/tsconfig': specifier: 0.9.1 version: 0.9.1(typescript@6.0.3)(vue@3.5.32(typescript@6.0.3)) @@ -692,40 +681,40 @@ importers: version: 2.0.17(testcafe@3.7.5) eslint: specifier: 'catalog:' - version: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + version: 9.39.4(jiti@2.6.1) eslint-config-airbnb-typescript: specifier: 'catalog:' - version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(8a02c8ea109c9cf26ed5b6a911da64a7) + version: 1.1.12(1ab26e2fdac0a1462882017b4fe7b289) eslint-plugin-deprecation: specifier: 3.0.0 - version: 3.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + version: 3.0.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) eslint-plugin-import: specifier: 'catalog:' - version: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-jest: specifier: 29.15.2 - version: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(jest@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3) + version: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(jest@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3) eslint-plugin-no-only-tests: specifier: 'catalog:' version: 3.3.0 eslint-plugin-react: specifier: 7.37.5 - version: 7.37.5(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 7.37.5(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: 5.2.0 - version: 5.2.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 5.2.0(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-react-perf: specifier: 3.3.3 - version: 3.3.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 3.3.3(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-spellcheck: specifier: 0.0.20 - version: 0.0.20(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + version: 0.0.20(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-vue: specifier: 'catalog:' - version: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)) + version: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) express: specifier: 4.22.1 version: 4.22.1 @@ -740,7 +729,7 @@ importers: version: 14.1.1(supports-color@7.2.0) jest: specifier: 29.7.0 - version: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + version: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) jest-environment-node: specifier: 29.7.0 version: 29.7.0 @@ -780,12 +769,9 @@ importers: stylelint-config-standard: specifier: 38.0.0 version: 38.0.0(stylelint@16.22.0(typescript@6.0.3)) - systemjs-builder: - specifier: 0.16.15 - version: 0.16.15(patch_hash=c78b3d7eb812436aa2d80299b3d3f2738f0366b53f710a25956a3762edf73014) testcafe: specifier: 'catalog:' - version: 3.7.5(supports-color@7.2.0) + version: 3.7.5 testcafe-reporter-spec-time: specifier: 4.0.0 version: 4.0.0 @@ -794,7 +780,7 @@ importers: version: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3) vue-eslint-parser: specifier: 'catalog:' - version: 10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0) + version: 10.0.0(eslint@9.39.4(jiti@2.6.1)) vue-tsc: specifier: 3.0.8 version: 3.0.8(typescript@6.0.3) @@ -1004,7 +990,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(df15cfffce683e1bcb7bfdacad1a6df8) + version: 1.1.12(36a0f49ab754119732d0cad2df2dd8f9) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -1076,7 +1062,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.12(34e25ca7f08f1322a043ec8d80e91c93) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1109,7 +1095,7 @@ importers: devDependencies: '@babel/eslint-parser': specifier: 'catalog:' - version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)) + version: 7.29.7(@babel/core@8.0.1)(eslint@9.39.4(jiti@2.6.1)) '@babel/plugin-transform-runtime': specifier: 7.29.7 version: 7.29.7(@babel/core@7.29.7) @@ -1151,7 +1137,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(3323971c1e531ea4fcc264c8af1d91e5) + version: 1.1.12(c357a05deb2b16688bde72abde48073f) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1178,7 +1164,7 @@ importers: version: 0.12.1 testcafe: specifier: 'catalog:' - version: 3.7.5(supports-color@7.2.0) + version: 3.7.5 testcafe-reporter-spec-time: specifier: 4.0.0 version: 4.0.0 @@ -1353,7 +1339,7 @@ importers: version: 2.1.0(jasmine-core@5.6.0)(karma-jasmine@5.1.0(karma@6.4.4))(karma@6.4.4) testcafe: specifier: 'catalog:' - version: 3.7.5(supports-color@7.2.0) + version: 3.7.5 typescript: specifier: 5.8.3 version: 5.8.3 @@ -1492,7 +1478,7 @@ importers: version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(21373fd47cc2a7a56720766fc64e98ca) + version: 1.1.12(33b7e80734c34857e30298d4e85d3fef) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1519,7 +1505,7 @@ importers: version: 3.3.0 eslint-plugin-perfectionist: specifier: 'catalog:' - version: 5.9.1(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5) + version: 5.9.1(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) eslint-plugin-qunit: specifier: 'catalog:' version: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -1674,7 +1660,7 @@ importers: version: 20.3.27(@angular/common@20.3.27(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.27)(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.27(@angular/common@20.3.27(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2) '@babel/eslint-parser': specifier: 'catalog:' - version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)) + version: 7.29.7(@babel/core@8.0.1)(eslint@9.39.4(jiti@2.6.1)) '@eslint-stylistic/metadata': specifier: 'catalog:' version: 2.13.0 @@ -1713,7 +1699,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.12(34e25ca7f08f1322a043ec8d80e91c93) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1833,7 +1819,7 @@ importers: devDependencies: '@babel/eslint-parser': specifier: 'catalog:' - version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)) + version: 7.29.7(@babel/core@8.0.1)(eslint@9.39.4(jiti@2.6.1)) '@eslint/eslintrc': specifier: 'catalog:' version: 3.3.5 @@ -1875,7 +1861,7 @@ importers: version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.12(d15b6dd1a804cd08c9b9266c82470597) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1906,7 +1892,7 @@ importers: devDependencies: '@stylistic/stylelint-plugin': specifier: 3.1.3 - version: 3.1.3(stylelint@16.22.0(typescript@6.0.3)) + version: 3.1.3(stylelint@16.22.0(typescript@5.9.3)) autoprefixer: specifier: 10.5.0 version: 10.5.0(postcss@8.5.23) @@ -1924,16 +1910,16 @@ importers: version: 1.93.3 stylelint: specifier: 'catalog:' - version: 16.22.0(typescript@6.0.3) + version: 16.22.0(typescript@5.9.3) stylelint-config-standard-scss: specifier: 14.0.0 - version: 14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)) + version: 14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@5.9.3)) stylelint-scss: specifier: 6.10.0 - version: 6.10.0(stylelint@16.22.0(typescript@6.0.3)) + version: 6.10.0(stylelint@16.22.0(typescript@5.9.3)) ts-jest: specifier: 29.1.2 - version: 29.1.2(@babel/core@7.29.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)))(typescript@5.9.3) + version: 29.1.2(@babel/core@7.29.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)))(typescript@5.9.3) packages/devextreme-themebuilder: dependencies: @@ -1985,7 +1971,7 @@ importers: version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(765db8ce296b6314aa6fee62e11efa0e) + version: 1.1.12(0bf0cf098d0a3b928d7fd275ba37129c) eslint-plugin-import: specifier: 'catalog:' version: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) @@ -2028,7 +2014,7 @@ importers: devDependencies: '@babel/eslint-parser': specifier: 'catalog:' - version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)) + version: 7.29.7(@babel/core@8.0.1)(eslint@9.39.4(jiti@2.6.1)) '@eslint-stylistic/metadata': specifier: 'catalog:' version: 2.13.0 @@ -2067,7 +2053,7 @@ importers: version: 18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.12(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.12(d15b6dd1a804cd08c9b9266c82470597) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -2213,7 +2199,7 @@ importers: version: link:../devextreme/artifacts/npm/devextreme testcafe: specifier: 'catalog:' - version: 3.7.5(supports-color@7.2.0) + version: 3.7.5 packages: @@ -4408,33 +4394,16 @@ packages: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} - '@csstools/css-parser-algorithms@2.7.1': - resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - '@csstools/css-tokenizer': ^2.4.1 - '@csstools/css-parser-algorithms@3.0.5': resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==} engines: {node: '>=18'} peerDependencies: '@csstools/css-tokenizer': ^3.0.4 - '@csstools/css-tokenizer@2.4.1': - resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==} - engines: {node: ^14 || ^16 || >=18} - '@csstools/css-tokenizer@3.0.4': resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==} engines: {node: '>=18'} - '@csstools/media-query-list-parser@2.1.13': - resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - '@csstools/css-parser-algorithms': ^2.7.1 - '@csstools/css-tokenizer': ^2.4.1 - '@csstools/media-query-list-parser@3.0.1': resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==} engines: {node: '>=18'} @@ -4449,12 +4418,6 @@ packages: '@csstools/css-parser-algorithms': ^3.0.5 '@csstools/css-tokenizer': ^3.0.4 - '@csstools/selector-specificity@3.1.1': - resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==} - engines: {node: ^14 || ^16 || >=18} - peerDependencies: - postcss-selector-parser: ^6.0.13 - '@csstools/selector-specificity@5.0.0': resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==} engines: {node: '>=18'} @@ -4500,6 +4463,9 @@ packages: '@emnapi/core@1.10.0': resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} + '@emnapi/core@1.11.1': + resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} + '@emnapi/core@1.11.2': resolution: {integrity: sha512-TC8MkTuZUtcTSiFeuC0ksCh9QIJ5+F21MvZ4Wn4ORfYaFJ/0dsiudv5tVkejgwZlwQ39jL9WWDe2lz8x0WglOA==} @@ -4509,6 +4475,9 @@ packages: '@emnapi/runtime@1.10.0': resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} + '@emnapi/runtime@1.11.1': + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} + '@emnapi/runtime@1.11.2': resolution: {integrity: sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==} @@ -5783,6 +5752,7 @@ packages: '@ngtools/webpack@22.1.2': resolution: {integrity: sha512-5o3zbOdEHv5+wjRCMN+t6RBou28dbPkio5/rxEJBsQ9iEq11K+atsSKEaZXBMUhYr9nLYR8Pckm5Cqx2FP9R2Q==} engines: {node: ^22.22.3 || ^24.15.0 || >=26.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + deprecated: Angular's Webpack support is deprecated. Use the esbuild and Vite-based "@angular/build" package instead. peerDependencies: '@angular/compiler-cli': ^22.0.0 typescript: '>=6.0 <6.1' @@ -6615,6 +6585,18 @@ packages: cpu: [arm64] os: [android] + '@rolldown/binding-android-arm64@1.1.5': + resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-android-arm64@1.2.0': + resolution: {integrity: sha512-9yB1l95IrJuNGDFdOYe79vdApdz6WWBCObE+rQ2LUliYUlcyFwSYIb2xb5/Ifw7dAtMy2ZqNyd8QTSOc7duAKw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + '@rolldown/binding-darwin-arm64@1.0.3': resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6639,18 +6621,54 @@ packages: cpu: [x64] os: [darwin] + '@rolldown/binding-darwin-x64@1.1.5': + resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.2.0': + resolution: {integrity: sha512-NqKYaq0355ZmNMG4QGpxtEDxsc7tGDhjhCm4PpE0cwnBW+5Il95LJyq414niEiaKLVjnVHBEjSo1wngKxJNiFw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + '@rolldown/binding-freebsd-x64@1.0.3': resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] + '@rolldown/binding-freebsd-x64@1.1.5': + resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-freebsd-x64@1.2.0': + resolution: {integrity: sha512-3vPoHzh6eBTz9IbB0/qZdSr0Qeks2echn+I4cHu2joV74VriPDdldswksEDzrl1mBB+oPRi+67+3Ib59paxIPQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] + '@rolldown/binding-linux-arm-gnueabihf@1.1.5': + resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm-gnueabihf@1.2.0': + resolution: {integrity: sha512-E6NNefZ1bUVmKJq2tJkf45J4Zyczj7qm9rUT7NY+Xo2474Y13qWAwc2tvBt0BAVbmtXR1llkxXg0Ou1jbDf2SQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + '@rolldown/binding-linux-arm64-gnu@1.0.3': resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6658,6 +6676,20 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-arm64-gnu@1.1.5': + resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-gnu@1.2.0': + resolution: {integrity: sha512-D+TgkdgM1vu+7/Fpf8+v0ARW+RXEP9Ccazgm8zQ4JFFd9Q7SrYQ2TakU5S5ihazQDgpKyAgZDOcIFsvoHmTZ8w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + '@rolldown/binding-linux-arm64-musl@1.0.3': resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6665,6 +6697,20 @@ packages: os: [linux] libc: [musl] + '@rolldown/binding-linux-arm64-musl@1.1.5': + resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rolldown/binding-linux-arm64-musl@1.2.0': + resolution: {integrity: sha512-wUqdwJBbAv0APN87GecstdMUtLjjNTs0hBALpxETD73mccFxdmt/XeizXDtN5RAlBwNKmI+Tg+blect2G+8IeQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + '@rolldown/binding-linux-ppc64-gnu@1.0.3': resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6672,6 +6718,20 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-ppc64-gnu@1.1.5': + resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-ppc64-gnu@1.2.0': + resolution: {integrity: sha512-9DtF35qR9/NrfhM4oxLplCzVVjE+KKm8Pjemi0i/sdhAWkUasjmSo8WTTubNJClhSHCfyk2yeyoXDQEDPtDAAw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + '@rolldown/binding-linux-s390x-gnu@1.0.3': resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6679,6 +6739,20 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-s390x-gnu@1.1.5': + resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.2.0': + resolution: {integrity: sha512-RzuHrBh8X8Hntd2N4VR02QGEciq/9JhcZoTpR/Cee6otRrlILGCf3cg2ygHuih+ZebUnWmMrDX6ITI85btO6rQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + '@rolldown/binding-linux-x64-gnu@1.0.3': resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6686,6 +6760,20 @@ packages: os: [linux] libc: [glibc] + '@rolldown/binding-linux-x64-gnu@1.1.5': + resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-gnu@1.2.0': + resolution: {integrity: sha512-MK7L0018jjh1jR3mh21G2j1zAVcpscJBlPo2z19pRjv2XOYGRhaV4LyiD8HO6nCDdZln9IFgCMIV5yt4E3klGQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + '@rolldown/binding-linux-x64-musl@1.0.3': resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==} engines: {node: ^20.19.0 || >=22.12.0} @@ -6693,29 +6781,89 @@ packages: os: [linux] libc: [musl] + '@rolldown/binding-linux-x64-musl@1.1.5': + resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rolldown/binding-linux-x64-musl@1.2.0': + resolution: {integrity: sha512-gyrxLQ9NfGb/9LoVnC4kb9miUghw1mghnkfYvNHSnVIXriabnfgGPUP4RLcJm87q3KgYz4FYUG8IDiWUT+CpSw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + '@rolldown/binding-openharmony-arm64@1.0.3': resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] + '@rolldown/binding-openharmony-arm64@1.1.5': + resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-openharmony-arm64@1.2.0': + resolution: {integrity: sha512-/6VFMQGRmrhP77KXDC+StIxGzcNp5JOIyYtw0CQ8gPlzhpiIRucYfoM5FaFamHd5BJYIdH86yfP46l1p3WdrFA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + '@rolldown/binding-wasm32-wasi@1.0.3': resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] + '@rolldown/binding-wasm32-wasi@1.1.5': + resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-wasm32-wasi@1.2.0': + resolution: {integrity: sha512-rwdbUL465kisF24WEJLvP3JrEG6E5GRuIHt5wpMwHGERtHe4Wm2CIvtf5gTBgr2tGOHKh5NdKEAFS2VkOPE91g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + '@rolldown/binding-win32-arm64-msvc@1.0.3': resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] + '@rolldown/binding-win32-arm64-msvc@1.1.5': + resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-arm64-msvc@1.2.0': + resolution: {integrity: sha512-+5suHwRiKGmhwyUaNT8a5QbrBvLFh2DbO910TEmGRH1aSxwrCezodvGQnulv4uiWEIv1Kq4ypRsJ5+O+ry1DiA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + '@rolldown/binding-win32-x64-msvc@1.0.3': resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] + '@rolldown/binding-win32-x64-msvc@1.1.5': + resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.2.0': + resolution: {integrity: sha512-WfFv6/qGufotqBSBzBYwgpCkJBk8Nj7697LL9vTz/XWc67e0r3oewu8iMRwQj3AUL45GVD7wVsPjCsAAtW66Wg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + '@rolldown/pluginutils@1.0.0-beta.27': resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} @@ -7469,9 +7617,6 @@ packages: '@types/minimatch@5.1.2': resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - '@types/minimist@1.2.5': - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} @@ -8429,10 +8574,6 @@ packages: alien-signals@2.0.8: resolution: {integrity: sha512-844G1VLkk0Pe2SJjY0J8vp8ADI73IM4KliNu2OGlYzWpO28NexEUvjHTcFjFX3VXoiUtwTbHxLNI9ImkcoBqzA==} - amdefine@1.0.1: - resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} - engines: {node: '>=0.4.2'} - ansi-colors@1.1.0: resolution: {integrity: sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==} engines: {node: '>=0.10.0'} @@ -8462,10 +8603,6 @@ packages: engines: {'0': node >= 0.8.0} hasBin: true - ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} - ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -8474,10 +8611,6 @@ packages: resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} engines: {node: '>=12'} - ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} - ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -8583,10 +8716,6 @@ packages: resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} engines: {node: '>= 0.4'} - arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} - asn1.js@4.10.1: resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} @@ -8688,21 +8817,6 @@ packages: react-native-b4a: optional: true - babel-code-frame@6.26.0: - resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==} - - babel-core@6.26.3: - resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==} - - babel-generator@6.26.1: - resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==} - - babel-helper-hoist-variables@6.24.1: - resolution: {integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==} - - babel-helpers@6.24.1: - resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==} - babel-jest@29.7.0: resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -8741,9 +8855,6 @@ packages: webpack: optional: true - babel-messages@6.23.0: - resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==} - babel-plugin-add-module-exports@1.0.4: resolution: {integrity: sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==} @@ -8820,27 +8931,9 @@ packages: peerDependencies: '@babel/core': ^7.29.1 - babel-plugin-syntax-dynamic-import@6.18.0: - resolution: {integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA==} - babel-plugin-syntax-trailing-function-commas@6.22.0: resolution: {integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==} - babel-plugin-transform-amd-system-wrapper@0.3.7: - resolution: {integrity: sha512-dRL+LfRZrMfq7N4zlHRpBJq3/Moxg+dVcLIyg1YrYDuecgX4jSzn1f4OwjTrK/Xk+p+afNzNaHRQT3RTF8F6yw==} - - babel-plugin-transform-cjs-system-wrapper@0.6.2: - resolution: {integrity: sha512-POp05zg9/3MtDK5QcmsaOasCKWIgbnma8+DLwQAl45Plw5ub1PEr37rG3eNrHb/dP0LEyWjTT3PYu2TDA0owsA==} - - babel-plugin-transform-es2015-modules-systemjs@6.24.1: - resolution: {integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==} - - babel-plugin-transform-global-system-wrapper@0.3.4: - resolution: {integrity: sha512-WDCmdUeRLqn25gzR7fYmNOWVXwnDOhR0cM0uOJ0kDP3EdF2Y1I6G6y5pBDeZoLOgu5xCe8cEzOMKRljxu0oGdw==} - - babel-plugin-transform-system-register@0.0.1: - resolution: {integrity: sha512-i3Y0KdBxgaZg82RLN3M+wD452yZbf6kE1WhcXpb4ZxHqRnekBljwoYj5N5PuzZ6JVqA3V7tYNea1qwiERFnmVw==} - babel-plugin-transform-typescript-metadata@0.3.2: resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} peerDependencies: @@ -8873,22 +8966,6 @@ packages: peerDependencies: '@babel/core': ^7.29.1 - babel-register@6.26.0: - resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==} - - babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} - - babel-template@6.26.0: - resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==} - - babel-types@6.26.0: - resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} - - babylon@6.18.0: - resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==} - hasBin: true - bail@2.0.2: resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} @@ -9168,10 +9245,6 @@ packages: camel-case@4.1.2: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} - camelcase-keys@7.0.2: - resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==} - engines: {node: '>=12'} - camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} @@ -9206,10 +9279,6 @@ packages: resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} engines: {node: '>=18'} - chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} - chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -9523,10 +9592,6 @@ packages: commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - commander@2.9.0: - resolution: {integrity: sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==} - engines: {node: '>= 0.6.x'} - commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} @@ -9783,10 +9848,6 @@ packages: css-select@6.0.0: resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==} - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} - css-tree@3.2.1: resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} @@ -9826,19 +9887,12 @@ packages: custom-event@1.0.1: resolution: {integrity: sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==} - d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} - damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dash-ast@1.0.0: resolution: {integrity: sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==} - data-uri-to-buffer@0.0.4: - resolution: {integrity: sha512-nntmCbCupHk2zFSWe64pTt0LJ2U6Bt3K1MWgwXiEAj9IEaowSXbGLYN7m8xCb4hbpQl8QSCRBkKT9tFRUMkU7A==} - data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} @@ -9908,18 +9962,6 @@ packages: supports-color: optional: true - decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} - - decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} - - decamelize@5.0.1: - resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==} - engines: {node: '>=10'} - decimal.js@10.6.0: resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} @@ -10031,10 +10073,6 @@ packages: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - detect-indent@4.0.0: - resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==} - engines: {node: '>=0.10.0'} - detect-libc@1.0.3: resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} engines: {node: '>=0.10'} @@ -10259,9 +10297,6 @@ packages: duplexer2@0.1.4: resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} - dx-systemjs-vue-browser@1.1.2: - resolution: {integrity: sha512-Z6ibEOrWKd0ta/rZqDMVax3gScK3C4w5GzzeAor4GNaUJfhV6SjLRmpgdecYRtZTPvCvjlFHxF2Br6cXqa0Jig==} - eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} @@ -10349,10 +10384,6 @@ packages: resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==} engines: {node: '>=10.13.0'} - enhanced-resolve@5.24.3: - resolution: {integrity: sha512-PwKooW9JUzh5chmYfHM3IQl5OkK2u2Nm011MgeZrss3JmFraUx/fqrf78kk8GUMYoibx/14MdwTl/1WKkG7TpQ==} - engines: {node: '>=10.13.0'} - enhanced-resolve@5.24.5: resolution: {integrity: sha512-L1l8TNvomm6UVW5B253AGxQagSQr+vGwhMlrrfRS2qmhx46AMpMVJKQYLvWYbysTMY8VoicOvzHzoHMbyzB+4A==} engines: {node: '>=10.13.0'} @@ -10462,23 +10493,9 @@ packages: resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} - es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} - - es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} - es6-object-assign@1.1.0: resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} - es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} - - es6-template-strings@2.0.1: - resolution: {integrity: sha512-5kTq0dEJfsm/EAteUCgLazcvWEhriVGwWFY3YgIsz89fJd+smi65/N1eS1Hn3B2dAngiqd0EvpXjr8lb7Quzkw==} - esbuild-plugin-vue3@0.3.2: resolution: {integrity: sha512-KqZUPlIUS4vJLSexV3q5hgqIlsMWzlPtIuvZ1epZQvw/wJ/4vEPzEC1HQZduoHvUYvtnG703hsP1PsdpjTJ3ug==} peerDependencies: @@ -10776,14 +10793,6 @@ packages: jiti: optional: true - esniff@1.1.3: - resolution: {integrity: sha512-SLBLpfE7xWgF/HbzhVuAwqnJDRqSCNZqcqaIMVm+f+PbTp1kFRWu6BuT83SATb4Tp+ovr+S+u7vDH7/UErAOkw==} - engines: {node: '>=0.10'} - - esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} - esotope-hammerhead@0.6.9: resolution: {integrity: sha512-rD9Jbh0SFJzKe1RGfsbwpN5IBdubHKC61xRW7A5BPgBTtEnFxsWOqPITVhBaVDc4r5VPmh+Y1U1wmqReTfn1AQ==} @@ -10830,9 +10839,6 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} - event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} - event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} @@ -10914,9 +10920,6 @@ packages: resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==} engines: {node: '>= 18'} - ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} - extend-shallow@3.0.2: resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} engines: {node: '>=0.10.0'} @@ -11011,10 +11014,6 @@ packages: file-entry-cache@10.1.4: resolution: {integrity: sha512-5XRUFc0WTtUbjfGzEwXc42tiGxQHBmtbUG1h9L2apu4SulCGN3Hqm//9D6FAolf8MYNL7f/YlJl9vy08pj5JuA==} - file-entry-cache@7.0.2: - resolution: {integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==} - engines: {node: '>=12.0.0'} - file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} @@ -11297,10 +11296,6 @@ packages: resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} engines: {node: 18 || 20 || >=22} - glob@5.0.15: - resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} - deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me - glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me @@ -11378,9 +11373,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - graceful-readlink@1.0.1: - resolution: {integrity: sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==} - graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} @@ -11393,17 +11385,9 @@ packages: handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} - hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} - harmony-reflect@1.6.2: resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} - has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} - has-bigints@1.1.0: resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} engines: {node: '>= 0.4'} @@ -11515,10 +11499,6 @@ packages: hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} - home-or-tmp@2.0.0: - resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==} - engines: {node: '>=0.10.0'} - hono@4.13.0: resolution: {integrity: sha512-jhunvfHWxd7J5EFfSgH4xsYJzSe/lfqbUCxiyyeaQasUsXeEHXtzVid+7EOGByc5JnFa23SSFL3Y2RV/z1T+eQ==} engines: {node: '>=16.9.0'} @@ -11536,10 +11516,6 @@ packages: hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} - hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} - hosted-git-info@9.0.2: resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==} engines: {node: ^20.17.0 || >=22.9.0} @@ -11770,10 +11746,6 @@ packages: resolution: {integrity: sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==} engines: {node: '>=6'} - import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - import-local@3.2.0: resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==} engines: {node: '>=8'} @@ -12077,10 +12049,6 @@ packages: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} - is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} - is-plain-obj@4.1.0: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} @@ -12669,10 +12637,6 @@ packages: canvas: optional: true - jsesc@1.3.0: - resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==} - hasBin: true - jsesc@3.0.2: resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} engines: {node: '>=6'} @@ -12811,9 +12775,6 @@ packages: knockout@3.5.3: resolution: {integrity: sha512-6iPv8M/xDPYfsiKyEyIPcSYBt8L+FZoJS/frLT8Nq3n9kMvP+WZ6ZPehYZV5c22Qc64Ie7unmTqYqgSdCB1Taw==} - known-css-properties@0.29.0: - resolution: {integrity: sha512-Ne7wqW7/9Cz54PDt4I3tcV+hAyat8ypyOGzYRJQfdxnnjeWsTxt1cy8pjvvKeI5kfXuyvULyeeAvwvvtAX3ayQ==} - known-css-properties@0.35.0: resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==} @@ -13219,14 +13180,6 @@ packages: makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} - - map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} - match-url-wildcard@0.0.4: resolution: {integrity: sha512-R1XhQaamUZPWLOPtp4ig5j+3jctN+skhgRmEQTUamMzmNtRG69QEirQs0NZKLtHMR7tzWpmtnS4Eqv65DcgXUA==} @@ -13258,9 +13211,6 @@ packages: mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} - mdn-data@2.27.1: resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} @@ -13292,10 +13242,6 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - meow@10.1.5: - resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - meow@13.2.0: resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} engines: {node: '>=18'} @@ -13479,10 +13425,6 @@ packages: resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==} engines: {node: '>=16 || 14 >=14.17'} - minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} - minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -13717,9 +13659,6 @@ packages: nested-error-stacks@2.1.1: resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} - next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - ng-packagr@20.3.2: resolution: {integrity: sha512-yW5ME0hqTz38r/th/7zVwX5oSIw1FviSA2PUlGZdVjghDme/KX6iiwmOBmlt9E9whNmwijEC6Gn3KKbrsBx8ig==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} @@ -13827,10 +13766,6 @@ packages: normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} - normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} - normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} @@ -14052,14 +13987,6 @@ packages: os-family@1.1.0: resolution: {integrity: sha512-E3Orl5pvDJXnVmpaAA2TeNNpNhTMl4o5HghuWhOivBjEiTnJSrMYSa5uZMek1lBEvu8kKEsa2YgVcGFVDqX/9w==} - os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} - - os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} - own-keys@1.0.1: resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} engines: {node: '>= 0.4'} @@ -14526,10 +14453,6 @@ packages: resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} - private@0.1.8: - resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==} - engines: {node: '>= 0.6'} - probe-image-size@7.3.0: resolution: {integrity: sha512-7CaDeBwiAbh6ohXsvLbAZhO7wzsZAmaevfxe39qvCwRh8LyaZfDlBGGLU1CCTgrTLtCOdwBBhjOrIHaIIimHfQ==} @@ -14671,10 +14594,6 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} - quill-delta@5.1.0: resolution: {integrity: sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==} engines: {node: '>= 12.0.0'} @@ -14791,18 +14710,10 @@ packages: read-only-stream@2.0.0: resolution: {integrity: sha512-3ALe0bjBVZtkdWKIcThYpQCLbBMd/+Tbh2CDSrAIDO3UsZ4Xs+tnyjv2MjCOMMgBG+AsUOeuP1cgtY1INISc8w==} - read-pkg-up@8.0.0: - resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==} - engines: {node: '>=12'} - read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} - read-pkg@6.0.0: - resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==} - engines: {node: '>=12'} - readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -14850,10 +14761,6 @@ packages: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} - redent@4.0.0: - resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==} - engines: {node: '>=12'} - reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} @@ -14871,9 +14778,6 @@ packages: regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - regenerator-runtime@0.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} - regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} @@ -14942,10 +14846,6 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - repeating@2.0.1: - resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} - engines: {node: '>=0.10.0'} - replace-ext@1.0.1: resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} engines: {node: '>= 0.10'} @@ -15109,10 +15009,6 @@ packages: rrule@2.8.1: resolution: {integrity: sha512-hM3dHSBMeaJ0Ktp7W38BJZ7O1zOgaFEsn41PDk+yHoEtfLV+PoJt9E9xAlZiWgf/iqEqionN0ebHFZIDAp+iGw==} - rsvp@3.6.2: - resolution: {integrity: sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==} - engines: {node: 0.12.* || 4.* || 6.* || >= 7.*} - run-applescript@7.1.0: resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} engines: {node: '>=18'} @@ -15538,10 +15434,6 @@ packages: sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - slash@1.0.0: - resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} - engines: {node: '>=0.10.0'} - slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} @@ -15608,12 +15500,6 @@ packages: peerDependencies: webpack: ^5.72.1 - source-map-support@0.2.10: - resolution: {integrity: sha512-gGKOSat73z0V8wBKo9AGxZZyekczBireh1hHktbt+kb9acsCB5OfVCF2DCWlztcQ3r5oNN7f2BL0B2xOcoJ/DQ==} - - source-map-support@0.4.18: - resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} - source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} @@ -15623,10 +15509,6 @@ packages: source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} - source-map@0.1.32: - resolution: {integrity: sha512-htQyLrrRLkQ87Zfrir4/yN+vAUd6DNjVayEjTSHXu29AYQJw57I4/xEL/M6p6E/woPNJwvZt6rVlzc7gFEJccQ==} - engines: {node: '>=0.8.0'} - source-map@0.5.7: resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} @@ -15804,10 +15686,6 @@ packages: resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} engines: {node: '>=4'} - strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} - strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} @@ -15939,11 +15817,6 @@ packages: peerDependencies: stylelint: ^16.0.2 - stylelint@15.11.0: - resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==} - engines: {node: ^14.13.1 || >=16.0.0} - hasBin: true - stylelint@16.22.0: resolution: {integrity: sha512-SVEMTdjKNV4ollUrIY9ordZ36zHv2/PHzPjfPMau370MlL2VYXeLgSNMMiEbLGRO8RmD2R8/BVUeF2DfnfkC0w==} engines: {node: '>=18.12.0'} @@ -15957,10 +15830,6 @@ packages: subarg@1.0.0: resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==} - supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} - supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} @@ -16012,9 +15881,6 @@ packages: syntax-error@1.4.0: resolution: {integrity: sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==} - systemjs-builder@0.16.15: - resolution: {integrity: sha512-C18G//KWWwQpstAVBUDt0YbbqvSFVVtr0MFqtf2zB4U/cePOA00Btcja++mzlFLMnepVpDv0GdtfE/6A8lrxeA==} - systemjs-plugin-babel@0.0.25: resolution: {integrity: sha512-RMKSizWWlw4+IpDB385ugxn7Owd9W+HEtjYDQ6yO1FpsnER/vk6FbXRweUF+mvRi6EHgk8vDdUdtui7ReDwX3w==} @@ -16030,9 +15896,6 @@ packages: systemjs@0.19.41: resolution: {integrity: sha512-8E9CmZ01dIr52po2LNhc3QuKyeSTyvQfshHMi3lekSbEOdR9OAUOX2X+wPKunZX3CpudM6w3r8eTCjGQrK79Wg==} - systemjs@0.19.47: - resolution: {integrity: sha512-6P+63y7bQhZXqOcim7QU0TKEjCmQArFkKa+CxlDchIerej7wrXLUoyGuWk+L0yC5rYrZ5LI6Eh1QOawttQq5xw==} - table@6.9.0: resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==} engines: {node: '>=10.0.0'} @@ -16216,10 +16079,6 @@ packages: resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} engines: {node: '>= 0.4'} - to-fast-properties@1.0.3: - resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} - engines: {node: '>=0.10.0'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -16243,11 +16102,6 @@ packages: resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} engines: {node: '>=12'} - traceur@0.0.105: - resolution: {integrity: sha512-WCcn9XUOl8ZxAlWFvZK2N36bwXwc+WqB72rMx8/XXA57ba3mtz/L9piMxiefM5RwFZlxK22SC/yKKQw1VcJsXA==} - engines: {node: '>=0.10'} - hasBin: true - tree-dump@1.1.0: resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==} engines: {node: '>=10.0'} @@ -16261,14 +16115,6 @@ packages: trim-lines@3.0.1: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} - trim-newlines@4.1.1: - resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} - engines: {node: '>=12'} - - trim-right@1.0.1: - resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} - engines: {node: '>=0.10.0'} - trim-trailing-lines@2.1.0: resolution: {integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==} @@ -16453,9 +16299,6 @@ packages: resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==} engines: {node: '>= 18'} - type@2.7.3: - resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==} - typed-array-buffer@1.0.3: resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} engines: {node: '>= 0.4'} @@ -17408,9 +17251,6 @@ packages: zod@4.1.13: resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==} - zod@4.4.2: - resolution: {integrity: sha512-IynmDyxsEsb9RKzO3J9+4SxXnl2FTFSzNBaKKaMV6tsSk0rw9gYw9gs+JFCq/qk2LCZ78KDwyj+Z289TijSkUw==} - zod@4.4.3: resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} @@ -17716,13 +17556,13 @@ snapshots: - webpack-cli - yaml - '@angular-devkit/build-angular@22.1.2(9ab32ed578a68caf92174a202d695664)': + '@angular-devkit/build-angular@22.1.2(5ff3e14daa3065d6e7c118ba510a3c83)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2201.2(chokidar@5.0.0) '@angular-devkit/build-webpack': 0.2201.2(chokidar@5.0.0)(webpack-dev-server@5.2.6(tslib@2.8.1)(webpack@5.109.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(postcss@8.5.23)))(webpack@5.109.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(postcss@8.5.23)) '@angular-devkit/core': 22.1.2(chokidar@5.0.0) - '@angular/build': 22.1.2(7d59fb6e9d8777bab2b063c5a6c353b4) + '@angular/build': 22.1.2(3e08e0bd92b41fa22a30f22cc0508f3a) '@angular/compiler-cli': 22.1.0(@angular/compiler@22.1.0)(typescript@6.0.3) '@babel/core': 8.0.1 '@babel/generator': 8.0.0 @@ -18059,7 +17899,7 @@ snapshots: - tsx - yaml - '@angular/build@22.1.2(7d59fb6e9d8777bab2b063c5a6c353b4)': + '@angular/build@22.1.2(3e08e0bd92b41fa22a30f22cc0508f3a)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2201.2(chokidar@5.0.0) @@ -18068,8 +17908,8 @@ snapshots: '@babel/core': 8.0.1 '@babel/helper-annotate-as-pure': 8.0.0 '@babel/helper-split-export-declaration': 7.24.7 - '@inquirer/confirm': 6.1.1(@types/node@26.1.1) - '@vitejs/plugin-basic-ssl': 2.3.0(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0)) + '@inquirer/confirm': 6.1.1(@types/node@20.19.37) + '@vitejs/plugin-basic-ssl': 2.3.0(vite@8.1.5(@types/node@20.19.37)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0)) beasties: 0.4.3 browserslist: 4.28.7 esbuild: 0.28.1 @@ -18089,7 +17929,7 @@ snapshots: tinyglobby: 0.2.17 tslib: 2.8.1 typescript: 6.0.3 - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.1.5(@types/node@20.19.37)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0) watchpack: 2.5.2 optionalDependencies: '@angular/core': 22.1.0(@angular/compiler@22.1.0)(rxjs@7.8.2)(zone.js@0.16.2) @@ -18115,14 +17955,14 @@ snapshots: - tsx - yaml - '@angular/cli@20.3.24(@types/node@20.11.17)(chokidar@4.0.3)(supports-color@7.2.0)': + '@angular/cli@20.3.24(@types/node@20.11.17)(chokidar@4.0.3)': dependencies: '@angular-devkit/architect': 0.2003.24(chokidar@4.0.3) '@angular-devkit/core': 20.3.24(chokidar@4.0.3) '@angular-devkit/schematics': 20.3.24(chokidar@4.0.3) '@inquirer/prompts': 7.8.2(@types/node@20.11.17) '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@20.11.17))(@types/node@20.11.17)(listr2@9.0.1) - '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -18130,7 +17970,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4(supports-color@7.2.0) + pacote: 21.0.4 resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -18148,7 +17988,7 @@ snapshots: '@angular-devkit/schematics': 20.3.24(chokidar@4.0.3) '@inquirer/prompts': 7.8.2(@types/node@20.19.37) '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@20.19.37))(@types/node@20.19.37)(listr2@9.0.1) - '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -18156,7 +17996,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4(supports-color@7.2.0) + pacote: 21.0.4 resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -18174,7 +18014,7 @@ snapshots: '@angular-devkit/schematics': 20.3.24(chokidar@4.0.3) '@inquirer/prompts': 7.8.2(@types/node@26.1.1) '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@26.1.1))(@types/node@26.1.1)(listr2@9.0.1) - '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -18182,7 +18022,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4(supports-color@7.2.0) + pacote: 21.0.4 resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -18193,13 +18033,13 @@ snapshots: - chokidar - supports-color - '@angular/cli@22.1.2(@types/node@26.1.1)(chokidar@5.0.0)': + '@angular/cli@22.1.2(@types/node@20.19.37)(chokidar@5.0.0)': dependencies: '@angular-devkit/architect': 0.2201.2(chokidar@5.0.0) '@angular-devkit/core': 22.1.2(chokidar@5.0.0) '@angular-devkit/schematics': 22.1.2(chokidar@5.0.0) - '@inquirer/prompts': 8.5.2(@types/node@26.1.1) - '@listr2/prompt-adapter-inquirer': 4.2.4(@inquirer/prompts@8.5.2(@types/node@26.1.1))(@types/node@26.1.1)(listr2@10.2.2) + '@inquirer/prompts': 8.5.2(@types/node@20.19.37) + '@listr2/prompt-adapter-inquirer': 4.2.4(@inquirer/prompts@8.5.2(@types/node@20.19.37))(@types/node@20.19.37)(listr2@10.2.2) '@modelcontextprotocol/sdk': 1.29.0(zod@4.4.3) '@schematics/angular': 22.1.2(chokidar@5.0.0) jsonc-parser: 3.3.1 @@ -18311,7 +18151,7 @@ snapshots: '@standard-schema/spec': 1.1.0 rxjs: 7.8.2 tslib: 2.8.1 - zod: 4.4.2 + zod: 4.4.3 '@angular/platform-browser-dynamic@20.3.27(@angular/common@20.3.27(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.27)(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.27(@angular/common@20.3.27(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.27(@angular/compiler@20.3.27)(rxjs@7.8.2)(zone.js@0.15.1)))': dependencies: @@ -18429,17 +18269,17 @@ snapshots: obug: 2.1.4 semver: 7.8.5 - '@babel/eslint-parser@7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))': + '@babel/eslint-parser@7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1))': dependencies: '@babel/core': 7.29.7 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 - '@babel/eslint-parser@7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1))': + '@babel/eslint-parser@7.29.7(@babel/core@8.0.1)(eslint@9.39.4(jiti@2.6.1))': dependencies: - '@babel/core': 7.29.7 + '@babel/core': 8.0.1 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 9.39.4(jiti@2.6.1) eslint-visitor-keys: 2.1.0 @@ -18564,7 +18404,7 @@ snapshots: regexpu-core: 6.4.0 semver: 7.8.5 - '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.29.7)(supports-color@7.2.0)': + '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-compilation-targets': 7.29.7 @@ -18575,7 +18415,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.29.7)(supports-color@7.2.0)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-compilation-targets': 7.29.7 @@ -19999,14 +19839,14 @@ snapshots: '@babel/core': 8.0.1 '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1) - '@babel/plugin-transform-runtime@7.23.3(@babel/core@7.29.7)(supports-color@7.2.0)': + '@babel/plugin-transform-runtime@7.23.3(@babel/core@7.29.7)': dependencies: '@babel/core': 7.29.7 '@babel/helper-module-imports': 7.29.7 '@babel/helper-plugin-utils': 7.29.7 babel-plugin-polyfill-corejs2: 0.4.17(@babel/core@7.29.7) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.29.7)(supports-color@7.2.0) - babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.29.7)(supports-color@7.2.0) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.29.7) + babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.29.7) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20652,23 +20492,12 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1)': - dependencies: - '@csstools/css-tokenizer': 2.4.1 - '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/css-tokenizer': 3.0.4 - '@csstools/css-tokenizer@2.4.1': {} - '@csstools/css-tokenizer@3.0.4': {} - '@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': - dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) @@ -20679,10 +20508,6 @@ snapshots: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)': - dependencies: - postcss-selector-parser: 6.1.2 - '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.1)': dependencies: postcss-selector-parser: 7.1.1 @@ -20734,6 +20559,12 @@ snapshots: tslib: 2.8.1 optional: true + '@emnapi/core@1.11.1': + dependencies: + '@emnapi/wasi-threads': 1.2.2 + tslib: 2.8.1 + optional: true + '@emnapi/core@1.11.2': dependencies: '@emnapi/wasi-threads': 1.2.2 @@ -20749,6 +20580,11 @@ snapshots: tslib: 2.8.1 optional: true + '@emnapi/runtime@1.11.1': + dependencies: + tslib: 2.8.1 + optional: true + '@emnapi/runtime@1.11.2': dependencies: tslib: 2.8.1 @@ -20848,11 +20684,6 @@ snapshots: '@esbuild/win32-x64@0.28.1': optional: true - '@eslint-community/eslint-utils@4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))': - dependencies: - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.10.1(eslint@9.39.4(jiti@2.6.1))': dependencies: eslint: 9.39.4(jiti@2.6.1) @@ -20867,13 +20698,13 @@ snapshots: '@eslint-stylistic/metadata@2.13.0': {} - '@eslint/compat@1.4.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))': + '@eslint/compat@1.4.1(eslint@9.39.4(jiti@2.6.1))': dependencies: '@eslint/core': 0.17.0 optionalDependencies: - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) - '@eslint/config-array@0.21.2(supports-color@7.2.0)': + '@eslint/config-array@0.21.2': dependencies: '@eslint/object-schema': 2.1.7 debug: 4.4.3(supports-color@7.2.0) @@ -20996,14 +20827,14 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/checkbox@5.2.1(@types/node@26.1.1)': + '@inquirer/checkbox@5.2.1(@types/node@20.19.37)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/confirm@5.1.14(@types/node@20.11.17)': dependencies: @@ -21040,12 +20871,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/confirm@6.1.1(@types/node@26.1.1)': + '@inquirer/confirm@6.1.1(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/core@10.3.2(@types/node@20.11.17)': dependencies: @@ -21086,17 +20917,17 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/core@11.2.1(@types/node@26.1.1)': + '@inquirer/core@11.2.1(@types/node@20.19.37)': dependencies: '@inquirer/ansi': 2.0.7 '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/type': 4.0.7(@types/node@20.19.37) cli-width: 4.1.0 fast-wrap-ansi: 0.2.2 mute-stream: 3.0.0 signal-exit: 4.1.0 optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/editor@4.2.23(@types/node@20.11.17)': dependencies: @@ -21122,13 +20953,13 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/editor@5.2.2(@types/node@26.1.1)': + '@inquirer/editor@5.2.2(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/external-editor': 3.0.3(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/external-editor': 3.0.3(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/expand@4.0.23(@types/node@20.11.17)': dependencies: @@ -21154,12 +20985,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/expand@5.1.1(@types/node@26.1.1)': + '@inquirer/expand@5.1.1(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/external-editor@1.0.3(@types/node@20.11.17)': dependencies: @@ -21182,12 +21013,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/external-editor@3.0.3(@types/node@26.1.1)': + '@inquirer/external-editor@3.0.3(@types/node@20.19.37)': dependencies: chardet: 2.1.1 iconv-lite: 0.7.2 optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/figures@1.0.15': {} @@ -21214,12 +21045,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/input@5.1.2(@types/node@26.1.1)': + '@inquirer/input@5.1.2(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/number@3.0.23(@types/node@20.11.17)': dependencies: @@ -21242,12 +21073,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/number@4.1.1(@types/node@26.1.1)': + '@inquirer/number@4.1.1(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/password@4.0.23(@types/node@20.11.17)': dependencies: @@ -21273,13 +21104,13 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/password@5.1.1(@types/node@26.1.1)': + '@inquirer/password@5.1.1(@types/node@20.19.37)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/prompts@7.8.2(@types/node@20.11.17)': dependencies: @@ -21326,20 +21157,20 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/prompts@8.5.2(@types/node@26.1.1)': + '@inquirer/prompts@8.5.2(@types/node@20.19.37)': dependencies: - '@inquirer/checkbox': 5.2.1(@types/node@26.1.1) - '@inquirer/confirm': 6.1.1(@types/node@26.1.1) - '@inquirer/editor': 5.2.2(@types/node@26.1.1) - '@inquirer/expand': 5.1.1(@types/node@26.1.1) - '@inquirer/input': 5.1.2(@types/node@26.1.1) - '@inquirer/number': 4.1.1(@types/node@26.1.1) - '@inquirer/password': 5.1.1(@types/node@26.1.1) - '@inquirer/rawlist': 5.3.1(@types/node@26.1.1) - '@inquirer/search': 4.2.1(@types/node@26.1.1) - '@inquirer/select': 5.2.1(@types/node@26.1.1) + '@inquirer/checkbox': 5.2.1(@types/node@20.19.37) + '@inquirer/confirm': 6.1.1(@types/node@20.19.37) + '@inquirer/editor': 5.2.2(@types/node@20.19.37) + '@inquirer/expand': 5.1.1(@types/node@20.19.37) + '@inquirer/input': 5.1.2(@types/node@20.19.37) + '@inquirer/number': 4.1.1(@types/node@20.19.37) + '@inquirer/password': 5.1.1(@types/node@20.19.37) + '@inquirer/rawlist': 5.3.1(@types/node@20.19.37) + '@inquirer/search': 4.2.1(@types/node@20.19.37) + '@inquirer/select': 5.2.1(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/rawlist@4.1.11(@types/node@20.11.17)': dependencies: @@ -21365,12 +21196,12 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/rawlist@5.3.1(@types/node@26.1.1)': + '@inquirer/rawlist@5.3.1(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/search@3.2.2(@types/node@20.11.17)': dependencies: @@ -21399,13 +21230,13 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/search@4.2.1(@types/node@26.1.1)': + '@inquirer/search@4.2.1(@types/node@20.19.37)': dependencies: - '@inquirer/core': 11.2.1(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/select@4.4.2(@types/node@20.11.17)': dependencies: @@ -21437,14 +21268,14 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/select@5.2.1(@types/node@26.1.1)': + '@inquirer/select@5.2.1(@types/node@20.19.37)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@26.1.1) + '@inquirer/core': 11.2.1(@types/node@20.19.37) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/type': 4.0.7(@types/node@20.19.37) optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@inquirer/type@3.0.10(@types/node@20.11.17)': optionalDependencies: @@ -21458,9 +21289,9 @@ snapshots: optionalDependencies: '@types/node': 26.1.1 - '@inquirer/type@4.0.7(@types/node@26.1.1)': + '@inquirer/type@4.0.7(@types/node@20.19.37)': optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 '@isaacs/cliui@8.0.2': dependencies: @@ -21817,7 +21648,7 @@ snapshots: - supports-color - ts-node - '@jest/core@30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3))': + '@jest/core@30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3))': dependencies: '@jest/console': 30.2.0 '@jest/pattern': 30.0.1 @@ -21832,7 +21663,7 @@ snapshots: exit-x: 0.2.2 graceful-fs: 4.2.11 jest-changed-files: 30.2.0 - jest-config: 30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + jest-config: 30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -22425,10 +22256,10 @@ snapshots: transitivePeerDependencies: - '@types/node' - '@listr2/prompt-adapter-inquirer@4.2.4(@inquirer/prompts@8.5.2(@types/node@26.1.1))(@types/node@26.1.1)(listr2@10.2.2)': + '@listr2/prompt-adapter-inquirer@4.2.4(@inquirer/prompts@8.5.2(@types/node@20.19.37))(@types/node@20.19.37)(listr2@10.2.2)': dependencies: - '@inquirer/prompts': 8.5.2(@types/node@26.1.1) - '@inquirer/type': 4.0.7(@types/node@26.1.1) + '@inquirer/prompts': 8.5.2(@types/node@20.19.37) + '@inquirer/type': 4.0.7(@types/node@20.19.37) listr2: 10.2.2 transitivePeerDependencies: - '@types/node' @@ -22505,7 +22336,7 @@ snapshots: '@lezer/lr': 1.4.10 json5: 2.2.3 - '@modelcontextprotocol/sdk@1.26.0(supports-color@7.2.0)(zod@4.1.13)': + '@modelcontextprotocol/sdk@1.26.0(zod@4.1.13)': dependencies: '@hono/node-server': 2.0.12(hono@4.13.0) ajv: 8.20.0 @@ -22515,7 +22346,7 @@ snapshots: cross-spawn: 7.0.6 eventsource: 3.0.7 eventsource-parser: 3.0.8 - express: 5.2.1(supports-color@7.2.0) + express: 5.2.1 express-rate-limit: 8.3.2(express@5.2.1) hono: 4.13.0 jose: 6.2.2 @@ -22537,7 +22368,7 @@ snapshots: cross-spawn: 7.0.6 eventsource: 3.0.7 eventsource-parser: 3.0.8 - express: 5.2.1(supports-color@7.2.0) + express: 5.2.1 express-rate-limit: 8.3.2(express@5.2.1) hono: 4.13.0 jose: 6.2.2 @@ -22670,6 +22501,13 @@ snapshots: '@tybys/wasm-util': 0.10.3 optional: true + '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@tybys/wasm-util': 0.10.3 + optional: true + '@napi-rs/wasm-runtime@1.2.2(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2)': dependencies: '@emnapi/core': 1.11.2 @@ -23799,6 +23637,12 @@ snapshots: '@rolldown/binding-android-arm64@1.0.3': optional: true + '@rolldown/binding-android-arm64@1.1.5': + optional: true + + '@rolldown/binding-android-arm64@1.2.0': + optional: true + '@rolldown/binding-darwin-arm64@1.0.3': optional: true @@ -23811,33 +23655,93 @@ snapshots: '@rolldown/binding-darwin-x64@1.0.3': optional: true + '@rolldown/binding-darwin-x64@1.1.5': + optional: true + + '@rolldown/binding-darwin-x64@1.2.0': + optional: true + '@rolldown/binding-freebsd-x64@1.0.3': optional: true + '@rolldown/binding-freebsd-x64@1.1.5': + optional: true + + '@rolldown/binding-freebsd-x64@1.2.0': + optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.1.5': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.2.0': + optional: true + '@rolldown/binding-linux-arm64-gnu@1.0.3': optional: true + '@rolldown/binding-linux-arm64-gnu@1.1.5': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.2.0': + optional: true + '@rolldown/binding-linux-arm64-musl@1.0.3': optional: true + '@rolldown/binding-linux-arm64-musl@1.1.5': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.2.0': + optional: true + '@rolldown/binding-linux-ppc64-gnu@1.0.3': optional: true + '@rolldown/binding-linux-ppc64-gnu@1.1.5': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.2.0': + optional: true + '@rolldown/binding-linux-s390x-gnu@1.0.3': optional: true + '@rolldown/binding-linux-s390x-gnu@1.1.5': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.2.0': + optional: true + '@rolldown/binding-linux-x64-gnu@1.0.3': optional: true + '@rolldown/binding-linux-x64-gnu@1.1.5': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.2.0': + optional: true + '@rolldown/binding-linux-x64-musl@1.0.3': optional: true + '@rolldown/binding-linux-x64-musl@1.1.5': + optional: true + + '@rolldown/binding-linux-x64-musl@1.2.0': + optional: true + '@rolldown/binding-openharmony-arm64@1.0.3': optional: true + '@rolldown/binding-openharmony-arm64@1.1.5': + optional: true + + '@rolldown/binding-openharmony-arm64@1.2.0': + optional: true + '@rolldown/binding-wasm32-wasi@1.0.3': dependencies: '@emnapi/core': 1.10.0 @@ -23845,12 +23749,38 @@ snapshots: '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true + '@rolldown/binding-wasm32-wasi@1.1.5': + dependencies: + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 + '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) + optional: true + + '@rolldown/binding-wasm32-wasi@1.2.0': + dependencies: + '@emnapi/core': 1.11.2 + '@emnapi/runtime': 1.11.2 + '@napi-rs/wasm-runtime': 1.2.2(@emnapi/core@1.11.2)(@emnapi/runtime@1.11.2) + optional: true + '@rolldown/binding-win32-arm64-msvc@1.0.3': optional: true + '@rolldown/binding-win32-arm64-msvc@1.1.5': + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.2.0': + optional: true + '@rolldown/binding-win32-x64-msvc@1.0.3': optional: true + '@rolldown/binding-win32-x64-msvc@1.1.5': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.2.0': + optional: true + '@rolldown/pluginutils@1.0.0-beta.27': {} '@rolldown/pluginutils@1.0.1': {} @@ -24071,10 +24001,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@sigstore/tuf@4.0.2(supports-color@7.2.0)': + '@sigstore/tuf@4.0.2': dependencies: '@sigstore/protobuf-specs': 0.5.1 - tuf-js: 4.1.0(supports-color@7.2.0) + tuf-js: 4.1.0 transitivePeerDependencies: - supports-color @@ -24278,16 +24208,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@stylistic/eslint-plugin@5.10.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))': - dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - '@typescript-eslint/types': 8.62.0 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-visitor-keys: 4.2.1 - espree: 10.4.0 - estraverse: 5.3.0 - picomatch: 4.0.4 - '@stylistic/eslint-plugin@5.10.0(eslint@9.39.4(jiti@2.6.1))': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) @@ -24298,7 +24218,7 @@ snapshots: estraverse: 5.3.0 picomatch: 4.0.4 - '@stylistic/stylelint-plugin@3.1.3(stylelint@16.22.0(typescript@6.0.3))': + '@stylistic/stylelint-plugin@3.1.3(stylelint@16.22.0(typescript@5.9.3))': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 @@ -24308,7 +24228,7 @@ snapshots: postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 style-search: 0.1.0 - stylelint: 16.22.0(typescript@6.0.3) + stylelint: 16.22.0(typescript@5.9.3) '@swc/core-darwin-arm64@1.15.30': optional: true @@ -24379,7 +24299,7 @@ snapshots: dependencies: axe-core: 4.11.3 chalk: 2.4.2 - testcafe: 3.7.5(supports-color@7.2.0) + testcafe: 3.7.5 '@testing-library/dom@10.4.1': dependencies: @@ -24650,8 +24570,6 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/minimist@1.2.5': {} - '@types/ms@2.1.0': {} '@types/node-fetch@2.6.13': @@ -24799,16 +24717,16 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3) + '@typescript-eslint/type-utils': 6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -24819,22 +24737,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': - dependencies: - '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/scope-manager': 8.52.0 - '@typescript-eslint/type-utils': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/utils': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.52.0 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - ignore: 7.0.5 - natural-compare: 1.4.0 - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@eslint-community/regexpp': 4.12.2 @@ -24883,10 +24785,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3)': + '@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) '@typescript-eslint/scope-manager': 8.52.0 '@typescript-eslint/type-utils': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) '@typescript-eslint/utils': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) @@ -24907,31 +24809,19 @@ snapshots: - supports-color - typescript - '@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': - dependencies: - '@typescript-eslint/scope-manager': 8.52.0 - '@typescript-eslint/types': 8.52.0 - '@typescript-eslint/typescript-estree': 8.52.0(typescript@6.0.3) - '@typescript-eslint/visitor-keys': 8.52.0 - debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@typescript-eslint/scope-manager': 8.52.0 @@ -24968,6 +24858,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.52.0 + '@typescript-eslint/types': 8.52.0 + '@typescript-eslint/typescript-estree': 8.52.0(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.52.0 + debug: 4.4.3(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/project-service@8.52.0(typescript@4.9.5)': dependencies: '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@4.9.5) @@ -25031,7 +24933,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.62.0(supports-color@7.2.0)(typescript@4.9.5)': + '@typescript-eslint/project-service@8.58.2(typescript@5.9.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@5.9.3) + '@typescript-eslint/types': 8.62.0 + debug: 4.4.3(supports-color@7.2.0) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.62.0(typescript@4.9.5)': dependencies: '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@4.9.5) '@typescript-eslint/types': 8.62.0 @@ -25094,6 +25005,10 @@ snapshots: dependencies: typescript: 5.8.3 + '@typescript-eslint/tsconfig-utils@8.58.2(typescript@5.9.3)': + dependencies: + typescript: 5.9.3 + '@typescript-eslint/tsconfig-utils@8.58.2(typescript@6.0.3)': dependencies: typescript: 6.0.3 @@ -25114,30 +25029,18 @@ snapshots: dependencies: typescript: 6.0.3 - '@typescript-eslint/type-utils@6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/type-utils@6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) - '@typescript-eslint/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3) + '@typescript-eslint/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) ts-api-utils: 1.4.3(typescript@6.0.3) optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': - dependencies: - '@typescript-eslint/types': 8.52.0 - '@typescript-eslint/typescript-estree': 8.52.0(typescript@6.0.3) - '@typescript-eslint/utils': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3) - debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - ts-api-utils: 2.5.0(typescript@6.0.3) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/type-utils@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@typescript-eslint/types': 8.52.0 @@ -25361,9 +25264,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.62.0(supports-color@7.2.0)(typescript@4.9.5)': + '@typescript-eslint/typescript-estree@8.58.2(typescript@5.9.3)': + dependencies: + '@typescript-eslint/project-service': 8.58.2(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.58.2(typescript@5.9.3) + '@typescript-eslint/types': 8.58.2 + '@typescript-eslint/visitor-keys': 8.58.2 + debug: 4.4.3(supports-color@7.2.0) + minimatch: 10.2.4 + semver: 7.8.5 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.62.0(typescript@4.9.5)': dependencies: - '@typescript-eslint/project-service': 8.62.0(supports-color@7.2.0)(typescript@4.9.5) + '@typescript-eslint/project-service': 8.62.0(typescript@4.9.5) '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@4.9.5) '@typescript-eslint/types': 8.62.0 '@typescript-eslint/visitor-keys': 8.62.0 @@ -25391,42 +25309,31 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3)': + '@typescript-eslint/utils@6.21.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@types/json-schema': 7.0.15 '@types/semver': 7.7.1 '@typescript-eslint/scope-manager': 6.21.0 '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) semver: 7.8.5 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.18.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/utils@7.18.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/scope-manager': 7.18.0 '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(typescript@6.0.3)': - dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - '@typescript-eslint/scope-manager': 8.52.0 - '@typescript-eslint/types': 8.52.0 - '@typescript-eslint/typescript-estree': 8.52.0(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - '@typescript-eslint/utils@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) @@ -25471,13 +25378,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.58.2 '@typescript-eslint/types': 8.58.2 '@typescript-eslint/typescript-estree': 8.58.2(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -25504,23 +25411,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3)': + '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.58.2 '@typescript-eslint/types': 8.58.2 - '@typescript-eslint/typescript-estree': 8.58.2(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) - typescript: 6.0.3 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.62.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5)': + '@typescript-eslint/utils@8.62.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.62.0 '@typescript-eslint/types': 8.62.0 - '@typescript-eslint/typescript-estree': 8.62.0(supports-color@7.2.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.62.0(typescript@4.9.5) eslint: 9.39.4(jiti@2.6.1) typescript: 4.9.5 transitivePeerDependencies: @@ -25641,9 +25548,9 @@ snapshots: vite: 7.3.6(@types/node@26.1.1)(jiti@2.6.1)(less@4.8.0)(lightningcss@1.32.0)(sass-embedded@1.93.3)(sass@1.90.0)(terser@5.49.0)(yaml@2.9.0) optional: true - '@vitejs/plugin-basic-ssl@2.3.0(vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@2.3.0(vite@8.1.5(@types/node@20.19.37)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0))': dependencies: - vite: 8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.1.5(@types/node@20.19.37)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0) '@vitejs/plugin-react@4.7.0(vite@8.0.16(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.8.3))': dependencies: @@ -25823,13 +25730,13 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3)': + '@vue/eslint-config-typescript@12.0.0(eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))))(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3)': dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/parser': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)) - vue-eslint-parser: 9.4.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/parser': 6.21.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.4(jiti@2.6.1) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + vue-eslint-parser: 9.4.3(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0) optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: @@ -26210,8 +26117,6 @@ snapshots: alien-signals@2.0.8: {} - amdefine@1.0.1: {} - ansi-colors@1.1.0: dependencies: ansi-wrap: 0.1.0 @@ -26236,14 +26141,10 @@ snapshots: ansi-html-community@0.0.8: {} - ansi-regex@2.1.1: {} - ansi-regex@5.0.1: {} ansi-regex@6.2.2: {} - ansi-styles@2.2.1: {} - ansi-styles@3.2.1: dependencies: color-convert: 1.9.3 @@ -26378,8 +26279,6 @@ snapshots: get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 - arrify@1.0.1: {} - asn1.js@4.10.1: dependencies: bn.js: 4.12.3 @@ -26483,59 +26382,6 @@ snapshots: b4a@1.8.0: {} - babel-code-frame@6.26.0: - dependencies: - chalk: 1.1.3 - esutils: 2.0.3 - js-tokens: 3.0.2 - - babel-core@6.26.3(patch_hash=c0f53059bb7026b811209ee3af7fd4c700c900c615d0a0b14981ce911fcf3392): - dependencies: - babel-code-frame: 6.26.0 - babel-generator: 6.26.1 - babel-helpers: 6.24.1 - babel-messages: 6.23.0 - babel-register: 6.26.0 - babel-runtime: 6.26.0 - babel-template: 6.26.0 - babel-traverse: '@babel/traverse@7.29.7' - babel-types: 6.26.0 - babylon: 6.18.0 - convert-source-map: 1.9.0 - debug: 2.6.9 - json5: 2.2.3 - lodash: 4.18.1 - minimatch: 3.1.5 - path-is-absolute: 1.0.1 - private: 0.1.8 - slash: 1.0.0 - source-map: 0.5.7 - transitivePeerDependencies: - - supports-color - - babel-generator@6.26.1: - dependencies: - babel-messages: 6.23.0 - babel-runtime: 6.26.0 - babel-types: 6.26.0 - detect-indent: 4.0.0 - jsesc: 1.3.0 - lodash: 4.18.1 - source-map: 0.5.7 - trim-right: 1.0.1 - - babel-helper-hoist-variables@6.24.1: - dependencies: - babel-runtime: 6.26.0 - babel-types: 6.26.0 - - babel-helpers@6.24.1: - dependencies: - babel-runtime: 6.26.0 - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - babel-jest@29.7.0(@babel/core@7.29.7): dependencies: '@babel/core': 7.29.7 @@ -26602,10 +26448,6 @@ snapshots: optionalDependencies: webpack: 5.109.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(postcss@8.5.23) - babel-messages@6.23.0: - dependencies: - babel-runtime: 6.26.0 - babel-plugin-add-module-exports@1.0.4: {} babel-plugin-const-enum@1.2.0(@babel/core@7.29.7): @@ -26698,10 +26540,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.29.7)(supports-color@7.2.0): + babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.29.7): dependencies: '@babel/core': 7.29.7 - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.29.7)(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.29.7) core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color @@ -26712,10 +26554,10 @@ snapshots: '@babel/helper-define-polyfill-provider': 1.0.0(@babel/core@8.0.1) core-js-compat: 3.49.0 - babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.29.7)(supports-color@7.2.0): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.29.7): dependencies: '@babel/core': 7.29.7 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.7)(supports-color@7.2.0) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.7) transitivePeerDependencies: - supports-color @@ -26726,38 +26568,8 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-syntax-dynamic-import@6.18.0: {} - babel-plugin-syntax-trailing-function-commas@6.22.0: {} - babel-plugin-transform-amd-system-wrapper@0.3.7: - dependencies: - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-transform-cjs-system-wrapper@0.6.2: - dependencies: - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-transform-es2015-modules-systemjs@6.24.1: - dependencies: - babel-helper-hoist-variables: 6.24.1 - babel-runtime: 6.26.0 - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-transform-global-system-wrapper@0.3.4: - dependencies: - babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color - - babel-plugin-transform-system-register@0.0.1: {} - babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.29.7)(@babel/traverse@7.29.7): dependencies: '@babel/core': 7.29.7 @@ -26829,42 +26641,6 @@ snapshots: babel-plugin-jest-hoist: 30.3.0 babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.7) - babel-register@6.26.0: - dependencies: - babel-core: 6.26.3(patch_hash=c0f53059bb7026b811209ee3af7fd4c700c900c615d0a0b14981ce911fcf3392) - babel-runtime: 6.26.0 - core-js: 2.6.12 - home-or-tmp: 2.0.0 - lodash: 4.18.1 - mkdirp: 0.5.6 - source-map-support: 0.4.18 - transitivePeerDependencies: - - supports-color - - babel-runtime@6.26.0: - dependencies: - core-js: 2.6.12 - regenerator-runtime: 0.11.1 - - babel-template@6.26.0: - dependencies: - babel-runtime: 6.26.0 - babel-traverse: '@babel/traverse@7.29.7' - babel-types: 6.26.0 - babylon: 6.18.0 - lodash: 4.18.1 - transitivePeerDependencies: - - supports-color - - babel-types@6.26.0: - dependencies: - babel-runtime: 6.26.0 - esutils: 2.0.3 - lodash: 4.18.1 - to-fast-properties: 1.0.3 - - babylon@6.18.0: {} - bail@2.0.2: {} balanced-match@1.0.2: {} @@ -26982,7 +26758,7 @@ snapshots: transitivePeerDependencies: - supports-color - body-parser@2.3.0(supports-color@7.2.0): + body-parser@2.3.0: dependencies: bytes: 3.1.2 content-type: 2.0.0 @@ -27245,13 +27021,6 @@ snapshots: pascal-case: 3.1.2 tslib: 2.8.1 - camelcase-keys@7.0.2: - dependencies: - camelcase: 6.3.0 - map-obj: 4.3.0 - quick-lru: 5.1.1 - type-fest: 1.4.0 - camelcase@5.3.1: {} camelcase@6.3.0: {} @@ -27299,14 +27068,6 @@ snapshots: loupe: 3.2.1 pathval: 2.0.1 - chalk@1.1.3: - dependencies: - ansi-styles: 2.2.1 - escape-string-regexp: 1.0.5 - has-ansi: 2.0.0 - strip-ansi: 3.0.1 - supports-color: 2.0.0 - chalk@2.4.2: dependencies: ansi-styles: 3.2.1 @@ -27614,10 +27375,6 @@ snapshots: commander@2.20.3: {} - commander@2.9.0: - dependencies: - graceful-readlink: 1.0.1 - commander@5.1.0: {} commander@7.2.0: {} @@ -27763,24 +27520,6 @@ snapshots: path-type: 4.0.0 yaml: 1.10.3 - cosmiconfig@8.3.6(typescript@4.9.5): - dependencies: - import-fresh: 3.3.1 - js-yaml: 4.3.1 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 4.9.5 - - cosmiconfig@8.3.6(typescript@5.8.3): - dependencies: - import-fresh: 3.3.1 - js-yaml: 4.3.1 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.8.3 - cosmiconfig@8.3.6(typescript@5.9.3): dependencies: import-fresh: 3.3.1 @@ -27790,14 +27529,14 @@ snapshots: optionalDependencies: typescript: 5.9.3 - cosmiconfig@8.3.6(typescript@6.0.3): + cosmiconfig@9.0.1(typescript@4.9.5): dependencies: + env-paths: 2.2.1 import-fresh: 3.3.1 js-yaml: 4.3.1 parse-json: 5.2.0 - path-type: 4.0.0 optionalDependencies: - typescript: 6.0.3 + typescript: 4.9.5 cosmiconfig@9.0.1(typescript@5.8.3): dependencies: @@ -27870,13 +27609,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): + create-jest@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + jest-config: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -28011,11 +27750,6 @@ snapshots: domutils: 3.2.2 nth-check: 2.1.1 - css-tree@2.3.1: - dependencies: - mdn-data: 2.0.30 - source-map-js: 1.2.1 - css-tree@3.2.1: dependencies: mdn-data: 2.27.1 @@ -28043,17 +27777,10 @@ snapshots: custom-event@1.0.1: {} - d@1.0.2: - dependencies: - es5-ext: 0.10.64 - type: 2.7.3 - damerau-levenshtein@1.0.8: {} dash-ast@1.0.0: {} - data-uri-to-buffer@0.0.4: {} - data-urls@3.0.2: dependencies: abab: 2.0.6 @@ -28106,15 +27833,6 @@ snapshots: optionalDependencies: supports-color: 7.2.0 - decamelize-keys@1.1.1: - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - - decamelize@1.2.0: {} - - decamelize@5.0.1: {} - decimal.js@10.6.0: {} decode-named-character-reference@1.3.0: @@ -28235,10 +27953,6 @@ snapshots: destroy@1.2.0: {} - detect-indent@4.0.0: - dependencies: - repeating: 2.0.1 - detect-libc@1.0.3: {} detect-libc@2.1.2: {} @@ -28370,7 +28084,7 @@ snapshots: color-diff: 1.3.0 looks-same: 7.3.0 pngjs: 6.0.0 - testcafe: 3.7.5(supports-color@7.2.0) + testcafe: 3.7.5 tslib: 2.8.1 device-specs@1.0.1: {} @@ -28500,8 +28214,6 @@ snapshots: dependencies: readable-stream: 2.3.8 - dx-systemjs-vue-browser@1.1.2: {} - eastasianwidth@0.2.0: {} editorconfig@1.0.7: @@ -28591,11 +28303,6 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.3.2 - enhanced-resolve@5.24.3: - dependencies: - graceful-fs: 4.2.11 - tapable: 2.3.3 - enhanced-resolve@5.24.5: dependencies: graceful-fs: 4.2.11 @@ -28769,31 +28476,8 @@ snapshots: is-date-object: 1.1.0 is-symbol: 1.1.1 - es5-ext@0.10.64: - dependencies: - es6-iterator: 2.0.3 - es6-symbol: 3.1.4 - esniff: 2.0.1 - next-tick: 1.1.0 - - es6-iterator@2.0.3: - dependencies: - d: 1.0.2 - es5-ext: 0.10.64 - es6-symbol: 3.1.4 - es6-object-assign@1.1.0: {} - es6-symbol@3.1.4: - dependencies: - d: 1.0.2 - ext: 1.7.0 - - es6-template-strings@2.0.1: - dependencies: - es5-ext: 0.10.64 - esniff: 1.1.3 - esbuild-plugin-vue3@0.3.2(cheerio@1.2.0)(sass@1.101.0): dependencies: '@vue/compiler-core': 3.5.32 @@ -28860,33 +28544,24 @@ snapshots: eslint: 9.39.4(jiti@2.6.1) semver: 7.8.5 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)): dependencies: confusing-browser-globals: 1.0.11 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + eslint: 9.39.4(jiti@2.6.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) object.assign: 4.1.7 object.entries: 1.1.9 semver: 6.3.1 - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)): dependencies: confusing-browser-globals: 1.0.11 eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)) object.assign: 4.1.7 object.entries: 1.1.9 semver: 6.3.1 - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): - dependencies: - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - transitivePeerDependencies: - - eslint-plugin-import - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) @@ -28896,14 +28571,23 @@ snapshots: transitivePeerDependencies: - eslint-plugin-import - eslint-config-devextreme@1.1.12(036b0b25bc375413172c4d0cf61bea25): + eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)): + dependencies: + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + eslint: 9.39.4(jiti@2.6.1) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1)) + transitivePeerDependencies: + - eslint-plugin-import + + eslint-config-devextreme@1.1.12(0bf0cf098d0a3b928d7fd275ba37129c): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.8.3) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.11.17)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -28911,11 +28595,30 @@ snapshots: eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@5.8.3) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@5.8.3)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + stylelint: 16.22.0(typescript@4.9.5) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@4.9.5)) + + eslint-config-devextreme@1.1.12(1ab26e2fdac0a1462882017b4fe7b289): + dependencies: + '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + eslint: 9.39.4(jiti@2.6.1) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(jest@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3) + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-no-only-tests: 3.3.0 + eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-rulesdir: 0.2.2 + eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + stylelint: 16.22.0(typescript@6.0.3) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@6.0.3)) - eslint-config-devextreme@1.1.12(21373fd47cc2a7a56720766fc64e98ca): + eslint-config-devextreme@1.1.12(33b7e80734c34857e30298d4e85d3fef): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) @@ -28931,17 +28634,17 @@ snapshots: eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@4.9.5) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@4.9.5)) + stylelint: 16.22.0(typescript@4.9.5) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@4.9.5)) - eslint-config-devextreme@1.1.12(2159c8bdfeeb538cd9a87b0f06dfe45f): + eslint-config-devextreme@1.1.12(34e25ca7f08f1322a043ec8d80e91c93): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@4.9.5)))(typescript@4.9.5) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.8.3) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -28949,18 +28652,18 @@ snapshots: eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@4.9.5) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@4.9.5)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + stylelint: 16.22.0(typescript@5.8.3) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@5.8.3)) - eslint-config-devextreme@1.1.12(3323971c1e531ea4fcc264c8af1d91e5): + eslint-config-devextreme@1.1.12(36a0f49ab754119732d0cad2df2dd8f9): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@6.0.3) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.9.3) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -28969,17 +28672,17 @@ snapshots: eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@6.0.3) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@6.0.3)) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@5.9.3)) - eslint-config-devextreme@1.1.12(765db8ce296b6314aa6fee62e11efa0e): + eslint-config-devextreme@1.1.12(c357a05deb2b16688bde72abde48073f): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.11.17)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.9.3) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -28987,37 +28690,18 @@ snapshots: eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@4.9.5) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@4.9.5)) - - eslint-config-devextreme@1.1.12(8a02c8ea109c9cf26ed5b6a911da64a7): - dependencies: - '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(jest@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3) - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-no-only-tests: 3.3.0 - eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-rulesdir: 0.2.2 - eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)) - stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@6.0.3)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@5.9.3)) - eslint-config-devextreme@1.1.12(df15cfffce683e1bcb7bfdacad1a6df8): + eslint-config-devextreme@1.1.12(d15b6dd1a804cd08c9b9266c82470597): dependencies: '@stylistic/eslint-plugin': 5.10.0(eslint@9.39.4(jiti@2.6.1)) - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@6.0.3) + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)) + eslint-plugin-jest: 29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@4.9.5)))(typescript@4.9.5) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-no-only-tests: 3.3.0 eslint-plugin-qunit: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -29025,9 +28709,9 @@ snapshots: eslint-plugin-react-perf: 3.3.3(eslint@9.39.4(jiti@2.6.1)) eslint-plugin-rulesdir: 0.2.2 eslint-plugin-spellcheck: 0.0.20(eslint@9.39.4(jiti@2.6.1)) - eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) - stylelint: 15.11.0(typescript@6.0.3) - stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@6.0.3)) + eslint-plugin-vue: 10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))) + stylelint: 16.22.0(typescript@4.9.5) + stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@4.9.5)) eslint-import-resolver-node@0.3.10: dependencies: @@ -29037,50 +28721,50 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 transitivePeerDependencies: - supports-color - eslint-plugin-deprecation@3.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3): + eslint-plugin-deprecation@3.0.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3): dependencies: - '@typescript-eslint/utils': 7.18.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + '@typescript-eslint/utils': 7.18.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.4(jiti@2.6.1) ts-api-utils: 1.4.3(typescript@6.0.3) tslib: 2.8.1 typescript: 6.0.3 @@ -29096,7 +28780,7 @@ snapshots: eslint-plugin-i18n@2.4.0: {} - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -29105,9 +28789,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -29119,13 +28803,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -29136,7 +28820,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -29148,13 +28832,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -29165,7 +28849,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -29177,13 +28861,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1)): + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -29194,7 +28878,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.39.4(jiti@2.6.1) eslint-import-resolver-node: 0.3.10 - eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint@9.39.4(jiti@2.6.1)) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -29206,7 +28890,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -29216,17 +28900,6 @@ snapshots: dependencies: eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(jest@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3): - dependencies: - '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) - jest: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) - typescript: 6.0.3 - transitivePeerDependencies: - - supports-color - eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.11.17)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.11.17)(typescript@4.9.5)))(typescript@4.9.5): dependencies: '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) @@ -29271,46 +28944,38 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@6.0.3): + eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) optionalDependencies: '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) - jest: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)) - typescript: 6.0.3 + jest: 30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@6.0.3): + eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)))(typescript@5.9.3): dependencies: - '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint: 9.39.4(jiti@2.6.1) optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) jest: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@5.9.3)) - typescript: 6.0.3 + typescript: 5.9.3 transitivePeerDependencies: - supports-color - eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): + eslint-plugin-jest@29.15.2(@typescript-eslint/eslint-plugin@8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(jest@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)))(supports-color@7.2.0)(typescript@6.0.3): dependencies: - aria-query: 5.3.2 - array-includes: 3.1.9 - array.prototype.flatmap: 1.3.3 - ast-types-flow: 0.0.8 - axe-core: 4.12.1 - axobject-query: 4.1.0 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - hasown: 2.0.4 - jsx-ast-utils: 3.3.5 - language-tags: 1.0.9 - minimatch: 3.1.5 - object.fromentries: 2.0.8 - safe-regex-test: 1.1.0 - string.prototype.includes: 2.0.1 + '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@6.0.3) + eslint: 9.39.4(jiti@2.6.1) + optionalDependencies: + '@typescript-eslint/eslint-plugin': 8.52.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + jest: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.6.1)): dependencies: @@ -29348,30 +29013,24 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@5.9.1(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5): + eslint-plugin-perfectionist@5.9.1(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5): dependencies: - '@typescript-eslint/utils': 8.62.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5) + '@typescript-eslint/utils': 8.62.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) eslint: 9.39.4(jiti@2.6.1) natural-orderby: 5.0.0 transitivePeerDependencies: - supports-color - typescript - eslint-plugin-qunit@8.2.6(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): - dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - requireindex: 1.2.0 - eslint-plugin-qunit@8.2.6(eslint@9.39.4(jiti@2.6.1)): dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) eslint: 9.39.4(jiti@2.6.1) requireindex: 1.2.0 - eslint-plugin-react-hooks@5.2.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): + eslint-plugin-react-hooks@5.2.0(eslint@9.39.4(jiti@2.6.1)): dependencies: - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) eslint-plugin-react-hooks@7.0.1(eslint@9.39.4(jiti@2.6.1)): dependencies: @@ -29379,15 +29038,11 @@ snapshots: '@babel/parser': 7.29.2 eslint: 9.39.4(jiti@2.6.1) hermes-parser: 0.25.1 - zod: 4.4.2 - zod-validation-error: 4.0.2(zod@4.4.2) + zod: 4.4.3 + zod-validation-error: 4.0.2(zod@4.4.3) transitivePeerDependencies: - supports-color - eslint-plugin-react-perf@3.3.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): - dependencies: - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-plugin-react-perf@3.3.3(eslint@9.39.4(jiti@2.6.1)): dependencies: eslint: 9.39.4(jiti@2.6.1) @@ -29396,28 +29051,6 @@ snapshots: dependencies: eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): - dependencies: - array-includes: 3.1.9 - array.prototype.findlast: 1.2.5 - array.prototype.flatmap: 1.3.3 - array.prototype.tosorted: 1.1.4 - doctrine: 2.1.0 - es-iterator-helpers: 1.3.2 - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - estraverse: 5.3.0 - hasown: 2.0.3 - jsx-ast-utils: 3.3.5 - minimatch: 3.1.5 - object.entries: 1.1.9 - object.fromentries: 2.0.8 - object.values: 1.2.1 - prop-types: 15.8.1 - resolve: 2.0.0-next.6 - semver: 6.3.1 - string.prototype.matchall: 4.0.12 - string.prototype.repeat: 1.0.0 - eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1)): dependencies: array-includes: 3.1.9 @@ -29446,13 +29079,6 @@ snapshots: dependencies: eslint: 9.39.4(jiti@2.6.1) - eslint-plugin-spellcheck@0.0.20(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): - dependencies: - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - globals: 13.24.0 - hunspell-spellchecker: 1.0.2 - lodash: 4.18.1 - eslint-plugin-spellcheck@0.0.20(eslint@9.39.4(jiti@2.6.1)): dependencies: eslint: 9.39.4(jiti@2.6.1) @@ -29484,20 +29110,20 @@ snapshots: semver: 7.7.4 strip-indent: 4.1.1 - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) + eslint: 9.39.4(jiti@2.6.1) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.1.2 semver: 7.8.5 - vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0) + vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) eslint: 9.39.4(jiti@2.6.1) @@ -29508,9 +29134,9 @@ snapshots: vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) eslint: 9.39.4(jiti@2.6.1) @@ -29521,9 +29147,9 @@ snapshots: vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.8.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) - eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): + eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1))): dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) eslint: 9.39.4(jiti@2.6.1) @@ -29534,7 +29160,7 @@ snapshots: vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)) xml-name-validator: 4.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) eslint-scope@5.1.1: dependencies: @@ -29563,48 +29189,7 @@ snapshots: dependencies: '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.2 - '@eslint/config-array': 0.21.2(supports-color@7.2.0) - '@eslint/config-helpers': 0.4.2 - '@eslint/core': 0.17.0 - '@eslint/eslintrc': 3.3.5 - '@eslint/js': 9.39.4 - '@eslint/plugin-kit': 0.4.1 - '@humanfs/node': 0.16.8 - '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.3 - '@types/estree': 1.0.9 - ajv: 6.14.0 - chalk: 4.1.2 - cross-spawn: 7.0.6 - debug: 4.4.3(supports-color@7.2.0) - escape-string-regexp: 4.0.0 - eslint-scope: 8.4.0 - eslint-visitor-keys: 4.2.1 - espree: 10.4.0 - esquery: 1.7.0 - esutils: 2.0.3 - fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 - find-up: 5.0.0 - glob-parent: 6.0.2 - ignore: 5.3.2 - imurmurhash: 0.1.4 - is-glob: 4.0.3 - json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 - minimatch: 3.1.5 - natural-compare: 1.4.0 - optionator: 0.9.4 - optionalDependencies: - jiti: 2.6.1 - transitivePeerDependencies: - - supports-color - - eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0): - dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) - '@eslint-community/regexpp': 4.12.2 - '@eslint/config-array': 0.21.2(supports-color@7.2.0) + '@eslint/config-array': 0.21.2 '@eslint/config-helpers': 0.4.2 '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.5 @@ -29641,18 +29226,6 @@ snapshots: transitivePeerDependencies: - supports-color - esniff@1.1.3: - dependencies: - d: 1.0.2 - es5-ext: 0.10.64 - - esniff@2.0.1: - dependencies: - d: 1.0.2 - es5-ext: 0.10.64 - event-emitter: 0.3.5 - type: 2.7.3 - esotope-hammerhead@0.6.9: dependencies: '@types/estree': 0.0.46 @@ -29691,11 +29264,6 @@ snapshots: etag@1.8.1: {} - event-emitter@0.3.5: - dependencies: - d: 1.0.2 - es5-ext: 0.10.64 - event-target-shim@5.0.1: {} eventemitter3@4.0.7: {} @@ -29809,7 +29377,7 @@ snapshots: express-rate-limit@8.3.2(express@5.2.1): dependencies: - express: 5.2.1(supports-color@7.2.0) + express: 5.2.1 ip-address: 10.4.0 express@4.22.1: @@ -29848,10 +29416,10 @@ snapshots: transitivePeerDependencies: - supports-color - express@5.2.1(supports-color@7.2.0): + express@5.2.1: dependencies: accepts: 2.0.0 - body-parser: 2.3.0(supports-color@7.2.0) + body-parser: 2.3.0 content-disposition: 1.1.0 content-type: 1.0.5 cookie: 0.7.2 @@ -29861,7 +29429,7 @@ snapshots: encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 2.1.1(supports-color@7.2.0) + finalhandler: 2.1.1 fresh: 2.0.0 http-errors: 2.0.1 merge-descriptors: 2.0.0 @@ -29872,8 +29440,8 @@ snapshots: proxy-addr: 2.0.7 qs: 6.15.3 range-parser: 1.3.0 - router: 2.2.0(supports-color@7.2.0) - send: 1.2.1(supports-color@7.2.0) + router: 2.2.0 + send: 1.2.1 serve-static: 2.2.1 statuses: 2.0.2 type-is: 2.1.0 @@ -29881,10 +29449,6 @@ snapshots: transitivePeerDependencies: - supports-color - ext@1.7.0: - dependencies: - type: 2.7.3 - extend-shallow@3.0.2: dependencies: assign-symbols: 1.0.0 @@ -29982,10 +29546,6 @@ snapshots: dependencies: flat-cache: 6.1.22 - file-entry-cache@7.0.2: - dependencies: - flat-cache: 3.2.0 - file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 @@ -30037,7 +29597,7 @@ snapshots: transitivePeerDependencies: - supports-color - finalhandler@2.1.1(supports-color@7.2.0): + finalhandler@2.1.1: dependencies: debug: 4.4.3(supports-color@7.2.0) encodeurl: 2.0.0 @@ -30325,14 +29885,6 @@ snapshots: minipass: 7.1.3 path-scurry: 2.0.2 - glob@5.0.15: - dependencies: - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.5 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@7.2.3: dependencies: fs.realpath: 1.0.0 @@ -30423,8 +29975,6 @@ snapshots: graceful-fs@4.2.11: {} - graceful-readlink@1.0.1: {} - graphemer@1.4.0: {} graphlib@2.1.8: @@ -30436,14 +29986,8 @@ snapshots: handle-thing@2.0.1: {} - hard-rejection@2.1.0: {} - harmony-reflect@1.6.2: {} - has-ansi@2.0.0: - dependencies: - ansi-regex: 2.1.1 - has-bigints@1.1.0: {} has-flag@3.0.0: {} @@ -30626,11 +30170,6 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 - home-or-tmp@2.0.0: - dependencies: - os-homedir: 1.0.2 - os-tmpdir: 1.0.2 - hono@4.13.0: {} hookified@1.15.1: {} @@ -30643,10 +30182,6 @@ snapshots: hosted-git-info@2.8.9: {} - hosted-git-info@4.1.0: - dependencies: - lru-cache: 6.0.0 - hosted-git-info@9.0.2: dependencies: lru-cache: 11.3.5 @@ -30964,8 +30499,6 @@ snapshots: import-lazy@3.1.0: {} - import-lazy@4.0.0: {} - import-local@3.2.0: dependencies: pkg-dir: 4.2.0 @@ -31223,8 +30756,6 @@ snapshots: is-path-inside@3.0.3: {} - is-plain-obj@1.1.0: {} - is-plain-obj@4.1.0: {} is-plain-object@2.0.4: @@ -31516,16 +31047,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): + jest-cli@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + create-jest: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) exit: 0.1.2 import-local: 3.2.0 - jest-config: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + jest-config: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -31686,15 +31217,15 @@ snapshots: - supports-color - ts-node - jest-cli@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)): + jest-cli@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)): dependencies: - '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) '@jest/test-result': 30.2.0 '@jest/types': 30.2.0 chalk: 4.1.2 exit-x: 0.2.2 import-local: 3.2.0 - jest-config: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + jest-config: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -31769,37 +31300,6 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): - dependencies: - '@babel/core': 7.29.7 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.29.7) - chalk: 4.1.2 - ci-info: 3.9.0 - deepmerge: 4.3.1 - glob: 7.2.3 - graceful-fs: 4.2.11 - jest-circus: 29.7.0(babel-plugin-macros@3.1.0) - jest-environment-node: 29.7.0 - jest-get-type: 29.6.3 - jest-regex-util: 29.6.3 - jest-resolve: 29.7.0 - jest-runner: 29.7.0 - jest-util: 29.7.0 - jest-validate: 29.7.0 - micromatch: 4.0.8 - parse-json: 5.2.0 - pretty-format: 29.7.0 - slash: 3.0.0 - strip-json-comments: 3.1.1 - optionalDependencies: - '@types/node': 26.1.1 - ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3) - transitivePeerDependencies: - - babel-plugin-macros - - supports-color - jest-config@30.2.0(@types/node@18.19.130)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@18.19.130)(typescript@4.9.5)): dependencies: '@babel/core': 7.29.7 @@ -32099,7 +31599,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)): + jest-config@30.2.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)): dependencies: '@babel/core': 7.29.7 '@jest/get-type': 30.1.0 @@ -32127,7 +31627,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.19.37 - ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3) + ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -32199,7 +31699,7 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)): + jest-config@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)): dependencies: '@babel/core': 7.29.7 '@jest/get-type': 30.1.0 @@ -32227,7 +31727,7 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 26.1.1 - ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3) + ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -32931,12 +32431,12 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): + jest@29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)): dependencies: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) '@jest/types': 29.6.3 import-local: 3.2.0 - jest-cli: 29.7.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) + jest-cli: 29.7.0(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(typescript@6.0.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -33052,12 +32552,12 @@ snapshots: - supports-color - ts-node - jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)): + jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)): dependencies: - '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) '@jest/types': 30.2.0 import-local: 3.2.0 - jest-cli: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + jest-cli: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -33134,8 +32634,6 @@ snapshots: - supports-color - utf-8-validate - jsesc@1.3.0: {} - jsesc@3.0.2: {} jsesc@3.1.0: {} @@ -33300,8 +32798,6 @@ snapshots: knockout@3.5.3: {} - known-css-properties@0.29.0: {} - known-css-properties@0.35.0: {} known-css-properties@0.37.0: {} @@ -33754,10 +33250,6 @@ snapshots: dependencies: tmpl: 1.0.5 - map-obj@1.0.1: {} - - map-obj@4.3.0: {} - match-url-wildcard@0.0.4: dependencies: escape-string-regexp: 1.0.5 @@ -33826,8 +33318,6 @@ snapshots: dependencies: '@types/mdast': 3.0.15 - mdn-data@2.0.30: {} - mdn-data@2.27.1: {} mdn-data@2.28.0: {} @@ -33864,21 +33354,6 @@ snapshots: memorystream@0.3.1: {} - meow@10.1.5: - dependencies: - '@types/minimist': 1.2.5 - camelcase-keys: 7.0.2 - decamelize: 5.0.1 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 8.0.0 - redent: 4.0.0 - trim-newlines: 4.1.1 - type-fest: 1.4.0 - yargs-parser: 20.2.9 - meow@13.2.0: {} merge-descriptors@1.0.3: {} @@ -34102,12 +33577,6 @@ snapshots: dependencies: brace-expansion: 2.1.4 - minimist-options@4.1.0: - dependencies: - arrify: 1.0.1 - is-plain-obj: 1.1.0 - kind-of: 6.0.3 - minimist@1.2.8: {} minimizer-webpack-plugin@5.6.1(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(lightningcss@1.32.0)(postcss@8.5.23)(webpack@5.109.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(lightningcss@1.32.0)(postcss@8.5.23)): @@ -34318,8 +33787,6 @@ snapshots: nested-error-stacks@2.1.1: {} - next-tick@1.1.0: {} - ng-packagr@20.3.2(@angular/compiler-cli@20.3.27(@angular/compiler@20.3.27)(typescript@5.8.3))(tslib@2.8.1)(typescript@5.8.3): dependencies: '@ampproject/remapping': 2.3.0 @@ -34476,13 +33943,6 @@ snapshots: semver: 5.7.2 validate-npm-package-license: 3.0.4 - normalize-package-data@3.0.3: - dependencies: - hosted-git-info: 4.1.0 - is-core-module: 2.16.2 - semver: 7.8.5 - validate-npm-package-license: 3.0.4 - normalize-path@3.0.0: {} normalize-range@0.1.2: {} @@ -34892,10 +34352,6 @@ snapshots: os-family@1.1.0: {} - os-homedir@1.0.2: {} - - os-tmpdir@1.0.2: {} - own-keys@1.0.1: dependencies: get-intrinsic: 1.3.0 @@ -34967,7 +34423,7 @@ snapshots: package-json-from-dist@1.0.1: {} - pacote@21.0.4(supports-color@7.2.0): + pacote@21.0.4: dependencies: '@npmcli/git': 7.0.2 '@npmcli/installed-package-contents': 4.0.0 @@ -34983,7 +34439,7 @@ snapshots: npm-registry-fetch: 19.1.1 proc-log: 6.1.0 promise-retry: 2.0.1 - sigstore: 4.1.1(supports-color@7.2.0) + sigstore: 4.1.1 ssri: 13.0.1 tar: 7.5.21 transitivePeerDependencies: @@ -35387,8 +34843,6 @@ snapshots: pretty-hrtime@1.0.3: {} - private@0.1.8: {} - probe-image-size@7.3.0: dependencies: lodash.merge: 4.6.2 @@ -35528,8 +34982,6 @@ snapshots: queue-microtask@1.2.3: {} - quick-lru@5.1.1: {} - quill-delta@5.1.0: dependencies: fast-diff: 1.3.0 @@ -35667,12 +35119,6 @@ snapshots: dependencies: readable-stream: 2.3.8 - read-pkg-up@8.0.0: - dependencies: - find-up: 5.0.0 - read-pkg: 6.0.0 - type-fest: 1.4.0 - read-pkg@5.2.0: dependencies: '@types/normalize-package-data': 2.4.4 @@ -35680,13 +35126,6 @@ snapshots: parse-json: 5.2.0 type-fest: 0.6.0 - read-pkg@6.0.0: - dependencies: - '@types/normalize-package-data': 2.4.4 - normalize-package-data: 3.0.3 - parse-json: 5.2.0 - type-fest: 1.4.0 - readable-stream@2.3.8: dependencies: core-util-is: 1.0.3 @@ -35748,11 +35187,6 @@ snapshots: indent-string: 4.0.0 strip-indent: 3.0.0 - redent@4.0.0: - dependencies: - indent-string: 5.0.0 - strip-indent: 4.1.1 - reflect-metadata@0.1.13: {} reflect-metadata@0.2.2: {} @@ -35774,8 +35208,6 @@ snapshots: regenerate@1.4.2: {} - regenerator-runtime@0.11.1: {} - regenerator-runtime@0.13.11: optional: true @@ -35879,10 +35311,6 @@ snapshots: dependencies: is-finite: 1.1.0 - repeating@2.0.1: - dependencies: - is-finite: 1.1.0 - replace-ext@1.0.1: {} require-directory@2.1.1: {} @@ -36016,14 +35444,42 @@ snapshots: '@oxc-project/types': 0.139.0 '@rolldown/pluginutils': 1.0.1 optionalDependencies: + '@rolldown/binding-android-arm64': 1.1.5 '@rolldown/binding-darwin-arm64': 1.1.5 + '@rolldown/binding-darwin-x64': 1.1.5 + '@rolldown/binding-freebsd-x64': 1.1.5 + '@rolldown/binding-linux-arm-gnueabihf': 1.1.5 + '@rolldown/binding-linux-arm64-gnu': 1.1.5 + '@rolldown/binding-linux-arm64-musl': 1.1.5 + '@rolldown/binding-linux-ppc64-gnu': 1.1.5 + '@rolldown/binding-linux-s390x-gnu': 1.1.5 + '@rolldown/binding-linux-x64-gnu': 1.1.5 + '@rolldown/binding-linux-x64-musl': 1.1.5 + '@rolldown/binding-openharmony-arm64': 1.1.5 + '@rolldown/binding-wasm32-wasi': 1.1.5 + '@rolldown/binding-win32-arm64-msvc': 1.1.5 + '@rolldown/binding-win32-x64-msvc': 1.1.5 rolldown@1.2.0: dependencies: '@oxc-project/types': 0.140.0 '@rolldown/pluginutils': 1.0.1 optionalDependencies: + '@rolldown/binding-android-arm64': 1.2.0 '@rolldown/binding-darwin-arm64': 1.2.0 + '@rolldown/binding-darwin-x64': 1.2.0 + '@rolldown/binding-freebsd-x64': 1.2.0 + '@rolldown/binding-linux-arm-gnueabihf': 1.2.0 + '@rolldown/binding-linux-arm64-gnu': 1.2.0 + '@rolldown/binding-linux-arm64-musl': 1.2.0 + '@rolldown/binding-linux-ppc64-gnu': 1.2.0 + '@rolldown/binding-linux-s390x-gnu': 1.2.0 + '@rolldown/binding-linux-x64-gnu': 1.2.0 + '@rolldown/binding-linux-x64-musl': 1.2.0 + '@rolldown/binding-openharmony-arm64': 1.2.0 + '@rolldown/binding-wasm32-wasi': 1.2.0 + '@rolldown/binding-win32-arm64-msvc': 1.2.0 + '@rolldown/binding-win32-x64-msvc': 1.2.0 rollup-plugin-dts@6.4.1(rollup@4.59.0)(typescript@4.9.5): dependencies: @@ -36078,7 +35534,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.59.0 fsevents: 2.3.3 - router@2.2.0(supports-color@7.2.0): + router@2.2.0: dependencies: debug: 4.4.3(supports-color@7.2.0) depd: 2.0.0 @@ -36098,8 +35554,6 @@ snapshots: dependencies: tslib: 2.8.1 - rsvp@3.6.2: {} - run-applescript@7.1.0: {} run-parallel@1.2.0: @@ -36372,7 +35826,7 @@ snapshots: transitivePeerDependencies: - supports-color - send@1.2.1(supports-color@7.2.0): + send@1.2.1: dependencies: debug: 4.4.3(supports-color@7.2.0) encodeurl: 2.0.0 @@ -36416,7 +35870,7 @@ snapshots: encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 1.2.1(supports-color@7.2.0) + send: 1.2.1 transitivePeerDependencies: - supports-color @@ -36528,13 +35982,13 @@ snapshots: dependencies: jquery: 4.0.0 - sigstore@4.1.1(supports-color@7.2.0): + sigstore@4.1.1: dependencies: '@sigstore/bundle': 4.0.0 '@sigstore/core': 3.2.1 '@sigstore/protobuf-specs': 0.5.1 '@sigstore/sign': 4.1.1 - '@sigstore/tuf': 4.0.2(supports-color@7.2.0) + '@sigstore/tuf': 4.0.2 '@sigstore/verify': 3.1.1 transitivePeerDependencies: - supports-color @@ -36552,8 +36006,6 @@ snapshots: sisteransi@1.0.5: {} - slash@1.0.0: {} - slash@3.0.0: {} slice-ansi@4.0.0: @@ -36650,14 +36102,6 @@ snapshots: source-map-js: 1.2.1 webpack: 5.109.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(esbuild@0.28.1)(postcss@8.5.23) - source-map-support@0.2.10: - dependencies: - source-map: 0.1.32 - - source-map-support@0.4.18: - dependencies: - source-map: 0.5.7 - source-map-support@0.5.13: dependencies: buffer-from: 1.1.2 @@ -36673,10 +36117,6 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 - source-map@0.1.32: - dependencies: - amdefine: 1.0.1 - source-map@0.5.7: {} source-map@0.6.1: {} @@ -36926,10 +36366,6 @@ snapshots: is-obj: 1.0.1 is-regexp: 1.0.0 - strip-ansi@3.0.1: - dependencies: - ansi-regex: 2.1.1 - strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -36993,12 +36429,12 @@ snapshots: postcss-html: 1.8.1 stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-recommended-scss@14.1.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)): + stylelint-config-recommended-scss@14.1.0(postcss@8.5.23)(stylelint@16.22.0(typescript@5.9.3)): dependencies: postcss-scss: 4.0.9(postcss@8.5.23) - stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@6.0.3)) - stylelint-scss: 6.10.0(stylelint@16.22.0(typescript@6.0.3)) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@5.9.3)) + stylelint-scss: 6.10.0(stylelint@16.22.0(typescript@5.9.3)) optionalDependencies: postcss: 8.5.23 @@ -37010,60 +36446,60 @@ snapshots: stylelint-config-html: 1.1.0(postcss-html@1.8.1)(stylelint@16.22.0(typescript@6.0.3)) stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@6.0.3)) - stylelint-config-recommended@14.0.1(stylelint@16.22.0(typescript@6.0.3)): + stylelint-config-recommended@14.0.1(stylelint@16.22.0(typescript@5.9.3)): dependencies: - stylelint: 16.22.0(typescript@6.0.3) + stylelint: 16.22.0(typescript@5.9.3) - stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@4.9.5)): + stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@4.9.5)): dependencies: - stylelint: 15.11.0(typescript@4.9.5) + stylelint: 16.22.0(typescript@4.9.5) - stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@5.8.3)): + stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@5.8.3)): dependencies: - stylelint: 15.11.0(typescript@5.8.3) + stylelint: 16.22.0(typescript@5.8.3) - stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@6.0.3)): + stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@5.9.3)): dependencies: - stylelint: 15.11.0(typescript@6.0.3) + stylelint: 16.22.0(typescript@5.9.3) stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@6.0.3)): dependencies: stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-standard-scss@14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)): + stylelint-config-standard-scss@14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@5.9.3)): dependencies: - stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-recommended-scss: 14.1.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)) - stylelint-config-standard: 36.0.1(stylelint@16.22.0(typescript@6.0.3)) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-recommended-scss: 14.1.0(postcss@8.5.23)(stylelint@16.22.0(typescript@5.9.3)) + stylelint-config-standard: 36.0.1(stylelint@16.22.0(typescript@5.9.3)) optionalDependencies: postcss: 8.5.23 - stylelint-config-standard@36.0.1(stylelint@16.22.0(typescript@6.0.3)): + stylelint-config-standard@36.0.1(stylelint@16.22.0(typescript@5.9.3)): dependencies: - stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@6.0.3)) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@5.9.3)) - stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@4.9.5)): + stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@4.9.5)): dependencies: - stylelint: 15.11.0(typescript@4.9.5) - stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@4.9.5)) + stylelint: 16.22.0(typescript@4.9.5) + stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@4.9.5)) - stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@5.8.3)): + stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@5.8.3)): dependencies: - stylelint: 15.11.0(typescript@5.8.3) - stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@5.8.3)) + stylelint: 16.22.0(typescript@5.8.3) + stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@5.8.3)) - stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@6.0.3)): + stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@5.9.3)): dependencies: - stylelint: 15.11.0(typescript@6.0.3) - stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@6.0.3)) + stylelint: 16.22.0(typescript@5.9.3) + stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@5.9.3)) stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@6.0.3)): dependencies: stylelint: 16.22.0(typescript@6.0.3) stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@6.0.3)) - stylelint-scss@6.10.0(stylelint@16.22.0(typescript@6.0.3)): + stylelint-scss@6.10.0(stylelint@16.22.0(typescript@5.9.3)): dependencies: css-tree: 3.2.1 is-plain-object: 5.0.0 @@ -37073,92 +36509,44 @@ snapshots: postcss-resolve-nested-selector: 0.1.6 postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 - stylelint: 16.22.0(typescript@6.0.3) - - stylelint@15.11.0(typescript@4.9.5): - dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) - balanced-match: 2.0.0 - colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@4.9.5) - css-functions-list: 3.3.3 - css-tree: 2.3.1 - debug: 4.4.3(supports-color@7.2.0) - fast-glob: 3.3.3 - fastest-levenshtein: 1.0.16 - file-entry-cache: 7.0.2 - global-modules: 2.0.0 - globby: 11.1.0 - globjoin: 0.1.4 - html-tags: 3.3.1 - ignore: 5.3.2 - import-lazy: 4.0.0 - imurmurhash: 0.1.4 - is-plain-object: 5.0.0 - known-css-properties: 0.29.0 - mathml-tag-names: 2.1.3 - meow: 10.1.5 - micromatch: 4.0.8 - normalize-path: 3.0.0 - picocolors: 1.1.1 - postcss: 8.5.23 - postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 6.0.0(postcss@8.5.23) - postcss-selector-parser: 6.1.2 - postcss-value-parser: 4.2.0 - resolve-from: 5.0.0 - string-width: 4.2.3 - strip-ansi: 6.0.1 - style-search: 0.1.0 - supports-hyperlinks: 3.2.0 - svg-tags: 1.0.0 - table: 6.9.0 - write-file-atomic: 5.0.1 - transitivePeerDependencies: - - supports-color - - typescript + stylelint: 16.22.0(typescript@5.9.3) - stylelint@15.11.0(typescript@5.8.3): + stylelint@16.22.0(typescript@4.9.5): dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) + '@dual-bundle/import-meta-resolve': 4.2.1 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@5.8.3) + cosmiconfig: 9.0.1(typescript@4.9.5) css-functions-list: 3.3.3 - css-tree: 2.3.1 + css-tree: 3.2.1 debug: 4.4.3(supports-color@7.2.0) fast-glob: 3.3.3 fastest-levenshtein: 1.0.16 - file-entry-cache: 7.0.2 + file-entry-cache: 10.1.4 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.3.2 - import-lazy: 4.0.0 + ignore: 7.0.5 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.29.0 + known-css-properties: 0.37.0 mathml-tag-names: 2.1.3 - meow: 10.1.5 + meow: 13.2.0 micromatch: 4.0.8 normalize-path: 3.0.0 picocolors: 1.1.1 postcss: 8.5.23 postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 6.0.0(postcss@8.5.23) - postcss-selector-parser: 6.1.2 + postcss-safe-parser: 7.0.1(postcss@8.5.23) + postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 - strip-ansi: 6.0.1 - style-search: 0.1.0 supports-hyperlinks: 3.2.0 svg-tags: 1.0.0 table: 6.9.0 @@ -37167,44 +36555,42 @@ snapshots: - supports-color - typescript - stylelint@15.11.0(typescript@6.0.3): + stylelint@16.22.0(typescript@5.8.3): dependencies: - '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) - '@csstools/css-tokenizer': 2.4.1 - '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) - '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) + '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) + '@csstools/css-tokenizer': 3.0.4 + '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1) + '@dual-bundle/import-meta-resolve': 4.2.1 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 8.3.6(typescript@6.0.3) + cosmiconfig: 9.0.1(typescript@5.8.3) css-functions-list: 3.3.3 - css-tree: 2.3.1 + css-tree: 3.2.1 debug: 4.4.3(supports-color@7.2.0) fast-glob: 3.3.3 fastest-levenshtein: 1.0.16 - file-entry-cache: 7.0.2 + file-entry-cache: 10.1.4 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.3.2 - import-lazy: 4.0.0 + ignore: 7.0.5 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.29.0 + known-css-properties: 0.37.0 mathml-tag-names: 2.1.3 - meow: 10.1.5 + meow: 13.2.0 micromatch: 4.0.8 normalize-path: 3.0.0 picocolors: 1.1.1 postcss: 8.5.23 postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 6.0.0(postcss@8.5.23) - postcss-selector-parser: 6.1.2 + postcss-safe-parser: 7.0.1(postcss@8.5.23) + postcss-selector-parser: 7.1.1 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 - strip-ansi: 6.0.1 - style-search: 0.1.0 supports-hyperlinks: 3.2.0 svg-tags: 1.0.0 table: 6.9.0 @@ -37213,7 +36599,7 @@ snapshots: - supports-color - typescript - stylelint@16.22.0(supports-color@7.2.0)(typescript@5.9.3): + stylelint@16.22.0(typescript@5.9.3): dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 @@ -37309,8 +36695,6 @@ snapshots: dependencies: minimist: 1.2.8 - supports-color@2.0.0: {} - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -37356,28 +36740,6 @@ snapshots: dependencies: acorn-node: 1.8.2 - systemjs-builder@0.16.15(patch_hash=c78b3d7eb812436aa2d80299b3d3f2738f0366b53f710a25956a3762edf73014): - dependencies: - babel-core: 6.26.3(patch_hash=c0f53059bb7026b811209ee3af7fd4c700c900c615d0a0b14981ce911fcf3392) - babel-plugin-syntax-dynamic-import: 6.18.0 - babel-plugin-transform-amd-system-wrapper: 0.3.7 - babel-plugin-transform-cjs-system-wrapper: 0.6.2 - babel-plugin-transform-es2015-modules-systemjs: 6.24.1 - babel-plugin-transform-global-system-wrapper: 0.3.4 - babel-plugin-transform-system-register: 0.0.1 - bluebird: 3.7.2 - data-uri-to-buffer: 0.0.4 - es6-template-strings: 2.0.1 - glob: 7.2.3 - mkdirp: 0.5.6 - rollup: 4.59.0 - source-map: 0.5.7 - systemjs: 0.19.47 - terser: 5.46.2 - traceur: 0.0.105 - transitivePeerDependencies: - - supports-color - systemjs-plugin-babel@0.0.25: {} systemjs-plugin-css@0.1.37: {} @@ -37390,10 +36752,6 @@ snapshots: dependencies: when: 3.7.8 - systemjs@0.19.47: - dependencies: - when: 3.7.8 - table@6.9.0: dependencies: ajv: 8.20.0 @@ -37541,7 +36899,7 @@ snapshots: glob: 7.2.3 minimatch: 3.1.5 - testcafe-browser-tools@2.0.26(supports-color@7.2.0): + testcafe-browser-tools@2.0.26: dependencies: array-find: 1.0.0 debug: 4.4.3(supports-color@7.2.0) @@ -37629,7 +36987,7 @@ snapshots: testcafe-selector-generator@0.1.0: {} - testcafe@3.7.5(supports-color@7.2.0): + testcafe@3.7.5: dependencies: '@babel/core': 7.29.7 '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7) @@ -37643,7 +37001,7 @@ snapshots: '@babel/plugin-transform-for-of': 7.29.7(@babel/core@7.29.7) '@babel/plugin-transform-object-rest-spread': 7.29.7(@babel/core@7.29.7) '@babel/plugin-transform-private-methods': 7.29.7(@babel/core@7.29.7) - '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.29.7)(supports-color@7.2.0) + '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.29.7) '@babel/preset-env': 7.29.7(@babel/core@7.29.7) '@babel/preset-flow': 7.27.1(@babel/core@7.29.7) '@babel/preset-react': 7.29.7(@babel/core@7.29.7) @@ -37712,7 +37070,7 @@ snapshots: set-cookie-parser: 2.7.2 source-map-support: 0.5.21 strip-bom: 2.0.0 - testcafe-browser-tools: 2.0.26(supports-color@7.2.0) + testcafe-browser-tools: 2.0.26 testcafe-hammerhead: 31.7.8(patch_hash=8655c07786177d3b611a05abf6b0ea87d32796eb2601f92a800ef041095f264c) testcafe-legacy-api: 5.1.8 testcafe-reporter-json: 2.2.0 @@ -37799,8 +37157,6 @@ snapshots: safe-buffer: 5.2.1 typed-array-buffer: 1.0.3 - to-fast-properties@1.0.3: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -37827,14 +37183,6 @@ snapshots: dependencies: punycode: 2.3.1 - traceur@0.0.105: - dependencies: - commander: 2.9.0 - glob: 5.0.15 - rsvp: 3.6.2 - semver: 5.7.2 - source-map-support: 0.2.10 - tree-dump@1.1.0(tslib@2.8.1): dependencies: tslib: 2.8.1 @@ -37843,10 +37191,6 @@ snapshots: trim-lines@3.0.1: {} - trim-newlines@4.1.1: {} - - trim-right@1.0.1: {} - trim-trailing-lines@2.1.0: {} triple-beam@1.4.1: {} @@ -37919,11 +37263,11 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.29.7) - ts-jest@29.1.2(@babel/core@7.29.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)))(typescript@5.9.3): + ts-jest@29.1.2(@babel/core@7.29.7)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(jest@30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)))(typescript@5.9.3): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3)) + jest: 30.2.0(@types/node@26.1.1)(babel-plugin-macros@3.1.0)(node-notifier@9.0.1)(ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -38176,7 +37520,7 @@ snapshots: '@swc/core': 1.15.30(@swc/helpers@0.5.21) optional: true - ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3): + ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@5.9.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.12 @@ -38190,7 +37534,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.4 make-error: 1.3.6 - typescript: 6.0.3 + typescript: 5.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: @@ -38248,7 +37592,7 @@ snapshots: tty-browserify@0.0.1: {} - tuf-js@4.1.0(supports-color@7.2.0): + tuf-js@4.1.0: dependencies: '@tufjs/models': 4.1.0 debug: 4.4.3(supports-color@7.2.0) @@ -38287,8 +37631,6 @@ snapshots: media-typer: 1.1.0 mime-types: 3.0.2 - type@2.7.3: {} - typed-array-buffer@1.0.3: dependencies: call-bound: 1.0.4 @@ -38726,7 +38068,7 @@ snapshots: terser: 5.49.0 yaml: 2.8.3 - vite@8.1.5(@types/node@26.1.1)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0): + vite@8.1.5(@types/node@20.19.37)(esbuild@0.28.1)(jiti@2.6.1)(less@4.8.0)(sass-embedded@1.93.3)(sass@1.101.0)(terser@5.49.0)(yaml@2.9.0): dependencies: lightningcss: 1.32.0 picomatch: 4.0.5 @@ -38734,7 +38076,7 @@ snapshots: rolldown: 1.1.5 tinyglobby: 0.2.17 optionalDependencies: - '@types/node': 26.1.1 + '@types/node': 20.19.37 esbuild: 0.28.1 fsevents: 2.3.3 jiti: 2.6.1 @@ -38750,19 +38092,6 @@ snapshots: vscode-uri@3.1.0: {} - vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0): - dependencies: - debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - eslint-scope: 8.4.0 - eslint-visitor-keys: 4.2.1 - espree: 10.4.0 - esquery: 1.7.0 - lodash: 4.18.1 - semver: 7.8.5 - transitivePeerDependencies: - - supports-color - vue-eslint-parser@10.0.0(eslint@9.39.4(jiti@2.6.1)): dependencies: debug: 4.4.3(supports-color@7.2.0) @@ -38776,10 +38105,10 @@ snapshots: transitivePeerDependencies: - supports-color - vue-eslint-parser@9.4.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0): + vue-eslint-parser@9.4.3(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0): dependencies: debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) + eslint: 9.39.4(jiti@2.6.1) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 @@ -39186,7 +38515,7 @@ snapshots: acorn-import-phases: 1.0.4(acorn@8.17.0) browserslist: 4.28.7 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.24.3 + enhanced-resolve: 5.24.5 es-module-lexer: 2.3.1 eslint-scope: 5.1.1 events: 3.3.0 @@ -39694,16 +39023,14 @@ snapshots: dependencies: zod: 4.4.3 - zod-validation-error@4.0.2(zod@4.4.2): + zod-validation-error@4.0.2(zod@4.4.3): dependencies: - zod: 4.4.2 + zod: 4.4.3 zod@3.24.4: {} zod@4.1.13: {} - zod@4.4.2: {} - zod@4.4.3: {} zone.js@0.15.1: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 0494ceb08b2d..97be49986899 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -140,5 +140,3 @@ allowBuilds: patchedDependencies: testcafe-hammerhead@31.7.8: patches/testcafe-hammerhead@31.7.8.patch - systemjs-builder@0.16.15: patches/systemjs-builder@0.16.15.patch - babel-core@6.26.3: patches/babel-core@6.26.3.patch From 221cfc7a8a9048e9d29093bfb38c9d7c116c8eb8 Mon Sep 17 00:00:00 2001 From: Andrey Vorobev <738482+vorobey@users.noreply.github.com> Date: Thu, 6 Aug 2026 15:40:26 +0300 Subject: [PATCH 2/8] Feature/demos remove system js html (#34672) Co-authored-by: Arman Jivanyan --- .../Accordion/Overview/Angular/index.html | 15 +--- .../Demos/Accordion/Overview/React/index.html | 11 +-- .../Accordion/Overview/ReactJs/index.html | 39 ++------- .../Demos/Accordion/Overview/Vue/index.html | 14 +-- .../ActionSheet/Basics/Angular/index.html | 15 +--- .../Demos/ActionSheet/Basics/React/index.html | 11 +-- .../ActionSheet/Basics/ReactJs/index.html | 39 ++------- .../Demos/ActionSheet/Basics/Vue/index.html | 15 +--- .../PopoverMode/Angular/index.html | 15 +--- .../ActionSheet/PopoverMode/React/index.html | 11 +-- .../PopoverMode/ReactJs/index.html | 39 ++------- .../ActionSheet/PopoverMode/Vue/index.html | 15 +--- .../Autocomplete/Overview/Angular/index.html | 15 +--- .../Autocomplete/Overview/React/index.html | 11 +-- .../Autocomplete/Overview/ReactJs/index.html | 39 ++------- .../Autocomplete/Overview/Vue/index.html | 15 +--- .../Demos/Box/Overview/Angular/index.html | 15 +--- .../demos/Demos/Box/Overview/React/index.html | 11 +-- .../Demos/Box/Overview/ReactJs/index.html | 39 ++------- apps/demos/Demos/Box/Overview/Vue/index.html | 14 +-- .../Demos/Button/Icons/Angular/index.html | 15 +--- .../demos/Demos/Button/Icons/React/index.html | 11 +-- .../Demos/Button/Icons/ReactJs/index.html | 45 ++-------- apps/demos/Demos/Button/Icons/Vue/index.html | 14 +-- .../Button/PredefinedTypes/Angular/index.html | 15 +--- .../Button/PredefinedTypes/React/index.html | 11 +-- .../Button/PredefinedTypes/ReactJs/index.html | 39 ++------- .../Button/PredefinedTypes/Vue/index.html | 14 +-- .../ButtonGroup/Overview/Angular/index.html | 15 +--- .../ButtonGroup/Overview/React/index.html | 11 +-- .../ButtonGroup/Overview/ReactJs/index.html | 39 ++------- .../Demos/ButtonGroup/Overview/Vue/index.html | 14 +-- .../MultipleSelection/Angular/index.html | 15 +--- .../MultipleSelection/React/index.html | 11 +-- .../MultipleSelection/ReactJs/index.html | 45 ++-------- .../Calendar/MultipleSelection/Vue/index.html | 15 +--- .../Calendar/Overview/Angular/index.html | 15 +--- .../Demos/Calendar/Overview/React/index.html | 11 +-- .../Calendar/Overview/ReactJs/index.html | 45 ++-------- .../Demos/Calendar/Overview/Vue/index.html | 15 +--- .../CardView/CardTemplate/Angular/index.html | 15 +--- .../CardView/CardTemplate/React/index.html | 11 +-- .../CardView/CardTemplate/ReactJs/index.html | 39 ++------- .../CardView/CardTemplate/Vue/index.html | 15 +--- .../CardView/ColumnChooser/Angular/index.html | 15 +--- .../CardView/ColumnChooser/React/index.html | 11 +-- .../CardView/ColumnChooser/ReactJs/index.html | 39 ++------- .../CardView/ColumnChooser/Vue/index.html | 15 +--- .../ColumnHeaderFilter/Angular/index.html | 15 +--- .../ColumnHeaderFilter/React/index.html | 9 +- .../ColumnHeaderFilter/ReactJs/index.html | 33 ++----- .../ColumnHeaderFilter/Vue/index.html | 14 +-- .../ColumnReordering/Angular/index.html | 15 +--- .../ColumnReordering/React/index.html | 9 +- .../ColumnReordering/ReactJs/index.html | 33 ++----- .../CardView/ColumnReordering/Vue/index.html | 14 +-- .../DataValidation/Angular/index.html | 15 +--- .../CardView/DataValidation/React/index.html | 9 +- .../DataValidation/ReactJs/index.html | 33 ++----- .../CardView/DataValidation/Vue/index.html | 14 +-- .../CardView/FieldTemplate/Angular/index.html | 15 +--- .../CardView/FieldTemplate/React/index.html | 11 +-- .../CardView/FieldTemplate/ReactJs/index.html | 39 ++------- .../CardView/FieldTemplate/Vue/index.html | 15 +--- .../CardView/FilterPanel/Angular/index.html | 15 +--- .../CardView/FilterPanel/React/index.html | 9 +- .../CardView/FilterPanel/ReactJs/index.html | 33 ++----- .../Demos/CardView/FilterPanel/Vue/index.html | 14 +-- .../CardView/Overview/Angular/index.html | 15 +--- .../Demos/CardView/Overview/React/index.html | 11 +-- .../CardView/Overview/ReactJs/index.html | 39 ++------- .../Demos/CardView/Overview/Vue/index.html | 15 +--- .../CardView/PopupEditing/Angular/index.html | 15 +--- .../CardView/PopupEditing/React/index.html | 9 +- .../CardView/PopupEditing/ReactJs/index.html | 33 ++----- .../CardView/PopupEditing/Vue/index.html | 14 +-- .../CardView/SearchPanel/Angular/index.html | 15 +--- .../CardView/SearchPanel/React/index.html | 9 +- .../CardView/SearchPanel/ReactJs/index.html | 33 ++----- .../Demos/CardView/SearchPanel/Vue/index.html | 14 +-- .../CardView/Selection/Angular/index.html | 15 +--- .../Demos/CardView/Selection/React/index.html | 11 +-- .../CardView/Selection/ReactJs/index.html | 39 ++------- .../Demos/CardView/Selection/Vue/index.html | 15 +--- .../CardView/SimpleArray/Angular/index.html | 15 +--- .../CardView/SimpleArray/React/index.html | 9 +- .../CardView/SimpleArray/ReactJs/index.html | 33 ++----- .../Demos/CardView/SimpleArray/Vue/index.html | 14 +-- .../Demos/CardView/Sorting/Angular/index.html | 15 +--- .../Demos/CardView/Sorting/React/index.html | 9 +- .../Demos/CardView/Sorting/ReactJs/index.html | 33 ++----- .../Demos/CardView/Sorting/Vue/index.html | 14 +-- .../CardView/WebAPIService/Angular/index.html | 15 +--- .../CardView/WebAPIService/React/index.html | 9 +- .../CardView/WebAPIService/ReactJs/index.html | 33 ++----- .../CardView/WebAPIService/Vue/index.html | 14 +-- .../Charts/AjaxRequest/Angular/index.html | 15 +--- .../Demos/Charts/AjaxRequest/React/index.html | 11 +-- .../Charts/AjaxRequest/ReactJs/index.html | 39 ++------- .../Demos/Charts/AjaxRequest/Vue/index.html | 14 +-- .../Charts/Annotation/Angular/index.html | 15 +--- .../Demos/Charts/Annotation/React/index.html | 11 +-- .../Charts/Annotation/ReactJs/index.html | 39 ++------- .../Demos/Charts/Annotation/Vue/index.html | 14 +-- .../Demos/Charts/Area/Angular/index.html | 15 +--- apps/demos/Demos/Charts/Area/React/index.html | 11 +-- .../Demos/Charts/Area/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Area/Vue/index.html | 14 +-- .../AreaSelectionZooming/Angular/index.html | 15 +--- .../AreaSelectionZooming/React/index.html | 11 +-- .../AreaSelectionZooming/ReactJs/index.html | 39 ++------- .../AreaSelectionZooming/Vue/index.html | 14 +-- .../Charts/AreaSparklines/Angular/index.html | 15 +--- .../Charts/AreaSparklines/React/index.html | 11 +-- .../Charts/AreaSparklines/ReactJs/index.html | 39 ++------- .../Charts/AreaSparklines/Vue/index.html | 14 +-- .../AutoCalculatedBarWidth/Angular/index.html | 15 +--- .../AutoCalculatedBarWidth/React/index.html | 11 +-- .../AutoCalculatedBarWidth/ReactJs/index.html | 39 ++------- .../AutoCalculatedBarWidth/Vue/index.html | 14 +-- .../AxisCustomPosition/Angular/index.html | 15 +--- .../AxisCustomPosition/React/index.html | 11 +-- .../AxisCustomPosition/ReactJs/index.html | 39 ++------- .../Charts/AxisCustomPosition/Vue/index.html | 14 +-- .../AxisLabelCustomization/Angular/index.html | 15 +--- .../AxisLabelCustomization/React/index.html | 11 +-- .../AxisLabelCustomization/ReactJs/index.html | 85 +++--------------- .../AxisLabelCustomization/Vue/index.html | 14 +-- .../BarColorCustomization/Angular/index.html | 15 +--- .../BarColorCustomization/React/index.html | 11 +-- .../BarColorCustomization/ReactJs/index.html | 39 ++------- .../BarColorCustomization/Vue/index.html | 14 +-- .../Charts/BarDrillDown/Angular/index.html | 15 +--- .../Charts/BarDrillDown/React/index.html | 11 +-- .../Charts/BarDrillDown/ReactJs/index.html | 39 ++------- .../Demos/Charts/BarDrillDown/Vue/index.html | 14 +-- .../Charts/BarSparklines/Angular/index.html | 15 +--- .../Charts/BarSparklines/React/index.html | 11 +-- .../Charts/BarSparklines/ReactJs/index.html | 39 ++------- .../Demos/Charts/BarSparklines/Vue/index.html | 14 +-- .../BiDirectionalBarChart/Angular/index.html | 15 +--- .../BiDirectionalBarChart/React/index.html | 11 +-- .../BiDirectionalBarChart/ReactJs/index.html | 39 ++------- .../BiDirectionalBarChart/Vue/index.html | 14 +-- .../Demos/Charts/Bubble/Angular/index.html | 15 +--- .../Demos/Charts/Bubble/React/index.html | 11 +-- .../Demos/Charts/Bubble/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Bubble/Vue/index.html | 14 +-- .../Charts/Candlestick/Angular/index.html | 15 +--- .../Demos/Charts/Candlestick/React/index.html | 11 +-- .../Charts/Candlestick/ReactJs/index.html | 39 ++------- .../Demos/Charts/Candlestick/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../CenterLabelCustomization/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../CenterLabelCustomization/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../ClientSideDataProcessing/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../ClientSideDataProcessing/Vue/index.html | 14 +-- .../Charts/Colorization/Angular/index.html | 15 +--- .../Charts/Colorization/React/index.html | 13 +-- .../Charts/Colorization/ReactJs/index.html | 39 ++------- .../Demos/Charts/Colorization/Vue/index.html | 16 +--- .../Charts/ContinuousData/Angular/index.html | 15 +--- .../Charts/ContinuousData/React/index.html | 11 +-- .../Charts/ContinuousData/ReactJs/index.html | 39 ++------- .../Charts/ContinuousData/Vue/index.html | 14 +-- .../Demos/Charts/Crosshair/Angular/index.html | 15 +--- .../Demos/Charts/Crosshair/React/index.html | 11 +-- .../Demos/Charts/Crosshair/ReactJs/index.html | 39 ++------- .../Demos/Charts/Crosshair/Vue/index.html | 14 +-- .../CustomAnnotations/Angular/index.html | 15 +--- .../Charts/CustomAnnotations/React/index.html | 11 +-- .../CustomAnnotations/ReactJs/index.html | 39 ++------- .../Charts/CustomAnnotations/Vue/index.html | 14 +-- .../Charts/CustomBarWidth/Angular/index.html | 15 +--- .../Charts/CustomBarWidth/React/index.html | 11 +-- .../Charts/CustomBarWidth/ReactJs/index.html | 39 ++------- .../Charts/CustomBarWidth/Vue/index.html | 14 +-- .../CustomFillStyles/Angular/index.html | 15 +--- .../Charts/CustomFillStyles/React/index.html | 11 +-- .../CustomFillStyles/ReactJs/index.html | 39 ++------- .../Charts/CustomFillStyles/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../CustomizePointsAndLabels/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../CustomizePointsAndLabels/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../Charts/DiscreteData/Angular/index.html | 15 +--- .../Charts/DiscreteData/React/index.html | 11 +-- .../Charts/DiscreteData/ReactJs/index.html | 39 ++------- .../Demos/Charts/DiscreteData/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../DiscretePointsAggregation/Vue/index.html | 20 +---- .../Demos/Charts/Doughnut/Angular/index.html | 15 +--- .../Demos/Charts/Doughnut/React/index.html | 11 +-- .../Demos/Charts/Doughnut/ReactJs/index.html | 39 ++------- .../Demos/Charts/Doughnut/Vue/index.html | 14 +-- .../DoughnutSelection/Angular/index.html | 15 +--- .../Charts/DoughnutSelection/React/index.html | 11 +-- .../DoughnutSelection/ReactJs/index.html | 39 ++------- .../Charts/DoughnutSelection/Vue/index.html | 14 +-- .../DoughnutWithTopNSeries/Angular/index.html | 15 +--- .../DoughnutWithTopNSeries/React/index.html | 11 +-- .../DoughnutWithTopNSeries/ReactJs/index.html | 39 ++------- .../DoughnutWithTopNSeries/Vue/index.html | 14 +-- .../Demos/Charts/DrillDown/Angular/index.html | 15 +--- .../Demos/Charts/DrillDown/React/index.html | 11 +-- .../Demos/Charts/DrillDown/ReactJs/index.html | 39 ++------- .../Demos/Charts/DrillDown/Vue/index.html | 14 +-- .../Charts/DynamicSeries/Angular/index.html | 15 +--- .../Charts/DynamicSeries/React/index.html | 11 +-- .../Charts/DynamicSeries/ReactJs/index.html | 39 ++------- .../Demos/Charts/DynamicSeries/Vue/index.html | 14 +-- .../Charts/EqualSizePies/Angular/index.html | 15 +--- .../Charts/EqualSizePies/React/index.html | 11 +-- .../Charts/EqualSizePies/ReactJs/index.html | 39 ++------- .../Demos/Charts/EqualSizePies/Vue/index.html | 14 +-- .../Demos/Charts/ErrorBars/Angular/index.html | 15 +--- .../Demos/Charts/ErrorBars/React/index.html | 11 +-- .../Demos/Charts/ErrorBars/ReactJs/index.html | 39 ++------- .../Demos/Charts/ErrorBars/Vue/index.html | 14 +-- .../ExportAndPrintingAPI/Angular/index.html | 15 +--- .../ExportAndPrintingAPI/React/index.html | 11 +-- .../ExportAndPrintingAPI/ReactJs/index.html | 39 ++------- .../ExportAndPrintingAPI/Vue/index.html | 14 +-- .../ExportCustomMarkup/Angular/index.html | 15 +--- .../ExportCustomMarkup/React/index.html | 11 +-- .../ExportCustomMarkup/ReactJs/index.html | 39 ++------- .../Charts/ExportCustomMarkup/Vue/index.html | 14 +-- .../ExportSeveralCharts/Angular/index.html | 15 +--- .../ExportSeveralCharts/React/index.html | 11 +-- .../ExportSeveralCharts/ReactJs/index.html | 39 ++------- .../Charts/ExportSeveralCharts/Vue/index.html | 14 +-- .../FlatDataStructure/Angular/index.html | 15 +--- .../Charts/FlatDataStructure/React/index.html | 11 +-- .../FlatDataStructure/ReactJs/index.html | 39 ++------- .../Charts/FlatDataStructure/Vue/index.html | 14 +-- .../Charts/FullStackedBar/Angular/index.html | 15 +--- .../Charts/FullStackedBar/React/index.html | 11 +-- .../Charts/FullStackedBar/ReactJs/index.html | 39 ++------- .../Charts/FullStackedBar/Vue/index.html | 14 +-- .../Charts/FunnelChart/Angular/index.html | 15 +--- .../Demos/Charts/FunnelChart/React/index.html | 11 +-- .../Charts/FunnelChart/ReactJs/index.html | 39 ++------- .../Demos/Charts/FunnelChart/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../HierarchicalDataStructure/Vue/index.html | 14 +-- .../Demos/Charts/HoverMode/Angular/index.html | 15 +--- .../Demos/Charts/HoverMode/React/index.html | 11 +-- .../Demos/Charts/HoverMode/ReactJs/index.html | 39 ++------- .../Demos/Charts/HoverMode/Vue/index.html | 14 +-- .../Charts/InvertedChart/Angular/index.html | 15 +--- .../Charts/InvertedChart/React/index.html | 11 +-- .../Charts/InvertedChart/ReactJs/index.html | 39 ++------- .../Demos/Charts/InvertedChart/Vue/index.html | 14 +-- .../LabelCustomization/Angular/index.html | 15 +--- .../LabelCustomization/React/index.html | 11 +-- .../LabelCustomization/ReactJs/index.html | 39 ++------- .../Charts/LabelCustomization/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../LegendMarkersCustomization/Vue/index.html | 14 +-- .../Demos/Charts/Line/Angular/index.html | 15 +--- apps/demos/Demos/Charts/Line/React/index.html | 11 +-- .../Demos/Charts/Line/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Line/Vue/index.html | 14 +-- .../LoadDataOnDemand/Angular/index.html | 15 +--- .../Charts/LoadDataOnDemand/React/index.html | 11 +-- .../LoadDataOnDemand/ReactJs/index.html | 39 ++------- .../Charts/LoadDataOnDemand/Vue/index.html | 14 +-- .../Charts/LogarithmicAxis/Angular/index.html | 15 +--- .../Charts/LogarithmicAxis/React/index.html | 11 +-- .../Charts/LogarithmicAxis/ReactJs/index.html | 39 ++------- .../Charts/LogarithmicAxis/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../LogarithmicVsLinearAxes/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../LogarithmicVsLinearAxes/Vue/index.html | 16 +--- .../Charts/MultipleAxes/Angular/index.html | 15 +--- .../Charts/MultipleAxes/React/index.html | 11 +-- .../Charts/MultipleAxes/ReactJs/index.html | 39 ++------- .../Demos/Charts/MultipleAxes/Vue/index.html | 14 +-- .../Charts/MultiplePanes/Angular/index.html | 15 +--- .../Charts/MultiplePanes/React/index.html | 11 +-- .../Charts/MultiplePanes/ReactJs/index.html | 39 ++------- .../Demos/Charts/MultiplePanes/Vue/index.html | 14 +-- .../MultiplePointSelection/Angular/index.html | 15 +--- .../MultiplePointSelection/React/index.html | 11 +-- .../MultiplePointSelection/ReactJs/index.html | 39 ++------- .../MultiplePointSelection/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../MultipleSeriesSelection/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../MultipleSeriesSelection/Vue/index.html | 14 +-- .../NullPointSupport/Angular/index.html | 15 +--- .../Charts/NullPointSupport/React/index.html | 11 +-- .../NullPointSupport/ReactJs/index.html | 39 ++------- .../Charts/NullPointSupport/Vue/index.html | 14 +-- .../Demos/Charts/Overview/Angular/index.html | 15 +--- .../Demos/Charts/Overview/React/index.html | 11 +-- .../Demos/Charts/Overview/ReactJs/index.html | 39 ++------- .../Demos/Charts/Overview/Vue/index.html | 14 +-- .../Demos/Charts/Palette/Angular/index.html | 15 +--- .../Demos/Charts/Palette/React/index.html | 11 +-- .../Demos/Charts/Palette/ReactJs/index.html | 39 ++------- .../demos/Demos/Charts/Palette/Vue/index.html | 14 +-- .../Charts/ParetoChart/Angular/index.html | 15 +--- .../Demos/Charts/ParetoChart/React/index.html | 11 +-- .../Charts/ParetoChart/ReactJs/index.html | 39 ++------- .../Demos/Charts/ParetoChart/Vue/index.html | 14 +-- .../Charts/PeriodicData/Angular/index.html | 15 +--- .../Charts/PeriodicData/React/index.html | 11 +-- .../Charts/PeriodicData/ReactJs/index.html | 39 ++------- .../Demos/Charts/PeriodicData/Vue/index.html | 14 +-- .../demos/Demos/Charts/Pie/Angular/index.html | 15 +--- apps/demos/Demos/Charts/Pie/React/index.html | 11 +-- .../demos/Demos/Charts/Pie/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Pie/Vue/index.html | 14 +-- .../Charts/PieAnnotations/Angular/index.html | 15 +--- .../Charts/PieAnnotations/React/index.html | 11 +-- .../Charts/PieAnnotations/ReactJs/index.html | 39 ++------- .../Charts/PieAnnotations/Vue/index.html | 14 +-- .../PieResolveLabelOverlap/Angular/index.html | 15 +--- .../PieResolveLabelOverlap/React/index.html | 11 +-- .../PieResolveLabelOverlap/ReactJs/index.html | 39 ++------- .../PieResolveLabelOverlap/Vue/index.html | 14 +-- .../PieWithMultipleSeries/Angular/index.html | 15 +--- .../PieWithMultipleSeries/React/index.html | 11 +-- .../PieWithMultipleSeries/ReactJs/index.html | 39 ++------- .../PieWithMultipleSeries/Vue/index.html | 14 +-- .../Charts/PointImage/Angular/index.html | 15 +--- .../Demos/Charts/PointImage/React/index.html | 11 +-- .../Charts/PointImage/ReactJs/index.html | 39 ++------- .../Demos/Charts/PointImage/Vue/index.html | 14 +-- .../PointSelectionAPI/Angular/index.html | 15 +--- .../Charts/PointSelectionAPI/React/index.html | 11 +-- .../PointSelectionAPI/ReactJs/index.html | 39 ++------- .../Charts/PointSelectionAPI/Vue/index.html | 14 +-- .../PointsAggregation/Angular/index.html | 15 +--- .../Charts/PointsAggregation/React/index.html | 11 +-- .../PointsAggregation/ReactJs/index.html | 39 ++------- .../Charts/PointsAggregation/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../PolarChartAnnotations/Angular/index.html | 15 +--- .../PolarChartAnnotations/React/index.html | 11 +-- .../PolarChartAnnotations/ReactJs/index.html | 39 ++------- .../PolarChartAnnotations/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../Charts/PyramidChart/Angular/index.html | 15 +--- .../Charts/PyramidChart/React/index.html | 11 +-- .../Charts/PyramidChart/ReactJs/index.html | 39 ++------- .../Demos/Charts/PyramidChart/Vue/index.html | 14 +-- .../Demos/Charts/RangeArea/Angular/index.html | 15 +--- .../Demos/Charts/RangeArea/React/index.html | 11 +-- .../Demos/Charts/RangeArea/ReactJs/index.html | 39 ++------- .../Demos/Charts/RangeArea/Vue/index.html | 14 +-- .../Demos/Charts/RangeBar/Angular/index.html | 15 +--- .../Demos/Charts/RangeBar/React/index.html | 11 +-- .../Demos/Charts/RangeBar/ReactJs/index.html | 39 ++------- .../Demos/Charts/RangeBar/Vue/index.html | 14 +-- .../ResolveLabelOverlap/Angular/index.html | 15 +--- .../ResolveLabelOverlap/React/index.html | 11 +-- .../ResolveLabelOverlap/ReactJs/index.html | 39 ++------- .../Charts/ResolveLabelOverlap/Vue/index.html | 14 +-- .../Charts/SankeyChart/Angular/index.html | 15 +--- .../Demos/Charts/SankeyChart/React/index.html | 11 +-- .../Charts/SankeyChart/ReactJs/index.html | 39 ++------- .../Demos/Charts/SankeyChart/Vue/index.html | 14 +-- .../Charts/ScaleBreaks/Angular/index.html | 15 +--- .../Demos/Charts/ScaleBreaks/React/index.html | 11 +-- .../Charts/ScaleBreaks/ReactJs/index.html | 39 ++------- .../Demos/Charts/ScaleBreaks/Vue/index.html | 14 +-- .../Demos/Charts/Scatter/Angular/index.html | 15 +--- .../Demos/Charts/Scatter/React/index.html | 11 +-- .../Demos/Charts/Scatter/ReactJs/index.html | 39 ++------- .../demos/Demos/Charts/Scatter/Vue/index.html | 14 +-- .../Demos/Charts/Selection/Angular/index.html | 15 +--- .../Demos/Charts/Selection/React/index.html | 11 +-- .../Demos/Charts/Selection/ReactJs/index.html | 39 ++------- .../Demos/Charts/Selection/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../ServerSideDataProcessing/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../ServerSideDataProcessing/Vue/index.html | 14 +-- .../Charts/SideBySideBar/Angular/index.html | 15 +--- .../Charts/SideBySideBar/React/index.html | 11 +-- .../Charts/SideBySideBar/ReactJs/index.html | 39 ++------- .../Demos/Charts/SideBySideBar/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../SideBySideFullStackedBar/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../SideBySideFullStackedBar/Vue/index.html | 14 +-- .../SideBySideStackedBar/Angular/index.html | 15 +--- .../SideBySideStackedBar/React/index.html | 11 +-- .../SideBySideStackedBar/ReactJs/index.html | 39 ++------- .../SideBySideStackedBar/Vue/index.html | 14 +-- .../Charts/SignalRService/Angular/index.html | 15 +--- .../Charts/SignalRService/React/index.html | 11 +-- .../Charts/SignalRService/ReactJs/index.html | 39 ++------- .../Charts/SignalRService/Vue/index.html | 19 +--- .../Charts/SimpleArray/Angular/index.html | 15 +--- .../Demos/Charts/SimpleArray/React/index.html | 11 +-- .../Charts/SimpleArray/ReactJs/index.html | 39 ++------- .../Demos/Charts/SimpleArray/Vue/index.html | 14 +-- .../Charts/SimpleBullets/Angular/index.html | 15 +--- .../Charts/SimpleBullets/React/index.html | 11 +-- .../Charts/SimpleBullets/ReactJs/index.html | 39 ++------- .../Demos/Charts/SimpleBullets/Vue/index.html | 14 +-- .../SimpleSparklines/Angular/index.html | 15 +--- .../Charts/SimpleSparklines/React/index.html | 11 +-- .../SimpleSparklines/ReactJs/index.html | 39 ++------- .../Charts/SimpleSparklines/Vue/index.html | 14 +-- .../SmallValueGroups/Angular/index.html | 15 +--- .../Charts/SmallValueGroups/React/index.html | 11 +-- .../SmallValueGroups/ReactJs/index.html | 39 ++------- .../Charts/SmallValueGroups/Vue/index.html | 14 +-- .../Demos/Charts/SpiderWeb/Angular/index.html | 17 +--- .../Demos/Charts/SpiderWeb/React/index.html | 13 +-- .../Demos/Charts/SpiderWeb/ReactJs/index.html | 47 ++-------- .../Demos/Charts/SpiderWeb/Vue/index.html | 16 +--- .../Demos/Charts/Spline/Angular/index.html | 15 +--- .../Demos/Charts/Spline/React/index.html | 11 +-- .../Demos/Charts/Spline/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Spline/Vue/index.html | 14 +-- .../Charts/SplineArea/Angular/index.html | 15 +--- .../Demos/Charts/SplineArea/React/index.html | 11 +-- .../Charts/SplineArea/ReactJs/index.html | 39 ++------- .../Demos/Charts/SplineArea/Vue/index.html | 14 +-- .../Charts/StackedBar/Angular/index.html | 15 +--- .../Demos/Charts/StackedBar/React/index.html | 11 +-- .../Charts/StackedBar/ReactJs/index.html | 39 ++------- .../Demos/Charts/StackedBar/Vue/index.html | 14 +-- .../Charts/StandardBar/Angular/index.html | 15 +--- .../Demos/Charts/StandardBar/React/index.html | 11 +-- .../Charts/StandardBar/ReactJs/index.html | 39 ++------- .../Demos/Charts/StandardBar/Vue/index.html | 14 +-- .../Demos/Charts/StepArea/Angular/index.html | 15 +--- .../Demos/Charts/StepArea/React/index.html | 11 +-- .../Demos/Charts/StepArea/ReactJs/index.html | 39 ++------- .../Demos/Charts/StepArea/Vue/index.html | 14 +-- .../Demos/Charts/StepLine/Angular/index.html | 15 +--- .../Demos/Charts/StepLine/React/index.html | 11 +-- .../Demos/Charts/StepLine/ReactJs/index.html | 39 ++------- .../Demos/Charts/StepLine/Vue/index.html | 14 +-- .../Demos/Charts/Stock/Angular/index.html | 15 +--- .../demos/Demos/Charts/Stock/React/index.html | 11 +-- .../Demos/Charts/Stock/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Stock/Vue/index.html | 14 +-- .../Demos/Charts/Strips/Angular/index.html | 15 +--- .../Demos/Charts/Strips/React/index.html | 11 +-- .../Demos/Charts/Strips/ReactJs/index.html | 39 ++------- apps/demos/Demos/Charts/Strips/Vue/index.html | 14 +-- .../TilingAlgorithms/Angular/index.html | 15 +--- .../Charts/TilingAlgorithms/React/index.html | 13 +-- .../TilingAlgorithms/ReactJs/index.html | 39 ++------- .../Charts/TilingAlgorithms/Vue/index.html | 16 +--- .../Demos/Charts/Timeline/Angular/index.html | 15 +--- .../Demos/Charts/Timeline/React/index.html | 11 +-- .../Demos/Charts/Timeline/ReactJs/index.html | 39 ++------- .../Demos/Charts/Timeline/Vue/index.html | 14 +-- .../Charts/TooltipAPI/Angular/index.html | 15 +--- .../Demos/Charts/TooltipAPI/React/index.html | 11 +-- .../Charts/TooltipAPI/ReactJs/index.html | 39 ++------- .../Demos/Charts/TooltipAPI/Vue/index.html | 14 +-- .../TooltipCustomization/Angular/index.html | 15 +--- .../TooltipCustomization/React/index.html | 11 +-- .../TooltipCustomization/ReactJs/index.html | 39 ++------- .../TooltipCustomization/Vue/index.html | 14 +-- .../Demos/Charts/WindRose/Angular/index.html | 15 +--- .../Demos/Charts/WindRose/React/index.html | 11 +-- .../Demos/Charts/WindRose/ReactJs/index.html | 39 ++------- .../Demos/Charts/WindRose/Vue/index.html | 14 +-- .../WinlossSparklines/Angular/index.html | 15 +--- .../Charts/WinlossSparklines/React/index.html | 11 +-- .../WinlossSparklines/ReactJs/index.html | 39 ++------- .../Charts/WinlossSparklines/Vue/index.html | 14 +-- .../ZoomingAndScrolling/Angular/index.html | 15 +--- .../ZoomingAndScrolling/React/index.html | 11 +-- .../ZoomingAndScrolling/ReactJs/index.html | 39 ++------- .../Charts/ZoomingAndScrolling/Vue/index.html | 16 +--- .../ZoomingAndScrollingAPI/Angular/index.html | 15 +--- .../ZoomingAndScrollingAPI/React/index.html | 9 +- .../ZoomingAndScrollingAPI/ReactJs/index.html | 33 ++----- .../ZoomingAndScrollingAPI/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../AIAndChatbotIntegration/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../AIAndChatbotIntegration/Vue/index.html | 15 +--- .../Chat/Customization/Angular/index.html | 15 +--- .../Demos/Chat/Customization/React/index.html | 11 +-- .../Chat/Customization/ReactJs/index.html | 39 ++------- .../Demos/Chat/Customization/Vue/index.html | 15 +--- .../Chat/FileAttachments/Angular/index.html | 15 +--- .../Chat/FileAttachments/React/index.html | 11 +-- .../Chat/FileAttachments/ReactJs/index.html | 39 ++------- .../Demos/Chat/FileAttachments/Vue/index.html | 15 +--- .../Chat/MessageEditing/Angular/index.html | 15 +--- .../Chat/MessageEditing/React/index.html | 11 +-- .../Chat/MessageEditing/ReactJs/index.html | 39 ++------- .../Demos/Chat/MessageEditing/Vue/index.html | 15 +--- .../Chat/MessageStreaming/Angular/index.html | 15 +--- .../Chat/MessageStreaming/React/index.html | 11 +-- .../Chat/MessageStreaming/ReactJs/index.html | 39 ++------- .../Chat/MessageStreaming/Vue/index.html | 15 +--- .../Demos/Chat/Overview/Angular/index.html | 15 +--- .../Demos/Chat/Overview/React/index.html | 11 +-- .../Demos/Chat/Overview/ReactJs/index.html | 39 ++------- apps/demos/Demos/Chat/Overview/Vue/index.html | 15 +--- .../Chat/PromptSuggestions/Angular/index.html | 15 +--- .../Chat/PromptSuggestions/React/index.html | 11 +-- .../Chat/PromptSuggestions/ReactJs/index.html | 39 ++------- .../Chat/PromptSuggestions/Vue/index.html | 15 +--- .../CheckBox/Overview/Angular/index.html | 15 +--- .../Demos/CheckBox/Overview/React/index.html | 9 +- .../CheckBox/Overview/ReactJs/index.html | 39 ++------- .../Demos/CheckBox/Overview/Vue/index.html | 14 +-- .../ColorBox/Overview/Angular/index.html | 15 +--- .../Demos/ColorBox/Overview/React/index.html | 11 +-- .../ColorBox/Overview/ReactJs/index.html | 39 ++------- .../Demos/ColorBox/Overview/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../CustomTextEditorButtons/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../CustomTextEditorButtons/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../EditorAppearanceVariants/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../EditorAppearanceVariants/Vue/index.html | 15 +--- .../Common/EditorsOverview/Angular/index.html | 15 +--- .../Common/EditorsOverview/React/index.html | 11 +-- .../Common/EditorsOverview/ReactJs/index.html | 39 ++------- .../Common/EditorsOverview/Vue/index.html | 20 +---- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../EditorsRightToLeftSupport/Vue/index.html | 15 +--- .../Common/FormsOverview/Angular/index.html | 15 +--- .../Common/FormsOverview/React/index.html | 11 +-- .../Common/FormsOverview/ReactJs/index.html | 39 ++------- .../Demos/Common/FormsOverview/Vue/index.html | 14 +-- .../Common/ListsOverview/Angular/index.html | 15 +--- .../Common/ListsOverview/React/index.html | 11 +-- .../Common/ListsOverview/ReactJs/index.html | 39 ++------- .../Demos/Common/ListsOverview/Vue/index.html | 14 +-- .../NavigationOverview/Angular/index.html | 15 +--- .../NavigationOverview/React/index.html | 11 +-- .../NavigationOverview/ReactJs/index.html | 39 ++------- .../Common/NavigationOverview/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../ContextMenu/Basics/Angular/index.html | 15 +--- .../Demos/ContextMenu/Basics/React/index.html | 11 +-- .../ContextMenu/Basics/ReactJs/index.html | 39 ++------- .../Demos/ContextMenu/Basics/Vue/index.html | 14 +-- .../ContextMenu/Scrolling/Angular/index.html | 15 +--- .../ContextMenu/Scrolling/React/index.html | 11 +-- .../ContextMenu/Scrolling/ReactJs/index.html | 39 ++------- .../ContextMenu/Scrolling/Vue/index.html | 14 +-- .../ContextMenu/Templates/Angular/index.html | 15 +--- .../ContextMenu/Templates/React/index.html | 11 +-- .../ContextMenu/Templates/ReactJs/index.html | 39 ++------- .../ContextMenu/Templates/Vue/index.html | 14 +-- .../DataGrid/AIAssistant/Angular/index.html | 15 +--- .../DataGrid/AIAssistant/React/index.html | 11 +-- .../DataGrid/AIAssistant/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/AIAssistant/Vue/index.html | 15 +--- .../DataGrid/AIColumns/Angular/index.html | 17 +--- .../Demos/DataGrid/AIColumns/React/index.html | 11 +-- .../DataGrid/AIColumns/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/AIColumns/Vue/index.html | 17 +--- .../Angular/index.html | 15 +--- .../AdvancedMasterDetailView/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../AdvancedMasterDetailView/Vue/index.html | 16 +--- .../DataGrid/AjaxRequest/Angular/index.html | 15 +--- .../DataGrid/AjaxRequest/React/index.html | 9 +- .../DataGrid/AjaxRequest/ReactJs/index.html | 33 ++----- .../Demos/DataGrid/AjaxRequest/Vue/index.html | 14 +-- .../DataGrid/Appearance/Angular/index.html | 15 +--- .../DataGrid/Appearance/React/index.html | 11 +-- .../DataGrid/Appearance/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/Appearance/Vue/index.html | 15 +--- .../AutoPopulatedColumns/Angular/index.html | 15 +--- .../AutoPopulatedColumns/React/index.html | 11 +-- .../AutoPopulatedColumns/ReactJs/index.html | 39 ++------- .../AutoPopulatedColumns/Vue/index.html | 15 +--- .../DataGrid/BatchEditing/Angular/index.html | 15 +--- .../DataGrid/BatchEditing/React/index.html | 11 +-- .../DataGrid/BatchEditing/ReactJs/index.html | 39 ++------- .../DataGrid/BatchEditing/Vue/index.html | 15 +--- .../BatchUpdateRequest/Angular/index.html | 15 +--- .../BatchUpdateRequest/React/index.html | 11 +-- .../BatchUpdateRequest/ReactJs/index.html | 39 ++------- .../BatchUpdateRequest/Vue/index.html | 15 +--- .../CascadingLookups/Angular/index.html | 15 +--- .../CascadingLookups/React/index.html | 11 +-- .../CascadingLookups/ReactJs/index.html | 39 ++------- .../DataGrid/CascadingLookups/Vue/index.html | 15 +--- .../Demos/DataGrid/Cell/Angular/index.html | 15 +--- .../Demos/DataGrid/Cell/React/index.html | 11 +-- .../Demos/DataGrid/Cell/ReactJs/index.html | 39 ++------- apps/demos/Demos/DataGrid/Cell/Vue/index.html | 15 +--- .../DataGrid/CellEditing/Angular/index.html | 15 +--- .../DataGrid/CellEditing/React/index.html | 11 +-- .../DataGrid/CellEditing/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/CellEditing/Vue/index.html | 15 +--- .../CollaborativeEditing/Angular/index.html | 15 +--- .../CollaborativeEditing/React/index.html | 11 +-- .../CollaborativeEditing/ReactJs/index.html | 39 ++------- .../CollaborativeEditing/Vue/index.html | 15 +--- .../Demos/DataGrid/Column/Angular/index.html | 15 +--- .../Demos/DataGrid/Column/React/index.html | 11 +-- .../Demos/DataGrid/Column/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/Column/Vue/index.html | 15 +--- .../DataGrid/ColumnChooser/Angular/index.html | 15 +--- .../DataGrid/ColumnChooser/React/index.html | 11 +-- .../DataGrid/ColumnChooser/ReactJs/index.html | 39 ++------- .../DataGrid/ColumnChooser/Vue/index.html | 15 +--- .../ColumnHeaderFilter/Angular/index.html | 15 +--- .../ColumnHeaderFilter/React/index.html | 11 +-- .../ColumnHeaderFilter/ReactJs/index.html | 39 ++------- .../ColumnHeaderFilter/Vue/index.html | 15 +--- .../ColumnReordering/Angular/index.html | 15 +--- .../ColumnReordering/React/index.html | 11 +-- .../ColumnReordering/ReactJs/index.html | 39 ++------- .../DataGrid/ColumnReordering/Vue/index.html | 15 +--- .../ColumnResizing/Angular/index.html | 15 +--- .../DataGrid/ColumnResizing/React/index.html | 11 +-- .../ColumnResizing/ReactJs/index.html | 39 ++------- .../DataGrid/ColumnResizing/Vue/index.html | 15 +--- .../ColumnsHidingPriority/Angular/index.html | 15 +--- .../ColumnsHidingPriority/React/index.html | 11 +-- .../ColumnsHidingPriority/ReactJs/index.html | 39 ++------- .../ColumnsHidingPriority/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../React/index.html | 9 +- .../ReactJs/index.html | 33 ++----- .../CommandColumnConfiguration/Vue/index.html | 14 +-- .../CustomDataSource/Angular/index.html | 15 +--- .../CustomDataSource/React/index.html | 9 +- .../CustomDataSource/ReactJs/index.html | 33 ++----- .../DataGrid/CustomDataSource/Vue/index.html | 14 +-- .../DataGrid/CustomEditors/Angular/index.html | 15 +--- .../DataGrid/CustomEditors/React/index.html | 11 +-- .../DataGrid/CustomEditors/ReactJs/index.html | 39 ++------- .../DataGrid/CustomEditors/Vue/index.html | 15 +--- .../CustomSummaries/Angular/index.html | 15 +--- .../DataGrid/CustomSummaries/React/index.html | 11 +-- .../CustomSummaries/ReactJs/index.html | 39 ++------- .../DataGrid/CustomSummaries/Vue/index.html | 15 +--- .../Angular/index.html | 16 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../DataValidation/Angular/index.html | 15 +--- .../DataGrid/DataValidation/React/index.html | 9 +- .../DataValidation/ReactJs/index.html | 33 ++----- .../DataGrid/DataValidation/Vue/index.html | 14 +-- .../DeferredSelection/Angular/index.html | 15 +--- .../DeferredSelection/React/index.html | 11 +-- .../DeferredSelection/ReactJs/index.html | 39 ++------- .../DataGrid/DeferredSelection/Vue/index.html | 15 +--- .../DnDBetweenGrids/Angular/index.html | 15 +--- .../DataGrid/DnDBetweenGrids/React/index.html | 11 +-- .../DnDBetweenGrids/ReactJs/index.html | 39 ++------- .../DataGrid/DnDBetweenGrids/Vue/index.html | 15 +--- .../EditStateManagement/Angular/index.html | 15 +--- .../EditStateManagement/React/index.html | 11 +-- .../EditStateManagement/ReactJs/index.html | 39 ++------- .../EditStateManagement/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../ExcelJSCellCustomization/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../ExcelJSCellCustomization/Vue/index.html | 15 +--- .../ExcelJSExportImages/Angular/index.html | 15 +--- .../ExcelJSExportImages/React/index.html | 11 +-- .../ExcelJSExportImages/ReactJs/index.html | 39 ++------- .../ExcelJSExportImages/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../ExcelJSExportMultipleGrids/Vue/index.html | 15 +--- .../ExcelJSHeaderAndFooter/Angular/index.html | 15 +--- .../ExcelJSHeaderAndFooter/React/index.html | 11 +-- .../ExcelJSHeaderAndFooter/ReactJs/index.html | 39 ++------- .../ExcelJSHeaderAndFooter/Vue/index.html | 16 +--- .../ExcelJSOverview/Angular/index.html | 15 +--- .../DataGrid/ExcelJSOverview/React/index.html | 11 +-- .../ExcelJSOverview/ReactJs/index.html | 39 ++------- .../DataGrid/ExcelJSOverview/Vue/index.html | 15 +--- .../DataGrid/FilterPanel/Angular/index.html | 16 +--- .../DataGrid/FilterPanel/React/index.html | 11 +-- .../DataGrid/FilterPanel/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/FilterPanel/Vue/index.html | 15 +--- .../DataGrid/Filtering/Angular/index.html | 16 +--- .../Demos/DataGrid/Filtering/React/index.html | 11 +-- .../DataGrid/Filtering/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/Filtering/Vue/index.html | 15 +--- .../DataGrid/FilteringAPI/Angular/index.html | 16 +--- .../DataGrid/FilteringAPI/React/index.html | 11 +-- .../DataGrid/FilteringAPI/ReactJs/index.html | 39 ++------- .../DataGrid/FilteringAPI/Vue/index.html | 15 +--- .../FixedAndStickyColumns/Angular/index.html | 15 +--- .../FixedAndStickyColumns/React/index.html | 11 +-- .../FixedAndStickyColumns/ReactJs/index.html | 39 ++------- .../FixedAndStickyColumns/Vue/index.html | 15 +--- .../DataGrid/FocusedRow/Angular/index.html | 15 +--- .../DataGrid/FocusedRow/React/index.html | 11 +-- .../DataGrid/FocusedRow/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/FocusedRow/Vue/index.html | 16 +--- .../DataGrid/FormEditing/Angular/index.html | 15 +--- .../DataGrid/FormEditing/React/index.html | 11 +-- .../DataGrid/FormEditing/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/FormEditing/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../GridAdaptabilityOverview/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../GridAdaptabilityOverview/Vue/index.html | 15 +--- .../DataGrid/GridSummaries/Angular/index.html | 15 +--- .../DataGrid/GridSummaries/React/index.html | 11 +-- .../DataGrid/GridSummaries/ReactJs/index.html | 39 ++------- .../DataGrid/GridSummaries/Vue/index.html | 15 +--- .../GroupSummaries/Angular/index.html | 15 +--- .../DataGrid/GroupSummaries/React/index.html | 11 +-- .../GroupSummaries/ReactJs/index.html | 39 ++------- .../DataGrid/GroupSummaries/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../React/index.html | 9 +- .../ReactJs/index.html | 33 ++----- .../HorizontalVirtualScrolling/Vue/index.html | 15 +--- .../InfiniteScrolling/Angular/index.html | 15 +--- .../InfiniteScrolling/React/index.html | 9 +- .../InfiniteScrolling/ReactJs/index.html | 33 ++----- .../DataGrid/InfiniteScrolling/Vue/index.html | 15 +--- .../KeyboardNavigation/Angular/index.html | 15 +--- .../KeyboardNavigation/React/index.html | 9 +- .../KeyboardNavigation/ReactJs/index.html | 33 ++----- .../KeyboardNavigation/Vue/index.html | 14 +-- .../LocalReordering/Angular/index.html | 15 +--- .../DataGrid/LocalReordering/React/index.html | 11 +-- .../LocalReordering/ReactJs/index.html | 39 ++------- .../DataGrid/LocalReordering/Vue/index.html | 15 +--- .../MasterDetailAPI/Angular/index.html | 15 +--- .../DataGrid/MasterDetailAPI/React/index.html | 11 +-- .../MasterDetailAPI/ReactJs/index.html | 39 ++------- .../DataGrid/MasterDetailAPI/Vue/index.html | 15 +--- .../MasterDetailView/Angular/index.html | 15 +--- .../MasterDetailView/React/index.html | 11 +-- .../MasterDetailView/ReactJs/index.html | 39 ++------- .../DataGrid/MasterDetailView/Vue/index.html | 15 +--- .../MultiRowHeadersBands/Angular/index.html | 15 +--- .../MultiRowHeadersBands/React/index.html | 11 +-- .../MultiRowHeadersBands/ReactJs/index.html | 39 ++------- .../MultiRowHeadersBands/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../MultipleRecordSelectionAPI/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 15 +--- .../MultipleSorting/Angular/index.html | 16 +--- .../DataGrid/MultipleSorting/React/index.html | 11 +-- .../MultipleSorting/ReactJs/index.html | 39 ++------- .../DataGrid/MultipleSorting/Vue/index.html | 15 +--- .../NewRecordPosition/Angular/index.html | 15 +--- .../NewRecordPosition/React/index.html | 11 +-- .../NewRecordPosition/ReactJs/index.html | 39 ++------- .../DataGrid/NewRecordPosition/Vue/index.html | 15 +--- .../DataGrid/Overview/Angular/index.html | 15 +--- .../Demos/DataGrid/Overview/React/index.html | 11 +-- .../DataGrid/Overview/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/Overview/Vue/index.html | 15 +--- .../PDFCellCustomization/Angular/index.html | 15 +--- .../PDFCellCustomization/React/index.html | 11 +-- .../PDFCellCustomization/ReactJs/index.html | 39 ++------- .../PDFCellCustomization/Vue/index.html | 15 +--- .../PDFExportImages/Angular/index.html | 15 +--- .../DataGrid/PDFExportImages/React/index.html | 11 +-- .../PDFExportImages/ReactJs/index.html | 39 ++------- .../DataGrid/PDFExportImages/Vue/index.html | 15 +--- .../PDFExportMultipleGrids/Angular/index.html | 15 +--- .../PDFExportMultipleGrids/React/index.html | 11 +-- .../PDFExportMultipleGrids/ReactJs/index.html | 39 ++------- .../PDFExportMultipleGrids/Vue/index.html | 15 +--- .../PDFHeaderAndFooter/Angular/index.html | 15 +--- .../PDFHeaderAndFooter/React/index.html | 11 +-- .../PDFHeaderAndFooter/ReactJs/index.html | 39 ++------- .../PDFHeaderAndFooter/Vue/index.html | 16 +--- .../DataGrid/PDFOverview/Angular/index.html | 15 +--- .../DataGrid/PDFOverview/React/index.html | 9 +- .../DataGrid/PDFOverview/ReactJs/index.html | 33 ++----- .../Demos/DataGrid/PDFOverview/Vue/index.html | 14 +-- .../DataGrid/PopupEditing/Angular/index.html | 15 +--- .../DataGrid/PopupEditing/React/index.html | 11 +-- .../DataGrid/PopupEditing/ReactJs/index.html | 39 ++------- .../DataGrid/PopupEditing/Vue/index.html | 15 +--- .../RealTimeUpdates/Angular/index.html | 15 +--- .../DataGrid/RealTimeUpdates/React/index.html | 11 +-- .../RealTimeUpdates/ReactJs/index.html | 39 ++------- .../DataGrid/RealTimeUpdates/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../RecalculateWhileEditing/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../RecalculateWhileEditing/Vue/index.html | 15 +--- .../RecordGrouping/Angular/index.html | 15 +--- .../DataGrid/RecordGrouping/React/index.html | 11 +-- .../RecordGrouping/ReactJs/index.html | 39 ++------- .../DataGrid/RecordGrouping/Vue/index.html | 15 +--- .../DataGrid/RecordPaging/Angular/index.html | 15 +--- .../DataGrid/RecordPaging/React/index.html | 11 +-- .../DataGrid/RecordPaging/ReactJs/index.html | 39 ++------- .../DataGrid/RecordPaging/Vue/index.html | 16 +--- .../RemoteCRUDOperations/Angular/index.html | 15 +--- .../RemoteCRUDOperations/React/index.html | 11 +-- .../RemoteCRUDOperations/ReactJs/index.html | 39 ++------- .../RemoteCRUDOperations/Vue/index.html | 15 +--- .../RemoteGrouping/Angular/index.html | 15 +--- .../DataGrid/RemoteGrouping/React/index.html | 9 +- .../RemoteGrouping/ReactJs/index.html | 33 ++----- .../DataGrid/RemoteGrouping/Vue/index.html | 15 +--- .../RemoteReordering/Angular/index.html | 15 +--- .../RemoteReordering/React/index.html | 11 +-- .../RemoteReordering/ReactJs/index.html | 39 ++------- .../DataGrid/RemoteReordering/Vue/index.html | 14 +-- .../RemoteVirtualScrolling/Angular/index.html | 15 +--- .../RemoteVirtualScrolling/React/index.html | 11 +-- .../RemoteVirtualScrolling/ReactJs/index.html | 39 ++------- .../RemoteVirtualScrolling/Vue/index.html | 15 +--- .../RightToLeftSupport/Angular/index.html | 15 +--- .../RightToLeftSupport/React/index.html | 11 +-- .../RightToLeftSupport/ReactJs/index.html | 39 ++------- .../RightToLeftSupport/Vue/index.html | 15 +--- .../Demos/DataGrid/Row/Angular/index.html | 15 +--- .../demos/Demos/DataGrid/Row/React/index.html | 11 +-- .../Demos/DataGrid/Row/ReactJs/index.html | 39 ++------- apps/demos/Demos/DataGrid/Row/Vue/index.html | 15 +--- .../DataGrid/RowEditing/Angular/index.html | 15 +--- .../DataGrid/RowEditing/React/index.html | 11 +-- .../DataGrid/RowEditing/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/RowEditing/Vue/index.html | 15 +--- .../DataGrid/RowSelection/Angular/index.html | 15 +--- .../DataGrid/RowSelection/React/index.html | 11 +-- .../DataGrid/RowSelection/ReactJs/index.html | 39 ++------- .../DataGrid/RowSelection/Vue/index.html | 15 +--- .../SemanticSearch/Angular/index.html | 15 +--- .../DataGrid/SemanticSearch/React/index.html | 9 +- .../SemanticSearch/ReactJs/index.html | 33 ++----- .../DataGrid/SemanticSearch/Vue/index.html | 14 +-- .../SignalRService/Angular/index.html | 15 +--- .../DataGrid/SignalRService/React/index.html | 11 +-- .../SignalRService/ReactJs/index.html | 39 ++------- .../DataGrid/SignalRService/Vue/index.html | 15 +--- .../DataGrid/SimpleArray/Angular/index.html | 15 +--- .../DataGrid/SimpleArray/React/index.html | 9 +- .../DataGrid/SimpleArray/ReactJs/index.html | 33 ++----- .../Demos/DataGrid/SimpleArray/Vue/index.html | 14 +-- .../StatePersistence/Angular/index.html | 15 +--- .../StatePersistence/React/index.html | 11 +-- .../StatePersistence/ReactJs/index.html | 39 ++------- .../DataGrid/StatePersistence/Vue/index.html | 15 +--- .../Demos/DataGrid/Toolbar/Angular/index.html | 15 +--- .../Demos/DataGrid/Toolbar/React/index.html | 11 +-- .../Demos/DataGrid/Toolbar/ReactJs/index.html | 39 ++------- .../Demos/DataGrid/Toolbar/Vue/index.html | 15 +--- .../VirtualScrolling/Angular/index.html | 15 +--- .../VirtualScrolling/React/index.html | 9 +- .../VirtualScrolling/ReactJs/index.html | 33 ++----- .../DataGrid/VirtualScrolling/Vue/index.html | 15 +--- .../DataGrid/WebAPIService/Angular/index.html | 15 +--- .../DataGrid/WebAPIService/React/index.html | 9 +- .../DataGrid/WebAPIService/ReactJs/index.html | 33 ++----- .../DataGrid/WebAPIService/Vue/index.html | 14 +-- .../DateBox/Formatting/Angular/index.html | 15 +--- .../Demos/DateBox/Formatting/React/index.html | 11 +-- .../DateBox/Formatting/ReactJs/index.html | 39 ++------- .../Demos/DateBox/Formatting/Vue/index.html | 15 +--- .../Demos/DateBox/Overview/Angular/index.html | 15 +--- .../Demos/DateBox/Overview/React/index.html | 11 +-- .../Demos/DateBox/Overview/ReactJs/index.html | 39 ++------- .../Demos/DateBox/Overview/Vue/index.html | 15 +--- .../Formatting/Angular/index.html | 15 +--- .../DateRangeBox/Formatting/React/index.html | 11 +-- .../Formatting/ReactJs/index.html | 39 ++------- .../DateRangeBox/Formatting/Vue/index.html | 15 +--- .../DateRangeBox/Overview/Angular/index.html | 15 +--- .../DateRangeBox/Overview/React/index.html | 11 +-- .../DateRangeBox/Overview/ReactJs/index.html | 45 ++-------- .../DateRangeBox/Overview/Vue/index.html | 15 +--- .../Diagram/Adaptability/Angular/index.html | 17 +--- .../Diagram/Adaptability/React/index.html | 12 +-- .../Diagram/Adaptability/ReactJs/index.html | 50 ++--------- .../Demos/Diagram/Adaptability/Vue/index.html | 16 +--- .../AdvancedDataBinding/Angular/index.html | 17 +--- .../AdvancedDataBinding/React/index.html | 12 +-- .../AdvancedDataBinding/ReactJs/index.html | 50 ++--------- .../AdvancedDataBinding/Vue/index.html | 16 +--- .../Diagram/Containers/Angular/index.html | 17 +--- .../Demos/Diagram/Containers/React/index.html | 12 +-- .../Diagram/Containers/ReactJs/index.html | 50 ++--------- .../Demos/Diagram/Containers/Vue/index.html | 16 +--- .../CustomShapesWithIcons/Angular/index.html | 17 +--- .../CustomShapesWithIcons/React/index.html | 12 +-- .../CustomShapesWithIcons/ReactJs/index.html | 50 ++--------- .../CustomShapesWithIcons/Vue/index.html | 16 +--- .../Angular/index.html | 17 +--- .../React/index.html | 12 +-- .../ReactJs/index.html | 50 ++--------- .../CustomShapesWithTemplates/Vue/index.html | 16 +--- .../Angular/index.html | 17 +--- .../React/index.html | 12 +-- .../ReactJs/index.html | 50 ++--------- .../Vue/index.html | 16 +--- .../CustomShapesWithTexts/Angular/index.html | 17 +--- .../CustomShapesWithTexts/React/index.html | 12 +-- .../CustomShapesWithTexts/ReactJs/index.html | 50 ++--------- .../CustomShapesWithTexts/Vue/index.html | 16 +--- .../Diagram/ImagesInShapes/Angular/index.html | 17 +--- .../Diagram/ImagesInShapes/React/index.html | 12 +-- .../Diagram/ImagesInShapes/ReactJs/index.html | 50 ++--------- .../Diagram/ImagesInShapes/Vue/index.html | 16 +--- .../Diagram/ItemSelection/Angular/index.html | 17 +--- .../Diagram/ItemSelection/React/index.html | 12 +-- .../Diagram/ItemSelection/ReactJs/index.html | 50 ++--------- .../Diagram/ItemSelection/Vue/index.html | 16 +--- .../NodesAndEdgesArrays/Angular/index.html | 17 +--- .../NodesAndEdgesArrays/React/index.html | 12 +-- .../NodesAndEdgesArrays/ReactJs/index.html | 50 ++--------- .../NodesAndEdgesArrays/Vue/index.html | 16 +--- .../Angular/index.html | 17 +--- .../React/index.html | 12 +-- .../ReactJs/index.html | 50 ++--------- .../Vue/index.html | 16 +--- .../Angular/index.html | 17 +--- .../NodesArrayPlainStructure/React/index.html | 12 +-- .../ReactJs/index.html | 50 ++--------- .../NodesArrayPlainStructure/Vue/index.html | 16 +--- .../OperationRestrictions/Angular/index.html | 17 +--- .../OperationRestrictions/React/index.html | 12 +-- .../OperationRestrictions/ReactJs/index.html | 50 ++--------- .../OperationRestrictions/Vue/index.html | 16 +--- .../Demos/Diagram/Overview/Angular/index.html | 17 +--- .../Demos/Diagram/Overview/React/index.html | 12 +-- .../Demos/Diagram/Overview/ReactJs/index.html | 50 ++--------- .../Demos/Diagram/Overview/Vue/index.html | 16 +--- .../Demos/Diagram/ReadOnly/Angular/index.html | 17 +--- .../Demos/Diagram/ReadOnly/React/index.html | 12 +-- .../Demos/Diagram/ReadOnly/ReactJs/index.html | 50 ++--------- .../Demos/Diagram/ReadOnly/Vue/index.html | 16 +--- .../Diagram/SimpleView/Angular/index.html | 17 +--- .../Demos/Diagram/SimpleView/React/index.html | 12 +-- .../Diagram/SimpleView/ReactJs/index.html | 50 ++--------- .../Demos/Diagram/SimpleView/Vue/index.html | 16 +--- .../UICustomization/Angular/index.html | 17 +--- .../Diagram/UICustomization/React/index.html | 12 +-- .../UICustomization/ReactJs/index.html | 50 ++--------- .../Diagram/UICustomization/Vue/index.html | 16 +--- .../Diagram/WebAPIService/Angular/index.html | 17 +--- .../Diagram/WebAPIService/React/index.html | 12 +-- .../Diagram/WebAPIService/ReactJs/index.html | 50 ++--------- .../Diagram/WebAPIService/Vue/index.html | 16 +--- .../LeftOrRightPosition/Angular/index.html | 15 +--- .../LeftOrRightPosition/React/index.html | 12 +-- .../LeftOrRightPosition/ReactJs/index.html | 40 ++------- .../Drawer/LeftOrRightPosition/Vue/index.html | 19 +--- .../TopOrBottomPosition/Angular/index.html | 15 +--- .../TopOrBottomPosition/React/index.html | 12 +-- .../TopOrBottomPosition/ReactJs/index.html | 40 ++------- .../Drawer/TopOrBottomPosition/Vue/index.html | 19 +--- .../MultipleSelection/Angular/index.html | 15 +--- .../MultipleSelection/React/index.html | 11 +-- .../MultipleSelection/ReactJs/index.html | 39 ++------- .../MultipleSelection/Vue/index.html | 15 +--- .../SingleSelection/Angular/index.html | 15 +--- .../SingleSelection/React/index.html | 11 +-- .../SingleSelection/ReactJs/index.html | 39 ++------- .../SingleSelection/Vue/index.html | 15 +--- .../Overview/Angular/index.html | 15 +--- .../DropDownButton/Overview/React/index.html | 11 +-- .../Overview/ReactJs/index.html | 39 ++------- .../DropDownButton/Overview/Vue/index.html | 14 +-- .../FieldSet/Overview/Angular/index.html | 15 +--- .../Demos/FieldSet/Overview/React/index.html | 11 +-- .../FieldSet/Overview/ReactJs/index.html | 39 ++------- .../Demos/FieldSet/Overview/Vue/index.html | 14 +-- .../BindingToEF/Angular/index.html | 15 +--- .../FileManager/BindingToEF/React/index.html | 9 +- .../BindingToEF/ReactJs/index.html | 39 ++------- .../FileManager/BindingToEF/Vue/index.html | 13 +-- .../BindingToFileSystem/Angular/index.html | 15 +--- .../BindingToFileSystem/React/index.html | 9 +- .../BindingToFileSystem/ReactJs/index.html | 39 ++------- .../BindingToFileSystem/Vue/index.html | 13 +-- .../Angular/index.html | 15 +--- .../React/index.html | 9 +- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 13 +-- .../CustomThumbnails/Angular/index.html | 15 +--- .../CustomThumbnails/React/index.html | 9 +- .../CustomThumbnails/ReactJs/index.html | 39 ++------- .../CustomThumbnails/Vue/index.html | 13 +-- .../FileManager/Overview/Angular/index.html | 15 +--- .../FileManager/Overview/React/index.html | 11 +-- .../FileManager/Overview/ReactJs/index.html | 45 ++-------- .../Demos/FileManager/Overview/Vue/index.html | 14 +-- .../UICustomization/Angular/index.html | 15 +--- .../UICustomization/React/index.html | 9 +- .../UICustomization/ReactJs/index.html | 33 ++----- .../UICustomization/Vue/index.html | 13 +-- .../ChunkUpload/Angular/index.html | 15 +--- .../FileUploader/ChunkUpload/React/index.html | 11 +-- .../ChunkUpload/ReactJs/index.html | 39 ++------- .../FileUploader/ChunkUpload/Vue/index.html | 14 +-- .../CustomDropzone/Angular/index.html | 15 +--- .../CustomDropzone/React/index.html | 11 +-- .../CustomDropzone/ReactJs/index.html | 39 ++------- .../CustomDropzone/Vue/index.html | 14 +-- .../FileSelection/Angular/index.html | 15 +--- .../FileSelection/React/index.html | 11 +-- .../FileSelection/ReactJs/index.html | 39 ++------- .../FileUploader/FileSelection/Vue/index.html | 14 +-- .../FileUploading/Angular/index.html | 15 +--- .../FileUploading/React/index.html | 11 +-- .../FileUploading/ReactJs/index.html | 39 ++------- .../FileUploader/FileUploading/Vue/index.html | 14 +-- .../Validation/Angular/index.html | 15 +--- .../FileUploader/Validation/React/index.html | 11 +-- .../Validation/ReactJs/index.html | 39 ++------- .../FileUploader/Validation/Vue/index.html | 14 +-- .../Customization/Angular/index.html | 15 +--- .../Customization/React/index.html | 11 +-- .../Customization/ReactJs/index.html | 39 ++------- .../Customization/Vue/index.html | 14 +-- .../WithDataGrid/Angular/index.html | 15 +--- .../WithDataGrid/React/index.html | 11 +-- .../WithDataGrid/ReactJs/index.html | 39 ++------- .../FilterBuilder/WithDataGrid/Vue/index.html | 14 +-- .../FilterBuilder/WithList/Angular/index.html | 15 +--- .../FilterBuilder/WithList/React/index.html | 11 +-- .../FilterBuilder/WithList/ReactJs/index.html | 39 ++------- .../FilterBuilder/WithList/Vue/index.html | 14 +-- .../Overview/Angular/index.html | 15 +--- .../Overview/React/index.html | 11 +-- .../Overview/ReactJs/index.html | 39 ++------- .../Overview/Vue/index.html | 14 +-- .../Form/Adaptability/Angular/index.html | 15 +--- .../Demos/Form/Adaptability/React/index.html | 11 +-- .../Form/Adaptability/ReactJs/index.html | 45 ++-------- .../Demos/Form/Adaptability/Vue/index.html | 14 +-- .../Demos/Form/Grouping/Angular/index.html | 15 +--- .../Demos/Form/Grouping/React/index.html | 11 +-- .../Demos/Form/Grouping/ReactJs/index.html | 45 ++-------- apps/demos/Demos/Form/Grouping/Vue/index.html | 14 +-- .../Form/ItemCustomization/Angular/index.html | 15 +--- .../Form/ItemCustomization/React/index.html | 11 +-- .../Form/ItemCustomization/ReactJs/index.html | 45 ++-------- .../Form/ItemCustomization/Vue/index.html | 14 +-- .../Demos/Form/Overview/Angular/index.html | 15 +--- .../Demos/Form/Overview/React/index.html | 11 +-- .../Demos/Form/Overview/ReactJs/index.html | 45 ++-------- apps/demos/Demos/Form/Overview/Vue/index.html | 14 +-- .../Demos/Form/SmartPaste/Angular/index.html | 17 +--- .../Demos/Form/SmartPaste/React/index.html | 13 +-- .../Demos/Form/SmartPaste/ReactJs/index.html | 45 ++-------- .../Demos/Form/SmartPaste/Vue/index.html | 14 +-- .../UpdateItemsDynamically/Angular/index.html | 15 +--- .../UpdateItemsDynamically/React/index.html | 11 +-- .../UpdateItemsDynamically/ReactJs/index.html | 45 ++-------- .../UpdateItemsDynamically/Vue/index.html | 14 +-- .../Demos/Form/Validation/Angular/index.html | 15 +--- .../Demos/Form/Validation/React/index.html | 11 +-- .../Demos/Form/Validation/ReactJs/index.html | 45 ++-------- .../Demos/Form/Validation/Vue/index.html | 14 +-- .../Gallery/ItemTemplate/Angular/index.html | 15 +--- .../Gallery/ItemTemplate/React/index.html | 11 +-- .../Gallery/ItemTemplate/ReactJs/index.html | 39 ++------- .../Demos/Gallery/ItemTemplate/Vue/index.html | 15 +--- .../Demos/Gallery/Overview/Angular/index.html | 15 +--- .../Demos/Gallery/Overview/React/index.html | 11 +-- .../Demos/Gallery/Overview/ReactJs/index.html | 39 ++------- .../Demos/Gallery/Overview/Vue/index.html | 15 +--- .../Demos/Gantt/Appearance/Angular/index.html | 15 +--- .../Demos/Gantt/Appearance/React/index.html | 11 +-- .../Demos/Gantt/Appearance/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/Appearance/Vue/index.html | 14 +-- .../Gantt/ContextMenu/Angular/index.html | 15 +--- .../Demos/Gantt/ContextMenu/React/index.html | 11 +-- .../Gantt/ContextMenu/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/ContextMenu/Vue/index.html | 14 +-- .../Gantt/DataBinding/Angular/index.html | 15 +--- .../Demos/Gantt/DataBinding/React/index.html | 11 +-- .../Gantt/DataBinding/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/DataBinding/Vue/index.html | 14 +-- .../Gantt/ExportToPDF/Angular/index.html | 15 +--- .../Demos/Gantt/ExportToPDF/React/index.html | 11 +-- .../Gantt/ExportToPDF/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/ExportToPDF/Vue/index.html | 14 +-- .../Demos/Gantt/FilterRow/Angular/index.html | 15 +--- .../Demos/Gantt/FilterRow/React/index.html | 11 +-- .../Demos/Gantt/FilterRow/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/FilterRow/Vue/index.html | 13 +-- .../Gantt/HeaderFilter/Angular/index.html | 15 +--- .../Demos/Gantt/HeaderFilter/React/index.html | 11 +-- .../Gantt/HeaderFilter/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/HeaderFilter/Vue/index.html | 13 +-- .../Demos/Gantt/Overview/Angular/index.html | 15 +--- .../Demos/Gantt/Overview/React/index.html | 11 +-- .../Demos/Gantt/Overview/ReactJs/index.html | 45 ++-------- .../demos/Demos/Gantt/Overview/Vue/index.html | 14 +-- .../Demos/Gantt/Sorting/Angular/index.html | 15 +--- .../Demos/Gantt/Sorting/React/index.html | 11 +-- .../Demos/Gantt/Sorting/ReactJs/index.html | 45 ++-------- apps/demos/Demos/Gantt/Sorting/Vue/index.html | 14 +-- .../Demos/Gantt/StripLines/Angular/index.html | 15 +--- .../Demos/Gantt/StripLines/React/index.html | 11 +-- .../Demos/Gantt/StripLines/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/StripLines/Vue/index.html | 14 +-- .../Gantt/TaskTemplate/Angular/index.html | 15 +--- .../Demos/Gantt/TaskTemplate/React/index.html | 11 +-- .../Gantt/TaskTemplate/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/TaskTemplate/Vue/index.html | 14 +-- .../Demos/Gantt/Toolbar/Angular/index.html | 15 +--- .../Demos/Gantt/Toolbar/React/index.html | 11 +-- .../Demos/Gantt/Toolbar/ReactJs/index.html | 45 ++-------- apps/demos/Demos/Gantt/Toolbar/Vue/index.html | 14 +-- .../Demos/Gantt/Validation/Angular/index.html | 15 +--- .../Demos/Gantt/Validation/React/index.html | 11 +-- .../Demos/Gantt/Validation/ReactJs/index.html | 45 ++-------- .../Demos/Gantt/Validation/Vue/index.html | 14 +-- .../AnglesCustomization/Angular/index.html | 15 +--- .../AnglesCustomization/React/index.html | 13 +-- .../AnglesCustomization/ReactJs/index.html | 39 ++------- .../Gauges/AnglesCustomization/Vue/index.html | 16 +--- .../Demos/Gauges/BarGauge/Angular/index.html | 15 +--- .../Demos/Gauges/BarGauge/React/index.html | 13 +-- .../Demos/Gauges/BarGauge/ReactJs/index.html | 39 ++------- .../Demos/Gauges/BarGauge/Vue/index.html | 16 +--- .../Gauges/CircularGauge/Angular/index.html | 15 +--- .../Gauges/CircularGauge/React/index.html | 13 +-- .../Gauges/CircularGauge/ReactJs/index.html | 39 ++------- .../Demos/Gauges/CircularGauge/Vue/index.html | 16 +--- .../Gauges/CustomLayout/Angular/index.html | 15 +--- .../Gauges/CustomLayout/React/index.html | 13 +-- .../Gauges/CustomLayout/ReactJs/index.html | 39 ++------- .../Demos/Gauges/CustomLayout/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../CustomLayoutLinearGauge/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../CustomLayoutLinearGauge/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 44 ++-------- .../Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../GaugeTitleCustomized/Angular/index.html | 15 +--- .../GaugeTitleCustomized/React/index.html | 13 +-- .../GaugeTitleCustomized/ReactJs/index.html | 39 ++------- .../GaugeTitleCustomized/Vue/index.html | 16 +--- .../Gauges/GaugeTooltip/Angular/index.html | 15 +--- .../Gauges/GaugeTooltip/React/index.html | 13 +-- .../Gauges/GaugeTooltip/ReactJs/index.html | 39 ++------- .../Demos/Gauges/GaugeTooltip/Vue/index.html | 16 +--- .../LabelsCustomization/Angular/index.html | 15 +--- .../LabelsCustomization/React/index.html | 13 +-- .../LabelsCustomization/ReactJs/index.html | 39 ++------- .../Gauges/LabelsCustomization/Vue/index.html | 16 +--- .../Gauges/LinearGauge/Angular/index.html | 15 +--- .../Demos/Gauges/LinearGauge/React/index.html | 13 +-- .../Gauges/LinearGauge/ReactJs/index.html | 39 ++------- .../Demos/Gauges/LinearGauge/Vue/index.html | 16 +--- .../Demos/Gauges/Overview/Angular/index.html | 15 +--- .../Demos/Gauges/Overview/React/index.html | 11 +-- .../Demos/Gauges/Overview/ReactJs/index.html | 39 ++------- .../Demos/Gauges/Overview/Vue/index.html | 14 +-- .../Demos/Gauges/Palette/Angular/index.html | 15 +--- .../Demos/Gauges/Palette/React/index.html | 13 +-- .../Demos/Gauges/Palette/ReactJs/index.html | 39 ++------- .../demos/Demos/Gauges/Palette/Vue/index.html | 16 +--- .../PaletteForRanges/Angular/index.html | 15 +--- .../Gauges/PaletteForRanges/React/index.html | 13 +-- .../PaletteForRanges/ReactJs/index.html | 39 ++------- .../Gauges/PaletteForRanges/Vue/index.html | 16 +--- .../RangeBarBaseValue/Angular/index.html | 15 +--- .../Gauges/RangeBarBaseValue/React/index.html | 13 +-- .../RangeBarBaseValue/ReactJs/index.html | 39 ++------- .../Gauges/RangeBarBaseValue/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../ScaleCustomTickInterval/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../ScaleCustomTickInterval/Vue/index.html | 16 +--- .../ScaleCustomTickValues/Angular/index.html | 15 +--- .../ScaleCustomTickValues/React/index.html | 13 +-- .../ScaleCustomTickValues/ReactJs/index.html | 39 ++------- .../ScaleCustomTickValues/Vue/index.html | 16 +--- .../ScaleLabelFormatting/Angular/index.html | 15 +--- .../ScaleLabelFormatting/React/index.html | 13 +-- .../ScaleLabelFormatting/ReactJs/index.html | 39 ++------- .../ScaleLabelFormatting/Vue/index.html | 16 +--- .../Gauges/ScaleMinorTicks/Angular/index.html | 15 +--- .../Gauges/ScaleMinorTicks/React/index.html | 13 +-- .../Gauges/ScaleMinorTicks/ReactJs/index.html | 39 ++------- .../Gauges/ScaleMinorTicks/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../Demos/Gauges/Tooltip/Angular/index.html | 15 +--- .../Demos/Gauges/Tooltip/React/index.html | 13 +-- .../Demos/Gauges/Tooltip/ReactJs/index.html | 39 ++------- .../demos/Demos/Gauges/Tooltip/Vue/index.html | 16 +--- .../ValueIndicatorsAPI/Angular/index.html | 15 +--- .../ValueIndicatorsAPI/React/index.html | 13 +-- .../ValueIndicatorsAPI/ReactJs/index.html | 39 ++------- .../Gauges/ValueIndicatorsAPI/Vue/index.html | 16 +--- .../VariableNumberOfBars/Angular/index.html | 15 +--- .../VariableNumberOfBars/React/index.html | 13 +-- .../VariableNumberOfBars/ReactJs/index.html | 39 ++------- .../VariableNumberOfBars/Vue/index.html | 16 +--- .../AITextEditing/Angular/index.html | 15 +--- .../HtmlEditor/AITextEditing/React/index.html | 11 +-- .../AITextEditing/ReactJs/index.html | 39 ++------- .../HtmlEditor/AITextEditing/Vue/index.html | 15 +--- .../MarkdownSupport/Angular/index.html | 15 +--- .../MarkdownSupport/React/index.html | 11 +-- .../MarkdownSupport/ReactJs/index.html | 39 ++------- .../HtmlEditor/MarkdownSupport/Vue/index.html | 14 +-- .../HtmlEditor/Mentions/Angular/index.html | 15 +--- .../HtmlEditor/Mentions/React/index.html | 11 +-- .../HtmlEditor/Mentions/ReactJs/index.html | 39 ++------- .../Demos/HtmlEditor/Mentions/Vue/index.html | 14 +-- .../HtmlEditor/Overview/Angular/index.html | 15 +--- .../HtmlEditor/Overview/React/index.html | 11 +-- .../HtmlEditor/Overview/ReactJs/index.html | 39 ++------- .../Demos/HtmlEditor/Overview/Vue/index.html | 14 +-- .../HtmlEditor/Tables/Angular/index.html | 15 +--- .../Demos/HtmlEditor/Tables/React/index.html | 11 +-- .../HtmlEditor/Tables/ReactJs/index.html | 39 ++------- .../Demos/HtmlEditor/Tables/Vue/index.html | 14 +-- .../ToolbarCustomization/Angular/index.html | 15 +--- .../ToolbarCustomization/React/index.html | 11 +-- .../ToolbarCustomization/ReactJs/index.html | 39 ++------- .../ToolbarCustomization/Vue/index.html | 14 +-- .../Demos/List/DragAndDrop/Angular/index.html | 15 +--- .../Demos/List/DragAndDrop/React/index.html | 11 +-- .../Demos/List/DragAndDrop/ReactJs/index.html | 39 ++------- .../Demos/List/DragAndDrop/Vue/index.html | 14 +-- .../Demos/List/Grouping/Angular/index.html | 15 +--- .../Demos/List/Grouping/React/index.html | 11 +-- .../Demos/List/Grouping/ReactJs/index.html | 39 ++------- apps/demos/Demos/List/Grouping/Vue/index.html | 14 +-- .../List/ItemDeletion/Angular/index.html | 15 +--- .../Demos/List/ItemDeletion/React/index.html | 11 +-- .../List/ItemDeletion/ReactJs/index.html | 39 ++------- .../Demos/List/ItemDeletion/Vue/index.html | 14 +-- .../List/ItemTemplate/Angular/index.html | 15 +--- .../Demos/List/ItemTemplate/React/index.html | 11 +-- .../List/ItemTemplate/ReactJs/index.html | 39 ++------- .../Demos/List/ItemTemplate/Vue/index.html | 14 +-- .../Demos/List/Search/Angular/index.html | 15 +--- apps/demos/Demos/List/Search/React/index.html | 11 +-- .../Demos/List/Search/ReactJs/index.html | 39 ++------- apps/demos/Demos/List/Search/Vue/index.html | 14 +-- .../Demos/List/Selection/Angular/index.html | 15 +--- .../Demos/List/Selection/React/index.html | 11 +-- .../Demos/List/Selection/ReactJs/index.html | 39 ++------- .../demos/Demos/List/Selection/Vue/index.html | 14 +-- .../Demos/List/WebAPI/Angular/index.html | 15 +--- apps/demos/Demos/List/WebAPI/React/index.html | 10 +-- .../Demos/List/WebAPI/ReactJs/index.html | 38 ++------ apps/demos/Demos/List/WebAPI/Vue/index.html | 18 +--- .../LoadIndicator/Overview/Angular/index.html | 15 +--- .../LoadIndicator/Overview/React/index.html | 11 +-- .../LoadIndicator/Overview/ReactJs/index.html | 39 ++------- .../LoadIndicator/Overview/Vue/index.html | 14 +-- .../LoadPanel/Overview/Angular/index.html | 15 +--- .../Demos/LoadPanel/Overview/React/index.html | 11 +-- .../LoadPanel/Overview/ReactJs/index.html | 39 ++------- .../Demos/LoadPanel/Overview/Vue/index.html | 14 +-- .../UsingGlobalize/Angular/index.html | 15 +--- .../UsingGlobalize/React/index.html | 11 +-- .../UsingGlobalize/ReactJs/index.html | 39 ++------- .../UsingGlobalize/Vue/index.html | 14 +-- .../Localization/UsingIntl/Angular/index.html | 15 +--- .../Localization/UsingIntl/React/index.html | 11 +-- .../Localization/UsingIntl/ReactJs/index.html | 39 ++------- .../Localization/UsingIntl/Vue/index.html | 14 +-- .../Demos/Lookup/Basics/Angular/index.html | 15 +--- .../Demos/Lookup/Basics/React/index.html | 11 +-- .../Demos/Lookup/Basics/ReactJs/index.html | 39 ++------- apps/demos/Demos/Lookup/Basics/Vue/index.html | 15 +--- .../Lookup/EventHandling/Angular/index.html | 15 +--- .../Lookup/EventHandling/React/index.html | 11 +-- .../Lookup/EventHandling/ReactJs/index.html | 39 ++------- .../Demos/Lookup/EventHandling/Vue/index.html | 15 +--- .../Demos/Lookup/Templates/Angular/index.html | 15 +--- .../Demos/Lookup/Templates/React/index.html | 11 +-- .../Demos/Lookup/Templates/ReactJs/index.html | 45 ++-------- .../Demos/Lookup/Templates/Vue/index.html | 14 +-- .../Demos/Map/Markers/Angular/index.html | 15 +--- apps/demos/Demos/Map/Markers/React/index.html | 11 +-- .../Demos/Map/Markers/ReactJs/index.html | 39 ++------- apps/demos/Demos/Map/Markers/Vue/index.html | 14 +-- .../Map/ProvidersAndTypes/Angular/index.html | 15 +--- .../Map/ProvidersAndTypes/React/index.html | 11 +-- .../Map/ProvidersAndTypes/ReactJs/index.html | 39 ++------- .../Map/ProvidersAndTypes/Vue/index.html | 14 +-- .../demos/Demos/Map/Routes/Angular/index.html | 15 +--- apps/demos/Demos/Map/Routes/React/index.html | 11 +-- .../demos/Demos/Map/Routes/ReactJs/index.html | 39 ++------- apps/demos/Demos/Map/Routes/Vue/index.html | 14 +-- .../Demos/Menu/Overview/Angular/index.html | 15 +--- .../Demos/Menu/Overview/React/index.html | 11 +-- .../Demos/Menu/Overview/ReactJs/index.html | 39 ++------- apps/demos/Demos/Menu/Overview/Vue/index.html | 14 +-- .../Demos/Menu/Scrolling/Angular/index.html | 15 +--- .../Demos/Menu/Scrolling/React/index.html | 11 +-- .../Demos/Menu/Scrolling/ReactJs/index.html | 39 ++------- .../demos/Demos/Menu/Scrolling/Vue/index.html | 14 +-- .../MultiView/Overview/Angular/index.html | 15 +--- .../Demos/MultiView/Overview/React/index.html | 11 +-- .../MultiView/Overview/ReactJs/index.html | 39 ++------- .../Demos/MultiView/Overview/Vue/index.html | 14 +-- .../NumberBox/Formatting/Angular/index.html | 15 +--- .../NumberBox/Formatting/React/index.html | 11 +-- .../NumberBox/Formatting/ReactJs/index.html | 39 ++------- .../Demos/NumberBox/Formatting/Vue/index.html | 15 +--- .../NumberBox/Overview/Angular/index.html | 15 +--- .../Demos/NumberBox/Overview/React/index.html | 9 +- .../NumberBox/Overview/ReactJs/index.html | 33 ++----- .../Demos/NumberBox/Overview/Vue/index.html | 14 +-- .../Pagination/Overview/Angular/index.html | 17 +--- .../Pagination/Overview/React/index.html | 13 +-- .../Pagination/Overview/ReactJs/index.html | 39 ++------- .../Demos/Pagination/Overview/Vue/index.html | 17 +--- .../ChartIntegration/Angular/index.html | 15 +--- .../ChartIntegration/React/index.html | 11 +-- .../ChartIntegration/ReactJs/index.html | 39 ++------- .../PivotGrid/ChartIntegration/Vue/index.html | 14 +-- .../Customization/Angular/index.html | 15 +--- .../PivotGrid/Customization/React/index.html | 10 +-- .../Customization/ReactJs/index.html | 38 ++------ .../PivotGrid/Customization/Vue/index.html | 14 +-- .../PivotGrid/DrillDown/Angular/index.html | 15 +--- .../PivotGrid/DrillDown/React/index.html | 11 +-- .../PivotGrid/DrillDown/ReactJs/index.html | 39 ++------- .../Demos/PivotGrid/DrillDown/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../ExcelJSCellCustomization/React/index.html | 8 +- .../ReactJs/index.html | 32 ++----- .../ExcelJSCellCustomization/Vue/index.html | 13 +-- .../ExcelJSOverview/Angular/index.html | 15 +--- .../ExcelJSOverview/React/index.html | 8 +- .../ExcelJSOverview/ReactJs/index.html | 32 ++----- .../PivotGrid/ExcelJSOverview/Vue/index.html | 14 +-- .../ExcelJsHeaderAndFooter/Angular/index.html | 15 +--- .../ExcelJsHeaderAndFooter/React/index.html | 10 +-- .../ExcelJsHeaderAndFooter/ReactJs/index.html | 38 ++------ .../ExcelJsHeaderAndFooter/Vue/index.html | 14 +-- .../PivotGrid/FieldPanel/Angular/index.html | 15 +--- .../PivotGrid/FieldPanel/React/index.html | 10 +-- .../PivotGrid/FieldPanel/ReactJs/index.html | 38 ++------ .../Demos/PivotGrid/FieldPanel/Vue/index.html | 14 +-- .../PivotGrid/Filtering/Angular/index.html | 15 +--- .../PivotGrid/Filtering/React/index.html | 11 +-- .../PivotGrid/Filtering/ReactJs/index.html | 39 ++------- .../Demos/PivotGrid/Filtering/Vue/index.html | 14 +-- .../IntegratedFieldChooser/Angular/index.html | 15 +--- .../IntegratedFieldChooser/React/index.html | 11 +-- .../IntegratedFieldChooser/ReactJs/index.html | 39 ++------- .../IntegratedFieldChooser/Vue/index.html | 14 +-- .../OLAPDataSource/Angular/index.html | 15 +--- .../PivotGrid/OLAPDataSource/React/index.html | 10 +-- .../OLAPDataSource/ReactJs/index.html | 38 ++------ .../PivotGrid/OLAPDataSource/Vue/index.html | 14 +-- .../PivotGrid/Overview/Angular/index.html | 15 +--- .../Demos/PivotGrid/Overview/React/index.html | 11 +-- .../PivotGrid/Overview/ReactJs/index.html | 39 ++------- .../Demos/PivotGrid/Overview/Vue/index.html | 14 +-- .../RemoteVirtualScrolling/Angular/index.html | 15 +--- .../RemoteVirtualScrolling/React/index.html | 10 +-- .../RemoteVirtualScrolling/ReactJs/index.html | 38 ++------ .../RemoteVirtualScrolling/Vue/index.html | 14 +-- .../RunningTotals/Angular/index.html | 15 +--- .../PivotGrid/RunningTotals/React/index.html | 10 +-- .../RunningTotals/ReactJs/index.html | 38 ++------ .../PivotGrid/RunningTotals/Vue/index.html | 14 +-- .../PivotGrid/SimpleArray/Angular/index.html | 15 +--- .../PivotGrid/SimpleArray/React/index.html | 10 +-- .../PivotGrid/SimpleArray/ReactJs/index.html | 38 ++------ .../PivotGrid/SimpleArray/Vue/index.html | 15 +--- .../StandaloneFieldChooser/Angular/index.html | 15 +--- .../StandaloneFieldChooser/React/index.html | 11 +-- .../StandaloneFieldChooser/ReactJs/index.html | 39 ++------- .../StandaloneFieldChooser/Vue/index.html | 14 +-- .../StatePersistence/Angular/index.html | 15 +--- .../StatePersistence/React/index.html | 10 +-- .../StatePersistence/ReactJs/index.html | 38 ++------ .../PivotGrid/StatePersistence/Vue/index.html | 14 +-- .../SummaryDisplayModes/Angular/index.html | 15 +--- .../SummaryDisplayModes/React/index.html | 10 +-- .../SummaryDisplayModes/ReactJs/index.html | 38 ++------ .../SummaryDisplayModes/Vue/index.html | 14 +-- .../VirtualScrolling/Angular/index.html | 15 +--- .../VirtualScrolling/React/index.html | 10 +-- .../VirtualScrolling/ReactJs/index.html | 38 ++------ .../PivotGrid/VirtualScrolling/Vue/index.html | 13 +-- .../WebAPIService/Angular/index.html | 15 +--- .../PivotGrid/WebAPIService/React/index.html | 9 +- .../WebAPIService/ReactJs/index.html | 33 ++----- .../PivotGrid/WebAPIService/Vue/index.html | 13 +-- .../Demos/Popover/Overview/Angular/index.html | 15 +--- .../Demos/Popover/Overview/React/index.html | 11 +-- .../Demos/Popover/Overview/ReactJs/index.html | 39 ++------- .../Demos/Popover/Overview/Vue/index.html | 14 +-- .../Demos/Popup/Overview/Angular/index.html | 15 +--- .../Demos/Popup/Overview/React/index.html | 11 +-- .../Demos/Popup/Overview/ReactJs/index.html | 39 ++------- .../demos/Demos/Popup/Overview/Vue/index.html | 14 +-- .../Demos/Popup/Scrolling/Angular/index.html | 15 +--- .../Demos/Popup/Scrolling/React/index.html | 11 +-- .../Demos/Popup/Scrolling/ReactJs/index.html | 39 ++------- .../Demos/Popup/Scrolling/Vue/index.html | 14 +-- .../ProgressBar/Overview/Angular/index.html | 15 +--- .../ProgressBar/Overview/React/index.html | 11 +-- .../ProgressBar/Overview/ReactJs/index.html | 39 ++------- .../Demos/ProgressBar/Overview/Vue/index.html | 14 +-- .../RadioGroup/Overview/Angular/index.html | 15 +--- .../RadioGroup/Overview/React/index.html | 11 +-- .../RadioGroup/Overview/ReactJs/index.html | 39 ++------- .../Demos/RadioGroup/Overview/Vue/index.html | 15 +--- .../BackgroundImage/Angular/index.html | 15 +--- .../BackgroundImage/React/index.html | 13 +-- .../BackgroundImage/ReactJs/index.html | 39 ++------- .../BackgroundImage/Vue/index.html | 16 +--- .../Calculation/Angular/index.html | 15 +--- .../Calculation/React/index.html | 13 +-- .../Calculation/ReactJs/index.html | 39 ++------- .../RangeSelector/Calculation/Vue/index.html | 16 +--- .../CustomFormatting/Angular/index.html | 15 +--- .../CustomFormatting/React/index.html | 13 +-- .../CustomFormatting/ReactJs/index.html | 39 ++------- .../CustomFormatting/Vue/index.html | 16 +--- .../DateTimeScale/Angular/index.html | 15 +--- .../DateTimeScale/React/index.html | 13 +-- .../DateTimeScale/ReactJs/index.html | 39 ++------- .../DateTimeScale/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../DateTimeScaleLightweight/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../DateTimeScaleLightweight/Vue/index.html | 16 +--- .../DiscreteScale/Angular/index.html | 15 +--- .../DiscreteScale/React/index.html | 13 +-- .../DiscreteScale/ReactJs/index.html | 39 ++------- .../DiscreteScale/Vue/index.html | 16 +--- .../EmbeddedChart/Angular/index.html | 15 +--- .../EmbeddedChart/React/index.html | 13 +-- .../EmbeddedChart/ReactJs/index.html | 39 ++------- .../EmbeddedChart/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../EmbeddedChartCustomized/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../EmbeddedChartCustomized/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 16 +--- .../RangeSelector/Filter/Angular/index.html | 15 +--- .../RangeSelector/Filter/React/index.html | 11 +-- .../RangeSelector/Filter/ReactJs/index.html | 39 ++------- .../Demos/RangeSelector/Filter/Vue/index.html | 14 +-- .../LogarithmicScale/Angular/index.html | 15 +--- .../LogarithmicScale/React/index.html | 13 +-- .../LogarithmicScale/ReactJs/index.html | 39 ++------- .../LogarithmicScale/Vue/index.html | 16 +--- .../NumericScale/Angular/index.html | 15 +--- .../NumericScale/React/index.html | 13 +-- .../NumericScale/ReactJs/index.html | 39 ++------- .../RangeSelector/NumericScale/Vue/index.html | 16 +--- .../Angular/index.html | 15 +--- .../NumericScaleLightweight/React/index.html | 13 +-- .../ReactJs/index.html | 39 ++------- .../NumericScaleLightweight/Vue/index.html | 16 +--- .../RangeSlider/Overview/Angular/index.html | 15 +--- .../RangeSlider/Overview/React/index.html | 11 +-- .../RangeSlider/Overview/ReactJs/index.html | 39 ++------- .../Demos/RangeSlider/Overview/Vue/index.html | 15 +--- .../Resizable/Overview/Angular/index.html | 15 +--- .../Demos/Resizable/Overview/React/index.html | 11 +-- .../Resizable/Overview/ReactJs/index.html | 39 ++------- .../Demos/Resizable/Overview/Vue/index.html | 15 +--- .../ResponsiveBox/Overview/Angular/index.html | 15 +--- .../ResponsiveBox/Overview/React/index.html | 11 +-- .../ResponsiveBox/Overview/ReactJs/index.html | 39 ++------- .../ResponsiveBox/Overview/Vue/index.html | 14 +-- .../Scheduler/Adaptability/Angular/index.html | 15 +--- .../Scheduler/Adaptability/React/index.html | 11 +-- .../Scheduler/Adaptability/ReactJs/index.html | 39 ++------- .../Scheduler/Adaptability/Vue/index.html | 15 +--- .../Demos/Scheduler/Agenda/Angular/index.html | 15 +--- .../Demos/Scheduler/Agenda/React/index.html | 9 +- .../Demos/Scheduler/Agenda/ReactJs/index.html | 33 ++----- .../Demos/Scheduler/Agenda/Vue/index.html | 13 +-- .../AllDayPanelMode/Angular/index.html | 15 +--- .../AllDayPanelMode/React/index.html | 11 +-- .../AllDayPanelMode/ReactJs/index.html | 39 ++------- .../Scheduler/AllDayPanelMode/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../AppointmentCountPerCell/React/index.html | 9 +- .../ReactJs/index.html | 33 ++----- .../AppointmentCountPerCell/Vue/index.html | 13 +-- .../Scheduler/BasicViews/Angular/index.html | 15 +--- .../Scheduler/BasicViews/React/index.html | 9 +- .../Scheduler/BasicViews/ReactJs/index.html | 33 ++----- .../Demos/Scheduler/BasicViews/Vue/index.html | 13 +-- .../CellTemplates/Angular/index.html | 15 +--- .../Scheduler/CellTemplates/React/index.html | 11 +-- .../CellTemplates/ReactJs/index.html | 39 ++------- .../Scheduler/CellTemplates/Vue/index.html | 20 +---- .../Scheduler/ContextMenu/Angular/index.html | 15 +--- .../Scheduler/ContextMenu/React/index.html | 11 +-- .../Scheduler/ContextMenu/ReactJs/index.html | 39 ++------- .../Scheduler/ContextMenu/Vue/index.html | 14 +-- .../CreateFromSelection/Angular/index.html | 15 +--- .../CreateFromSelection/React/index.html | 10 +-- .../CreateFromSelection/ReactJs/index.html | 38 ++------ .../CreateFromSelection/Vue/index.html | 13 +-- .../CurrentTimeIndicator/Angular/index.html | 15 +--- .../CurrentTimeIndicator/React/index.html | 11 +-- .../CurrentTimeIndicator/ReactJs/index.html | 39 ++------- .../CurrentTimeIndicator/Vue/index.html | 14 +-- .../CustomViewDuration/Angular/index.html | 15 +--- .../CustomViewDuration/React/index.html | 9 +- .../CustomViewDuration/ReactJs/index.html | 33 ++----- .../CustomViewDuration/Vue/index.html | 13 +-- .../Scheduler/DragAndDrop/Angular/index.html | 15 +--- .../Scheduler/DragAndDrop/React/index.html | 11 +-- .../Scheduler/DragAndDrop/ReactJs/index.html | 39 ++------- .../Scheduler/DragAndDrop/Vue/index.html | 14 +-- .../Scheduler/Editing/Angular/index.html | 15 +--- .../Demos/Scheduler/Editing/React/index.html | 11 +-- .../Scheduler/Editing/ReactJs/index.html | 39 ++------- .../Demos/Scheduler/Editing/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../GoogleCalendarIntegration/Vue/index.html | 14 +-- .../Scheduler/GroupByDate/Angular/index.html | 15 +--- .../Scheduler/GroupByDate/React/index.html | 11 +-- .../Scheduler/GroupByDate/ReactJs/index.html | 39 ++------- .../Scheduler/GroupByDate/Vue/index.html | 15 +--- .../GroupingByResources/Angular/index.html | 15 +--- .../GroupingByResources/React/index.html | 11 +-- .../GroupingByResources/ReactJs/index.html | 39 ++------- .../GroupingByResources/Vue/index.html | 14 +-- .../Scheduler/HiddenDays/Angular/index.html | 15 +--- .../Scheduler/HiddenDays/React/index.html | 11 +-- .../Scheduler/HiddenDays/ReactJs/index.html | 39 ++------- .../Demos/Scheduler/HiddenDays/Vue/index.html | 15 +--- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../Scheduler/Overview/Angular/index.html | 15 +--- .../Demos/Scheduler/Overview/React/index.html | 11 +-- .../Scheduler/Overview/ReactJs/index.html | 39 ++------- .../Demos/Scheduler/Overview/Vue/index.html | 14 +-- .../RecurringAppointments/Angular/index.html | 15 +--- .../RecurringAppointments/React/index.html | 9 +- .../RecurringAppointments/ReactJs/index.html | 33 ++----- .../RecurringAppointments/Vue/index.html | 13 +-- .../ResolveTimeConflicts/Angular/index.html | 15 +--- .../ResolveTimeConflicts/React/index.html | 11 +-- .../ResolveTimeConflicts/ReactJs/index.html | 39 ++------- .../ResolveTimeConflicts/Vue/index.html | 14 +-- .../Scheduler/Resources/Angular/index.html | 15 +--- .../Scheduler/Resources/React/index.html | 11 +-- .../Scheduler/Resources/ReactJs/index.html | 39 ++------- .../Demos/Scheduler/Resources/Vue/index.html | 14 +-- .../SignalRService/Angular/index.html | 15 +--- .../Scheduler/SignalRService/React/index.html | 11 +-- .../SignalRService/ReactJs/index.html | 39 ++------- .../Scheduler/SignalRService/Vue/index.html | 15 +--- .../Scheduler/SimpleArray/Angular/index.html | 15 +--- .../Scheduler/SimpleArray/React/index.html | 9 +- .../Scheduler/SimpleArray/ReactJs/index.html | 33 ++----- .../Scheduler/SimpleArray/Vue/index.html | 13 +-- .../Scheduler/Templates/Angular/index.html | 15 +--- .../Scheduler/Templates/React/index.html | 10 +-- .../Scheduler/Templates/ReactJs/index.html | 38 ++------ .../Demos/Scheduler/Templates/Vue/index.html | 17 +--- .../TimeZonesSupport/Angular/index.html | 15 +--- .../TimeZonesSupport/React/index.html | 11 +-- .../TimeZonesSupport/ReactJs/index.html | 39 ++------- .../Scheduler/TimeZonesSupport/Vue/index.html | 14 +-- .../Scheduler/Timelines/Angular/index.html | 15 +--- .../Scheduler/Timelines/React/index.html | 11 +-- .../Scheduler/Timelines/ReactJs/index.html | 39 ++------- .../Demos/Scheduler/Timelines/Vue/index.html | 14 +-- .../Scheduler/Toolbar/Angular/index.html | 15 +--- .../Demos/Scheduler/Toolbar/React/index.html | 9 +- .../Scheduler/Toolbar/ReactJs/index.html | 33 ++----- .../Demos/Scheduler/Toolbar/Vue/index.html | 13 +-- .../VirtualScrolling/Angular/index.html | 15 +--- .../VirtualScrolling/React/index.html | 11 +-- .../VirtualScrolling/ReactJs/index.html | 39 ++------- .../Scheduler/VirtualScrolling/Vue/index.html | 15 +--- .../WebAPIService/Angular/index.html | 15 +--- .../Scheduler/WebAPIService/React/index.html | 9 +- .../WebAPIService/ReactJs/index.html | 33 ++----- .../Scheduler/WebAPIService/Vue/index.html | 13 +-- .../Scheduler/WorkShifts/Angular/index.html | 17 +--- .../Scheduler/WorkShifts/React/index.html | 10 +-- .../Scheduler/WorkShifts/ReactJs/index.html | 38 ++------ .../Demos/Scheduler/WorkShifts/Vue/index.html | 17 +--- .../ScrollView/Overview/Angular/index.html | 15 +--- .../ScrollView/Overview/React/index.html | 11 +-- .../ScrollView/Overview/ReactJs/index.html | 39 ++------- .../Demos/ScrollView/Overview/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../CustomizeDropDownButton/React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../CustomizeDropDownButton/Vue/index.html | 15 +--- .../SelectBox/Grouping/Angular/index.html | 15 +--- .../Demos/SelectBox/Grouping/React/index.html | 11 +-- .../SelectBox/Grouping/ReactJs/index.html | 45 ++-------- .../Demos/SelectBox/Grouping/Vue/index.html | 15 +--- .../SelectBox/Overview/Angular/index.html | 15 +--- .../Demos/SelectBox/Overview/React/index.html | 11 +-- .../SelectBox/Overview/ReactJs/index.html | 39 ++------- .../Demos/SelectBox/Overview/Vue/index.html | 19 +--- .../SearchAndEditing/Angular/index.html | 15 +--- .../SearchAndEditing/React/index.html | 11 +-- .../SearchAndEditing/ReactJs/index.html | 45 ++-------- .../SelectBox/SearchAndEditing/Vue/index.html | 15 +--- .../Demos/Slider/Overview/Angular/index.html | 15 +--- .../Demos/Slider/Overview/React/index.html | 11 +-- .../Demos/Slider/Overview/ReactJs/index.html | 45 ++-------- .../Demos/Slider/Overview/Vue/index.html | 14 +-- .../Sortable/Customization/Angular/index.html | 15 +--- .../Sortable/Customization/React/index.html | 11 +-- .../Sortable/Customization/ReactJs/index.html | 45 ++-------- .../Sortable/Customization/Vue/index.html | 14 +-- .../Demos/Sortable/Kanban/Angular/index.html | 15 +--- .../Demos/Sortable/Kanban/React/index.html | 11 +-- .../Demos/Sortable/Kanban/ReactJs/index.html | 39 ++------- .../Demos/Sortable/Kanban/Vue/index.html | 14 +-- .../SpeechToText/Overview/Angular/index.html | 15 +--- .../SpeechToText/Overview/React/index.html | 11 +-- .../SpeechToText/Overview/ReactJs/index.html | 39 ++------- .../SpeechToText/Overview/Vue/index.html | 14 +-- .../Splitter/Overview/Angular/index.html | 15 +--- .../Demos/Splitter/Overview/React/index.html | 11 +-- .../Splitter/Overview/ReactJs/index.html | 39 ++------- .../Demos/Splitter/Overview/Vue/index.html | 14 +-- .../FormIntegration/Angular/index.html | 17 +--- .../Stepper/FormIntegration/React/index.html | 13 +-- .../FormIntegration/ReactJs/index.html | 39 ++------- .../Stepper/FormIntegration/Vue/index.html | 17 +--- .../Demos/Stepper/Overview/Angular/index.html | 15 +--- .../Demos/Stepper/Overview/React/index.html | 11 +-- .../Demos/Stepper/Overview/ReactJs/index.html | 39 ++------- .../Demos/Stepper/Overview/Vue/index.html | 15 +--- .../Stepper/StepTemplate/Angular/index.html | 15 +--- .../Stepper/StepTemplate/React/index.html | 11 +-- .../Stepper/StepTemplate/ReactJs/index.html | 39 ++------- .../Demos/Stepper/StepTemplate/Vue/index.html | 15 +--- .../Demos/Switch/Overview/Angular/index.html | 15 +--- .../Demos/Switch/Overview/React/index.html | 9 +- .../Demos/Switch/Overview/ReactJs/index.html | 33 ++----- .../Demos/Switch/Overview/Vue/index.html | 14 +-- .../TabPanel/DragAndDrop/Angular/index.html | 15 +--- .../TabPanel/DragAndDrop/React/index.html | 11 +-- .../TabPanel/DragAndDrop/ReactJs/index.html | 39 ++------- .../Demos/TabPanel/DragAndDrop/Vue/index.html | 14 +-- .../TabPanel/Overview/Angular/index.html | 15 +--- .../Demos/TabPanel/Overview/React/index.html | 11 +-- .../TabPanel/Overview/ReactJs/index.html | 39 ++------- .../Demos/TabPanel/Overview/Vue/index.html | 14 +-- .../TabPanel/Templates/Angular/index.html | 15 +--- .../Demos/TabPanel/Templates/React/index.html | 11 +-- .../TabPanel/Templates/ReactJs/index.html | 39 ++------- .../Demos/TabPanel/Templates/Vue/index.html | 14 +-- .../Demos/Tabs/Overview/Angular/index.html | 15 +--- .../Demos/Tabs/Overview/React/index.html | 11 +-- .../Demos/Tabs/Overview/ReactJs/index.html | 39 ++------- apps/demos/Demos/Tabs/Overview/Vue/index.html | 14 +-- .../Demos/Tabs/Selection/Angular/index.html | 15 +--- .../Demos/Tabs/Selection/React/index.html | 11 +-- .../Demos/Tabs/Selection/ReactJs/index.html | 39 ++------- .../demos/Demos/Tabs/Selection/Vue/index.html | 14 +-- .../Demos/TagBox/Grouping/Angular/index.html | 15 +--- .../Demos/TagBox/Grouping/React/index.html | 11 +-- .../Demos/TagBox/Grouping/ReactJs/index.html | 45 ++-------- .../Demos/TagBox/Grouping/Vue/index.html | 15 +--- .../Demos/TagBox/Overview/Angular/index.html | 15 +--- .../Demos/TagBox/Overview/React/index.html | 11 +-- .../Demos/TagBox/Overview/ReactJs/index.html | 39 ++------- .../Demos/TagBox/Overview/Vue/index.html | 15 +--- .../TagCountLimitation/Angular/index.html | 15 +--- .../TagCountLimitation/React/index.html | 11 +-- .../TagCountLimitation/ReactJs/index.html | 39 ++------- .../TagBox/TagCountLimitation/Vue/index.html | 15 +--- .../TextArea/Overview/Angular/index.html | 15 +--- .../Demos/TextArea/Overview/React/index.html | 11 +-- .../TextArea/Overview/ReactJs/index.html | 39 ++------- .../Demos/TextArea/Overview/Vue/index.html | 15 +--- .../Demos/TextBox/Overview/Angular/index.html | 15 +--- .../Demos/TextBox/Overview/React/index.html | 9 +- .../Demos/TextBox/Overview/ReactJs/index.html | 33 ++----- .../Demos/TextBox/Overview/Vue/index.html | 14 +-- .../Demos/TileView/Basics/Angular/index.html | 15 +--- .../Demos/TileView/Basics/React/index.html | 11 +-- .../Demos/TileView/Basics/ReactJs/index.html | 39 ++------- .../Demos/TileView/Basics/Vue/index.html | 14 +-- .../TileView/Directions/Angular/index.html | 15 +--- .../TileView/Directions/React/index.html | 11 +-- .../TileView/Directions/ReactJs/index.html | 39 ++------- .../Demos/TileView/Directions/Vue/index.html | 14 +-- .../TileView/ItemTemplate/Angular/index.html | 15 +--- .../TileView/ItemTemplate/React/index.html | 11 +-- .../TileView/ItemTemplate/ReactJs/index.html | 39 ++------- .../TileView/ItemTemplate/Vue/index.html | 15 +--- .../Demos/Toast/Overview/Angular/index.html | 15 +--- .../Demos/Toast/Overview/React/index.html | 11 +-- .../Demos/Toast/Overview/ReactJs/index.html | 39 ++------- .../demos/Demos/Toast/Overview/Vue/index.html | 14 +-- .../Demos/Toast/Stack/Angular/index.html | 15 +--- apps/demos/Demos/Toast/Stack/React/index.html | 11 +-- .../Demos/Toast/Stack/ReactJs/index.html | 39 ++------- apps/demos/Demos/Toast/Stack/Vue/index.html | 14 +-- .../Toolbar/Adaptability/Angular/index.html | 15 +--- .../Toolbar/Adaptability/React/index.html | 11 +-- .../Toolbar/Adaptability/ReactJs/index.html | 39 ++------- .../Demos/Toolbar/Adaptability/Vue/index.html | 14 +-- .../Demos/Toolbar/Overview/Angular/index.html | 15 +--- .../Demos/Toolbar/Overview/React/index.html | 11 +-- .../Demos/Toolbar/Overview/ReactJs/index.html | 39 ++------- .../Demos/Toolbar/Overview/Vue/index.html | 14 +-- .../Demos/Tooltip/Overview/Angular/index.html | 15 +--- .../Demos/Tooltip/Overview/React/index.html | 11 +-- .../Demos/Tooltip/Overview/ReactJs/index.html | 39 ++------- .../Demos/Tooltip/Overview/Vue/index.html | 14 +-- .../TreeList/AIColumns/Angular/index.html | 17 +--- .../Demos/TreeList/AIColumns/React/index.html | 11 +-- .../TreeList/AIColumns/ReactJs/index.html | 39 ++------- .../Demos/TreeList/AIColumns/Vue/index.html | 17 +--- .../TreeList/Adaptability/Angular/index.html | 15 +--- .../TreeList/Adaptability/React/index.html | 11 +-- .../TreeList/Adaptability/ReactJs/index.html | 39 ++------- .../TreeList/Adaptability/Vue/index.html | 14 +-- .../TreeList/BatchEditing/Angular/index.html | 15 +--- .../TreeList/BatchEditing/React/index.html | 11 +-- .../TreeList/BatchEditing/ReactJs/index.html | 39 ++------- .../TreeList/BatchEditing/Vue/index.html | 14 +-- .../TreeList/CellEditing/Angular/index.html | 15 +--- .../TreeList/CellEditing/React/index.html | 11 +-- .../TreeList/CellEditing/ReactJs/index.html | 39 ++------- .../Demos/TreeList/CellEditing/Vue/index.html | 14 +-- .../TreeList/ColumnChooser/Angular/index.html | 15 +--- .../TreeList/ColumnChooser/React/index.html | 11 +-- .../TreeList/ColumnChooser/ReactJs/index.html | 39 ++------- .../TreeList/ColumnChooser/Vue/index.html | 14 +-- .../ColumnHeaderFilter/Angular/index.html | 15 +--- .../ColumnHeaderFilter/React/index.html | 11 +-- .../ColumnHeaderFilter/ReactJs/index.html | 39 ++------- .../ColumnHeaderFilter/Vue/index.html | 14 +-- .../Angular/index.html | 16 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 15 +--- .../TreeList/FilterModes/Angular/index.html | 15 +--- .../TreeList/FilterModes/React/index.html | 11 +-- .../TreeList/FilterModes/ReactJs/index.html | 39 ++------- .../Demos/TreeList/FilterModes/Vue/index.html | 14 +-- .../TreeList/FilterPanel/Angular/index.html | 16 +--- .../TreeList/FilterPanel/React/index.html | 11 +-- .../TreeList/FilterPanel/ReactJs/index.html | 39 ++------- .../Demos/TreeList/FilterPanel/Vue/index.html | 14 +-- .../TreeList/FilterRow/Angular/index.html | 15 +--- .../Demos/TreeList/FilterRow/React/index.html | 11 +-- .../TreeList/FilterRow/ReactJs/index.html | 39 ++------- .../Demos/TreeList/FilterRow/Vue/index.html | 14 +-- .../FixedAndStickyColumns/Angular/index.html | 15 +--- .../FixedAndStickyColumns/React/index.html | 11 +-- .../FixedAndStickyColumns/ReactJs/index.html | 39 ++------- .../FixedAndStickyColumns/Vue/index.html | 14 +-- .../TreeList/FocusedRow/Angular/index.html | 15 +--- .../TreeList/FocusedRow/React/index.html | 11 +-- .../TreeList/FocusedRow/ReactJs/index.html | 39 ++------- .../Demos/TreeList/FocusedRow/Vue/index.html | 15 +--- .../TreeList/FormEditing/Angular/index.html | 15 +--- .../TreeList/FormEditing/React/index.html | 11 +-- .../TreeList/FormEditing/ReactJs/index.html | 39 ++------- .../Demos/TreeList/FormEditing/Vue/index.html | 14 +-- .../KeyboardNavigation/Angular/index.html | 15 +--- .../KeyboardNavigation/React/index.html | 9 +- .../KeyboardNavigation/ReactJs/index.html | 33 ++----- .../KeyboardNavigation/Vue/index.html | 13 +-- .../LoadDataOnDemand/Angular/index.html | 15 +--- .../LoadDataOnDemand/React/index.html | 11 +-- .../LoadDataOnDemand/ReactJs/index.html | 39 ++------- .../TreeList/LoadDataOnDemand/Vue/index.html | 14 +-- .../LocalReordering/Angular/index.html | 15 +--- .../TreeList/LocalReordering/React/index.html | 11 +-- .../LocalReordering/ReactJs/index.html | 39 ++------- .../TreeList/LocalReordering/Vue/index.html | 14 +-- .../MultipleRowSelection/Angular/index.html | 15 +--- .../MultipleRowSelection/React/index.html | 11 +-- .../MultipleRowSelection/ReactJs/index.html | 39 ++------- .../MultipleRowSelection/Vue/index.html | 14 +-- .../MultipleSorting/Angular/index.html | 15 +--- .../TreeList/MultipleSorting/React/index.html | 11 +-- .../MultipleSorting/ReactJs/index.html | 39 ++------- .../TreeList/MultipleSorting/Vue/index.html | 14 +-- .../TreeList/Overview/Angular/index.html | 15 +--- .../Demos/TreeList/Overview/React/index.html | 11 +-- .../TreeList/Overview/ReactJs/index.html | 39 ++------- .../Demos/TreeList/Overview/Vue/index.html | 14 +-- .../Demos/TreeList/Paging/Angular/index.html | 15 +--- .../Demos/TreeList/Paging/React/index.html | 9 +- .../Demos/TreeList/Paging/ReactJs/index.html | 33 ++----- .../Demos/TreeList/Paging/Vue/index.html | 13 +-- .../TreeList/PopupEditing/Angular/index.html | 15 +--- .../TreeList/PopupEditing/React/index.html | 11 +-- .../TreeList/PopupEditing/ReactJs/index.html | 39 ++------- .../TreeList/PopupEditing/Vue/index.html | 14 +-- .../TreeList/Reordering/Angular/index.html | 15 +--- .../TreeList/Reordering/React/index.html | 11 +-- .../TreeList/Reordering/ReactJs/index.html | 39 ++------- .../Demos/TreeList/Reordering/Vue/index.html | 14 +-- .../TreeList/Resizing/Angular/index.html | 15 +--- .../Demos/TreeList/Resizing/React/index.html | 11 +-- .../TreeList/Resizing/ReactJs/index.html | 39 ++------- .../Demos/TreeList/Resizing/Vue/index.html | 14 +-- .../TreeList/RowEditing/Angular/index.html | 15 +--- .../TreeList/RowEditing/React/index.html | 11 +-- .../TreeList/RowEditing/ReactJs/index.html | 39 ++------- .../Demos/TreeList/RowEditing/Vue/index.html | 14 +-- .../TreeList/SearchPanel/Angular/index.html | 15 +--- .../TreeList/SearchPanel/React/index.html | 11 +-- .../TreeList/SearchPanel/ReactJs/index.html | 39 ++------- .../Demos/TreeList/SearchPanel/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../SimpleArrayPlainStructure/Vue/index.html | 14 +-- .../SingleRowSelection/Angular/index.html | 15 +--- .../SingleRowSelection/React/index.html | 11 +-- .../SingleRowSelection/ReactJs/index.html | 39 ++------- .../SingleRowSelection/Vue/index.html | 14 +-- .../StatePersistence/Angular/index.html | 15 +--- .../StatePersistence/React/index.html | 11 +-- .../StatePersistence/ReactJs/index.html | 39 ++------- .../TreeList/StatePersistence/Vue/index.html | 14 +-- .../TreeList/WebAPIService/Angular/index.html | 15 +--- .../TreeList/WebAPIService/React/index.html | 11 +-- .../TreeList/WebAPIService/ReactJs/index.html | 39 ++------- .../TreeList/WebAPIService/Vue/index.html | 14 +-- .../ContextMenuIntegration/Angular/index.html | 15 +--- .../ContextMenuIntegration/React/index.html | 11 +-- .../ContextMenuIntegration/ReactJs/index.html | 39 ++------- .../ContextMenuIntegration/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../FlatDataStructure/Angular/index.html | 15 +--- .../FlatDataStructure/React/index.html | 11 +-- .../FlatDataStructure/ReactJs/index.html | 39 ++------- .../TreeView/FlatDataStructure/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../HierarchicalDataStructure/Vue/index.html | 14 +-- .../Angular/index.html | 15 +--- .../React/index.html | 11 +-- .../ReactJs/index.html | 39 ++------- .../Vue/index.html | 14 +-- .../LoadDataOnDemand/Angular/index.html | 15 +--- .../LoadDataOnDemand/React/index.html | 9 +- .../LoadDataOnDemand/ReactJs/index.html | 33 ++----- .../TreeView/LoadDataOnDemand/Vue/index.html | 13 +-- .../TreeViewWithSearchBar/Angular/index.html | 15 +--- .../TreeViewWithSearchBar/React/index.html | 11 +-- .../TreeViewWithSearchBar/ReactJs/index.html | 39 ++------- .../TreeViewWithSearchBar/Vue/index.html | 14 +-- .../TreeView/VirtualMode/Angular/index.html | 15 +--- .../TreeView/VirtualMode/React/index.html | 9 +- .../TreeView/VirtualMode/ReactJs/index.html | 33 ++----- .../Demos/TreeView/VirtualMode/Vue/index.html | 13 +-- .../Validation/Overview/Angular/index.html | 15 +--- .../Validation/Overview/React/index.html | 11 +-- .../Validation/Overview/ReactJs/index.html | 39 ++------- .../Demos/Validation/Overview/Vue/index.html | 15 +--- .../BubbleMarkers/Angular/index.html | 16 +--- .../VectorMap/BubbleMarkers/React/index.html | 11 +-- .../BubbleMarkers/ReactJs/index.html | 39 ++------- .../VectorMap/BubbleMarkers/Vue/index.html | 14 +-- .../ColorsCustomization/Angular/index.html | 16 +--- .../ColorsCustomization/React/index.html | 11 +-- .../ColorsCustomization/ReactJs/index.html | 39 ++------- .../ColorsCustomization/Vue/index.html | 14 +-- .../CustomAnnotations/Angular/index.html | 15 +--- .../CustomAnnotations/React/index.html | 11 +-- .../CustomAnnotations/ReactJs/index.html | 39 ++------- .../CustomAnnotations/Vue/index.html | 14 +-- .../CustomMapData/Angular/index.html | 15 +--- .../VectorMap/CustomMapData/React/index.html | 11 +-- .../CustomMapData/ReactJs/index.html | 39 ++------- .../VectorMap/CustomMapData/Vue/index.html | 14 +-- .../CustomProjection/Angular/index.html | 16 +--- .../CustomProjection/React/index.html | 11 +-- .../CustomProjection/ReactJs/index.html | 39 ++------- .../VectorMap/CustomProjection/Vue/index.html | 14 +-- .../DynamicViewport/Angular/index.html | 16 +--- .../DynamicViewport/React/index.html | 11 +-- .../DynamicViewport/ReactJs/index.html | 39 ++------- .../VectorMap/DynamicViewport/Vue/index.html | 14 +-- .../VectorMap/FloorPlan/Angular/index.html | 15 +--- .../VectorMap/FloorPlan/React/index.html | 11 +-- .../VectorMap/FloorPlan/ReactJs/index.html | 39 ++------- .../Demos/VectorMap/FloorPlan/Vue/index.html | 14 +-- .../VectorMap/ImageMarkers/Angular/index.html | 16 +--- .../VectorMap/ImageMarkers/React/index.html | 11 +-- .../VectorMap/ImageMarkers/ReactJs/index.html | 39 ++------- .../VectorMap/ImageMarkers/Vue/index.html | 14 +-- .../Demos/VectorMap/Legend/Angular/index.html | 16 +--- .../Demos/VectorMap/Legend/React/index.html | 11 +-- .../Demos/VectorMap/Legend/ReactJs/index.html | 39 ++------- .../Demos/VectorMap/Legend/Vue/index.html | 14 +-- .../MultipleLayers/Angular/index.html | 16 +--- .../VectorMap/MultipleLayers/React/index.html | 11 +-- .../MultipleLayers/ReactJs/index.html | 39 ++------- .../VectorMap/MultipleLayers/Vue/index.html | 14 +-- .../VectorMap/Overview/Angular/index.html | 16 +--- .../Demos/VectorMap/Overview/React/index.html | 11 +-- .../VectorMap/Overview/ReactJs/index.html | 39 ++------- .../Demos/VectorMap/Overview/Vue/index.html | 14 +-- .../VectorMap/Palette/Angular/index.html | 16 +--- .../Demos/VectorMap/Palette/React/index.html | 11 +-- .../VectorMap/Palette/ReactJs/index.html | 39 ++------- .../Demos/VectorMap/Palette/Vue/index.html | 14 +-- .../VectorMap/PieMarkers/Angular/index.html | 16 +--- .../VectorMap/PieMarkers/React/index.html | 11 +-- .../VectorMap/PieMarkers/ReactJs/index.html | 39 ++------- .../Demos/VectorMap/PieMarkers/Vue/index.html | 14 +-- .../TooltipsCustomization/Angular/index.html | 16 +--- .../TooltipsCustomization/React/index.html | 11 +-- .../TooltipsCustomization/ReactJs/index.html | 39 ++------- .../TooltipsCustomization/Vue/index.html | 14 +-- .../ZoomingAndCentering/Angular/index.html | 16 +--- .../ZoomingAndCentering/React/index.html | 11 +-- .../ZoomingAndCentering/ReactJs/index.html | 39 ++------- .../ZoomingAndCentering/Vue/index.html | 14 +-- apps/demos/utils/server/csp-bundle-angular.js | 19 ++-- apps/demos/utils/server/csp-bundle.js | 28 ++---- apps/demos/utils/server/demo-html.js | 86 +++++++++++++++++++ 2003 files changed, 6692 insertions(+), 33465 deletions(-) create mode 100644 apps/demos/utils/server/demo-html.js diff --git a/apps/demos/Demos/Accordion/Overview/Angular/index.html b/apps/demos/Demos/Accordion/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/index.html +++ b/apps/demos/Demos/Accordion/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Accordion/Overview/React/index.html b/apps/demos/Demos/Accordion/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Accordion/Overview/React/index.html +++ b/apps/demos/Demos/Accordion/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Accordion/Overview/ReactJs/index.html b/apps/demos/Demos/Accordion/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Accordion/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Accordion/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Accordion/Overview/Vue/index.html b/apps/demos/Demos/Accordion/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Accordion/Overview/Vue/index.html +++ b/apps/demos/Demos/Accordion/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ActionSheet/Basics/React/index.html b/apps/demos/Demos/ActionSheet/Basics/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ActionSheet/Basics/React/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ActionSheet/Basics/ReactJs/index.html b/apps/demos/Demos/ActionSheet/Basics/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ActionSheet/Basics/ReactJs/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ActionSheet/Basics/Vue/index.html b/apps/demos/Demos/ActionSheet/Basics/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Vue/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/ReactJs/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/ReactJs/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Autocomplete/Overview/React/index.html b/apps/demos/Demos/Autocomplete/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Autocomplete/Overview/React/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Autocomplete/Overview/ReactJs/index.html b/apps/demos/Demos/Autocomplete/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Autocomplete/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Autocomplete/Overview/Vue/index.html b/apps/demos/Demos/Autocomplete/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Vue/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Box/Overview/Angular/index.html b/apps/demos/Demos/Box/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Box/Overview/Angular/index.html +++ b/apps/demos/Demos/Box/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Box/Overview/React/index.html b/apps/demos/Demos/Box/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Box/Overview/React/index.html +++ b/apps/demos/Demos/Box/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Box/Overview/ReactJs/index.html b/apps/demos/Demos/Box/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Box/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Box/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Box/Overview/Vue/index.html b/apps/demos/Demos/Box/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Box/Overview/Vue/index.html +++ b/apps/demos/Demos/Box/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Button/Icons/Angular/index.html b/apps/demos/Demos/Button/Icons/Angular/index.html index 51222cb55272..9bb26cdb89e8 100644 --- a/apps/demos/Demos/Button/Icons/Angular/index.html +++ b/apps/demos/Demos/Button/Icons/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Button/Icons/React/index.html b/apps/demos/Demos/Button/Icons/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Button/Icons/React/index.html +++ b/apps/demos/Demos/Button/Icons/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Button/Icons/ReactJs/index.html b/apps/demos/Demos/Button/Icons/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Button/Icons/ReactJs/index.html +++ b/apps/demos/Demos/Button/Icons/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Button/Icons/Vue/index.html b/apps/demos/Demos/Button/Icons/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Button/Icons/Vue/index.html +++ b/apps/demos/Demos/Button/Icons/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Button/PredefinedTypes/React/index.html b/apps/demos/Demos/Button/PredefinedTypes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/React/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Button/PredefinedTypes/ReactJs/index.html b/apps/demos/Demos/Button/PredefinedTypes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/ReactJs/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html b/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ButtonGroup/Overview/React/index.html b/apps/demos/Demos/ButtonGroup/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/React/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ButtonGroup/Overview/ReactJs/index.html b/apps/demos/Demos/ButtonGroup/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/ReactJs/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html b/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Calendar/MultipleSelection/React/index.html b/apps/demos/Demos/Calendar/MultipleSelection/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/React/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Calendar/MultipleSelection/ReactJs/index.html b/apps/demos/Demos/Calendar/MultipleSelection/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/ReactJs/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html index 478867f60deb..90f32feafe4e 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Vue/index.html @@ -7,23 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Calendar/Overview/Angular/index.html b/apps/demos/Demos/Calendar/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/index.html +++ b/apps/demos/Demos/Calendar/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Calendar/Overview/React/index.html b/apps/demos/Demos/Calendar/Overview/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Calendar/Overview/React/index.html +++ b/apps/demos/Demos/Calendar/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Calendar/Overview/ReactJs/index.html b/apps/demos/Demos/Calendar/Overview/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Calendar/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Calendar/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Calendar/Overview/Vue/index.html b/apps/demos/Demos/Calendar/Overview/Vue/index.html index 478867f60deb..90f32feafe4e 100644 --- a/apps/demos/Demos/Calendar/Overview/Vue/index.html +++ b/apps/demos/Demos/Calendar/Overview/Vue/index.html @@ -7,23 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/CardTemplate/React/index.html b/apps/demos/Demos/CardView/CardTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/CardTemplate/React/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/CardTemplate/ReactJs/index.html b/apps/demos/Demos/CardView/CardTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/CardTemplate/ReactJs/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CardView/CardTemplate/Vue/index.html b/apps/demos/Demos/CardView/CardTemplate/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Vue/index.html +++ b/apps/demos/Demos/CardView/CardTemplate/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/ColumnChooser/React/index.html b/apps/demos/Demos/CardView/ColumnChooser/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/React/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/ColumnChooser/ReactJs/index.html b/apps/demos/Demos/CardView/ColumnChooser/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/ReactJs/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html b/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnChooser/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/ReactJs/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/ReactJs/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/ColumnReordering/React/index.html b/apps/demos/Demos/CardView/ColumnReordering/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/React/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/ColumnReordering/ReactJs/index.html b/apps/demos/Demos/CardView/ColumnReordering/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/ReactJs/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html b/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html +++ b/apps/demos/Demos/CardView/ColumnReordering/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/DataValidation/Angular/index.html b/apps/demos/Demos/CardView/DataValidation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/DataValidation/Angular/index.html +++ b/apps/demos/Demos/CardView/DataValidation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/DataValidation/React/index.html b/apps/demos/Demos/CardView/DataValidation/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/DataValidation/React/index.html +++ b/apps/demos/Demos/CardView/DataValidation/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/DataValidation/ReactJs/index.html b/apps/demos/Demos/CardView/DataValidation/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/DataValidation/ReactJs/index.html +++ b/apps/demos/Demos/CardView/DataValidation/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/DataValidation/Vue/index.html b/apps/demos/Demos/CardView/DataValidation/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/DataValidation/Vue/index.html +++ b/apps/demos/Demos/CardView/DataValidation/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/FieldTemplate/React/index.html b/apps/demos/Demos/CardView/FieldTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/React/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html b/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html +++ b/apps/demos/Demos/CardView/FieldTemplate/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/FilterPanel/React/index.html b/apps/demos/Demos/CardView/FilterPanel/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/FilterPanel/React/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/FilterPanel/ReactJs/index.html b/apps/demos/Demos/CardView/FilterPanel/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/FilterPanel/ReactJs/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/FilterPanel/Vue/index.html b/apps/demos/Demos/CardView/FilterPanel/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/CardView/FilterPanel/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/Overview/Angular/index.html b/apps/demos/Demos/CardView/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Overview/Angular/index.html +++ b/apps/demos/Demos/CardView/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/Overview/React/index.html b/apps/demos/Demos/CardView/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/Overview/React/index.html +++ b/apps/demos/Demos/CardView/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/Overview/ReactJs/index.html b/apps/demos/Demos/CardView/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/Overview/ReactJs/index.html +++ b/apps/demos/Demos/CardView/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CardView/Overview/Vue/index.html b/apps/demos/Demos/CardView/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/CardView/Overview/Vue/index.html +++ b/apps/demos/Demos/CardView/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/PopupEditing/React/index.html b/apps/demos/Demos/CardView/PopupEditing/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/PopupEditing/React/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/PopupEditing/ReactJs/index.html b/apps/demos/Demos/CardView/PopupEditing/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/PopupEditing/ReactJs/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/PopupEditing/Vue/index.html b/apps/demos/Demos/CardView/PopupEditing/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/CardView/PopupEditing/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/SearchPanel/React/index.html b/apps/demos/Demos/CardView/SearchPanel/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/SearchPanel/React/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/SearchPanel/ReactJs/index.html b/apps/demos/Demos/CardView/SearchPanel/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/SearchPanel/ReactJs/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/SearchPanel/Vue/index.html b/apps/demos/Demos/CardView/SearchPanel/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Vue/index.html +++ b/apps/demos/Demos/CardView/SearchPanel/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/Selection/Angular/index.html b/apps/demos/Demos/CardView/Selection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Selection/Angular/index.html +++ b/apps/demos/Demos/CardView/Selection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/Selection/React/index.html b/apps/demos/Demos/CardView/Selection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/Selection/React/index.html +++ b/apps/demos/Demos/CardView/Selection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/Selection/ReactJs/index.html b/apps/demos/Demos/CardView/Selection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/CardView/Selection/ReactJs/index.html +++ b/apps/demos/Demos/CardView/Selection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CardView/Selection/Vue/index.html b/apps/demos/Demos/CardView/Selection/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/CardView/Selection/Vue/index.html +++ b/apps/demos/Demos/CardView/Selection/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/SimpleArray/React/index.html b/apps/demos/Demos/CardView/SimpleArray/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/SimpleArray/React/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/SimpleArray/ReactJs/index.html b/apps/demos/Demos/CardView/SimpleArray/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/SimpleArray/ReactJs/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/SimpleArray/Vue/index.html b/apps/demos/Demos/CardView/SimpleArray/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/CardView/SimpleArray/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/Sorting/Angular/index.html b/apps/demos/Demos/CardView/Sorting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/Sorting/Angular/index.html +++ b/apps/demos/Demos/CardView/Sorting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/Sorting/React/index.html b/apps/demos/Demos/CardView/Sorting/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/Sorting/React/index.html +++ b/apps/demos/Demos/CardView/Sorting/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/Sorting/ReactJs/index.html b/apps/demos/Demos/CardView/Sorting/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/Sorting/ReactJs/index.html +++ b/apps/demos/Demos/CardView/Sorting/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/Sorting/Vue/index.html b/apps/demos/Demos/CardView/Sorting/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/Sorting/Vue/index.html +++ b/apps/demos/Demos/CardView/Sorting/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CardView/WebAPIService/React/index.html b/apps/demos/Demos/CardView/WebAPIService/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/WebAPIService/React/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CardView/WebAPIService/ReactJs/index.html b/apps/demos/Demos/CardView/WebAPIService/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/CardView/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/CardView/WebAPIService/Vue/index.html b/apps/demos/Demos/CardView/WebAPIService/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/CardView/WebAPIService/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/AjaxRequest/React/index.html b/apps/demos/Demos/Charts/AjaxRequest/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/React/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AjaxRequest/ReactJs/index.html b/apps/demos/Demos/Charts/AjaxRequest/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html b/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Annotation/Angular/index.html b/apps/demos/Demos/Charts/Annotation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/index.html +++ b/apps/demos/Demos/Charts/Annotation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Annotation/React/index.html b/apps/demos/Demos/Charts/Annotation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Annotation/React/index.html +++ b/apps/demos/Demos/Charts/Annotation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Annotation/ReactJs/index.html b/apps/demos/Demos/Charts/Annotation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Annotation/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Annotation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Annotation/Vue/index.html b/apps/demos/Demos/Charts/Annotation/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Annotation/Vue/index.html +++ b/apps/demos/Demos/Charts/Annotation/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Area/Angular/index.html b/apps/demos/Demos/Charts/Area/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Area/Angular/index.html +++ b/apps/demos/Demos/Charts/Area/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Area/React/index.html b/apps/demos/Demos/Charts/Area/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Area/React/index.html +++ b/apps/demos/Demos/Charts/Area/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Area/ReactJs/index.html b/apps/demos/Demos/Charts/Area/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Area/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Area/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Area/Vue/index.html b/apps/demos/Demos/Charts/Area/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Area/Vue/index.html +++ b/apps/demos/Demos/Charts/Area/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/ReactJs/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html b/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/AreaSparklines/React/index.html b/apps/demos/Demos/Charts/AreaSparklines/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/React/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AreaSparklines/ReactJs/index.html b/apps/demos/Demos/Charts/AreaSparklines/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html b/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/ReactJs/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/ReactJs/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html index d71a57f973ce..e84d5b268851 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/index.html @@ -1,23 +1,12 @@ - + DevExtreme Demo - - - - - - - - -
Loading... @@ -33,5 +22,7 @@
+ + diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html index 6636a9fd7782..41f94f45001e 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/React/index.html @@ -6,16 +6,8 @@ - - - - - - + -
@@ -31,5 +23,6 @@
+ diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/ReactJs/index.html index fe4bbaee8c6f..41f94f45001e 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/ReactJs/index.html @@ -2,86 +2,27 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
- + - - - - - - + + + + + +
+ diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html index a448b126351f..f16d906cf34d 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Vue/index.html @@ -6,19 +6,8 @@ - - - - - + -
@@ -34,5 +23,6 @@
+ diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/BarColorCustomization/React/index.html b/apps/demos/Demos/Charts/BarColorCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/React/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BarColorCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/BarColorCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html b/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/BarColorCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/BarDrillDown/React/index.html b/apps/demos/Demos/Charts/BarDrillDown/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/React/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BarDrillDown/ReactJs/index.html b/apps/demos/Demos/Charts/BarDrillDown/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/ReactJs/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html b/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html +++ b/apps/demos/Demos/Charts/BarDrillDown/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/BarSparklines/React/index.html b/apps/demos/Demos/Charts/BarSparklines/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarSparklines/React/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BarSparklines/ReactJs/index.html b/apps/demos/Demos/Charts/BarSparklines/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BarSparklines/ReactJs/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/BarSparklines/Vue/index.html b/apps/demos/Demos/Charts/BarSparklines/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Bubble/Angular/index.html b/apps/demos/Demos/Charts/Bubble/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/index.html +++ b/apps/demos/Demos/Charts/Bubble/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Bubble/React/index.html b/apps/demos/Demos/Charts/Bubble/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Bubble/React/index.html +++ b/apps/demos/Demos/Charts/Bubble/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Bubble/ReactJs/index.html b/apps/demos/Demos/Charts/Bubble/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Bubble/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Bubble/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Bubble/Vue/index.html b/apps/demos/Demos/Charts/Bubble/Vue/index.html index 99d70e0cafb0..f0bbf9e9c2ea 100644 --- a/apps/demos/Demos/Charts/Bubble/Vue/index.html +++ b/apps/demos/Demos/Charts/Bubble/Vue/index.html @@ -6,24 +6,14 @@ - - - - - + -
Loading...
+ diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/index.html b/apps/demos/Demos/Charts/Candlestick/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Candlestick/React/index.html b/apps/demos/Demos/Charts/Candlestick/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Candlestick/React/index.html +++ b/apps/demos/Demos/Charts/Candlestick/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Candlestick/ReactJs/index.html b/apps/demos/Demos/Charts/Candlestick/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Candlestick/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Candlestick/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Candlestick/Vue/index.html b/apps/demos/Demos/Charts/Candlestick/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Candlestick/Vue/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/ReactJs/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Colorization/Angular/index.html b/apps/demos/Demos/Charts/Colorization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/index.html +++ b/apps/demos/Demos/Charts/Colorization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Colorization/React/index.html b/apps/demos/Demos/Charts/Colorization/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Colorization/React/index.html +++ b/apps/demos/Demos/Charts/Colorization/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/Colorization/ReactJs/index.html b/apps/demos/Demos/Charts/Colorization/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Colorization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Colorization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Colorization/Vue/index.html b/apps/demos/Demos/Charts/Colorization/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Colorization/Vue/index.html +++ b/apps/demos/Demos/Charts/Colorization/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ContinuousData/React/index.html b/apps/demos/Demos/Charts/ContinuousData/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ContinuousData/React/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ContinuousData/ReactJs/index.html b/apps/demos/Demos/Charts/ContinuousData/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ContinuousData/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ContinuousData/Vue/index.html b/apps/demos/Demos/Charts/ContinuousData/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Vue/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/index.html b/apps/demos/Demos/Charts/Crosshair/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Crosshair/React/index.html b/apps/demos/Demos/Charts/Crosshair/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Crosshair/React/index.html +++ b/apps/demos/Demos/Charts/Crosshair/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Crosshair/ReactJs/index.html b/apps/demos/Demos/Charts/Crosshair/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Crosshair/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Crosshair/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Crosshair/Vue/index.html b/apps/demos/Demos/Charts/Crosshair/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Crosshair/Vue/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/CustomAnnotations/React/index.html b/apps/demos/Demos/Charts/CustomAnnotations/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomAnnotations/ReactJs/index.html b/apps/demos/Demos/Charts/CustomAnnotations/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/ReactJs/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/CustomBarWidth/React/index.html b/apps/demos/Demos/Charts/CustomBarWidth/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/React/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomBarWidth/ReactJs/index.html b/apps/demos/Demos/Charts/CustomBarWidth/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/ReactJs/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/CustomFillStyles/React/index.html b/apps/demos/Demos/Charts/CustomFillStyles/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/React/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomFillStyles/ReactJs/index.html b/apps/demos/Demos/Charts/CustomFillStyles/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/ReactJs/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html b/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomFillStyles/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/ReactJs/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/ReactJs/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/ReactJs/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DiscreteData/React/index.html b/apps/demos/Demos/Charts/DiscreteData/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscreteData/React/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteData/ReactJs/index.html b/apps/demos/Demos/Charts/DiscreteData/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscreteData/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DiscreteData/Vue/index.html b/apps/demos/Demos/Charts/DiscreteData/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/ReactJs/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html b/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html index 5ef27e6077a0..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Vue/index.html @@ -6,28 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/index.html b/apps/demos/Demos/Charts/Doughnut/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Doughnut/React/index.html b/apps/demos/Demos/Charts/Doughnut/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Doughnut/React/index.html +++ b/apps/demos/Demos/Charts/Doughnut/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Doughnut/ReactJs/index.html b/apps/demos/Demos/Charts/Doughnut/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Doughnut/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Doughnut/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Doughnut/Vue/index.html b/apps/demos/Demos/Charts/Doughnut/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Doughnut/Vue/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DoughnutSelection/React/index.html b/apps/demos/Demos/Charts/DoughnutSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/React/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutSelection/ReactJs/index.html b/apps/demos/Demos/Charts/DoughnutSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/ReactJs/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/index.html b/apps/demos/Demos/Charts/DrillDown/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DrillDown/React/index.html b/apps/demos/Demos/Charts/DrillDown/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DrillDown/React/index.html +++ b/apps/demos/Demos/Charts/DrillDown/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DrillDown/ReactJs/index.html b/apps/demos/Demos/Charts/DrillDown/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DrillDown/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DrillDown/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DrillDown/Vue/index.html b/apps/demos/Demos/Charts/DrillDown/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DrillDown/Vue/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/DynamicSeries/React/index.html b/apps/demos/Demos/Charts/DynamicSeries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/React/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/DynamicSeries/ReactJs/index.html b/apps/demos/Demos/Charts/DynamicSeries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/ReactJs/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html b/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/DynamicSeries/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/EqualSizePies/React/index.html b/apps/demos/Demos/Charts/EqualSizePies/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/React/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/EqualSizePies/ReactJs/index.html b/apps/demos/Demos/Charts/EqualSizePies/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/ReactJs/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html b/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html +++ b/apps/demos/Demos/Charts/EqualSizePies/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ErrorBars/React/index.html b/apps/demos/Demos/Charts/ErrorBars/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ErrorBars/React/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ErrorBars/ReactJs/index.html b/apps/demos/Demos/Charts/ErrorBars/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ErrorBars/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ErrorBars/Vue/index.html b/apps/demos/Demos/Charts/ErrorBars/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Vue/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/ReactJs/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/ReactJs/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/FlatDataStructure/React/index.html b/apps/demos/Demos/Charts/FlatDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/React/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FlatDataStructure/ReactJs/index.html b/apps/demos/Demos/Charts/FlatDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/FullStackedBar/React/index.html b/apps/demos/Demos/Charts/FullStackedBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FullStackedBar/ReactJs/index.html b/apps/demos/Demos/Charts/FullStackedBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html b/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/FunnelChart/React/index.html b/apps/demos/Demos/Charts/FunnelChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FunnelChart/React/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/FunnelChart/ReactJs/index.html b/apps/demos/Demos/Charts/FunnelChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/FunnelChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/FunnelChart/Vue/index.html b/apps/demos/Demos/Charts/FunnelChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Vue/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/ReactJs/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/index.html b/apps/demos/Demos/Charts/HoverMode/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/HoverMode/React/index.html b/apps/demos/Demos/Charts/HoverMode/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/HoverMode/React/index.html +++ b/apps/demos/Demos/Charts/HoverMode/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/HoverMode/ReactJs/index.html b/apps/demos/Demos/Charts/HoverMode/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/HoverMode/ReactJs/index.html +++ b/apps/demos/Demos/Charts/HoverMode/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/HoverMode/Vue/index.html b/apps/demos/Demos/Charts/HoverMode/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/HoverMode/Vue/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/InvertedChart/React/index.html b/apps/demos/Demos/Charts/InvertedChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/InvertedChart/React/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/InvertedChart/ReactJs/index.html b/apps/demos/Demos/Charts/InvertedChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/InvertedChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/InvertedChart/Vue/index.html b/apps/demos/Demos/Charts/InvertedChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Vue/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/LabelCustomization/React/index.html b/apps/demos/Demos/Charts/LabelCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/React/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LabelCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/LabelCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html b/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/LabelCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html b/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Line/Angular/index.html b/apps/demos/Demos/Charts/Line/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Line/Angular/index.html +++ b/apps/demos/Demos/Charts/Line/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Line/React/index.html b/apps/demos/Demos/Charts/Line/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Line/React/index.html +++ b/apps/demos/Demos/Charts/Line/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Line/ReactJs/index.html b/apps/demos/Demos/Charts/Line/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Line/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Line/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Line/Vue/index.html b/apps/demos/Demos/Charts/Line/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Line/Vue/index.html +++ b/apps/demos/Demos/Charts/Line/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/ReactJs/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/ReactJs/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/ReactJs/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/ReactJs/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/ReactJs/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/ReactJs/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/MultipleAxes/React/index.html b/apps/demos/Demos/Charts/MultipleAxes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/React/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultipleAxes/ReactJs/index.html b/apps/demos/Demos/Charts/MultipleAxes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/ReactJs/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html b/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/MultiplePanes/React/index.html b/apps/demos/Demos/Charts/MultiplePanes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/React/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePanes/ReactJs/index.html b/apps/demos/Demos/Charts/MultiplePanes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/ReactJs/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html b/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/ReactJs/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/ReactJs/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/NullPointSupport/React/index.html b/apps/demos/Demos/Charts/NullPointSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/React/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/NullPointSupport/ReactJs/index.html b/apps/demos/Demos/Charts/NullPointSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/ReactJs/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html b/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Overview/Angular/index.html b/apps/demos/Demos/Charts/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/index.html +++ b/apps/demos/Demos/Charts/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Overview/React/index.html b/apps/demos/Demos/Charts/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Overview/React/index.html +++ b/apps/demos/Demos/Charts/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Overview/ReactJs/index.html b/apps/demos/Demos/Charts/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Overview/Vue/index.html b/apps/demos/Demos/Charts/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Overview/Vue/index.html +++ b/apps/demos/Demos/Charts/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Palette/Angular/index.html b/apps/demos/Demos/Charts/Palette/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/index.html +++ b/apps/demos/Demos/Charts/Palette/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Palette/React/index.html b/apps/demos/Demos/Charts/Palette/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Palette/React/index.html +++ b/apps/demos/Demos/Charts/Palette/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Palette/ReactJs/index.html b/apps/demos/Demos/Charts/Palette/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Palette/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Palette/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Palette/Vue/index.html b/apps/demos/Demos/Charts/Palette/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Palette/Vue/index.html +++ b/apps/demos/Demos/Charts/Palette/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ParetoChart/React/index.html b/apps/demos/Demos/Charts/ParetoChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ParetoChart/React/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ParetoChart/ReactJs/index.html b/apps/demos/Demos/Charts/ParetoChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ParetoChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ParetoChart/Vue/index.html b/apps/demos/Demos/Charts/ParetoChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Vue/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PeriodicData/React/index.html b/apps/demos/Demos/Charts/PeriodicData/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PeriodicData/React/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PeriodicData/ReactJs/index.html b/apps/demos/Demos/Charts/PeriodicData/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PeriodicData/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PeriodicData/Vue/index.html b/apps/demos/Demos/Charts/PeriodicData/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Vue/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Pie/Angular/index.html b/apps/demos/Demos/Charts/Pie/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/index.html +++ b/apps/demos/Demos/Charts/Pie/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Pie/React/index.html b/apps/demos/Demos/Charts/Pie/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Pie/React/index.html +++ b/apps/demos/Demos/Charts/Pie/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Pie/ReactJs/index.html b/apps/demos/Demos/Charts/Pie/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Pie/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Pie/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Pie/Vue/index.html b/apps/demos/Demos/Charts/Pie/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Pie/Vue/index.html +++ b/apps/demos/Demos/Charts/Pie/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PieAnnotations/React/index.html b/apps/demos/Demos/Charts/PieAnnotations/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieAnnotations/ReactJs/index.html b/apps/demos/Demos/Charts/PieAnnotations/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html b/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/PieAnnotations/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/ReactJs/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointImage/Angular/index.html b/apps/demos/Demos/Charts/PointImage/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/index.html +++ b/apps/demos/Demos/Charts/PointImage/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PointImage/React/index.html b/apps/demos/Demos/Charts/PointImage/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointImage/React/index.html +++ b/apps/demos/Demos/Charts/PointImage/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointImage/ReactJs/index.html b/apps/demos/Demos/Charts/PointImage/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointImage/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PointImage/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PointImage/Vue/index.html b/apps/demos/Demos/Charts/PointImage/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PointImage/Vue/index.html +++ b/apps/demos/Demos/Charts/PointImage/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/ReactJs/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html b/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PointsAggregation/React/index.html b/apps/demos/Demos/Charts/PointsAggregation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/React/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregation/ReactJs/index.html b/apps/demos/Demos/Charts/PointsAggregation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html b/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/ReactJs/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/ReactJs/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/ReactJs/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/PyramidChart/React/index.html b/apps/demos/Demos/Charts/PyramidChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PyramidChart/React/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/PyramidChart/ReactJs/index.html b/apps/demos/Demos/Charts/PyramidChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/PyramidChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/PyramidChart/Vue/index.html b/apps/demos/Demos/Charts/PyramidChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Vue/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/index.html b/apps/demos/Demos/Charts/RangeArea/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/RangeArea/React/index.html b/apps/demos/Demos/Charts/RangeArea/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/RangeArea/React/index.html +++ b/apps/demos/Demos/Charts/RangeArea/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/RangeArea/ReactJs/index.html b/apps/demos/Demos/Charts/RangeArea/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/RangeArea/ReactJs/index.html +++ b/apps/demos/Demos/Charts/RangeArea/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/RangeArea/Vue/index.html b/apps/demos/Demos/Charts/RangeArea/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/RangeArea/Vue/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/index.html b/apps/demos/Demos/Charts/RangeBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/RangeBar/React/index.html b/apps/demos/Demos/Charts/RangeBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/RangeBar/React/index.html +++ b/apps/demos/Demos/Charts/RangeBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/RangeBar/ReactJs/index.html b/apps/demos/Demos/Charts/RangeBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/RangeBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/RangeBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/RangeBar/Vue/index.html b/apps/demos/Demos/Charts/RangeBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/RangeBar/Vue/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/ReactJs/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html b/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SankeyChart/React/index.html b/apps/demos/Demos/Charts/SankeyChart/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SankeyChart/React/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SankeyChart/ReactJs/index.html b/apps/demos/Demos/Charts/SankeyChart/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SankeyChart/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SankeyChart/Vue/index.html b/apps/demos/Demos/Charts/SankeyChart/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Vue/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ScaleBreaks/React/index.html b/apps/demos/Demos/Charts/ScaleBreaks/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/React/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ScaleBreaks/ReactJs/index.html b/apps/demos/Demos/Charts/ScaleBreaks/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Scatter/Angular/index.html b/apps/demos/Demos/Charts/Scatter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/index.html +++ b/apps/demos/Demos/Charts/Scatter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Scatter/React/index.html b/apps/demos/Demos/Charts/Scatter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Scatter/React/index.html +++ b/apps/demos/Demos/Charts/Scatter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Scatter/ReactJs/index.html b/apps/demos/Demos/Charts/Scatter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Scatter/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Scatter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Scatter/Vue/index.html b/apps/demos/Demos/Charts/Scatter/Vue/index.html index 99d70e0cafb0..f0bbf9e9c2ea 100644 --- a/apps/demos/Demos/Charts/Scatter/Vue/index.html +++ b/apps/demos/Demos/Charts/Scatter/Vue/index.html @@ -6,24 +6,14 @@ - - - - - + -
Loading...
+ diff --git a/apps/demos/Demos/Charts/Selection/Angular/index.html b/apps/demos/Demos/Charts/Selection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/index.html +++ b/apps/demos/Demos/Charts/Selection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Selection/React/index.html b/apps/demos/Demos/Charts/Selection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Selection/React/index.html +++ b/apps/demos/Demos/Charts/Selection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Selection/ReactJs/index.html b/apps/demos/Demos/Charts/Selection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Selection/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Selection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Selection/Vue/index.html b/apps/demos/Demos/Charts/Selection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Selection/Vue/index.html +++ b/apps/demos/Demos/Charts/Selection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/ReactJs/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SideBySideBar/React/index.html b/apps/demos/Demos/Charts/SideBySideBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideBar/ReactJs/index.html b/apps/demos/Demos/Charts/SideBySideBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/ReactJs/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/ReactJs/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/index.html b/apps/demos/Demos/Charts/SignalRService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SignalRService/React/index.html b/apps/demos/Demos/Charts/SignalRService/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SignalRService/React/index.html +++ b/apps/demos/Demos/Charts/SignalRService/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SignalRService/ReactJs/index.html b/apps/demos/Demos/Charts/SignalRService/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SignalRService/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SignalRService/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SignalRService/Vue/index.html b/apps/demos/Demos/Charts/SignalRService/Vue/index.html index 8b0eb3ef5402..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SignalRService/Vue/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Vue/index.html @@ -6,27 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SimpleArray/React/index.html b/apps/demos/Demos/Charts/SimpleArray/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleArray/React/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleArray/ReactJs/index.html b/apps/demos/Demos/Charts/SimpleArray/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleArray/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SimpleArray/Vue/index.html b/apps/demos/Demos/Charts/SimpleArray/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SimpleBullets/React/index.html b/apps/demos/Demos/Charts/SimpleBullets/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/React/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleBullets/ReactJs/index.html b/apps/demos/Demos/Charts/SimpleBullets/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html b/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SimpleSparklines/React/index.html b/apps/demos/Demos/Charts/SimpleSparklines/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/React/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SimpleSparklines/ReactJs/index.html b/apps/demos/Demos/Charts/SimpleSparklines/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SmallValueGroups/React/index.html b/apps/demos/Demos/Charts/SmallValueGroups/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/React/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SmallValueGroups/ReactJs/index.html b/apps/demos/Demos/Charts/SmallValueGroups/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html b/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html +++ b/apps/demos/Demos/Charts/SmallValueGroups/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html index 3105ab5cad73..0eba71e12649 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SpiderWeb/React/index.html b/apps/demos/Demos/Charts/SpiderWeb/React/index.html index 08134b260e08..08a9b4c2edb3 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/React/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/React/index.html @@ -5,21 +5,14 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/SpiderWeb/ReactJs/index.html b/apps/demos/Demos/Charts/SpiderWeb/ReactJs/index.html index 1a52e25464a8..08a9b4c2edb3 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/ReactJs/index.html @@ -2,50 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html b/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html index 3b9a31a52963..2de7d709fe93 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Vue/index.html @@ -5,24 +5,14 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/Spline/Angular/index.html b/apps/demos/Demos/Charts/Spline/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/index.html +++ b/apps/demos/Demos/Charts/Spline/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Spline/React/index.html b/apps/demos/Demos/Charts/Spline/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Spline/React/index.html +++ b/apps/demos/Demos/Charts/Spline/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Spline/ReactJs/index.html b/apps/demos/Demos/Charts/Spline/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Spline/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Spline/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Spline/Vue/index.html b/apps/demos/Demos/Charts/Spline/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Spline/Vue/index.html +++ b/apps/demos/Demos/Charts/Spline/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/index.html b/apps/demos/Demos/Charts/SplineArea/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/SplineArea/React/index.html b/apps/demos/Demos/Charts/SplineArea/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SplineArea/React/index.html +++ b/apps/demos/Demos/Charts/SplineArea/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/SplineArea/ReactJs/index.html b/apps/demos/Demos/Charts/SplineArea/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/SplineArea/ReactJs/index.html +++ b/apps/demos/Demos/Charts/SplineArea/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/SplineArea/Vue/index.html b/apps/demos/Demos/Charts/SplineArea/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/SplineArea/Vue/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/index.html b/apps/demos/Demos/Charts/StackedBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/StackedBar/React/index.html b/apps/demos/Demos/Charts/StackedBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StackedBar/React/index.html +++ b/apps/demos/Demos/Charts/StackedBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StackedBar/ReactJs/index.html b/apps/demos/Demos/Charts/StackedBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StackedBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/StackedBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/StackedBar/Vue/index.html b/apps/demos/Demos/Charts/StackedBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/StackedBar/Vue/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/index.html b/apps/demos/Demos/Charts/StandardBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/StandardBar/React/index.html b/apps/demos/Demos/Charts/StandardBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StandardBar/React/index.html +++ b/apps/demos/Demos/Charts/StandardBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StandardBar/ReactJs/index.html b/apps/demos/Demos/Charts/StandardBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StandardBar/ReactJs/index.html +++ b/apps/demos/Demos/Charts/StandardBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/StandardBar/Vue/index.html b/apps/demos/Demos/Charts/StandardBar/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/StandardBar/Vue/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StepArea/Angular/index.html b/apps/demos/Demos/Charts/StepArea/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/index.html +++ b/apps/demos/Demos/Charts/StepArea/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/StepArea/React/index.html b/apps/demos/Demos/Charts/StepArea/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StepArea/React/index.html +++ b/apps/demos/Demos/Charts/StepArea/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StepArea/ReactJs/index.html b/apps/demos/Demos/Charts/StepArea/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StepArea/ReactJs/index.html +++ b/apps/demos/Demos/Charts/StepArea/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/StepArea/Vue/index.html b/apps/demos/Demos/Charts/StepArea/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/StepArea/Vue/index.html +++ b/apps/demos/Demos/Charts/StepArea/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StepLine/Angular/index.html b/apps/demos/Demos/Charts/StepLine/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/index.html +++ b/apps/demos/Demos/Charts/StepLine/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/StepLine/React/index.html b/apps/demos/Demos/Charts/StepLine/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StepLine/React/index.html +++ b/apps/demos/Demos/Charts/StepLine/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/StepLine/ReactJs/index.html b/apps/demos/Demos/Charts/StepLine/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/StepLine/ReactJs/index.html +++ b/apps/demos/Demos/Charts/StepLine/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/StepLine/Vue/index.html b/apps/demos/Demos/Charts/StepLine/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/StepLine/Vue/index.html +++ b/apps/demos/Demos/Charts/StepLine/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Stock/Angular/index.html b/apps/demos/Demos/Charts/Stock/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/index.html +++ b/apps/demos/Demos/Charts/Stock/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Stock/React/index.html b/apps/demos/Demos/Charts/Stock/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Stock/React/index.html +++ b/apps/demos/Demos/Charts/Stock/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Stock/ReactJs/index.html b/apps/demos/Demos/Charts/Stock/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Stock/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Stock/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Stock/Vue/index.html b/apps/demos/Demos/Charts/Stock/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Stock/Vue/index.html +++ b/apps/demos/Demos/Charts/Stock/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Strips/Angular/index.html b/apps/demos/Demos/Charts/Strips/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/index.html +++ b/apps/demos/Demos/Charts/Strips/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Strips/React/index.html b/apps/demos/Demos/Charts/Strips/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Strips/React/index.html +++ b/apps/demos/Demos/Charts/Strips/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Strips/ReactJs/index.html b/apps/demos/Demos/Charts/Strips/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Strips/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Strips/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Strips/Vue/index.html b/apps/demos/Demos/Charts/Strips/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Strips/Vue/index.html +++ b/apps/demos/Demos/Charts/Strips/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/ReactJs/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/ReactJs/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/Timeline/Angular/index.html b/apps/demos/Demos/Charts/Timeline/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/index.html +++ b/apps/demos/Demos/Charts/Timeline/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/Timeline/React/index.html b/apps/demos/Demos/Charts/Timeline/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Timeline/React/index.html +++ b/apps/demos/Demos/Charts/Timeline/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/Timeline/ReactJs/index.html b/apps/demos/Demos/Charts/Timeline/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/Timeline/ReactJs/index.html +++ b/apps/demos/Demos/Charts/Timeline/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/Timeline/Vue/index.html b/apps/demos/Demos/Charts/Timeline/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/Timeline/Vue/index.html +++ b/apps/demos/Demos/Charts/Timeline/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/TooltipAPI/React/index.html b/apps/demos/Demos/Charts/TooltipAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/React/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/TooltipAPI/ReactJs/index.html b/apps/demos/Demos/Charts/TooltipAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/ReactJs/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html b/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/TooltipAPI/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/TooltipCustomization/React/index.html b/apps/demos/Demos/Charts/TooltipCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/React/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/TooltipCustomization/ReactJs/index.html b/apps/demos/Demos/Charts/TooltipCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html b/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html +++ b/apps/demos/Demos/Charts/TooltipCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/WindRose/Angular/index.html b/apps/demos/Demos/Charts/WindRose/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/index.html +++ b/apps/demos/Demos/Charts/WindRose/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/WindRose/React/index.html b/apps/demos/Demos/Charts/WindRose/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/WindRose/React/index.html +++ b/apps/demos/Demos/Charts/WindRose/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/WindRose/ReactJs/index.html b/apps/demos/Demos/Charts/WindRose/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/WindRose/ReactJs/index.html +++ b/apps/demos/Demos/Charts/WindRose/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/WindRose/Vue/index.html b/apps/demos/Demos/Charts/WindRose/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/WindRose/Vue/index.html +++ b/apps/demos/Demos/Charts/WindRose/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/WinlossSparklines/React/index.html b/apps/demos/Demos/Charts/WinlossSparklines/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/React/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/WinlossSparklines/ReactJs/index.html b/apps/demos/Demos/Charts/WinlossSparklines/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/ReactJs/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/ReactJs/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/ReactJs/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/ReactJs/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html index ac930aaf0aed..fb771a33adc4 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Vue/index.html @@ -5,23 +5,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/ReactJs/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/ReactJs/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/Customization/Angular/index.html b/apps/demos/Demos/Chat/Customization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/Customization/Angular/index.html +++ b/apps/demos/Demos/Chat/Customization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/Customization/React/index.html b/apps/demos/Demos/Chat/Customization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/Customization/React/index.html +++ b/apps/demos/Demos/Chat/Customization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/Customization/ReactJs/index.html b/apps/demos/Demos/Chat/Customization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/Customization/ReactJs/index.html +++ b/apps/demos/Demos/Chat/Customization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/Customization/Vue/index.html b/apps/demos/Demos/Chat/Customization/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/Customization/Vue/index.html +++ b/apps/demos/Demos/Chat/Customization/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Angular/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/FileAttachments/React/index.html b/apps/demos/Demos/Chat/FileAttachments/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/FileAttachments/React/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/FileAttachments/ReactJs/index.html b/apps/demos/Demos/Chat/FileAttachments/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/FileAttachments/ReactJs/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/FileAttachments/Vue/index.html b/apps/demos/Demos/Chat/FileAttachments/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Vue/index.html +++ b/apps/demos/Demos/Chat/FileAttachments/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/MessageEditing/React/index.html b/apps/demos/Demos/Chat/MessageEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageEditing/React/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/MessageEditing/ReactJs/index.html b/apps/demos/Demos/Chat/MessageEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageEditing/ReactJs/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/MessageEditing/Vue/index.html b/apps/demos/Demos/Chat/MessageEditing/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Vue/index.html +++ b/apps/demos/Demos/Chat/MessageEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/MessageStreaming/React/index.html b/apps/demos/Demos/Chat/MessageStreaming/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/React/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/MessageStreaming/ReactJs/index.html b/apps/demos/Demos/Chat/MessageStreaming/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/ReactJs/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html b/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html +++ b/apps/demos/Demos/Chat/MessageStreaming/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/Overview/Angular/index.html b/apps/demos/Demos/Chat/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/Overview/Angular/index.html +++ b/apps/demos/Demos/Chat/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/Overview/React/index.html b/apps/demos/Demos/Chat/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/Overview/React/index.html +++ b/apps/demos/Demos/Chat/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/Overview/ReactJs/index.html b/apps/demos/Demos/Chat/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Chat/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/Overview/Vue/index.html b/apps/demos/Demos/Chat/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Chat/Overview/Vue/index.html +++ b/apps/demos/Demos/Chat/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Chat/PromptSuggestions/React/index.html b/apps/demos/Demos/Chat/PromptSuggestions/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/React/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Chat/PromptSuggestions/ReactJs/index.html b/apps/demos/Demos/Chat/PromptSuggestions/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/ReactJs/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html b/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html +++ b/apps/demos/Demos/Chat/PromptSuggestions/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/index.html b/apps/demos/Demos/CheckBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/CheckBox/Overview/React/index.html b/apps/demos/Demos/CheckBox/Overview/React/index.html index 5d0ae9c84419..b6dbd51e86ef 100644 --- a/apps/demos/Demos/CheckBox/Overview/React/index.html +++ b/apps/demos/Demos/CheckBox/Overview/React/index.html @@ -7,18 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/CheckBox/Overview/ReactJs/index.html b/apps/demos/Demos/CheckBox/Overview/ReactJs/index.html index 53dab2ed0ca5..b6dbd51e86ef 100644 --- a/apps/demos/Demos/CheckBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/CheckBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/CheckBox/Overview/Vue/index.html b/apps/demos/Demos/CheckBox/Overview/Vue/index.html index 478867f60deb..24dd53a053f7 100644 --- a/apps/demos/Demos/CheckBox/Overview/Vue/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Vue/index.html @@ -7,23 +7,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/index.html b/apps/demos/Demos/ColorBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ColorBox/Overview/React/index.html b/apps/demos/Demos/ColorBox/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ColorBox/Overview/React/index.html +++ b/apps/demos/Demos/ColorBox/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ColorBox/Overview/ReactJs/index.html b/apps/demos/Demos/ColorBox/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ColorBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/ColorBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ColorBox/Overview/Vue/index.html b/apps/demos/Demos/ColorBox/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/ColorBox/Overview/Vue/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/ReactJs/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/ReactJs/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/ReactJs/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/ReactJs/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/EditorsOverview/React/index.html b/apps/demos/Demos/Common/EditorsOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorsOverview/React/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorsOverview/ReactJs/index.html b/apps/demos/Demos/Common/EditorsOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorsOverview/ReactJs/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/EditorsOverview/Vue/index.html b/apps/demos/Demos/Common/EditorsOverview/Vue/index.html index d0177f133faa..7369a149272c 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Vue/index.html @@ -6,28 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/ReactJs/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/ReactJs/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/FormsOverview/Angular/index.html b/apps/demos/Demos/Common/FormsOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/FormsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/FormsOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/FormsOverview/React/index.html b/apps/demos/Demos/Common/FormsOverview/React/index.html index 3410eba762f1..7369a149272c 100644 --- a/apps/demos/Demos/Common/FormsOverview/React/index.html +++ b/apps/demos/Demos/Common/FormsOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/FormsOverview/ReactJs/index.html b/apps/demos/Demos/Common/FormsOverview/ReactJs/index.html index 4fb1c253bae2..7369a149272c 100644 --- a/apps/demos/Demos/Common/FormsOverview/ReactJs/index.html +++ b/apps/demos/Demos/Common/FormsOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/FormsOverview/Vue/index.html b/apps/demos/Demos/Common/FormsOverview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Common/FormsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/FormsOverview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Common/ListsOverview/Angular/index.html b/apps/demos/Demos/Common/ListsOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/ListsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/ListsOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/ListsOverview/React/index.html b/apps/demos/Demos/Common/ListsOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/ListsOverview/React/index.html +++ b/apps/demos/Demos/Common/ListsOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/ListsOverview/ReactJs/index.html b/apps/demos/Demos/Common/ListsOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/ListsOverview/ReactJs/index.html +++ b/apps/demos/Demos/Common/ListsOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/ListsOverview/Vue/index.html b/apps/demos/Demos/Common/ListsOverview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Common/ListsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/ListsOverview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/NavigationOverview/React/index.html b/apps/demos/Demos/Common/NavigationOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/NavigationOverview/React/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/NavigationOverview/ReactJs/index.html b/apps/demos/Demos/Common/NavigationOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/NavigationOverview/ReactJs/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/NavigationOverview/Vue/index.html b/apps/demos/Demos/Common/NavigationOverview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Vue/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/ReactJs/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/ReactJs/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/ReactJs/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/ReactJs/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ContextMenu/Basics/React/index.html b/apps/demos/Demos/ContextMenu/Basics/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Basics/React/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Basics/ReactJs/index.html b/apps/demos/Demos/ContextMenu/Basics/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Basics/ReactJs/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ContextMenu/Basics/Vue/index.html b/apps/demos/Demos/ContextMenu/Basics/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ContextMenu/Scrolling/React/index.html b/apps/demos/Demos/ContextMenu/Scrolling/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/React/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Scrolling/ReactJs/index.html b/apps/demos/Demos/ContextMenu/Scrolling/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/ReactJs/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ContextMenu/Templates/React/index.html b/apps/demos/Demos/ContextMenu/Templates/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Templates/React/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ContextMenu/Templates/ReactJs/index.html b/apps/demos/Demos/ContextMenu/Templates/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ContextMenu/Templates/ReactJs/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ContextMenu/Templates/Vue/index.html b/apps/demos/Demos/ContextMenu/Templates/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Vue/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/AIAssistant/React/index.html b/apps/demos/Demos/DataGrid/AIAssistant/React/index.html index 233b43f9b31e..fda2015e304a 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/React/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/React/index.html @@ -6,21 +6,14 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AIAssistant/ReactJs/index.html b/apps/demos/Demos/DataGrid/AIAssistant/ReactJs/index.html index 81e2f1d0c9d2..fda2015e304a 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/ReactJs/index.html @@ -2,45 +2,18 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html b/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AIAssistant/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/AIColumns/React/index.html b/apps/demos/Demos/DataGrid/AIColumns/React/index.html index 233b43f9b31e..fda2015e304a 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/React/index.html @@ -6,21 +6,14 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AIColumns/ReactJs/index.html b/apps/demos/Demos/DataGrid/AIColumns/ReactJs/index.html index 81e2f1d0c9d2..fda2015e304a 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/ReactJs/index.html @@ -2,45 +2,18 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html b/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html index fa645c45918f..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AIColumns/Vue/index.html @@ -5,24 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/ReactJs/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html index dd96bb53be64..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/ReactJs/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Appearance/React/index.html b/apps/demos/Demos/DataGrid/Appearance/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Appearance/React/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Appearance/ReactJs/index.html b/apps/demos/Demos/DataGrid/Appearance/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Appearance/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Appearance/Vue/index.html b/apps/demos/Demos/DataGrid/Appearance/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/ReactJs/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/BatchEditing/React/index.html b/apps/demos/Demos/DataGrid/BatchEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/BatchEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/ReactJs/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/ReactJs/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Cell/Angular/index.html b/apps/demos/Demos/DataGrid/Cell/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Cell/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Cell/React/index.html b/apps/demos/Demos/DataGrid/Cell/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Cell/React/index.html +++ b/apps/demos/Demos/DataGrid/Cell/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Cell/ReactJs/index.html b/apps/demos/Demos/DataGrid/Cell/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Cell/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Cell/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Cell/Vue/index.html b/apps/demos/Demos/DataGrid/Cell/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/Cell/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Cell/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CellEditing/React/index.html b/apps/demos/Demos/DataGrid/CellEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CellEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/CellEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html b/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CellEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html index 21cf53909e8a..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/ReactJs/index.html index f6ad5ea42704..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Column/Angular/index.html b/apps/demos/Demos/DataGrid/Column/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Column/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Column/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Column/React/index.html b/apps/demos/Demos/DataGrid/Column/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Column/React/index.html +++ b/apps/demos/Demos/DataGrid/Column/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Column/ReactJs/index.html b/apps/demos/Demos/DataGrid/Column/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Column/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Column/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Column/Vue/index.html b/apps/demos/Demos/DataGrid/Column/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/Column/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Column/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/ReactJs/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/ReactJs/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/ReactJs/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/ReactJs/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/ReactJs/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/ReactJs/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/ReactJs/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CustomEditors/React/index.html b/apps/demos/Demos/DataGrid/CustomEditors/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomEditors/ReactJs/index.html b/apps/demos/Demos/DataGrid/CustomEditors/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/ReactJs/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/ReactJs/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html index b6bfdaa741dd..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/DataValidation/React/index.html b/apps/demos/Demos/DataGrid/DataValidation/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/React/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/DataValidation/ReactJs/index.html b/apps/demos/Demos/DataGrid/DataValidation/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html b/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/ReactJs/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html index 21cf53909e8a..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/ReactJs/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/ReactJs/index.html index f6ad5ea42704..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/ReactJs/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/ReactJs/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/ReactJs/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/ReactJs/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/ReactJs/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html index e47563a94872..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/ReactJs/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FilterPanel/ReactJs/index.html b/apps/demos/Demos/DataGrid/FilterPanel/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Filtering/React/index.html b/apps/demos/Demos/DataGrid/Filtering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Filtering/React/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Filtering/ReactJs/index.html b/apps/demos/Demos/DataGrid/Filtering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Filtering/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Filtering/Vue/index.html b/apps/demos/Demos/DataGrid/Filtering/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/ReactJs/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/ReactJs/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/FocusedRow/React/index.html b/apps/demos/Demos/DataGrid/FocusedRow/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/React/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FocusedRow/ReactJs/index.html b/apps/demos/Demos/DataGrid/FocusedRow/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html index dd96bb53be64..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/FormEditing/React/index.html b/apps/demos/Demos/DataGrid/FormEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/FormEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/FormEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html b/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/ReactJs/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/GridSummaries/React/index.html b/apps/demos/Demos/DataGrid/GridSummaries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GridSummaries/ReactJs/index.html b/apps/demos/Demos/DataGrid/GridSummaries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/ReactJs/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/ReactJs/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/ReactJs/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/ReactJs/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/LocalReordering/React/index.html b/apps/demos/Demos/DataGrid/LocalReordering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/LocalReordering/ReactJs/index.html b/apps/demos/Demos/DataGrid/LocalReordering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html index 21cf53909e8a..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/ReactJs/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/ReactJs/index.html index f6ad5ea42704..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html index 21cf53909e8a..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/ReactJs/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/ReactJs/index.html index f6ad5ea42704..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/ReactJs/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html index e47563a94872..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/ReactJs/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/ReactJs/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/ReactJs/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/ReactJs/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html b/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/index.html b/apps/demos/Demos/DataGrid/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Overview/React/index.html b/apps/demos/Demos/DataGrid/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Overview/React/index.html +++ b/apps/demos/Demos/DataGrid/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Overview/ReactJs/index.html b/apps/demos/Demos/DataGrid/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Overview/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Overview/Vue/index.html b/apps/demos/Demos/DataGrid/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/Overview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/ReactJs/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/ReactJs/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/ReactJs/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html index 61d7a89488fe..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/ReactJs/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html index e47563a94872..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PDFOverview/React/index.html b/apps/demos/Demos/DataGrid/PDFOverview/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/React/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/PDFOverview/ReactJs/index.html b/apps/demos/Demos/DataGrid/PDFOverview/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/PopupEditing/React/index.html b/apps/demos/Demos/DataGrid/PopupEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/PopupEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/PopupEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/ReactJs/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/ReactJs/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RecordPaging/React/index.html b/apps/demos/Demos/DataGrid/RecordPaging/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/React/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordPaging/ReactJs/index.html b/apps/demos/Demos/DataGrid/RecordPaging/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html index b6bfdaa741dd..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/ReactJs/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/ReactJs/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/ReactJs/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html index 21cf53909e8a..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/ReactJs/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/ReactJs/index.html index f6ad5ea42704..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/ReactJs/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Row/Angular/index.html b/apps/demos/Demos/DataGrid/Row/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Row/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Row/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Row/React/index.html b/apps/demos/Demos/DataGrid/Row/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Row/React/index.html +++ b/apps/demos/Demos/DataGrid/Row/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Row/ReactJs/index.html b/apps/demos/Demos/DataGrid/Row/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Row/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Row/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Row/Vue/index.html b/apps/demos/Demos/DataGrid/Row/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/Row/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Row/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RowEditing/React/index.html b/apps/demos/Demos/DataGrid/RowEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/React/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RowEditing/ReactJs/index.html b/apps/demos/Demos/DataGrid/RowEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html b/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RowEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/RowSelection/React/index.html b/apps/demos/Demos/DataGrid/RowSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/React/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/RowSelection/ReactJs/index.html b/apps/demos/Demos/DataGrid/RowSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html b/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/ReactJs/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html b/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html index b21c5e373a7a..ad5986c0652f 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Vue/index.html @@ -6,24 +6,12 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/SignalRService/React/index.html b/apps/demos/Demos/DataGrid/SignalRService/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/React/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/SignalRService/ReactJs/index.html b/apps/demos/Demos/DataGrid/SignalRService/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html b/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/SimpleArray/React/index.html b/apps/demos/Demos/DataGrid/SimpleArray/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/React/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/SimpleArray/ReactJs/index.html b/apps/demos/Demos/DataGrid/SimpleArray/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/StatePersistence/React/index.html b/apps/demos/Demos/DataGrid/StatePersistence/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/React/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/StatePersistence/ReactJs/index.html b/apps/demos/Demos/DataGrid/StatePersistence/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/Toolbar/React/index.html b/apps/demos/Demos/DataGrid/Toolbar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/React/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/Toolbar/ReactJs/index.html b/apps/demos/Demos/DataGrid/Toolbar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html b/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html +++ b/apps/demos/Demos/DataGrid/Toolbar/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/ReactJs/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DataGrid/WebAPIService/React/index.html b/apps/demos/Demos/DataGrid/WebAPIService/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/React/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/DataGrid/WebAPIService/ReactJs/index.html b/apps/demos/Demos/DataGrid/WebAPIService/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/index.html b/apps/demos/Demos/DateBox/Formatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DateBox/Formatting/React/index.html b/apps/demos/Demos/DateBox/Formatting/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DateBox/Formatting/React/index.html +++ b/apps/demos/Demos/DateBox/Formatting/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateBox/Formatting/ReactJs/index.html b/apps/demos/Demos/DateBox/Formatting/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DateBox/Formatting/ReactJs/index.html +++ b/apps/demos/Demos/DateBox/Formatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DateBox/Formatting/Vue/index.html b/apps/demos/Demos/DateBox/Formatting/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DateBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateBox/Overview/Angular/index.html b/apps/demos/Demos/DateBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DateBox/Overview/React/index.html b/apps/demos/Demos/DateBox/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DateBox/Overview/React/index.html +++ b/apps/demos/Demos/DateBox/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateBox/Overview/ReactJs/index.html b/apps/demos/Demos/DateBox/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DateBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/DateBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DateBox/Overview/Vue/index.html b/apps/demos/Demos/DateBox/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DateBox/Overview/Vue/index.html +++ b/apps/demos/Demos/DateBox/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DateRangeBox/Formatting/React/index.html b/apps/demos/Demos/DateRangeBox/Formatting/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/React/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Formatting/ReactJs/index.html b/apps/demos/Demos/DateRangeBox/Formatting/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/ReactJs/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DateRangeBox/Overview/React/index.html b/apps/demos/Demos/DateRangeBox/Overview/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/React/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Overview/ReactJs/index.html b/apps/demos/Demos/DateRangeBox/Overview/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html b/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/Adaptability/React/index.html b/apps/demos/Demos/Diagram/Adaptability/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Adaptability/React/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Adaptability/ReactJs/index.html b/apps/demos/Demos/Diagram/Adaptability/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Adaptability/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/Adaptability/Vue/index.html b/apps/demos/Demos/Diagram/Adaptability/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/ReactJs/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Containers/Angular/index.html b/apps/demos/Demos/Diagram/Containers/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/index.html +++ b/apps/demos/Demos/Diagram/Containers/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/Containers/React/index.html b/apps/demos/Demos/Diagram/Containers/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Containers/React/index.html +++ b/apps/demos/Demos/Diagram/Containers/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Containers/ReactJs/index.html b/apps/demos/Demos/Diagram/Containers/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Containers/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/Containers/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/Containers/Vue/index.html b/apps/demos/Demos/Diagram/Containers/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/Containers/Vue/index.html +++ b/apps/demos/Demos/Diagram/Containers/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/ReactJs/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/ReactJs/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/ReactJs/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/ReactJs/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/ReactJs/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/ItemSelection/React/index.html b/apps/demos/Demos/Diagram/ItemSelection/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/React/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ItemSelection/ReactJs/index.html b/apps/demos/Demos/Diagram/ItemSelection/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html b/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/ReactJs/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/ReactJs/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/ReactJs/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/ReactJs/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Overview/Angular/index.html b/apps/demos/Demos/Diagram/Overview/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/index.html +++ b/apps/demos/Demos/Diagram/Overview/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/Overview/React/index.html b/apps/demos/Demos/Diagram/Overview/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Overview/React/index.html +++ b/apps/demos/Demos/Diagram/Overview/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/Overview/ReactJs/index.html b/apps/demos/Demos/Diagram/Overview/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/Overview/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/Overview/Vue/index.html b/apps/demos/Demos/Diagram/Overview/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/Overview/Vue/index.html +++ b/apps/demos/Demos/Diagram/Overview/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/ReadOnly/React/index.html b/apps/demos/Demos/Diagram/ReadOnly/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/React/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/ReadOnly/ReactJs/index.html b/apps/demos/Demos/Diagram/ReadOnly/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html b/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/SimpleView/React/index.html b/apps/demos/Demos/Diagram/SimpleView/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/SimpleView/React/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/SimpleView/ReactJs/index.html b/apps/demos/Demos/Diagram/SimpleView/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/SimpleView/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/SimpleView/Vue/index.html b/apps/demos/Demos/Diagram/SimpleView/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Vue/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/UICustomization/React/index.html b/apps/demos/Demos/Diagram/UICustomization/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/UICustomization/React/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/UICustomization/ReactJs/index.html b/apps/demos/Demos/Diagram/UICustomization/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/UICustomization/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/UICustomization/Vue/index.html b/apps/demos/Demos/Diagram/UICustomization/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Vue/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html index 570cbf32da58..4116cff0f866 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html @@ -1,27 +1,18 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Diagram/WebAPIService/React/index.html b/apps/demos/Demos/Diagram/WebAPIService/React/index.html index 467246ed5f9b..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/React/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/React/index.html @@ -5,21 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Diagram/WebAPIService/ReactJs/index.html b/apps/demos/Demos/Diagram/WebAPIService/ReactJs/index.html index 37fea8a0cca6..00b7b9bb7a3f 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/ReactJs/index.html @@ -2,52 +2,18 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + + -
+ diff --git a/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html b/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html index 3e123163b341..9d946b21b66d 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Vue/index.html @@ -5,25 +5,15 @@ - + - - - - - + -
+ diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html index 5206b8ac6452..7b47950bbaff 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/React/index.html @@ -6,20 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/ReactJs/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/ReactJs/index.html index 23299ab85784..7b47950bbaff 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/ReactJs/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/ReactJs/index.html @@ -2,44 +2,16 @@ DevExtreme Demo - - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html index 8b0eb3ef5402..7369a149272c 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Vue/index.html @@ -6,27 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html index 5206b8ac6452..7b47950bbaff 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/React/index.html @@ -6,20 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/ReactJs/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/ReactJs/index.html index 23299ab85784..7b47950bbaff 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/ReactJs/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/ReactJs/index.html @@ -2,44 +2,16 @@ DevExtreme Demo - - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html index 8b0eb3ef5402..7369a149272c 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Vue/index.html @@ -6,27 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/ReactJs/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/ReactJs/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/ReactJs/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/ReactJs/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/DropDownButton/Overview/React/index.html b/apps/demos/Demos/DropDownButton/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownButton/Overview/React/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/DropDownButton/Overview/ReactJs/index.html b/apps/demos/Demos/DropDownButton/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/DropDownButton/Overview/ReactJs/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/DropDownButton/Overview/Vue/index.html b/apps/demos/Demos/DropDownButton/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Vue/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/index.html b/apps/demos/Demos/FieldSet/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FieldSet/Overview/React/index.html b/apps/demos/Demos/FieldSet/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FieldSet/Overview/React/index.html +++ b/apps/demos/Demos/FieldSet/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FieldSet/Overview/ReactJs/index.html b/apps/demos/Demos/FieldSet/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FieldSet/Overview/ReactJs/index.html +++ b/apps/demos/Demos/FieldSet/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FieldSet/Overview/Vue/index.html b/apps/demos/Demos/FieldSet/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FieldSet/Overview/Vue/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/BindingToEF/React/index.html b/apps/demos/Demos/FileManager/BindingToEF/React/index.html index f75e3f245b1d..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/React/index.html @@ -7,18 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/BindingToEF/ReactJs/index.html b/apps/demos/Demos/FileManager/BindingToEF/ReactJs/index.html index 064093ee7ce3..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html b/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html index f75e3f245b1d..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/React/index.html @@ -7,18 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/ReactJs/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/ReactJs/index.html index 064093ee7ce3..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html index f75e3f245b1d..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/React/index.html @@ -7,18 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/ReactJs/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/ReactJs/index.html index 064093ee7ce3..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html index f75e3f245b1d..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/React/index.html @@ -7,18 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/ReactJs/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/ReactJs/index.html index 064093ee7ce3..2c89cbc51caa 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/Overview/Angular/index.html b/apps/demos/Demos/FileManager/Overview/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/index.html +++ b/apps/demos/Demos/FileManager/Overview/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/Overview/React/index.html b/apps/demos/Demos/FileManager/Overview/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/FileManager/Overview/React/index.html +++ b/apps/demos/Demos/FileManager/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileManager/Overview/ReactJs/index.html b/apps/demos/Demos/FileManager/Overview/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/FileManager/Overview/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/FileManager/Overview/Vue/index.html b/apps/demos/Demos/FileManager/Overview/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/FileManager/Overview/Vue/index.html +++ b/apps/demos/Demos/FileManager/Overview/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileManager/UICustomization/React/index.html b/apps/demos/Demos/FileManager/UICustomization/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/FileManager/UICustomization/React/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/FileManager/UICustomization/ReactJs/index.html b/apps/demos/Demos/FileManager/UICustomization/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/FileManager/UICustomization/ReactJs/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/FileManager/UICustomization/Vue/index.html b/apps/demos/Demos/FileManager/UICustomization/Vue/index.html index 99d70e0cafb0..0c119f140cf8 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Vue/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Vue/index.html @@ -6,24 +6,13 @@ - - - - - -
Loading...
+ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/ReactJs/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/ReactJs/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html b/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/ReactJs/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/ReactJs/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileUploader/FileSelection/React/index.html b/apps/demos/Demos/FileUploader/FileSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/React/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/FileSelection/ReactJs/index.html b/apps/demos/Demos/FileUploader/FileSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/ReactJs/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html b/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileUploader/FileUploading/React/index.html b/apps/demos/Demos/FileUploader/FileUploading/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/React/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/FileUploading/ReactJs/index.html b/apps/demos/Demos/FileUploader/FileUploading/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/ReactJs/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html b/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/index.html b/apps/demos/Demos/FileUploader/Validation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FileUploader/Validation/React/index.html b/apps/demos/Demos/FileUploader/Validation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/Validation/React/index.html +++ b/apps/demos/Demos/FileUploader/Validation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FileUploader/Validation/ReactJs/index.html b/apps/demos/Demos/FileUploader/Validation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FileUploader/Validation/ReactJs/index.html +++ b/apps/demos/Demos/FileUploader/Validation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FileUploader/Validation/Vue/index.html b/apps/demos/Demos/FileUploader/Validation/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FileUploader/Validation/Vue/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html index 51222cb55272..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FilterBuilder/Customization/React/index.html b/apps/demos/Demos/FilterBuilder/Customization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/React/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/Customization/ReactJs/index.html b/apps/demos/Demos/FilterBuilder/Customization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/ReactJs/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html b/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html index 51222cb55272..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/ReactJs/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/ReactJs/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html index 51222cb55272..9bb26cdb89e8 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FilterBuilder/WithList/React/index.html b/apps/demos/Demos/FilterBuilder/WithList/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/React/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithList/ReactJs/index.html b/apps/demos/Demos/FilterBuilder/WithList/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/ReactJs/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html b/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/FloatingActionButton/Overview/React/index.html b/apps/demos/Demos/FloatingActionButton/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/React/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/FloatingActionButton/Overview/ReactJs/index.html b/apps/demos/Demos/FloatingActionButton/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/ReactJs/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Adaptability/Angular/index.html b/apps/demos/Demos/Form/Adaptability/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Form/Adaptability/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/Adaptability/React/index.html b/apps/demos/Demos/Form/Adaptability/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Adaptability/React/index.html +++ b/apps/demos/Demos/Form/Adaptability/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Adaptability/ReactJs/index.html b/apps/demos/Demos/Form/Adaptability/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Adaptability/ReactJs/index.html +++ b/apps/demos/Demos/Form/Adaptability/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/Adaptability/Vue/index.html b/apps/demos/Demos/Form/Adaptability/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Form/Adaptability/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Grouping/Angular/index.html b/apps/demos/Demos/Form/Grouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Grouping/Angular/index.html +++ b/apps/demos/Demos/Form/Grouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/Grouping/React/index.html b/apps/demos/Demos/Form/Grouping/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Grouping/React/index.html +++ b/apps/demos/Demos/Form/Grouping/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Grouping/ReactJs/index.html b/apps/demos/Demos/Form/Grouping/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Grouping/ReactJs/index.html +++ b/apps/demos/Demos/Form/Grouping/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/Grouping/Vue/index.html b/apps/demos/Demos/Form/Grouping/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/Grouping/Vue/index.html +++ b/apps/demos/Demos/Form/Grouping/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Angular/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/ItemCustomization/React/index.html b/apps/demos/Demos/Form/ItemCustomization/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/ItemCustomization/React/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/ItemCustomization/ReactJs/index.html b/apps/demos/Demos/Form/ItemCustomization/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/ItemCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/ItemCustomization/Vue/index.html b/apps/demos/Demos/Form/ItemCustomization/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Vue/index.html +++ b/apps/demos/Demos/Form/ItemCustomization/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Overview/Angular/index.html b/apps/demos/Demos/Form/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Overview/Angular/index.html +++ b/apps/demos/Demos/Form/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/Overview/React/index.html b/apps/demos/Demos/Form/Overview/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Overview/React/index.html +++ b/apps/demos/Demos/Form/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Overview/ReactJs/index.html b/apps/demos/Demos/Form/Overview/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Form/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/Overview/Vue/index.html b/apps/demos/Demos/Form/Overview/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/Overview/Vue/index.html +++ b/apps/demos/Demos/Form/Overview/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/SmartPaste/Angular/index.html b/apps/demos/Demos/Form/SmartPaste/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/Form/SmartPaste/Angular/index.html +++ b/apps/demos/Demos/Form/SmartPaste/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Form/SmartPaste/React/index.html b/apps/demos/Demos/Form/SmartPaste/React/index.html index ad32c59b4d18..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/SmartPaste/React/index.html +++ b/apps/demos/Demos/Form/SmartPaste/React/index.html @@ -5,21 +5,14 @@ - + - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/SmartPaste/ReactJs/index.html b/apps/demos/Demos/Form/SmartPaste/ReactJs/index.html index 1b0ce9f58699..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/SmartPaste/ReactJs/index.html +++ b/apps/demos/Demos/Form/SmartPaste/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/SmartPaste/Vue/index.html b/apps/demos/Demos/Form/SmartPaste/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/SmartPaste/Vue/index.html +++ b/apps/demos/Demos/Form/SmartPaste/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/ReactJs/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/ReactJs/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Validation/Angular/index.html b/apps/demos/Demos/Form/Validation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Form/Validation/Angular/index.html +++ b/apps/demos/Demos/Form/Validation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Form/Validation/React/index.html b/apps/demos/Demos/Form/Validation/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Validation/React/index.html +++ b/apps/demos/Demos/Form/Validation/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Form/Validation/ReactJs/index.html b/apps/demos/Demos/Form/Validation/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Form/Validation/ReactJs/index.html +++ b/apps/demos/Demos/Form/Validation/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Form/Validation/Vue/index.html b/apps/demos/Demos/Form/Validation/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Form/Validation/Vue/index.html +++ b/apps/demos/Demos/Form/Validation/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gallery/ItemTemplate/React/index.html b/apps/demos/Demos/Gallery/ItemTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/React/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gallery/ItemTemplate/ReactJs/index.html b/apps/demos/Demos/Gallery/ItemTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/ReactJs/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gallery/Overview/Angular/index.html b/apps/demos/Demos/Gallery/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/index.html +++ b/apps/demos/Demos/Gallery/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gallery/Overview/React/index.html b/apps/demos/Demos/Gallery/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Gallery/Overview/React/index.html +++ b/apps/demos/Demos/Gallery/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gallery/Overview/ReactJs/index.html b/apps/demos/Demos/Gallery/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Gallery/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Gallery/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gallery/Overview/Vue/index.html b/apps/demos/Demos/Gallery/Overview/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Gallery/Overview/Vue/index.html +++ b/apps/demos/Demos/Gallery/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Appearance/Angular/index.html b/apps/demos/Demos/Gantt/Appearance/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Appearance/Angular/index.html +++ b/apps/demos/Demos/Gantt/Appearance/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/Appearance/React/index.html b/apps/demos/Demos/Gantt/Appearance/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Appearance/React/index.html +++ b/apps/demos/Demos/Gantt/Appearance/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Appearance/ReactJs/index.html b/apps/demos/Demos/Gantt/Appearance/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Appearance/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/Appearance/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/Appearance/Vue/index.html b/apps/demos/Demos/Gantt/Appearance/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/Appearance/Vue/index.html +++ b/apps/demos/Demos/Gantt/Appearance/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/ContextMenu/React/index.html b/apps/demos/Demos/Gantt/ContextMenu/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/React/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/ContextMenu/ReactJs/index.html b/apps/demos/Demos/Gantt/ContextMenu/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html b/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/DataBinding/React/index.html b/apps/demos/Demos/Gantt/DataBinding/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/DataBinding/React/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/DataBinding/ReactJs/index.html b/apps/demos/Demos/Gantt/DataBinding/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/DataBinding/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/DataBinding/Vue/index.html b/apps/demos/Demos/Gantt/DataBinding/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Vue/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/ExportToPDF/React/index.html b/apps/demos/Demos/Gantt/ExportToPDF/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/React/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/ReactJs/index.html b/apps/demos/Demos/Gantt/ExportToPDF/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/FilterRow/React/index.html b/apps/demos/Demos/Gantt/FilterRow/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/FilterRow/React/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/FilterRow/ReactJs/index.html b/apps/demos/Demos/Gantt/FilterRow/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/FilterRow/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/FilterRow/Vue/index.html b/apps/demos/Demos/Gantt/FilterRow/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Vue/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/HeaderFilter/React/index.html b/apps/demos/Demos/Gantt/HeaderFilter/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/React/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/ReactJs/index.html b/apps/demos/Demos/Gantt/HeaderFilter/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html index 9ac319417ff9..09dffc7edb9b 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Vue/index.html @@ -7,22 +7,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Gantt/Overview/Angular/index.html b/apps/demos/Demos/Gantt/Overview/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/index.html +++ b/apps/demos/Demos/Gantt/Overview/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/Overview/React/index.html b/apps/demos/Demos/Gantt/Overview/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Overview/React/index.html +++ b/apps/demos/Demos/Gantt/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Overview/ReactJs/index.html b/apps/demos/Demos/Gantt/Overview/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/Overview/Vue/index.html b/apps/demos/Demos/Gantt/Overview/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/Overview/Vue/index.html +++ b/apps/demos/Demos/Gantt/Overview/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/index.html b/apps/demos/Demos/Gantt/Sorting/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/Sorting/React/index.html b/apps/demos/Demos/Gantt/Sorting/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Sorting/React/index.html +++ b/apps/demos/Demos/Gantt/Sorting/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Sorting/ReactJs/index.html b/apps/demos/Demos/Gantt/Sorting/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Sorting/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/Sorting/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/Sorting/Vue/index.html b/apps/demos/Demos/Gantt/Sorting/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/Sorting/Vue/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/index.html b/apps/demos/Demos/Gantt/StripLines/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/StripLines/React/index.html b/apps/demos/Demos/Gantt/StripLines/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/StripLines/React/index.html +++ b/apps/demos/Demos/Gantt/StripLines/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/StripLines/ReactJs/index.html b/apps/demos/Demos/Gantt/StripLines/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/StripLines/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/StripLines/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/StripLines/Vue/index.html b/apps/demos/Demos/Gantt/StripLines/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/StripLines/Vue/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/TaskTemplate/React/index.html b/apps/demos/Demos/Gantt/TaskTemplate/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/React/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/ReactJs/index.html b/apps/demos/Demos/Gantt/TaskTemplate/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/Toolbar/React/index.html b/apps/demos/Demos/Gantt/Toolbar/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Toolbar/React/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Toolbar/ReactJs/index.html b/apps/demos/Demos/Gantt/Toolbar/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Toolbar/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/Toolbar/Vue/index.html b/apps/demos/Demos/Gantt/Toolbar/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Vue/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Validation/Angular/index.html b/apps/demos/Demos/Gantt/Validation/Angular/index.html index 62f621048d2b..37a1f593d5a2 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/index.html +++ b/apps/demos/Demos/Gantt/Validation/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gantt/Validation/React/index.html b/apps/demos/Demos/Gantt/Validation/React/index.html index af63cc747296..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Validation/React/index.html +++ b/apps/demos/Demos/Gantt/Validation/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gantt/Validation/ReactJs/index.html b/apps/demos/Demos/Gantt/Validation/ReactJs/index.html index 5e995c2761f9..5532c39d1be4 100644 --- a/apps/demos/Demos/Gantt/Validation/ReactJs/index.html +++ b/apps/demos/Demos/Gantt/Validation/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Gantt/Validation/Vue/index.html b/apps/demos/Demos/Gantt/Validation/Vue/index.html index 9ac319417ff9..ac22e3a71b50 100644 --- a/apps/demos/Demos/Gantt/Validation/Vue/index.html +++ b/apps/demos/Demos/Gantt/Validation/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/ReactJs/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/BarGauge/React/index.html b/apps/demos/Demos/Gauges/BarGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/BarGauge/React/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/BarGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/BarGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/BarGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/BarGauge/Vue/index.html b/apps/demos/Demos/Gauges/BarGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/BarGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/CircularGauge/React/index.html b/apps/demos/Demos/Gauges/CircularGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/React/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CircularGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/CircularGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html b/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/CircularGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/CustomLayout/React/index.html b/apps/demos/Demos/Gauges/CustomLayout/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/React/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayout/ReactJs/index.html b/apps/demos/Demos/Gauges/CustomLayout/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html b/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html index 410c68336cd3..34183a0d5203 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/ReactJs/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/ReactJs/index.html index 0f56838e0788..34183a0d5203 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/ReactJs/index.html @@ -2,46 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
-
+
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/ReactJs/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/ReactJs/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/ReactJs/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/ReactJs/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/LinearGauge/React/index.html b/apps/demos/Demos/Gauges/LinearGauge/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/React/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/LinearGauge/ReactJs/index.html b/apps/demos/Demos/Gauges/LinearGauge/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html b/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html +++ b/apps/demos/Demos/Gauges/LinearGauge/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/Overview/Angular/index.html b/apps/demos/Demos/Gauges/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/index.html +++ b/apps/demos/Demos/Gauges/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/Overview/React/index.html b/apps/demos/Demos/Gauges/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Overview/React/index.html +++ b/apps/demos/Demos/Gauges/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Gauges/Overview/ReactJs/index.html b/apps/demos/Demos/Gauges/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/Overview/Vue/index.html b/apps/demos/Demos/Gauges/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/Overview/Vue/index.html +++ b/apps/demos/Demos/Gauges/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Gauges/Palette/Angular/index.html b/apps/demos/Demos/Gauges/Palette/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/index.html +++ b/apps/demos/Demos/Gauges/Palette/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/Palette/React/index.html b/apps/demos/Demos/Gauges/Palette/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Palette/React/index.html +++ b/apps/demos/Demos/Gauges/Palette/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/Palette/ReactJs/index.html b/apps/demos/Demos/Gauges/Palette/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Palette/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/Palette/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/Palette/Vue/index.html b/apps/demos/Demos/Gauges/Palette/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/Palette/Vue/index.html +++ b/apps/demos/Demos/Gauges/Palette/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/ReactJs/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/ReactJs/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html b/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/ReactJs/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/ReactJs/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/ReactJs/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/ReactJs/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/ReactJs/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/ReactJs/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/Tooltip/React/index.html b/apps/demos/Demos/Gauges/Tooltip/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Tooltip/React/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/Tooltip/ReactJs/index.html b/apps/demos/Demos/Gauges/Tooltip/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/Tooltip/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/Tooltip/Vue/index.html b/apps/demos/Demos/Gauges/Tooltip/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Vue/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/ReactJs/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/ReactJs/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/ReactJs/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html b/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html index 5f44df651b65..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/Mentions/React/index.html b/apps/demos/Demos/HtmlEditor/Mentions/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Mentions/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/Mentions/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/Overview/React/index.html b/apps/demos/Demos/HtmlEditor/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Overview/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html b/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/Tables/React/index.html b/apps/demos/Demos/HtmlEditor/Tables/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/React/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Tables/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/Tables/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html b/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/ReactJs/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/ReactJs/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/DragAndDrop/Angular/index.html b/apps/demos/Demos/List/DragAndDrop/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/List/DragAndDrop/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/DragAndDrop/React/index.html b/apps/demos/Demos/List/DragAndDrop/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/DragAndDrop/React/index.html +++ b/apps/demos/Demos/List/DragAndDrop/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/DragAndDrop/ReactJs/index.html b/apps/demos/Demos/List/DragAndDrop/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/DragAndDrop/ReactJs/index.html +++ b/apps/demos/Demos/List/DragAndDrop/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/DragAndDrop/Vue/index.html b/apps/demos/Demos/List/DragAndDrop/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/List/DragAndDrop/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/Grouping/Angular/index.html b/apps/demos/Demos/List/Grouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/Grouping/Angular/index.html +++ b/apps/demos/Demos/List/Grouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/Grouping/React/index.html b/apps/demos/Demos/List/Grouping/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Grouping/React/index.html +++ b/apps/demos/Demos/List/Grouping/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/Grouping/ReactJs/index.html b/apps/demos/Demos/List/Grouping/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Grouping/ReactJs/index.html +++ b/apps/demos/Demos/List/Grouping/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/Grouping/Vue/index.html b/apps/demos/Demos/List/Grouping/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/Grouping/Vue/index.html +++ b/apps/demos/Demos/List/Grouping/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/ItemDeletion/Angular/index.html b/apps/demos/Demos/List/ItemDeletion/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/ItemDeletion/Angular/index.html +++ b/apps/demos/Demos/List/ItemDeletion/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/ItemDeletion/React/index.html b/apps/demos/Demos/List/ItemDeletion/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/ItemDeletion/React/index.html +++ b/apps/demos/Demos/List/ItemDeletion/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/ItemDeletion/ReactJs/index.html b/apps/demos/Demos/List/ItemDeletion/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/ItemDeletion/ReactJs/index.html +++ b/apps/demos/Demos/List/ItemDeletion/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/ItemDeletion/Vue/index.html b/apps/demos/Demos/List/ItemDeletion/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/ItemDeletion/Vue/index.html +++ b/apps/demos/Demos/List/ItemDeletion/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/index.html b/apps/demos/Demos/List/ItemTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/ItemTemplate/React/index.html b/apps/demos/Demos/List/ItemTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/ItemTemplate/React/index.html +++ b/apps/demos/Demos/List/ItemTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/ItemTemplate/ReactJs/index.html b/apps/demos/Demos/List/ItemTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/ItemTemplate/ReactJs/index.html +++ b/apps/demos/Demos/List/ItemTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/ItemTemplate/Vue/index.html b/apps/demos/Demos/List/ItemTemplate/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/Search/Angular/index.html b/apps/demos/Demos/List/Search/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/Search/Angular/index.html +++ b/apps/demos/Demos/List/Search/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/Search/React/index.html b/apps/demos/Demos/List/Search/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Search/React/index.html +++ b/apps/demos/Demos/List/Search/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/Search/ReactJs/index.html b/apps/demos/Demos/List/Search/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Search/ReactJs/index.html +++ b/apps/demos/Demos/List/Search/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/Search/Vue/index.html b/apps/demos/Demos/List/Search/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/Search/Vue/index.html +++ b/apps/demos/Demos/List/Search/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/Selection/Angular/index.html b/apps/demos/Demos/List/Selection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/Selection/Angular/index.html +++ b/apps/demos/Demos/List/Selection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/Selection/React/index.html b/apps/demos/Demos/List/Selection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Selection/React/index.html +++ b/apps/demos/Demos/List/Selection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/List/Selection/ReactJs/index.html b/apps/demos/Demos/List/Selection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/List/Selection/ReactJs/index.html +++ b/apps/demos/Demos/List/Selection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/List/Selection/Vue/index.html b/apps/demos/Demos/List/Selection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/List/Selection/Vue/index.html +++ b/apps/demos/Demos/List/Selection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/List/WebAPI/Angular/index.html b/apps/demos/Demos/List/WebAPI/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/index.html +++ b/apps/demos/Demos/List/WebAPI/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/List/WebAPI/React/index.html b/apps/demos/Demos/List/WebAPI/React/index.html index ee451f8288ff..1da2da79d709 100644 --- a/apps/demos/Demos/List/WebAPI/React/index.html +++ b/apps/demos/Demos/List/WebAPI/React/index.html @@ -6,19 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/List/WebAPI/ReactJs/index.html b/apps/demos/Demos/List/WebAPI/ReactJs/index.html index db31b0fd60c6..1da2da79d709 100644 --- a/apps/demos/Demos/List/WebAPI/ReactJs/index.html +++ b/apps/demos/Demos/List/WebAPI/ReactJs/index.html @@ -2,43 +2,15 @@ DevExtreme Demo - - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/List/WebAPI/Vue/index.html b/apps/demos/Demos/List/WebAPI/Vue/index.html index 8b0eb3ef5402..fb771a33adc4 100644 --- a/apps/demos/Demos/List/WebAPI/Vue/index.html +++ b/apps/demos/Demos/List/WebAPI/Vue/index.html @@ -6,27 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/LoadIndicator/Overview/React/index.html b/apps/demos/Demos/LoadIndicator/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/React/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/LoadIndicator/Overview/ReactJs/index.html b/apps/demos/Demos/LoadIndicator/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/ReactJs/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html b/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/LoadPanel/Overview/React/index.html b/apps/demos/Demos/LoadPanel/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/LoadPanel/Overview/React/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/LoadPanel/Overview/ReactJs/index.html b/apps/demos/Demos/LoadPanel/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/LoadPanel/Overview/ReactJs/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/LoadPanel/Overview/Vue/index.html b/apps/demos/Demos/LoadPanel/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Vue/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Localization/UsingGlobalize/React/index.html b/apps/demos/Demos/Localization/UsingGlobalize/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/React/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/ReactJs/index.html b/apps/demos/Demos/Localization/UsingGlobalize/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/ReactJs/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Localization/UsingIntl/React/index.html b/apps/demos/Demos/Localization/UsingIntl/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Localization/UsingIntl/React/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Localization/UsingIntl/ReactJs/index.html b/apps/demos/Demos/Localization/UsingIntl/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Localization/UsingIntl/ReactJs/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Localization/UsingIntl/Vue/index.html b/apps/demos/Demos/Localization/UsingIntl/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Vue/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/Basics/Angular/index.html b/apps/demos/Demos/Lookup/Basics/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/index.html +++ b/apps/demos/Demos/Lookup/Basics/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Lookup/Basics/React/index.html b/apps/demos/Demos/Lookup/Basics/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Lookup/Basics/React/index.html +++ b/apps/demos/Demos/Lookup/Basics/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/Basics/ReactJs/index.html b/apps/demos/Demos/Lookup/Basics/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Lookup/Basics/ReactJs/index.html +++ b/apps/demos/Demos/Lookup/Basics/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Lookup/Basics/Vue/index.html b/apps/demos/Demos/Lookup/Basics/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Lookup/Basics/Vue/index.html +++ b/apps/demos/Demos/Lookup/Basics/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Lookup/EventHandling/React/index.html b/apps/demos/Demos/Lookup/EventHandling/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Lookup/EventHandling/React/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/EventHandling/ReactJs/index.html b/apps/demos/Demos/Lookup/EventHandling/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Lookup/EventHandling/ReactJs/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Lookup/EventHandling/Vue/index.html b/apps/demos/Demos/Lookup/EventHandling/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Vue/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/Templates/Angular/index.html b/apps/demos/Demos/Lookup/Templates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/index.html +++ b/apps/demos/Demos/Lookup/Templates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Lookup/Templates/React/index.html b/apps/demos/Demos/Lookup/Templates/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Lookup/Templates/React/index.html +++ b/apps/demos/Demos/Lookup/Templates/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Lookup/Templates/ReactJs/index.html b/apps/demos/Demos/Lookup/Templates/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Lookup/Templates/ReactJs/index.html +++ b/apps/demos/Demos/Lookup/Templates/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Lookup/Templates/Vue/index.html b/apps/demos/Demos/Lookup/Templates/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Lookup/Templates/Vue/index.html +++ b/apps/demos/Demos/Lookup/Templates/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Map/Markers/Angular/index.html b/apps/demos/Demos/Map/Markers/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Map/Markers/Angular/index.html +++ b/apps/demos/Demos/Map/Markers/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Map/Markers/React/index.html b/apps/demos/Demos/Map/Markers/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/Markers/React/index.html +++ b/apps/demos/Demos/Map/Markers/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Map/Markers/ReactJs/index.html b/apps/demos/Demos/Map/Markers/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/Markers/ReactJs/index.html +++ b/apps/demos/Demos/Map/Markers/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Map/Markers/Vue/index.html b/apps/demos/Demos/Map/Markers/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Map/Markers/Vue/index.html +++ b/apps/demos/Demos/Map/Markers/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/ReactJs/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/ReactJs/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Map/Routes/Angular/index.html b/apps/demos/Demos/Map/Routes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Map/Routes/Angular/index.html +++ b/apps/demos/Demos/Map/Routes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Map/Routes/React/index.html b/apps/demos/Demos/Map/Routes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/Routes/React/index.html +++ b/apps/demos/Demos/Map/Routes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Map/Routes/ReactJs/index.html b/apps/demos/Demos/Map/Routes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Map/Routes/ReactJs/index.html +++ b/apps/demos/Demos/Map/Routes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Map/Routes/Vue/index.html b/apps/demos/Demos/Map/Routes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Map/Routes/Vue/index.html +++ b/apps/demos/Demos/Map/Routes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Menu/Overview/Angular/index.html b/apps/demos/Demos/Menu/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/index.html +++ b/apps/demos/Demos/Menu/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Menu/Overview/React/index.html b/apps/demos/Demos/Menu/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Menu/Overview/React/index.html +++ b/apps/demos/Demos/Menu/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Menu/Overview/ReactJs/index.html b/apps/demos/Demos/Menu/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Menu/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Menu/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Menu/Overview/Vue/index.html b/apps/demos/Demos/Menu/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Menu/Overview/Vue/index.html +++ b/apps/demos/Demos/Menu/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/index.html b/apps/demos/Demos/Menu/Scrolling/Angular/index.html index 2439557d8fbe..3f08cd754b29 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Angular/index.html @@ -1,24 +1,15 @@ - + DevExtreme Demo - - - - - - - - - Loading... + + diff --git a/apps/demos/Demos/Menu/Scrolling/React/index.html b/apps/demos/Demos/Menu/Scrolling/React/index.html index c21fcccdd2d1..576c107e0152 100644 --- a/apps/demos/Demos/Menu/Scrolling/React/index.html +++ b/apps/demos/Demos/Menu/Scrolling/React/index.html @@ -6,17 +6,10 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Menu/Scrolling/ReactJs/index.html b/apps/demos/Demos/Menu/Scrolling/ReactJs/index.html index a1dcc9587e3a..576c107e0152 100644 --- a/apps/demos/Demos/Menu/Scrolling/ReactJs/index.html +++ b/apps/demos/Demos/Menu/Scrolling/ReactJs/index.html @@ -2,41 +2,14 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Menu/Scrolling/Vue/index.html b/apps/demos/Demos/Menu/Scrolling/Vue/index.html index 8c553703fa47..576c107e0152 100644 --- a/apps/demos/Demos/Menu/Scrolling/Vue/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Vue/index.html @@ -6,20 +6,10 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/MultiView/Overview/Angular/index.html b/apps/demos/Demos/MultiView/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/index.html +++ b/apps/demos/Demos/MultiView/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/MultiView/Overview/React/index.html b/apps/demos/Demos/MultiView/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/MultiView/Overview/React/index.html +++ b/apps/demos/Demos/MultiView/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/MultiView/Overview/ReactJs/index.html b/apps/demos/Demos/MultiView/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/MultiView/Overview/ReactJs/index.html +++ b/apps/demos/Demos/MultiView/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/MultiView/Overview/Vue/index.html b/apps/demos/Demos/MultiView/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/MultiView/Overview/Vue/index.html +++ b/apps/demos/Demos/MultiView/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/NumberBox/Formatting/React/index.html b/apps/demos/Demos/NumberBox/Formatting/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/NumberBox/Formatting/React/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/NumberBox/Formatting/ReactJs/index.html b/apps/demos/Demos/NumberBox/Formatting/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/NumberBox/Formatting/ReactJs/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/NumberBox/Formatting/Vue/index.html b/apps/demos/Demos/NumberBox/Formatting/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Vue/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/index.html b/apps/demos/Demos/NumberBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/NumberBox/Overview/React/index.html b/apps/demos/Demos/NumberBox/Overview/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/NumberBox/Overview/React/index.html +++ b/apps/demos/Demos/NumberBox/Overview/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/NumberBox/Overview/ReactJs/index.html b/apps/demos/Demos/NumberBox/Overview/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/NumberBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/NumberBox/Overview/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/NumberBox/Overview/Vue/index.html b/apps/demos/Demos/NumberBox/Overview/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/NumberBox/Overview/Vue/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/Pagination/Overview/Angular/index.html b/apps/demos/Demos/Pagination/Overview/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/index.html +++ b/apps/demos/Demos/Pagination/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Pagination/Overview/React/index.html b/apps/demos/Demos/Pagination/Overview/React/index.html index 637762a048ae..2019c420e632 100644 --- a/apps/demos/Demos/Pagination/Overview/React/index.html +++ b/apps/demos/Demos/Pagination/Overview/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Pagination/Overview/ReactJs/index.html b/apps/demos/Demos/Pagination/Overview/ReactJs/index.html index 1614ae6aee3d..2019c420e632 100644 --- a/apps/demos/Demos/Pagination/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Pagination/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Pagination/Overview/Vue/index.html b/apps/demos/Demos/Pagination/Overview/Vue/index.html index 3bd60990e984..2019c420e632 100644 --- a/apps/demos/Demos/Pagination/Overview/Vue/index.html +++ b/apps/demos/Demos/Pagination/Overview/Vue/index.html @@ -5,24 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/ReactJs/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/Customization/React/index.html b/apps/demos/Demos/PivotGrid/Customization/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Customization/React/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Customization/ReactJs/index.html b/apps/demos/Demos/PivotGrid/Customization/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Customization/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/Customization/Vue/index.html b/apps/demos/Demos/PivotGrid/Customization/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Customization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/DrillDown/React/index.html b/apps/demos/Demos/PivotGrid/DrillDown/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/React/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/ReactJs/index.html b/apps/demos/Demos/PivotGrid/DrillDown/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html index dcea8a022c64..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/React/index.html @@ -6,17 +6,11 @@ - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/ReactJs/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/ReactJs/index.html index 9d0a00508fe4..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/ReactJs/index.html @@ -2,37 +2,15 @@ DevExtreme Demo - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html index 8ef744ca51f3..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html index dcea8a022c64..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/React/index.html @@ -6,17 +6,11 @@ - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/ReactJs/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/ReactJs/index.html index 9d0a00508fe4..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/ReactJs/index.html @@ -2,37 +2,15 @@ DevExtreme Demo - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html index 394de6604894..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/ReactJs/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/ReactJs/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/Filtering/React/index.html b/apps/demos/Demos/PivotGrid/Filtering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/React/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Filtering/ReactJs/index.html b/apps/demos/Demos/PivotGrid/Filtering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html b/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Filtering/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/ReactJs/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/ReactJs/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/Overview/React/index.html b/apps/demos/Demos/PivotGrid/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Overview/React/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/Overview/ReactJs/index.html b/apps/demos/Demos/PivotGrid/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/Overview/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/Overview/Vue/index.html b/apps/demos/Demos/PivotGrid/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/ReactJs/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/ReactJs/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/ReactJs/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html index 394de6604894..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/ReactJs/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/ReactJs/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/ReactJs/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/ReactJs/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html index 8ef744ca51f3..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/ReactJs/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html index 8ef744ca51f3..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Popover/Overview/Angular/index.html b/apps/demos/Demos/Popover/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/index.html +++ b/apps/demos/Demos/Popover/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Popover/Overview/React/index.html b/apps/demos/Demos/Popover/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Popover/Overview/React/index.html +++ b/apps/demos/Demos/Popover/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Popover/Overview/ReactJs/index.html b/apps/demos/Demos/Popover/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Popover/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Popover/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Popover/Overview/Vue/index.html b/apps/demos/Demos/Popover/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Popover/Overview/Vue/index.html +++ b/apps/demos/Demos/Popover/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Popup/Overview/Angular/index.html b/apps/demos/Demos/Popup/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/index.html +++ b/apps/demos/Demos/Popup/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Popup/Overview/React/index.html b/apps/demos/Demos/Popup/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Popup/Overview/React/index.html +++ b/apps/demos/Demos/Popup/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Popup/Overview/ReactJs/index.html b/apps/demos/Demos/Popup/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Popup/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Popup/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Popup/Overview/Vue/index.html b/apps/demos/Demos/Popup/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Popup/Overview/Vue/index.html +++ b/apps/demos/Demos/Popup/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/index.html b/apps/demos/Demos/Popup/Scrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Popup/Scrolling/React/index.html b/apps/demos/Demos/Popup/Scrolling/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Popup/Scrolling/React/index.html +++ b/apps/demos/Demos/Popup/Scrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Popup/Scrolling/ReactJs/index.html b/apps/demos/Demos/Popup/Scrolling/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Popup/Scrolling/ReactJs/index.html +++ b/apps/demos/Demos/Popup/Scrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Popup/Scrolling/Vue/index.html b/apps/demos/Demos/Popup/Scrolling/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Popup/Scrolling/Vue/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ProgressBar/Overview/React/index.html b/apps/demos/Demos/ProgressBar/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ProgressBar/Overview/React/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ProgressBar/Overview/ReactJs/index.html b/apps/demos/Demos/ProgressBar/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ProgressBar/Overview/ReactJs/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ProgressBar/Overview/Vue/index.html b/apps/demos/Demos/ProgressBar/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Vue/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RadioGroup/Overview/React/index.html b/apps/demos/Demos/RadioGroup/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/RadioGroup/Overview/React/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/RadioGroup/Overview/ReactJs/index.html b/apps/demos/Demos/RadioGroup/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/RadioGroup/Overview/ReactJs/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RadioGroup/Overview/Vue/index.html b/apps/demos/Demos/RadioGroup/Overview/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Vue/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/ReactJs/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html b/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/Calculation/React/index.html b/apps/demos/Demos/RangeSelector/Calculation/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/React/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/Calculation/ReactJs/index.html b/apps/demos/Demos/RangeSelector/Calculation/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html b/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/Calculation/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/ReactJs/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/ReactJs/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/ReactJs/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/ReactJs/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/ReactJs/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/ReactJs/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/ReactJs/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/Filter/React/index.html b/apps/demos/Demos/RangeSelector/Filter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/Filter/React/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/RangeSelector/Filter/ReactJs/index.html b/apps/demos/Demos/RangeSelector/Filter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/Filter/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/Filter/Vue/index.html b/apps/demos/Demos/RangeSelector/Filter/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/Filter/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/ReactJs/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/NumericScale/React/index.html b/apps/demos/Demos/RangeSelector/NumericScale/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/React/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScale/ReactJs/index.html b/apps/demos/Demos/RangeSelector/NumericScale/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html index 798562b68bc3..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/ReactJs/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/ReactJs/index.html index 69766218ddb1..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/ReactJs/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html index ac930aaf0aed..7369a149272c 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Vue/index.html @@ -5,23 +5,13 @@ - - - - - - + + -
+ diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/RangeSlider/Overview/React/index.html b/apps/demos/Demos/RangeSlider/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSlider/Overview/React/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/RangeSlider/Overview/ReactJs/index.html b/apps/demos/Demos/RangeSlider/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/RangeSlider/Overview/ReactJs/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/RangeSlider/Overview/Vue/index.html b/apps/demos/Demos/RangeSlider/Overview/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Vue/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Resizable/Overview/Angular/index.html b/apps/demos/Demos/Resizable/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/index.html +++ b/apps/demos/Demos/Resizable/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Resizable/Overview/React/index.html b/apps/demos/Demos/Resizable/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Resizable/Overview/React/index.html +++ b/apps/demos/Demos/Resizable/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Resizable/Overview/ReactJs/index.html b/apps/demos/Demos/Resizable/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Resizable/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Resizable/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Resizable/Overview/Vue/index.html b/apps/demos/Demos/Resizable/Overview/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Resizable/Overview/Vue/index.html +++ b/apps/demos/Demos/Resizable/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ResponsiveBox/Overview/React/index.html b/apps/demos/Demos/ResponsiveBox/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/React/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/ReactJs/index.html b/apps/demos/Demos/ResponsiveBox/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Adaptability/React/index.html b/apps/demos/Demos/Scheduler/Adaptability/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/React/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Adaptability/ReactJs/index.html b/apps/demos/Demos/Scheduler/Adaptability/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html b/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Agenda/React/index.html b/apps/demos/Demos/Scheduler/Agenda/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/Agenda/React/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/Agenda/ReactJs/index.html b/apps/demos/Demos/Scheduler/Agenda/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/Agenda/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Agenda/Vue/index.html b/apps/demos/Demos/Scheduler/Agenda/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/ReactJs/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/ReactJs/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/BasicViews/React/index.html b/apps/demos/Demos/Scheduler/BasicViews/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/React/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/BasicViews/ReactJs/index.html b/apps/demos/Demos/Scheduler/BasicViews/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html b/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/CellTemplates/React/index.html b/apps/demos/Demos/Scheduler/CellTemplates/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/React/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/CellTemplates/ReactJs/index.html b/apps/demos/Demos/Scheduler/CellTemplates/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html index a2bccf53dec3..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Vue/index.html @@ -6,28 +6,12 @@ - - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/ContextMenu/React/index.html b/apps/demos/Demos/Scheduler/ContextMenu/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/React/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/ContextMenu/ReactJs/index.html b/apps/demos/Demos/Scheduler/ContextMenu/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html b/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenu/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html index ee451f8288ff..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/React/index.html @@ -6,19 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/ReactJs/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/ReactJs/index.html index db31b0fd60c6..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/ReactJs/index.html @@ -2,43 +2,15 @@ DevExtreme Demo - - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html b/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/ReactJs/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html b/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/ReactJs/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html b/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/index.html b/apps/demos/Demos/Scheduler/Editing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Editing/React/index.html b/apps/demos/Demos/Scheduler/Editing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Editing/React/index.html +++ b/apps/demos/Demos/Scheduler/Editing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Editing/ReactJs/index.html b/apps/demos/Demos/Scheduler/Editing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Editing/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Editing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Editing/Vue/index.html b/apps/demos/Demos/Scheduler/Editing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/Editing/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/ReactJs/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/GroupByDate/React/index.html b/apps/demos/Demos/Scheduler/GroupByDate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/React/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupByDate/ReactJs/index.html b/apps/demos/Demos/Scheduler/GroupByDate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html index b2c47289dd9b..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Vue/index.html @@ -1,5 +1,4 @@ - DevExtreme Demo @@ -7,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/ReactJs/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html b/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/HiddenDays/React/index.html b/apps/demos/Demos/Scheduler/HiddenDays/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/React/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/HiddenDays/ReactJs/index.html b/apps/demos/Demos/Scheduler/HiddenDays/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html b/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html +++ b/apps/demos/Demos/Scheduler/HiddenDays/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/ReactJs/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/index.html b/apps/demos/Demos/Scheduler/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Overview/React/index.html b/apps/demos/Demos/Scheduler/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Overview/React/index.html +++ b/apps/demos/Demos/Scheduler/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Overview/ReactJs/index.html b/apps/demos/Demos/Scheduler/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Overview/Vue/index.html b/apps/demos/Demos/Scheduler/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/Overview/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/ReactJs/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/ReactJs/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/index.html b/apps/demos/Demos/Scheduler/Resources/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Resources/React/index.html b/apps/demos/Demos/Scheduler/Resources/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Resources/React/index.html +++ b/apps/demos/Demos/Scheduler/Resources/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Resources/ReactJs/index.html b/apps/demos/Demos/Scheduler/Resources/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Resources/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Resources/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Resources/Vue/index.html b/apps/demos/Demos/Scheduler/Resources/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/Resources/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html index 4760eceffb1a..950ccb18e117 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html @@ -1,5 +1,5 @@ - + DevExtreme Demo @@ -7,21 +7,12 @@ - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/SignalRService/React/index.html b/apps/demos/Demos/Scheduler/SignalRService/React/index.html index 4326ca1f221a..952e0ab92fee 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/React/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/SignalRService/ReactJs/index.html b/apps/demos/Demos/Scheduler/SignalRService/ReactJs/index.html index 4828e70dfadb..952e0ab92fee 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/ReactJs/index.html @@ -2,44 +2,17 @@ DevExtreme Demo - - - - + + + + - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html b/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html index 8e6fa13598d8..0f837a96a5e6 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Vue/index.html @@ -6,24 +6,13 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/SimpleArray/React/index.html b/apps/demos/Demos/Scheduler/SimpleArray/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/React/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/SimpleArray/ReactJs/index.html b/apps/demos/Demos/Scheduler/SimpleArray/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/index.html b/apps/demos/Demos/Scheduler/Templates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Templates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Templates/React/index.html b/apps/demos/Demos/Scheduler/Templates/React/index.html index b6ca3fc60364..e3cb17f9591c 100644 --- a/apps/demos/Demos/Scheduler/Templates/React/index.html +++ b/apps/demos/Demos/Scheduler/Templates/React/index.html @@ -6,19 +6,13 @@ - - - - - + -

DXCinema Show Times

+ diff --git a/apps/demos/Demos/Scheduler/Templates/ReactJs/index.html b/apps/demos/Demos/Scheduler/Templates/ReactJs/index.html index c767f7b4dac7..e3cb17f9591c 100644 --- a/apps/demos/Demos/Scheduler/Templates/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Templates/ReactJs/index.html @@ -2,43 +2,17 @@ DevExtreme Demo - - - - - - - - - + + + + + -

DXCinema Show Times

+ diff --git a/apps/demos/Demos/Scheduler/Templates/Vue/index.html b/apps/demos/Demos/Scheduler/Templates/Vue/index.html index 0631e671f9d9..81bf74454a07 100644 --- a/apps/demos/Demos/Scheduler/Templates/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Templates/Vue/index.html @@ -5,26 +5,15 @@ - - - - - - - + + -

DXCinema Show Times

+ diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/ReactJs/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Timelines/React/index.html b/apps/demos/Demos/Scheduler/Timelines/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Timelines/React/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Timelines/ReactJs/index.html b/apps/demos/Demos/Scheduler/Timelines/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/Timelines/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Timelines/Vue/index.html b/apps/demos/Demos/Scheduler/Timelines/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/Toolbar/React/index.html b/apps/demos/Demos/Scheduler/Toolbar/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/React/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/Toolbar/ReactJs/index.html b/apps/demos/Demos/Scheduler/Toolbar/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html b/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html +++ b/apps/demos/Demos/Scheduler/Toolbar/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html index cf8b8c36d3a3..46a2868ee988 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/index.html index 2bc0e9f78ec1..46a2868ee988 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html index 349d2ae87bc1..ce90d3d1ebce 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/WebAPIService/React/index.html b/apps/demos/Demos/Scheduler/WebAPIService/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/React/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/WebAPIService/ReactJs/index.html b/apps/demos/Demos/Scheduler/WebAPIService/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Scheduler/WorkShifts/React/index.html b/apps/demos/Demos/Scheduler/WorkShifts/React/index.html index 20744f49da9b..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/React/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/React/index.html @@ -6,18 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Scheduler/WorkShifts/ReactJs/index.html b/apps/demos/Demos/Scheduler/WorkShifts/ReactJs/index.html index 8d812d7c36a1..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/ReactJs/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/ReactJs/index.html @@ -2,42 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html index fa645c45918f..7b47950bbaff 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Vue/index.html @@ -5,24 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/index.html b/apps/demos/Demos/ScrollView/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/ScrollView/Overview/React/index.html b/apps/demos/Demos/ScrollView/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/ScrollView/Overview/React/index.html +++ b/apps/demos/Demos/ScrollView/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/ScrollView/Overview/ReactJs/index.html b/apps/demos/Demos/ScrollView/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/ScrollView/Overview/ReactJs/index.html +++ b/apps/demos/Demos/ScrollView/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/ScrollView/Overview/Vue/index.html b/apps/demos/Demos/ScrollView/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/ScrollView/Overview/Vue/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/ReactJs/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/ReactJs/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/SelectBox/Grouping/React/index.html b/apps/demos/Demos/SelectBox/Grouping/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/SelectBox/Grouping/React/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/Grouping/ReactJs/index.html b/apps/demos/Demos/SelectBox/Grouping/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/SelectBox/Grouping/ReactJs/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/SelectBox/Grouping/Vue/index.html b/apps/demos/Demos/SelectBox/Grouping/Vue/index.html index 478867f60deb..90f32feafe4e 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Vue/index.html +++ b/apps/demos/Demos/SelectBox/Grouping/Vue/index.html @@ -7,23 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/index.html b/apps/demos/Demos/SelectBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/SelectBox/Overview/React/index.html b/apps/demos/Demos/SelectBox/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/SelectBox/Overview/React/index.html +++ b/apps/demos/Demos/SelectBox/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/Overview/ReactJs/index.html b/apps/demos/Demos/SelectBox/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/SelectBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/SelectBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/SelectBox/Overview/Vue/index.html b/apps/demos/Demos/SelectBox/Overview/Vue/index.html index 8b0eb3ef5402..7369a149272c 100644 --- a/apps/demos/Demos/SelectBox/Overview/Vue/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Vue/index.html @@ -6,27 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/ReactJs/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/ReactJs/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html index 478867f60deb..90f32feafe4e 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Vue/index.html @@ -7,23 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Slider/Overview/Angular/index.html b/apps/demos/Demos/Slider/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/index.html +++ b/apps/demos/Demos/Slider/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Slider/Overview/React/index.html b/apps/demos/Demos/Slider/Overview/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Slider/Overview/React/index.html +++ b/apps/demos/Demos/Slider/Overview/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Slider/Overview/ReactJs/index.html b/apps/demos/Demos/Slider/Overview/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Slider/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Slider/Overview/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Slider/Overview/Vue/index.html b/apps/demos/Demos/Slider/Overview/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Slider/Overview/Vue/index.html +++ b/apps/demos/Demos/Slider/Overview/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Sortable/Customization/Angular/index.html b/apps/demos/Demos/Sortable/Customization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/index.html +++ b/apps/demos/Demos/Sortable/Customization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Sortable/Customization/React/index.html b/apps/demos/Demos/Sortable/Customization/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Sortable/Customization/React/index.html +++ b/apps/demos/Demos/Sortable/Customization/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Sortable/Customization/ReactJs/index.html b/apps/demos/Demos/Sortable/Customization/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/Sortable/Customization/ReactJs/index.html +++ b/apps/demos/Demos/Sortable/Customization/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/Sortable/Customization/Vue/index.html b/apps/demos/Demos/Sortable/Customization/Vue/index.html index 38174efd81d4..90f32feafe4e 100644 --- a/apps/demos/Demos/Sortable/Customization/Vue/index.html +++ b/apps/demos/Demos/Sortable/Customization/Vue/index.html @@ -7,22 +7,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/index.html b/apps/demos/Demos/Sortable/Kanban/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Sortable/Kanban/React/index.html b/apps/demos/Demos/Sortable/Kanban/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Sortable/Kanban/React/index.html +++ b/apps/demos/Demos/Sortable/Kanban/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Sortable/Kanban/ReactJs/index.html b/apps/demos/Demos/Sortable/Kanban/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Sortable/Kanban/ReactJs/index.html +++ b/apps/demos/Demos/Sortable/Kanban/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Sortable/Kanban/Vue/index.html b/apps/demos/Demos/Sortable/Kanban/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Sortable/Kanban/Vue/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Angular/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/SpeechToText/Overview/React/index.html b/apps/demos/Demos/SpeechToText/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/SpeechToText/Overview/React/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/SpeechToText/Overview/ReactJs/index.html b/apps/demos/Demos/SpeechToText/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/SpeechToText/Overview/ReactJs/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/SpeechToText/Overview/Vue/index.html b/apps/demos/Demos/SpeechToText/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Vue/index.html +++ b/apps/demos/Demos/SpeechToText/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Splitter/Overview/Angular/index.html b/apps/demos/Demos/Splitter/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/index.html +++ b/apps/demos/Demos/Splitter/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Splitter/Overview/React/index.html b/apps/demos/Demos/Splitter/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Splitter/Overview/React/index.html +++ b/apps/demos/Demos/Splitter/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Splitter/Overview/ReactJs/index.html b/apps/demos/Demos/Splitter/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Splitter/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Splitter/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Splitter/Overview/Vue/index.html b/apps/demos/Demos/Splitter/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Splitter/Overview/Vue/index.html +++ b/apps/demos/Demos/Splitter/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/Stepper/FormIntegration/React/index.html b/apps/demos/Demos/Stepper/FormIntegration/React/index.html index 25b49930e8b3..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/React/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/React/index.html @@ -5,20 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Stepper/FormIntegration/ReactJs/index.html b/apps/demos/Demos/Stepper/FormIntegration/ReactJs/index.html index c3b415e1423d..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/ReactJs/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html b/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html index fa645c45918f..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html +++ b/apps/demos/Demos/Stepper/FormIntegration/Vue/index.html @@ -5,24 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/Stepper/Overview/Angular/index.html b/apps/demos/Demos/Stepper/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/Overview/Angular/index.html +++ b/apps/demos/Demos/Stepper/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Stepper/Overview/React/index.html b/apps/demos/Demos/Stepper/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/Overview/React/index.html +++ b/apps/demos/Demos/Stepper/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Stepper/Overview/ReactJs/index.html b/apps/demos/Demos/Stepper/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Stepper/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Stepper/Overview/Vue/index.html b/apps/demos/Demos/Stepper/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Stepper/Overview/Vue/index.html +++ b/apps/demos/Demos/Stepper/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Stepper/StepTemplate/React/index.html b/apps/demos/Demos/Stepper/StepTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/React/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Stepper/StepTemplate/ReactJs/index.html b/apps/demos/Demos/Stepper/StepTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/ReactJs/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html b/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html +++ b/apps/demos/Demos/Stepper/StepTemplate/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Switch/Overview/Angular/index.html b/apps/demos/Demos/Switch/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/index.html +++ b/apps/demos/Demos/Switch/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Switch/Overview/React/index.html b/apps/demos/Demos/Switch/Overview/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/Switch/Overview/React/index.html +++ b/apps/demos/Demos/Switch/Overview/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Switch/Overview/ReactJs/index.html b/apps/demos/Demos/Switch/Overview/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/Switch/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Switch/Overview/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/Switch/Overview/Vue/index.html b/apps/demos/Demos/Switch/Overview/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/Switch/Overview/Vue/index.html +++ b/apps/demos/Demos/Switch/Overview/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/ReactJs/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/ReactJs/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html b/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/index.html b/apps/demos/Demos/TabPanel/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TabPanel/Overview/React/index.html b/apps/demos/Demos/TabPanel/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/Overview/React/index.html +++ b/apps/demos/Demos/TabPanel/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TabPanel/Overview/ReactJs/index.html b/apps/demos/Demos/TabPanel/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/Overview/ReactJs/index.html +++ b/apps/demos/Demos/TabPanel/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TabPanel/Overview/Vue/index.html b/apps/demos/Demos/TabPanel/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TabPanel/Overview/Vue/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/index.html b/apps/demos/Demos/TabPanel/Templates/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TabPanel/Templates/React/index.html b/apps/demos/Demos/TabPanel/Templates/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/Templates/React/index.html +++ b/apps/demos/Demos/TabPanel/Templates/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TabPanel/Templates/ReactJs/index.html b/apps/demos/Demos/TabPanel/Templates/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TabPanel/Templates/ReactJs/index.html +++ b/apps/demos/Demos/TabPanel/Templates/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TabPanel/Templates/Vue/index.html b/apps/demos/Demos/TabPanel/Templates/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TabPanel/Templates/Vue/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Tabs/Overview/Angular/index.html b/apps/demos/Demos/Tabs/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/index.html +++ b/apps/demos/Demos/Tabs/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Tabs/Overview/React/index.html b/apps/demos/Demos/Tabs/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Tabs/Overview/React/index.html +++ b/apps/demos/Demos/Tabs/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Tabs/Overview/ReactJs/index.html b/apps/demos/Demos/Tabs/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Tabs/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Tabs/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Tabs/Overview/Vue/index.html b/apps/demos/Demos/Tabs/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Tabs/Overview/Vue/index.html +++ b/apps/demos/Demos/Tabs/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Tabs/Selection/Angular/index.html b/apps/demos/Demos/Tabs/Selection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/index.html +++ b/apps/demos/Demos/Tabs/Selection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Tabs/Selection/React/index.html b/apps/demos/Demos/Tabs/Selection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Tabs/Selection/React/index.html +++ b/apps/demos/Demos/Tabs/Selection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Tabs/Selection/ReactJs/index.html b/apps/demos/Demos/Tabs/Selection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Tabs/Selection/ReactJs/index.html +++ b/apps/demos/Demos/Tabs/Selection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Tabs/Selection/Vue/index.html b/apps/demos/Demos/Tabs/Selection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Tabs/Selection/Vue/index.html +++ b/apps/demos/Demos/Tabs/Selection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/Grouping/Angular/index.html b/apps/demos/Demos/TagBox/Grouping/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/Grouping/Angular/index.html +++ b/apps/demos/Demos/TagBox/Grouping/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TagBox/Grouping/React/index.html b/apps/demos/Demos/TagBox/Grouping/React/index.html index 0a0215396830..49ffa5dcc27f 100644 --- a/apps/demos/Demos/TagBox/Grouping/React/index.html +++ b/apps/demos/Demos/TagBox/Grouping/React/index.html @@ -7,19 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/Grouping/ReactJs/index.html b/apps/demos/Demos/TagBox/Grouping/ReactJs/index.html index cefc207216e7..49ffa5dcc27f 100644 --- a/apps/demos/Demos/TagBox/Grouping/ReactJs/index.html +++ b/apps/demos/Demos/TagBox/Grouping/ReactJs/index.html @@ -2,48 +2,17 @@ DevExtreme Demo - - - - - - - - - - - + + + + + + -
+ diff --git a/apps/demos/Demos/TagBox/Grouping/Vue/index.html b/apps/demos/Demos/TagBox/Grouping/Vue/index.html index 478867f60deb..90f32feafe4e 100644 --- a/apps/demos/Demos/TagBox/Grouping/Vue/index.html +++ b/apps/demos/Demos/TagBox/Grouping/Vue/index.html @@ -7,23 +7,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/Overview/Angular/index.html b/apps/demos/Demos/TagBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TagBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TagBox/Overview/React/index.html b/apps/demos/Demos/TagBox/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TagBox/Overview/React/index.html +++ b/apps/demos/Demos/TagBox/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/Overview/ReactJs/index.html b/apps/demos/Demos/TagBox/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TagBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/TagBox/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TagBox/Overview/Vue/index.html b/apps/demos/Demos/TagBox/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/TagBox/Overview/Vue/index.html +++ b/apps/demos/Demos/TagBox/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/ReactJs/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/ReactJs/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TextArea/Overview/Angular/index.html b/apps/demos/Demos/TextArea/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/index.html +++ b/apps/demos/Demos/TextArea/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TextArea/Overview/React/index.html b/apps/demos/Demos/TextArea/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TextArea/Overview/React/index.html +++ b/apps/demos/Demos/TextArea/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TextArea/Overview/ReactJs/index.html b/apps/demos/Demos/TextArea/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TextArea/Overview/ReactJs/index.html +++ b/apps/demos/Demos/TextArea/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TextArea/Overview/Vue/index.html b/apps/demos/Demos/TextArea/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/TextArea/Overview/Vue/index.html +++ b/apps/demos/Demos/TextArea/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TextBox/Overview/Angular/index.html b/apps/demos/Demos/TextBox/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TextBox/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TextBox/Overview/React/index.html b/apps/demos/Demos/TextBox/Overview/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/TextBox/Overview/React/index.html +++ b/apps/demos/Demos/TextBox/Overview/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TextBox/Overview/ReactJs/index.html b/apps/demos/Demos/TextBox/Overview/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/TextBox/Overview/ReactJs/index.html +++ b/apps/demos/Demos/TextBox/Overview/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/TextBox/Overview/Vue/index.html b/apps/demos/Demos/TextBox/Overview/Vue/index.html index f801653ebfc5..fb771a33adc4 100644 --- a/apps/demos/Demos/TextBox/Overview/Vue/index.html +++ b/apps/demos/Demos/TextBox/Overview/Vue/index.html @@ -6,23 +6,11 @@ - - - - - - -
+ diff --git a/apps/demos/Demos/TileView/Basics/Angular/index.html b/apps/demos/Demos/TileView/Basics/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/index.html +++ b/apps/demos/Demos/TileView/Basics/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TileView/Basics/React/index.html b/apps/demos/Demos/TileView/Basics/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/Basics/React/index.html +++ b/apps/demos/Demos/TileView/Basics/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TileView/Basics/ReactJs/index.html b/apps/demos/Demos/TileView/Basics/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/Basics/ReactJs/index.html +++ b/apps/demos/Demos/TileView/Basics/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TileView/Basics/Vue/index.html b/apps/demos/Demos/TileView/Basics/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TileView/Basics/Vue/index.html +++ b/apps/demos/Demos/TileView/Basics/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TileView/Directions/Angular/index.html b/apps/demos/Demos/TileView/Directions/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/index.html +++ b/apps/demos/Demos/TileView/Directions/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TileView/Directions/React/index.html b/apps/demos/Demos/TileView/Directions/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/Directions/React/index.html +++ b/apps/demos/Demos/TileView/Directions/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TileView/Directions/ReactJs/index.html b/apps/demos/Demos/TileView/Directions/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/Directions/ReactJs/index.html +++ b/apps/demos/Demos/TileView/Directions/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TileView/Directions/Vue/index.html b/apps/demos/Demos/TileView/Directions/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TileView/Directions/Vue/index.html +++ b/apps/demos/Demos/TileView/Directions/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TileView/ItemTemplate/React/index.html b/apps/demos/Demos/TileView/ItemTemplate/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/React/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TileView/ItemTemplate/ReactJs/index.html b/apps/demos/Demos/TileView/ItemTemplate/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/ReactJs/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html b/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Toast/Overview/Angular/index.html b/apps/demos/Demos/Toast/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/index.html +++ b/apps/demos/Demos/Toast/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Toast/Overview/React/index.html b/apps/demos/Demos/Toast/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Toast/Overview/React/index.html +++ b/apps/demos/Demos/Toast/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Toast/Overview/ReactJs/index.html b/apps/demos/Demos/Toast/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Toast/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Toast/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Toast/Overview/Vue/index.html b/apps/demos/Demos/Toast/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Toast/Overview/Vue/index.html +++ b/apps/demos/Demos/Toast/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Toast/Stack/Angular/index.html b/apps/demos/Demos/Toast/Stack/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/index.html +++ b/apps/demos/Demos/Toast/Stack/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Toast/Stack/React/index.html b/apps/demos/Demos/Toast/Stack/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Toast/Stack/React/index.html +++ b/apps/demos/Demos/Toast/Stack/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Toast/Stack/ReactJs/index.html b/apps/demos/Demos/Toast/Stack/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Toast/Stack/ReactJs/index.html +++ b/apps/demos/Demos/Toast/Stack/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Toast/Stack/Vue/index.html b/apps/demos/Demos/Toast/Stack/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Toast/Stack/Vue/index.html +++ b/apps/demos/Demos/Toast/Stack/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Toolbar/Adaptability/React/index.html b/apps/demos/Demos/Toolbar/Adaptability/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/React/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Toolbar/Adaptability/ReactJs/index.html b/apps/demos/Demos/Toolbar/Adaptability/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/ReactJs/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html b/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/index.html b/apps/demos/Demos/Toolbar/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Toolbar/Overview/React/index.html b/apps/demos/Demos/Toolbar/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Toolbar/Overview/React/index.html +++ b/apps/demos/Demos/Toolbar/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Toolbar/Overview/ReactJs/index.html b/apps/demos/Demos/Toolbar/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Toolbar/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Toolbar/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Toolbar/Overview/Vue/index.html b/apps/demos/Demos/Toolbar/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Toolbar/Overview/Vue/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/index.html b/apps/demos/Demos/Tooltip/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Tooltip/Overview/React/index.html b/apps/demos/Demos/Tooltip/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Tooltip/Overview/React/index.html +++ b/apps/demos/Demos/Tooltip/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Tooltip/Overview/ReactJs/index.html b/apps/demos/Demos/Tooltip/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Tooltip/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Tooltip/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Tooltip/Overview/Vue/index.html b/apps/demos/Demos/Tooltip/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/Tooltip/Overview/Vue/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html index d6cce972f42b..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - - + -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/AIColumns/React/index.html b/apps/demos/Demos/TreeList/AIColumns/React/index.html index f075e31b7c1b..393ce82bc4f4 100644 --- a/apps/demos/Demos/TreeList/AIColumns/React/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/React/index.html @@ -6,21 +6,14 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/AIColumns/ReactJs/index.html b/apps/demos/Demos/TreeList/AIColumns/ReactJs/index.html index 2ab8d46d2fb6..393ce82bc4f4 100644 --- a/apps/demos/Demos/TreeList/AIColumns/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/ReactJs/index.html @@ -2,45 +2,18 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/AIColumns/Vue/index.html b/apps/demos/Demos/TreeList/AIColumns/Vue/index.html index fa645c45918f..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Vue/index.html +++ b/apps/demos/Demos/TreeList/AIColumns/Vue/index.html @@ -5,24 +5,13 @@ - - - - - - - + + -
+ diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/Adaptability/React/index.html b/apps/demos/Demos/TreeList/Adaptability/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Adaptability/React/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Adaptability/ReactJs/index.html b/apps/demos/Demos/TreeList/Adaptability/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Adaptability/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/Adaptability/Vue/index.html b/apps/demos/Demos/TreeList/Adaptability/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Vue/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/BatchEditing/React/index.html b/apps/demos/Demos/TreeList/BatchEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/React/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/BatchEditing/ReactJs/index.html b/apps/demos/Demos/TreeList/BatchEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html b/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/CellEditing/React/index.html b/apps/demos/Demos/TreeList/CellEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/CellEditing/React/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/CellEditing/ReactJs/index.html b/apps/demos/Demos/TreeList/CellEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/CellEditing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/CellEditing/Vue/index.html b/apps/demos/Demos/TreeList/CellEditing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/ColumnChooser/React/index.html b/apps/demos/Demos/TreeList/ColumnChooser/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/React/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnChooser/ReactJs/index.html b/apps/demos/Demos/TreeList/ColumnChooser/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/ReactJs/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/ReactJs/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html index 53778bd14ad3..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FilterModes/React/index.html b/apps/demos/Demos/TreeList/FilterModes/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterModes/React/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterModes/ReactJs/index.html b/apps/demos/Demos/TreeList/FilterModes/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterModes/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FilterModes/Vue/index.html b/apps/demos/Demos/TreeList/FilterModes/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html index 828a96270572..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html @@ -1,27 +1,17 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FilterPanel/React/index.html b/apps/demos/Demos/TreeList/FilterPanel/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/React/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterPanel/ReactJs/index.html b/apps/demos/Demos/TreeList/FilterPanel/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html b/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FilterRow/React/index.html b/apps/demos/Demos/TreeList/FilterRow/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterRow/React/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FilterRow/ReactJs/index.html b/apps/demos/Demos/TreeList/FilterRow/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FilterRow/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FilterRow/Vue/index.html b/apps/demos/Demos/TreeList/FilterRow/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Vue/index.html +++ b/apps/demos/Demos/TreeList/FilterRow/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/ReactJs/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FocusedRow/React/index.html b/apps/demos/Demos/TreeList/FocusedRow/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/React/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FocusedRow/ReactJs/index.html b/apps/demos/Demos/TreeList/FocusedRow/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html b/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html index 82c61b599a52..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/FormEditing/React/index.html b/apps/demos/Demos/TreeList/FormEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FormEditing/React/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/FormEditing/ReactJs/index.html b/apps/demos/Demos/TreeList/FormEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/FormEditing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/FormEditing/Vue/index.html b/apps/demos/Demos/TreeList/FormEditing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html index 1d1836bc5d7d..580d70095891 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/React/index.html @@ -6,19 +6,12 @@ - - - - - -

Click this text and press Tab

+ diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/ReactJs/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/ReactJs/index.html index 017d24dfeb49..580d70095891 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/ReactJs/index.html @@ -2,39 +2,16 @@ DevExtreme Demo - - - - - - - - - + + + + -

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 95299a9f7638..580d70095891 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Vue/index.html @@ -6,23 +6,12 @@ - - - - - -

Click this text and press Tab

+ diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/ReactJs/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/LocalReordering/React/index.html b/apps/demos/Demos/TreeList/LocalReordering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/React/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/LocalReordering/ReactJs/index.html b/apps/demos/Demos/TreeList/LocalReordering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html b/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/ReactJs/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/MultipleSorting/React/index.html b/apps/demos/Demos/TreeList/MultipleSorting/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/React/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleSorting/ReactJs/index.html b/apps/demos/Demos/TreeList/MultipleSorting/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Overview/Angular/index.html b/apps/demos/Demos/TreeList/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/index.html +++ b/apps/demos/Demos/TreeList/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/Overview/React/index.html b/apps/demos/Demos/TreeList/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Overview/React/index.html +++ b/apps/demos/Demos/TreeList/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Overview/ReactJs/index.html b/apps/demos/Demos/TreeList/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Overview/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/Overview/Vue/index.html b/apps/demos/Demos/TreeList/Overview/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/Overview/Vue/index.html +++ b/apps/demos/Demos/TreeList/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Paging/Angular/index.html b/apps/demos/Demos/TreeList/Paging/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/index.html +++ b/apps/demos/Demos/TreeList/Paging/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/Paging/React/index.html b/apps/demos/Demos/TreeList/Paging/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/TreeList/Paging/React/index.html +++ b/apps/demos/Demos/TreeList/Paging/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TreeList/Paging/ReactJs/index.html b/apps/demos/Demos/TreeList/Paging/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/TreeList/Paging/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/Paging/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/TreeList/Paging/Vue/index.html b/apps/demos/Demos/TreeList/Paging/Vue/index.html index c90687f1390f..fb771a33adc4 100644 --- a/apps/demos/Demos/TreeList/Paging/Vue/index.html +++ b/apps/demos/Demos/TreeList/Paging/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/PopupEditing/React/index.html b/apps/demos/Demos/TreeList/PopupEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/React/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/PopupEditing/ReactJs/index.html b/apps/demos/Demos/TreeList/PopupEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html b/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/index.html b/apps/demos/Demos/TreeList/Reordering/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/Reordering/React/index.html b/apps/demos/Demos/TreeList/Reordering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Reordering/React/index.html +++ b/apps/demos/Demos/TreeList/Reordering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Reordering/ReactJs/index.html b/apps/demos/Demos/TreeList/Reordering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Reordering/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/Reordering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/Reordering/Vue/index.html b/apps/demos/Demos/TreeList/Reordering/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/Reordering/Vue/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/index.html b/apps/demos/Demos/TreeList/Resizing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/Resizing/React/index.html b/apps/demos/Demos/TreeList/Resizing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Resizing/React/index.html +++ b/apps/demos/Demos/TreeList/Resizing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/Resizing/ReactJs/index.html b/apps/demos/Demos/TreeList/Resizing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/Resizing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/Resizing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/Resizing/Vue/index.html b/apps/demos/Demos/TreeList/Resizing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/Resizing/Vue/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/RowEditing/React/index.html b/apps/demos/Demos/TreeList/RowEditing/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/RowEditing/React/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/RowEditing/ReactJs/index.html b/apps/demos/Demos/TreeList/RowEditing/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/RowEditing/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/RowEditing/Vue/index.html b/apps/demos/Demos/TreeList/RowEditing/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Vue/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/SearchPanel/React/index.html b/apps/demos/Demos/TreeList/SearchPanel/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/React/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SearchPanel/ReactJs/index.html b/apps/demos/Demos/TreeList/SearchPanel/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html b/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html +++ b/apps/demos/Demos/TreeList/SearchPanel/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/ReactJs/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/ReactJs/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/ReactJs/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/StatePersistence/React/index.html b/apps/demos/Demos/TreeList/StatePersistence/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/React/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/StatePersistence/ReactJs/index.html b/apps/demos/Demos/TreeList/StatePersistence/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html b/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeList/WebAPIService/React/index.html b/apps/demos/Demos/TreeList/WebAPIService/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/React/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeList/WebAPIService/ReactJs/index.html b/apps/demos/Demos/TreeList/WebAPIService/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/ReactJs/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html b/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/ReactJs/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/ReactJs/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/ReactJs/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/ReactJs/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/ReactJs/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/ReactJs/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html index c90687f1390f..7369a149272c 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/ReactJs/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html index 8ef744ca51f3..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/ReactJs/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html index 8ef744ca51f3..e97e1d43d2f6 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/TreeView/VirtualMode/React/index.html b/apps/demos/Demos/TreeView/VirtualMode/React/index.html index cfb9b3aa6769..1da2da79d709 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/React/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/React/index.html @@ -6,18 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/TreeView/VirtualMode/ReactJs/index.html b/apps/demos/Demos/TreeView/VirtualMode/ReactJs/index.html index d6d83f735a76..1da2da79d709 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/ReactJs/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/ReactJs/index.html @@ -2,38 +2,15 @@ DevExtreme Demo - - - - - - - - - + + + + -
+ diff --git a/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html b/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html index 8ef744ca51f3..fb4cf0d3a3e5 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Vue/index.html @@ -6,22 +6,11 @@ - - - - - -
+ diff --git a/apps/demos/Demos/Validation/Overview/Angular/index.html b/apps/demos/Demos/Validation/Overview/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/index.html +++ b/apps/demos/Demos/Validation/Overview/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/Validation/Overview/React/index.html b/apps/demos/Demos/Validation/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/Validation/Overview/React/index.html +++ b/apps/demos/Demos/Validation/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/Validation/Overview/ReactJs/index.html b/apps/demos/Demos/Validation/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/Validation/Overview/ReactJs/index.html +++ b/apps/demos/Demos/Validation/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/Validation/Overview/Vue/index.html b/apps/demos/Demos/Validation/Overview/Vue/index.html index f801653ebfc5..7369a149272c 100644 --- a/apps/demos/Demos/Validation/Overview/Vue/index.html +++ b/apps/demos/Demos/Validation/Overview/Vue/index.html @@ -6,23 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/ReactJs/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/ReactJs/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/ReactJs/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/CustomMapData/React/index.html b/apps/demos/Demos/VectorMap/CustomMapData/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomMapData/ReactJs/index.html b/apps/demos/Demos/VectorMap/CustomMapData/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomProjection/ReactJs/index.html b/apps/demos/Demos/VectorMap/CustomProjection/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/ReactJs/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html index 1ab1fb54a1df..7dd155b53981 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html @@ -1,26 +1,17 @@ - + DevExtreme Demo - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/FloorPlan/React/index.html b/apps/demos/Demos/VectorMap/FloorPlan/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/React/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/FloorPlan/ReactJs/index.html b/apps/demos/Demos/VectorMap/FloorPlan/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/ReactJs/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Legend/Angular/index.html b/apps/demos/Demos/VectorMap/Legend/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Legend/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Legend/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/Legend/React/index.html b/apps/demos/Demos/VectorMap/Legend/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Legend/React/index.html +++ b/apps/demos/Demos/VectorMap/Legend/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Legend/ReactJs/index.html b/apps/demos/Demos/VectorMap/Legend/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Legend/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/Legend/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/Legend/Vue/index.html b/apps/demos/Demos/VectorMap/Legend/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Legend/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Legend/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/ReactJs/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/index.html b/apps/demos/Demos/VectorMap/Overview/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/Overview/React/index.html b/apps/demos/Demos/VectorMap/Overview/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Overview/React/index.html +++ b/apps/demos/Demos/VectorMap/Overview/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Overview/ReactJs/index.html b/apps/demos/Demos/VectorMap/Overview/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Overview/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/Overview/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/Overview/Vue/index.html b/apps/demos/Demos/VectorMap/Overview/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Overview/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/index.html b/apps/demos/Demos/VectorMap/Palette/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/Palette/React/index.html b/apps/demos/Demos/VectorMap/Palette/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Palette/React/index.html +++ b/apps/demos/Demos/VectorMap/Palette/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/Palette/ReactJs/index.html b/apps/demos/Demos/VectorMap/Palette/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Palette/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/Palette/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/Palette/Vue/index.html b/apps/demos/Demos/VectorMap/Palette/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/Palette/Vue/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/PieMarkers/ReactJs/index.html b/apps/demos/Demos/VectorMap/PieMarkers/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/ReactJs/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html b/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html index ee4f94c91d04..6c25556bab9b 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html @@ -1,28 +1,18 @@ - + DevExtreme Demo - - - - - - - - - -
Loading...
+ + diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html index ee451f8288ff..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html @@ -6,19 +6,12 @@ - - - - - - + -
+ diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/ReactJs/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/ReactJs/index.html index db31b0fd60c6..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/ReactJs/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/ReactJs/index.html @@ -2,43 +2,16 @@ DevExtreme Demo - - - - - - - - - - + + + + + -
+ diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html index 97825c599aa0..7b47950bbaff 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Vue/index.html @@ -6,22 +6,12 @@ - - - - - + -
+ diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 548391b0af02..00506cbb83f4 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -8,6 +8,7 @@ const path = require('path'); const fs = require('fs'); const os = require('os'); const esbuild = require('esbuild'); +const { extractDemoHeadExtras, extractDemoBodyInner } = require('./demo-html'); const DEMOS_APP_ROOT = path.resolve(__dirname, '..', '..'); const REPO_ROOT = path.resolve(DEMOS_APP_ROOT, '..', '..'); @@ -103,11 +104,19 @@ function writeDemoTsconfig(entryPath) { return writeTsconfig(path.relative(REPO_ROOT, entryPath), [entryPath]); } -function buildHtml({ jsFiles, cssFiles }) { +// 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... +
`; + +function buildHtml({ jsFiles, cssFiles, srcDir }) { const cssLinks = [ '', + ...extractDemoHeadExtras(srcDir), ...cssFiles.map((f) => ``), ].join('\n '); + const bodyInner = extractDemoBodyInner(srcDir) || DEFAULT_BODY_INNER; const scripts = jsFiles .map((f) => { const src = f.startsWith('.') ? f : `./${f}`; @@ -125,9 +134,7 @@ function buildHtml({ jsFiles, cssFiles }) { ${cssLinks} -
- Loading... -
+ ${bodyInner} ${scripts} @@ -656,7 +663,7 @@ async function bundleDemo(demo, createCompilerPlugin, destDirOverride) { ]; const cssFiles = outputs.filter((o) => o.endsWith('.css')).map((o) => path.basename(o)); - fs.writeFileSync(path.join(destDir, 'index.html'), buildHtml({ jsFiles, cssFiles })); + fs.writeFileSync(path.join(destDir, 'index.html'), buildHtml({ jsFiles, cssFiles, srcDir: prepared.srcDir })); return { ok: true }; } @@ -694,7 +701,7 @@ async function bundleDemoBatch(batch, createCompilerPlugin) { ANGULAR_ZONE_SCRIPT, ...localJsFiles, ]; - fs.writeFileSync(path.join(destDir, 'index.html'), buildHtml({ jsFiles, cssFiles })); + fs.writeFileSync(path.join(destDir, 'index.html'), buildHtml({ jsFiles, cssFiles, srcDir: demo.srcDir })); } return { ok: true }; diff --git a/apps/demos/utils/server/csp-bundle.js b/apps/demos/utils/server/csp-bundle.js index b821546c72d0..9e2c27af40e2 100644 --- a/apps/demos/utils/server/csp-bundle.js +++ b/apps/demos/utils/server/csp-bundle.js @@ -7,6 +7,7 @@ const path = require('path'); const fs = require('fs'); const os = require('os'); const esbuild = require('esbuild'); +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'; @@ -234,31 +235,16 @@ const DEFAULT_BODY_INNER = `
`; -function extractDemoBodyInner(srcDir) { - try { - const html = fs.readFileSync(path.join(srcDir, 'index.html'), 'utf8'); - const bodyMatch = html.match(/]*>([\s\S]*?)<\/body>/i); - if (!bodyMatch) return null; - let withoutScripts = bodyMatch[1]; - let previous; - do { - previous = withoutScripts; - withoutScripts = withoutScripts.replace(/]*>/gi, ''); - } while (withoutScripts !== previous); - const trimmed = withoutScripts.trim(); - return trimmed || null; - } catch { - return null; - } -} - function buildHtml({ jsFile, cssFiles, srcDir }) { - const cssLinks = [ + // Theme first, then whatever the demo declared (dx-gantt.css, font-awesome, …), + // then the demo's own styles last — the cascade order the dev page had. + const headLinks = [ '', + ...extractDemoHeadExtras(srcDir), ...cssFiles.map((f) => ``), ].join('\n '); - const bodyInner = (srcDir && extractDemoBodyInner(srcDir)) || DEFAULT_BODY_INNER; + const bodyInner = extractDemoBodyInner(srcDir) || DEFAULT_BODY_INNER; return ` @@ -267,7 +253,7 @@ function buildHtml({ jsFile, cssFiles, srcDir }) { - ${cssLinks} + ${headLinks} ${bodyInner} diff --git a/apps/demos/utils/server/demo-html.js b/apps/demos/utils/server/demo-html.js new file mode 100644 index 000000000000..892cc899bef2 --- /dev/null +++ b/apps/demos/utils/server/demo-html.js @@ -0,0 +1,86 @@ +// Carries a demo's own / markup across into the generated index.html. +const path = require('path'); +const fs = require('fs'); + +const TEMPLATE_TAGS = [ + /\/css\/dx\.[^"']+\.css/, + /(?:href|src)=["']\.?\/?bundle\.(?:js|css)["']/i, +]; + +const LOCAL_SRC_RE = /src=["'](?!https?:|\/|\.\.\/)[\w.-]+\.js["']/i; + +const HEAD_TAG_RE = /]*?>|/gi; + +const COMMENT_RE = //g; + +function normalizeTag(tag) { + const collapsed = tag.replace(/\s+/g, ' ').trim(); + if (!/^$/, ' />'); +} + +// A bundled demo has no reason to run code from — its entry point is the bundle. +function warnDroppedInline(tag, context) { + const body = tag.replace(/<\/?script[^>]*>/gi, '').trim(); + if (!body) return; + const where = context ? ` in ${context}` : ''; + console.warn(`demo-html: dropping inline script${where} — move it into the demo's entry point so esbuild bundles it:\n ${body.split('\n')[0].trim()}`); +} + +function extractHeadExtras(html, context) { + const headMatch = html.match(/]*>([\s\S]*?)<\/head>/i); + if (!headMatch) return []; + + // Commented-out tags must not come back to life. + const tags = headMatch[1].replace(COMMENT_RE, '').match(HEAD_TAG_RE) || []; + const extras = []; + const seen = new Set(); + + for (const tag of tags) { + const url = (tag.match(/(?:href|src)=["']([^"']+)["']/i) || [])[1]; + if (!url) { + warnDroppedInline(tag, context); + } else if (!seen.has(url) + && !LOCAL_SRC_RE.test(tag) + && !TEMPLATE_TAGS.some((re) => re.test(tag))) { + seen.add(url); + extras.push(normalizeTag(tag)); + } + } + + return extras; +} + +function extractBodyInner(html) { + const bodyMatch = html.match(/]*>([\s\S]*?)<\/body>/i); + if (!bodyMatch) return null; + let withoutScripts = bodyMatch[1]; + let previous; + do { + previous = withoutScripts; + withoutScripts = withoutScripts.replace(/]*>/gi, ''); + } while (withoutScripts !== previous); + return withoutScripts.trim() || null; +} + +function readDemoHtml(srcDir) { + try { + return fs.readFileSync(path.join(srcDir, 'index.html'), 'utf8'); + } catch { + return null; + } +} + +function extractDemoHeadExtras(srcDir) { + const html = srcDir && readDemoHtml(srcDir); + return html ? extractHeadExtras(html, path.relative(process.cwd(), srcDir)) : []; +} + +function extractDemoBodyInner(srcDir) { + const html = srcDir && readDemoHtml(srcDir); + return html ? extractBodyInner(html) : null; +} + +module.exports = { + extractHeadExtras, extractBodyInner, extractDemoHeadExtras, extractDemoBodyInner, +}; From 3f49784ffa0b10f5ccb5a48c4759d0c758337ede Mon Sep 17 00:00:00 2001 From: Arman Jivanyan Date: Wed, 19 Aug 2026 10:37:39 +0400 Subject: [PATCH 3/8] feature(demos): add vendor bundles for demos (#34760) --- .github/workflows/visual-tests-demos.yml | 117 +++++-- apps/demos/.gitignore | 6 + .../Demos/Accordion/Overview/React/index.html | 1 + .../Demos/Accordion/Overview/Vue/index.html | 1 + .../Demos/ActionSheet/Basics/React/index.html | 1 + .../Demos/ActionSheet/Basics/Vue/index.html | 1 + .../ActionSheet/PopoverMode/React/index.html | 1 + .../ActionSheet/PopoverMode/Vue/index.html | 1 + .../Autocomplete/Overview/React/index.html | 1 + .../Autocomplete/Overview/Vue/index.html | 1 + .../demos/Demos/Box/Overview/React/index.html | 1 + apps/demos/Demos/Box/Overview/Vue/index.html | 1 + .../demos/Demos/Button/Icons/React/index.html | 1 + apps/demos/Demos/Button/Icons/Vue/index.html | 1 + .../Button/PredefinedTypes/React/index.html | 1 + .../Button/PredefinedTypes/Vue/index.html | 1 + .../ButtonGroup/Overview/React/index.html | 1 + .../Demos/ButtonGroup/Overview/Vue/index.html | 1 + .../MultipleSelection/React/index.html | 1 + .../Calendar/MultipleSelection/Vue/index.html | 1 + .../Demos/Calendar/Overview/React/index.html | 1 + .../Demos/Calendar/Overview/Vue/index.html | 1 + .../CardView/CardTemplate/React/index.html | 1 + .../CardView/CardTemplate/Vue/index.html | 1 + .../CardView/ColumnChooser/React/index.html | 1 + .../CardView/ColumnChooser/Vue/index.html | 1 + .../ColumnHeaderFilter/React/index.html | 1 + .../ColumnHeaderFilter/Vue/index.html | 1 + .../ColumnReordering/React/index.html | 1 + .../CardView/ColumnReordering/Vue/index.html | 1 + .../CardView/DataValidation/React/index.html | 1 + .../CardView/DataValidation/Vue/index.html | 1 + .../CardView/FieldTemplate/React/index.html | 1 + .../CardView/FieldTemplate/Vue/index.html | 1 + .../CardView/FilterPanel/React/index.html | 1 + .../Demos/CardView/FilterPanel/Vue/index.html | 1 + .../Demos/CardView/Overview/React/index.html | 1 + .../Demos/CardView/Overview/Vue/index.html | 1 + .../CardView/PopupEditing/React/index.html | 1 + .../CardView/PopupEditing/Vue/index.html | 1 + .../CardView/SearchPanel/React/index.html | 1 + .../Demos/CardView/SearchPanel/Vue/index.html | 1 + .../Demos/CardView/Selection/React/index.html | 1 + .../Demos/CardView/Selection/Vue/index.html | 1 + .../CardView/SimpleArray/React/index.html | 1 + .../Demos/CardView/SimpleArray/Vue/index.html | 1 + .../Demos/CardView/Sorting/React/index.html | 1 + .../Demos/CardView/Sorting/Vue/index.html | 1 + .../CardView/WebAPIService/React/index.html | 1 + .../CardView/WebAPIService/Vue/index.html | 1 + .../Demos/Charts/AjaxRequest/React/index.html | 1 + .../Demos/Charts/AjaxRequest/Vue/index.html | 1 + .../Demos/Charts/Annotation/React/index.html | 1 + .../Demos/Charts/Annotation/Vue/index.html | 1 + apps/demos/Demos/Charts/Area/React/index.html | 1 + apps/demos/Demos/Charts/Area/Vue/index.html | 1 + .../AreaSelectionZooming/React/index.html | 1 + .../AreaSelectionZooming/Vue/index.html | 1 + .../Charts/AreaSparklines/React/index.html | 1 + .../Charts/AreaSparklines/Vue/index.html | 1 + .../AutoCalculatedBarWidth/React/index.html | 1 + .../AutoCalculatedBarWidth/Vue/index.html | 1 + .../AxisCustomPosition/React/index.html | 1 + .../Charts/AxisCustomPosition/Vue/index.html | 1 + .../AxisLabelCustomization/React/index.html | 1 + .../AxisLabelCustomization/Vue/index.html | 1 + .../BarColorCustomization/React/index.html | 1 + .../BarColorCustomization/Vue/index.html | 1 + .../Charts/BarDrillDown/React/index.html | 1 + .../Demos/Charts/BarDrillDown/Vue/index.html | 1 + .../Charts/BarSparklines/React/index.html | 1 + .../Demos/Charts/BarSparklines/Vue/index.html | 1 + .../BiDirectionalBarChart/React/index.html | 1 + .../BiDirectionalBarChart/Vue/index.html | 1 + .../Demos/Charts/Bubble/React/index.html | 1 + apps/demos/Demos/Charts/Bubble/Vue/index.html | 1 + .../Demos/Charts/Candlestick/React/index.html | 1 + .../Demos/Charts/Candlestick/Vue/index.html | 1 + .../CenterLabelCustomization/React/index.html | 1 + .../CenterLabelCustomization/Vue/index.html | 1 + .../ClientSideDataProcessing/React/index.html | 1 + .../ClientSideDataProcessing/Vue/index.html | 1 + .../Charts/Colorization/React/index.html | 1 + .../Demos/Charts/Colorization/Vue/index.html | 1 + .../Charts/ContinuousData/React/index.html | 1 + .../Charts/ContinuousData/Vue/index.html | 1 + .../Demos/Charts/Crosshair/React/index.html | 1 + .../Demos/Charts/Crosshair/Vue/index.html | 1 + .../Charts/CustomAnnotations/React/index.html | 1 + .../Charts/CustomAnnotations/Vue/index.html | 1 + .../Charts/CustomBarWidth/React/index.html | 1 + .../Charts/CustomBarWidth/Vue/index.html | 1 + .../Charts/CustomFillStyles/React/index.html | 1 + .../Charts/CustomFillStyles/Vue/index.html | 1 + .../CustomizePointsAndLabels/React/index.html | 1 + .../CustomizePointsAndLabels/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../Charts/DiscreteData/React/index.html | 1 + .../Demos/Charts/DiscreteData/Vue/index.html | 1 + .../React/index.html | 1 + .../DiscretePointsAggregation/Vue/index.html | 1 + .../Demos/Charts/Doughnut/React/index.html | 1 + .../Demos/Charts/Doughnut/Vue/index.html | 1 + .../Charts/DoughnutSelection/React/index.html | 1 + .../Charts/DoughnutSelection/Vue/index.html | 1 + .../DoughnutWithTopNSeries/React/index.html | 1 + .../DoughnutWithTopNSeries/Vue/index.html | 1 + .../Demos/Charts/DrillDown/React/index.html | 1 + .../Demos/Charts/DrillDown/Vue/index.html | 1 + .../Charts/DynamicSeries/React/index.html | 1 + .../Demos/Charts/DynamicSeries/Vue/index.html | 1 + .../Charts/EqualSizePies/React/index.html | 1 + .../Demos/Charts/EqualSizePies/Vue/index.html | 1 + .../Demos/Charts/ErrorBars/React/index.html | 1 + .../Demos/Charts/ErrorBars/Vue/index.html | 1 + .../ExportAndPrintingAPI/React/index.html | 1 + .../ExportAndPrintingAPI/Vue/index.html | 1 + .../ExportCustomMarkup/React/index.html | 1 + .../Charts/ExportCustomMarkup/Vue/index.html | 1 + .../ExportSeveralCharts/React/index.html | 1 + .../Charts/ExportSeveralCharts/Vue/index.html | 1 + .../Charts/FlatDataStructure/React/index.html | 1 + .../Charts/FlatDataStructure/Vue/index.html | 1 + .../Charts/FullStackedBar/React/index.html | 1 + .../Charts/FullStackedBar/Vue/index.html | 1 + .../Demos/Charts/FunnelChart/React/index.html | 1 + .../Demos/Charts/FunnelChart/Vue/index.html | 1 + .../React/index.html | 1 + .../HierarchicalDataStructure/Vue/index.html | 1 + .../Demos/Charts/HoverMode/React/index.html | 1 + .../Demos/Charts/HoverMode/Vue/index.html | 1 + .../Charts/InvertedChart/React/index.html | 1 + .../Demos/Charts/InvertedChart/Vue/index.html | 1 + .../LabelCustomization/React/index.html | 1 + .../Charts/LabelCustomization/Vue/index.html | 1 + .../React/index.html | 1 + .../LegendMarkersCustomization/Vue/index.html | 1 + apps/demos/Demos/Charts/Line/React/index.html | 1 + apps/demos/Demos/Charts/Line/Vue/index.html | 1 + .../Charts/LoadDataOnDemand/React/index.html | 1 + .../Charts/LoadDataOnDemand/Vue/index.html | 1 + .../Charts/LogarithmicAxis/React/index.html | 1 + .../Charts/LogarithmicAxis/Vue/index.html | 1 + .../LogarithmicVsLinearAxes/React/index.html | 1 + .../LogarithmicVsLinearAxes/Vue/index.html | 1 + .../Charts/MultipleAxes/React/index.html | 1 + .../Demos/Charts/MultipleAxes/Vue/index.html | 1 + .../Charts/MultiplePanes/React/index.html | 1 + .../Demos/Charts/MultiplePanes/Vue/index.html | 1 + .../MultiplePointSelection/React/index.html | 1 + .../MultiplePointSelection/Vue/index.html | 1 + .../MultipleSeriesSelection/React/index.html | 1 + .../MultipleSeriesSelection/Vue/index.html | 1 + .../Charts/NullPointSupport/React/index.html | 1 + .../Charts/NullPointSupport/Vue/index.html | 1 + .../Demos/Charts/Overview/React/index.html | 1 + .../Demos/Charts/Overview/Vue/index.html | 1 + .../Demos/Charts/Palette/React/index.html | 1 + .../demos/Demos/Charts/Palette/Vue/index.html | 1 + .../Demos/Charts/ParetoChart/React/index.html | 1 + .../Demos/Charts/ParetoChart/Vue/index.html | 1 + .../Charts/PeriodicData/React/index.html | 1 + .../Demos/Charts/PeriodicData/Vue/index.html | 1 + apps/demos/Demos/Charts/Pie/React/index.html | 1 + apps/demos/Demos/Charts/Pie/Vue/index.html | 1 + .../Charts/PieAnnotations/React/index.html | 1 + .../Charts/PieAnnotations/Vue/index.html | 1 + .../PieResolveLabelOverlap/React/index.html | 1 + .../PieResolveLabelOverlap/Vue/index.html | 1 + .../PieWithMultipleSeries/React/index.html | 1 + .../PieWithMultipleSeries/Vue/index.html | 1 + .../Demos/Charts/PointImage/React/index.html | 1 + .../Demos/Charts/PointImage/Vue/index.html | 1 + .../Charts/PointSelectionAPI/React/index.html | 1 + .../Charts/PointSelectionAPI/Vue/index.html | 1 + .../Charts/PointsAggregation/React/index.html | 1 + .../Charts/PointsAggregation/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../PolarChartAnnotations/React/index.html | 1 + .../PolarChartAnnotations/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../Charts/PyramidChart/React/index.html | 1 + .../Demos/Charts/PyramidChart/Vue/index.html | 1 + .../Demos/Charts/RangeArea/React/index.html | 1 + .../Demos/Charts/RangeArea/Vue/index.html | 1 + .../Demos/Charts/RangeBar/React/index.html | 1 + .../Demos/Charts/RangeBar/Vue/index.html | 1 + .../ResolveLabelOverlap/React/index.html | 1 + .../Charts/ResolveLabelOverlap/Vue/index.html | 1 + .../Demos/Charts/SankeyChart/React/index.html | 1 + .../Demos/Charts/SankeyChart/Vue/index.html | 1 + .../Demos/Charts/ScaleBreaks/React/index.html | 1 + .../Demos/Charts/ScaleBreaks/Vue/index.html | 1 + .../Demos/Charts/Scatter/React/index.html | 1 + .../demos/Demos/Charts/Scatter/Vue/index.html | 1 + .../Demos/Charts/Selection/React/index.html | 1 + .../Demos/Charts/Selection/Vue/index.html | 1 + .../ServerSideDataProcessing/React/index.html | 1 + .../ServerSideDataProcessing/Vue/index.html | 1 + .../Charts/SideBySideBar/React/index.html | 1 + .../Demos/Charts/SideBySideBar/Vue/index.html | 1 + .../SideBySideFullStackedBar/React/index.html | 1 + .../SideBySideFullStackedBar/Vue/index.html | 1 + .../SideBySideStackedBar/React/index.html | 1 + .../SideBySideStackedBar/Vue/index.html | 1 + .../Charts/SignalRService/React/index.html | 1 + .../Charts/SignalRService/Vue/index.html | 1 + .../Demos/Charts/SimpleArray/React/index.html | 1 + .../Demos/Charts/SimpleArray/Vue/index.html | 1 + .../Charts/SimpleBullets/React/index.html | 1 + .../Demos/Charts/SimpleBullets/Vue/index.html | 1 + .../Charts/SimpleSparklines/React/index.html | 1 + .../Charts/SimpleSparklines/Vue/index.html | 1 + .../Charts/SmallValueGroups/React/index.html | 1 + .../Charts/SmallValueGroups/Vue/index.html | 1 + .../Demos/Charts/SpiderWeb/React/index.html | 1 + .../Demos/Charts/SpiderWeb/Vue/index.html | 1 + .../Demos/Charts/Spline/React/index.html | 1 + apps/demos/Demos/Charts/Spline/Vue/index.html | 1 + .../Demos/Charts/SplineArea/React/index.html | 1 + .../Demos/Charts/SplineArea/Vue/index.html | 1 + .../Demos/Charts/StackedBar/React/index.html | 1 + .../Demos/Charts/StackedBar/Vue/index.html | 1 + .../Demos/Charts/StandardBar/React/index.html | 1 + .../Demos/Charts/StandardBar/Vue/index.html | 1 + .../Demos/Charts/StepArea/React/index.html | 1 + .../Demos/Charts/StepArea/Vue/index.html | 1 + .../Demos/Charts/StepLine/React/index.html | 1 + .../Demos/Charts/StepLine/Vue/index.html | 1 + .../demos/Demos/Charts/Stock/React/index.html | 1 + apps/demos/Demos/Charts/Stock/Vue/index.html | 1 + .../Demos/Charts/Strips/React/index.html | 1 + apps/demos/Demos/Charts/Strips/Vue/index.html | 1 + .../Charts/TilingAlgorithms/React/index.html | 1 + .../Charts/TilingAlgorithms/Vue/index.html | 1 + .../Demos/Charts/Timeline/React/index.html | 1 + .../Demos/Charts/Timeline/Vue/index.html | 1 + .../Demos/Charts/TooltipAPI/React/index.html | 1 + .../Demos/Charts/TooltipAPI/Vue/index.html | 1 + .../TooltipCustomization/React/index.html | 1 + .../TooltipCustomization/Vue/index.html | 1 + .../Demos/Charts/WindRose/React/index.html | 1 + .../Demos/Charts/WindRose/Vue/index.html | 1 + .../Charts/WinlossSparklines/React/index.html | 1 + .../Charts/WinlossSparklines/Vue/index.html | 1 + .../ZoomingAndScrolling/React/index.html | 1 + .../Charts/ZoomingAndScrolling/Vue/index.html | 1 + .../ZoomingAndScrollingAPI/React/index.html | 1 + .../ZoomingAndScrollingAPI/Vue/index.html | 1 + .../AIAndChatbotIntegration/React/index.html | 1 + .../AIAndChatbotIntegration/Vue/index.html | 1 + .../Demos/Chat/Customization/React/index.html | 1 + .../Demos/Chat/Customization/Vue/index.html | 1 + .../Chat/FileAttachments/React/index.html | 1 + .../Demos/Chat/FileAttachments/Vue/index.html | 1 + .../Chat/MessageEditing/React/index.html | 1 + .../Demos/Chat/MessageEditing/Vue/index.html | 1 + .../Chat/MessageStreaming/React/index.html | 1 + .../Chat/MessageStreaming/Vue/index.html | 1 + .../Demos/Chat/Overview/React/index.html | 1 + apps/demos/Demos/Chat/Overview/Vue/index.html | 1 + .../Chat/PromptSuggestions/React/index.html | 1 + .../Chat/PromptSuggestions/Vue/index.html | 1 + .../Demos/CheckBox/Overview/React/index.html | 1 + .../Demos/CheckBox/Overview/Vue/index.html | 1 + .../Demos/ColorBox/Overview/React/index.html | 1 + .../Demos/ColorBox/Overview/Vue/index.html | 1 + .../CustomTextEditorButtons/React/index.html | 1 + .../CustomTextEditorButtons/Vue/index.html | 1 + .../EditorAppearanceVariants/React/index.html | 1 + .../EditorAppearanceVariants/Vue/index.html | 1 + .../Common/EditorsOverview/React/index.html | 1 + .../Common/EditorsOverview/Vue/index.html | 1 + .../React/index.html | 1 + .../EditorsRightToLeftSupport/Vue/index.html | 1 + .../Common/FormsOverview/React/index.html | 1 + .../Demos/Common/FormsOverview/Vue/index.html | 1 + .../Common/ListsOverview/React/index.html | 1 + .../Demos/Common/ListsOverview/Vue/index.html | 1 + .../NavigationOverview/React/index.html | 1 + .../Common/NavigationOverview/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../Demos/ContextMenu/Basics/React/index.html | 1 + .../Demos/ContextMenu/Basics/Vue/index.html | 1 + .../ContextMenu/Scrolling/React/index.html | 1 + .../ContextMenu/Scrolling/Vue/index.html | 1 + .../ContextMenu/Templates/React/index.html | 1 + .../ContextMenu/Templates/Vue/index.html | 1 + .../DataGrid/AIAssistant/React/index.html | 1 + .../Demos/DataGrid/AIAssistant/Vue/index.html | 1 + .../Demos/DataGrid/AIColumns/React/index.html | 1 + .../Demos/DataGrid/AIColumns/Vue/index.html | 1 + .../AdvancedMasterDetailView/React/index.html | 1 + .../AdvancedMasterDetailView/Vue/index.html | 1 + .../DataGrid/AjaxRequest/React/index.html | 1 + .../Demos/DataGrid/AjaxRequest/Vue/index.html | 1 + .../DataGrid/Appearance/React/index.html | 1 + .../Demos/DataGrid/Appearance/Vue/index.html | 1 + .../AutoPopulatedColumns/React/index.html | 1 + .../AutoPopulatedColumns/Vue/index.html | 1 + .../DataGrid/BatchEditing/React/index.html | 1 + .../DataGrid/BatchEditing/Vue/index.html | 1 + .../BatchUpdateRequest/React/index.html | 1 + .../BatchUpdateRequest/Vue/index.html | 1 + .../CascadingLookups/React/index.html | 1 + .../DataGrid/CascadingLookups/Vue/index.html | 1 + .../Demos/DataGrid/Cell/React/index.html | 1 + apps/demos/Demos/DataGrid/Cell/Vue/index.html | 1 + .../DataGrid/CellEditing/React/index.html | 1 + .../Demos/DataGrid/CellEditing/Vue/index.html | 1 + .../CollaborativeEditing/React/index.html | 1 + .../CollaborativeEditing/Vue/index.html | 1 + .../Demos/DataGrid/Column/React/index.html | 1 + .../Demos/DataGrid/Column/Vue/index.html | 1 + .../DataGrid/ColumnChooser/React/index.html | 1 + .../DataGrid/ColumnChooser/Vue/index.html | 1 + .../ColumnHeaderFilter/React/index.html | 1 + .../ColumnHeaderFilter/Vue/index.html | 1 + .../ColumnReordering/React/index.html | 1 + .../DataGrid/ColumnReordering/Vue/index.html | 1 + .../DataGrid/ColumnResizing/React/index.html | 1 + .../DataGrid/ColumnResizing/Vue/index.html | 1 + .../ColumnsHidingPriority/React/index.html | 1 + .../ColumnsHidingPriority/Vue/index.html | 1 + .../React/index.html | 1 + .../CommandColumnConfiguration/Vue/index.html | 1 + .../CustomDataSource/React/index.html | 1 + .../DataGrid/CustomDataSource/Vue/index.html | 1 + .../DataGrid/CustomEditors/React/index.html | 1 + .../DataGrid/CustomEditors/Vue/index.html | 1 + .../DataGrid/CustomSummaries/React/index.html | 1 + .../DataGrid/CustomSummaries/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../DataGrid/DataValidation/React/index.html | 1 + .../DataGrid/DataValidation/Vue/index.html | 1 + .../DeferredSelection/React/index.html | 1 + .../DataGrid/DeferredSelection/Vue/index.html | 1 + .../DataGrid/DnDBetweenGrids/React/index.html | 1 + .../DataGrid/DnDBetweenGrids/Vue/index.html | 1 + .../EditStateManagement/React/index.html | 1 + .../EditStateManagement/Vue/index.html | 1 + .../ExcelJSCellCustomization/React/index.html | 1 + .../ExcelJSCellCustomization/Vue/index.html | 1 + .../ExcelJSExportImages/React/index.html | 1 + .../ExcelJSExportImages/Vue/index.html | 1 + .../React/index.html | 1 + .../ExcelJSExportMultipleGrids/Vue/index.html | 1 + .../ExcelJSHeaderAndFooter/React/index.html | 1 + .../ExcelJSHeaderAndFooter/Vue/index.html | 1 + .../DataGrid/ExcelJSOverview/React/index.html | 1 + .../DataGrid/ExcelJSOverview/Vue/index.html | 1 + .../DataGrid/FilterPanel/React/index.html | 1 + .../Demos/DataGrid/FilterPanel/Vue/index.html | 1 + .../Demos/DataGrid/Filtering/React/index.html | 1 + .../Demos/DataGrid/Filtering/Vue/index.html | 1 + .../DataGrid/FilteringAPI/React/index.html | 1 + .../DataGrid/FilteringAPI/Vue/index.html | 1 + .../FixedAndStickyColumns/React/index.html | 1 + .../FixedAndStickyColumns/Vue/index.html | 1 + .../DataGrid/FocusedRow/React/index.html | 1 + .../Demos/DataGrid/FocusedRow/Vue/index.html | 1 + .../DataGrid/FormEditing/React/index.html | 1 + .../Demos/DataGrid/FormEditing/Vue/index.html | 1 + .../GridAdaptabilityOverview/React/index.html | 1 + .../GridAdaptabilityOverview/Vue/index.html | 1 + .../DataGrid/GridSummaries/React/index.html | 1 + .../DataGrid/GridSummaries/Vue/index.html | 1 + .../DataGrid/GroupSummaries/React/index.html | 1 + .../DataGrid/GroupSummaries/Vue/index.html | 1 + .../React/index.html | 1 + .../HorizontalVirtualScrolling/Vue/index.html | 1 + .../InfiniteScrolling/React/index.html | 1 + .../DataGrid/InfiniteScrolling/Vue/index.html | 1 + .../KeyboardNavigation/React/index.html | 1 + .../KeyboardNavigation/Vue/index.html | 1 + .../DataGrid/LocalReordering/React/index.html | 1 + .../DataGrid/LocalReordering/Vue/index.html | 1 + .../DataGrid/MasterDetailAPI/React/index.html | 1 + .../DataGrid/MasterDetailAPI/Vue/index.html | 1 + .../MasterDetailView/React/index.html | 1 + .../DataGrid/MasterDetailView/Vue/index.html | 1 + .../MultiRowHeadersBands/React/index.html | 1 + .../MultiRowHeadersBands/Vue/index.html | 1 + .../React/index.html | 1 + .../MultipleRecordSelectionAPI/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../DataGrid/MultipleSorting/React/index.html | 1 + .../DataGrid/MultipleSorting/Vue/index.html | 1 + .../NewRecordPosition/React/index.html | 1 + .../DataGrid/NewRecordPosition/Vue/index.html | 1 + .../Demos/DataGrid/Overview/React/index.html | 1 + .../Demos/DataGrid/Overview/Vue/index.html | 1 + .../PDFCellCustomization/React/index.html | 1 + .../PDFCellCustomization/Vue/index.html | 1 + .../DataGrid/PDFExportImages/React/index.html | 1 + .../DataGrid/PDFExportImages/Vue/index.html | 1 + .../PDFExportMultipleGrids/React/index.html | 1 + .../PDFExportMultipleGrids/Vue/index.html | 1 + .../PDFHeaderAndFooter/React/index.html | 1 + .../PDFHeaderAndFooter/Vue/index.html | 1 + .../DataGrid/PDFOverview/React/index.html | 1 + .../Demos/DataGrid/PDFOverview/Vue/index.html | 1 + .../DataGrid/PopupEditing/React/index.html | 1 + .../DataGrid/PopupEditing/Vue/index.html | 1 + .../DataGrid/RealTimeUpdates/React/index.html | 1 + .../DataGrid/RealTimeUpdates/Vue/index.html | 1 + .../RecalculateWhileEditing/React/index.html | 1 + .../RecalculateWhileEditing/Vue/index.html | 1 + .../DataGrid/RecordGrouping/React/index.html | 1 + .../DataGrid/RecordGrouping/Vue/index.html | 1 + .../DataGrid/RecordPaging/React/index.html | 1 + .../DataGrid/RecordPaging/Vue/index.html | 1 + .../RemoteCRUDOperations/React/index.html | 1 + .../RemoteCRUDOperations/Vue/index.html | 1 + .../DataGrid/RemoteGrouping/React/index.html | 1 + .../DataGrid/RemoteGrouping/Vue/index.html | 1 + .../RemoteReordering/React/index.html | 1 + .../DataGrid/RemoteReordering/Vue/index.html | 1 + .../RemoteVirtualScrolling/React/index.html | 1 + .../RemoteVirtualScrolling/Vue/index.html | 1 + .../RightToLeftSupport/React/index.html | 1 + .../RightToLeftSupport/Vue/index.html | 1 + .../demos/Demos/DataGrid/Row/React/index.html | 1 + apps/demos/Demos/DataGrid/Row/Vue/index.html | 1 + .../DataGrid/RowEditing/React/index.html | 1 + .../Demos/DataGrid/RowEditing/Vue/index.html | 1 + .../DataGrid/RowSelection/React/index.html | 1 + .../DataGrid/RowSelection/Vue/index.html | 1 + .../DataGrid/SemanticSearch/React/index.html | 1 + .../DataGrid/SemanticSearch/Vue/index.html | 1 + .../DataGrid/SignalRService/React/index.html | 1 + .../DataGrid/SignalRService/Vue/index.html | 1 + .../DataGrid/SimpleArray/React/index.html | 1 + .../Demos/DataGrid/SimpleArray/Vue/index.html | 1 + .../StatePersistence/React/index.html | 1 + .../DataGrid/StatePersistence/Vue/index.html | 1 + .../Demos/DataGrid/Toolbar/React/index.html | 1 + .../Demos/DataGrid/Toolbar/Vue/index.html | 1 + .../VirtualScrolling/React/index.html | 1 + .../DataGrid/VirtualScrolling/Vue/index.html | 1 + .../DataGrid/WebAPIService/React/index.html | 1 + .../DataGrid/WebAPIService/Vue/index.html | 1 + .../Demos/DateBox/Formatting/React/index.html | 1 + .../Demos/DateBox/Formatting/Vue/index.html | 1 + .../Demos/DateBox/Overview/React/index.html | 1 + .../Demos/DateBox/Overview/Vue/index.html | 1 + .../DateRangeBox/Formatting/React/index.html | 1 + .../DateRangeBox/Formatting/Vue/index.html | 1 + .../DateRangeBox/Overview/React/index.html | 1 + .../DateRangeBox/Overview/Vue/index.html | 1 + .../Diagram/Adaptability/React/index.html | 1 + .../Demos/Diagram/Adaptability/Vue/index.html | 1 + .../AdvancedDataBinding/React/index.html | 1 + .../AdvancedDataBinding/Vue/index.html | 1 + .../Demos/Diagram/Containers/React/index.html | 1 + .../Demos/Diagram/Containers/Vue/index.html | 1 + .../CustomShapesWithIcons/React/index.html | 1 + .../CustomShapesWithIcons/Vue/index.html | 1 + .../React/index.html | 1 + .../CustomShapesWithTemplates/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../CustomShapesWithTexts/React/index.html | 1 + .../CustomShapesWithTexts/Vue/index.html | 1 + .../Diagram/ImagesInShapes/React/index.html | 1 + .../Diagram/ImagesInShapes/Vue/index.html | 1 + .../Diagram/ItemSelection/React/index.html | 1 + .../Diagram/ItemSelection/Vue/index.html | 1 + .../NodesAndEdgesArrays/React/index.html | 1 + .../NodesAndEdgesArrays/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../NodesArrayPlainStructure/React/index.html | 1 + .../NodesArrayPlainStructure/Vue/index.html | 1 + .../OperationRestrictions/React/index.html | 1 + .../OperationRestrictions/Vue/index.html | 1 + .../Demos/Diagram/Overview/React/index.html | 1 + .../Demos/Diagram/Overview/Vue/index.html | 1 + .../Demos/Diagram/ReadOnly/React/index.html | 1 + .../Demos/Diagram/ReadOnly/Vue/index.html | 1 + .../Demos/Diagram/SimpleView/React/index.html | 1 + .../Demos/Diagram/SimpleView/Vue/index.html | 1 + .../Diagram/UICustomization/React/index.html | 1 + .../Diagram/UICustomization/Vue/index.html | 1 + .../Diagram/WebAPIService/React/index.html | 1 + .../Diagram/WebAPIService/Vue/index.html | 1 + .../LeftOrRightPosition/React/index.html | 1 + .../Drawer/LeftOrRightPosition/Vue/index.html | 1 + .../TopOrBottomPosition/React/index.html | 1 + .../Drawer/TopOrBottomPosition/Vue/index.html | 1 + .../MultipleSelection/React/index.html | 1 + .../MultipleSelection/Vue/index.html | 1 + .../SingleSelection/React/index.html | 1 + .../SingleSelection/Vue/index.html | 1 + .../DropDownButton/Overview/React/index.html | 1 + .../DropDownButton/Overview/Vue/index.html | 1 + .../Demos/FieldSet/Overview/React/index.html | 1 + .../Demos/FieldSet/Overview/Vue/index.html | 1 + .../FileManager/BindingToEF/React/index.html | 1 + .../FileManager/BindingToEF/Vue/index.html | 1 + .../BindingToFileSystem/React/index.html | 1 + .../BindingToFileSystem/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../CustomThumbnails/React/index.html | 1 + .../CustomThumbnails/Vue/index.html | 1 + .../FileManager/Overview/React/index.html | 1 + .../Demos/FileManager/Overview/Vue/index.html | 1 + .../UICustomization/React/index.html | 1 + .../UICustomization/Vue/index.html | 1 + .../FileUploader/ChunkUpload/React/index.html | 1 + .../FileUploader/ChunkUpload/Vue/index.html | 1 + .../CustomDropzone/React/index.html | 1 + .../CustomDropzone/Vue/index.html | 1 + .../FileSelection/React/index.html | 1 + .../FileUploader/FileSelection/Vue/index.html | 1 + .../FileUploading/React/index.html | 1 + .../FileUploader/FileUploading/Vue/index.html | 1 + .../FileUploader/Validation/React/index.html | 1 + .../FileUploader/Validation/Vue/index.html | 1 + .../Customization/React/index.html | 1 + .../Customization/Vue/index.html | 1 + .../WithDataGrid/React/index.html | 1 + .../FilterBuilder/WithDataGrid/Vue/index.html | 1 + .../FilterBuilder/WithList/React/index.html | 1 + .../FilterBuilder/WithList/Vue/index.html | 1 + .../Overview/React/index.html | 1 + .../Overview/Vue/index.html | 1 + .../Demos/Form/Adaptability/React/index.html | 1 + .../Demos/Form/Adaptability/Vue/index.html | 1 + .../Demos/Form/Grouping/React/index.html | 1 + apps/demos/Demos/Form/Grouping/Vue/index.html | 1 + .../Form/ItemCustomization/React/index.html | 1 + .../Form/ItemCustomization/Vue/index.html | 1 + .../Demos/Form/Overview/React/index.html | 1 + apps/demos/Demos/Form/Overview/Vue/index.html | 1 + .../Demos/Form/SmartPaste/React/index.html | 1 + .../Demos/Form/SmartPaste/Vue/index.html | 1 + .../UpdateItemsDynamically/React/index.html | 1 + .../UpdateItemsDynamically/Vue/index.html | 1 + .../Demos/Form/Validation/React/index.html | 1 + .../Demos/Form/Validation/Vue/index.html | 1 + .../Gallery/ItemTemplate/React/index.html | 1 + .../Demos/Gallery/ItemTemplate/Vue/index.html | 1 + .../Demos/Gallery/Overview/React/index.html | 1 + .../Demos/Gallery/Overview/Vue/index.html | 1 + .../Demos/Gantt/Appearance/React/index.html | 1 + .../Demos/Gantt/Appearance/Vue/index.html | 1 + .../Demos/Gantt/ContextMenu/React/index.html | 1 + .../Demos/Gantt/ContextMenu/Vue/index.html | 1 + .../Demos/Gantt/DataBinding/React/index.html | 1 + .../Demos/Gantt/DataBinding/Vue/index.html | 1 + .../Demos/Gantt/ExportToPDF/React/index.html | 1 + .../Demos/Gantt/ExportToPDF/Vue/index.html | 1 + .../Demos/Gantt/FilterRow/React/index.html | 1 + .../Demos/Gantt/FilterRow/Vue/index.html | 1 + .../Demos/Gantt/HeaderFilter/React/index.html | 1 + .../Demos/Gantt/HeaderFilter/Vue/index.html | 1 + .../Demos/Gantt/Overview/React/index.html | 1 + .../demos/Demos/Gantt/Overview/Vue/index.html | 1 + .../Demos/Gantt/Sorting/React/index.html | 1 + apps/demos/Demos/Gantt/Sorting/Vue/index.html | 1 + .../Demos/Gantt/StripLines/React/index.html | 1 + .../Demos/Gantt/StripLines/Vue/index.html | 1 + .../Demos/Gantt/TaskTemplate/React/index.html | 1 + .../Demos/Gantt/TaskTemplate/Vue/index.html | 1 + .../Demos/Gantt/Toolbar/React/index.html | 1 + apps/demos/Demos/Gantt/Toolbar/Vue/index.html | 1 + .../Demos/Gantt/Validation/React/index.html | 1 + .../Demos/Gantt/Validation/Vue/index.html | 1 + .../AnglesCustomization/React/index.html | 1 + .../Gauges/AnglesCustomization/Vue/index.html | 1 + .../Demos/Gauges/BarGauge/React/index.html | 1 + .../Demos/Gauges/BarGauge/Vue/index.html | 1 + .../Gauges/CircularGauge/React/index.html | 1 + .../Demos/Gauges/CircularGauge/Vue/index.html | 1 + .../Gauges/CustomLayout/React/index.html | 1 + .../Demos/Gauges/CustomLayout/Vue/index.html | 1 + .../CustomLayoutLinearGauge/React/index.html | 1 + .../CustomLayoutLinearGauge/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../GaugeTitleCustomized/React/index.html | 1 + .../GaugeTitleCustomized/Vue/index.html | 1 + .../Gauges/GaugeTooltip/React/index.html | 1 + .../Demos/Gauges/GaugeTooltip/Vue/index.html | 1 + .../LabelsCustomization/React/index.html | 1 + .../Gauges/LabelsCustomization/Vue/index.html | 1 + .../Demos/Gauges/LinearGauge/React/index.html | 1 + .../Demos/Gauges/LinearGauge/Vue/index.html | 1 + .../Demos/Gauges/Overview/React/index.html | 1 + .../Demos/Gauges/Overview/Vue/index.html | 1 + .../Demos/Gauges/Palette/React/index.html | 1 + .../demos/Demos/Gauges/Palette/Vue/index.html | 1 + .../Gauges/PaletteForRanges/React/index.html | 1 + .../Gauges/PaletteForRanges/Vue/index.html | 1 + .../Gauges/RangeBarBaseValue/React/index.html | 1 + .../Gauges/RangeBarBaseValue/Vue/index.html | 1 + .../ScaleCustomTickInterval/React/index.html | 1 + .../ScaleCustomTickInterval/Vue/index.html | 1 + .../ScaleCustomTickValues/React/index.html | 1 + .../ScaleCustomTickValues/Vue/index.html | 1 + .../ScaleLabelFormatting/React/index.html | 1 + .../ScaleLabelFormatting/Vue/index.html | 1 + .../Gauges/ScaleMinorTicks/React/index.html | 1 + .../Gauges/ScaleMinorTicks/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../Demos/Gauges/Tooltip/React/index.html | 1 + .../demos/Demos/Gauges/Tooltip/Vue/index.html | 1 + .../ValueIndicatorsAPI/React/index.html | 1 + .../Gauges/ValueIndicatorsAPI/Vue/index.html | 1 + .../VariableNumberOfBars/React/index.html | 1 + .../VariableNumberOfBars/Vue/index.html | 1 + .../HtmlEditor/AITextEditing/React/index.html | 1 + .../HtmlEditor/AITextEditing/Vue/index.html | 1 + .../MarkdownSupport/React/index.html | 1 + .../HtmlEditor/MarkdownSupport/Vue/index.html | 1 + .../HtmlEditor/Mentions/React/index.html | 1 + .../Demos/HtmlEditor/Mentions/Vue/index.html | 1 + .../HtmlEditor/Overview/React/index.html | 1 + .../Demos/HtmlEditor/Overview/Vue/index.html | 1 + .../Demos/HtmlEditor/Tables/React/index.html | 1 + .../Demos/HtmlEditor/Tables/Vue/index.html | 1 + .../ToolbarCustomization/React/index.html | 1 + .../ToolbarCustomization/Vue/index.html | 1 + .../Demos/List/DragAndDrop/React/index.html | 1 + .../Demos/List/DragAndDrop/Vue/index.html | 1 + .../Demos/List/Grouping/React/index.html | 1 + apps/demos/Demos/List/Grouping/Vue/index.html | 1 + .../Demos/List/ItemDeletion/React/index.html | 1 + .../Demos/List/ItemDeletion/Vue/index.html | 1 + .../Demos/List/ItemTemplate/React/index.html | 1 + .../Demos/List/ItemTemplate/Vue/index.html | 1 + apps/demos/Demos/List/Search/React/index.html | 1 + apps/demos/Demos/List/Search/Vue/index.html | 1 + .../Demos/List/Selection/React/index.html | 1 + .../demos/Demos/List/Selection/Vue/index.html | 1 + apps/demos/Demos/List/WebAPI/React/index.html | 1 + apps/demos/Demos/List/WebAPI/Vue/index.html | 1 + .../LoadIndicator/Overview/React/index.html | 1 + .../LoadIndicator/Overview/Vue/index.html | 1 + .../Demos/LoadPanel/Overview/React/index.html | 1 + .../Demos/LoadPanel/Overview/Vue/index.html | 1 + .../UsingGlobalize/React/index.html | 1 + .../UsingGlobalize/Vue/index.html | 1 + .../Localization/UsingIntl/React/index.html | 1 + .../Localization/UsingIntl/Vue/index.html | 1 + .../Demos/Lookup/Basics/React/index.html | 1 + apps/demos/Demos/Lookup/Basics/Vue/index.html | 1 + .../Lookup/EventHandling/React/index.html | 1 + .../Demos/Lookup/EventHandling/Vue/index.html | 1 + .../Demos/Lookup/Templates/React/index.html | 1 + .../Demos/Lookup/Templates/Vue/index.html | 1 + apps/demos/Demos/Map/Markers/React/index.html | 1 + apps/demos/Demos/Map/Markers/Vue/index.html | 1 + .../Map/ProvidersAndTypes/React/index.html | 1 + .../Map/ProvidersAndTypes/Vue/index.html | 1 + apps/demos/Demos/Map/Routes/React/index.html | 1 + apps/demos/Demos/Map/Routes/Vue/index.html | 1 + .../Demos/Menu/Overview/React/index.html | 1 + apps/demos/Demos/Menu/Overview/Vue/index.html | 1 + .../Demos/Menu/Scrolling/React/index.html | 1 + .../demos/Demos/Menu/Scrolling/Vue/index.html | 1 + .../Demos/MultiView/Overview/React/index.html | 1 + .../Demos/MultiView/Overview/Vue/index.html | 1 + .../NumberBox/Formatting/React/index.html | 1 + .../Demos/NumberBox/Formatting/Vue/index.html | 1 + .../Demos/NumberBox/Overview/React/index.html | 1 + .../Demos/NumberBox/Overview/Vue/index.html | 1 + .../Pagination/Overview/React/index.html | 1 + .../Demos/Pagination/Overview/Vue/index.html | 1 + .../ChartIntegration/React/index.html | 1 + .../PivotGrid/ChartIntegration/Vue/index.html | 1 + .../PivotGrid/Customization/React/index.html | 1 + .../PivotGrid/Customization/Vue/index.html | 1 + .../PivotGrid/DrillDown/React/index.html | 1 + .../Demos/PivotGrid/DrillDown/Vue/index.html | 1 + .../ExcelJSCellCustomization/React/index.html | 1 + .../ExcelJSCellCustomization/Vue/index.html | 1 + .../ExcelJSOverview/React/index.html | 1 + .../PivotGrid/ExcelJSOverview/Vue/index.html | 1 + .../ExcelJsHeaderAndFooter/React/index.html | 1 + .../ExcelJsHeaderAndFooter/Vue/index.html | 1 + .../PivotGrid/FieldPanel/React/index.html | 1 + .../Demos/PivotGrid/FieldPanel/Vue/index.html | 1 + .../PivotGrid/Filtering/React/index.html | 1 + .../Demos/PivotGrid/Filtering/Vue/index.html | 1 + .../IntegratedFieldChooser/React/index.html | 1 + .../IntegratedFieldChooser/Vue/index.html | 1 + .../PivotGrid/OLAPDataSource/React/index.html | 1 + .../PivotGrid/OLAPDataSource/Vue/index.html | 1 + .../Demos/PivotGrid/Overview/React/index.html | 1 + .../Demos/PivotGrid/Overview/Vue/index.html | 1 + .../RemoteVirtualScrolling/React/index.html | 1 + .../RemoteVirtualScrolling/Vue/index.html | 1 + .../PivotGrid/RunningTotals/React/index.html | 1 + .../PivotGrid/RunningTotals/Vue/index.html | 1 + .../PivotGrid/SimpleArray/React/index.html | 1 + .../PivotGrid/SimpleArray/Vue/index.html | 1 + .../Angular/app/app.component.ts | 110 +----- .../StandaloneFieldChooser/React/index.html | 1 + .../StandaloneFieldChooser/Vue/index.html | 1 + .../StatePersistence/React/index.html | 1 + .../PivotGrid/StatePersistence/Vue/index.html | 1 + .../SummaryDisplayModes/React/index.html | 1 + .../SummaryDisplayModes/Vue/index.html | 1 + .../VirtualScrolling/React/index.html | 1 + .../PivotGrid/VirtualScrolling/Vue/index.html | 1 + .../PivotGrid/WebAPIService/React/index.html | 1 + .../PivotGrid/WebAPIService/Vue/index.html | 1 + .../Demos/Popover/Overview/React/index.html | 1 + .../Demos/Popover/Overview/Vue/index.html | 1 + .../Demos/Popup/Overview/React/index.html | 1 + .../demos/Demos/Popup/Overview/Vue/index.html | 1 + .../Demos/Popup/Scrolling/React/index.html | 1 + .../Demos/Popup/Scrolling/Vue/index.html | 1 + .../ProgressBar/Overview/React/index.html | 1 + .../Demos/ProgressBar/Overview/Vue/index.html | 1 + .../RadioGroup/Overview/React/index.html | 1 + .../Demos/RadioGroup/Overview/Vue/index.html | 1 + .../BackgroundImage/React/index.html | 1 + .../BackgroundImage/Vue/index.html | 1 + .../Calculation/React/index.html | 1 + .../RangeSelector/Calculation/Vue/index.html | 1 + .../CustomFormatting/React/index.html | 1 + .../CustomFormatting/Vue/index.html | 1 + .../DateTimeScale/React/index.html | 1 + .../DateTimeScale/Vue/index.html | 1 + .../DateTimeScaleLightweight/React/index.html | 1 + .../DateTimeScaleLightweight/Vue/index.html | 1 + .../DiscreteScale/React/index.html | 1 + .../DiscreteScale/Vue/index.html | 1 + .../EmbeddedChart/React/index.html | 1 + .../EmbeddedChart/Vue/index.html | 1 + .../EmbeddedChartCustomized/React/index.html | 1 + .../EmbeddedChartCustomized/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../RangeSelector/Filter/React/index.html | 1 + .../Demos/RangeSelector/Filter/Vue/index.html | 1 + .../LogarithmicScale/React/index.html | 1 + .../LogarithmicScale/Vue/index.html | 1 + .../NumericScale/React/index.html | 1 + .../RangeSelector/NumericScale/Vue/index.html | 1 + .../NumericScaleLightweight/React/index.html | 1 + .../NumericScaleLightweight/Vue/index.html | 1 + .../RangeSlider/Overview/React/index.html | 1 + .../Demos/RangeSlider/Overview/Vue/index.html | 1 + .../Demos/Resizable/Overview/React/index.html | 1 + .../Demos/Resizable/Overview/Vue/index.html | 1 + .../ResponsiveBox/Overview/React/index.html | 1 + .../ResponsiveBox/Overview/Vue/index.html | 1 + .../Scheduler/Adaptability/React/index.html | 1 + .../Scheduler/Adaptability/Vue/index.html | 1 + .../Demos/Scheduler/Agenda/React/index.html | 1 + .../Demos/Scheduler/Agenda/Vue/index.html | 1 + .../AllDayPanelMode/React/index.html | 1 + .../Scheduler/AllDayPanelMode/Vue/index.html | 1 + .../AppointmentCountPerCell/React/index.html | 1 + .../AppointmentCountPerCell/Vue/index.html | 1 + .../Scheduler/BasicViews/React/index.html | 1 + .../Demos/Scheduler/BasicViews/Vue/index.html | 1 + .../Scheduler/CellTemplates/React/index.html | 1 + .../Scheduler/CellTemplates/Vue/index.html | 1 + .../Scheduler/ContextMenu/React/index.html | 1 + .../Scheduler/ContextMenu/Vue/index.html | 1 + .../CreateFromSelection/React/index.html | 1 + .../CreateFromSelection/Vue/index.html | 1 + .../CurrentTimeIndicator/React/index.html | 1 + .../CurrentTimeIndicator/Vue/index.html | 1 + .../CustomViewDuration/React/index.html | 1 + .../CustomViewDuration/Vue/index.html | 1 + .../Scheduler/DragAndDrop/React/index.html | 1 + .../Scheduler/DragAndDrop/Vue/index.html | 1 + .../Demos/Scheduler/Editing/React/index.html | 1 + .../Demos/Scheduler/Editing/Vue/index.html | 1 + .../React/index.html | 1 + .../GoogleCalendarIntegration/Vue/index.html | 1 + .../Scheduler/GroupByDate/React/index.html | 1 + .../Scheduler/GroupByDate/Vue/index.html | 1 + .../GroupingByResources/React/index.html | 1 + .../GroupingByResources/Vue/index.html | 1 + .../Scheduler/HiddenDays/React/index.html | 1 + .../Demos/Scheduler/HiddenDays/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../Demos/Scheduler/Overview/React/index.html | 1 + .../Demos/Scheduler/Overview/Vue/index.html | 1 + .../RecurringAppointments/React/index.html | 1 + .../RecurringAppointments/Vue/index.html | 1 + .../ResolveTimeConflicts/React/index.html | 1 + .../ResolveTimeConflicts/Vue/index.html | 1 + .../Scheduler/Resources/React/index.html | 1 + .../Demos/Scheduler/Resources/Vue/index.html | 1 + .../Scheduler/SignalRService/React/index.html | 1 + .../Scheduler/SignalRService/Vue/index.html | 1 + .../Scheduler/SimpleArray/React/index.html | 1 + .../Scheduler/SimpleArray/Vue/index.html | 1 + .../Scheduler/Templates/React/index.html | 1 + .../Demos/Scheduler/Templates/Vue/index.html | 1 + .../TimeZonesSupport/React/index.html | 1 + .../Scheduler/TimeZonesSupport/Vue/index.html | 1 + .../Scheduler/Timelines/React/index.html | 1 + .../Demos/Scheduler/Timelines/Vue/index.html | 1 + .../Demos/Scheduler/Toolbar/React/index.html | 1 + .../Demos/Scheduler/Toolbar/Vue/index.html | 1 + .../VirtualScrolling/React/index.html | 1 + .../Scheduler/VirtualScrolling/Vue/index.html | 1 + .../Scheduler/WebAPIService/React/index.html | 1 + .../Scheduler/WebAPIService/Vue/index.html | 1 + .../Scheduler/WorkShifts/React/index.html | 1 + .../Demos/Scheduler/WorkShifts/Vue/index.html | 1 + .../ScrollView/Overview/React/index.html | 1 + .../Demos/ScrollView/Overview/Vue/index.html | 1 + .../CustomizeDropDownButton/React/index.html | 1 + .../CustomizeDropDownButton/Vue/index.html | 1 + .../Demos/SelectBox/Grouping/React/index.html | 1 + .../Demos/SelectBox/Grouping/Vue/index.html | 1 + .../Demos/SelectBox/Overview/React/index.html | 1 + .../Demos/SelectBox/Overview/Vue/index.html | 1 + .../SearchAndEditing/React/index.html | 1 + .../SelectBox/SearchAndEditing/Vue/index.html | 1 + .../Demos/Slider/Overview/React/index.html | 1 + .../Demos/Slider/Overview/Vue/index.html | 1 + .../Sortable/Customization/React/index.html | 1 + .../Sortable/Customization/Vue/index.html | 1 + .../Demos/Sortable/Kanban/React/index.html | 1 + .../Demos/Sortable/Kanban/Vue/index.html | 1 + .../SpeechToText/Overview/React/index.html | 1 + .../SpeechToText/Overview/Vue/index.html | 1 + .../Demos/Splitter/Overview/React/index.html | 1 + .../Demos/Splitter/Overview/Vue/index.html | 1 + .../Stepper/FormIntegration/React/index.html | 1 + .../Stepper/FormIntegration/Vue/index.html | 1 + .../Demos/Stepper/Overview/React/index.html | 1 + .../Demos/Stepper/Overview/Vue/index.html | 1 + .../Stepper/StepTemplate/React/index.html | 1 + .../Demos/Stepper/StepTemplate/Vue/index.html | 1 + .../Demos/Switch/Overview/React/index.html | 1 + .../Demos/Switch/Overview/Vue/index.html | 1 + .../TabPanel/DragAndDrop/React/index.html | 1 + .../Demos/TabPanel/DragAndDrop/Vue/index.html | 1 + .../Demos/TabPanel/Overview/React/index.html | 1 + .../Demos/TabPanel/Overview/Vue/index.html | 1 + .../Demos/TabPanel/Templates/React/index.html | 1 + .../Demos/TabPanel/Templates/Vue/index.html | 1 + .../Demos/Tabs/Overview/React/index.html | 1 + apps/demos/Demos/Tabs/Overview/Vue/index.html | 1 + .../Demos/Tabs/Selection/React/index.html | 1 + .../demos/Demos/Tabs/Selection/Vue/index.html | 1 + .../Demos/TagBox/Grouping/React/index.html | 1 + .../Demos/TagBox/Grouping/Vue/index.html | 1 + .../Demos/TagBox/Overview/React/index.html | 1 + .../Demos/TagBox/Overview/Vue/index.html | 1 + .../TagCountLimitation/React/index.html | 1 + .../TagBox/TagCountLimitation/Vue/index.html | 1 + .../Demos/TextArea/Overview/React/index.html | 1 + .../Demos/TextArea/Overview/Vue/index.html | 1 + .../Demos/TextBox/Overview/React/index.html | 1 + .../Demos/TextBox/Overview/Vue/index.html | 1 + .../Demos/TileView/Basics/React/index.html | 1 + .../Demos/TileView/Basics/Vue/index.html | 1 + .../TileView/Directions/React/index.html | 1 + .../Demos/TileView/Directions/Vue/index.html | 1 + .../TileView/ItemTemplate/React/index.html | 1 + .../TileView/ItemTemplate/Vue/index.html | 1 + .../Demos/Toast/Overview/React/index.html | 1 + .../demos/Demos/Toast/Overview/Vue/index.html | 1 + apps/demos/Demos/Toast/Stack/React/index.html | 1 + apps/demos/Demos/Toast/Stack/Vue/index.html | 1 + .../Toolbar/Adaptability/React/index.html | 1 + .../Demos/Toolbar/Adaptability/Vue/index.html | 1 + .../Demos/Toolbar/Overview/React/index.html | 1 + .../Demos/Toolbar/Overview/Vue/index.html | 1 + .../Demos/Tooltip/Overview/React/index.html | 1 + .../Demos/Tooltip/Overview/Vue/index.html | 1 + .../Demos/TreeList/AIColumns/React/index.html | 1 + .../Demos/TreeList/AIColumns/Vue/index.html | 1 + .../TreeList/Adaptability/React/index.html | 1 + .../TreeList/Adaptability/Vue/index.html | 1 + .../TreeList/BatchEditing/React/index.html | 1 + .../TreeList/BatchEditing/Vue/index.html | 1 + .../TreeList/CellEditing/React/index.html | 1 + .../Demos/TreeList/CellEditing/Vue/index.html | 1 + .../TreeList/ColumnChooser/React/index.html | 1 + .../TreeList/ColumnChooser/Vue/index.html | 1 + .../ColumnHeaderFilter/React/index.html | 1 + .../ColumnHeaderFilter/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../TreeList/FilterModes/React/index.html | 1 + .../Demos/TreeList/FilterModes/Vue/index.html | 1 + .../TreeList/FilterPanel/React/index.html | 1 + .../Demos/TreeList/FilterPanel/Vue/index.html | 1 + .../Demos/TreeList/FilterRow/React/index.html | 1 + .../Demos/TreeList/FilterRow/Vue/index.html | 1 + .../FixedAndStickyColumns/React/index.html | 1 + .../FixedAndStickyColumns/Vue/index.html | 1 + .../TreeList/FocusedRow/React/index.html | 1 + .../Demos/TreeList/FocusedRow/Vue/index.html | 1 + .../TreeList/FormEditing/React/index.html | 1 + .../Demos/TreeList/FormEditing/Vue/index.html | 1 + .../KeyboardNavigation/React/index.html | 1 + .../KeyboardNavigation/Vue/index.html | 1 + .../LoadDataOnDemand/React/index.html | 1 + .../TreeList/LoadDataOnDemand/Vue/index.html | 1 + .../TreeList/LocalReordering/React/index.html | 1 + .../TreeList/LocalReordering/Vue/index.html | 1 + .../MultipleRowSelection/React/index.html | 1 + .../MultipleRowSelection/Vue/index.html | 1 + .../TreeList/MultipleSorting/React/index.html | 1 + .../TreeList/MultipleSorting/Vue/index.html | 1 + .../Demos/TreeList/Overview/React/index.html | 1 + .../Demos/TreeList/Overview/Vue/index.html | 1 + .../Demos/TreeList/Paging/React/index.html | 1 + .../Demos/TreeList/Paging/Vue/index.html | 1 + .../TreeList/PopupEditing/React/index.html | 1 + .../TreeList/PopupEditing/Vue/index.html | 1 + .../TreeList/Reordering/React/index.html | 1 + .../Demos/TreeList/Reordering/Vue/index.html | 1 + .../Demos/TreeList/Resizing/React/index.html | 1 + .../Demos/TreeList/Resizing/Vue/index.html | 1 + .../TreeList/RowEditing/React/index.html | 1 + .../Demos/TreeList/RowEditing/Vue/index.html | 1 + .../TreeList/SearchPanel/React/index.html | 1 + .../Demos/TreeList/SearchPanel/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../SimpleArrayPlainStructure/Vue/index.html | 1 + .../SingleRowSelection/React/index.html | 1 + .../SingleRowSelection/Vue/index.html | 1 + .../StatePersistence/React/index.html | 1 + .../TreeList/StatePersistence/Vue/index.html | 1 + .../TreeList/WebAPIService/React/index.html | 1 + .../TreeList/WebAPIService/Vue/index.html | 1 + .../ContextMenuIntegration/React/index.html | 1 + .../ContextMenuIntegration/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../FlatDataStructure/React/index.html | 1 + .../TreeView/FlatDataStructure/Vue/index.html | 1 + .../React/index.html | 1 + .../HierarchicalDataStructure/Vue/index.html | 1 + .../React/index.html | 1 + .../Vue/index.html | 1 + .../LoadDataOnDemand/React/index.html | 1 + .../TreeView/LoadDataOnDemand/Vue/index.html | 1 + .../TreeViewWithSearchBar/React/index.html | 1 + .../TreeViewWithSearchBar/Vue/index.html | 1 + .../TreeView/VirtualMode/React/index.html | 1 + .../Demos/TreeView/VirtualMode/Vue/index.html | 1 + .../Validation/Overview/React/index.html | 1 + .../Demos/Validation/Overview/Vue/index.html | 1 + .../VectorMap/BubbleMarkers/React/index.html | 1 + .../VectorMap/BubbleMarkers/Vue/index.html | 1 + .../ColorsCustomization/React/index.html | 1 + .../ColorsCustomization/Vue/index.html | 1 + .../CustomAnnotations/React/index.html | 1 + .../CustomAnnotations/Vue/index.html | 1 + .../VectorMap/CustomMapData/React/index.html | 1 + .../VectorMap/CustomMapData/Vue/index.html | 1 + .../CustomProjection/React/index.html | 1 + .../VectorMap/CustomProjection/Vue/index.html | 1 + .../DynamicViewport/React/index.html | 1 + .../VectorMap/DynamicViewport/Vue/index.html | 1 + .../VectorMap/FloorPlan/React/index.html | 1 + .../Demos/VectorMap/FloorPlan/Vue/index.html | 1 + .../VectorMap/ImageMarkers/React/index.html | 1 + .../VectorMap/ImageMarkers/Vue/index.html | 1 + .../Demos/VectorMap/Legend/React/index.html | 1 + .../Demos/VectorMap/Legend/Vue/index.html | 1 + .../VectorMap/MultipleLayers/React/index.html | 1 + .../VectorMap/MultipleLayers/Vue/index.html | 1 + .../Demos/VectorMap/Overview/React/index.html | 1 + .../Demos/VectorMap/Overview/Vue/index.html | 1 + .../Demos/VectorMap/Palette/React/index.html | 1 + .../Demos/VectorMap/Palette/Vue/index.html | 1 + .../VectorMap/PieMarkers/React/index.html | 1 + .../Demos/VectorMap/PieMarkers/Vue/index.html | 1 + .../TooltipsCustomization/React/index.html | 1 + .../TooltipsCustomization/Vue/index.html | 1 + .../ZoomingAndCentering/React/index.html | 1 + .../ZoomingAndCentering/Vue/index.html | 1 + apps/demos/package.json | 1 + apps/demos/project.json | 7 +- .../utils/server/build-vendor-bundles.js | 41 +++ apps/demos/utils/server/csp-bundle-angular.js | 108 +++--- apps/demos/utils/server/csp-bundle.js | 62 ++-- apps/demos/utils/server/csp-check.js | 10 +- apps/demos/utils/server/csp-server.js | 9 +- apps/demos/utils/server/vendor-bundle.js | 323 ++++++++++++++++++ apps/demos/utils/shell/server.js | 6 +- .../utils/ts-to-js-converter/converter.ts | 4 +- 1013 files changed, 1547 insertions(+), 257 deletions(-) create mode 100644 apps/demos/utils/server/build-vendor-bundles.js create mode 100644 apps/demos/utils/server/vendor-bundle.js diff --git a/.github/workflows/visual-tests-demos.yml b/.github/workflows/visual-tests-demos.yml index 8af7a43ffb91..ca8db655c7ea 100644 --- a/.github/workflows/visual-tests-demos.yml +++ b/.github/workflows/visual-tests-demos.yml @@ -273,17 +273,79 @@ jobs: devextreme-vue-installer.tgz retention-days: 1 + 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 +402,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 +422,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 +920,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 +1003,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 +1017,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 +1039,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 +1112,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 +1183,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 +1225,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 +1470,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..d3918016c9d5 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,14 @@ 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). Disabled because combining DxPivotGridModule and +// DxPivotGridFieldChooserModule here triggers NG8023 on CI's daily build, likely a stale +// build cache on that runner — not reproducible locally. @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/project.json b/apps/demos/project.json index cc1a4db40dfb..87a278dcbdde 100644 --- a/apps/demos/project.json +++ b/apps/demos/project.json @@ -114,7 +114,8 @@ "pnpm run generate-ng-umd", "pnpm run generate-devextreme-angular-umd", "pnpm run generate-external-bundles", - "pnpm run generate-tgz-packages" + "pnpm run generate-tgz-packages", + "pnpm run build-vendor-bundles" ], "parallel": false, "cwd": "{projectRoot}" @@ -127,7 +128,9 @@ "{projectRoot}/menuMeta.json", "{projectRoot}/rollup.ng.umd.config.mjs", "{projectRoot}/rollup.devextreme-angular.umd.config.mjs", - "{projectRoot}/rollup.external.bundles.config.mjs" + "{projectRoot}/rollup.external.bundles.config.mjs", + "{projectRoot}/utils/server/build-vendor-bundles.js", + "{projectRoot}/utils/server/vendor-bundle.js" ] } }, 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..568283d242a2 --- /dev/null +++ b/apps/demos/utils/server/build-vendor-bundles.js @@ -0,0 +1,41 @@ +// 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. + +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..d09d272bb7b5 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,13 +29,12 @@ 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. +// Larger batches OOM the CI runner. +const DEFAULT_SAFE_BATCH_SIZE = 12; const BATCH_SIZE = (() => { const fromEnv = parseInt(process.env.CSP_BUNDLE_BATCH_SIZE, 10); if (fromEnv > 0) return fromEnv; - return 12; + return DEFAULT_SAFE_BATCH_SIZE; })(); const BATCH_CONCURRENCY = (() => { @@ -49,11 +43,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 +62,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 +75,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 +97,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 +166,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 +204,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 +261,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 +323,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 +344,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 +352,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 +379,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 +388,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 +406,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 +426,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 +515,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 +558,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 +625,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 +706,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 +722,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 +833,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 +846,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