From dfe12cc7cabdbd45f4e89a8af528893f82b1d477 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 01/17] 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 | 1953 ++++------------- pnpm-workspace.yaml | 2 - 50 files changed, 1118 insertions(+), 4212 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 1b407c0de197..e7b9e9f13204 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 f761c41660c8..ff52d03e04db 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" } ] }, @@ -1329,8 +1323,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" } ] }, @@ -1705,8 +1698,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -1780,8 +1772,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -3555,8 +3546,7 @@ "BackendFiles": [ "DiagramEmployeesController.cs", "InMemoryEmployeesDataContext.cs" - ], - "DisableExternalEditor": true + ] } ] }, @@ -3759,8 +3749,7 @@ "SchedulerDataController.cs", "InMemoryAppointmentsDataContext" ], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" }, { "Title": "SignalR Service", @@ -3778,8 +3767,7 @@ "BackendFiles": [ "SchedulerSignalRController.cs", "SchedulerSignalRHub.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Google Calendar Integration", @@ -5498,8 +5486,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Validation", @@ -5508,8 +5495,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Chunk Upload", @@ -5527,8 +5513,7 @@ "Title": "Custom Drop Zone", "Name": "CustomDropzone", "DocUrl": "", - "Widget": "FileUploader", - "DisableExternalEditor": true + "Widget": "FileUploader" } ] } @@ -6736,8 +6721,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 0ff518019576..8d8037765a08 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -225,8 +225,6 @@ overrides: '@hono/node-server@<2.0.12': ^2.0.12 patchedDependencies: - babel-core@6.26.3: c0f53059bb7026b811209ee3af7fd4c700c900c615d0a0b14981ce911fcf3392 - systemjs-builder@0.16.15: c78b3d7eb812436aa2d80299b3d3f2738f0366b53f710a25956a3762edf73014 testcafe-hammerhead@31.7.8: 8655c07786177d3b611a05abf6b0ea87d32796eb2601f92a800ef041095f264c importers: @@ -238,7 +236,7 @@ importers: version: 23.0.2(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21))) '@nx/jest': specifier: 23.0.2 - version: 23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(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@5.9.3)))(node-notifier@9.0.1)(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21)))(ts-jest@29.1.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(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@5.9.3)))(typescript@5.9.3))(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) + version: 23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(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@5.9.3)))(node-notifier@9.0.1)(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21)))(supports-color@7.2.0)(ts-jest@29.1.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(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@5.9.3)))(typescript@5.9.3))(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) '@nx/js': specifier: 23.0.2 version: 23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21))) @@ -283,7 +281,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) @@ -341,7 +339,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 @@ -362,13 +360,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) @@ -462,9 +460,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 @@ -564,12 +559,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 @@ -606,7 +595,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) @@ -618,7 +607,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 @@ -636,7 +625,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) @@ -660,13 +649,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)) @@ -690,40 +679,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.11(8a02c8ea109c9cf26ed5b6a911da64a7) + version: 1.1.11(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 @@ -738,7 +727,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 @@ -778,12 +767,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 @@ -792,7 +778,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) @@ -1002,7 +988,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(df15cfffce683e1bcb7bfdacad1a6df8) + version: 1.1.11(36a0f49ab754119732d0cad2df2dd8f9) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -1074,7 +1060,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.11(34e25ca7f08f1322a043ec8d80e91c93) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1107,7 +1093,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) @@ -1149,7 +1135,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(3323971c1e531ea4fcc264c8af1d91e5) + version: 1.1.11(c357a05deb2b16688bde72abde48073f) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1176,7 +1162,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 @@ -1351,7 +1337,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 @@ -1490,7 +1476,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.11(21373fd47cc2a7a56720766fc64e98ca) + version: 1.1.11(33b7e80734c34857e30298d4e85d3fef) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1517,7 +1503,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)) @@ -1672,7 +1658,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 @@ -1711,7 +1697,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.11(34e25ca7f08f1322a043ec8d80e91c93) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1831,7 +1817,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 @@ -1873,7 +1859,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.11(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.11(d15b6dd1a804cd08c9b9266c82470597) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1904,7 +1890,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) @@ -1922,16 +1908,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: @@ -1983,7 +1969,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.11(765db8ce296b6314aa6fee62e11efa0e) + version: 1.1.11(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)) @@ -2026,7 +2012,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 @@ -2065,7 +2051,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.11(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.11(d15b6dd1a804cd08c9b9266c82470597) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -2211,7 +2197,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: @@ -4406,33 +4392,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'} @@ -4447,12 +4416,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'} @@ -5787,6 +5750,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' @@ -7651,9 +7615,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==} @@ -8611,10 +8572,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'} @@ -8644,10 +8601,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'} @@ -8656,10 +8609,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'} @@ -8769,10 +8718,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==} @@ -8874,21 +8819,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} @@ -8927,9 +8857,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==} @@ -9006,27 +8933,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: @@ -9059,22 +8968,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==} @@ -9354,10 +9247,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'} @@ -9392,10 +9281,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'} @@ -9709,10 +9594,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'} @@ -9972,10 +9853,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} @@ -10015,19 +9892,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'} @@ -10097,18 +9967,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==} @@ -10220,10 +10078,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'} @@ -10448,9 +10302,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==} @@ -10538,10 +10389,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'} @@ -10651,23 +10498,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: @@ -10965,14 +10798,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==} @@ -11019,9 +10844,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'} @@ -11103,9 +10925,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'} @@ -11200,10 +11019,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'} @@ -11482,10 +11297,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 @@ -11563,9 +11374,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==} @@ -11578,17 +11386,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'} @@ -11700,10 +11500,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'} @@ -11721,10 +11517,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} @@ -11960,10 +11752,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'} @@ -12267,10 +12055,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'} @@ -12858,10 +12642,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'} @@ -13000,9 +12780,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==} @@ -13427,14 +13204,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==} @@ -13466,9 +13235,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==} @@ -13500,10 +13266,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'} @@ -13687,10 +13449,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==} @@ -13925,9 +13683,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} @@ -14035,10 +13790,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'} @@ -14260,14 +14011,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'} @@ -14738,10 +14481,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==} @@ -14883,10 +14622,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'} @@ -15003,18 +14738,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==} @@ -15061,10 +14788,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==} @@ -15082,9 +14805,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==} @@ -15153,10 +14873,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'} @@ -15320,10 +15036,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'} @@ -15749,10 +15461,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'} @@ -15819,12 +15527,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==} @@ -15834,10 +15536,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'} @@ -16015,10 +15713,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'} @@ -16150,11 +15844,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'} @@ -16168,10 +15857,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'} @@ -16223,9 +15908,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==} @@ -16241,9 +15923,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'} @@ -16427,10 +16106,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'} @@ -16454,11 +16129,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'} @@ -16472,14 +16142,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==} @@ -16664,9 +16326,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'} @@ -17619,9 +17278,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==} @@ -17927,13 +17583,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(9f8834ba6c8fdff652d4ac7537fafa50) + '@angular/build': 22.1.2(979134f128935e07df464866dce83b55) '@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 @@ -18270,7 +17926,7 @@ snapshots: - tsx - yaml - '@angular/build@22.1.2(9f8834ba6c8fdff652d4ac7537fafa50)': + '@angular/build@22.1.2(979134f128935e07df464866dce83b55)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.2201.2(chokidar@5.0.0) @@ -18279,8 +17935,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.6.7)(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.6.7)(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 @@ -18300,7 +17956,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.6.7)(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.6.7)(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) @@ -18326,14 +17982,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 @@ -18341,7 +17997,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 @@ -18359,7 +18015,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 @@ -18367,7 +18023,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 @@ -18385,7 +18041,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 @@ -18393,7 +18049,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 @@ -18404,13 +18060,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 @@ -18522,7 +18178,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: @@ -18640,17 +18296,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 @@ -18775,7 +18431,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 @@ -18786,7 +18442,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 @@ -20210,14 +19866,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 @@ -20863,23 +20519,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) @@ -20890,10 +20535,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 @@ -21070,11 +20711,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) @@ -21089,13 +20725,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) @@ -21218,14 +20854,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: @@ -21262,12 +20898,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: @@ -21308,17 +20944,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: @@ -21344,13 +20980,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: @@ -21376,12 +21012,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: @@ -21404,12 +21040,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': {} @@ -21436,12 +21072,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: @@ -21464,12 +21100,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: @@ -21495,13 +21131,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: @@ -21548,20 +21184,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: @@ -21587,12 +21223,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: @@ -21621,13 +21257,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: @@ -21659,14 +21295,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: @@ -21680,9 +21316,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: @@ -22039,7 +21675,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 @@ -22054,7 +21690,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 @@ -22244,7 +21880,7 @@ snapshots: istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 5.0.6 + istanbul-lib-source-maps: 5.0.6(supports-color@7.2.0) istanbul-reports: 3.2.0 jest-message-util: 30.2.0 jest-util: 30.2.0 @@ -22257,7 +21893,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@jest/reporters@30.3.0(node-notifier@9.0.1)': + '@jest/reporters@30.3.0(node-notifier@9.0.1)(supports-color@7.2.0)': dependencies: '@bcoe/v8-coverage': 0.2.3 '@jest/console': 30.3.0 @@ -22274,7 +21910,7 @@ snapshots: istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 - istanbul-lib-source-maps: 5.0.6 + istanbul-lib-source-maps: 5.0.6(supports-color@7.2.0) istanbul-reports: 3.2.0 jest-message-util: 30.3.0 jest-util: 30.3.0 @@ -22647,10 +22283,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' @@ -22727,7 +22363,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 @@ -22737,7 +22373,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 @@ -22759,7 +22395,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 @@ -23012,9 +22648,9 @@ snapshots: yaml: 2.9.0 yargs-parser: 21.1.1 - '@nx/jest@23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(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@5.9.3)))(node-notifier@9.0.1)(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21)))(ts-jest@29.1.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(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@5.9.3)))(typescript@5.9.3))(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)': + '@nx/jest@23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@20.19.37)(babel-plugin-macros@3.1.0)(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@5.9.3)))(node-notifier@9.0.1)(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21)))(supports-color@7.2.0)(ts-jest@29.1.3(@babel/core@7.29.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.29.7))(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@5.9.3)))(typescript@5.9.3))(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: - '@jest/reporters': 30.3.0(node-notifier@9.0.1) + '@jest/reporters': 30.3.0(node-notifier@9.0.1)(supports-color@7.2.0) '@jest/test-result': 30.3.0 '@nx/devkit': 23.0.2(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21))) '@nx/js': 23.0.2(@babel/traverse@7.29.7)(@swc/core@1.15.30(@swc/helpers@0.5.21))(nx@23.0.2(@swc/core@1.15.30(@swc/helpers@0.5.21))) @@ -24392,10 +24028,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 @@ -24599,16 +24235,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)) @@ -24619,7 +24245,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 @@ -24629,7 +24255,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 @@ -24700,7 +24326,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: @@ -24971,8 +24597,6 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/minimist@1.2.5': {} - '@types/ms@2.1.0': {} '@types/node-fetch@2.6.13': @@ -25120,16 +24744,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 @@ -25140,22 +24764,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 @@ -25204,10 +24812,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) @@ -25228,31 +24836,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 @@ -25289,6 +24885,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) @@ -25352,7 +24960,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 @@ -25415,6 +25032,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 @@ -25435,30 +25056,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 @@ -25682,9 +25291,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 @@ -25712,42 +25336,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)) @@ -25792,13 +25405,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 @@ -25825,23 +25438,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: @@ -25962,9 +25575,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.6.7)(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.6.7)(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.6.7)(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.6.7)(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: @@ -26144,13 +25757,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: @@ -26531,8 +26144,6 @@ snapshots: alien-signals@2.0.8: {} - amdefine@1.0.1: {} - ansi-colors@1.1.0: dependencies: ansi-wrap: 0.1.0 @@ -26557,14 +26168,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 @@ -26707,8 +26314,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 @@ -26812,59 +26417,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 @@ -26931,10 +26483,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): @@ -27027,10 +26575,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 @@ -27041,10 +26589,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 @@ -27055,38 +26603,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 @@ -27158,42 +26676,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: {} @@ -27311,7 +26793,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 @@ -27574,13 +27056,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: {} @@ -27628,14 +27103,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 @@ -27943,10 +27410,6 @@ snapshots: commander@2.20.3: {} - commander@2.9.0: - dependencies: - graceful-readlink: 1.0.1 - commander@5.1.0: {} commander@7.2.0: {} @@ -28096,24 +27559,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 @@ -28123,14 +27568,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: @@ -28203,13 +27648,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: @@ -28344,11 +27789,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 @@ -28376,17 +27816,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 @@ -28439,15 +27872,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: @@ -28568,10 +27992,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: {} @@ -28703,7 +28123,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: {} @@ -28833,8 +28253,6 @@ snapshots: dependencies: readable-stream: 2.3.8 - dx-systemjs-vue-browser@1.1.2: {} - eastasianwidth@0.2.0: {} editorconfig@1.0.7: @@ -28924,11 +28342,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 @@ -29102,31 +28515,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 @@ -29193,33 +28583,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) @@ -29229,14 +28610,23 @@ snapshots: transitivePeerDependencies: - eslint-plugin-import - eslint-config-devextreme@1.1.11(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.11(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)) @@ -29244,11 +28634,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.11(21373fd47cc2a7a56720766fc64e98ca): + eslint-config-devextreme@1.1.11(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.11(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) @@ -29264,17 +28673,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.11(2159c8bdfeeb538cd9a87b0f06dfe45f): + eslint-config-devextreme@1.1.11(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)) @@ -29282,18 +28691,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.11(3323971c1e531ea4fcc264c8af1d91e5): + eslint-config-devextreme@1.1.11(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)) @@ -29302,17 +28711,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.11(765db8ce296b6314aa6fee62e11efa0e): + eslint-config-devextreme@1.1.11(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)) @@ -29320,37 +28729,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.11(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.11(df15cfffce683e1bcb7bfdacad1a6df8): + eslint-config-devextreme@1.1.11(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)) @@ -29358,9 +28748,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: @@ -29370,50 +28760,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 @@ -29429,7 +28819,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 @@ -29438,9 +28828,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 @@ -29452,13 +28842,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 @@ -29469,7 +28859,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 @@ -29481,13 +28871,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 @@ -29498,7 +28888,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 @@ -29510,13 +28900,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 @@ -29527,7 +28917,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 @@ -29539,7 +28929,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 @@ -29549,17 +28939,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) @@ -29604,46 +28983,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: @@ -29681,30 +29052,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: @@ -29712,15 +29077,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) @@ -29729,28 +29090,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 @@ -29779,13 +29118,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) @@ -29817,20 +29149,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) @@ -29841,9 +29173,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) @@ -29854,9 +29186,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) @@ -29867,7 +29199,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: @@ -29896,7 +29228,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-array': 0.21.2 '@eslint/config-helpers': 0.4.2 '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.5 @@ -29933,59 +29265,6 @@ snapshots: 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-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 - - 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 @@ -30024,11 +29303,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: {} @@ -30142,7 +29416,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: @@ -30181,10 +29455,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 @@ -30194,7 +29468,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 @@ -30205,8 +29479,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 @@ -30214,10 +29488,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 @@ -30315,10 +29585,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 @@ -30370,7 +29636,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 @@ -30652,14 +29918,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 @@ -30750,8 +30008,6 @@ snapshots: graceful-fs@4.2.11: {} - graceful-readlink@1.0.1: {} - graphemer@1.4.0: {} graphlib@2.1.8: @@ -30763,14 +30019,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: {} @@ -30953,11 +30203,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: {} @@ -30970,10 +30215,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 @@ -31294,8 +30535,6 @@ snapshots: import-lazy@3.1.0: {} - import-lazy@4.0.0: {} - import-local@3.2.0: dependencies: pkg-dir: 4.2.0 @@ -31553,8 +30792,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: @@ -31692,7 +30929,7 @@ snapshots: transitivePeerDependencies: - supports-color - istanbul-lib-source-maps@5.0.6: + istanbul-lib-source-maps@5.0.6(supports-color@7.2.0): dependencies: '@jridgewell/trace-mapping': 0.3.31 debug: 4.4.3(supports-color@7.2.0) @@ -31846,16 +31083,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 @@ -32016,15 +31253,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 @@ -32099,37 +31336,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 @@ -32429,7 +31635,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 @@ -32457,7 +31663,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 @@ -32529,7 +31735,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 @@ -32557,7 +31763,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 @@ -33261,12 +32467,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: @@ -33382,12 +32588,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: @@ -33464,8 +32670,6 @@ snapshots: - supports-color - utf-8-validate - jsesc@1.3.0: {} - jsesc@3.0.2: {} jsesc@3.1.0: {} @@ -33630,8 +32834,6 @@ snapshots: knockout@3.5.3: {} - known-css-properties@0.29.0: {} - known-css-properties@0.35.0: {} known-css-properties@0.37.0: {} @@ -34130,10 +33332,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 @@ -34202,8 +33400,6 @@ snapshots: dependencies: '@types/mdast': 3.0.15 - mdn-data@2.0.30: {} - mdn-data@2.27.1: {} mdn-data@2.28.0: {} @@ -34240,21 +33436,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: {} @@ -34478,12 +33659,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)): @@ -34694,8 +33869,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 @@ -34850,13 +34023,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: {} @@ -35266,10 +34432,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 @@ -35341,7 +34503,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 @@ -35357,7 +34519,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: @@ -35764,8 +34926,6 @@ snapshots: pretty-hrtime@1.0.3: {} - private@0.1.8: {} - probe-image-size@7.3.0: dependencies: lodash.merge: 4.6.2 @@ -35905,8 +35065,6 @@ snapshots: queue-microtask@1.2.3: {} - quick-lru@5.1.1: {} - quill-delta@5.1.0: dependencies: fast-diff: 1.3.0 @@ -36044,12 +35202,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 @@ -36057,13 +35209,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 @@ -36125,11 +35270,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: {} @@ -36151,8 +35291,6 @@ snapshots: regenerate@1.4.2: {} - regenerator-runtime@0.11.1: {} - regenerator-runtime@0.13.11: optional: true @@ -36256,10 +35394,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: {} @@ -36483,7 +35617,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 @@ -36503,8 +35637,6 @@ snapshots: dependencies: tslib: 2.8.1 - rsvp@3.6.2: {} - run-applescript@7.1.0: {} run-parallel@1.2.0: @@ -36777,7 +35909,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 @@ -36821,7 +35953,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 @@ -36933,13 +36065,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 @@ -36957,8 +36089,6 @@ snapshots: sisteransi@1.0.5: {} - slash@1.0.0: {} - slash@3.0.0: {} slice-ansi@4.0.0: @@ -37055,14 +36185,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 @@ -37078,10 +36200,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: {} @@ -37331,10 +36449,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 @@ -37398,12 +36512,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 @@ -37415,60 +36529,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 @@ -37478,92 +36592,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: 16.22.0(typescript@5.9.3) - stylelint@15.11.0(typescript@4.9.5): + 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) - 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@15.11.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@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 @@ -37572,44 +36638,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 @@ -37618,7 +36682,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 @@ -37714,8 +36778,6 @@ snapshots: dependencies: minimist: 1.2.8 - supports-color@2.0.0: {} - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -37761,28 +36823,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: {} @@ -37795,10 +36835,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 @@ -37946,7 +36982,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) @@ -38034,7 +37070,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) @@ -38048,7 +37084,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) @@ -38117,7 +37153,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 @@ -38204,8 +37240,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 @@ -38232,14 +37266,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 @@ -38248,10 +37274,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: {} @@ -38324,11 +37346,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 @@ -38581,7 +37603,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 @@ -38595,7 +37617,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: @@ -38653,7 +37675,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) @@ -38692,8 +37714,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 @@ -39131,7 +38151,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.6.7)(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.6.7)(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 @@ -39139,7 +38159,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 @@ -39155,19 +38175,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) @@ -39181,10 +38188,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 @@ -39591,7 +38598,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 @@ -40099,16 +39106,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 7aecde32381a..57d5ae5ceb33 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -138,5 +138,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 abf8c37176292b8633c0cb807d73d75eb3f99923 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 02/17] 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 8c4327c49ee01542200f08062cfad795a740b085 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 03/17] 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 | 1939 ++++------------- pnpm-workspace.yaml | 2 - 50 files changed, 1111 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 1b407c0de197..e7b9e9f13204 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 f761c41660c8..ff52d03e04db 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" } ] }, @@ -1329,8 +1323,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" } ] }, @@ -1705,8 +1698,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -1780,8 +1772,7 @@ "MvcDescription": "", "NetCoreDescription": "", "MvcAdditionalFiles": [], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" } ] }, @@ -3555,8 +3546,7 @@ "BackendFiles": [ "DiagramEmployeesController.cs", "InMemoryEmployeesDataContext.cs" - ], - "DisableExternalEditor": true + ] } ] }, @@ -3759,8 +3749,7 @@ "SchedulerDataController.cs", "InMemoryAppointmentsDataContext" ], - "DemoType": "Web", - "DisableExternalEditor": true + "DemoType": "Web" }, { "Title": "SignalR Service", @@ -3778,8 +3767,7 @@ "BackendFiles": [ "SchedulerSignalRController.cs", "SchedulerSignalRHub.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Google Calendar Integration", @@ -5498,8 +5486,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Validation", @@ -5508,8 +5495,7 @@ "Widget": "FileUploader", "BackendFiles": [ "FileUploaderController.cs" - ], - "DisableExternalEditor": true + ] }, { "Title": "Chunk Upload", @@ -5527,8 +5513,7 @@ "Title": "Custom Drop Zone", "Name": "CustomDropzone", "DocUrl": "", - "Widget": "FileUploader", - "DisableExternalEditor": true + "Widget": "FileUploader" } ] } @@ -6736,8 +6721,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 20a4ed193927..eebd537af6ba 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.11(8a02c8ea109c9cf26ed5b6a911da64a7) + version: 1.1.11(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.11(df15cfffce683e1bcb7bfdacad1a6df8) + version: 1.1.11(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.11(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.11(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.11(3323971c1e531ea4fcc264c8af1d91e5) + version: 1.1.11(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.11(21373fd47cc2a7a56720766fc64e98ca) + version: 1.1.11(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.11(036b0b25bc375413172c4d0cf61bea25) + version: 1.1.11(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.11(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.11(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.11(765db8ce296b6314aa6fee62e11efa0e) + version: 1.1.11(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.11(2159c8bdfeeb538cd9a87b0f06dfe45f) + version: 1.1.11(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'} @@ -5789,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' @@ -7653,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==} @@ -8613,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'} @@ -8646,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'} @@ -8658,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'} @@ -8771,10 +8720,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==} @@ -8876,21 +8821,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} @@ -8929,9 +8859,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==} @@ -9008,27 +8935,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: @@ -9061,22 +8970,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==} @@ -9356,10 +9249,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'} @@ -9394,10 +9283,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'} @@ -9711,10 +9596,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'} @@ -9971,10 +9852,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} @@ -10014,19 +9891,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'} @@ -10096,18 +9966,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==} @@ -10219,10 +10077,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'} @@ -10447,9 +10301,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==} @@ -10537,10 +10388,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'} @@ -10650,23 +10497,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: @@ -10964,14 +10797,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==} @@ -11018,9 +10843,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'} @@ -11102,9 +10924,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'} @@ -11199,10 +11018,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'} @@ -11481,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 @@ -11562,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==} @@ -11577,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'} @@ -11699,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'} @@ -11720,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} @@ -11954,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'} @@ -12261,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'} @@ -12849,10 +12633,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'} @@ -12991,9 +12771,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==} @@ -13399,14 +13176,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==} @@ -13438,9 +13207,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==} @@ -13472,10 +13238,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'} @@ -13659,10 +13421,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==} @@ -13897,9 +13655,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} @@ -14007,10 +13762,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'} @@ -14232,14 +13983,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'} @@ -14706,10 +14449,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==} @@ -14851,10 +14590,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'} @@ -14971,18 +14706,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==} @@ -15029,10 +14756,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==} @@ -15050,9 +14773,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==} @@ -15121,10 +14841,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'} @@ -15288,10 +15004,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'} @@ -15717,10 +15429,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'} @@ -15787,12 +15495,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==} @@ -15802,10 +15504,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'} @@ -15983,10 +15681,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'} @@ -16118,11 +15812,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'} @@ -16136,10 +15825,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'} @@ -16191,9 +15876,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==} @@ -16209,9 +15891,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'} @@ -16395,10 +16074,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'} @@ -16422,11 +16097,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'} @@ -16440,14 +16110,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==} @@ -16632,9 +16294,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'} @@ -17587,9 +17246,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==} @@ -17895,13 +17551,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 @@ -18238,7 +17894,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) @@ -18247,8 +17903,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 @@ -18268,7 +17924,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) @@ -18294,14 +17950,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 @@ -18309,7 +17965,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 @@ -18327,7 +17983,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 @@ -18335,7 +17991,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 @@ -18353,7 +18009,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 @@ -18361,7 +18017,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 @@ -18372,13 +18028,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 @@ -18490,7 +18146,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: @@ -18608,17 +18264,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 @@ -18743,7 +18399,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 @@ -18754,7 +18410,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 @@ -20178,14 +19834,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 @@ -20831,23 +20487,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) @@ -20858,10 +20503,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 @@ -21038,11 +20679,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) @@ -21057,13 +20693,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) @@ -21186,14 +20822,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: @@ -21230,12 +20866,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: @@ -21276,17 +20912,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: @@ -21312,13 +20948,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: @@ -21344,12 +20980,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: @@ -21372,12 +21008,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': {} @@ -21404,12 +21040,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: @@ -21432,12 +21068,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: @@ -21463,13 +21099,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: @@ -21516,20 +21152,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: @@ -21555,12 +21191,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: @@ -21589,13 +21225,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: @@ -21627,14 +21263,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: @@ -21648,9 +21284,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: @@ -22007,7 +21643,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 @@ -22022,7 +21658,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 @@ -22615,10 +22251,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' @@ -22695,7 +22331,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 @@ -22705,7 +22341,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 @@ -22727,7 +22363,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 @@ -24360,10 +23996,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 @@ -24567,16 +24203,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)) @@ -24587,7 +24213,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 @@ -24597,7 +24223,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 @@ -24668,7 +24294,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: @@ -24939,8 +24565,6 @@ snapshots: '@types/minimatch@5.1.2': {} - '@types/minimist@1.2.5': {} - '@types/ms@2.1.0': {} '@types/node-fetch@2.6.13': @@ -25088,16 +24712,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 @@ -25108,22 +24732,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 @@ -25172,10 +24780,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) @@ -25196,31 +24804,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 @@ -25257,6 +24853,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) @@ -25320,7 +24928,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 @@ -25383,6 +25000,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 @@ -25403,30 +25024,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 @@ -25650,9 +25259,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 @@ -25680,42 +25304,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)) @@ -25760,13 +25373,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 @@ -25793,23 +25406,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: @@ -25930,9 +25543,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: @@ -26112,13 +25725,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: @@ -26499,8 +26112,6 @@ snapshots: alien-signals@2.0.8: {} - amdefine@1.0.1: {} - ansi-colors@1.1.0: dependencies: ansi-wrap: 0.1.0 @@ -26525,14 +26136,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 @@ -26675,8 +26282,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 @@ -26780,59 +26385,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 @@ -26899,10 +26451,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): @@ -26995,10 +26543,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 @@ -27009,10 +26557,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 @@ -27023,38 +26571,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 @@ -27126,42 +26644,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: {} @@ -27279,7 +26761,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 @@ -27542,13 +27024,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: {} @@ -27596,14 +27071,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 @@ -27911,10 +27378,6 @@ snapshots: commander@2.20.3: {} - commander@2.9.0: - dependencies: - graceful-readlink: 1.0.1 - commander@5.1.0: {} commander@7.2.0: {} @@ -28060,24 +27523,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 @@ -28087,14 +27532,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: @@ -28167,13 +27612,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: @@ -28308,11 +27753,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 @@ -28340,17 +27780,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 @@ -28403,15 +27836,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: @@ -28532,10 +27956,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: {} @@ -28667,7 +28087,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: {} @@ -28797,8 +28217,6 @@ snapshots: dependencies: readable-stream: 2.3.8 - dx-systemjs-vue-browser@1.1.2: {} - eastasianwidth@0.2.0: {} editorconfig@1.0.7: @@ -28888,11 +28306,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 @@ -29066,31 +28479,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 @@ -29157,33 +28547,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) @@ -29193,14 +28574,23 @@ snapshots: transitivePeerDependencies: - eslint-plugin-import - eslint-config-devextreme@1.1.11(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.11(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)) @@ -29208,11 +28598,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.11(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.11(21373fd47cc2a7a56720766fc64e98ca): + eslint-config-devextreme@1.1.11(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) @@ -29228,17 +28637,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.11(2159c8bdfeeb538cd9a87b0f06dfe45f): + eslint-config-devextreme@1.1.11(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)) @@ -29246,18 +28655,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.11(3323971c1e531ea4fcc264c8af1d91e5): + eslint-config-devextreme@1.1.11(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)) @@ -29266,17 +28675,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.11(765db8ce296b6314aa6fee62e11efa0e): + eslint-config-devextreme@1.1.11(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)) @@ -29284,37 +28693,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.11(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.11(df15cfffce683e1bcb7bfdacad1a6df8): + eslint-config-devextreme@1.1.11(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)) @@ -29322,9 +28712,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: @@ -29334,50 +28724,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 @@ -29393,7 +28783,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 @@ -29402,9 +28792,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 @@ -29416,13 +28806,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 @@ -29433,7 +28823,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 @@ -29445,13 +28835,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 @@ -29462,7 +28852,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 @@ -29474,13 +28864,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 @@ -29491,7 +28881,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 @@ -29503,7 +28893,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 @@ -29513,17 +28903,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) @@ -29568,46 +28947,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: @@ -29645,30 +29016,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: @@ -29676,15 +29041,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) @@ -29693,28 +29054,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 @@ -29743,13 +29082,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) @@ -29781,20 +29113,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) @@ -29805,9 +29137,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) @@ -29818,9 +29150,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) @@ -29831,7 +29163,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: @@ -29860,7 +29192,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-array': 0.21.2 '@eslint/config-helpers': 0.4.2 '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.5 @@ -29897,59 +29229,6 @@ snapshots: 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-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 - - 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 @@ -29988,11 +29267,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: {} @@ -30106,7 +29380,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: @@ -30145,10 +29419,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 @@ -30158,7 +29432,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 @@ -30169,8 +29443,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 @@ -30178,10 +29452,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 @@ -30279,10 +29549,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 @@ -30334,7 +29600,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 @@ -30616,14 +29882,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 @@ -30714,8 +29972,6 @@ snapshots: graceful-fs@4.2.11: {} - graceful-readlink@1.0.1: {} - graphemer@1.4.0: {} graphlib@2.1.8: @@ -30727,14 +29983,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: {} @@ -30917,11 +30167,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: {} @@ -30934,10 +30179,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 @@ -31255,8 +30496,6 @@ snapshots: import-lazy@3.1.0: {} - import-lazy@4.0.0: {} - import-local@3.2.0: dependencies: pkg-dir: 4.2.0 @@ -31514,8 +30753,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: @@ -31805,16 +31042,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 @@ -31975,15 +31212,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 @@ -32058,37 +31295,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 @@ -32388,7 +31594,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 @@ -32416,7 +31622,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 @@ -32488,7 +31694,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 @@ -32516,7 +31722,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 @@ -33220,12 +32426,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: @@ -33341,12 +32547,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: @@ -33423,8 +32629,6 @@ snapshots: - supports-color - utf-8-validate - jsesc@1.3.0: {} - jsesc@3.0.2: {} jsesc@3.1.0: {} @@ -33589,8 +32793,6 @@ snapshots: knockout@3.5.3: {} - known-css-properties@0.29.0: {} - known-css-properties@0.35.0: {} known-css-properties@0.37.0: {} @@ -34043,10 +33245,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 @@ -34115,8 +33313,6 @@ snapshots: dependencies: '@types/mdast': 3.0.15 - mdn-data@2.0.30: {} - mdn-data@2.27.1: {} mdn-data@2.28.0: {} @@ -34153,21 +33349,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: {} @@ -34391,12 +33572,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)): @@ -34607,8 +33782,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 @@ -34765,13 +33938,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: {} @@ -35181,10 +34347,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 @@ -35256,7 +34418,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 @@ -35272,7 +34434,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: @@ -35676,8 +34838,6 @@ snapshots: pretty-hrtime@1.0.3: {} - private@0.1.8: {} - probe-image-size@7.3.0: dependencies: lodash.merge: 4.6.2 @@ -35817,8 +34977,6 @@ snapshots: queue-microtask@1.2.3: {} - quick-lru@5.1.1: {} - quill-delta@5.1.0: dependencies: fast-diff: 1.3.0 @@ -35956,12 +35114,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 @@ -35969,13 +35121,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 @@ -36037,11 +35182,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: {} @@ -36063,8 +35203,6 @@ snapshots: regenerate@1.4.2: {} - regenerator-runtime@0.11.1: {} - regenerator-runtime@0.13.11: optional: true @@ -36168,10 +35306,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: {} @@ -36395,7 +35529,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 @@ -36415,8 +35549,6 @@ snapshots: dependencies: tslib: 2.8.1 - rsvp@3.6.2: {} - run-applescript@7.1.0: {} run-parallel@1.2.0: @@ -36689,7 +35821,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 @@ -36733,7 +35865,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 @@ -36845,13 +35977,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 @@ -36869,8 +36001,6 @@ snapshots: sisteransi@1.0.5: {} - slash@1.0.0: {} - slash@3.0.0: {} slice-ansi@4.0.0: @@ -36967,14 +36097,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 @@ -36990,10 +36112,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: {} @@ -37243,10 +36361,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 @@ -37310,12 +36424,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 @@ -37327,60 +36441,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 @@ -37390,92 +36504,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 @@ -37484,44 +36550,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 @@ -37530,7 +36594,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 @@ -37626,8 +36690,6 @@ snapshots: dependencies: minimist: 1.2.8 - supports-color@2.0.0: {} - supports-color@5.5.0: dependencies: has-flag: 3.0.0 @@ -37673,28 +36735,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: {} @@ -37707,10 +36747,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 @@ -37858,7 +36894,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) @@ -37946,7 +36982,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) @@ -37960,7 +36996,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) @@ -38029,7 +37065,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 @@ -38116,8 +37152,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 @@ -38144,14 +37178,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 @@ -38160,10 +37186,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: {} @@ -38236,11 +37258,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 @@ -38493,7 +37515,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 @@ -38507,7 +37529,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: @@ -38565,7 +37587,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) @@ -38604,8 +37626,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 @@ -39043,7 +38063,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 @@ -39051,7 +38071,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 @@ -39067,19 +38087,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) @@ -39093,10 +38100,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 @@ -39503,7 +38510,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 @@ -40011,16 +39018,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 3f0dc5c26848..598b2186259f 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 1f8646d8ea8f600ea92c773be4f82276a64a0a6a 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 04/17] 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 77d7ad0731494611a1b440c36dfda441377ea0f8 Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Fri, 14 Aug 2026 16:09:58 +0200 Subject: [PATCH 05/17] remove remove unused bundle scripts --- apps/demos/package.json | 6 +- apps/demos/project.json | 8 +- .../rollup.devextreme-angular.umd.config.mjs | 89 -- apps/demos/rollup.external.bundles.config.mjs | 162 --- apps/demos/rollup.ng.umd.config.mjs | 159 --- pnpm-lock.yaml | 1255 +++++++++++------ 6 files changed, 859 insertions(+), 820 deletions(-) delete mode 100644 apps/demos/rollup.devextreme-angular.umd.config.mjs delete mode 100644 apps/demos/rollup.external.bundles.config.mjs delete mode 100644 apps/demos/rollup.ng.umd.config.mjs diff --git a/apps/demos/package.json b/apps/demos/package.json index 5f59605a5908..dba8e4f7e978 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -99,7 +99,6 @@ "@eslint/js": "catalog:", "@rollup/plugin-babel": "6.1.0", "@rollup/plugin-node-resolve": "15.3.1", - "@rollup/plugin-replace": "5.0.7", "@stylistic/eslint-plugin": "catalog:", "@testcafe-community/axe": "3.5.0", "@types/eslint": "8.56.12", @@ -160,11 +159,8 @@ "add-demo": "node utils/interactive/add-demo.js", "link-repos": "node utils/interactive/link-repos.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", - "generate-devextreme-angular-umd": "rollup -c ./rollup.devextreme-angular.umd.config.mjs --silent", - "generate-external-bundles": "rollup -c ./rollup.external.bundles.config.mjs --silent", - "prepare-js": "node scripts/prepare-js-configs.js && pnpm run generate-ng-umd && pnpm run generate-devextreme-angular-umd && pnpm run generate-external-bundles && pnpm run generate-tgz-packages", + "prepare-js": "node scripts/prepare-js-configs.js && pnpm run generate-tgz-packages", "eslint": "eslint", "lint-html": "prettier --check .", "lint-js": "eslint . --ignore-pattern 'Demos'", diff --git a/apps/demos/project.json b/apps/demos/project.json index cc1a4db40dfb..1a4e6239ee0b 100644 --- a/apps/demos/project.json +++ b/apps/demos/project.json @@ -111,9 +111,6 @@ "pnpm nx build devextreme", "pnpm nx run-many --targets=pack --projects=devextreme-angular,devextreme-react,devextreme-vue --parallel", "node scripts/prepare-js-configs.js", - "pnpm run generate-ng-umd", - "pnpm run generate-devextreme-angular-umd", - "pnpm run generate-external-bundles", "pnpm run generate-tgz-packages" ], "parallel": false, @@ -124,10 +121,7 @@ "{projectRoot}/scripts/**/*", "{projectRoot}/utils/shared/config-helper.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" + "{projectRoot}/menuMeta.json" ] } }, diff --git a/apps/demos/rollup.devextreme-angular.umd.config.mjs b/apps/demos/rollup.devextreme-angular.umd.config.mjs deleted file mode 100644 index b321bc7f6897..000000000000 --- a/apps/demos/rollup.devextreme-angular.umd.config.mjs +++ /dev/null @@ -1,89 +0,0 @@ -import { nodeResolve } from '@rollup/plugin-node-resolve'; -import replace from '@rollup/plugin-replace'; -import babel from '@rollup/plugin-babel'; -import fs from 'fs-extra'; - -const baseDir = './node_modules/devextreme-angular/fesm2022/'; -const fileNames = fs.readdirSync(baseDir) - .filter((fileName) => fileName.indexOf('mjs.map') !== -1) - .filter((fileName) => - fileName.indexOf('devextreme-angular-ui') === 0 - || fileName.indexOf('devextreme-angular-common') === 0 - ) - .map((fileName) => fileName.replace('.mjs.map', '')); - -const inputs = { - 'devextreme-angular': `${baseDir}devextreme-angular.mjs`, - 'devextreme-angular-core': `${baseDir}devextreme-angular-core.mjs`, - 'devextreme-angular-http': `${baseDir}devextreme-angular-http.mjs`, - 'devextreme-angular-core-tokens': `${baseDir}devextreme-angular-core-tokens.mjs`, - ...fileNames.reduce((acc, name) => { - acc[name] = `${baseDir}${name}.mjs`; - - return acc; - }, {}), -}; - -const getLibName = (file) => file - .replace(/^devextreme-angular-ui-/,'devextreme-angular/ui/') - .replace(/^devextreme-angular-common-ai-integration-/,'devextreme-angular-common-ai-integration/') - .replace(/^devextreme-angular-common-core-events-/,'devextreme-angular/common/core/events/') - .replace(/^devextreme-angular-common-core-/,'devextreme-angular/common/core/') - .replace(/^devextreme-angular-common-data-/,'devextreme-angular/common/data/') - .replace(/^devextreme-angular-common-export-/,'devextreme-angular/common/export/') - .replace(/^devextreme-angular-common-/,'devextreme-angular/common/') - .replace(/^devextreme-angular-/,'devextreme-angular/'); - -export default Object.entries(inputs).map(([module, file]) => - ({ - input: file, - treeshake: { - moduleSideEffects: true - }, - context: 'window', - output: { - file: `./bundles/devextreme-angular/${module}.umd.js`, - name: `${getLibName(module)}`, - format: "umd", - amd: { - id: getLibName(module) - }, - globals: { - '@angular/core': 'ng.core', - '@angular/common': 'ng.common', - '@angular/forms': 'ng.forms', - "@angular/platform-browser": 'ng.platformBrowser', - }, - plugins: [ - { - name: 'add-esModule-marker', - renderChunk(code) { - return code.replace(/(\}\)\);)([^\;]*)$/, 'Object.defineProperty(exports, \'__esModule\', { value: true });\n$1$2'); - } - } - ] - }, - external: id => { - return /^@angular\//.test(id) - || /^zonejs/.test(id) - || /^devextreme\//.test(id) - || /^devextreme-angular\//.test(id) - }, - - plugins: [ - replace({ - preventAssignment: true, - 'process.env.NODE_ENV': JSON.stringify( 'production' ) - }), - nodeResolve({ - preferBuiltins: false, - browser: true - }), - babel({ - babelHelpers: 'bundled', - presets: ['@babel/preset-env'], - }), - ] - }) -) -; diff --git a/apps/demos/rollup.external.bundles.config.mjs b/apps/demos/rollup.external.bundles.config.mjs deleted file mode 100644 index c3af1dc9a8c8..000000000000 --- a/apps/demos/rollup.external.bundles.config.mjs +++ /dev/null @@ -1,162 +0,0 @@ -import resolve from '@rollup/plugin-node-resolve'; -import commonjs from '@rollup/plugin-commonjs'; -import babel from '@rollup/plugin-babel'; - -const NG_BASE_DIR = './node_modules/'; -const OUTPUT_DIR = './bundles/externals/'; -const format = 'es'; -const plugins = [ - resolve(), - commonjs(), - babel({ - babelHelpers: 'bundled', - presets: [ - ['@babel/preset-env', { targets: { - chrome: '58', - ie: '11' - } }] - ], - }) -]; - -export default [ - { - input: NG_BASE_DIR + `openai/index.js`, - output: { - file: OUTPUT_DIR + `openai.bundle.js`, - format: 'umd', - name: 'openai', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `unified/index.js`, - output: { - file: OUTPUT_DIR + `unified/unified.bundle.js`, - format, - name: 'unified', - globals: { }, - }, - external: [], - plugins : [ - resolve({ - preferBuiltins: false, - browser: true, - }) - ].concat(plugins.slice(1)), - }, - { - input: NG_BASE_DIR + `remark-parse/index.js`, - output: { - file: OUTPUT_DIR + `unified/remark-parse.bundle.js`, - format, - name: 'remarkParse', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `remark-rehype/index.js`, - output: { - file: OUTPUT_DIR + `unified/remark-rehype.bundle.js`, - format, - name: 'remarkRehype', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `remark-stringify/index.js`, - output: { - file: OUTPUT_DIR + `unified/remark-stringify.bundle.js`, - format, - name: 'remarkStringify', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `rehype-stringify/index.js`, - output: { - file: OUTPUT_DIR + `unified/rehype-stringify.bundle.js`, - format, - name: 'rehypeStringify', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `rehype-parse/index.js`, - output: { - file: OUTPUT_DIR + `unified/rehype-parse.bundle.js`, - format, - name: 'rehypeParse', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `rehype-remark/index.js`, - output: { - file: OUTPUT_DIR + `unified/rehype-remark.bundle.js`, - format, - name: 'rehypeRemark', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `rehype-minify-whitespace/index.js`, - output: { - file: OUTPUT_DIR + `unified/rehype-minify-whitespace.bundle.js`, - format, - name: 'rehypeRemark', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `canvg/dist/index.js`, - output: { - file: OUTPUT_DIR + `canvg.bundle.js`, - format, - name: 'canvg', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `zod/lib/index.mjs`, - output: { - file: OUTPUT_DIR + `zod.bundle.js`, - format: 'umd', - name: 'zod', - exports: 'named', - globals: { }, - }, - external: [], - plugins, - }, - { - input: NG_BASE_DIR + `zod-to-json-schema/dist/esm/index.js`, - output: { - file: OUTPUT_DIR + `zod-to-json-schema.bundle.js`, - format: 'umd', - name: 'zodToJsonSchema', - exports: 'named', - globals: { zod: 'zod' }, - }, - external: ['zod'], - plugins, - }, -]; diff --git a/apps/demos/rollup.ng.umd.config.mjs b/apps/demos/rollup.ng.umd.config.mjs deleted file mode 100644 index a8696b380d08..000000000000 --- a/apps/demos/rollup.ng.umd.config.mjs +++ /dev/null @@ -1,159 +0,0 @@ -const NG_BASE_DIR = './node_modules/'; -const OUTPUT_DIR = './bundles/'; - -export default [ - // animations - { - input: NG_BASE_DIR + `@angular/animations/fesm2022/animations.mjs`, - output: { - file: OUTPUT_DIR + `@angular/animations.umd.js`, - format: "umd", - name: "ng.animations", - globals: { - "@angular/animations": "ng.animations", - "@angular/common": "ng.common", - "@angular/core": "ng.core", - }, - }, - external: ["@angular/core", "@angular/common"], - }, - // common - { - input: NG_BASE_DIR + "@angular/common/fesm2022/common.mjs", - output: { - file: OUTPUT_DIR + `@angular/common.umd.js`, - format: "umd", - name: "ng.common", - globals: { - "@angular/common": "ng.common", - "@angular/common/http": "ng.common.http", - "@angular/core": "ng.core", - }, - }, - external: ["@angular/core"], - }, - // common.http - { - input: NG_BASE_DIR + "@angular/common/fesm2022/http.mjs", - output: { - file: OUTPUT_DIR + `@angular/common-http.umd.js`, - format: "umd", - name: "ng.common.http", - globals: { - "@angular/common/http": "ng.common.http", - "@angular/common": "ng.common", - "@angular/core": "ng.core", - rxjs: "rxjs", - "rxjs/operators": "rxjs.operators", - }, - }, - external: ["@angular/core", "@angular/common", "rxjs", "rxjs/operators"], - }, - // compiler - { - input: NG_BASE_DIR + "@angular/compiler/fesm2022/compiler.mjs", - output: { - file: OUTPUT_DIR + `@angular/compiler.umd.js`, - format: "umd", - name: "ng.compiler", - }, - }, - // core - { - input: NG_BASE_DIR + "@angular/core/fesm2022/core.mjs", - output: { - file: OUTPUT_DIR + `@angular/core.umd.js`, - format: "umd", - name: "ng.core", - globals: { - "@angular/core": "ng.core", - rxjs: "rxjs", - "rxjs/operators": "rxjs.operators", - }, - }, - external: ["rxjs", "rxjs/operators", "zone.js"], - }, - { - input: NG_BASE_DIR + "@angular/core/fesm2022/primitives-signals.mjs", - output: { - file: OUTPUT_DIR + `@angular/core.primitives.signals.umd.js`, - format: "umd", - name: "ng.core.primitives.signals", - globals: { - "@angular/core": "ng.core", - rxjs: "rxjs", - "rxjs/operators": "rxjs.operators", - }, - }, - external: ["rxjs", "rxjs/operators", "zone.js"], - }, - { - input: NG_BASE_DIR + "@angular/core/fesm2022/primitives-di.mjs", - output: { - file: OUTPUT_DIR + `@angular/core.primitives.di.umd.js`, - format: "umd", - name: "ng.core.primitives.di", - globals: { - "@angular/core": "ng.core", - rxjs: "rxjs", - "rxjs/operators": "rxjs.operators", - }, - }, - external: ["rxjs", "rxjs/operators", "zone.js"], - }, - - // forms - { - input: NG_BASE_DIR + "@angular/forms/fesm2022/forms.mjs", - output: { - file: OUTPUT_DIR + `@angular/forms.umd.js`, - format: "umd", - name: "ng.forms", - globals: { - "@angular/core": "ng.core", - "@angular/common": "ng.common", - rxjs: "rxjs", - "rxjs/operators": "rxjs.operators", - }, - }, - external: ["@angular/core", "@angular/common", "rxjs", "rxjs/operators"], - }, - // platform-browser - { - input: - NG_BASE_DIR + "@angular/platform-browser/fesm2022/platform-browser.mjs", - output: { - file: OUTPUT_DIR + `@angular/platform-browser.umd.js`, - format: "umd", - name: "ng.platformBrowser", - globals: { - "@angular/common": "ng.common", - "@angular/common/http": "ng.common.http", - "@angular/core": "ng.core", - }, - }, - external: ["@angular/core", "@angular/common", "@angular/common/http"], - }, - // platform-browser-dynamic - { - input: - NG_BASE_DIR + "@angular/platform-browser-dynamic/fesm2022/platform-browser-dynamic.mjs", - output: { - file: OUTPUT_DIR + `@angular/platform-browser-dynamic.umd.js`, - format: "umd", - name: "ng.platformBrowserDynamic", - globals: { - "@angular/compiler": "ng.compiler", - "@angular/common": "ng.common", - "@angular/core": "ng.core", - "@angular/platform-browser": "ng.platformBrowser", - }, - }, - external: [ - "@angular/compiler", - "@angular/core", - "@angular/common", - "@angular/platform-browser", - ], - }, -]; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eebd537af6ba..c86d7bef964c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -283,7 +283,7 @@ importers: version: 0.8.5 stylelint: specifier: 'catalog:' - version: 16.22.0(typescript@5.9.3) + version: 16.22.0(supports-color@7.2.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) @@ -341,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) + version: 20.3.24(@types/node@20.11.17)(chokidar@4.0.3)(supports-color@7.2.0) '@types/jasmine': specifier: 5.1.4 version: 5.1.4 @@ -597,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)) + version: 7.29.7(@babel/core@7.29.7)(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) '@babel/preset-env': specifier: 7.29.7 version: 7.29.7(@babel/core@7.29.7) @@ -609,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)) + version: 1.4.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) '@eslint/eslintrc': specifier: 'catalog:' version: 3.3.5 @@ -622,12 +622,9 @@ importers: '@rollup/plugin-node-resolve': specifier: 15.3.1 version: 15.3.1(rollup@4.59.0) - '@rollup/plugin-replace': - specifier: 5.0.7 - 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)) + version: 5.10.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) '@testcafe-community/axe': specifier: 3.5.0 version: 3.5.0(axe-core@4.11.3)(testcafe@3.7.5) @@ -651,13 +648,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))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + 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) '@typescript-eslint/parser': specifier: 'catalog:' - version: 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.3) + 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) '@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))(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) + 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) '@vue/tsconfig': specifier: 0.9.1 version: 0.9.1(typescript@6.0.3)(vue@3.5.32(typescript@6.0.3)) @@ -681,40 +678,40 @@ importers: version: 2.0.17(testcafe@3.7.5) eslint: specifier: 'catalog:' - version: 9.39.4(jiti@2.6.1) + version: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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))(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)) + 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)) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(1ab26e2fdac0a1462882017b4fe7b289) + version: 1.1.11(8a02c8ea109c9cf26ed5b6a911da64a7) eslint-plugin-deprecation: specifier: 3.0.0 - version: 3.0.0(eslint@9.39.4(jiti@2.6.1))(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))(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))(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1)) + 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)) 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))(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) + 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) 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)) + version: 7.37.5(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) eslint-plugin-react-hooks: specifier: 5.2.0 - version: 5.2.0(eslint@9.39.4(jiti@2.6.1)) + version: 5.2.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) eslint-plugin-react-perf: specifier: 3.3.3 - version: 3.3.3(eslint@9.39.4(jiti@2.6.1)) + version: 3.3.3(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) eslint-plugin-spellcheck: specifier: 0.0.20 - version: 0.0.20(eslint@9.39.4(jiti@2.6.1)) + version: 0.0.20(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) eslint-plugin-vue: specifier: 'catalog:' - 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))) + 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)) express: specifier: 4.22.1 version: 4.22.1 @@ -729,7 +726,7 @@ importers: version: 14.1.1(supports-color@7.2.0) jest: specifier: 29.7.0 - 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)) + 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)) jest-environment-node: specifier: 29.7.0 version: 29.7.0 @@ -771,7 +768,7 @@ importers: version: 38.0.0(stylelint@16.22.0(typescript@6.0.3)) testcafe: specifier: 'catalog:' - version: 3.7.5 + version: 3.7.5(supports-color@7.2.0) testcafe-reporter-spec-time: specifier: 4.0.0 version: 4.0.0 @@ -780,7 +777,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)) + version: 10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0) vue-tsc: specifier: 3.0.8 version: 3.0.8(typescript@6.0.3) @@ -990,7 +987,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(36a0f49ab754119732d0cad2df2dd8f9) + version: 1.1.11(df15cfffce683e1bcb7bfdacad1a6df8) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -1062,7 +1059,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(34e25ca7f08f1322a043ec8d80e91c93) + version: 1.1.11(036b0b25bc375413172c4d0cf61bea25) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1137,7 +1134,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(c357a05deb2b16688bde72abde48073f) + version: 1.1.11(3323971c1e531ea4fcc264c8af1d91e5) eslint-migration-utils: specifier: workspace:* version: link:../../packages/eslint-migration-utils @@ -1164,7 +1161,7 @@ importers: version: 0.12.1 testcafe: specifier: 'catalog:' - version: 3.7.5 + version: 3.7.5(supports-color@7.2.0) testcafe-reporter-spec-time: specifier: 4.0.0 version: 4.0.0 @@ -1339,7 +1336,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 + version: 3.7.5(supports-color@7.2.0) typescript: specifier: 5.8.3 version: 5.8.3 @@ -1478,7 +1475,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.11(33b7e80734c34857e30298d4e85d3fef) + version: 1.1.11(21373fd47cc2a7a56720766fc64e98ca) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1505,7 +1502,7 @@ importers: version: 3.3.0 eslint-plugin-perfectionist: specifier: 'catalog:' - version: 5.9.1(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + version: 5.9.1(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5) eslint-plugin-qunit: specifier: 'catalog:' version: 8.2.6(eslint@9.39.4(jiti@2.6.1)) @@ -1699,7 +1696,7 @@ importers: version: 9.39.4(jiti@2.6.1) eslint-config-devextreme: specifier: 'catalog:' - version: 1.1.11(34e25ca7f08f1322a043ec8d80e91c93) + version: 1.1.11(036b0b25bc375413172c4d0cf61bea25) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1861,7 +1858,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.11(d15b6dd1a804cd08c9b9266c82470597) + version: 1.1.11(2159c8bdfeeb538cd9a87b0f06dfe45f) eslint-migration-utils: specifier: workspace:* version: link:../eslint-migration-utils @@ -1892,7 +1889,7 @@ importers: devDependencies: '@stylistic/stylelint-plugin': specifier: 3.1.3 - version: 3.1.3(stylelint@16.22.0(typescript@5.9.3)) + version: 3.1.3(stylelint@16.22.0(typescript@6.0.3)) autoprefixer: specifier: 10.5.0 version: 10.5.0(postcss@8.5.23) @@ -1910,16 +1907,16 @@ importers: version: 1.93.3 stylelint: specifier: 'catalog:' - version: 16.22.0(typescript@5.9.3) + version: 16.22.0(typescript@6.0.3) stylelint-config-standard-scss: specifier: 14.0.0 - version: 14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@5.9.3)) + version: 14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)) stylelint-scss: specifier: 6.10.0 - version: 6.10.0(stylelint@16.22.0(typescript@5.9.3)) + version: 6.10.0(stylelint@16.22.0(typescript@6.0.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@5.9.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@6.0.3)))(typescript@5.9.3) packages/devextreme-themebuilder: dependencies: @@ -1971,7 +1968,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.11(0bf0cf098d0a3b928d7fd275ba37129c) + version: 1.1.11(765db8ce296b6314aa6fee62e11efa0e) 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)) @@ -2053,7 +2050,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.11(d15b6dd1a804cd08c9b9266c82470597) + version: 1.1.11(2159c8bdfeeb538cd9a87b0f06dfe45f) eslint-plugin-i18n: specifier: 'catalog:' version: 2.4.0 @@ -2199,7 +2196,7 @@ importers: version: link:../devextreme/artifacts/npm/devextreme testcafe: specifier: 'catalog:' - version: 3.7.5 + version: 3.7.5(supports-color@7.2.0) packages: @@ -4394,16 +4391,33 @@ 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'} @@ -4418,6 +4432,12 @@ 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'} @@ -6919,15 +6939,6 @@ packages: rollup: optional: true - '@rollup/plugin-replace@5.0.7': - resolution: {integrity: sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^4.59.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/pluginutils@3.1.0': resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} @@ -7617,6 +7628,9 @@ 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==} @@ -8720,6 +8734,10 @@ 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==} @@ -9249,6 +9267,10 @@ 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'} @@ -9852,6 +9874,10 @@ 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} @@ -9966,6 +9992,18 @@ 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==} @@ -11018,6 +11056,10 @@ 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'} @@ -11385,6 +11427,10 @@ 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==} @@ -11516,6 +11562,10 @@ 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} @@ -11746,6 +11796,10 @@ 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'} @@ -12049,6 +12103,10 @@ 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'} @@ -12771,6 +12829,9 @@ 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==} @@ -13176,6 +13237,14 @@ 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==} @@ -13207,6 +13276,9 @@ 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==} @@ -13238,6 +13310,10 @@ 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'} @@ -13421,6 +13497,10 @@ 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==} @@ -13762,6 +13842,10 @@ 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'} @@ -14590,6 +14674,10 @@ 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'} @@ -14706,10 +14794,18 @@ 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==} @@ -14756,6 +14852,10 @@ 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==} @@ -15812,6 +15912,11 @@ 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'} @@ -16110,6 +16215,10 @@ 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-trailing-lines@2.1.0: resolution: {integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==} @@ -17950,14 +18059,14 @@ snapshots: - tsx - yaml - '@angular/cli@20.3.24(@types/node@20.11.17)(chokidar@4.0.3)': + '@angular/cli@20.3.24(@types/node@20.11.17)(chokidar@4.0.3)(supports-color@7.2.0)': 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(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -17965,7 +18074,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4 + pacote: 21.0.4(supports-color@7.2.0) resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -17983,7 +18092,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(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -17991,7 +18100,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4 + pacote: 21.0.4(supports-color@7.2.0) resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -18009,7 +18118,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(zod@4.1.13) + '@modelcontextprotocol/sdk': 1.26.0(supports-color@7.2.0)(zod@4.1.13) '@schematics/angular': 20.3.24(chokidar@4.0.3) '@yarnpkg/lockfile': 1.1.0 algoliasearch: 5.35.0 @@ -18017,7 +18126,7 @@ snapshots: jsonc-parser: 3.3.1 listr2: 9.0.1 npm-package-arg: 13.0.0 - pacote: 21.0.4 + pacote: 21.0.4(supports-color@7.2.0) resolve: 1.22.10 semver: 7.7.2 yargs: 18.0.0 @@ -18264,6 +18373,14 @@ 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))': + 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-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))': dependencies: '@babel/core': 7.29.7 @@ -18399,7 +18516,7 @@ snapshots: regexpu-core: 6.4.0 semver: 7.8.5 - '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.29.7)': + '@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.29.7)(supports-color@7.2.0)': dependencies: '@babel/core': 7.29.7 '@babel/helper-compilation-targets': 7.29.7 @@ -18410,7 +18527,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.29.7)': + '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.29.7)(supports-color@7.2.0)': dependencies: '@babel/core': 7.29.7 '@babel/helper-compilation-targets': 7.29.7 @@ -19834,14 +19951,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)': + '@babel/plugin-transform-runtime@7.23.3(@babel/core@7.29.7)(supports-color@7.2.0)': 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) - babel-plugin-polyfill-regenerator: 0.5.5(@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) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -20487,12 +20604,23 @@ 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) @@ -20503,6 +20631,10 @@ 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 @@ -20679,6 +20811,11 @@ 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) @@ -20693,13 +20830,13 @@ snapshots: '@eslint-stylistic/metadata@2.13.0': {} - '@eslint/compat@1.4.1(eslint@9.39.4(jiti@2.6.1))': + '@eslint/compat@1.4.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))': dependencies: '@eslint/core': 0.17.0 optionalDependencies: - eslint: 9.39.4(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) - '@eslint/config-array@0.21.2': + '@eslint/config-array@0.21.2(supports-color@7.2.0)': dependencies: '@eslint/object-schema': 2.1.7 debug: 4.4.3(supports-color@7.2.0) @@ -21643,7 +21780,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@5.9.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@6.0.3))': dependencies: '@jest/console': 30.2.0 '@jest/pattern': 30.0.1 @@ -21658,7 +21795,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@5.9.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@6.0.3)) jest-haste-map: 30.2.0 jest-message-util: 30.2.0 jest-regex-util: 30.0.1 @@ -22331,7 +22468,7 @@ snapshots: '@lezer/lr': 1.4.10 json5: 2.2.3 - '@modelcontextprotocol/sdk@1.26.0(zod@4.1.13)': + '@modelcontextprotocol/sdk@1.26.0(supports-color@7.2.0)(zod@4.1.13)': dependencies: '@hono/node-server': 2.0.12(hono@4.13.0) ajv: 8.20.0 @@ -22341,7 +22478,7 @@ snapshots: cross-spawn: 7.0.6 eventsource: 3.0.7 eventsource-parser: 3.0.8 - express: 5.2.1 + express: 5.2.1(supports-color@7.2.0) express-rate-limit: 8.3.2(express@5.2.1) hono: 4.13.0 jose: 6.2.2 @@ -22363,7 +22500,7 @@ snapshots: cross-spawn: 7.0.6 eventsource: 3.0.7 eventsource-parser: 3.0.8 - express: 5.2.1 + express: 5.2.1(supports-color@7.2.0) express-rate-limit: 8.3.2(express@5.2.1) hono: 4.13.0 jose: 6.2.2 @@ -23833,13 +23970,6 @@ snapshots: optionalDependencies: rollup: 4.59.0 - '@rollup/plugin-replace@5.0.7(rollup@4.59.0)': - dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.59.0) - magic-string: 0.30.21 - optionalDependencies: - rollup: 4.59.0 - '@rollup/pluginutils@3.1.0(rollup@4.59.0)': dependencies: '@types/estree': 0.0.39 @@ -23996,10 +24126,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@sigstore/tuf@4.0.2': + '@sigstore/tuf@4.0.2(supports-color@7.2.0)': dependencies: '@sigstore/protobuf-specs': 0.5.1 - tuf-js: 4.1.0 + tuf-js: 4.1.0(supports-color@7.2.0) transitivePeerDependencies: - supports-color @@ -24203,6 +24333,16 @@ 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)) @@ -24213,7 +24353,7 @@ snapshots: estraverse: 5.3.0 picomatch: 4.0.4 - '@stylistic/stylelint-plugin@3.1.3(stylelint@16.22.0(typescript@5.9.3))': + '@stylistic/stylelint-plugin@3.1.3(stylelint@16.22.0(typescript@6.0.3))': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 @@ -24223,7 +24363,7 @@ snapshots: postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 style-search: 0.1.0 - stylelint: 16.22.0(typescript@5.9.3) + stylelint: 16.22.0(typescript@6.0.3) '@swc/core-darwin-arm64@1.15.30': optional: true @@ -24294,7 +24434,7 @@ snapshots: dependencies: axe-core: 4.11.3 chalk: 2.4.2 - testcafe: 3.7.5 + testcafe: 3.7.5(supports-color@7.2.0) '@testing-library/dom@10.4.1': dependencies: @@ -24565,6 +24705,8 @@ snapshots: '@types/minimatch@5.1.2': {} + '@types/minimist@1.2.5': {} + '@types/ms@2.1.0': {} '@types/node-fetch@2.6.13': @@ -24712,16 +24854,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)(typescript@6.0.3))(eslint@9.39.4(jiti@2.6.1))(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))(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': 6.21.0(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))(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)(typescript@6.0.3) - '@typescript-eslint/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1))(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/utils': 6.21.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.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) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -24732,6 +24874,22 @@ 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 @@ -24780,10 +24938,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@6.0.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@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@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.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) @@ -24804,19 +24962,31 @@ snapshots: - supports-color - typescript - '@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/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)': 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) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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 @@ -24853,18 +25023,6 @@ 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) @@ -24928,16 +25086,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@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)': + '@typescript-eslint/project-service@8.62.0(supports-color@7.2.0)(typescript@4.9.5)': dependencies: '@typescript-eslint/tsconfig-utils': 8.62.0(typescript@4.9.5) '@typescript-eslint/types': 8.62.0 @@ -25000,10 +25149,6 @@ 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 @@ -25024,18 +25169,30 @@ 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)(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)': 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))(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) debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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 @@ -25259,24 +25416,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@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)': + '@typescript-eslint/typescript-estree@8.62.0(supports-color@7.2.0)(typescript@4.9.5)': dependencies: - '@typescript-eslint/project-service': 8.62.0(typescript@4.9.5) + '@typescript-eslint/project-service': 8.62.0(supports-color@7.2.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 @@ -25304,31 +25446,42 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@9.39.4(jiti@2.6.1))(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)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) '@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) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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)(typescript@6.0.3)': + '@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)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) + '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)) '@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) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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)) @@ -25373,13 +25526,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1))(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))(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)) + '@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.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) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) typescript: 6.0.3 transitivePeerDependencies: - supports-color @@ -25406,23 +25559,23 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3)': + '@typescript-eslint/utils@8.58.2(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)) '@typescript-eslint/scope-manager': 8.58.2 '@typescript-eslint/types': 8.58.2 - '@typescript-eslint/typescript-estree': 8.58.2(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.58.2(supports-color@7.2.0)(typescript@6.0.3) eslint: 9.39.4(jiti@2.6.1) - typescript: 5.9.3 + typescript: 6.0.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.62.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5)': + '@typescript-eslint/utils@8.62.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(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(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 8.62.0(supports-color@7.2.0)(typescript@4.9.5) eslint: 9.39.4(jiti@2.6.1) typescript: 4.9.5 transitivePeerDependencies: @@ -25725,13 +25878,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))(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/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)': 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)(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) + '@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) optionalDependencies: typescript: 6.0.3 transitivePeerDependencies: @@ -26282,6 +26435,8 @@ 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 @@ -26543,10 +26698,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.29.7): + babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.29.7)(supports-color@7.2.0): dependencies: '@babel/core': 7.29.7 - '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.29.7) + '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.29.7)(supports-color@7.2.0) core-js-compat: 3.49.0 transitivePeerDependencies: - supports-color @@ -26557,10 +26712,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): + babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.29.7)(supports-color@7.2.0): dependencies: '@babel/core': 7.29.7 - '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.7) + '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.29.7)(supports-color@7.2.0) transitivePeerDependencies: - supports-color @@ -26761,7 +26916,7 @@ snapshots: transitivePeerDependencies: - supports-color - body-parser@2.3.0: + body-parser@2.3.0(supports-color@7.2.0): dependencies: bytes: 3.1.2 content-type: 2.0.0 @@ -27024,6 +27179,13 @@ 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: {} @@ -27523,6 +27685,24 @@ 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 @@ -27532,14 +27712,14 @@ snapshots: optionalDependencies: typescript: 5.9.3 - cosmiconfig@9.0.1(typescript@4.9.5): + cosmiconfig@8.3.6(typescript@6.0.3): 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: 4.9.5 + typescript: 6.0.3 cosmiconfig@9.0.1(typescript@5.8.3): dependencies: @@ -27612,13 +27792,13 @@ snapshots: - supports-color - ts-node - 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)): + 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)): 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@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-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-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -27753,6 +27933,11 @@ 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 @@ -27836,6 +28021,15 @@ 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: @@ -28087,7 +28281,7 @@ snapshots: color-diff: 1.3.0 looks-same: 7.3.0 pngjs: 6.0.0 - testcafe: 3.7.5 + testcafe: 3.7.5(supports-color@7.2.0) tslib: 2.8.1 device-specs@1.0.1: {} @@ -28547,69 +28741,50 @@ 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))(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)(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: 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: 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)) 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@6.0.3))(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@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) - 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-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-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) - '@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-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)) - 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@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-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))(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)) + '@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-devextreme@1.1.11(0bf0cf098d0a3b928d7fd275ba37129c): + 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: - '@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) 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-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@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-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)) + transitivePeerDependencies: + - eslint-plugin-import - eslint-config-devextreme@1.1.11(1ab26e2fdac0a1462882017b4fe7b289): + eslint-config-devextreme@1.1.11(036b0b25bc375413172c4d0cf61bea25): 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) + '@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@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-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)) @@ -28617,11 +28792,11 @@ 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@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-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-config-devextreme@1.1.11(33b7e80734c34857e30298d4e85d3fef): + eslint-config-devextreme@1.1.11(21373fd47cc2a7a56720766fc64e98ca): 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) @@ -28637,17 +28812,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: 16.22.0(typescript@4.9.5) - stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@4.9.5)) + 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.11(34e25ca7f08f1322a043ec8d80e91c93): + eslint-config-devextreme@1.1.11(2159c8bdfeeb538cd9a87b0f06dfe45f): 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@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)) @@ -28655,18 +28830,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@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-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.11(36a0f49ab754119732d0cad2df2dd8f9): + eslint-config-devextreme@1.1.11(3323971c1e531ea4fcc264c8af1d91e5): 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@5.9.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@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)) @@ -28675,17 +28850,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: 16.22.0(typescript@5.9.3) - stylelint-config-standard: 38.0.0(stylelint@16.22.0(typescript@5.9.3)) + stylelint: 15.11.0(typescript@6.0.3) + stylelint-config-standard: 38.0.0(stylelint@15.11.0(typescript@6.0.3)) - eslint-config-devextreme@1.1.11(c357a05deb2b16688bde72abde48073f): + eslint-config-devextreme@1.1.11(765db8ce296b6314aa6fee62e11efa0e): 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) + '@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@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-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)) @@ -28693,18 +28868,37 @@ 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: 16.22.0(typescript@5.9.3) - stylelint-config-standard: 38.0.0(stylelint@16.22.0(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@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.11(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-config-devextreme@1.1.11(d15b6dd1a804cd08c9b9266c82470597): + eslint-config-devextreme@1.1.11(df15cfffce683e1bcb7bfdacad1a6df8): 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@6.0.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@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.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-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)) @@ -28712,9 +28906,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@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-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-import-resolver-node@0.3.10: dependencies: @@ -28724,50 +28918,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))(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)(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)): dependencies: debug: 3.2.7 optionalDependencies: - '@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-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-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@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))(typescript@5.8.3) + '@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@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@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@5.9.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-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@6.0.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@6.0.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-plugin-deprecation@3.0.0(eslint@9.39.4(jiti@2.6.1))(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))(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)(typescript@6.0.3) - eslint: 9.39.4(jiti@2.6.1) + '@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) ts-api-utils: 1.4.3(typescript@6.0.3) tslib: 2.8.1 typescript: 6.0.3 @@ -28783,7 +28977,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))(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)(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)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28792,9 +28986,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.39.4(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) 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)(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)) hasown: 2.0.4 is-core-module: 2.16.2 is-glob: 4.0.3 @@ -28806,13 +29000,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)(supports-color@7.2.0))(supports-color@7.2.0)(typescript@6.0.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@4.9.5))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28823,7 +29017,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@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 @@ -28835,13 +29029,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@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@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.8.3))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28852,7 +29046,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@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 @@ -28864,13 +29058,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.9.3) + '@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@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@5.9.3))(eslint@9.39.4(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.9 @@ -28881,7 +29075,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@6.0.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 @@ -28893,7 +29087,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@6.0.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 @@ -28903,6 +29097,17 @@ 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) @@ -28947,38 +29152,46 @@ 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@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-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): dependencies: - '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(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@5.9.3))(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.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 + 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 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@5.9.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@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): dependencies: - '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) + '@typescript-eslint/utils': 8.58.2(eslint@9.39.4(jiti@2.6.1))(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@5.9.3))(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@5.9.3))(eslint@9.39.4(jiti@2.6.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@20.19.37)(typescript@5.9.3)) - typescript: 5.9.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@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)(supports-color@7.2.0)): dependencies: - '@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 + 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 eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.6.1)): dependencies: @@ -29016,24 +29229,30 @@ snapshots: eslint-plugin-no-only-tests@3.3.0: {} - eslint-plugin-perfectionist@5.9.1(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5): + eslint-plugin-perfectionist@5.9.1(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(typescript@4.9.5): dependencies: - '@typescript-eslint/utils': 8.62.0(eslint@9.39.4(jiti@2.6.1))(typescript@4.9.5) + '@typescript-eslint/utils': 8.62.0(eslint@9.39.4(jiti@2.6.1))(supports-color@7.2.0)(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)): + eslint-plugin-react-hooks@5.2.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0)): dependencies: - eslint: 9.39.4(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) eslint-plugin-react-hooks@7.0.1(eslint@9.39.4(jiti@2.6.1)): dependencies: @@ -29046,6 +29265,10 @@ snapshots: 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) @@ -29054,6 +29277,28 @@ 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 @@ -29082,6 +29327,13 @@ 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) @@ -29113,20 +29365,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))(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)(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)): dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@9.39.4(jiti@2.6.1)) - eslint: 9.39.4(jiti@2.6.1) + '@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) 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)) + vue-eslint-parser: 10.0.0(eslint@9.39.4(jiti@2.6.1)(supports-color@7.2.0))(supports-color@7.2.0) 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)(supports-color@7.2.0))(supports-color@7.2.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.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@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)) eslint: 9.39.4(jiti@2.6.1) @@ -29137,9 +29389,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@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.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@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) @@ -29150,9 +29402,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.9.3) + '@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@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-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) @@ -29163,7 +29415,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@6.0.3) + '@typescript-eslint/parser': 8.52.0(eslint@9.39.4(jiti@2.6.1))(typescript@5.9.3) eslint-scope@5.1.1: dependencies: @@ -29192,7 +29444,48 @@ 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 + '@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-helpers': 0.4.2 '@eslint/core': 0.17.0 '@eslint/eslintrc': 3.3.5 @@ -29380,7 +29673,7 @@ snapshots: express-rate-limit@8.3.2(express@5.2.1): dependencies: - express: 5.2.1 + express: 5.2.1(supports-color@7.2.0) ip-address: 10.4.0 express@4.22.1: @@ -29419,10 +29712,10 @@ snapshots: transitivePeerDependencies: - supports-color - express@5.2.1: + express@5.2.1(supports-color@7.2.0): dependencies: accepts: 2.0.0 - body-parser: 2.3.0 + body-parser: 2.3.0(supports-color@7.2.0) content-disposition: 1.1.0 content-type: 1.0.5 cookie: 0.7.2 @@ -29432,7 +29725,7 @@ snapshots: encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 - finalhandler: 2.1.1 + finalhandler: 2.1.1(supports-color@7.2.0) fresh: 2.0.0 http-errors: 2.0.1 merge-descriptors: 2.0.0 @@ -29443,8 +29736,8 @@ snapshots: proxy-addr: 2.0.7 qs: 6.15.3 range-parser: 1.3.0 - router: 2.2.0 - send: 1.2.1 + router: 2.2.0(supports-color@7.2.0) + send: 1.2.1(supports-color@7.2.0) serve-static: 2.2.1 statuses: 2.0.2 type-is: 2.1.0 @@ -29549,6 +29842,10 @@ 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 @@ -29600,7 +29897,7 @@ snapshots: transitivePeerDependencies: - supports-color - finalhandler@2.1.1: + finalhandler@2.1.1(supports-color@7.2.0): dependencies: debug: 4.4.3(supports-color@7.2.0) encodeurl: 2.0.0 @@ -29983,6 +30280,8 @@ snapshots: handle-thing@2.0.1: {} + hard-rejection@2.1.0: {} + harmony-reflect@1.6.2: {} has-bigints@1.1.0: {} @@ -30179,6 +30478,10 @@ 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 @@ -30496,6 +30799,8 @@ snapshots: import-lazy@3.1.0: {} + import-lazy@4.0.0: {} + import-local@3.2.0: dependencies: pkg-dir: 4.2.0 @@ -30753,6 +31058,8 @@ 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: @@ -31042,16 +31349,16 @@ snapshots: - supports-color - ts-node - 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)): + 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)): 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@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)) + 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)) exit: 0.1.2 import-local: 3.2.0 - 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-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-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -31212,15 +31519,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@5.9.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@6.0.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@5.9.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@6.0.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@5.9.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@6.0.3)) jest-util: 30.2.0 jest-validate: 30.2.0 yargs: 17.7.2 @@ -31295,6 +31602,37 @@ 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 @@ -31594,7 +31932,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@5.9.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@6.0.3)): dependencies: '@babel/core': 7.29.7 '@jest/get-type': 30.1.0 @@ -31622,7 +31960,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@5.9.3) + ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -31694,7 +32032,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@5.9.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@6.0.3)): dependencies: '@babel/core': 7.29.7 '@jest/get-type': 30.1.0 @@ -31722,7 +32060,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@5.9.3) + ts-node: 10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -32426,12 +32764,12 @@ snapshots: - supports-color - ts-node - 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)): + 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)): 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@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-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)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -32547,12 +32885,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@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@26.1.1)(typescript@6.0.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@5.9.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@6.0.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@5.9.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@6.0.3)) optionalDependencies: node-notifier: 9.0.1 transitivePeerDependencies: @@ -32793,6 +33131,8 @@ snapshots: knockout@3.5.3: {} + known-css-properties@0.29.0: {} + known-css-properties@0.35.0: {} known-css-properties@0.37.0: {} @@ -33245,6 +33585,10 @@ 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 @@ -33313,6 +33657,8 @@ snapshots: dependencies: '@types/mdast': 3.0.15 + mdn-data@2.0.30: {} + mdn-data@2.27.1: {} mdn-data@2.28.0: {} @@ -33349,6 +33695,21 @@ 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: {} @@ -33572,6 +33933,12 @@ 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)): @@ -33938,6 +34305,13 @@ 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: {} @@ -34418,7 +34792,7 @@ snapshots: package-json-from-dist@1.0.1: {} - pacote@21.0.4: + pacote@21.0.4(supports-color@7.2.0): dependencies: '@npmcli/git': 7.0.2 '@npmcli/installed-package-contents': 4.0.0 @@ -34434,7 +34808,7 @@ snapshots: npm-registry-fetch: 19.1.1 proc-log: 6.1.0 promise-retry: 2.0.1 - sigstore: 4.1.1 + sigstore: 4.1.1(supports-color@7.2.0) ssri: 13.0.1 tar: 7.5.21 transitivePeerDependencies: @@ -34977,6 +35351,8 @@ snapshots: queue-microtask@1.2.3: {} + quick-lru@5.1.1: {} + quill-delta@5.1.0: dependencies: fast-diff: 1.3.0 @@ -35114,6 +35490,12 @@ 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 @@ -35121,6 +35503,13 @@ 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 @@ -35182,6 +35571,11 @@ 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: {} @@ -35529,7 +35923,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.59.0 fsevents: 2.3.3 - router@2.2.0: + router@2.2.0(supports-color@7.2.0): dependencies: debug: 4.4.3(supports-color@7.2.0) depd: 2.0.0 @@ -35821,7 +36215,7 @@ snapshots: transitivePeerDependencies: - supports-color - send@1.2.1: + send@1.2.1(supports-color@7.2.0): dependencies: debug: 4.4.3(supports-color@7.2.0) encodeurl: 2.0.0 @@ -35865,7 +36259,7 @@ snapshots: encodeurl: 2.0.0 escape-html: 1.0.3 parseurl: 1.3.3 - send: 1.2.1 + send: 1.2.1(supports-color@7.2.0) transitivePeerDependencies: - supports-color @@ -35977,13 +36371,13 @@ snapshots: dependencies: jquery: 4.0.0 - sigstore@4.1.1: + sigstore@4.1.1(supports-color@7.2.0): 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 + '@sigstore/tuf': 4.0.2(supports-color@7.2.0) '@sigstore/verify': 3.1.1 transitivePeerDependencies: - supports-color @@ -36424,12 +36818,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@5.9.3)): + stylelint-config-recommended-scss@14.1.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)): dependencies: postcss-scss: 4.0.9(postcss@8.5.23) - 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)) + 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)) optionalDependencies: postcss: 8.5.23 @@ -36441,60 +36835,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@5.9.3)): + stylelint-config-recommended@14.0.1(stylelint@16.22.0(typescript@6.0.3)): dependencies: - stylelint: 16.22.0(typescript@5.9.3) + stylelint: 16.22.0(typescript@6.0.3) - stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@4.9.5)): + stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@4.9.5)): dependencies: - stylelint: 16.22.0(typescript@4.9.5) + stylelint: 15.11.0(typescript@4.9.5) - stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@5.8.3)): + stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@5.8.3)): dependencies: - stylelint: 16.22.0(typescript@5.8.3) + stylelint: 15.11.0(typescript@5.8.3) - stylelint-config-recommended@16.0.0(stylelint@16.22.0(typescript@5.9.3)): + stylelint-config-recommended@16.0.0(stylelint@15.11.0(typescript@6.0.3)): dependencies: - stylelint: 16.22.0(typescript@5.9.3) + stylelint: 15.11.0(typescript@6.0.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@5.9.3)): + stylelint-config-standard-scss@14.0.0(postcss@8.5.23)(stylelint@16.22.0(typescript@6.0.3)): dependencies: - 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)) + 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)) optionalDependencies: postcss: 8.5.23 - stylelint-config-standard@36.0.1(stylelint@16.22.0(typescript@5.9.3)): + stylelint-config-standard@36.0.1(stylelint@16.22.0(typescript@6.0.3)): dependencies: - stylelint: 16.22.0(typescript@5.9.3) - stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@5.9.3)) + stylelint: 16.22.0(typescript@6.0.3) + stylelint-config-recommended: 14.0.1(stylelint@16.22.0(typescript@6.0.3)) - stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@4.9.5)): + stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@4.9.5)): dependencies: - stylelint: 16.22.0(typescript@4.9.5) - stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@4.9.5)) + stylelint: 15.11.0(typescript@4.9.5) + stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@4.9.5)) - stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@5.8.3)): + stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@5.8.3)): dependencies: - stylelint: 16.22.0(typescript@5.8.3) - stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@5.8.3)) + stylelint: 15.11.0(typescript@5.8.3) + stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@5.8.3)) - stylelint-config-standard@38.0.0(stylelint@16.22.0(typescript@5.9.3)): + stylelint-config-standard@38.0.0(stylelint@15.11.0(typescript@6.0.3)): dependencies: - stylelint: 16.22.0(typescript@5.9.3) - stylelint-config-recommended: 16.0.0(stylelint@16.22.0(typescript@5.9.3)) + stylelint: 15.11.0(typescript@6.0.3) + stylelint-config-recommended: 16.0.0(stylelint@15.11.0(typescript@6.0.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@5.9.3)): + stylelint-scss@6.10.0(stylelint@16.22.0(typescript@6.0.3)): dependencies: css-tree: 3.2.1 is-plain-object: 5.0.0 @@ -36504,44 +36898,46 @@ 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@5.9.3) + stylelint: 16.22.0(typescript@6.0.3) - stylelint@16.22.0(typescript@4.9.5): + stylelint@15.11.0(typescript@4.9.5): dependencies: - '@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 + '@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: 9.0.1(typescript@4.9.5) + cosmiconfig: 8.3.6(typescript@4.9.5) css-functions-list: 3.3.3 - css-tree: 3.2.1 + 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: 10.1.4 + 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: 7.0.5 + ignore: 5.3.2 + import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.37.0 + known-css-properties: 0.29.0 mathml-tag-names: 2.1.3 - meow: 13.2.0 + 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: 7.0.1(postcss@8.5.23) - postcss-selector-parser: 7.1.1 + 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 @@ -36550,42 +36946,44 @@ snapshots: - supports-color - typescript - stylelint@16.22.0(typescript@5.8.3): + stylelint@15.11.0(typescript@5.8.3): dependencies: - '@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 + '@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: 9.0.1(typescript@5.8.3) + cosmiconfig: 8.3.6(typescript@5.8.3) css-functions-list: 3.3.3 - css-tree: 3.2.1 + 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: 10.1.4 + 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: 7.0.5 + ignore: 5.3.2 + import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.37.0 + known-css-properties: 0.29.0 mathml-tag-names: 2.1.3 - meow: 13.2.0 + 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: 7.0.1(postcss@8.5.23) - postcss-selector-parser: 7.1.1 + 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 @@ -36594,7 +36992,53 @@ snapshots: - supports-color - typescript - stylelint@16.22.0(typescript@5.9.3): + stylelint@15.11.0(typescript@6.0.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) + balanced-match: 2.0.0 + colord: 2.9.3 + cosmiconfig: 8.3.6(typescript@6.0.3) + 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(supports-color@7.2.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 @@ -36894,7 +37338,7 @@ snapshots: glob: 7.2.3 minimatch: 3.1.5 - testcafe-browser-tools@2.0.26: + testcafe-browser-tools@2.0.26(supports-color@7.2.0): dependencies: array-find: 1.0.0 debug: 4.4.3(supports-color@7.2.0) @@ -36982,7 +37426,7 @@ snapshots: testcafe-selector-generator@0.1.0: {} - testcafe@3.7.5: + testcafe@3.7.5(supports-color@7.2.0): dependencies: '@babel/core': 7.29.7 '@babel/plugin-proposal-decorators': 7.29.7(@babel/core@7.29.7) @@ -36996,7 +37440,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) + '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.29.7)(supports-color@7.2.0) '@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) @@ -37065,7 +37509,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 + testcafe-browser-tools: 2.0.26(supports-color@7.2.0) testcafe-hammerhead: 31.7.8(patch_hash=8655c07786177d3b611a05abf6b0ea87d32796eb2601f92a800ef041095f264c) testcafe-legacy-api: 5.1.8 testcafe-reporter-json: 2.2.0 @@ -37186,6 +37630,8 @@ snapshots: trim-lines@3.0.1: {} + trim-newlines@4.1.1: {} + trim-trailing-lines@2.1.0: {} triple-beam@1.4.1: {} @@ -37258,11 +37704,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@5.9.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@6.0.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@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@26.1.1)(typescript@6.0.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -37515,7 +37961,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@5.9.3): + ts-node@10.9.2(@swc/core@1.15.30(@swc/helpers@0.5.21))(@types/node@26.1.1)(typescript@6.0.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.12 @@ -37529,7 +37975,7 @@ snapshots: create-require: 1.1.1 diff: 4.0.4 make-error: 1.3.6 - typescript: 5.9.3 + typescript: 6.0.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: @@ -37587,7 +38033,7 @@ snapshots: tty-browserify@0.0.1: {} - tuf-js@4.1.0: + tuf-js@4.1.0(supports-color@7.2.0): dependencies: '@tufjs/models': 4.1.0 debug: 4.4.3(supports-color@7.2.0) @@ -38087,6 +38533,19 @@ 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) @@ -38100,10 +38559,10 @@ snapshots: transitivePeerDependencies: - supports-color - vue-eslint-parser@9.4.3(eslint@9.39.4(jiti@2.6.1))(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): dependencies: debug: 4.4.3(supports-color@7.2.0) - eslint: 9.39.4(jiti@2.6.1) + eslint: 9.39.4(jiti@2.6.1)(supports-color@7.2.0) eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 From 8d0814995544258fb6a56c1538dcbf5faf0b152c Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Fri, 14 Aug 2026 16:49:37 +0200 Subject: [PATCH 06/17] remove prepare-js-configs.js --- apps/demos/package.json | 2 +- apps/demos/project.json | 6 +- apps/demos/scripts/prepare-js-configs.js | 7 -- .../demos/utils/copy-shared-resources/copy.js | 43 --------- .../utils/copy-shared-resources/files-js.json | 8 -- .../copy-shared-resources/files-mvc.json | 9 -- apps/demos/utils/shared/config-helper.js | 34 ------- .../utils/tests/shared/config-helper.test.js | 91 ------------------- 8 files changed, 2 insertions(+), 198 deletions(-) delete mode 100644 apps/demos/scripts/prepare-js-configs.js delete mode 100644 apps/demos/utils/copy-shared-resources/copy.js delete mode 100644 apps/demos/utils/copy-shared-resources/files-js.json delete mode 100644 apps/demos/utils/copy-shared-resources/files-mvc.json delete mode 100644 apps/demos/utils/shared/config-helper.js delete mode 100644 apps/demos/utils/tests/shared/config-helper.test.js diff --git a/apps/demos/package.json b/apps/demos/package.json index dba8e4f7e978..d4f0eab7a905 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -160,7 +160,7 @@ "link-repos": "node utils/interactive/link-repos.js", "launch-demo": "node utils/shell/server.js", "generate-tgz-packages": "node utils/create-tgz-packages.js", - "prepare-js": "node scripts/prepare-js-configs.js && pnpm run generate-tgz-packages", + "prepare-js": "pnpm run generate-tgz-packages", "eslint": "eslint", "lint-html": "prettier --check .", "lint-js": "eslint . --ignore-pattern 'Demos'", diff --git a/apps/demos/project.json b/apps/demos/project.json index 1a4e6239ee0b..2e216176fa4b 100644 --- a/apps/demos/project.json +++ b/apps/demos/project.json @@ -110,7 +110,6 @@ "commands": [ "pnpm nx build devextreme", "pnpm nx run-many --targets=pack --projects=devextreme-angular,devextreme-react,devextreme-vue --parallel", - "node scripts/prepare-js-configs.js", "pnpm run generate-tgz-packages" ], "parallel": false, @@ -118,10 +117,7 @@ }, "inputs": [ "default", - "{projectRoot}/scripts/**/*", - "{projectRoot}/utils/shared/config-helper.js", - "{projectRoot}/utils/copy-shared-resources/**/*", - "{projectRoot}/menuMeta.json" + "{projectRoot}/utils/create-tgz-packages.js" ] } }, diff --git a/apps/demos/scripts/prepare-js-configs.js b/apps/demos/scripts/prepare-js-configs.js deleted file mode 100644 index e5b33c0dc870..000000000000 --- a/apps/demos/scripts/prepare-js-configs.js +++ /dev/null @@ -1,7 +0,0 @@ -const { init } = require('../utils/shared/config-helper'); -const { copyJsSharedResources } = require('../utils/copy-shared-resources/copy'); - -init(); -copyJsSharedResources(() => {}); - -console.log('prepare-js-configs: done'); diff --git a/apps/demos/utils/copy-shared-resources/copy.js b/apps/demos/utils/copy-shared-resources/copy.js deleted file mode 100644 index 8d41b69110c6..000000000000 --- a/apps/demos/utils/copy-shared-resources/copy.js +++ /dev/null @@ -1,43 +0,0 @@ -const fs = require('fs'); -const path = require('path'); -const jsonJs = require('./files-js.json'); -const jsonMvc = require('./files-mvc.json'); - -function copyJsSharedResources(callback) { - copySharedResources(callback, jsonJs); -} - -function copyMvcSharedResources(callback) { - copySharedResources(callback, jsonMvc); -} - -function copySharedResources(callback, json) { - for (let i = 0; i < json.files.length; i += 1) { - const fileInfo = json.files[i]; - const fileName = path.basename(fileInfo.filePath); - - for (let j = 0; j < fileInfo.paths.length; j += 1) { - const copyPath = fileInfo.paths[j]; - const isFile = !!path.extname(copyPath); - const filePathTo = isFile ? copyPath : path.join(copyPath, fileName); - - if (!isFile && !fs.existsSync(copyPath)) { - fs.mkdirSync(copyPath); - } - - fs.copyFileSync(fileInfo.filePath, filePathTo); - - if (fileInfo.removeExport) { - const fileContent = fs.readFileSync(filePathTo, 'utf-8'); - fs.writeFileSync(filePathTo, fileContent.replace(/export\s/g, '')); - } - } - } - - callback(); -} - -module.exports = { - copyJsSharedResources, - copyMvcSharedResources, -}; diff --git a/apps/demos/utils/copy-shared-resources/files-js.json b/apps/demos/utils/copy-shared-resources/files-js.json deleted file mode 100644 index 7f57fb4c7add..000000000000 --- a/apps/demos/utils/copy-shared-resources/files-js.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "files":[ - { - "filePath":"", - "paths":[] - } - ] -} diff --git a/apps/demos/utils/copy-shared-resources/files-mvc.json b/apps/demos/utils/copy-shared-resources/files-mvc.json deleted file mode 100644 index e8cd8930539c..000000000000 --- a/apps/demos/utils/copy-shared-resources/files-mvc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "files":[ - { - "filePath":"", - "removeExport": true, - "paths":[] - } - ] -} diff --git a/apps/demos/utils/shared/config-helper.js b/apps/demos/utils/shared/config-helper.js deleted file mode 100644 index 34e98512f64c..000000000000 --- a/apps/demos/utils/shared/config-helper.js +++ /dev/null @@ -1,34 +0,0 @@ -const { join } = require('path'); -const { writeFileSync, existsSync, readFileSync } = require('fs'); - -const configPath = join(__dirname, '..', '..', 'repository.config.json'); - -const config = { - devextreme: '', - 'devextreme-angular': '', - 'devextreme-react': '', - 'devextreme-vue': '', - 'devexpress-diagram': '', - 'devexpress-gantt': '', - 'devextreme-aspnet': '', -}; - -const updateConfig = (configObject) => { - const configString = JSON.stringify(configObject, null, 2); - console.log(`Updating ${configPath}. Config:\n${configString}`); - writeFileSync(configPath, configString, 'utf8'); - console.log('File updated.'); -}; - -const init = () => { - if (existsSync(configPath)) { - return JSON.parse(readFileSync(configPath, 'utf8')); - } - updateConfig(config); - return config; -}; - -module.exports = { - updateConfig, - init, -}; diff --git a/apps/demos/utils/tests/shared/config-helper.test.js b/apps/demos/utils/tests/shared/config-helper.test.js deleted file mode 100644 index dbb98921f950..000000000000 --- a/apps/demos/utils/tests/shared/config-helper.test.js +++ /dev/null @@ -1,91 +0,0 @@ -const fs = require('fs'); -const { join } = require('path'); -const { init, updateConfig } = require('../../shared/config-helper'); - -const configPath = join(__dirname, '..', '..', '..', 'repository.config.json'); - -jest.mock('fs'); - -const configKeys = [ - 'devextreme', - 'devextreme-angular', - 'devextreme-react', - 'devextreme-vue', - 'devexpress-diagram', - 'devexpress-gantt', - 'devextreme-aspnet', -]; - -describe('Config helper tests', () => { - beforeEach(() => { - fs.existsSync.mockReset(); - fs.readFileSync.mockReset(); - fs.writeFileSync.mockReset(); - }); - test('Config does not exists', () => { - fs.existsSync.mockReturnValue(false); - const config = init(); - - configKeys.forEach((key) => { - expect(config[key]).toBe(''); - }); - - expect(fs.writeFileSync).toHaveBeenCalledTimes(1); - expect(fs.writeFileSync).toHaveBeenCalledWith(configPath, `{ - "devextreme": "", - "devextreme-angular": "", - "devextreme-react": "", - "devextreme-vue": "", - "devexpress-diagram": "", - "devexpress-gantt": "", - "devextreme-aspnet": "" -}`, 'utf8'); - }); - - test('Has config file', () => { - fs.existsSync.mockReturnValue(true); - fs.readFileSync.mockReturnValue(`{"devextreme":"1", - "devextreme-angular":"1", - "devextreme-react":"1", - "devextreme-vue":"1", - "devexpress-diagram":"1", - "devexpress-gantt":"1", - "devextreme-aspnet":"1"}`); - const config = init(); - - configKeys.forEach((key) => { - expect(config[key]).toBe('1'); - }); - - expect(fs.readFileSync).toHaveBeenCalledTimes(1); - expect(fs.readFileSync).toHaveBeenCalledWith(configPath, 'utf8'); - expect(fs.writeFileSync).toHaveBeenCalledTimes(0); - }); - - test('Update config', () => { - fs.existsSync.mockReturnValue(true); - fs.readFileSync.mockReturnValue(`{"devextreme":"1", - "devextreme-angular":"1", - "devextreme-react":"1", - "devextreme-vue":"1", - "devexpress-diagram":"1", - "devexpress-gantt":"1", - "devextreme-aspnet":"1"}`); - const config = init(); - - config['devextreme-aspnet'] = '2'; - - updateConfig(config); - - expect(fs.writeFileSync).toHaveBeenCalledTimes(1); - expect(fs.writeFileSync).toHaveBeenCalledWith(configPath, `{ - "devextreme": "1", - "devextreme-angular": "1", - "devextreme-react": "1", - "devextreme-vue": "1", - "devexpress-diagram": "1", - "devexpress-gantt": "1", - "devextreme-aspnet": "2" -}`, 'utf8'); - }); -}); From 0bbec1570fbb5423f708d11dbe4899b6cb70943e Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Mon, 17 Aug 2026 12:45:15 +0200 Subject: [PATCH 07/17] use esm devextreme for Angular --- apps/demos/utils/server/csp-bundle-angular.js | 20 +++++++++---------- .../server/tsconfig.csp-bundle-angular.json | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 00506cbb83f4..63107aaf168d 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -403,25 +403,25 @@ function isFileCached(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. -const DEVEXTREME_CJS_ROOT = path.join( - REPO_ROOT, 'packages', 'devextreme', 'artifacts', 'transpiled-esm-npm', 'cjs', +// apps/demos/node_modules/devextreme only ships bundles/; redirect to the real +// ESM modules under packages/devextreme/artifacts. +const DEVEXTREME_ESM_ROOT = path.join( + REPO_ROOT, 'packages', 'devextreme', 'artifacts', 'transpiled-esm-npm', 'esm', ); const devextremeRedirectPlugin = { - name: 'csp-bundle-angular:devextreme-cjs-redirect', + name: 'csp-bundle-angular:devextreme-esm-redirect', 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), - path.join(DEVEXTREME_CJS_ROOT, `${sub}.js`), - path.join(DEVEXTREME_CJS_ROOT, sub, 'index.js'), - path.join(DEVEXTREME_CJS_ROOT, `${sub}.mjs`), + path.join(DEVEXTREME_ESM_ROOT, sub), + path.join(DEVEXTREME_ESM_ROOT, `${sub}.js`), + path.join(DEVEXTREME_ESM_ROOT, sub, 'index.js'), + path.join(DEVEXTREME_ESM_ROOT, `${sub}.mjs`), ] - : [path.join(DEVEXTREME_CJS_ROOT, 'index.js')]; + : [path.join(DEVEXTREME_ESM_ROOT, 'index.js')]; for (const candidate of candidates) { if (isFileCached(candidate)) { return { path: candidate }; diff --git a/apps/demos/utils/server/tsconfig.csp-bundle-angular.json b/apps/demos/utils/server/tsconfig.csp-bundle-angular.json index 1e0187962272..fc39bbcb9a73 100644 --- a/apps/demos/utils/server/tsconfig.csp-bundle-angular.json +++ b/apps/demos/utils/server/tsconfig.csp-bundle-angular.json @@ -16,8 +16,8 @@ "baseUrl": "../../", "paths": { "@angular/*": ["node_modules/@angular/*"], - "devextreme": ["../../packages/devextreme/artifacts/transpiled-esm-npm/cjs/index"], - "devextreme/*": ["../../packages/devextreme/artifacts/transpiled-esm-npm/cjs/*"], + "devextreme": ["../../packages/devextreme/artifacts/transpiled-esm-npm/esm/index"], + "devextreme/*": ["../../packages/devextreme/artifacts/transpiled-esm-npm/esm/*"], "devextreme-dist/*": ["../../packages/devextreme/artifacts/*"], "globalize/*": ["../../node_modules/globalize/dist/globalize/*"], "anti-forgery": ["shared/anti-forgery/fetch-override.js"] From 4e97d392ac41aa6ba48a231170e638f600d3f4ef Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Tue, 18 Aug 2026 13:29:23 +0200 Subject: [PATCH 08/17] remove unused --- apps/demos/.gitignore | 2 -- apps/demos/README.md | 30 ++++++++---------------------- apps/demos/eslint.config.mjs | 3 +-- 3 files changed, 9 insertions(+), 26 deletions(-) diff --git a/apps/demos/.gitignore b/apps/demos/.gitignore index b6bc7a1749f1..dd34924726b4 100644 --- a/apps/demos/.gitignore +++ b/apps/demos/.gitignore @@ -23,8 +23,6 @@ changed-files.json !.vscode/settings.json -shared/empty-file.js - Demos/**/config.js Demos/**/tsconfig.json diff --git a/apps/demos/README.md b/apps/demos/README.md index e301b679157a..7b19e151993c 100644 --- a/apps/demos/README.md +++ b/apps/demos/README.md @@ -8,39 +8,25 @@ To run the demos on your machine, clone this repository, run `pnpm install`, and ### Run demos locally -In `monorepo/root` +From the monorepo root. + +Build DevExtreme, pack the Angular/React/Vue wrappers, and prepare demo extras (openai tarball): -Build all dependencies and prepare systemJS configs by executing: ``` pnpm run demos:prepare ``` -Start webserver: +Start the web server: + ``` pnpm run demos:start ``` -Navigate to http://localhost:8080/. - -You can pass additional parameter to specify port. It can be useful when you need to fast switching between one demo on different frameworks. - - -### Bundled mode - -Angular, Vue, and React demos can use bundles instead of separate files from `node_modules`. With bundles, demos launch faster but become harder to debug. -In `apps/demos` - -Run the following command to create the bundles and replace the SystemJS configuration: - -``` -pnpm run prepare-bundles -``` +Navigate to http://localhost:8080/. -To return to using separate files from `node_modules`, run: +You can pass a port as an extra argument. That is useful when you need to switch the same demo between frameworks quickly. -``` -pnpm run prepare-js -``` +Angular, React, and Vue demos are bundled on demand when you open a page. jQuery demos load `dx.all.js` from `devextreme-dist`. ### Before Commiting Changes diff --git a/apps/demos/eslint.config.mjs b/apps/demos/eslint.config.mjs index e4fb4c155c7a..a3503df3b225 100644 --- a/apps/demos/eslint.config.mjs +++ b/apps/demos/eslint.config.mjs @@ -518,11 +518,10 @@ export default [ files: ['utils/tests/**/*.*'], })), - // utils / shared loaders + // utils { files: [ 'utils/**/*.js', - 'shared/loaders/**/*.js', ], ignores: [ 'utils/testing/', From ba8af5e96e28fba22c3ee173c79e556266fb2b57 Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Tue, 18 Aug 2026 13:57:33 +0200 Subject: [PATCH 09/17] remove build tgz files for CSB --- .github/workflows/publish-demos.yml | 8 -- .github/workflows/visual-tests-demos.yml | 17 ---- apps/demos/README.md | 2 +- apps/demos/package.json | 8 +- apps/demos/project.json | 6 +- apps/demos/utils/create-tgz-packages.js | 85 ------------------ pnpm-lock.yaml | 107 ++++++----------------- 7 files changed, 32 insertions(+), 201 deletions(-) delete mode 100644 apps/demos/utils/create-tgz-packages.js diff --git a/.github/workflows/publish-demos.yml b/.github/workflows/publish-demos.yml index 484f55024eee..a8ad68d8d561 100644 --- a/.github/workflows/publish-demos.yml +++ b/.github/workflows/publish-demos.yml @@ -150,10 +150,6 @@ jobs: working-directory: apps/demos run: pnpm add ../../devextreme-installer.tgz ../../devextreme-dist-installer.tgz ../../devextreme-react-installer.tgz ../../devextreme-vue-installer.tgz ../../devextreme-angular-installer.tgz - - name: Prepare configs - working-directory: apps/demos - run: pnpm run prepare-js - - name: Copy metadata working-directory: apps/demos run: pnpm run make-demos-bundle --copy-metadata @@ -249,10 +245,6 @@ jobs: working-directory: apps/demos run: pnpm add ../../devextreme-installer.tgz ../../devextreme-dist-installer.tgz ../../devextreme-react-installer.tgz ../../devextreme-vue-installer.tgz ../../devextreme-angular-installer.tgz - - name: Prepare configs - working-directory: apps/demos - run: pnpm run prepare-js - - name: Copy metadata working-directory: apps/demos run: pnpm run make-demos-bundle --copy-metadata diff --git a/.github/workflows/visual-tests-demos.yml b/.github/workflows/visual-tests-demos.yml index e7b9e9f13204..0769b0d632a5 100644 --- a/.github/workflows/visual-tests-demos.yml +++ b/.github/workflows/visual-tests-demos.yml @@ -604,11 +604,6 @@ 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 - - name: Prepare JS - if: steps.changed-react-demos.outputs.has-react-demos == 'true' - working-directory: apps/demos - run: pnpm run prepare-js - - name: Check generated JS demos if: steps.changed-react-demos.outputs.has-react-demos == 'true' working-directory: apps/demos @@ -676,10 +671,6 @@ 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 - - name: Prepare JS - working-directory: apps/demos - run: pnpm run prepare-js - - name: Check generated JS demos working-directory: apps/demos run: | @@ -934,10 +925,6 @@ 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 - - name: Prepare JS - 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 @@ -1115,10 +1102,6 @@ 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 - - name: Prepare JS - 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 diff --git a/apps/demos/README.md b/apps/demos/README.md index 7b19e151993c..07b8c7706398 100644 --- a/apps/demos/README.md +++ b/apps/demos/README.md @@ -10,7 +10,7 @@ To run the demos on your machine, clone this repository, run `pnpm install`, and From the monorepo root. -Build DevExtreme, pack the Angular/React/Vue wrappers, and prepare demo extras (openai tarball): +Build DevExtreme and pack the Angular/React/Vue wrappers: ``` pnpm run demos:prepare diff --git a/apps/demos/package.json b/apps/demos/package.json index d4f0eab7a905..95cceb11cb63 100644 --- a/apps/demos/package.json +++ b/apps/demos/package.json @@ -28,7 +28,6 @@ "@angular/platform-browser-dynamic": "^22.0.8", "@aspnet/signalr": "1.0.27", "@preact/signals-core": "^1.8.0", - "@rollup/plugin-commonjs": "19.0.2", "@vue/compiler-sfc": "3.4.27", "@vue/shared": "^3.2.47", "canvg": "4.0.3", @@ -59,7 +58,7 @@ "jszip": "^3.10.1", "luxon": "3.4.4", "mustache": "4.2.0", - "openai": "4.73.1", + "openai": "7.5.0", "preact": "10.12.1", "prettier": "2.8.8", "prompts": "2.4.2", @@ -97,8 +96,6 @@ "@eslint/compat": "1.4.1", "@eslint/eslintrc": "catalog:", "@eslint/js": "catalog:", - "@rollup/plugin-babel": "6.1.0", - "@rollup/plugin-node-resolve": "15.3.1", "@stylistic/eslint-plugin": "catalog:", "@testcafe-community/axe": "3.5.0", "@types/eslint": "8.56.12", @@ -141,7 +138,6 @@ "mockdate": "3.0.5", "npm-run-all2": "5.0.2", "open": "8.4.2", - "rollup": "4.59.0", "serve-index": "1.9.2", "serve-static": "1.16.3", "stylelint": "catalog:", @@ -159,8 +155,6 @@ "add-demo": "node utils/interactive/add-demo.js", "link-repos": "node utils/interactive/link-repos.js", "launch-demo": "node utils/shell/server.js", - "generate-tgz-packages": "node utils/create-tgz-packages.js", - "prepare-js": "pnpm run generate-tgz-packages", "eslint": "eslint", "lint-html": "prettier --check .", "lint-js": "eslint . --ignore-pattern 'Demos'", diff --git a/apps/demos/project.json b/apps/demos/project.json index 2e216176fa4b..8e4c18a3d06c 100644 --- a/apps/demos/project.json +++ b/apps/demos/project.json @@ -109,15 +109,13 @@ "options": { "commands": [ "pnpm nx build devextreme", - "pnpm nx run-many --targets=pack --projects=devextreme-angular,devextreme-react,devextreme-vue --parallel", - "pnpm run generate-tgz-packages" + "pnpm nx run-many --targets=pack --projects=devextreme-angular,devextreme-react,devextreme-vue --parallel" ], "parallel": false, "cwd": "{projectRoot}" }, "inputs": [ - "default", - "{projectRoot}/utils/create-tgz-packages.js" + "default" ] } }, diff --git a/apps/demos/utils/create-tgz-packages.js b/apps/demos/utils/create-tgz-packages.js deleted file mode 100644 index a080a488a143..000000000000 --- a/apps/demos/utils/create-tgz-packages.js +++ /dev/null @@ -1,85 +0,0 @@ -/* eslint-disable import/no-extraneous-dependencies */ -const fs = require('fs'); -const path = require('path'); -const { exec } = require('child_process'); -const util = require('util'); -const { rollup } = require('rollup'); - -const resolve = require('@rollup/plugin-node-resolve'); -const commonjs = require('@rollup/plugin-commonjs'); -const babel = require('@rollup/plugin-babel'); - -const execAsync = util.promisify(exec); -const outDir = './bundles/externals/'; - -async function buildAndPack(packageName, inputFile) { - const packageJsonContent = fs.readFileSync(path.resolve(`./node_modules/${packageName}/package.json`), 'utf-8'); - const packageJSON = JSON.parse(packageJsonContent); - const outPackageDir = `${outDir}${packageName}/`; - const outputFile = `${outPackageDir}${packageName}.bundle.mjs`; - - fs.mkdirSync(outPackageDir, { recursive: true }); - - const bundle = await rollup({ - input: inputFile, - plugins: [ - resolve(), - commonjs(), - babel({ - babelHelpers: 'bundled', - presets: [ - ['@babel/preset-env', { - targets: { - chrome: '58', - ie: '11', - }, - }], - ], - }), - ], - }); - - await bundle.write({ - file: outputFile, - format: 'esm', - name: packageName, - globals: {}, - }); - - const packageJson = { - name: packageName, - version: packageJSON.version, - exports: `./${packageName}.bundle.mjs`, - type: 'module', - license: packageJSON.license, - }; - - fs.writeFileSync( - path.join(outPackageDir, 'package.json'), - JSON.stringify(packageJson, null, 2), - ); - - const { stdout, stderr } = await execAsync('npm pack', { cwd: outPackageDir }); - const filename = `${packageName}-${packageJSON.version}.tgz`; - - if (stdout.trim('\n') === filename) { - fs.renameSync( - path.join(outPackageDir, filename), - path.join(outDir, filename), - ); - fs.rmSync(outPackageDir, { recursive: true, force: true }); - } else { - console.error('stderr:\n', stderr); - } -} - -[ - { - packageName: 'openai', - inputFile: './node_modules/openai/index.mjs', - }, -].forEach(({ packageName, inputFile }) => { - buildAndPack(packageName, inputFile).catch((err) => { - console.error('Build failed:', err); - }); -}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c86d7bef964c..7e7d50fc19f1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -396,9 +396,6 @@ importers: '@preact/signals-core': specifier: ^1.8.0 version: 1.14.1 - '@rollup/plugin-commonjs': - specifier: 19.0.2 - version: 19.0.2(rollup@4.59.0) '@vue/compiler-sfc': specifier: 3.4.27 version: 3.4.27 @@ -511,8 +508,8 @@ importers: specifier: 4.2.0 version: 4.2.0 openai: - specifier: 4.73.1 - version: 4.73.1(zod@3.24.4) + specifier: 7.5.0 + version: 7.5.0(ws@8.21.1)(zod@3.24.4) preact: specifier: 10.12.1 version: 10.12.1 @@ -616,12 +613,6 @@ importers: '@eslint/js': specifier: 'catalog:' version: 9.39.4 - '@rollup/plugin-babel': - specifier: 6.1.0 - version: 6.1.0(@babel/core@7.29.7)(@types/babel__core@7.20.5)(rollup@4.59.0) - '@rollup/plugin-node-resolve': - specifier: 15.3.1 - version: 15.3.1(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)) @@ -748,9 +739,6 @@ importers: open: specifier: 8.4.2 version: 8.4.2 - rollup: - specifier: 4.59.0 - version: 4.59.0 serve-index: specifier: 1.9.2 version: 1.9.2 @@ -6896,19 +6884,6 @@ packages: peerDependencies: rollup: ^4.59.0 - '@rollup/plugin-babel@6.1.0': - resolution: {integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@babel/core': ^7.29.1 - '@types/babel__core': ^7.1.9 - rollup: ^4.59.0 - peerDependenciesMeta: - '@types/babel__core': - optional: true - rollup: - optional: true - '@rollup/plugin-commonjs@19.0.2': resolution: {integrity: sha512-gBjarfqlC7qs0AutpRW/hrFNm+cd2/QKxhwyFa+srbg1oX7rDsEU3l+W7LAUhsAp9mPJMAkXDhLbQaVwEaE8bA==} engines: {node: '>= 8.0.0'} @@ -6930,30 +6905,12 @@ packages: peerDependencies: rollup: ^4.59.0 - '@rollup/plugin-node-resolve@15.3.1': - resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^4.59.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/pluginutils@3.1.0': resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: rollup: ^4.59.0 - '@rollup/pluginutils@5.3.0': - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} - engines: {node: '>=14.0.0'} - peerDependencies: - rollup: ^4.59.0 - peerDependenciesMeta: - rollup: - optional: true - '@rollup/pluginutils@5.4.0': resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==} engines: {node: '>=14.0.0'} @@ -7706,9 +7663,6 @@ packages: '@types/resolve@1.17.1': resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -14025,6 +13979,27 @@ packages: zod: optional: true + openai@7.5.0: + resolution: {integrity: sha512-ZbDBz8FSB8Mv8fFYIUvzTFMdV5vl93/octp1MdtK2lfYepSpfv/ewmeugpKz/cwGtFSx+YuUM4NwpZ2P55YiPA==} + engines: {node: '>=22.0.0'} + peerDependencies: + '@aws-sdk/credential-provider-node': '>=3.972.0 <4' + '@smithy/hash-node': '>=4.3.0 <5' + '@smithy/signature-v4': '>=5.4.0 <6' + ws: ^8.21.0 + zod: ^3.25 || ^4.0 + peerDependenciesMeta: + '@aws-sdk/credential-provider-node': + optional: true + '@smithy/hash-node': + optional: true + '@smithy/signature-v4': + optional: true + ws: + optional: true + zod: + optional: true + opencollective-postinstall@2.0.3: resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} hasBin: true @@ -23922,17 +23897,6 @@ snapshots: rollup: 4.59.0 slash: 3.0.0 - '@rollup/plugin-babel@6.1.0(@babel/core@7.29.7)(@types/babel__core@7.20.5)(rollup@4.59.0)': - dependencies: - '@babel/core': 7.29.7 - '@babel/helper-module-imports': 7.28.6 - '@rollup/pluginutils': 5.3.0(rollup@4.59.0) - optionalDependencies: - '@types/babel__core': 7.20.5 - rollup: 4.59.0 - transitivePeerDependencies: - - supports-color - '@rollup/plugin-commonjs@19.0.2(rollup@4.59.0)': dependencies: '@rollup/pluginutils': 3.1.0(rollup@4.59.0) @@ -23960,16 +23924,6 @@ snapshots: resolve: 1.22.12 rollup: 4.59.0 - '@rollup/plugin-node-resolve@15.3.1(rollup@4.59.0)': - dependencies: - '@rollup/pluginutils': 5.3.0(rollup@4.59.0) - '@types/resolve': 1.20.2 - deepmerge: 4.3.1 - is-module: 1.0.0 - resolve: 1.22.12 - optionalDependencies: - rollup: 4.59.0 - '@rollup/pluginutils@3.1.0(rollup@4.59.0)': dependencies: '@types/estree': 0.0.39 @@ -23977,14 +23931,6 @@ snapshots: picomatch: 2.3.2 rollup: 4.59.0 - '@rollup/pluginutils@5.3.0(rollup@4.59.0)': - dependencies: - '@types/estree': 1.0.9 - estree-walker: 2.0.2 - picomatch: 4.0.4 - optionalDependencies: - rollup: 4.59.0 - '@rollup/pluginutils@5.4.0(rollup@4.59.0)': dependencies: '@types/estree': 1.0.9 @@ -24784,8 +24730,6 @@ snapshots: dependencies: '@types/node': 20.19.37 - '@types/resolve@1.20.2': {} - '@types/resolve@1.20.6': {} '@types/retry@0.12.2': {} @@ -34651,6 +34595,11 @@ snapshots: transitivePeerDependencies: - encoding + openai@7.5.0(ws@8.21.1)(zod@3.24.4): + optionalDependencies: + ws: 8.21.1 + zod: 3.24.4 + opencollective-postinstall@2.0.3: {} opener@1.5.2: {} From b94f1649396d96b65b018a390e1e896707087b61 Mon Sep 17 00:00:00 2001 From: Aliullov Vlad Date: Tue, 18 Aug 2026 15:23:42 +0200 Subject: [PATCH 10/17] remove systemjs remains --- apps/demos/.gitignore | 3 +- .../Overview/Angular/app/app.component.ts | 10 +--- .../Basics/Angular/app/app.component.ts | 10 +--- .../PopoverMode/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Box/Overview/Angular/app/app.component.ts | 10 +--- .../Button/Icons/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../CardTemplate/Angular/app/app.component.ts | 8 +-- .../license-info/license-info.component.ts | 8 +-- .../vehicle-card/vehicle-card.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../app/card-header/card-header.component.ts | 10 +--- .../app/employee/employee.component.ts | 10 +--- .../app/priority/priority.component.ts | 10 +--- .../progress-bar/progress-bar.component.ts | 10 +--- .../FilterPanel/Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../PopupEditing/Angular/app/app.component.ts | 8 +-- .../SearchPanel/Angular/app/app.component.ts | 8 +-- .../Selection/Angular/app/app.component.ts | 10 +--- .../SimpleArray/Angular/app/app.component.ts | 8 +-- .../Sorting/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../AjaxRequest/Angular/app/app.component.ts | 10 +--- .../Annotation/Angular/app/app.component.ts | 10 +--- .../Charts/Area/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../BarDrillDown/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Bubble/Angular/app/app.component.ts | 10 +--- .../Candlestick/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Colorization/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Crosshair/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../DiscreteData/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Doughnut/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../DrillDown/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../ErrorBars/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FunnelChart/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../HoverMode/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Charts/Line/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../MultipleAxes/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Palette/Angular/app/app.component.ts | 10 +--- .../ParetoChart/Angular/app/app.component.ts | 10 +--- .../PeriodicData/Angular/app/app.component.ts | 10 +--- .../Charts/Pie/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../PointImage/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../PyramidChart/Angular/app/app.component.ts | 10 +--- .../RangeArea/Angular/app/app.component.ts | 10 +--- .../RangeBar/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../SankeyChart/Angular/app/app.component.ts | 10 +--- .../ScaleBreaks/Angular/app/app.component.ts | 10 +--- .../Scatter/Angular/app/app.component.ts | 10 +--- .../Selection/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../SimpleArray/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../SpiderWeb/Angular/app/app.component.ts | 10 +--- .../Spline/Angular/app/app.component.ts | 10 +--- .../SplineArea/Angular/app/app.component.ts | 10 +--- .../StackedBar/Angular/app/app.component.ts | 10 +--- .../StandardBar/Angular/app/app.component.ts | 10 +--- .../StepArea/Angular/app/app.component.ts | 10 +--- .../StepLine/Angular/app/app.component.ts | 10 +--- .../Charts/Stock/Angular/app/app.component.ts | 10 +--- .../Strips/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Timeline/Angular/app/app.component.ts | 10 +--- .../TooltipAPI/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../WindRose/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Basics/Angular/app/app.component.ts | 10 +--- .../Scrolling/Angular/app/app.component.ts | 10 +--- .../Templates/Angular/app/app.component.ts | 10 +--- .../AIAssistant/Angular/app/app.component.ts | 10 +--- .../AIColumns/Angular/app/app.component.ts | 10 +--- .../app/category/category.component.ts | 10 +--- .../license-info/license-info.component.ts | 8 +-- .../app/trademark/trademark.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../app/detail-view/detail-view.component.ts | 10 +--- .../AjaxRequest/Angular/app/app.component.ts | 8 +-- .../Appearance/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../BatchEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Cell/Angular/app/app.component.ts | 10 +--- .../CellEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Column/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FilterPanel/Angular/app/app.component.ts | 10 +--- .../Filtering/Angular/app/app.component.ts | 10 +--- .../FilteringAPI/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FocusedRow/Angular/app/app.component.ts | 10 +--- .../FormEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../app/detail-grid/detail-grid.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../PDFOverview/Angular/app/app.component.ts | 8 +-- .../PopupEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../RecordPaging/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../DataGrid/Row/Angular/app/app.component.ts | 10 +--- .../RowEditing/Angular/app/app.component.ts | 10 +--- .../RowSelection/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../SimpleArray/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Toolbar/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../app/detail-grid/detail-grid.component.ts | 8 +-- .../Formatting/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Formatting/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Adaptability/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Containers/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../ReadOnly/Angular/app/app.component.ts | 10 +--- .../SimpleView/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../BindingToEF/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../ChunkUpload/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Validation/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../WithDataGrid/Angular/app/app.component.ts | 10 +--- .../WithList/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Adaptability/Angular/app/app.component.ts | 10 +--- .../Grouping/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../SmartPaste/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Validation/Angular/app/app.component.ts | 10 +--- .../ItemTemplate/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Appearance/Angular/app/app.component.ts | 10 +--- .../ContextMenu/Angular/app/app.component.ts | 10 +--- .../DataBinding/Angular/app/app.component.ts | 10 +--- .../ExportToPDF/Angular/app/app.component.ts | 10 +--- .../FilterRow/Angular/app/app.component.ts | 10 +--- .../HeaderFilter/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Sorting/Angular/app/app.component.ts | 10 +--- .../StripLines/Angular/app/app.component.ts | 10 +--- .../TaskTemplate/Angular/app/app.component.ts | 10 +--- .../Toolbar/Angular/app/app.component.ts | 10 +--- .../Validation/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../BarGauge/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../CustomLayout/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../GaugeTooltip/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../LinearGauge/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Palette/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Tooltip/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Mentions/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Tables/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../DragAndDrop/Angular/app/app.component.ts | 10 +--- .../Grouping/Angular/app/app.component.ts | 10 +--- .../ItemDeletion/Angular/app/app.component.ts | 10 +--- .../ItemTemplate/Angular/app/app.component.ts | 10 +--- .../List/Search/Angular/app/app.component.ts | 10 +--- .../Selection/Angular/app/app.component.ts | 10 +--- .../List/WebAPI/Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 20 +++---- .../UsingGlobalize/Angular/app/cldr.d.ts | 14 ----- .../Localization/UsingGlobalize/Vue/App.vue | 10 ++-- .../UsingGlobalize/Vue/systemjs-imports.d.ts | 34 ----------- .../UsingIntl/Angular/app/app.component.ts | 14 ++--- .../UsingIntl/Angular/app/messages.d.ts | 9 --- .../Demos/Localization/UsingIntl/Vue/App.vue | 4 +- .../UsingIntl/Vue/systemjs-imports.d.ts | 9 --- .../Basics/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Templates/Angular/app/app.component.ts | 10 +--- .../Map/Markers/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Map/Routes/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Scrolling/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Formatting/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../employee-card/employee-card.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../DrillDown/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 9 +-- .../FieldPanel/Angular/app/app.component.ts | 10 +--- .../Filtering/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../SimpleArray/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Scrolling/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Calculation/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Filter/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../NumericScale/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Adaptability/Angular/app/app.component.ts | 10 +--- .../Agenda/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../BasicViews/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../ContextMenu/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../DragAndDrop/Angular/app/app.component.ts | 10 +--- .../Editing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../GroupByDate/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../HiddenDays/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Resources/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../SimpleArray/Angular/app/app.component.ts | 8 +-- .../Templates/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Timelines/Angular/app/app.component.ts | 10 +--- .../Toolbar/Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 9 +-- .../Angular/app/app.component.ts | 8 +-- .../WorkShifts/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Grouping/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Kanban/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../additional-form.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../confirmation/confirmation.component.ts | 10 +--- .../app/dates-form/dates-form.component.ts | 8 +-- .../app/guests-form/guests-form.component.ts | 8 +-- .../room-meal-plan-form.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../StepTemplate/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 8 +-- .../DragAndDrop/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Templates/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Selection/Angular/app/app.component.ts | 10 +--- .../Grouping/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 8 +-- .../Basics/Angular/app/app.component.ts | 10 +--- .../Directions/Angular/app/app.component.ts | 10 +--- .../ItemTemplate/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Toast/Stack/Angular/app/app.component.ts | 10 +--- .../Adaptability/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../AIColumns/Angular/app/app.component.ts | 10 +--- .../app/employee/employee.component.ts | 10 +--- .../Angular/app/status/status.component.ts | 10 +--- .../Adaptability/Angular/app/app.component.ts | 10 +--- .../BatchEditing/Angular/app/app.component.ts | 10 +--- .../CellEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FilterModes/Angular/app/app.component.ts | 10 +--- .../FilterPanel/Angular/app/app.component.ts | 10 +--- .../FilterRow/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FocusedRow/Angular/app/app.component.ts | 10 +--- .../FormEditing/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Paging/Angular/app/app.component.ts | 8 +-- .../PopupEditing/Angular/app/app.component.ts | 10 +--- .../Reordering/Angular/app/app.component.ts | 10 +--- .../Resizing/Angular/app/app.component.ts | 10 +--- .../RowEditing/Angular/app/app.component.ts | 10 +--- .../SearchPanel/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 8 +-- .../Angular/app/app.component.ts | 10 +--- .../VirtualMode/Angular/app/app.component.ts | 8 +-- .../Overview/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../FloorPlan/Angular/app/app.component.ts | 10 +--- .../ImageMarkers/Angular/app/app.component.ts | 10 +--- .../Legend/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Overview/Angular/app/app.component.ts | 10 +--- .../Palette/Angular/app/app.component.ts | 10 +--- .../PieMarkers/Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- .../Angular/app/app.component.ts | 10 +--- apps/demos/eslint.config.mjs | 24 -------- apps/demos/tsconfig.eslint.json | 3 +- apps/demos/tsconfig.ngc-check.json | 3 +- apps/demos/tsconfig.vue-check.json | 3 +- apps/demos/utils/server/csp-bundle-angular.js | 57 +++++-------------- apps/demos/utils/server/csp-bundle.js | 44 +++----------- .../server/tsconfig.csp-bundle-angular.json | 3 +- apps/demos/utils/shell/server.js | 7 +-- .../templates/Angular/app/app.component.ts | 8 +-- .../utils/ts-to-js-converter/converter.ts | 1 - 537 files changed, 1033 insertions(+), 4303 deletions(-) delete mode 100644 apps/demos/Demos/Localization/UsingGlobalize/Angular/app/cldr.d.ts delete mode 100644 apps/demos/Demos/Localization/UsingGlobalize/Vue/systemjs-imports.d.ts delete mode 100644 apps/demos/Demos/Localization/UsingIntl/Angular/app/messages.d.ts delete mode 100644 apps/demos/Demos/Localization/UsingIntl/Vue/systemjs-imports.d.ts diff --git a/apps/demos/.gitignore b/apps/demos/.gitignore index dd34924726b4..32afefe9c6d8 100644 --- a/apps/demos/.gitignore +++ b/apps/demos/.gitignore @@ -23,11 +23,10 @@ changed-files.json !.vscode/settings.json -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. +# each demo's own source. Demos/**/bundle.js Demos/**/bundle.css diff --git a/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts index 6e3fec7d805d..17f2a91838cc 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Accordion/Overview/Angular/app/app.component.ts @@ -15,17 +15,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts b/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts index 3c70ca728bfb..b0a2240de40e 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxActionSheetModule, DxButtonModule, diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts index 554e23dcde5e..a884c32d782c 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxActionSheetModule, diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts index 5fcc5957392a..68dbc217f87f 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/app/app.component.ts @@ -15,17 +15,11 @@ function isNotEmpty(value: unknown): boolean { return value !== undefined && value !== null && value !== ''; } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxAutocompleteModule, ], diff --git a/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts index bb344f036263..7e7ee923cdad 100644 --- a/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Box/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxBoxModule, ], diff --git a/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts b/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts index 7d7ac237b0e8..37b96194d8ba 100644 --- a/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Button/Icons/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxButtonModule, diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts b/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts index 403b017c9ca6..76c65fd13f27 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxButtonModule, ], diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts index 1cc12911fa7c..b14049693d9f 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxButtonGroupModule, diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts b/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts index 13e8a2f8dce8..0e44374a3749 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSelectBoxModule, DxCalendarModule, diff --git a/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts index ffbde9502f16..cc928f28c6e1 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Calendar/Overview/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCalendarModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts index 792a3fc77d8f..cbbedceb1ff3 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/app.component.ts @@ -13,15 +13,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts index 02b3a7c12a8e..ec40cd95e47c 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/license-info/license-info.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; import { Vehicle } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'license-info', - templateUrl: `.${modulePrefix}/license-info/license-info.component.html`, + templateUrl: './license-info.component.html', }) export class LicenseInfo { vehicleLink = ''; diff --git a/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts b/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts index 3a176ce5a9a1..33f2203933c8 100644 --- a/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts +++ b/apps/demos/Demos/CardView/CardTemplate/Angular/app/vehicle-card/vehicle-card.component.ts @@ -1,16 +1,10 @@ import { Component, EventEmitter, Input, Output } from '@angular/core'; import { DxButtonModule } from 'devextreme-angular'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'vehicle-card', - templateUrl: `.${modulePrefix}/vehicle-card/vehicle-card.component.html`, - styleUrls: [`.${modulePrefix}/vehicle-card/vehicle-card.component.css`], + templateUrl: './vehicle-card.component.html', + styleUrls: ['./vehicle-card.component.css'], imports: [ DxButtonModule, ], diff --git a/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts index ccbc22685299..b02c85edfd84 100644 --- a/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnChooser/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts index 51168ebdcab6..db658a41e310 100644 --- a/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnHeaderFilter/Angular/app/app.component.ts @@ -7,19 +7,13 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - function getOrderDay(rowData: Order) { return new Date(rowData.OrderDate).getDay(); } @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts b/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts index 2d7e769f1beb..df4511c27e7b 100644 --- a/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/ColumnReordering/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts b/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts index 2d59e14b36ce..0ae9cc6572d8 100644 --- a/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/DataValidation/Angular/app/app.component.ts @@ -11,15 +11,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts index f5f7ddc0d65f..e25ae0ea863b 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCardViewModule, CardHeader, diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts index 8263c251d096..2a0b0b342b9b 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/card-header/card-header.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'card-header', - templateUrl: `.${modulePrefix}/card-header/card-header.component.html`, - styleUrls: [`.${modulePrefix}/card-header/card-header.component.css`], + templateUrl: './card-header.component.html', + styleUrls: ['./card-header.component.css'], }) export class CardHeader { @Input() text: string; diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts index 272aff11d180..bcb853e887fb 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/employee/employee.component.ts @@ -1,16 +1,10 @@ import { Component, Input, OnChanges } from '@angular/core'; import { Employee, Service } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'employee', - templateUrl: `.${modulePrefix}/employee/employee.component.html`, - styleUrls: [`.${modulePrefix}/employee/employee.component.css`], + templateUrl: './employee.component.html', + styleUrls: ['./employee.component.css'], }) export class EmployeeComponent implements OnChanges { employees: Employee[]; diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts index b2ab7e40dfa4..c99513f64a24 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/priority/priority.component.ts @@ -1,16 +1,10 @@ import { Component, Input, OnChanges } from '@angular/core'; import { Priority, Service } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'priority', - templateUrl: `.${modulePrefix}/priority/priority.component.html`, - styleUrls: [`.${modulePrefix}/priority/priority.component.css`], + templateUrl: './priority.component.html', + styleUrls: ['./priority.component.css'], }) export class PriorityComponent implements OnChanges { priorities: Priority[]; diff --git a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts index 3d21daca8dce..a3b8b152ea1a 100644 --- a/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts +++ b/apps/demos/Demos/CardView/FieldTemplate/Angular/app/progress-bar/progress-bar.component.ts @@ -3,16 +3,10 @@ import { DxProgressBarModule, } from 'devextreme-angular'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'progress-bar', - templateUrl: `.${modulePrefix}/progress-bar/progress-bar.component.html`, - styleUrls: [`.${modulePrefix}/progress-bar/progress-bar.component.css`], + templateUrl: './progress-bar.component.html', + styleUrls: ['./progress-bar.component.css'], imports: [ DxProgressBarModule, ], diff --git a/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts index db07eb4a4aa5..08842f0cc429 100644 --- a/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/FilterPanel/Angular/app/app.component.ts @@ -7,19 +7,13 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - function getOrderDay({ OrderDate }: Order): number { return (new Date(OrderDate)).getDay(); } @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts index 046df4b8298b..0096e0215366 100644 --- a/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-expect-error -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCardViewModule, DxButtonModule, diff --git a/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts index 88b101aa1838..4eae8f009f56 100644 --- a/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/PopupEditing/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts b/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts index d11e64fde49a..6699ac77e582 100644 --- a/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/SearchPanel/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts index a53ae504f893..0a5d1cc446a1 100644 --- a/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Selection/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts index 378008e61119..1ded8d1726a5 100644 --- a/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/SimpleArray/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts b/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts index e1d41f0ee3c3..7b7678ddb159 100644 --- a/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/Sorting/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxCardViewModule, diff --git a/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts index 2da8445926ad..1e24974499fc 100644 --- a/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/CardView/WebAPIService/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - const url = 'https://js.devexpress.com/Demos/NetCore/api/TreeListTasks'; @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxCardViewModule, ], diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts index d057337ad433..03cfd66cc225 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts index 7d8436c6f4cd..896a6cb0b13c 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Annotation/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts index cf9316de6874..c48b314edf2e 100644 --- a/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Area/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts index 3665eecdf518..978dafe3c3ee 100644 --- a/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AreaSelectionZooming/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxButtonModule, diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts index f653a4534604..ba938bf278b1 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSparklineModule, diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts index 087a4d29c0aa..5dfc0582a77d 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts index ae511e6220be..1054a0365dfd 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts index 48ba12e612de..554f636efbe3 100644 --- a/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/AxisLabelCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts index 3ae30b599f1b..740b793e3439 100644 --- a/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarColorCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts index f5ad04d1eb5a..5b8652ab0427 100644 --- a/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarDrillDown/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxButtonModule, diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts index 9d52f74c3356..4d9e41ad075b 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSparklineModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts index 7fa399e831c7..381742fa21c5 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts index c31e17e8d1a6..af096fdf499c 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Bubble/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts index 2adcdd5feac4..9173ac08cfea 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Candlestick/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts index 6498e94035b8..4723e6c594a7 100644 --- a/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CenterLabelCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts index 10d21ff0c802..7fce9021cf04 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/app/app.component.ts @@ -18,17 +18,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts index 9bea9557aae8..0f6e83ab440f 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Colorization/Angular/app/app.component.ts @@ -19,16 +19,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts index de3d47c02bd9..b608f3c185f3 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts index 9b78bb19bb5c..6b88df11d880 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Crosshair/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts index 67c93b0aceca..92e585dba698 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DecimalPipe, diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts index 81f84b818041..9f84909bf27e 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts index 20d14a33befb..5135e6239883 100644 --- a/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomFillStyles/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts index 420c4f1f9309..1699c7738c51 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts index ecb68ba462fb..ec8809fcaa4e 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxRangeSelectorModule, diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts index f063f9d384ca..183db672859f 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts index 55651e086314..860ae49256ce 100644 --- a/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DiscretePointsAggregation/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts index 963758941b97..f1bf46c17120 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Doughnut/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts index 2ff2c8e2b39b..95886b8b158b 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts index 5cccddfeef52..a80a205b082c 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts index 9ffe9dee48e1..56ada65b33b8 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DrillDown/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeMapModule, diff --git a/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts index 696ecca4fc4f..cb712a5ac44c 100644 --- a/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/DynamicSeries/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts b/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts index b9b719e772f6..af2188d1f228 100644 --- a/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/EqualSizePies/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts index 0a53e559ad02..d1f3a939a656 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts index daa078c26b86..87efe2c02bec 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts index 4029ce6e01ff..c1a598915e9d 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxButtonModule, diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts index 55801cde692e..b1e3d48e8e70 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxPieChartModule, diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts index 2f56b01ecedb..7da8509d9750 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeMapModule, diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts index 924af7528ac8..3d7e28565693 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts index 038389f03563..af130d9a275f 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxFunnelModule, diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts index 2f56b01ecedb..7da8509d9750 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeMapModule, diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts b/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts index 4c4258100083..e9a7a1c8d8f8 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/HoverMode/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts index ce1cc1ebdbc9..160294432ce0 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts index a9c2c66ba7f9..8cc303ca4c74 100644 --- a/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LabelCustomization/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts index 6663a447aa6b..9a3b43a8fbc3 100644 --- a/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LegendMarkersCustomization/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [DxChartModule], }) diff --git a/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts index e83a070800b2..305933de1a06 100644 --- a/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Line/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts index 57cc8cf63594..519493da5bda 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts index 4fe37f38a74f..a184db11f30b 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts index a7f5201366a3..6021dbb4ed79 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts index b96dcd91bf7b..75318b0723f5 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts index 176e20bcd3a5..6e34df04fda2 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts index b009b8f75eda..298131524832 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts index 07eba2c8000d..63674ed0f97d 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts b/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts index 448656ceb98a..a2b4ed16ad13 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts index 702801ee770d..8ffacbba038c 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Overview/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts index 44b30b231828..1341d74c7e8e 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Palette/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts index 387874d26b2f..47d69e6ba4fe 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts index ce1cc1ebdbc9..160294432ce0 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts index 7c1402daa7b3..3e84daa1e43c 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Pie/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts index 3dafaa4a7e4d..f84fe21f1ccb 100644 --- a/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieAnnotations/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts index b8bb5af279f7..c1b0a11a36c2 100644 --- a/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieResolveLabelOverlap/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts index 986b1cebe419..8ce2eab99dd6 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts index 521a05c16a10..1d2f13b70efd 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointImage/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts index bc6801c67c82..048b7563671c 100644 --- a/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointSelectionAPI/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts index dd3e9f29cbe7..a24051f64cfc 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts index 55fe5fb784c2..686a213f0d5a 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, DxRangeSelectorModule, diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts index c2014a188742..d6986da03046 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts index 1604a23a6060..6275839f23dc 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts index 0a6931242da3..737038f0c68b 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxFunnelModule, diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts index 66c419294ea5..61363c169ad1 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/RangeArea/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts index 4ebf147d2ee1..475edabaa066 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/RangeBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts index e14080f025c2..8f5ba2fcbb15 100644 --- a/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ResolveLabelOverlap/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts index 573510fe0e07..51374ae4edcd 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSankeyModule, ], diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts index b85b2e503422..3a77589ffb2d 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts index 7ae1cb86aa86..687bab0f33ee 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Scatter/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts index de1413893311..4a16ee3703e6 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Selection/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts index cbde6f861c7d..b1ab5dbe7c8d 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts index 7e5e306173e8..c2deaf6d4b63 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts index 95dd8828e299..ae2fa597c49e 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts index 4f8965cae1b1..737981149087 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts index aa3d5db09f65..c98e7785d1f6 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SignalRService/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [DecimalPipe, CurrencyPipe], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts index 8e47e7f036d1..18bc13a036f9 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts index 33a0b34aa765..684eac2b697b 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxBulletModule, diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts index 23484e99f0d9..5503f76e1a04 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSparklineModule, diff --git a/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts index 5cccddfeef52..a80a205b082c 100644 --- a/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SmallValueGroups/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPieChartModule, diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts index c87c27b6d4de..995aaa723228 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts index b845d71bf5ef..2994dada5544 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Spline/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts index 269f29b7aef5..97f90d650107 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/SplineArea/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts index 66593c75a381..5770d444097f 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StackedBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts index a7f5201366a3..6021dbb4ed79 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StandardBar/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts index 6247c5c004db..ab738d6b2dc2 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StepArea/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts b/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts index 057abb13847d..8269b8e11387 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/StepLine/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts index 29354c6cc778..712c237092d3 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Stock/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts index 76e81fa1f270..895ccce5b81f 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Strips/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { const customizeText: DxChartTypes.ArgumentAxisLabel['customizeText'] = ({ valueText }) => `${valueText}°F`; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts index e52f99714c1a..934a8ea2e967 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts b/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts index a7f5201366a3..6021dbb4ed79 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/Timeline/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxChartModule, diff --git a/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts index 299597b29267..273a79d88eb6 100644 --- a/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TooltipAPI/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxPieChartModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts index 6fc1a54f639e..a6a6dd2a169b 100644 --- a/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/TooltipCustomization/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxPieChartModule, DecimalPipe, diff --git a/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts b/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts index 3b495ba2d48e..43e2aa756d2d 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/WindRose/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPolarChartModule, diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts b/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts index f653a4534604..ba938bf278b1 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSparklineModule, diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts index b84b4b220f5f..9d4af0829718 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChartModule, ], diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts index 1f68e5b9766d..570c5f66c81b 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxChartModule, DxRangeSelectorModule, diff --git a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts index 40236d268098..21fb4c89185c 100644 --- a/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/AIAndChatbotIntegration/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, DxButtonModule, diff --git a/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts b/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts index ab4df297572b..66be2ef73b05 100644 --- a/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/Customization/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts b/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts index 7dd04487dfbd..f43d59239eec 100644 --- a/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/FileAttachments/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-expect-error -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, ], diff --git a/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts b/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts index 99e5f7320f29..54b070cc72e8 100644 --- a/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/MessageEditing/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-expect-error -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Chat/MessageStreaming/Angular/app/app.component.ts b/apps/demos/Demos/Chat/MessageStreaming/Angular/app/app.component.ts index fec17c9febf7..7cc2e8868c51 100644 --- a/apps/demos/Demos/Chat/MessageStreaming/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/MessageStreaming/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, AsyncPipe, diff --git a/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts index 5a4581854220..a3392c5da516 100644 --- a/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/Overview/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, AsyncPipe, diff --git a/apps/demos/Demos/Chat/PromptSuggestions/Angular/app/app.component.ts b/apps/demos/Demos/Chat/PromptSuggestions/Angular/app/app.component.ts index 563901e1fbc9..9f82aa07c888 100644 --- a/apps/demos/Demos/Chat/PromptSuggestions/Angular/app/app.component.ts +++ b/apps/demos/Demos/Chat/PromptSuggestions/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxChatModule, DxSwitchModule, diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts index a0d3fa8db3f1..d7eb8c17a8ed 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/CheckBox/Overview/Angular/app/app.component.ts @@ -6,15 +6,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxCheckBoxModule, ], diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts index a77149cdd1ba..f629a4053a48 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ColorBox/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxColorBoxModule, ], diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts index 333d51a77398..5d034e7a3a49 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxTextBoxModule, diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts index 3cb863b40469..b8dd4b41f70f 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/app/app.component.ts @@ -18,17 +18,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts index 30d94f37e03f..726e53c498a5 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts index 46887eae8956..6911ba0736fc 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/app/app.component.ts @@ -17,17 +17,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSelectBoxModule, DxAutocompleteModule, diff --git a/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts index 4a53cbc38a47..0c8734c03167 100644 --- a/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/FormsOverview/Angular/app/app.component.ts @@ -11,17 +11,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts index 3c1cb62aa9fe..a6b06dafa8e7 100644 --- a/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/ListsOverview/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxTileViewModule, diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts index acffda7c19a0..1131820c4801 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTabPanelModule, diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts index c9ea863fc9af..f53b7e18aa08 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxAccordionModule, diff --git a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts index 1368a47a607d..113e2b638ce4 100644 --- a/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Common/PopupAndNotificationsOverview/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxButtonModule, diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts index 191643200c73..39bc597b9e8e 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/app/app.component.ts @@ -7,12 +7,6 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - class ContextMenuItem { text: string; @@ -21,8 +15,8 @@ class ContextMenuItem { @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxContextMenuModule, ], diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts index 4674f154c5da..0c132ca3195c 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxContextMenuModule, ], diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts b/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts index e1ff52d8cb91..876ec22805d2 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/app/app.component.ts @@ -15,16 +15,10 @@ class ContextMenuItem { items?: ContextMenuItem[]; } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxContextMenuModule, ], diff --git a/apps/demos/Demos/DataGrid/AIAssistant/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AIAssistant/Angular/app/app.component.ts index 211368ea2885..fd78001395ad 100644 --- a/apps/demos/Demos/DataGrid/AIAssistant/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AIAssistant/Angular/app/app.component.ts @@ -15,16 +15,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service, AiService], imports: [DxDataGridModule], }) diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts index 25ddf1da90f2..accf96d3796c 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service, AiService], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts index 1f9960905e5b..8e6da4c4ec15 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/category/category.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'category', - templateUrl: `.${modulePrefix}/category/category.component.html`, - styleUrls: [`.${modulePrefix}/category/category.component.css`], + templateUrl: './category.component.html', + styleUrls: ['./category.component.css'], }) export class Category { @Input() category!: string; diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts index c163ad2d4726..65a473b8ddc7 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/license-info/license-info.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; import { Vehicle } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'license-info', - templateUrl: `.${modulePrefix}/license-info/license-info.component.html`, + templateUrl: './license-info.component.html', }) export class LicenseInfo { vehicleLink = ''; diff --git a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts index e351d96b3448..072ba438c17b 100644 --- a/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts +++ b/apps/demos/Demos/DataGrid/AIColumns/Angular/app/trademark/trademark.component.ts @@ -1,15 +1,9 @@ import { Component, EventEmitter, Input, Output } from '@angular/core'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'trademark', - templateUrl: `.${modulePrefix}/trademark/trademark.component.html`, - styleUrls: [`.${modulePrefix}/trademark/trademark.component.css`], + templateUrl: './trademark.component.html', + styleUrls: ['./trademark.component.css'], }) export class Trademark { @Input() id!: number; diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts index 0c68b93a22e9..4a9a107b98be 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, DxFormModule, diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts index 3beff083993e..8b88bb656e03 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/app/detail-view/detail-view.component.ts @@ -5,16 +5,10 @@ import { DxFormModule, DxDataGridModule, DxSelectBoxModule, DxTabPanelModule } f import { DxFormTypes } from 'devextreme-angular/ui/form'; import { DxSelectBoxTypes } from 'devextreme-angular/ui/select-box'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'detail-view', - templateUrl: `.${modulePrefix}/detail-view/detail-view.component.html`, - styleUrls: [`.${modulePrefix}/detail-view/detail-view.component.css`], + templateUrl: './detail-view.component.html', + styleUrls: ['./detail-view.component.css'], imports: [ DxDataGridModule, DxFormModule, diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts index bed7e6a06597..82e5c027d476 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/app/app.component.ts @@ -6,15 +6,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts index 0af7849f9e83..5a9b39f089c8 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts index 937fa69a5259..987f0d45677c 100644 --- a/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/AutoPopulatedColumns/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts index ad4d9c55d809..3b6f2955f237 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts index 8bfb43fa2382..703487aa1903 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { const URL = 'https://js.devexpress.com/Demos/NetCore/api/DataGridBatchUpdateWebApi'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts index 8a798bc20a47..1f56cbcf1453 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts index 3b0d1ce3d40a..33ff43ddb493 100644 --- a/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Cell/Angular/app/app.component.ts @@ -11,12 +11,6 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Pipe({ name: 'gridCellData' }) export class GridCellDataPipe implements PipeTransform { transform({ data, column }) { @@ -26,8 +20,8 @@ export class GridCellDataPipe implements PipeTransform { @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts index 714df5f91b57..ab4682c7673f 100644 --- a/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CellEditing/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts index ddf314849adb..2627cd88cd82 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, providers: [CollaborativeEditingService], imports: [ diff --git a/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts index 6e314c485825..51221ea7a852 100644 --- a/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Column/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts index 471b42ac9af6..90814afb7090 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts index 1f52ff02e4d8..c6a0a720693d 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts index 586cb31b74cf..f1db313f5296 100644 --- a/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnReordering/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts index 8a05ed0e859b..c2f01ed37057 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts index 9a1720e84ec5..c7f03ed39225 100644 --- a/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ColumnsHidingPriority/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts index 8a4daa82fbcd..efceed0b32ce 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CommandColumnConfiguration/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { type FirstArgument = T extends (...args: any) => any ? Parameters[0] : never; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts index 664cf4408349..781625fc6be0 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts index e909f5fd5f6c..c58942548626 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts index eb2fcda38881..6b74824bdd27 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts index 3bd24ee8b813..eab3ac7cbdb2 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts index 7d76a9af777b..7d8c6b5d36a4 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/app/app.component.ts @@ -11,15 +11,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts index 3d5b83e94d01..635ab8e9c6a1 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/app/app.component.ts @@ -15,17 +15,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts index 1bae81790350..012b18c5274d 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, providers: [Service], imports: [ diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts index 89eb8425b43a..ce88ce32faf8 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts index 6e65dd07fb84..d2882b288db4 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts index 93f17031e7f5..38f7b1943c1e 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts index 619a903f5d21..75e5f138688c 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxButtonModule, diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts index 1a466d4575dc..e42de74d2926 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts index 1ac08c9f0249..315f673ac518 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts index 2e669cef8b9e..ca1de56ced7a 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/app/app.component.ts @@ -14,17 +14,11 @@ const getOrderDay = function ({ OrderDate }): number { return (new Date(OrderDate)).getDay(); }; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts index 57dee4518351..3c6effadd845 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/app/app.component.ts @@ -13,17 +13,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts index 66188cc6d256..91d32d10b083 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, providers: [Service], imports: [ diff --git a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts index 586cb31b74cf..f1db313f5296 100644 --- a/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FixedAndStickyColumns/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts index d6bb04f70f34..71f2b8b128e2 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts index 7f16265feb5d..e468a6ddb3ba 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts index 9a1720e84ec5..c7f03ed39225 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts index fd31ecca1938..f83ddb0ceaf5 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts index cf469f58d590..2ff61d55ed22 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts index f9455ead5162..fde58ef5dc38 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts index a90a6ba165cb..419c8bf17125 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts index dc9de9d012eb..57f4822c37db 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts index ff512b5064b3..3567eb6b20ae 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts index cbb3b8a520d0..7c89ac36539a 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts index 5e0b24937aee..6a1315c4a36a 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts index 18c3465a9a23..6bd904b1b517 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/app/detail-grid/detail-grid.component.ts @@ -3,15 +3,9 @@ import { DxDataGridModule } from 'devextreme-angular'; import { DataSource, ArrayStore } from 'devextreme-angular/common/data'; import { Service, Task } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'detail-grid', - templateUrl: `.${modulePrefix}/detail-grid/detail-grid.component.html`, + templateUrl: './detail-grid.component.html', imports: [DxDataGridModule], providers: [Service], }) diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts index 496b1c5a1ea9..5954ab14e63a 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts index c17dbce2aa39..cfe7a98158af 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/app/app.component.ts @@ -7,12 +7,6 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Pipe({ name: 'stringifyEmployees', standalone: true }) export class StringifyEmployeesPipe implements PipeTransform { transform(employees: Employee[]) { @@ -22,8 +16,8 @@ export class StringifyEmployeesPipe implements PipeTransform { @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts index d42cbb92eedc..f422bb904307 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts index 60c0f8cd0dae..dfa2abdb0984 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts index 69d4dc2cf1ce..38e497818018 100644 --- a/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/NewRecordPosition/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { type FirstArgument = T extends (...args: any) => any ? Parameters[0] : never; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts index 604719fabd8d..d91197a5d622 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts index 34c890b1b29a..c5b2910a21c8 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts index 5946ae67abe2..bfeacd9dc970 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts index 04a76cdd42ac..c24ab03b1235 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxButtonModule, diff --git a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts index 0bf5fdcd09e7..79a8e80bb505 100644 --- a/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFHeaderAndFooter/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts index f3b358aab8d5..e5c5b226bdaf 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts index 7f16265feb5d..e468a6ddb3ba 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts index a05d6d7da13c..cb946c1d90f4 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], changeDetection: ChangeDetectionStrategy.OnPush, imports: [ diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts index ac585d5e03a2..72f2c5cce259 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts index 562bf6023882..2250f537f15c 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts index 4e5218532a66..21fd806e807c 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], - styleUrls: [`.${modulePrefix}/app.component.css`], + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts index bde5b1e8cff9..d5ffcacabb26 100644 --- a/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteCRUDOperations/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { const URL = 'https://js.devexpress.com/Demos/NetCore/api/DataGridWebApi'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', changeDetection: ChangeDetectionStrategy.Eager, - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts index f8ce17f23c72..d4c953bfcafb 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], changeDetection: ChangeDetectionStrategy.OnPush, imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts index 222ffcfce2ec..4a9e20ac74cc 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { const url = 'https://js.devexpress.com/Demos/NetCore/api/DataGridRowReordering'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts index f8ce17f23c72..d4c953bfcafb 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], changeDetection: ChangeDetectionStrategy.OnPush, imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts index df8ad92171fe..babd2d242d8c 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts index 6baf98200b7f..690016ebf67a 100644 --- a/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Row/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts index 51d21f1e0ac9..ed49b94fd61d 100644 --- a/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RowEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts index 40455c52ea85..eaacec2479c8 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [DxDataGridModule], }) diff --git a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/app/app.component.ts index af8b03f0710f..4b3aa760aac3 100644 --- a/apps/demos/Demos/DataGrid/SemanticSearch/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/SemanticSearch/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - const url = 'https://js.devexpress.com/Demos/NetCore/api/DataGridSemanticSearch'; @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxDataGridModule, DxNumberBoxModule, diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts index 1b48035b5d98..17d409f233a3 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts index 144950a54df4..5f3f77c0b58b 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts index a64ce31bd2e2..024bd4991c51 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts index 84d6a7c40233..cdacb352e618 100644 --- a/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/Toolbar/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts index e9692676721a..f61d8b0356aa 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts index 50b1bd2fe0d3..9d01c6cbda46 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxDataGridModule, ], diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts index 7b3a30f95a5f..972f75b63967 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/app/detail-grid/detail-grid.component.ts @@ -2,15 +2,9 @@ import { Component, Input, AfterViewInit } from '@angular/core'; import { DataSource } from 'devextreme-angular/common/data'; import * as AspNetData from 'devextreme-aspnet-data-nojquery'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'detail-grid', - templateUrl: `.${modulePrefix}/detail-grid/detail-grid.component.html`, + templateUrl: './detail-grid.component.html', providers: [], }) export class DetailGridComponent implements AfterViewInit { diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts index 6e323339d359..2e358d787e63 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateBox/Formatting/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDateBoxModule, ], diff --git a/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts index c1b0fd4d06fc..26ae1733aeb8 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateBox/Overview/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDateBoxModule, ], diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts index 7a31a463b79d..f274ea774692 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { const msInDay = 1000 * 60 * 60 * 24; const now = new Date(); -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDateRangeBoxModule, ], diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts index 716c15c1ee43..8a8b7a98a23e 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/app/app.component.ts @@ -19,16 +19,10 @@ function convertRangeToDays([startDate, endDate]) { return diffInDay + 1; } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDateRangeBoxModule, ], diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts index 951440e34fc8..26ce0cd9bdf4 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts index 6c234c3ac2b6..67216a24f1ab 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts index f719ef239b5a..b44d17fefe2f 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Containers/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts index 0652737b1175..8f88760ca76e 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts index aa3e1d142d54..01be3fd0c5e9 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts index 0592c4d52b62..886fbadce67e 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts index 1c02ad344c99..33dc4b411a30 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts index 8801505e4b96..b5503b8613ce 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts index 7f0dbc6f36b1..25a647c0532f 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/app/app.component.ts @@ -15,12 +15,6 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Pipe({ name: 'stringifyItems', standalone: true }) export class StringifyItemsPipe implements PipeTransform { transform(items: DxDiagramTypes.Item[], textExpression: string): string { @@ -33,8 +27,8 @@ export class StringifyItemsPipe implements PipeTransform { @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts index 92510516ace9..24d5ff3a0a4a 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts index 58bbca2071c2..4b1021f3763e 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts index 300a16b4acc7..6d51fe27f75d 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts index c3a04bf28fc3..d0e129901203 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts index 951440e34fc8..26ce0cd9bdf4 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts index f719ef239b5a..b44d17fefe2f 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts index 689a3ae47f16..08e429e49a55 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts index b98852646f2a..e0ae495756ca 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts index b4a389eac656..5f330d8bbe61 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxDiagramModule, diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts index 57efdeebc9e7..0dddabf8bf9f 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts index 75ddc5c09596..df1985f87e59 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts index f7f6cd07c4fe..a0c7cd71726c 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTreeViewModule, DxDropDownBoxModule, diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts index 07bccf0c0fe5..826630c1fef2 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], changeDetection: ChangeDetectionStrategy.OnPush, imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts b/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts index 7e268dff8ddb..3b930f6617e4 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!document.location.host.includes('localhost')) { type Color = string; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDropDownButtonModule, diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts index 866c5b04649f..abbf3118cbf6 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FieldSet/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTextBoxModule, DxTextAreaModule, diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts index 41b024da4961..34effe556e5c 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', preserveWhitespaces: true, imports: [ DxFileManagerModule, diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts index 941ff7cb65dd..4d0612772514 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', preserveWhitespaces: true, imports: [ DxFileManagerModule, diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts index 913d3c1c48be..d5fe10fffe12 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts index dbf3642e8456..190116506eb2 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts index b8daa433351a..768ab855209b 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxFileManagerModule, diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts b/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts index f2abf69936bf..f0beeb41c36e 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts index 16eb82292751..12c0937e141b 100644 --- a/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/ChunkUpload/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFileUploaderModule, ], diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts index bd0e58f9125f..45677e2c388b 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFileUploaderModule, DxProgressBarModule, diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts index bc62a63960c2..fb489404490d 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTextBoxModule, DxFileUploaderModule, diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts index 8d4c92606301..6d0d3b385c7d 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/app/app.component.ts @@ -18,16 +18,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxFileUploaderModule, diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts b/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts index 7b686a377245..6587eea8c575 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/FileUploader/Validation/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFileUploaderModule, ], diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts index 32a405aa06fc..1777ed2d8df6 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/app/app.component.ts @@ -22,18 +22,12 @@ const anyOfOperation = { const TAB_SIZE = 4; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], changeDetection: ChangeDetectionStrategy.Eager, - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxListModule, DxButtonModule, diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts index adabdbf34dca..738a1b6463e2 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/app/app.component.ts @@ -13,17 +13,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxDataGridModule, DxButtonModule, diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts b/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts index 91fc27642470..4d199318c0cf 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/app/app.component.ts @@ -15,17 +15,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxListModule, DxButtonModule, diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts b/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts index dee3e70a68cd..68049900f185 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxDataGridModule, diff --git a/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts index ac6d5b488dfc..e62096953594 100644 --- a/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Adaptability/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxFormModule, diff --git a/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts index 95c397891276..fca67a0d8f20 100644 --- a/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Grouping/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts index 14f7bf4cefc4..be7774544fa9 100644 --- a/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/ItemCustomization/Angular/app/app.component.ts @@ -20,17 +20,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFormModule, DxTooltipModule, diff --git a/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts index 63988fb48c50..8a98afadf5ed 100644 --- a/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Overview/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts b/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts index d34921e4ccc0..09293d5a2d2c 100644 --- a/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/SmartPaste/Angular/app/app.component.ts @@ -17,12 +17,6 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - const stylingMode = 'filled'; type AIMessage = (OpenAI.ChatCompletionUserMessageParam | OpenAI.ChatCompletionSystemMessageParam) & { @@ -46,8 +40,8 @@ const showNotification = (message: string, of: string, isError?: boolean, offset @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxButtonModule, diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts index 02e1dd1b1e68..444844c7d15b 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts b/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts index d8992fb92b1d..deca16f14ae4 100644 --- a/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Form/Validation/Angular/app/app.component.ts @@ -36,17 +36,11 @@ const sendRequest = function (value) { }); }; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts index 7c0b2573a8a1..8d2c3b80be50 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxGalleryModule, CurrencyPipe, diff --git a/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts index 3ae810330779..41de6b488023 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gallery/Overview/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxGalleryModule, diff --git a/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts index cadfdc2bb943..b12c7a668ab9 100644 --- a/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Appearance/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, encapsulation: ViewEncapsulation.None, diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts index b08ada68f4eb..db3bce00ca02 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts index 7b6fa6b10c8a..b1635441005b 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts index 950b72afd440..471aac73afb1 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/app/app.component.ts @@ -25,16 +25,10 @@ if (!/localhost/.test(document.location.host)) { type ExportMode = Parameters[0]['exportMode']; type DateRange = Parameters[0]['dateRange']; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts index 7b6fa6b10c8a..b1635441005b 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts index 7b6fa6b10c8a..b1635441005b 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts index 7b6fa6b10c8a..b1635441005b 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Overview/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts index 6d9e9a99a64f..53097a7f6b39 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Sorting/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts index b313f85aedc2..3141329f8b8d 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/StripLines/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts index f20c907cc472..2b39683f62e2 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, encapsulation: ViewEncapsulation.None, diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts index d5bb60db1d7c..84b81a7b5011 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts b/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts index 9d2239195c82..4feb3a22b2ea 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gantt/Validation/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts index 82829cce21b1..7085be037285 100644 --- a/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/BarGauge/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxBarGaugeModule, diff --git a/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts index fbe42b87125a..ad3b5038e3ef 100644 --- a/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CircularGauge/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxCircularGaugeModule, diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts index 147400c4b6c6..d109d3338fd6 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts index 3e0e2a9c7275..80b938ff7966 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts index ce8cc25575a2..86a021f259a2 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts index b2c3e5fca2c7..35fb606640ae 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts index 83b6143fa280..46ec9c6ed8f2 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts index 9abfa2a02d01..38b109cfd97e 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxBarGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts index f1785de9d1c7..1000e015d3e4 100644 --- a/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/LinearGauge/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts index 2ad7b2e8e102..662da41ce1f1 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxCircularGaugeModule, diff --git a/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts index 92984901b8f0..0fc9ac38a26d 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Palette/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxBarGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts index 0585bb5a1750..d47e2586d583 100644 --- a/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/RangeBarBaseValue/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { type ScaleLabel = DxLinearGaugeTypes.ScaleLabel | DxCircularGaugeTypes.ScaleLabel; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, DxCircularGaugeModule, diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts index 147400c4b6c6..d109d3338fd6 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts index 147400c4b6c6..d109d3338fd6 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLinearGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts index ce8cc25575a2..86a021f259a2 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts index aad6014d277a..e8ee13a0d22a 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts index b5956404229d..094de7c3f3b3 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts index 4eec7cdc6a2b..3d1334749f95 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorsRuntimeCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxLinearGaugeModule, diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts index bcaece39f273..218f1b6d2e08 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxBarGaugeModule, ], diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts index e121025fc7ee..2372076ac6a0 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCircularGaugeModule, DxNumberBoxModule, diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts index 250c6bb68ef9..17b8e86ef6aa 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxBarGaugeModule, diff --git a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts index c3df9af5fa05..ee47e705561a 100644 --- a/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/AITextEditing/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service, AiService], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts index 79350019a16c..e4a3cf86ceca 100644 --- a/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/MarkdownSupport/Angular/app/app.component.ts @@ -19,16 +19,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts index 4e7841a1593a..1bcf988a5f47 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts index d267ac86617f..5dda13111e68 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts index ea5c18f4173b..5dbe7fa3329c 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts index f99c2f955870..157a8e78b306 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxHtmlEditorModule, diff --git a/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts index d5e288d51759..145323414f04 100644 --- a/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/DragAndDrop/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { type DxoItemDraggingProperties = DxSortableTypes.Properties; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], changeDetection: ChangeDetectionStrategy.Eager, preserveWhitespaces: true, imports: [DxListModule], diff --git a/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts index 88951f6e1d6c..48ab8db5dc97 100644 --- a/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Grouping/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxListModule, ], diff --git a/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts b/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts index a99794bde3d5..f888d9bd3477 100644 --- a/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/ItemDeletion/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts index 541140e8cb0a..47a22f662b95 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/ItemTemplate/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxListModule, CurrencyPipe, diff --git a/apps/demos/Demos/List/Search/Angular/app/app.component.ts b/apps/demos/Demos/List/Search/Angular/app/app.component.ts index 68265069c941..2a1e2eeeed90 100644 --- a/apps/demos/Demos/List/Search/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Search/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/List/Selection/Angular/app/app.component.ts b/apps/demos/Demos/List/Selection/Angular/app/app.component.ts index 4e5307a3c535..f9a115776146 100644 --- a/apps/demos/Demos/List/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/Selection/Angular/app/app.component.ts @@ -11,17 +11,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, changeDetection: ChangeDetectionStrategy.Eager, imports: [ diff --git a/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts b/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts index 474cd786b5da..b0a1e40d572f 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts +++ b/apps/demos/Demos/List/WebAPI/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxListModule, CurrencyPipe, diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts b/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts index 6ab70ccaa929..b8c76f5cc91e 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxButtonModule, DxLoadIndicatorModule, diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts b/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts index 751734afc9e6..e2b1081b7c5b 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxButtonModule, diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts b/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts index e1d197bf34dd..9cb7c3fcb505 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/app.component.ts @@ -9,12 +9,12 @@ import 'devextreme/common/core/localization/globalize/message'; // import 'devextreme-angular/common/core/localization'; -import deMessages from 'npm:devextreme/localization/messages/de.json!json'; -import ruMessages from 'npm:devextreme/localization/messages/ru.json!json'; +import deMessages from 'devextreme/localization/messages/de.json'; +import ruMessages from 'devextreme/localization/messages/ru.json'; -import deCldrData from 'npm:devextreme-cldr-data/de.json!json'; -import ruCldrData from 'npm:devextreme-cldr-data/ru.json!json'; -import supplementalCldrData from 'npm:devextreme-cldr-data/supplemental.json!json'; +import deCldrData from 'devextreme-cldr-data/de.json'; +import ruCldrData from 'devextreme-cldr-data/ru.json'; +import supplementalCldrData from 'devextreme-cldr-data/supplemental.json'; import Globalize from 'globalize'; import { Locale, Payment, Service } from './app.service'; @@ -23,16 +23,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/cldr.d.ts b/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/cldr.d.ts deleted file mode 100644 index 624e0f120a05..000000000000 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/app/cldr.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -declare module 'npm:devextreme-cldr-data/de.json!json' { - const json: object; - export = json; -} - -declare module 'npm:devextreme-cldr-data/ru.json!json' { - const json: object; - export = json; -} - -declare module 'npm:devextreme-cldr-data/supplemental.json!json' { - const json: object; - export = json; -} diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Vue/App.vue b/apps/demos/Demos/Localization/UsingGlobalize/Vue/App.vue index 673923ce2fa9..e7b967ad79c2 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Vue/App.vue +++ b/apps/demos/Demos/Localization/UsingGlobalize/Vue/App.vue @@ -67,11 +67,11 @@ import 'devextreme/common/core/localization/globalize/number'; import 'devextreme/common/core/localization/globalize/date'; import 'devextreme/common/core/localization/globalize/currency'; import 'devextreme/common/core/localization/globalize/message'; -import deMessages from 'npm:devextreme/localization/messages/de.json!json'; -import ruMessages from 'npm:devextreme/localization/messages/ru.json!json'; -import deCldrData from 'npm:devextreme-cldr-data/de.json!json'; -import ruCldrData from 'npm:devextreme-cldr-data/ru.json!json'; -import supplementalCldrData from 'npm:devextreme-cldr-data/supplemental.json!json'; +import deMessages from 'devextreme/localization/messages/de.json'; +import ruMessages from 'devextreme/localization/messages/ru.json'; +import deCldrData from 'devextreme-cldr-data/de.json'; +import ruCldrData from 'devextreme-cldr-data/ru.json'; +import supplementalCldrData from 'devextreme-cldr-data/supplemental.json'; import Globalize from 'globalize'; import service from './data.ts'; diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Vue/systemjs-imports.d.ts b/apps/demos/Demos/Localization/UsingGlobalize/Vue/systemjs-imports.d.ts deleted file mode 100644 index d28a0673e99d..000000000000 --- a/apps/demos/Demos/Localization/UsingGlobalize/Vue/systemjs-imports.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -declare module 'npm:devextreme/localization/messages/de.json!json' { - const json: object; - export default json; -} - -declare module 'npm:devextreme/localization/messages/ru.json!json' { - const json: object; - export default json; -} - -declare module 'npm:devextreme-cldr-data/de.json!json' { - const json: object; - export default json; -} - -declare module 'npm:devextreme-cldr-data/ru.json!json' { - const json: object; - export default json; -} - -declare module 'npm:devextreme-cldr-data/supplemental.json!json' { - const json: object; - export default json; -} - -declare module 'globalize' { - const Globalize: { - load: (...args: object[]) => void; - loadMessages: (messages: object) => void; - locale: (locale: string) => void; - formatMessage: (key: string, ...args: unknown[]) => string; - }; - export default Globalize; -} diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts b/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts index 5c5ef7d91669..32a87dc5368b 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/app/app.component.ts @@ -4,24 +4,18 @@ import { DxSelectBoxModule, DxDataGridModule } from 'devextreme-angular'; import { locale, loadMessages, formatMessage } from 'devextreme-angular/common/core/localization'; -import deMessages from 'npm:devextreme/localization/messages/de.json!json'; -import ruMessages from 'npm:devextreme/localization/messages/ru.json!json'; +import deMessages from 'devextreme/localization/messages/de.json'; +import ruMessages from 'devextreme/localization/messages/ru.json'; import { Locale, Payment, Service } from './app.service'; if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/app/messages.d.ts b/apps/demos/Demos/Localization/UsingIntl/Angular/app/messages.d.ts deleted file mode 100644 index 56667b8e480b..000000000000 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/app/messages.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -declare module 'npm:devextreme/localization/messages/de.json!json' { - const json: object; - export = json; -} - -declare module 'npm:devextreme/localization/messages/ru.json!json' { - const json: object; - export = json; -} diff --git a/apps/demos/Demos/Localization/UsingIntl/Vue/App.vue b/apps/demos/Demos/Localization/UsingIntl/Vue/App.vue index 953f19b0d1df..1330f67d6cf8 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Vue/App.vue +++ b/apps/demos/Demos/Localization/UsingIntl/Vue/App.vue @@ -63,8 +63,8 @@ import { DxDataGrid, DxColumn, DxEditing, DxFilterRow, } from 'devextreme-vue/data-grid'; import DxSelectBox, { type DxSelectBoxTypes } from 'devextreme-vue/select-box'; -import deMessages from 'npm:devextreme/localization/messages/de.json!json'; -import ruMessages from 'npm:devextreme/localization/messages/ru.json!json'; +import deMessages from 'devextreme/localization/messages/de.json'; +import ruMessages from 'devextreme/localization/messages/ru.json'; import { locale as dxLocale, loadMessages, formatMessage as dxFormatMessage } from 'devextreme-vue/common/core/localization'; import service from './data.ts'; diff --git a/apps/demos/Demos/Localization/UsingIntl/Vue/systemjs-imports.d.ts b/apps/demos/Demos/Localization/UsingIntl/Vue/systemjs-imports.d.ts deleted file mode 100644 index c440c25b3aa7..000000000000 --- a/apps/demos/Demos/Localization/UsingIntl/Vue/systemjs-imports.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -declare module 'npm:devextreme/localization/messages/de.json!json' { - const json: object; - export default json; -} - -declare module 'npm:devextreme/localization/messages/ru.json!json' { - const json: object; - export default json; -} diff --git a/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts index b2072cfee010..07a1385188c8 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/Basics/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLookupModule, ], diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts index 006bc0973f24..abeaeec2544d 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLookupModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts b/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts index b32641d67912..ba897a6e7e94 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Lookup/Templates/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxLookupModule, ], diff --git a/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts b/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts index 85aabe856eaf..9ac6c2d95713 100644 --- a/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/Markers/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxMapModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts index 13bbe54477f3..5eb72844bada 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxMapModule, diff --git a/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts b/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts index 4b54186087a2..09c8077d7424 100644 --- a/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts +++ b/apps/demos/Demos/Map/Routes/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxMapModule, diff --git a/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts index c022c299db94..5b8957c01325 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Menu/Overview/Angular/app/app.component.ts @@ -9,19 +9,13 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - const isProductItem = (item: Product | ProductItem): item is ProductItem => !('items' in item); @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxMenuModule, diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts index 5ff3ab2d9174..1f0e0eaaa9f7 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Menu/Scrolling/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxMenuModule, diff --git a/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts index 0400fafd943f..8bcf3abf8ff6 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/MultiView/Overview/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, changeDetection: ChangeDetectionStrategy.Eager, diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts b/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts index 8bce2655d9d2..59069cee7c56 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxNumberBoxModule, ], diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts index f252cf8ecb12..113cffa0c0fb 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/NumberBox/Overview/Angular/app/app.component.ts @@ -6,15 +6,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxNumberBoxModule, ], diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts index 356b60735666..7d690335e3fc 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Pagination/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPaginationModule, diff --git a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts index 9aa203f87924..c7abfdb88bd4 100644 --- a/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts +++ b/apps/demos/Demos/Pagination/Overview/Angular/app/employee-card/employee-card.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; import { Employee } from '../app.service'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'employee-card', - templateUrl: `.${modulePrefix}/employee-card/employee-card.component.html`, + templateUrl: './employee-card.component.html', }) export class EmployeeCard { @Input() employee: Employee; diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts index 625886ceb5a3..7da0ea3bdca0 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service, CurrencyPipe], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts index 3a7876744a3e..0ad5d90d6a17 100644 --- a/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Customization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts index 034133fee970..4b02b5bd7993 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts index 47ba64acb11d..0828e9f5a347 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/app/app.component.ts @@ -14,15 +14,9 @@ if (!/localhost/.test(document.location.host)) { type CellData = DxPivotGridTypes.CellPreparedEvent['cell']; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts index f70592f15796..0afcc6efe057 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts index 89a588bdc4db..edfef6a9e37e 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/app/app.component.ts @@ -12,16 +12,11 @@ import { Service, Sale } from './app.service'; if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts index e0bdfc93f679..423b870ca1a0 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts index e883d1c9e63e..05319e02f3f0 100644 --- a/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Filtering/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts index 704817e421af..eedc584892ea 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ - styleUrls: [`.${modulePrefix}/app.component.css`], + styleUrls: ['./app.component.css'], selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxPivotGridModule, DxSelectBoxModule, diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts index a6069605b8cd..234a27fbc594 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ - styleUrls: [`.${modulePrefix}/app.component.css`], + styleUrls: ['./app.component.css'], selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxPivotGridModule, ], diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts index 89ed7d3db645..76e601522c4f 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts index 10fce778c57c..102ea7b821ac 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ - styleUrls: [`.${modulePrefix}/app.component.css`], + styleUrls: ['./app.component.css'], selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxPivotGridModule, ], diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts index 455687e839dd..6897e25c9eff 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts index f2cdf4193759..d785975cd622 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, 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..b8b3e8d826c3 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts index 85a6a2a336b4..0dd108c91792 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts index 8651275365fb..7219ad8cd6dc 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts index 37b997289bcc..44a424698243 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxPivotGridModule, diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts index 8d311306bb83..ab585a0840f1 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/app/app.component.ts @@ -8,15 +8,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxPivotGridModule, ], diff --git a/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts index a056d336ab72..aad3b932733a 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popover/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxPopoverModule, ], diff --git a/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts index 9648528644d8..a6d63d81a68e 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popup/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxPopupModule, diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts b/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts index 3c50d43a6931..8310b72d9736 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Popup/Scrolling/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxPopupModule, DxButtonModule, diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts index d78406e63474..d60ca2e6b8ae 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxButtonModule, DxProgressBarModule, diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts b/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts index 94465a24acf3..ef0bb801e127 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRadioGroupModule, ], diff --git a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts index 95fc125d91bb..512e49386fe4 100644 --- a/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/BackgroundImage/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts index 3990c6fb9d3a..194b9f9db4e5 100644 --- a/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/Calculation/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxRangeSelectorModule, diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts index 42f151cef560..7ffd9f9687d0 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts index 23ad7c6e3109..b1ec6129dfce 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts index fd6f742396ad..b7e95d234a44 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts index bbc239723bbb..7f5a3631a451 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, DecimalPipe, diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts index 1867470fe129..9b9841bee85a 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChart/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts index dc3336e8d833..9271a301460d 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartCustomized/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts index 8756aae143be..0ac3ae5cb957 100644 --- a/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/EmbeddedChartSeriesTemplate/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts index 42516d30825c..cb92a6ca0332 100644 --- a/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/Filter/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, DxDataGridModule, diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts index e3fc5ef30951..73adbb3194a1 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, DxChartModule, diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts index 848814810b46..b6ccc7bfad30 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts index 77f7da7d16e9..36ca7b140cd0 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSelectorModule, ], diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts b/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts index 35170af6bcf0..761a2c60d52a 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxRangeSliderModule, DxNumberBoxModule, diff --git a/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts index 1c59a0a2d2e0..58fde1b5e12c 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Resizable/Overview/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], encapsulation: ViewEncapsulation.None, imports: [ diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts index 284074e3168f..3522a8854d35 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxResponsiveBoxModule, ], diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts index 76eafcff624b..0d297d64d575 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts index b124f3dc1ddd..95c79baef457 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/app/app.component.ts @@ -10,15 +10,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts index c8ff3854b01a..bac3a6f108fc 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts index 9152522a738e..c949cb951631 100644 --- a/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/AppointmentCountPerCell/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts index 9b1b6f263ac4..2e5e78b448d8 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts index ca161e9b2d63..f4ce2274f7f4 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/app/app.component.ts @@ -17,16 +17,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [DataService], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts index dbb0f9ffb696..fa3b3230547d 100644 --- a/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/ContextMenu/Angular/app/app.component.ts @@ -13,16 +13,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/app/app.component.ts index ca135b366a8b..2ee2e0d14b33 100644 --- a/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CreateFromSelection/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts index 1faa66173fb1..860074396dff 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.ts @@ -20,16 +20,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts index 4e6599870939..dd8b02a0ffe3 100644 --- a/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/CustomViewDuration/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts index 43c4ee2063d0..24fe1c564501 100644 --- a/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/DragAndDrop/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts index 05b0537da357..ded044349a66 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Editing/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts index f1c6c6339303..360d89283c37 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSchedulerModule, ], diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts index b324688a37bd..117749a9996c 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts index d5f58c08cd01..356e04f49fdf 100644 --- a/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/GroupingByResources/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/HiddenDays/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/HiddenDays/Angular/app/app.component.ts index 41b1ae46ae97..f6cc1aab772a 100644 --- a/apps/demos/Demos/Scheduler/HiddenDays/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/HiddenDays/Angular/app/app.component.ts @@ -9,12 +9,6 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - interface DayLabel { index: DxSchedulerTypes.DayOfWeek; label: string; @@ -23,8 +17,8 @@ interface DayLabel { @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [DataService], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts index add68a79966a..c613e79606c7 100644 --- a/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/IndividualViewsCustomization/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts index 23c9e8ee154e..66034ad6dd98 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.ts @@ -14,16 +14,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts index e36b19284d37..859023d082a9 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/app/app.component.ts index ec779ce66c73..96bd4aa81eac 100644 --- a/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/ResolveTimeConflicts/Angular/app/app.component.ts @@ -17,16 +17,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts index 1da1ab58b6db..bacda02eec19 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Resources/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts index 6872c0c8e5fe..1fb8e07fe959 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/app/app.component.ts @@ -51,16 +51,10 @@ connection }); }); -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSchedulerModule, ], diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts index cc04e1d5c427..9894b3890283 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts index 5a8a40cbb778..6dc94f6d498b 100644 --- a/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Templates/Angular/app/app.component.ts @@ -30,16 +30,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts index 012b2c6a76ee..d7425b7842ed 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts index d6c850760c9d..9af38a0454a4 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts index ca88c4a86d3e..d98229cb3afd 100644 --- a/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/Toolbar/Angular/app/app.component.ts @@ -11,15 +11,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxButtonModule, diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts index 7a1320823036..4e9b5f498fe9 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.ts @@ -6,16 +6,11 @@ import { Resource, Appointment, Service } from './app.service'; if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts index 985368ed3181..d5e4e173683a 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/app/app.component.ts @@ -10,15 +10,9 @@ if (!/localhost/.test(document.location.host)) { const url = 'https://js.devexpress.com/Demos/NetCore/api/SchedulerData'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxSchedulerModule, ], diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts b/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts index 93470ab1bde3..05d04a0463cb 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSchedulerModule, diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts b/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts index 55057da91db0..9342013a9509 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/ScrollView/Overview/Angular/app/app.component.ts @@ -16,16 +16,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts index 4191e002d004..7bedac5d9a4c 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts index a42e7662f9d9..614e49cf1b90 100644 --- a/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/Grouping/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts index 4441e232a98d..6846a87369d5 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/Overview/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts index f51e92847ac1..71c0baaa2e61 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxSelectBoxModule, diff --git a/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts index 71d6446e7090..bd4425ea7e7f 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Slider/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSliderModule, DxNumberBoxModule, diff --git a/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts b/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts index ba809afd5858..bc1572198138 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts +++ b/apps/demos/Demos/Sortable/Customization/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxScrollViewModule, diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts b/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts index 91baf25187b6..78f70df903b0 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts +++ b/apps/demos/Demos/Sortable/Kanban/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts b/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts index d4538dd08b15..e61dce8721dd 100644 --- a/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/SpeechToText/Overview/Angular/app/app.component.ts @@ -20,16 +20,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSpeechToTextModule, DxTextAreaModule, diff --git a/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts index f3f81a7d7ec7..85d44dcde4c1 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Splitter/Overview/Angular/app/app.component.ts @@ -11,17 +11,11 @@ interface PaneContentTemplate { data?: any; } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], changeDetection: ChangeDetectionStrategy.OnPush, imports: [ DxSplitterModule, diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts index 65038b5caeb2..d0c6c77c709c 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/additional-form/additional-form.component.ts @@ -5,15 +5,9 @@ import { type DxTextAreaTypes } from 'devextreme-angular/ui/text-area'; import 'devextreme/ui/text_area'; import type { BookingFormData } from '../app.types'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'additional-form', - templateUrl: `.${modulePrefix}/additional-form/additional-form.component.html`, + templateUrl: './additional-form.component.html', imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts index 9a49327b0151..da42dd2c788c 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/app.component.ts @@ -23,17 +23,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxButtonModule, DxMultiViewModule, diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts index debd185d0d58..64dbf624086b 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/confirmation/confirmation.component.ts @@ -1,17 +1,11 @@ import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; import type { BookingFormData } from '../app.types'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'confirmation', - templateUrl: `.${modulePrefix}/confirmation/confirmation.component.html`, - styleUrls: [`.${modulePrefix}/confirmation/confirmation.component.css`], + templateUrl: './confirmation.component.html', + styleUrls: ['./confirmation.component.css'], }) export class ConfirmationComponent { @Input() formData: BookingFormData; diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts index f8532c00be90..e00ef404db75 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/dates-form/dates-form.component.ts @@ -5,15 +5,9 @@ import { type DxDateRangeBoxTypes } from 'devextreme-angular/ui/date-range-box'; import 'devextreme/ui/date_range_box'; import type { BookingFormData } from '../app.types'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'dates-form', - templateUrl: `.${modulePrefix}/dates-form/dates-form.component.html`, + templateUrl: './dates-form.component.html', imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts index b186255dc2ad..52d89e85637d 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/guests-form/guests-form.component.ts @@ -4,15 +4,9 @@ import { DxFormComponent, type DxFormTypes } from 'devextreme-angular/ui/form'; import { type DxNumberBoxTypes } from 'devextreme-angular/ui/number-box'; import type { BookingFormData } from '../app.types'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'guests-form', - templateUrl: `.${modulePrefix}/guests-form/guests-form.component.html`, + templateUrl: './guests-form.component.html', imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts index eeb9add97795..ed210bb53233 100644 --- a/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts +++ b/apps/demos/Demos/Stepper/FormIntegration/Angular/app/room-meal-plan-form/room-meal-plan-form.component.ts @@ -5,15 +5,9 @@ import { type DxSelectBoxTypes } from 'devextreme-angular/ui/select-box'; import 'devextreme/ui/select_box'; import type { BookingFormData } from '../app.types'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'room-meal-plan-form', - templateUrl: `.${modulePrefix}/room-meal-plan-form/room-meal-plan-form.component.html`, + templateUrl: './room-meal-plan-form.component.html', imports: [ DxFormModule, ], diff --git a/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts index 023261702428..879fcfd41df1 100644 --- a/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/Overview/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxStepperModule, DxButtonGroupModule, diff --git a/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts b/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts index 59ae04ea4ce6..ed0073a7735e 100644 --- a/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/Stepper/StepTemplate/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxStepperModule, ], diff --git a/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts index 6e52a4e737fd..a12fee65167c 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Switch/Overview/Angular/app/app.component.ts @@ -6,15 +6,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxSwitchModule, ], diff --git a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts index 84534e2e919c..0d26cd4c26d7 100644 --- a/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/DragAndDrop/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts index 451388a36073..2e39d85c87e7 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/Overview/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts b/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts index 4e0c9934882b..e700c0cbfde0 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts +++ b/apps/demos/Demos/TabPanel/Templates/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts index 7d116b646151..a04b16d15d5e 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tabs/Overview/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTabsModule, diff --git a/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts b/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts index 0a51e5e63c78..1cfb744c6052 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tabs/Selection/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ changeDetection: ChangeDetectionStrategy.Eager, selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTabsModule, diff --git a/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts index 25a9f2f9385e..9c7b926059ae 100644 --- a/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/Grouping/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTagBoxModule, diff --git a/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts index dd29ae537e31..db9f684a031b 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/Overview/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!document.location.host.includes('localhost')) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTagBoxModule, DxPopoverModule, diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts index b9487e7bedf9..3cd067c00344 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTagBoxModule, ], diff --git a/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts index 3aadf03f965d..8a139c251fd2 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TextArea/Overview/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTextAreaModule, diff --git a/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts index a6ac9dbff694..41d2cb5a9961 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TextBox/Overview/Angular/app/app.component.ts @@ -6,15 +6,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [ DxTextBoxModule, ], diff --git a/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts b/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts index b8636a9770f5..a7fcf335fe16 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/Basics/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTileViewModule, diff --git a/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts b/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts index 05b05ef28ff2..95b8fda7113c 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/Directions/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts b/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts index 675423370ae8..edad873d9abe 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTileViewModule, diff --git a/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts index 74823dcd53aa..7870536e7be8 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toast/Overview/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxCheckBoxModule, DxToastModule, diff --git a/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts b/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts index 7635396a2ff9..8ea998c62992 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toast/Stack/Angular/app/app.component.ts @@ -16,16 +16,10 @@ if (!/localhost/.test(document.location.host)) { type Position = Parameters[1]['position']; type Direction = Parameters[1]['direction']; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxButtonModule, DxRadioGroupModule, diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts index b6c21faacd5b..c74ab669bb18 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/app/app.component.ts @@ -27,16 +27,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxToolbarModule, diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts index 0ffdace3bcbf..3b0247d1c313 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Toolbar/Overview/Angular/app/app.component.ts @@ -12,16 +12,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxListModule, diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts index 91531d8da1a7..32062f296703 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Tooltip/Overview/Angular/app/app.component.ts @@ -6,16 +6,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTooltipModule, ], diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts index ef9344fc8f42..1cc91b4a9c1f 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/app.component.ts @@ -11,16 +11,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service, AiService], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts index 859740ba2e00..8786e42875e2 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/employee/employee.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'employee', - templateUrl: `.${modulePrefix}/employee/employee.component.html`, - styleUrls: [`.${modulePrefix}/employee/employee.component.css`], + templateUrl: './employee.component.html', + styleUrls: ['./employee.component.css'], }) export class Employee { @Input() firstName!: string; diff --git a/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts b/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts index 994244458edc..cd989d4f9748 100644 --- a/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts +++ b/apps/demos/Demos/TreeList/AIColumns/Angular/app/status/status.component.ts @@ -1,15 +1,9 @@ import { Component, Input } from '@angular/core'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'status', - templateUrl: `.${modulePrefix}/status/status.component.html`, - styleUrls: [`.${modulePrefix}/status/status.component.css`], + templateUrl: './status.component.html', + styleUrls: ['./status.component.css'], }) export class Status { @Input() status!: string; diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts index c0ffe19b48bf..c27b2ca914e1 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts index a9213fe615c8..f0f12c608ca0 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts index a9213fe615c8..f0f12c608ca0 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts index 30afdf9405a1..190a05e45d89 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts index 35f294947df4..f29179a69151 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts index 1307b83b82b6..ec0864f774e9 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts index 82c8311631a1..1ee4befb6c32 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts index 51a17eced41b..a04a442245b7 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTreeListModule, ], diff --git a/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts index 1bf9c3597ec1..4d4fded1e464 100644 --- a/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FilterRow/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts index 84517a335f24..ac6d43f0af4f 100644 --- a/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FixedAndStickyColumns/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts index ab1f3592a43d..3c8544eac019 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { const url = 'https://js.devexpress.com/Demos/NetCore/api/TreeListTasks'; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts index bc448d6196a8..eab573418e21 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts index 395288d1c7a6..89f30e79f264 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts index a9f72e4d40d8..8652065f6472 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTreeListModule, ], diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts index 6d23e945f187..9023e196d06b 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts index 002f5fcddf5b..4ab28536632a 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts index 9e9cf82789e4..ee0a62d2e9e1 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts index b389d2d346aa..f26137c71719 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Overview/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], preserveWhitespaces: true, imports: [ diff --git a/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts index 45b5cbf295e3..bf6e48423d0a 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Paging/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts index 97984d898cca..cc7053c94153 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts index 84517a335f24..ac6d43f0af4f 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Reordering/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts index f543a836e853..6a96e8c88175 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/Resizing/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts index 76afc539e301..17b840d1b570 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts index 9e9cf82789e4..ee0a62d2e9e1 100644 --- a/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SearchPanel/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts index c0ffe19b48bf..c27b2ca914e1 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts index c0ffe19b48bf..c27b2ca914e1 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts index 47b65d6f38bc..581d191722b9 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts index b1c75896d6a6..6cad8c6549cc 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeListModule, diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts b/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts index 2cdd581856b1..4644da2bcafe 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/app/app.component.ts @@ -8,16 +8,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxTreeListModule, ], diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts index e3f0ce527bb7..6e6c887f4425 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/app/app.component.ts @@ -10,16 +10,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxListModule, diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts index 19f885160f78..d2f66eec5b76 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/app/app.component.ts @@ -12,16 +12,10 @@ type TreeView = ReturnType; type Node = DxTreeViewTypes.Node; type Item = FileSystemItem; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts index 1e4d7b8f903e..435f54d73e9f 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/app/app.component.ts @@ -12,16 +12,10 @@ type TreeView = ReturnType; type Node = DxTreeViewTypes.Node; type Item = FileSystemItem; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts index 81c2ca7da87c..088628b50888 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts index 81c2ca7da87c..088628b50888 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/app/app.component.ts @@ -7,16 +7,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts index 43822952e013..e36a37e2d907 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/app/app.component.ts @@ -18,16 +18,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], changeDetection: ChangeDetectionStrategy.Eager, preserveWhitespaces: true, diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts index 9d4113ef96f0..8606f6c1d204 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/app/app.component.ts @@ -9,15 +9,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', providers: [], imports: [DxTreeViewModule], }) diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts index 3b7e4151e8f0..e8e35936cffa 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/app/app.component.ts @@ -9,16 +9,10 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], providers: [Service], imports: [ DxTreeViewModule, diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts b/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts index deb76610a81b..71574e1ed667 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/app/app.component.ts @@ -7,15 +7,9 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', - templateUrl: `.${modulePrefix}/app.component.html`, + templateUrl: './app.component.html', imports: [DxTreeViewModule], }) export class AppComponent { diff --git a/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts b/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts index 615b666b1f3f..bf95c1d8941f 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/Validation/Overview/Angular/app/app.component.ts @@ -32,17 +32,11 @@ const sendRequest = function (value: string) { }); }; -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxSelectBoxModule, DxCheckBoxModule, diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts index 5b421137f354..de9af96d3637 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts index 3d40b673a697..f830d37619ba 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts index f4bee35f3a17..9426f186b9a8 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, DecimalPipe, diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts index 0af4755038ff..d0a89e6394ac 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts index d8908162ec04..8a34a23aa3bd 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/app/app.component.ts @@ -12,17 +12,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts index b0ab876c4a9f..2e53b5b3b6b7 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/app/app.component.ts @@ -10,17 +10,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], preserveWhitespaces: true, imports: [ DxVectorMapModule, diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts index 155f7b50273d..16d06c2e2f9c 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/app/app.component.ts @@ -7,17 +7,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts index e9380040d439..459dfc5d31cf 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts index 00e3d4481ce9..be669a1efdba 100644 --- a/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Legend/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts index c71567f396a1..bca3ef34b72a 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts index 94d38e17dbfa..47824340b4ee 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Overview/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, DxPieChartModule, diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts index 40fafe3c98cc..2394de285bfb 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/Palette/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts index 08f9508f66a0..ea01088862be 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/app/app.component.ts @@ -8,17 +8,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, ], diff --git a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts index 527093b0aaab..bdca34e3ce68 100644 --- a/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/TooltipsCustomization/Angular/app/app.component.ts @@ -9,17 +9,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, DxPieChartModule, diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts index 517205d4e7b9..d99c575e0db3 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/app/app.component.ts @@ -11,17 +11,11 @@ if (!/localhost/.test(document.location.host)) { enableProdMode(); } -let modulePrefix = ''; -// @ts-ignore -if (window && window.config?.packageConfigPaths) { - modulePrefix = '/app'; -} - @Component({ selector: 'demo-app', providers: [Service], - templateUrl: `.${modulePrefix}/app.component.html`, - styleUrls: [`.${modulePrefix}/app.component.css`], + templateUrl: './app.component.html', + styleUrls: ['./app.component.css'], imports: [ DxVectorMapModule, DxButtonModule, diff --git a/apps/demos/eslint.config.mjs b/apps/demos/eslint.config.mjs index a3503df3b225..24effe4514ba 100644 --- a/apps/demos/eslint.config.mjs +++ b/apps/demos/eslint.config.mjs @@ -42,7 +42,6 @@ export default [ 'publish-demos', 'Demos/**/testcafe-test-code.js', 'shared/empty-file.ts', - 'Demos/**/config.js', 'Demos/**/Vue/**/*.html', 'utils/templates/**/*.ts', 'utils/templates/**/*.tsx', @@ -267,20 +266,6 @@ export default [ }, }, - // ./configs directory - { - files: ['configs/**/*.js'], - languageOptions: { - globals: { - System: true, - }, - }, - rules: { - 'no-dupe-keys': 0, - '@stylistic/quote-props': ['error', 'consistent'], - }, - }, - // jQuery demos { files: ['Demos/**/jQuery/*.*', 'utils/templates/jQuery/**/*.*'], @@ -328,11 +313,6 @@ export default [ 'react-hooks': reactHooks, react: reactPlugin }, - languageOptions: { - globals: { - System: false, - }, - }, settings: { react: { createClass: 'createReactClass', @@ -395,9 +375,6 @@ export default [ parser: tsParser, sourceType: 'module', }, - globals: { - System: false, - }, }, rules: { // TODO: enable 'no-unused-vars', see these rules to configure it: @@ -535,7 +512,6 @@ export default [ '@typescript-eslint/await-thenable': 0, 'spellcheck/spell-checker': 0, 'consistent-return': 0, - 'import/no-unresolved': ['error', { ignore: ['^demo-ts-loader$', '^demo-ts-shared$'] }], }, }, { diff --git a/apps/demos/tsconfig.eslint.json b/apps/demos/tsconfig.eslint.json index e0f0e6fe78b4..ac91487a4eb1 100644 --- a/apps/demos/tsconfig.eslint.json +++ b/apps/demos/tsconfig.eslint.json @@ -10,7 +10,8 @@ "jsx": "react-jsx", "allowSyntheticDefaultImports": true, "esModuleInterop": true, - "lib": ["es2022", "DOM", "DOM.Iterable"] + "lib": ["es2022", "DOM", "DOM.Iterable"], + "resolveJsonModule": true }, "include": [ "./Demos/**/React/**/*.ts", diff --git a/apps/demos/tsconfig.ngc-check.json b/apps/demos/tsconfig.ngc-check.json index c2238247f165..3a691b58182d 100644 --- a/apps/demos/tsconfig.ngc-check.json +++ b/apps/demos/tsconfig.ngc-check.json @@ -7,7 +7,8 @@ "module": "ESNext", "moduleResolution": "Node", "ignoreDeprecations": "6.0", - "lib": ["es2022", "DOM", "DOM.Iterable"] + "lib": ["es2022", "DOM", "DOM.Iterable"], + "resolveJsonModule": true }, "angularCompilerOptions": { "strictTemplates": true, diff --git a/apps/demos/tsconfig.vue-check.json b/apps/demos/tsconfig.vue-check.json index 74eb6def9b16..f99115400f4a 100644 --- a/apps/demos/tsconfig.vue-check.json +++ b/apps/demos/tsconfig.vue-check.json @@ -3,7 +3,8 @@ "compilerOptions": { "lib": ["es2023", "DOM", "DOM.Iterable"], "ignoreDeprecations": "6.0", - "strict": true + "strict": true, + "resolveJsonModule": true }, "include": [ "Demos/**/Vue/**/*.vue", diff --git a/apps/demos/utils/server/csp-bundle-angular.js b/apps/demos/utils/server/csp-bundle-angular.js index 63107aaf168d..27d256fb4a3b 100644 --- a/apps/demos/utils/server/csp-bundle-angular.js +++ b/apps/demos/utils/server/csp-bundle-angular.js @@ -205,8 +205,7 @@ function discoverComponentStyleFiles(tsFiles) { const src = fs.readFileSync(tsFile, 'utf8'); for (const m of src.matchAll(STYLE_URLS_RE)) { for (const item of m[1].matchAll(STYLE_URL_ITEM_RE)) { - // Drop the SystemJS `${modulePrefix}` placeholder; under AOT it collapses to ''. - const cleaned = item[1].includes('${') ? item[1].replace(/\$\{[^}]+\}/g, '') : item[1]; + const cleaned = item[1]; result.add(path.resolve(path.dirname(tsFile), cleaned)); } } @@ -273,19 +272,17 @@ 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. +// ---- templateUrl / styleUrls patcher ---- +// Rewrite component resource paths to `./.` (sibling of the .ts) +// and feed the patched copy (written next to the original so its relative +// imports still resolve) via fileReplacements. Also prepend @ts-nocheck so +// JIT-era demo code compiles under AOT. 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; @@ -363,7 +360,7 @@ function findDemoTsFiles(rootDir) { return out; } -// Map the bare `anti-forgery` specifier as the SystemJS config does. +// Map the bare `anti-forgery` specifier to the shared fetch override. const ANTI_FORGERY_PATH = path.join(DEMOS_APP_ROOT, 'shared', 'anti-forgery', 'fetch-override.js'); const antiForgeryPlugin = { name: 'csp-bundle-angular:anti-forgery', @@ -474,10 +471,10 @@ const devextremeDistRedirectPlugin = { }, }; -// Rewrite SystemJS specifiers (npm:foo, !json, globalize/) for esbuild. +// Resolve `globalize/` to the dist browser build. const GLOBALIZE_BASE = path.join(REPO_ROOT, 'node_modules', 'globalize', 'dist', 'globalize'); -const systemJsQuirksPlugin = { - name: 'csp-bundle-angular:systemjs-quirks', +const globalizePlugin = { + name: 'csp-bundle-angular:globalize', setup(build) { build.onResolve({ filter: /^globalize\/[^/]+$/ }, (args) => { const sub = args.path.slice('globalize/'.length); @@ -490,31 +487,6 @@ const systemJsQuirksPlugin = { } return null; }); - - build.onResolve({ filter: /(^npm:)|(!json$)/ }, async (args) => { - let spec = args.path; - const forceJson = spec.endsWith('!json'); - if (forceJson) spec = spec.slice(0, -'!json'.length); - if (spec.startsWith('npm:')) spec = spec.slice('npm:'.length); - - const resolved = await build.resolve(spec, { - kind: args.kind, - importer: args.importer, - resolveDir: args.resolveDir, - pluginData: { cspBundleAngularResolved: true }, - }); - if (resolved.errors.length > 0) return resolved; - - if (forceJson) { - return { path: resolved.path, namespace: 'csp-bundle-angular-force-json' }; - } - return { path: resolved.path, external: resolved.external }; - }); - - build.onLoad({ filter: /.*/, namespace: 'csp-bundle-angular-force-json' }, (args) => ({ - contents: fs.readFileSync(args.path, 'utf8'), - loader: 'json', - })); }, }; @@ -591,10 +563,9 @@ function makeBuildOptions({ 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). + // Resolve bare `globalize` to the core build (as the React/Vue bundler does). + // 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). alias: { globalize: path.join(NODE_MODULES, 'globalize', 'dist', 'globalize.js'), }, @@ -616,7 +587,7 @@ function makeBuildOptions({ plugins: [ angularSingleCopyPlugin, antiForgeryPlugin, - systemJsQuirksPlugin, + globalizePlugin, devextremeAngularSnakeCasePlugin, devextremeDistRedirectPlugin, devextremeRedirectPlugin, diff --git a/apps/demos/utils/server/csp-bundle.js b/apps/demos/utils/server/csp-bundle.js index 9e2c27af40e2..36e6b761800f 100644 --- a/apps/demos/utils/server/csp-bundle.js +++ b/apps/demos/utils/server/csp-bundle.js @@ -1,6 +1,5 @@ // 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. +// production CSP profile. Output: apps/demos/csp-bundled-demos////index.html. // Angular is delegated to csp-bundle-angular.js. const path = require('path'); @@ -87,7 +86,7 @@ function findEntry(srcDir) { return null; } -// Treat imports of missing .css files (carried over from SystemJS configs) as empty. +// Treat imports of missing .css files as empty. const ignoreMissingCssPlugin = { name: 'csp-bundle:ignore-missing-css', setup(build) { @@ -105,13 +104,12 @@ const ignoreMissingCssPlugin = { }, }; -// Rewrite SystemJS-specific import specifiers (npm:, !json, -// anti-forgery, globalize/) so esbuild resolves them like the dev loader. +// Resolve demo-specific bare specifiers (anti-forgery, globalize/) for esbuild. 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'); -const systemJsQuirksPlugin = { - name: 'csp-bundle:systemjs-quirks', +const demoAliasesPlugin = { + name: 'csp-bundle:demo-aliases', setup(build) { build.onResolve({ filter: /^anti-forgery$/ }, () => ({ path: ANTI_FORGERY_PATH })); @@ -121,32 +119,6 @@ const systemJsQuirksPlugin = { if (fs.existsSync(full)) return { path: full }; 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'); - if (forceJson) spec = spec.slice(0, -'!json'.length); - if (spec.startsWith('npm:')) spec = spec.slice('npm:'.length); - - const resolved = await build.resolve(spec, { - kind: args.kind, - importer: args.importer, - resolveDir: args.resolveDir, - pluginData: { cspBundleResolved: true }, - }); - if (resolved.errors.length > 0) return resolved; - - if (forceJson) { - return { path: resolved.path, namespace: 'csp-bundle-force-json' }; - } - return { path: resolved.path, external: resolved.external }; - }); - - build.onLoad({ filter: /.*/, namespace: 'csp-bundle-force-json' }, (args) => ({ - contents: fs.readFileSync(args.path, 'utf8'), - loader: 'json', - })); }, }; @@ -211,7 +183,7 @@ 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. + // Alias bare 'globalize' to the browser build. globalize: path.join(NODE_MODULES, 'globalize', 'dist', 'globalize.js'), }, define: { @@ -222,14 +194,14 @@ function getSharedOptions(framework) { logLevel: 'silent', plugins: [ devextremeDedupePlugin, - systemJsQuirksPlugin, + demoAliasesPlugin, ignoreMissingCssPlugin, ...(framework === 'Vue' ? [getVuePlugin()] : []), ], }; } -// Reuse the dev markup (minus its SystemJS 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