diff --git a/.github/actions/run-qunit-tests/action.yml b/.github/actions/run-qunit-tests/action.yml index 17a7264bc244..266b84147ea3 100644 --- a/.github/actions/run-qunit-tests/action.yml +++ b/.github/actions/run-qunit-tests/action.yml @@ -80,17 +80,6 @@ runs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 - with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules - - - name: Run npm install - shell: bash - run: npm install --no-audit --no-fund - - name: Download artifacts uses: actions/download-artifact@v3 with: @@ -104,6 +93,30 @@ runs: rm -rf artifacts/npm 7z x artifacts.zip + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + shell: bash + run: pnpm install + - name: Build dotnet working-directory: ./packages/devextreme shell: bash diff --git a/.github/workflows/default_workflow.yml b/.github/workflows/default_workflow.yml index 947797db1ee1..472c565f07b6 100644 --- a/.github/workflows/default_workflow.yml +++ b/.github/workflows/default_workflow.yml @@ -18,24 +18,44 @@ jobs: name: main runs-on: devextreme-shr2 timeout-minutes: 30 - + steps: - name: Get sources uses: actions/checkout@v4 - - - name: Restore npm cache - uses: actions/cache@v4 + + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - - name: Run npm install - run: npm ci --no-audit --no-fund - - name: Run targets run: > - npx nx run-many + pnpx nx run-many -t test --exclude devextreme diff --git a/.github/workflows/demos_unit_tests.yml b/.github/workflows/demos_unit_tests.yml index 85103ebcf63a..d7b9ddec62e7 100644 --- a/.github/workflows/demos_unit_tests.yml +++ b/.github/workflows/demos_unit_tests.yml @@ -26,16 +26,31 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Run unit tests working-directory: apps/demos - run: npx nx test + run: pnpx nx test diff --git a/.github/workflows/demos_visual_tests.yml b/.github/workflows/demos_visual_tests.yml index b9464964659c..fc6fc9fe19df 100644 --- a/.github/workflows/demos_visual_tests.yml +++ b/.github/workflows/demos_visual_tests.yml @@ -14,6 +14,7 @@ on: env: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }} NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }} + BUILD_TEST_INTERNAL_PACKAGE: true jobs: build: @@ -30,18 +31,33 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: DevExtreme - Install packages - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: DevExtreme - Build - run: npx nx build devextreme-main + run: pnpx nx build devextreme-main testcafe: needs: @@ -73,20 +89,33 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - name: DevExtreme - Install packages - run: npm install --no-audit --no-fund + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: DevExtreme - Build - env: - BUILD_TEST_INTERNAL_PACKAGE: true - run: npx nx build devextreme-main + run: pnpx nx build devextreme-main - name: Run Web Server run: | @@ -111,7 +140,7 @@ jobs: # DISABLE_DEMO_TEST_SETTINGS: ignore # Uncomment to ignore the `ignore` field # DISABLE_DEMO_TEST_SETTINGS: comparison-options # Uncomment to ignore the `comparison-options` field CI_ENV: true # The `ignore` field in the visualtestrc.json should be disabled when running test locally - run: npx nx test-testcafe + run: pnpx nx test-testcafe - name: Show accessibility warnings if: matrix.STRATEGY == 'accessibility' diff --git a/.github/workflows/demos_visual_tests_frameworks.yml b/.github/workflows/demos_visual_tests_frameworks.yml index 6ba80d6562a2..429c264e0a7c 100644 --- a/.github/workflows/demos_visual_tests_frameworks.yml +++ b/.github/workflows/demos_visual_tests_frameworks.yml @@ -14,12 +14,13 @@ on: env: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }} NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }} + BUILD_TEST_INTERNAL_PACKAGE: true jobs: build-devextreme: runs-on: ubuntu-latest name: Build DevExtreme - timeout-minutes: 20 + timeout-minutes: 40 steps: - name: Get sources @@ -30,20 +31,35 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - - name: DevExtreme - Install packages - run: npm install --no-audit --no-fund + - name: Install dependencies + run: | + corepack enable + pnpm install - name: DevExtreme - Build-all env: BUILD_TEST_INTERNAL_PACKAGE: true - run: npm run all:build + run: pnpm run all:build-dev - name: Move packages run: | @@ -86,32 +102,39 @@ jobs: with: name: devextreme-sources - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - # NOTE: workaround due to wrappers are incorrect NPM packages now - - name: Install wrappers packages + - name: Get pnpm store directory + shell: bash run: | - rm -rf node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - mkdir node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - tar -xzf devextreme-installer.tgz -C node_modules/devextreme - mv node_modules/devextreme/package/* node_modules/devextreme - tar -xzf devextreme-dist-installer.tgz -C node_modules/devextreme-dist - mv node_modules/devextreme-dist/package/* node_modules/devextreme-dist - tar -xzf devextreme-angular-installer.tgz -C node_modules/devextreme-angular - mv node_modules/devextreme-angular/package/* node_modules/devextreme-angular - tar -xzf devextreme-react-installer.tgz -C node_modules/devextreme-react - mv node_modules/devextreme-react/package/* node_modules/devextreme-react - tar -xzf devextreme-vue-installer.tgz -C node_modules/devextreme-vue - mv node_modules/devextreme-vue/package/* node_modules/devextreme-vue + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + 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: Build wrappers +# run: pnpm exec nx run-many -t pack -p devextreme-angular devextreme-react devetreme-vue + +# - name: Link wrappers packages +# run: pnpm install - name: Prepare bundles working-directory: apps/demos - run: npx nx prepare-bundles + run: pnpx nx prepare-bundles - name: Demos - Run tsc working-directory: apps/demos @@ -164,7 +187,7 @@ jobs: matrix: include: - name: Lint code base (excluding demos) - command: npx nx lint-non-demos + command: pnpx nx lint-non-demos # NOTE: skipped due to enormous number of errors # - name: Lint demos (1/4) # command: CONSTEL=1/4 npm run lint-demos @@ -191,8 +214,33 @@ jobs: with: name: devextreme-sources + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + - name: Install packages - run: npm install devextreme-installer.tgz devextreme-dist-installer.tgz devextreme-react-installer.tgz devextreme-vue-installer.tgz devextreme-angular-installer.tgz + run: pnpm add -w ./devextreme-installer.tgz ./devextreme-dist-installer.tgz ./devextreme-react-installer.tgz ./devextreme-vue-installer.tgz ./devextreme-angular-installer.tgz - uses: actions/setup-dotnet@v3 with: @@ -214,61 +262,62 @@ jobs: name: ${{ matrix.name }} runs-on: ubuntu-latest timeout-minutes: 10 - needs: build-demos strategy: fail-fast: false matrix: include: - name: Check generated demos (1/5) - command: CONSTEL=1/5 npm run convert-to-js + command: CONSTEL=1/5 pnpm run convert-to-js - name: Check generated demos (2/5) - command: CONSTEL=2/5 npm run convert-to-js + command: CONSTEL=2/5 pnpm run convert-to-js - name: Check generated demos (3/5) - command: CONSTEL=3/5 npm run convert-to-js + command: CONSTEL=3/5 pnpm run convert-to-js - name: Check generated demos (4/5) - command: CONSTEL=4/5 npm run convert-to-js + command: CONSTEL=4/5 pnpm run convert-to-js - name: Check generated demos (5/5) - command: CONSTEL=5/5 npm run convert-to-js + command: CONSTEL=5/5 pnpm run convert-to-js steps: - name: Get sources uses: actions/checkout@v4 - - name: Restore npm cache - uses: actions/cache@v4 + - name: Use Node.js + uses: actions/setup-node@v4 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + node-version: '20' - - name: Download devextreme sources - uses: actions/download-artifact@v4 + - uses: pnpm/action-setup@v3 with: - name: devextreme-sources + version: 9 + run_install: false - - name: Install packages - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - # NOTE: workaround due to wrappers are incorrect NPM packages now - - name: Install wrappers packages + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies run: | - rm -rf node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - mkdir node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - tar -xzf devextreme-installer.tgz -C node_modules/devextreme - mv node_modules/devextreme/package/* node_modules/devextreme - tar -xzf devextreme-dist-installer.tgz -C node_modules/devextreme-dist - mv node_modules/devextreme-dist/package/* node_modules/devextreme-dist - tar -xzf devextreme-angular-installer.tgz -C node_modules/devextreme-angular - mv node_modules/devextreme-angular/package/* node_modules/devextreme-angular - tar -xzf devextreme-react-installer.tgz -C node_modules/devextreme-react - mv node_modules/devextreme-react/package/* node_modules/devextreme-react - tar -xzf devextreme-vue-installer.tgz -C node_modules/devextreme-vue - mv node_modules/devextreme-vue/package/* node_modules/devextreme-vue + corepack enable + pnpm install + + - name: Build wrappers + run: pnpm exec nx run-many -t pack -p devextreme-angular devextreme-react devetreme-vue - name: Prepare JS working-directory: apps/demos - run: npm run prepare-js + run: pnpm run prepare-js - name: Check generated JS demos working-directory: apps/demos @@ -280,7 +329,7 @@ jobs: if git diff --exit-code . ':!package.json' ; then echo "Generated JS demos are up-to-date" else - echo "Generated JS demos are outdated. Execute 'npm run convert-to-js split' and commit changes." + echo "Generated JS demos are outdated. Execute 'pnpm run convert-to-js split' and commit changes." echo "If you see another diff, ensure that extra listed files have LF endings." exit 1 fi @@ -306,58 +355,57 @@ jobs: with: chrome-version: '121.0.6167.160' - - name: Restore npm cache - uses: actions/cache@v4 + - name: Use Node.js + uses: actions/setup-node@v4 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + node-version: '20' - name: Download devextreme sources uses: actions/download-artifact@v4 with: name: devextreme-sources - - name: Install packages - run: npm install --no-audit --no-fund + - name: Download artifacts + if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'force all tests') + uses: actions/download-artifact@v4 + with: + name: changed-demos + path: apps/demos - # NOTE: workaround due to wrappers are incorrect NPM packages now - - name: Install wrappers packages + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash run: | - rm -rf node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - mkdir node_modules/devextreme node_modules/devextreme-dist node_modules/devextreme-angular node_modules/devextreme-react node_modules/devextreme-vue - tar -xzf devextreme-installer.tgz -C node_modules/devextreme - mv node_modules/devextreme/package/* node_modules/devextreme - tar -xzf devextreme-dist-installer.tgz -C node_modules/devextreme-dist - mv node_modules/devextreme-dist/package/* node_modules/devextreme-dist - tar -xzf devextreme-angular-installer.tgz -C node_modules/devextreme-angular - mv node_modules/devextreme-angular/package/* node_modules/devextreme-angular - tar -xzf devextreme-react-installer.tgz -C node_modules/devextreme-react - mv node_modules/devextreme-react/package/* node_modules/devextreme-react - tar -xzf devextreme-vue-installer.tgz -C node_modules/devextreme-vue - mv node_modules/devextreme-vue/package/* node_modules/devextreme-vue + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + 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: Build wrappers +# run: pnpm exec nx run-many -t pack -p devextreme-angular devextreme-react devetreme-vue - name: Prepare JS working-directory: apps/demos - run: npm run prepare-js + run: pnpm run prepare-js - name: Update bundles config working-directory: apps/demos - run: npx gulp update-config - - - name: Run Web Server - run: | - python -m http.server 8080 & - python -m http.server 8081 & - python -m http.server 8082 & - python -m http.server 8083 & - - - name: Download artifacts - if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'force all tests') - uses: actions/download-artifact@v4 - with: - name: changed-demos - path: apps/demos + run: pnpx gulp update-config - name: Create bundles dir run: mkdir -p apps/demos/bundles @@ -368,12 +416,19 @@ jobs: name: devextreme-bundles path: apps/demos/bundles + - name: Run Web Server + run: | + python -m http.server 8080 & + python -m http.server 8081 & + python -m http.server 8082 & + python -m http.server 8083 & + - name: Run TestCafe tests working-directory: apps/demos env: CHANGEDFILEINFOSPATH: changed-files.json - BROWSERS: chrome:headless --disable-partial-raster --disable-skia-runtime-opts --run-all-compositor-stages-before-draw --disable-new-content-rendering-timeout --disable-threaded-animation --disable-threaded-scrolling --disable-checker-imaging --disable-image-animation-resync --use-gl="swiftshader" --disable-features=PaintHolding --js-flags=--random-seed=2147483647 --font-render-hinting=none --disable-font-subpixel-positioning - #DEBUG: hammerhead:*,testcafe:* + BROWSERS: chrome:headless --disable-gpu --window-size=1200,800 --js-flags=--random-seed=2147483647 + # DEBUG: hammerhead:*,testcafe:* CONCURRENCY: 4 TCQUARANTINE: true CONSTEL: ${{ matrix.CONSTEL }} @@ -382,7 +437,7 @@ jobs: # DISABLE_DEMO_TEST_SETTINGS: ignore # Uncomment to ignore the `ignore` field # DISABLE_DEMO_TEST_SETTINGS: comparison-options # Uncomment to ignore the `comparison-options` field CI_ENV: true # The `ignore` field in the visualtestrc.json should be disabled when running test locally - run: npx nx test-testcafe + run: pnpx nx test-testcafe - name: Copy screenshots artifacts if: ${{ failure() }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ab830ad0ff81..db02015fa61b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,25 +26,40 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Compile renovation working-directory: ./packages/devextreme run: | - npx nx compile:r + pnpx nx compile:r # Remove package install after upgrade to TypeScript >= 4.6 - name: Lint renovation working-directory: ./packages/devextreme - run: npx nx lint-renovation + run: pnpx nx lint-renovation TS: runs-on: devextreme-shr2 @@ -58,37 +73,52 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build working-directory: ./packages/devextreme - run: npx nx build + run: pnpx nx build - name: Lint TS working-directory: ./packages/devextreme env: DEBUG: eslint:cli-engine - run: npx nx lint-ts + run: pnpx nx lint-ts - name: Lint .d.ts working-directory: ./packages/devextreme env: DEBUG: eslint:cli-engine - run: npx nx lint-dts + run: pnpx nx lint-dts - name: Lint Testcafe tests working-directory: ./e2e/testcafe-devextreme env: DEBUG: eslint:cli-engine - run: npx nx lint + run: pnpx nx lint JS: runs-on: devextreme-shr2 @@ -102,25 +132,40 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build working-directory: ./packages/devextreme - run: npx nx build + run: pnpx nx build - name: Lint JS working-directory: ./packages/devextreme env: DEBUG: eslint:cli-engine - run: npx nx lint-js + run: pnpx nx lint-js texts: runs-on: devextreme-shr2 @@ -134,19 +179,34 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Check texts working-directory: ./packages/devextreme - run: npx nx lint-texts + run: pnpx nx lint-texts CSS: runs-on: devextreme-shr2 @@ -160,21 +220,36 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - name: Run npm install - run: npm install --no-audit --no-fund + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Lint CSS working-directory: ./packages/devextreme - run: npx nx lint-css + run: pnpx nx lint-css - package_lock: + pnpm_lock: runs-on: devextreme-shr2 timeout-minutes: 10 steps: @@ -186,21 +261,41 @@ jobs: with: node-version: '20' - - name: Update package-lock + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Update lock-file run: | node -v - npm -v - npm install --no-audit --no-fund --ignore-scripts + pnpm -v + pnpm install - - name: Upload package-lock + - name: Upload lock-file uses: actions/upload-artifact@v3 with: name: package-lock.json path: ./package-lock.json retention-days: 1 - - name: Check package-lock - run: git diff --exit-code package-lock.json + - name: Check lock-file + run: git diff --exit-code pnpm-lock.yaml component_exports: runs-on: devextreme-shr2 @@ -214,30 +309,42 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - name: Install dependencies run: | - node -v - npm -v - npm install --no-audit --no-fund --ignore-scripts + corepack enable + pnpm install - name: Check generated component reexports working-directory: ./packages/devextreme run: | - npm run update-ts-reexports + pnpm run update-ts-reexports git add . -N if git diff --exit-code ; then echo "Generated component reexports are up-to-date" else - echo "Generated component reexports are outdated. Execute 'npm run update-ts-reexports' and commit changes." + echo "Generated component reexports are outdated. Execute 'pnpm run update-ts-reexports' and commit changes." exit 1 fi @@ -254,23 +361,38 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: npm install --no-audit --no-fund + run: | + corepack enable + pnpm install - name: Lint wrappers - run: npx nx run-many -t lint -p devextreme-angular devextreme-react devextreme-vue + run: pnpx nx run-many -t lint -p devextreme-angular devextreme-react devextreme-vue notify: runs-on: devextreme-shr2 name: Send notifications - needs: [Renovation, TS, JS, CSS, texts, package_lock, component_exports] + needs: [Renovation, TS, JS, CSS, texts, pnpm_lock, component_exports] if: github.event_name != 'pull_request' && contains(needs.*.result, 'failure') steps: diff --git a/.github/workflows/pack_all.yml b/.github/workflows/pack_all.yml index 62e829b57dc6..89acdec3bbe4 100644 --- a/.github/workflows/pack_all.yml +++ b/.github/workflows/pack_all.yml @@ -16,11 +16,33 @@ jobs: with: node-version: '20' - - name: Install packages in devextreme repo - run: npm install --no-audit --no-fund + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build npm packages - run: npm run all:pack + run: pnpm run all:pack - name: Copy build artifacts uses: actions/upload-artifact@v3 diff --git a/.github/workflows/packages_publishing.yml b/.github/workflows/packages_publishing.yml index 2beda257d26a..fb3a6b787901 100644 --- a/.github/workflows/packages_publishing.yml +++ b/.github/workflows/packages_publishing.yml @@ -37,17 +37,39 @@ jobs: with: node-version: '20' + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + - name: Install dependencies - run: npm install --no-audit --no-fund + run: | + corepack enable + pnpm install - name: Set timestamp version if: ${{ env.SET_TIMESTAMP_VERSION == 'true' }} - run: npx ts-node tools/scripts/set-timestamp-version + run: pnpx ts-node tools/scripts/set-timestamp-version - name: Build npm packages env: BUILD_INTERNAL_PACKAGE: true - run: npm run all:build + run: pnpm run all:build - name: Clone deps scanner uses: actions/checkout@v4 @@ -100,8 +122,35 @@ jobs: with: name: packages + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + - name: Install dependencies - run: npm install --no-audit --no-fund --legacy-peer-deps --ignore-scripts + run: | + corepack enable + pnpm install - name: Change package scope id: scopedPackage @@ -112,9 +161,9 @@ jobs: PACKAGE_DIR=$(npx ts-node tools/scripts/change-package-scope --tgz $PACKAGE.tgz --scope $SCOPE) echo "packageDir=$PACKAGE_DIR" >> "$GITHUB_OUTPUT"; cd $PACKAGE_DIR; - npm pkg get name --workspaces=false | tr -d '"' | sed -r 's/(.*)/name=\1/' >> "$GITHUB_OUTPUT"; - npm pkg get version --workspaces=false | tr -d '"' | sed -r 's/(.*)/version=\1/' >> "$GITHUB_OUTPUT"; - npm pkg get version --workspaces=false | tr -d '"' | sed -r 's/([0-9]+\.[0-9]+).*/majorVersion=\1/' >> "$GITHUB_OUTPUT"; + pnpm pkg get name --workspaces=false | tr -d '"' | sed -r 's/(.*)/name=\1/' >> "$GITHUB_OUTPUT"; + pnpm pkg get version --workspaces=false | tr -d '"' | sed -r 's/(.*)/version=\1/' >> "$GITHUB_OUTPUT"; + pnpm pkg get version --workspaces=false | tr -d '"' | sed -r 's/([0-9]+\.[0-9]+).*/majorVersion=\1/' >> "$GITHUB_OUTPUT"; # --ignore-scripts is required for publishing devextreme-angular which fails with error: # 'Trying to publish a package that has been compiled by Ivy in full compilation mode.' @@ -124,8 +173,8 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN"; - npm publish --quiet --ignore-scripts --registry https://npm.pkg.github.com; + pnpm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN"; + pnpm publish --quiet --ignore-scripts --registry https://npm.pkg.github.com; - name: Move 'daily' tag if: ${{ env.MOVE_DAILY_TAG == 'true' }} @@ -135,8 +184,8 @@ jobs: PACKAGE_VERSION_MAJOR: ${{ steps.scopedPackage.outputs.majorVersion }} NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN" - npm --registry=https://npm.pkg.github.com dist-tag add $PACKAGE_NAME@$PACKAGE_VERSION $PACKAGE_VERSION_MAJOR-daily + pnpm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN" + pnpm --registry=https://npm.pkg.github.com dist-tag add $PACKAGE_NAME@$PACKAGE_VERSION $PACKAGE_VERSION_MAJOR-daily - name: Move 'stable' tag if: ${{ env.MOVE_STABLE_TAG == 'true' }} @@ -146,8 +195,8 @@ jobs: PACKAGE_VERSION_MAJOR: ${{ steps.scopedPackage.outputs.majorVersion }} NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN" - npm --registry=https://npm.pkg.github.com dist-tag add $PACKAGE_NAME@$PACKAGE_VERSION $PACKAGE_VERSION_MAJOR-stable + pnpm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN" + pnpm --registry=https://npm.pkg.github.com dist-tag add $PACKAGE_NAME@$PACKAGE_VERSION $PACKAGE_VERSION_MAJOR-stable notify: diff --git a/.github/workflows/playgrounds_tests.yml b/.github/workflows/playgrounds_tests.yml index 77200ed5dd36..4555ac0ffd84 100644 --- a/.github/workflows/playgrounds_tests.yml +++ b/.github/workflows/playgrounds_tests.yml @@ -31,19 +31,34 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build working-directory: ./packages/devextreme - run: npx nx build + run: pnpx nx build - name: Zip artifacts working-directory: ./packages/devextreme @@ -84,16 +99,6 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v3 - with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules - - - name: Run npm install - run: npm install --no-audit --no-fund - - name: Download artifacts uses: actions/download-artifact@v3 with: @@ -104,15 +109,40 @@ jobs: working-directory: ./packages/devextreme run: 7z x artifacts.zip -aoa + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install + - name: Build working-directory: ./packages/devextreme-${{ matrix.ARGS.platform }} - run: npm run pack + run: pnpx nx pack - name: Check sources compilation working-directory: ./apps/${{ matrix.ARGS.platform }} - run: npx nx build + run: pnpx nx build # - name: Run test # if: ${{ matrix.ARGS.platform != 'angular' }} # working-directory: ./apps/${{ matrix.ARGS.platform }} -# run: npm run test +# run: pnpm run test diff --git a/.github/workflows/qunit_tests-additional-renovation.yml b/.github/workflows/qunit_tests-additional-renovation.yml index 5705f6a1e536..de1ebeccdc92 100644 --- a/.github/workflows/qunit_tests-additional-renovation.yml +++ b/.github/workflows/qunit_tests-additional-renovation.yml @@ -28,15 +28,30 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build env: @@ -45,8 +60,8 @@ jobs: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true" working-directory: ./packages/devextreme run: | - npx nx build:dev - npx nx build:systemjs + pnpx nx build:dev + pnpx nx build:systemjs - name: Zip artifacts working-directory: ./packages/devextreme diff --git a/.github/workflows/qunit_tests-renovation.yml b/.github/workflows/qunit_tests-renovation.yml index aadbca641f50..9f5313ae51c2 100644 --- a/.github/workflows/qunit_tests-renovation.yml +++ b/.github/workflows/qunit_tests-renovation.yml @@ -28,15 +28,30 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build working-directory: ./packages/devextreme @@ -45,7 +60,7 @@ jobs: DOTNET_CLI_TELEMETRY_OPTOUT: "true" DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true" BUILD_INPROGRESS_RENOVATION: "true" - run: npx nx build:dev + run: pnpx nx build:dev - name: Zip artifacts working-directory: ./packages/devextreme diff --git a/.github/workflows/renovation.yml b/.github/workflows/renovation.yml index 30d77607e93e..b3a25d3b9aa7 100644 --- a/.github/workflows/renovation.yml +++ b/.github/workflows/renovation.yml @@ -26,22 +26,37 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build localization working-directory: ./packages/devextreme - run: npx gulp localization + run: pnpx gulp localization - name: Jest tests - run: npx nx test-jest devextreme-main + run: pnpx nx test-jest devextreme-main notify: runs-on: devextreme-shr2 diff --git a/.github/workflows/styles.yml b/.github/workflows/styles.yml index 960f27314c7a..7ab43aa87272 100644 --- a/.github/workflows/styles.yml +++ b/.github/workflows/styles.yml @@ -26,18 +26,33 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Run tests - run: npx nx test-styles devextreme-main + run: pnpx nx test-styles devextreme-main notify: runs-on: devextreme-shr2 diff --git a/.github/workflows/testcafe_tests.yml b/.github/workflows/testcafe_tests.yml index 8d7cca54bec4..7ed204e3e068 100644 --- a/.github/workflows/testcafe_tests.yml +++ b/.github/workflows/testcafe_tests.yml @@ -31,20 +31,35 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build env: BUILD_TEST_INTERNAL_PACKAGE: true - run: npx nx build devextreme-main + run: pnpx nx build devextreme-main - name: Zip artifacts working-directory: ./packages/devextreme @@ -137,6 +152,16 @@ jobs: - name: Get sources uses: actions/checkout@v4 + - name: Download artifacts + uses: actions/download-artifact@v3 + with: + name: devextreme-artifacts + path: ./packages/devextreme + + - name: Unpack artifacts + working-directory: ./packages/devextreme + run: 7z x artifacts.zip -aoa + - name: Setup Chrome uses: ./.github/actions/setup-chrome with: @@ -147,25 +172,30 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - name: Download artifacts - uses: actions/download-artifact@v3 + - uses: actions/cache@v4 + name: Setup pnpm cache with: - name: devextreme-artifacts - path: ./packages/devextreme - - - name: Unpack artifacts - working-directory: ./packages/devextreme - run: 7z x artifacts.zip -aoa + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Run TestCafe tests working-directory: ./e2e/testcafe-devextreme @@ -176,7 +206,7 @@ jobs: [ "${{ matrix.ARGS.platform }}" != "" ] && PLATFORM="--platform ${{ matrix.ARGS.platform }}" all_args="--browsers=chrome:devextreme-shr2 --componentFolder ${{ matrix.ARGS.componentFolder }} $CONCURRENCY $INDICES $PLATFORM $THEME" echo "$all_args" - npx nx test $all_args + pnpx nx test $all_args - name: Copy compared screenshot artifacts if: ${{ failure() }} diff --git a/.github/workflows/themebuilder_tests.yml b/.github/workflows/themebuilder_tests.yml index 887f31941f26..123e899cd88d 100644 --- a/.github/workflows/themebuilder_tests.yml +++ b/.github/workflows/themebuilder_tests.yml @@ -22,35 +22,55 @@ jobs: - name: Get sources uses: actions/checkout@v4 - - name: Restore npm cache - uses: actions/cache@v4 + - name: Use Node.js + uses: actions/setup-node@v4 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + node-version: '20' - - name: Run npm install - run: npm install --no-audit --no-fund + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build etalon bundles working-directory: ./packages/devextreme - run: npx gulp style-compiler-themes-ci + run: pnpx gulp style-compiler-themes-ci - name: Build working-directory: ./packages/devextreme-themebuilder - run: npx nx build + run: pnpx nx build - name: Run themebuilder tests (full set, node) working-directory: ./packages/devextreme-themebuilder - run: npx nx test + run: pnpx nx test - name: Check styles for duplicate rules (generic) working-directory: ./packages/devextreme - run: npx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.light.css" + run: pnpx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.light.css" - name: Check styles for duplicate rules (material) working-directory: ./packages/devextreme - run: npx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.material.blue.light.css" + run: pnpx stylelint --config testing/styles/bundles-stylelint-config.json "artifacts/**/dx.material.blue.light.css" notify: runs-on: devextreme-shr2 diff --git a/.github/workflows/ts_declarations.yml b/.github/workflows/ts_declarations.yml index 16112ce748e1..d47ed46a9004 100644 --- a/.github/workflows/ts_declarations.yml +++ b/.github/workflows/ts_declarations.yml @@ -22,15 +22,30 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Check dx.all.d.ts is up-to-date working-directory: ./packages/devextreme @@ -38,12 +53,12 @@ jobs: target=./ts/dx.all.d.ts cp $target $target.current - npm run regenerate + pnpm run regenerate if ! diff $target.current $target -U 5 > $target.diff; then echo "FAIL: $target is outdated:" cat $target.diff | sed "1,2d" - echo "Execute 'npm run regenerate-all' to update dx.all.d.ts" + echo "Execute 'pnpm run regenerate-all' to update dx.all.d.ts" exit 1 else echo "TS is up-to-date" @@ -61,21 +76,36 @@ jobs: with: node-version: '20' - - name: Restore npm cache - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: '**/node_modules' - key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-node-modules + version: 9 + run_install: false - - name: Run npm install - run: npm install --no-audit --no-fund + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Validate declarations working-directory: ./packages/devextreme run: | - npm run validate-ts - npm run validate-declarations + pnpm run validate-ts + pnpm run validate-declarations notify: runs-on: devextreme-shr2 diff --git a/.github/workflows/update_version.yml b/.github/workflows/update_version.yml index 4b22aea6cd02..a3f8dc27fa85 100644 --- a/.github/workflows/update_version.yml +++ b/.github/workflows/update_version.yml @@ -28,16 +28,38 @@ jobs: with: node-version: '20' + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v4 + name: Setup pnpm cache + with: + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install + - name: Setup git config run: | git config --global user.email "DXGitHubRobot@devexpress.com" git config --global user.name "DX Robot" - - name: Install packages in devextreme repo - run: npm install --no-audit --no-fund - - name: Bump version - run: npm run all:update-version -- ${{ inputs.version }} + run: pnpm run all:update-version -- ${{ inputs.version }} - name: Commit changes and make PR env: diff --git a/.github/workflows/wrapper_tests.yml b/.github/workflows/wrapper_tests.yml index 02386c6f5c68..4f564a8c80c7 100644 --- a/.github/workflows/wrapper_tests.yml +++ b/.github/workflows/wrapper_tests.yml @@ -19,31 +19,49 @@ jobs: - name: Get sources uses: actions/checkout@v4 + - name: Setup Chrome + uses: ./.github/actions/setup-chrome + with: + chrome-version: '121.0.6167.160' + - name: Use Node.js uses: actions/setup-node@v4 with: node-version: '20' - - name: Get npm cache directory - id: npm-cache-dir + - uses: pnpm/action-setup@v3 + with: + version: 9 + run_install: false + + - name: Get pnpm store directory shell: bash - run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT} + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV - - name: Restore npm cache - uses: actions/cache@v4 + - uses: actions/cache@v4 + name: Setup pnpm cache with: - path: ${{ steps.npm-cache-dir.outputs.dir }} - key: ${{ runner.os }}-node-${{ github.workflow }}-${{ hashFiles('**/package-lock.json') }} - - - name: Install npm packages - run: npm i --no-audit --no-fund + path: | + ${{ env.STORE_PATH }} + .nx/cache + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + + - name: Install dependencies + run: | + corepack enable + pnpm install - name: Build devextreme package + env: + BUILD_TEST_INTERNAL_PACKAGE: true working-directory: ./packages/devextreme - run: npx nx build + run: pnpx nx build - name: Generate wrappers - run: npm run regenerate-all + run: pnpm run regenerate-all - name: Check generated code shell: bash @@ -53,30 +71,31 @@ jobs: if [ -n "$changes" ]; then echo "Generated code is outdated. The following files have uncommitted changes:" echo "$changes"; - echo "To update generated code, use "npm run regenerate-all" and commit changes." + echo "To update generated code, use "pnpm run regenerate-all" and commit changes." exit 1 fi - name: Angular - Build - run: npx nx build devextreme-angular + run: pnpx nx build devextreme-angular - - name: Angular - Run tests - run: npx nx test:dev devextreme-angular +# NOTE: temporary skipped during migrating to the PNPM +# - name: Angular - Run tests +# run: pnpx nx test:dev devextreme-angular - name: Angular - Check packing - run: npx nx pack devextreme-angular + run: pnpx nx pack devextreme-angular - name: React - Run tests - run: npx nx test devextreme-react + run: pnpm exec nx test devextreme-react - name: React - Check packing - run: npx nx pack devextreme-react + run: pnpm exec nx pack devextreme-react - name: Vue - Run tests - run: npx nx test devextreme-vue + run: pnpx nx test devextreme-vue - name: Vue - Check packing - run: npx nx pack devextreme-vue + run: pnpx nx pack devextreme-vue - name: Archive internal-tools artifacts uses: actions/upload-artifact@v3 diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000000..ced9c5f510a0 --- /dev/null +++ b/.npmrc @@ -0,0 +1,4 @@ +link-workspace-packages=true +prefer-workspace-packages=true +save-workspace-protocol=false +package-manager-strict=false \ No newline at end of file diff --git a/apps/angular/angular.json b/apps/angular/angular.json index ff2733d63d79..2ba57f10775f 100644 --- a/apps/angular/angular.json +++ b/apps/angular/angular.json @@ -19,8 +19,8 @@ "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.app.json", "styles": [ - "../../node_modules/devextreme/dist/css/dx.common.css", - "../../node_modules/devextreme/dist/css/dx.light.css" + "node_modules/devextreme/dist/css/dx.common.css", + "node_modules/devextreme/dist/css/dx.light.css" ], "scripts": [] }, @@ -85,8 +85,8 @@ "karmaConfig": "karma.conf.js", "assets": [], "styles": [ - "../../node_modules/devextreme/dist/css/dx.common.css", - "../../node_modules/devextreme/dist/css/dx.light.css" + "node_modules/devextreme/dist/css/dx.common.css", + "node_modules/devextreme/dist/css/dx.light.css" ], "scripts": [] } diff --git a/apps/angular/package.json b/apps/angular/package.json index 395ef4f32b03..1eec4db49950 100644 --- a/apps/angular/package.json +++ b/apps/angular/package.json @@ -6,29 +6,30 @@ "author": "Developer Express Inc.", "license": "MIT", "dependencies": { - "@angular/animations": "~16.2.12", - "@angular/common": "~16.2.12", - "@angular/compiler": "~16.2.12", - "@angular/compiler-cli": "~16.2.12", - "@angular/core": "~16.2.12", - "@angular/forms": "~16.2.12", - "@angular/platform-browser": "~16.2.12", - "@angular/platform-browser-dynamic": "~16.2.12", - "@angular/router": "~16.2.12", + "@angular/animations": "16.2.0", + "@angular/common": "16.2.0", + "@angular/compiler": "16.2.0", + "@angular/compiler-cli": "16.2.0", + "@angular/core": "16.2.0", + "@angular/forms": "16.2.0", + "@angular/platform-browser": "16.2.0", + "@angular/platform-browser-dynamic": "16.2.0", + "@angular/router": "16.2.0", "core-js": "^2.6.12", "devextreme": "~24.1.3", "devextreme-angular": "~24.1.3", - "rxjs": "^6.6.7", + "rxjs": "7.8.1", "tslib": "^2.6.1", - "zone.js": "0.13.0" + "zone.js": "0.13.3" }, "devDependencies": { "@angular-devkit/build-angular": "16.2.14", "@angular/cli": "~16.2.12", - "@angular/platform-server": "~16.2.12", "@angular/language-service": "~16.2.12", + "@angular/platform-server": "~16.2.12", "@types/jasmine": "^5.1.4", "@types/node": "20.11.17", + "cross-env": "7.0.3", "ts-node": "10.9.2", "typescript": "~4.9.3" }, diff --git a/apps/demos/Demos/Accordion/Overview/Angular/index.html b/apps/demos/Demos/Accordion/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Accordion/Overview/Angular/index.html +++ b/apps/demos/Demos/Accordion/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ActionSheet/Basics/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/Basics/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html +++ b/apps/demos/Demos/ActionSheet/PopoverMode/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Autocomplete/Overview/Angular/index.html +++ b/apps/demos/Demos/Autocomplete/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Box/Overview/Angular/index.html b/apps/demos/Demos/Box/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Box/Overview/Angular/index.html +++ b/apps/demos/Demos/Box/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Button/Icons/Angular/index.html b/apps/demos/Demos/Button/Icons/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/Button/Icons/Angular/index.html +++ b/apps/demos/Demos/Button/Icons/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html +++ b/apps/demos/Demos/Button/PredefinedTypes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/ButtonGroup/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/Calendar/MultipleSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Calendar/Overview/Angular/index.html b/apps/demos/Demos/Calendar/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Calendar/Overview/Angular/index.html +++ b/apps/demos/Demos/Calendar/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Charts/APIDisplayATooltip/Angular/index.html b/apps/demos/Demos/Charts/APIDisplayATooltip/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/APIDisplayATooltip/Angular/index.html +++ b/apps/demos/Demos/Charts/APIDisplayATooltip/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/APISelectAPoint/Angular/index.html b/apps/demos/Demos/Charts/APISelectAPoint/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/APISelectAPoint/Angular/index.html +++ b/apps/demos/Demos/Charts/APISelectAPoint/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/Charts/AjaxRequest/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Annotation/Angular/index.html b/apps/demos/Demos/Charts/Annotation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Annotation/Angular/index.html +++ b/apps/demos/Demos/Charts/Annotation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Area/Angular/index.html b/apps/demos/Demos/Charts/Area/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Area/Angular/index.html +++ b/apps/demos/Demos/Charts/Area/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/AreaSparklines/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/AutoCalculatedBarWidth/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisCustomPosition/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AxisLabelsOverlapping/Angular/index.html b/apps/demos/Demos/Charts/AxisLabelsOverlapping/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/AxisLabelsOverlapping/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisLabelsOverlapping/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/AxisLabelsTemplates/Angular/index.html b/apps/demos/Demos/Charts/AxisLabelsTemplates/Angular/index.html index 5a37b154a9ec..d71a57f973ce 100644 --- a/apps/demos/Demos/Charts/AxisLabelsTemplates/Angular/index.html +++ b/apps/demos/Demos/Charts/AxisLabelsTemplates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/BarSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/BarSparklines/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html +++ b/apps/demos/Demos/Charts/BiDirectionalBarChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Bubble/Angular/index.html b/apps/demos/Demos/Charts/Bubble/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Bubble/Angular/index.html +++ b/apps/demos/Demos/Charts/Bubble/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Candlestick/Angular/index.html b/apps/demos/Demos/Charts/Candlestick/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Candlestick/Angular/index.html +++ b/apps/demos/Demos/Charts/Candlestick/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ChartsDrillDown/Angular/index.html b/apps/demos/Demos/Charts/ChartsDrillDown/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ChartsDrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/ChartsDrillDown/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ClientSideDataProcessing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ColorEachBar/Angular/index.html b/apps/demos/Demos/Charts/ColorEachBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ColorEachBar/Angular/index.html +++ b/apps/demos/Demos/Charts/ColorEachBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Colorization/Angular/index.html b/apps/demos/Demos/Charts/Colorization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Colorization/Angular/index.html +++ b/apps/demos/Demos/Charts/Colorization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ContinuousData/Angular/index.html +++ b/apps/demos/Demos/Charts/ContinuousData/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Crosshair/Angular/index.html b/apps/demos/Demos/Charts/Crosshair/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Crosshair/Angular/index.html +++ b/apps/demos/Demos/Charts/Crosshair/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomAnnotations/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomBarWidth/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/CustomLegendMarkers/Angular/index.html b/apps/demos/Demos/Charts/CustomLegendMarkers/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/CustomLegendMarkers/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomLegendMarkers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html +++ b/apps/demos/Demos/Charts/CustomizePointsAndLabels/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DiscreteAggregation/Angular/index.html b/apps/demos/Demos/Charts/DiscreteAggregation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DiscreteAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteAggregation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteAxisZoomingAndScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DiscreteData/Angular/index.html +++ b/apps/demos/Demos/Charts/DiscreteData/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Doughnut/Angular/index.html b/apps/demos/Demos/Charts/Doughnut/Angular/index.html index 900d9c9a5005..cd862d52ff5d 100644 --- a/apps/demos/Demos/Charts/Doughnut/Angular/index.html +++ b/apps/demos/Demos/Charts/Doughnut/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/Charts/Doughnut/React/index.html b/apps/demos/Demos/Charts/Doughnut/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/Charts/Doughnut/React/index.html +++ b/apps/demos/Demos/Charts/Doughnut/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DoughnutWithCustomLabelInCenter/Angular/index.html b/apps/demos/Demos/Charts/DoughnutWithCustomLabelInCenter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DoughnutWithCustomLabelInCenter/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithCustomLabelInCenter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/DoughnutWithTopNSeries/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/DrillDown/Angular/index.html b/apps/demos/Demos/Charts/DrillDown/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/DrillDown/Angular/index.html +++ b/apps/demos/Demos/Charts/DrillDown/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ErrorBars/Angular/index.html +++ b/apps/demos/Demos/Charts/ErrorBars/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportAndPrintingAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportCustomMarkup/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html +++ b/apps/demos/Demos/Charts/ExportSeveralCharts/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/FlatDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/FullStackedBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/FunnelChart/Angular/index.html +++ b/apps/demos/Demos/Charts/FunnelChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/Charts/HierarchicalDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/HoverMode/Angular/index.html b/apps/demos/Demos/Charts/HoverMode/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/HoverMode/Angular/index.html +++ b/apps/demos/Demos/Charts/HoverMode/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/InvertedChart/Angular/index.html +++ b/apps/demos/Demos/Charts/InvertedChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Line/Angular/index.html b/apps/demos/Demos/Charts/Line/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Line/Angular/index.html +++ b/apps/demos/Demos/Charts/Line/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/Charts/LoadDataOnDemand/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicAxis/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/LogarithmicVsLinearAxes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleAxes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePanes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultiplePointSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/MultipleSeriesSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html +++ b/apps/demos/Demos/Charts/NullPointSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Overview/Angular/index.html b/apps/demos/Demos/Charts/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Overview/Angular/index.html +++ b/apps/demos/Demos/Charts/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Palette/Angular/index.html b/apps/demos/Demos/Charts/Palette/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Palette/Angular/index.html +++ b/apps/demos/Demos/Charts/Palette/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ParetoChart/Angular/index.html +++ b/apps/demos/Demos/Charts/ParetoChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PeriodicData/Angular/index.html +++ b/apps/demos/Demos/Charts/PeriodicData/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Pie/Angular/index.html b/apps/demos/Demos/Charts/Pie/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Pie/Angular/index.html +++ b/apps/demos/Demos/Charts/Pie/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PieWithAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PieWithAnnotations/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithAnnotations/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PieWithCustomLabels/Angular/index.html b/apps/demos/Demos/Charts/PieWithCustomLabels/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithCustomLabels/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithCustomLabels/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PieWithCustomStyles/Angular/index.html b/apps/demos/Demos/Charts/PieWithCustomStyles/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithCustomStyles/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithCustomStyles/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithMultipleSeries/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PieWithResolvedLabelOverlapping/Angular/index.html b/apps/demos/Demos/Charts/PieWithResolvedLabelOverlapping/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithResolvedLabelOverlapping/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithResolvedLabelOverlapping/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PieWithSmallValuesGrouped/Angular/index.html b/apps/demos/Demos/Charts/PieWithSmallValuesGrouped/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PieWithSmallValuesGrouped/Angular/index.html +++ b/apps/demos/Demos/Charts/PieWithSmallValuesGrouped/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PiesWithEqualSize/Angular/index.html b/apps/demos/Demos/Charts/PiesWithEqualSize/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PiesWithEqualSize/Angular/index.html +++ b/apps/demos/Demos/Charts/PiesWithEqualSize/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PointImage/Angular/index.html b/apps/demos/Demos/Charts/PointImage/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PointImage/Angular/index.html +++ b/apps/demos/Demos/Charts/PointImage/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PointsAggregationFinancialChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartAnnotations/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/PolarChartZoomingAndScrollingAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/PyramidChart/Angular/index.html +++ b/apps/demos/Demos/Charts/PyramidChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/RangeArea/Angular/index.html b/apps/demos/Demos/Charts/RangeArea/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/RangeArea/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeArea/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/RangeBar/Angular/index.html b/apps/demos/Demos/Charts/RangeBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/RangeBar/Angular/index.html +++ b/apps/demos/Demos/Charts/RangeBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SankeyChart/Angular/index.html +++ b/apps/demos/Demos/Charts/SankeyChart/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html +++ b/apps/demos/Demos/Charts/ScaleBreaks/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Scatter/Angular/index.html b/apps/demos/Demos/Charts/Scatter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Scatter/Angular/index.html +++ b/apps/demos/Demos/Charts/Scatter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Selection/Angular/index.html b/apps/demos/Demos/Charts/Selection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Selection/Angular/index.html +++ b/apps/demos/Demos/Charts/Selection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SeriesTemplates/Angular/index.html b/apps/demos/Demos/Charts/SeriesTemplates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SeriesTemplates/Angular/index.html +++ b/apps/demos/Demos/Charts/SeriesTemplates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html +++ b/apps/demos/Demos/Charts/ServerSideDataProcessing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideFullStackedBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/SideBySideStackedBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SignalRService/Angular/index.html b/apps/demos/Demos/Charts/SignalRService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Charts/SignalRService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - + - - + + - + - - + + diff --git a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleArray/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleBullets/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/SimpleSparklines/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html +++ b/apps/demos/Demos/Charts/SpiderWeb/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Spline/Angular/index.html b/apps/demos/Demos/Charts/Spline/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Spline/Angular/index.html +++ b/apps/demos/Demos/Charts/Spline/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/SplineArea/Angular/index.html b/apps/demos/Demos/Charts/SplineArea/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/SplineArea/Angular/index.html +++ b/apps/demos/Demos/Charts/SplineArea/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/StackedBar/Angular/index.html b/apps/demos/Demos/Charts/StackedBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/StackedBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StackedBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/StandardBar/Angular/index.html b/apps/demos/Demos/Charts/StandardBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/StandardBar/Angular/index.html +++ b/apps/demos/Demos/Charts/StandardBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/StepArea/Angular/index.html b/apps/demos/Demos/Charts/StepArea/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/StepArea/Angular/index.html +++ b/apps/demos/Demos/Charts/StepArea/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/StepLine/Angular/index.html b/apps/demos/Demos/Charts/StepLine/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/StepLine/Angular/index.html +++ b/apps/demos/Demos/Charts/StepLine/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Stock/Angular/index.html b/apps/demos/Demos/Charts/Stock/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Stock/Angular/index.html +++ b/apps/demos/Demos/Charts/Stock/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Strips/Angular/index.html b/apps/demos/Demos/Charts/Strips/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Strips/Angular/index.html +++ b/apps/demos/Demos/Charts/Strips/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html +++ b/apps/demos/Demos/Charts/TilingAlgorithms/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/Timeline/Angular/index.html b/apps/demos/Demos/Charts/Timeline/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/Timeline/Angular/index.html +++ b/apps/demos/Demos/Charts/Timeline/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/TooltipHTMLSupport/Angular/index.html b/apps/demos/Demos/Charts/TooltipHTMLSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/TooltipHTMLSupport/Angular/index.html +++ b/apps/demos/Demos/Charts/TooltipHTMLSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/WindRose/Angular/index.html b/apps/demos/Demos/Charts/WindRose/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/WindRose/Angular/index.html +++ b/apps/demos/Demos/Charts/WindRose/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html +++ b/apps/demos/Demos/Charts/WinlossSparklines/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingAndScrollingAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Charts/ZoomingOnAreaSelection/Angular/index.html b/apps/demos/Demos/Charts/ZoomingOnAreaSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Charts/ZoomingOnAreaSelection/Angular/index.html +++ b/apps/demos/Demos/Charts/ZoomingOnAreaSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/CheckBox/Overview/Angular/index.html b/apps/demos/Demos/CheckBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/CheckBox/Overview/Angular/index.html +++ b/apps/demos/Demos/CheckBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/ColorBox/Overview/Angular/index.html b/apps/demos/Demos/ColorBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ColorBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ColorBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Common/ActionAndListsOverview/Angular/index.html b/apps/demos/Demos/Common/ActionAndListsOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/ActionAndListsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/ActionAndListsOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html +++ b/apps/demos/Demos/Common/CustomTextEditorButtons/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Common/DialogsAndNotificationsOverview/Angular/index.html b/apps/demos/Demos/Common/DialogsAndNotificationsOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/DialogsAndNotificationsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/DialogsAndNotificationsOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html +++ b/apps/demos/Demos/Common/EditorAppearanceVariants/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/EditorsOverview/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/EditorsRightToLeftSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Common/FormsAndMultiPurposeOverview/Angular/index.html b/apps/demos/Demos/Common/FormsAndMultiPurposeOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/FormsAndMultiPurposeOverview/Angular/index.html +++ b/apps/demos/Demos/Common/FormsAndMultiPurposeOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/NavigationOverview/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/Common/NavigationRightToLeftSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ContextMenu/Basics/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Basics/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Scrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ContextMenu/Templates/Angular/index.html +++ b/apps/demos/Demos/ContextMenu/Templates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AdvancedMasterDetailView/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - - + + diff --git a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/AjaxRequest/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/Appearance/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Appearance/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html +++ b/apps/demos/Demos/DataGrid/BatchUpdateRequest/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - - + + diff --git a/apps/demos/Demos/DataGrid/CRUDOperations/Angular/index.html b/apps/demos/Demos/DataGrid/CRUDOperations/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CRUDOperations/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CRUDOperations/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CascadingLookups/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/CellCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CellCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - - - - + + + + + + diff --git a/apps/demos/Demos/DataGrid/CellEditingAndEditingAPI/Angular/index.html b/apps/demos/Demos/DataGrid/CellEditingAndEditingAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CellEditingAndEditingAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CellEditingAndEditingAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CollaborativeEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/Column3RdPartyEngineTemplate/jQuery/index.html b/apps/demos/Demos/DataGrid/Column3RdPartyEngineTemplate/jQuery/index.html index 70679e5a726c..4c8c19427029 100644 --- a/apps/demos/Demos/DataGrid/Column3RdPartyEngineTemplate/jQuery/index.html +++ b/apps/demos/Demos/DataGrid/Column3RdPartyEngineTemplate/jQuery/index.html @@ -6,8 +6,8 @@ - - + + diff --git a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnChooser/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/ColumnCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnHeaderFilter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnResizing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ColumnTemplate/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnTemplate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnTemplate/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ColumnsBasedOnADataSource/Angular/index.html b/apps/demos/Demos/DataGrid/ColumnsBasedOnADataSource/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ColumnsBasedOnADataSource/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ColumnsBasedOnADataSource/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CommandColumnCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/CommandColumnCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CommandColumnCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CommandColumnCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomDataSource/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomEditors/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/CustomNewRecordPosition/Angular/index.html b/apps/demos/Demos/DataGrid/CustomNewRecordPosition/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CustomNewRecordPosition/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomNewRecordPosition/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - - + + diff --git a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomSummaries/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/DataGrid/CustomizeKeyboardNavigation/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DataValidation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DeferredSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/DnDBetweenGrids/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html +++ b/apps/demos/Demos/DataGrid/EditStateManagement/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSCellCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportImages/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSExportMultipleGrids/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSHeaderAndFooter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ExcelJSOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/DataGrid/FilterPanel/React/index.html +++ b/apps/demos/Demos/DataGrid/FilterPanel/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/DataGrid/Filtering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/Filtering/React/index.html b/apps/demos/Demos/DataGrid/Filtering/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/DataGrid/Filtering/React/index.html +++ b/apps/demos/Demos/DataGrid/Filtering/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html +++ b/apps/demos/Demos/DataGrid/FilteringAPI/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FocusedRow/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/FormEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridAdaptabilityOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/GridColumnsHidingPriority/Angular/index.html b/apps/demos/Demos/DataGrid/GridColumnsHidingPriority/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/GridColumnsHidingPriority/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridColumnsHidingPriority/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GridSummaries/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - - - - + + + + + + diff --git a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html +++ b/apps/demos/Demos/DataGrid/GroupSummaries/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/HorizontalVirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/InfiniteScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/DataGrid/KeyboardNavigation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/LocalReordering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MasterDetailView/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultiRowHeadersBands/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleRecordSelectionModes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html +++ b/apps/demos/Demos/DataGrid/MultipleSorting/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/OdataService/Angular/index.html b/apps/demos/Demos/DataGrid/OdataService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/OdataService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/OdataService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/Overview/Angular/index.html b/apps/demos/Demos/DataGrid/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - - - - + + + + + + diff --git a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFCellCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportImages/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFExportMultipleGrids/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PDFOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/PopupEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RealTimeUpdates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecalculateWhileEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordGrouping/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RecordPaging/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteGrouping/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteReordering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RemoteVirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RightToLeftSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/Row3RdPartyEngineTemplate/jQuery/index.html b/apps/demos/Demos/DataGrid/Row3RdPartyEngineTemplate/jQuery/index.html index 2cb3adb636ff..46bfd546b73e 100644 --- a/apps/demos/Demos/DataGrid/Row3RdPartyEngineTemplate/jQuery/index.html +++ b/apps/demos/Demos/DataGrid/Row3RdPartyEngineTemplate/jQuery/index.html @@ -6,12 +6,12 @@ - - - - - - + + + + + + diff --git a/apps/demos/Demos/DataGrid/RowEditingAndEditingEvents/Angular/index.html b/apps/demos/Demos/DataGrid/RowEditingAndEditingEvents/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RowEditingAndEditingEvents/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowEditingAndEditingEvents/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/RowTemplate/Angular/index.html b/apps/demos/Demos/DataGrid/RowTemplate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/RowTemplate/Angular/index.html +++ b/apps/demos/Demos/DataGrid/RowTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - - - - + + + + + + diff --git a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SignalRService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - - + + diff --git a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/DataGrid/SimpleArray/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/DataGrid/StatePersistence/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/ToolbarCustomization/Angular/index.html b/apps/demos/Demos/DataGrid/ToolbarCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/ToolbarCustomization/Angular/index.html +++ b/apps/demos/Demos/DataGrid/ToolbarCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/DataGrid/VirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/DataGrid/WebAPIService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - - + + + diff --git a/apps/demos/Demos/DateBox/Formatting/Angular/index.html b/apps/demos/Demos/DateBox/Formatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DateBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateBox/Formatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DateBox/Overview/Angular/index.html b/apps/demos/Demos/DateBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DateBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Formatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - + - + diff --git a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html +++ b/apps/demos/Demos/DateRangeBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Diagram/Adaptability/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html +++ b/apps/demos/Demos/Diagram/AdvancedDataBinding/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/Containers/Angular/index.html b/apps/demos/Demos/Diagram/Containers/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/Containers/Angular/index.html +++ b/apps/demos/Demos/Diagram/Containers/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithIcons/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplates/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTemplatesWithEditing/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html +++ b/apps/demos/Demos/Diagram/CustomShapesWithTexts/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html +++ b/apps/demos/Demos/Diagram/ImagesInShapes/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html +++ b/apps/demos/Demos/Diagram/ItemSelection/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesAndEdgesArrays/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayHierarchicalStructure/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/Diagram/NodesArrayPlainStructure/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html +++ b/apps/demos/Demos/Diagram/OperationRestrictions/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/Overview/Angular/index.html b/apps/demos/Demos/Diagram/Overview/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/Overview/Angular/index.html +++ b/apps/demos/Demos/Diagram/Overview/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html +++ b/apps/demos/Demos/Diagram/ReadOnly/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/SimpleView/Angular/index.html +++ b/apps/demos/Demos/Diagram/SimpleView/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/UICustomization/Angular/index.html +++ b/apps/demos/Demos/Diagram/UICustomization/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html index 80c926d8c44f..570cbf32da58 100644 --- a/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Diagram/WebAPIService/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - - + + + + + diff --git a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/LeftOrRightPosition/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html +++ b/apps/demos/Demos/Drawer/TopOrBottomPosition/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/MultipleSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html +++ b/apps/demos/Demos/DropDownBox/SingleSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/DropDownButton/Overview/Angular/index.html +++ b/apps/demos/Demos/DropDownButton/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FieldSet/Overview/Angular/index.html b/apps/demos/Demos/FieldSet/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FieldSet/Overview/Angular/index.html +++ b/apps/demos/Demos/FieldSet/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html index 45fbed43c0e3..62f621048d2b 100644 --- a/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToEF/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html index 45fbed43c0e3..62f621048d2b 100644 --- a/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToFileSystem/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html index 45fbed43c0e3..62f621048d2b 100644 --- a/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/FileManager/BindingToHierarchicalStructure/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html index 45fbed43c0e3..62f621048d2b 100644 --- a/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html +++ b/apps/demos/Demos/FileManager/CustomThumbnails/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/Overview/Angular/index.html b/apps/demos/Demos/FileManager/Overview/Angular/index.html index 45fbed43c0e3..62f621048d2b 100644 --- a/apps/demos/Demos/FileManager/Overview/Angular/index.html +++ b/apps/demos/Demos/FileManager/Overview/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html index 7952b1bd5fb7..0b1600a773b2 100644 --- a/apps/demos/Demos/FileManager/UICustomization/Angular/index.html +++ b/apps/demos/Demos/FileManager/UICustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileUploader/ChunkUploading/Angular/index.html b/apps/demos/Demos/FileUploader/ChunkUploading/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FileUploader/ChunkUploading/Angular/index.html +++ b/apps/demos/Demos/FileUploader/ChunkUploading/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html +++ b/apps/demos/Demos/FileUploader/CustomDropzone/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html +++ b/apps/demos/Demos/FileUploader/FileUploading/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FileUploader/Validation/Angular/index.html b/apps/demos/Demos/FileUploader/Validation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FileUploader/Validation/Angular/index.html +++ b/apps/demos/Demos/FileUploader/Validation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/Customization/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - - - - - + + + + + - + diff --git a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithDataGrid/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html index 53fecd607170..51222cb55272 100644 --- a/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html +++ b/apps/demos/Demos/FilterBuilder/WithList/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - + + - + + + - - + + - - - - - + + + + + - + diff --git a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html +++ b/apps/demos/Demos/FloatingActionButton/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/ColumnsAdaptability/Angular/index.html b/apps/demos/Demos/Form/ColumnsAdaptability/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/ColumnsAdaptability/Angular/index.html +++ b/apps/demos/Demos/Form/ColumnsAdaptability/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/CustomizeItem/Angular/index.html b/apps/demos/Demos/Form/CustomizeItem/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/CustomizeItem/Angular/index.html +++ b/apps/demos/Demos/Form/CustomizeItem/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/GroupedFields/Angular/index.html b/apps/demos/Demos/Form/GroupedFields/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/GroupedFields/Angular/index.html +++ b/apps/demos/Demos/Form/GroupedFields/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/Overview/Angular/index.html b/apps/demos/Demos/Form/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/Overview/Angular/index.html +++ b/apps/demos/Demos/Form/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html +++ b/apps/demos/Demos/Form/UpdateItemsDynamically/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Form/Validation/Angular/index.html b/apps/demos/Demos/Form/Validation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Form/Validation/Angular/index.html +++ b/apps/demos/Demos/Form/Validation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gallery/Item3RdPartyEngineTemplate/jQuery/index.html b/apps/demos/Demos/Gallery/Item3RdPartyEngineTemplate/jQuery/index.html index b1844d2acaec..ad98888f2a88 100644 --- a/apps/demos/Demos/Gallery/Item3RdPartyEngineTemplate/jQuery/index.html +++ b/apps/demos/Demos/Gallery/Item3RdPartyEngineTemplate/jQuery/index.html @@ -6,8 +6,8 @@ - - + + diff --git a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/Gallery/ItemTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gallery/Overview/Angular/index.html b/apps/demos/Demos/Gallery/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gallery/Overview/Angular/index.html +++ b/apps/demos/Demos/Gallery/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gantt/ChartAppearance/Angular/index.html b/apps/demos/Demos/Gantt/ChartAppearance/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/ChartAppearance/Angular/index.html +++ b/apps/demos/Demos/Gantt/ChartAppearance/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html +++ b/apps/demos/Demos/Gantt/ContextMenu/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/DataBinding/Angular/index.html +++ b/apps/demos/Demos/Gantt/DataBinding/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html +++ b/apps/demos/Demos/Gantt/ExportToPDF/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/FilterRow/Angular/index.html +++ b/apps/demos/Demos/Gantt/FilterRow/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html +++ b/apps/demos/Demos/Gantt/HeaderFilter/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/Overview/Angular/index.html b/apps/demos/Demos/Gantt/Overview/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/Overview/Angular/index.html +++ b/apps/demos/Demos/Gantt/Overview/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/Sorting/Angular/index.html b/apps/demos/Demos/Gantt/Sorting/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/Sorting/Angular/index.html +++ b/apps/demos/Demos/Gantt/Sorting/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/StripLines/Angular/index.html b/apps/demos/Demos/Gantt/StripLines/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/StripLines/Angular/index.html +++ b/apps/demos/Demos/Gantt/StripLines/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html +++ b/apps/demos/Demos/Gantt/TaskTemplate/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/Toolbar/Angular/index.html +++ b/apps/demos/Demos/Gantt/Toolbar/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gantt/Validation/Angular/index.html b/apps/demos/Demos/Gantt/Validation/Angular/index.html index 781d00b1fbbb..a7e5502187c0 100644 --- a/apps/demos/Demos/Gantt/Validation/Angular/index.html +++ b/apps/demos/Demos/Gantt/Validation/Angular/index.html @@ -5,13 +5,13 @@ - - + + - - - - + + + + - + + - + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/AnglesCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/BaseValueForRangeBar/Angular/index.html b/apps/demos/Demos/Gauges/BaseValueForRangeBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/BaseValueForRangeBar/Angular/index.html +++ b/apps/demos/Demos/Gauges/BaseValueForRangeBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayout/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/CustomLayoutLinearGauge/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentSubvalueIndicatorTypesLinearGauge/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html +++ b/apps/demos/Demos/Gauges/DifferentValueIndicatorTypesLinearGauge/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTitleCustomized/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/GaugeTooltip/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html +++ b/apps/demos/Demos/Gauges/LabelsCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/Overview/Angular/index.html b/apps/demos/Demos/Gauges/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/Overview/Angular/index.html +++ b/apps/demos/Demos/Gauges/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/Palette/Angular/index.html b/apps/demos/Demos/Gauges/Palette/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/Palette/Angular/index.html +++ b/apps/demos/Demos/Gauges/Palette/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html +++ b/apps/demos/Demos/Gauges/PaletteForRanges/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickInterval/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleCustomTickValues/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleLabelFormatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html +++ b/apps/demos/Demos/Gauges/ScaleMinorTicks/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html +++ b/apps/demos/Demos/Gauges/SubvalueIndicatorTextFormatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/Tooltip/Angular/index.html +++ b/apps/demos/Demos/Gauges/Tooltip/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/UpdateBarGaugeDataAtRuntime/Angular/index.html b/apps/demos/Demos/Gauges/UpdateBarGaugeDataAtRuntime/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/UpdateBarGaugeDataAtRuntime/Angular/index.html +++ b/apps/demos/Demos/Gauges/UpdateBarGaugeDataAtRuntime/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/UpdateCircularGaugeDataAtRuntime/Angular/index.html b/apps/demos/Demos/Gauges/UpdateCircularGaugeDataAtRuntime/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/UpdateCircularGaugeDataAtRuntime/Angular/index.html +++ b/apps/demos/Demos/Gauges/UpdateCircularGaugeDataAtRuntime/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/UpdateLinearGaugeDataAtRuntime/Angular/index.html b/apps/demos/Demos/Gauges/UpdateLinearGaugeDataAtRuntime/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/UpdateLinearGaugeDataAtRuntime/Angular/index.html +++ b/apps/demos/Demos/Gauges/UpdateLinearGaugeDataAtRuntime/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html +++ b/apps/demos/Demos/Gauges/ValueIndicatorsAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfBars/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Gauges/VariableNumberOfSubvalueIndicators/Angular/index.html b/apps/demos/Demos/Gauges/VariableNumberOfSubvalueIndicators/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Gauges/VariableNumberOfSubvalueIndicators/Angular/index.html +++ b/apps/demos/Demos/Gauges/VariableNumberOfSubvalueIndicators/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Mentions/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/HtmlEditor/OutputFormats/Angular/index.html b/apps/demos/Demos/HtmlEditor/OutputFormats/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/HtmlEditor/OutputFormats/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/OutputFormats/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - - - - - + + + + + + + diff --git a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/Tables/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html +++ b/apps/demos/Demos/HtmlEditor/ToolbarCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/List/GroupedList/Angular/index.html b/apps/demos/Demos/List/GroupedList/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/GroupedList/Angular/index.html +++ b/apps/demos/Demos/List/GroupedList/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/Item3RdPartyEngineTemplate/jQuery/index.html b/apps/demos/Demos/List/Item3RdPartyEngineTemplate/jQuery/index.html index 87036853e6cb..5d411a15114f 100644 --- a/apps/demos/Demos/List/Item3RdPartyEngineTemplate/jQuery/index.html +++ b/apps/demos/Demos/List/Item3RdPartyEngineTemplate/jQuery/index.html @@ -6,8 +6,8 @@ - - + + diff --git a/apps/demos/Demos/List/ItemDragging/Angular/index.html b/apps/demos/Demos/List/ItemDragging/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/ItemDragging/Angular/index.html +++ b/apps/demos/Demos/List/ItemDragging/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/ItemTemplate/Angular/index.html b/apps/demos/Demos/List/ItemTemplate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/List/ItemTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/ListEditingAndAPI/Angular/index.html b/apps/demos/Demos/List/ListEditingAndAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/ListEditingAndAPI/Angular/index.html +++ b/apps/demos/Demos/List/ListEditingAndAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/ListSelection/Angular/index.html b/apps/demos/Demos/List/ListSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/ListSelection/Angular/index.html +++ b/apps/demos/Demos/List/ListSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/ListWithSearchBar/Angular/index.html b/apps/demos/Demos/List/ListWithSearchBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/ListWithSearchBar/Angular/index.html +++ b/apps/demos/Demos/List/ListWithSearchBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/List/WebAPI/Angular/index.html b/apps/demos/Demos/List/WebAPI/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/List/WebAPI/Angular/index.html +++ b/apps/demos/Demos/List/WebAPI/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadIndicator/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/LoadPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/LoadPanel/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingGlobalize/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html index 139ecd4c490a..95c66ab52857 100644 --- a/apps/demos/Demos/Localization/UsingIntl/Angular/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/Localization/UsingIntl/React/index.html b/apps/demos/Demos/Localization/UsingIntl/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/Localization/UsingIntl/React/index.html +++ b/apps/demos/Demos/Localization/UsingIntl/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - + - + - - + + diff --git a/apps/demos/Demos/Lookup/Basics/Angular/index.html b/apps/demos/Demos/Lookup/Basics/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Lookup/Basics/Angular/index.html +++ b/apps/demos/Demos/Lookup/Basics/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Lookup/EventHandling/Angular/index.html +++ b/apps/demos/Demos/Lookup/EventHandling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Lookup/Templates/Angular/index.html b/apps/demos/Demos/Lookup/Templates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Lookup/Templates/Angular/index.html +++ b/apps/demos/Demos/Lookup/Templates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Map/Markers/Angular/index.html b/apps/demos/Demos/Map/Markers/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Map/Markers/Angular/index.html +++ b/apps/demos/Demos/Map/Markers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html +++ b/apps/demos/Demos/Map/ProvidersAndTypes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Map/Routes/Angular/index.html b/apps/demos/Demos/Map/Routes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Map/Routes/Angular/index.html +++ b/apps/demos/Demos/Map/Routes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Menu/Overview/Angular/index.html b/apps/demos/Demos/Menu/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Menu/Overview/Angular/index.html +++ b/apps/demos/Demos/Menu/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Menu/Scrolling/Angular/index.html b/apps/demos/Demos/Menu/Scrolling/Angular/index.html index 5e553d1d8ced..2439557d8fbe 100644 --- a/apps/demos/Demos/Menu/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Menu/Scrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/MultiView/Overview/Angular/index.html b/apps/demos/Demos/MultiView/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/MultiView/Overview/Angular/index.html +++ b/apps/demos/Demos/MultiView/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/NumberBox/Formatting/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Formatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/NumberBox/Overview/Angular/index.html b/apps/demos/Demos/NumberBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/NumberBox/Overview/Angular/index.html +++ b/apps/demos/Demos/NumberBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html index 900d9c9a5005..cd862d52ff5d 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html +++ b/apps/demos/Demos/PivotGrid/ChartIntegration/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - - + + + - - + + diff --git a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/DrillDown/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJSOverview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/FieldPanel/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/HeaderFilter/Angular/index.html b/apps/demos/Demos/PivotGrid/HeaderFilter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/HeaderFilter/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/HeaderFilter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/IntegratedFieldChooser/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/LayoutCustomization/Angular/index.html b/apps/demos/Demos/PivotGrid/LayoutCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/LayoutCustomization/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/LayoutCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/OLAPDataSource/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html index 900d9c9a5005..cd862d52ff5d 100644 --- a/apps/demos/Demos/PivotGrid/Overview/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/PivotGrid/Overview/React/index.html b/apps/demos/Demos/PivotGrid/Overview/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/PivotGrid/Overview/React/index.html +++ b/apps/demos/Demos/PivotGrid/Overview/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RemoteVirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/RunningTotals/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SimpleArray/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StandaloneFieldChooser/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/StatePersistence/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/SummaryDisplayModes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/VirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/PivotGrid/WebAPIService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/Popover/Overview/Angular/index.html b/apps/demos/Demos/Popover/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Popover/Overview/Angular/index.html +++ b/apps/demos/Demos/Popover/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Popup/Overview/Angular/index.html b/apps/demos/Demos/Popup/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Popup/Overview/Angular/index.html +++ b/apps/demos/Demos/Popup/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Popup/Scrolling/Angular/index.html b/apps/demos/Demos/Popup/Scrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Popup/Scrolling/Angular/index.html +++ b/apps/demos/Demos/Popup/Scrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ProgressBar/Overview/Angular/index.html +++ b/apps/demos/Demos/ProgressBar/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RadioGroup/Overview/Angular/index.html +++ b/apps/demos/Demos/RadioGroup/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/ChartOnBackground/Angular/index.html b/apps/demos/Demos/RangeSelector/ChartOnBackground/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/ChartOnBackground/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/ChartOnBackground/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/ChartOnBackgroundWithSeriesTemplate/Angular/index.html b/apps/demos/Demos/RangeSelector/ChartOnBackgroundWithSeriesTemplate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/ChartOnBackgroundWithSeriesTemplate/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/ChartOnBackgroundWithSeriesTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/CustomFormatting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/CustomizedChartOnBackground/Angular/index.html b/apps/demos/Demos/RangeSelector/CustomizedChartOnBackground/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/CustomizedChartOnBackground/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/CustomizedChartOnBackground/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScale/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DateTimeScaleLightweight/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/DiscreteScale/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/ImageOnBackground/Angular/index.html b/apps/demos/Demos/RangeSelector/ImageOnBackground/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/ImageOnBackground/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/ImageOnBackground/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/LogarithmicScale/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScale/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/NumericScaleLightweight/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/UseRangeSelectionForCalculation/Angular/index.html b/apps/demos/Demos/RangeSelector/UseRangeSelectionForCalculation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/UseRangeSelectionForCalculation/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/UseRangeSelectionForCalculation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSelector/UseRangeSelectionForFiltering/Angular/index.html b/apps/demos/Demos/RangeSelector/UseRangeSelectionForFiltering/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSelector/UseRangeSelectionForFiltering/Angular/index.html +++ b/apps/demos/Demos/RangeSelector/UseRangeSelectionForFiltering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/RangeSlider/Overview/Angular/index.html +++ b/apps/demos/Demos/RangeSlider/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Resizable/Overview/Angular/index.html b/apps/demos/Demos/Resizable/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Resizable/Overview/Angular/index.html +++ b/apps/demos/Demos/Resizable/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html +++ b/apps/demos/Demos/ResponsiveBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Adaptability/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Agenda/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Agenda/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html +++ b/apps/demos/Demos/Scheduler/AllDayPanelMode/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html +++ b/apps/demos/Demos/Scheduler/BasicViews/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CellTemplates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/ContextMenuIntegration/Angular/index.html b/apps/demos/Demos/Scheduler/ContextMenuIntegration/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/ContextMenuIntegration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/ContextMenuIntegration/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/CustomDragAndDrop/Angular/index.html b/apps/demos/Demos/Scheduler/CustomDragAndDrop/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/CustomDragAndDrop/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomDragAndDrop/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/CustomTemplates/Angular/index.html b/apps/demos/Demos/Scheduler/CustomTemplates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/CustomTemplates/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomTemplates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - + - - + + - - - - - - + + + + + + diff --git a/apps/demos/Demos/Scheduler/CustomizeIndividualViews/Angular/index.html b/apps/demos/Demos/Scheduler/CustomizeIndividualViews/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/CustomizeIndividualViews/Angular/index.html +++ b/apps/demos/Demos/Scheduler/CustomizeIndividualViews/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/Editing/Angular/index.html b/apps/demos/Demos/Scheduler/Editing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Editing/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Editing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GoogleCalendarIntegration/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupByDate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/GroupOrientation/Angular/index.html b/apps/demos/Demos/Scheduler/GroupOrientation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/GroupOrientation/Angular/index.html +++ b/apps/demos/Demos/Scheduler/GroupOrientation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/IncreaseViewDuration/Angular/index.html b/apps/demos/Demos/Scheduler/IncreaseViewDuration/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/IncreaseViewDuration/Angular/index.html +++ b/apps/demos/Demos/Scheduler/IncreaseViewDuration/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/LimitAppointmentCountPerCell/Angular/index.html b/apps/demos/Demos/Scheduler/LimitAppointmentCountPerCell/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/LimitAppointmentCountPerCell/Angular/index.html +++ b/apps/demos/Demos/Scheduler/LimitAppointmentCountPerCell/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/index.html b/apps/demos/Demos/Scheduler/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html +++ b/apps/demos/Demos/Scheduler/RecurringAppointments/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/Resources/Angular/index.html b/apps/demos/Demos/Scheduler/Resources/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Resources/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Resources/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html index 93c091ab6682..4760eceffb1a 100644 --- a/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SignalRService/Angular/index.html @@ -5,13 +5,13 @@ - + - - - - + + + + - - + + - - + + + + - - + + - - - - + + + + diff --git a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html +++ b/apps/demos/Demos/Scheduler/SimpleArray/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html +++ b/apps/demos/Demos/Scheduler/TimeZonesSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/Timelines/Angular/index.html +++ b/apps/demos/Demos/Scheduler/Timelines/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html +++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WebAPIService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html index e6feb2e3a844..d6cce972f42b 100644 --- a/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html +++ b/apps/demos/Demos/Scheduler/WorkShifts/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/ScrollView/Overview/Angular/index.html b/apps/demos/Demos/ScrollView/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/ScrollView/Overview/Angular/index.html +++ b/apps/demos/Demos/ScrollView/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html +++ b/apps/demos/Demos/SelectBox/CustomizeDropDownButton/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/SelectBox/GroupedItems/Angular/index.html b/apps/demos/Demos/SelectBox/GroupedItems/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/SelectBox/GroupedItems/Angular/index.html +++ b/apps/demos/Demos/SelectBox/GroupedItems/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/SelectBox/Overview/Angular/index.html b/apps/demos/Demos/SelectBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/SelectBox/Overview/Angular/index.html +++ b/apps/demos/Demos/SelectBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html +++ b/apps/demos/Demos/SelectBox/SearchAndEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/Slider/Overview/Angular/index.html b/apps/demos/Demos/Slider/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Slider/Overview/Angular/index.html +++ b/apps/demos/Demos/Slider/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Sortable/Customization/Angular/index.html b/apps/demos/Demos/Sortable/Customization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Sortable/Customization/Angular/index.html +++ b/apps/demos/Demos/Sortable/Customization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Sortable/Kanban/Angular/index.html b/apps/demos/Demos/Sortable/Kanban/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Sortable/Kanban/Angular/index.html +++ b/apps/demos/Demos/Sortable/Kanban/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Splitter/Overview/Angular/index.html b/apps/demos/Demos/Splitter/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Splitter/Overview/Angular/index.html +++ b/apps/demos/Demos/Splitter/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Switch/Overview/Angular/index.html b/apps/demos/Demos/Switch/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Switch/Overview/Angular/index.html +++ b/apps/demos/Demos/Switch/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TabPanel/Overview/Angular/index.html b/apps/demos/Demos/TabPanel/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TabPanel/Overview/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TabPanel/SortableClosableTabs/Angular/index.html b/apps/demos/Demos/TabPanel/SortableClosableTabs/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TabPanel/SortableClosableTabs/Angular/index.html +++ b/apps/demos/Demos/TabPanel/SortableClosableTabs/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TabPanel/Templates/Angular/index.html b/apps/demos/Demos/TabPanel/Templates/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TabPanel/Templates/Angular/index.html +++ b/apps/demos/Demos/TabPanel/Templates/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Tabs/Overview/Angular/index.html b/apps/demos/Demos/Tabs/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Tabs/Overview/Angular/index.html +++ b/apps/demos/Demos/Tabs/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Tabs/Selection/Angular/index.html b/apps/demos/Demos/Tabs/Selection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Tabs/Selection/Angular/index.html +++ b/apps/demos/Demos/Tabs/Selection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TagBox/GroupedItems/Angular/index.html b/apps/demos/Demos/TagBox/GroupedItems/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TagBox/GroupedItems/Angular/index.html +++ b/apps/demos/Demos/TagBox/GroupedItems/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TagBox/Overview/Angular/index.html b/apps/demos/Demos/TagBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TagBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TagBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html +++ b/apps/demos/Demos/TagBox/TagCountLimitation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TextArea/Overview/Angular/index.html b/apps/demos/Demos/TextArea/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TextArea/Overview/Angular/index.html +++ b/apps/demos/Demos/TextArea/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TextBox/Overview/Angular/index.html b/apps/demos/Demos/TextBox/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TextBox/Overview/Angular/index.html +++ b/apps/demos/Demos/TextBox/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TileView/Basics/Angular/index.html b/apps/demos/Demos/TileView/Basics/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TileView/Basics/Angular/index.html +++ b/apps/demos/Demos/TileView/Basics/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TileView/Directions/Angular/index.html b/apps/demos/Demos/TileView/Directions/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TileView/Directions/Angular/index.html +++ b/apps/demos/Demos/TileView/Directions/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TileView/Item3RdPartyEngineTemplate/jQuery/index.html b/apps/demos/Demos/TileView/Item3RdPartyEngineTemplate/jQuery/index.html index e4fa217cf6c1..81e4e1214bd8 100644 --- a/apps/demos/Demos/TileView/Item3RdPartyEngineTemplate/jQuery/index.html +++ b/apps/demos/Demos/TileView/Item3RdPartyEngineTemplate/jQuery/index.html @@ -6,8 +6,8 @@ - - + + diff --git a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html index 900d9c9a5005..cd862d52ff5d 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/TileView/ItemTemplate/React/index.html b/apps/demos/Demos/TileView/ItemTemplate/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/TileView/ItemTemplate/React/index.html +++ b/apps/demos/Demos/TileView/ItemTemplate/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Toast/Overview/Angular/index.html b/apps/demos/Demos/Toast/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Toast/Overview/Angular/index.html +++ b/apps/demos/Demos/Toast/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Toast/Stack/Angular/index.html b/apps/demos/Demos/Toast/Stack/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Toast/Stack/Angular/index.html +++ b/apps/demos/Demos/Toast/Stack/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + + - - + + - - + + diff --git a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Adaptability/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Toolbar/Overview/Angular/index.html b/apps/demos/Demos/Toolbar/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Toolbar/Overview/Angular/index.html +++ b/apps/demos/Demos/Toolbar/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Tooltip/Overview/Angular/index.html b/apps/demos/Demos/Tooltip/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Tooltip/Overview/Angular/index.html +++ b/apps/demos/Demos/Tooltip/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/Adaptability/Angular/index.html +++ b/apps/demos/Demos/TreeList/Adaptability/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/BatchEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/CellEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/CellEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnChooser/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/ColumnFixing/Angular/index.html b/apps/demos/Demos/TreeList/ColumnFixing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/ColumnFixing/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnFixing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html +++ b/apps/demos/Demos/TreeList/ColumnHeaderFilter/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html +++ b/apps/demos/Demos/TreeList/CustomizeKeyboardNavigation/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - + - + diff --git a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/FilterModes/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterModes/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html index 921af3022582..828a96270572 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/TreeList/FilterPanel/React/index.html b/apps/demos/Demos/TreeList/FilterPanel/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/TreeList/FilterPanel/React/index.html +++ b/apps/demos/Demos/TreeList/FilterPanel/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/FocusedRow/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/FormEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/FormEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html +++ b/apps/demos/Demos/TreeList/KeyboardNavigation/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeList/LoadDataOnDemand/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/LocalReordering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleRowSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html +++ b/apps/demos/Demos/TreeList/MultipleSorting/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/Overview/Angular/index.html b/apps/demos/Demos/TreeList/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/Overview/Angular/index.html +++ b/apps/demos/Demos/TreeList/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/TreeList/Paging/Angular/index.html b/apps/demos/Demos/TreeList/Paging/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/Paging/Angular/index.html +++ b/apps/demos/Demos/TreeList/Paging/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/PopupEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/Reordering/Angular/index.html b/apps/demos/Demos/TreeList/Reordering/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/Reordering/Angular/index.html +++ b/apps/demos/Demos/TreeList/Reordering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/Resizing/Angular/index.html b/apps/demos/Demos/TreeList/Resizing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/Resizing/Angular/index.html +++ b/apps/demos/Demos/TreeList/Resizing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/RowEditing/Angular/index.html +++ b/apps/demos/Demos/TreeList/RowEditing/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayHierarchicalStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html +++ b/apps/demos/Demos/TreeList/SimpleArrayPlainStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html +++ b/apps/demos/Demos/TreeList/SingleRowSelection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html +++ b/apps/demos/Demos/TreeList/StatePersistence/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/UsingFilterRow/Angular/index.html b/apps/demos/Demos/TreeList/UsingFilterRow/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/UsingFilterRow/Angular/index.html +++ b/apps/demos/Demos/TreeList/UsingFilterRow/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeList/UsingSearchPanel/Angular/index.html b/apps/demos/Demos/TreeList/UsingSearchPanel/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/UsingSearchPanel/Angular/index.html +++ b/apps/demos/Demos/TreeList/UsingSearchPanel/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html +++ b/apps/demos/Demos/TreeList/WebAPIService/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - + + + diff --git a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html +++ b/apps/demos/Demos/TreeView/ContextMenuIntegration/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropHierarchicalDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/DragAndDropPlainDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/FlatDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html +++ b/apps/demos/Demos/TreeView/HierarchicalDataStructure/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html +++ b/apps/demos/Demos/TreeView/ItemSelectionAndCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html +++ b/apps/demos/Demos/TreeView/LoadDataOnDemand/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html +++ b/apps/demos/Demos/TreeView/TreeViewWithSearchBar/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html +++ b/apps/demos/Demos/TreeView/VirtualMode/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/Validation/Overview/Angular/index.html b/apps/demos/Demos/Validation/Overview/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/Validation/Overview/Angular/index.html +++ b/apps/demos/Demos/Validation/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + - - - + + + - - + + diff --git a/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/Angular/index.html b/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/Angular/index.html +++ b/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/React/index.html b/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/React/index.html +++ b/apps/demos/Demos/VectorMap/AreaWithLabelsAndTwoLegends/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/BubbleMarkers/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html +++ b/apps/demos/Demos/VectorMap/ColorsCustomization/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomAnnotations/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomMapData/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/CustomProjection/React/index.html +++ b/apps/demos/Demos/VectorMap/CustomProjection/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html +++ b/apps/demos/Demos/VectorMap/DynamicViewport/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html index c775ece2cb0d..1ab1fb54a1df 100644 --- a/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html +++ b/apps/demos/Demos/VectorMap/FloorPlan/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + - + + - + + + - - + + - - + + diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/ImageMarkers/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html +++ b/apps/demos/Demos/VectorMap/MultipleLayers/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/Overview/Angular/index.html b/apps/demos/Demos/VectorMap/Overview/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/Overview/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Overview/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/Overview/React/index.html b/apps/demos/Demos/VectorMap/Overview/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/Overview/React/index.html +++ b/apps/demos/Demos/VectorMap/Overview/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/Palette/Angular/index.html b/apps/demos/Demos/VectorMap/Palette/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/Palette/Angular/index.html +++ b/apps/demos/Demos/VectorMap/Palette/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/Palette/React/index.html b/apps/demos/Demos/VectorMap/Palette/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/Palette/React/index.html +++ b/apps/demos/Demos/VectorMap/Palette/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/PieMarkers/React/index.html +++ b/apps/demos/Demos/VectorMap/PieMarkers/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/TooltipHTMLSupport/Angular/index.html b/apps/demos/Demos/VectorMap/TooltipHTMLSupport/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/TooltipHTMLSupport/Angular/index.html +++ b/apps/demos/Demos/VectorMap/TooltipHTMLSupport/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/TooltipHTMLSupport/React/index.html b/apps/demos/Demos/VectorMap/TooltipHTMLSupport/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/TooltipHTMLSupport/React/index.html +++ b/apps/demos/Demos/VectorMap/TooltipHTMLSupport/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html index be2bcffd5abe..ee4f94c91d04 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/Angular/index.html @@ -5,12 +5,12 @@ - + - - - - + + + + diff --git a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html index 312e8a90b68e..ee451f8288ff 100644 --- a/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html +++ b/apps/demos/Demos/VectorMap/ZoomingAndCentering/React/index.html @@ -5,11 +5,11 @@ - + - - + + - + + + - - + + - - - - - - - - + + + + + + + + diff --git a/apps/demos/README.md b/apps/demos/README.md index 8c47e3a7329d..cec9f608d400 100644 --- a/apps/demos/README.md +++ b/apps/demos/README.md @@ -2,40 +2,39 @@ This repository contains technical DevExtreme demos for Angular, React, Vue, jQuery, ASP.NET MVC, and ASP.NET Core. -To run the demos on your machine, clone this repository, run `npm install`, and follow the instructions below. +To run the demos on your machine, clone this repository, run `pnpm install`, and follow the instructions below. ## Prepare Demos for Development Before running you need execute in `monorepo/root`: ``` -npm run all:build -npm run overwrite-wrappers-packages +pnpm run all:build-dev ``` To prepare demos for development: ``` -npm run prepare-js +pnpm run prepare-js ``` 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. Run the following command to create the bundles and replace the SystemJS configuration: ``` -npm run prepare-bundles +pnpm run prepare-bundles ``` -To return to using separate files from `node_modules`, run `npm run prepare-js`. +To return to using separate files from `node_modules`, run `pnpm run prepare-js`. ### Launch #### Option 1 ``` -npm run launch-demo +pnpm run launch-demo ``` #### Option 2 -1. Run ```run npm webserver ``` from `monorepo/root` +1. Run ```pnpm run webserver ``` from `monorepo/root` 2. Navigate to http://localhost:8080/apps/demos. You can pass additional parameter to specify port. It can be useful when you need to fast switching between one demo on different frameworks: @@ -45,7 +44,7 @@ You can pass additional parameter to specify port. It can be useful when you nee For fix autofixed errors: ``` -npm run fix-lint +pnpm run fix-lint ``` ### Development @@ -53,7 +52,7 @@ npm run fix-lint 1. Run the following script to add a new demo: ``` - npm run add-demo + pnpm run add-demo ``` 1. Use the built-in CLI to choose or enter the category, the demo name, and the technology for the new demo. @@ -63,13 +62,13 @@ npm run fix-lint 1. After you make any changes in React TypeScript sources, run the following command: ``` -npm run convert-to-js split +pnpm run convert-to-js split ``` If you want to run this script on specific folder you can pass it to the arguments ``` -npm run convert-to-js "JSDemos/Demos/Diagram/**/React" +pnpm run convert-to-js "JSDemos/Demos/Diagram/**/React" ``` 1. To ensure that React JavaScript and TypeScript sources are always in sync, the following GitHub action is used: "Check generated JS demos". diff --git a/apps/demos/configs/Angular/config.js b/apps/demos/configs/Angular/config.js index 9525d05ef884..05efc323f0c2 100644 --- a/apps/demos/configs/Angular/config.js +++ b/apps/demos/configs/Angular/config.js @@ -141,7 +141,7 @@ window.config = { }, }, paths: { - 'npm:': '../../../../../../node_modules/', + 'npm:': '../../../../node_modules/', 'bundles:': '../../../../bundles/', }, map: { diff --git a/apps/demos/configs/React/config.bundle.js b/apps/demos/configs/React/config.bundle.js index 2b7bc0d2abf1..b00bed0cee17 100644 --- a/apps/demos/configs/React/config.bundle.js +++ b/apps/demos/configs/React/config.bundle.js @@ -38,11 +38,11 @@ const bundleConfig = { packages: { 'react': { defaultExtension: 'js', - main: '../../../../../../../node_modules/react/umd/react.development.js', + main: '../../../../../node_modules/react/umd/react.development.js', }, 'react-dom': { defaultExtension: 'js', - main: '../../../../../../../node_modules/react-dom/umd/react-dom.development.js', + main: '../../../../../node_modules/react-dom/umd/react-dom.development.js', }, }, }; diff --git a/apps/demos/configs/React/config.js b/apps/demos/configs/React/config.js index 586866b238de..15f3ea99b874 100644 --- a/apps/demos/configs/React/config.js +++ b/apps/demos/configs/React/config.js @@ -40,7 +40,7 @@ window.config = { /**/ }, paths: { - 'npm:': '../../../../../../node_modules/', + 'npm:': '../../../../node_modules/', }, defaultExtension: 'js', map: { diff --git a/apps/demos/configs/ReactJs/config.js b/apps/demos/configs/ReactJs/config.js index 6caf93871ad8..6067106a2c9e 100644 --- a/apps/demos/configs/ReactJs/config.js +++ b/apps/demos/configs/ReactJs/config.js @@ -40,7 +40,7 @@ window.config = { /**/ }, paths: { - 'npm:': '../../../../../node_modules/', + 'npm:': '../../../node_modules/', }, defaultExtension: 'js', map: { diff --git a/apps/demos/configs/Vue/config.js b/apps/demos/configs/Vue/config.js index 3b20b835c77e..bd2b8ad01fbf 100644 --- a/apps/demos/configs/Vue/config.js +++ b/apps/demos/configs/Vue/config.js @@ -37,14 +37,15 @@ window.config = { /**/ }, paths: { - 'root:': '../../../../', - 'npm:': '../../../../../../node_modules/', + 'project:': '../../../../', + 'npm:': '../../../../node_modules/', }, map: { 'vue': 'npm:vue/dist/vue.esm-browser.js', + '@vue/shared': 'npm:@vue/shared/dist/shared.cjs.prod.js', 'vue-loader': 'npm:dx-systemjs-vue-browser/index.js', - 'demo-ts-loader': 'root:utils/demo-ts-loader.js', - 'svg-loader': 'root:utils/svg-loader.js', + 'demo-ts-loader': 'project:utils/demo-ts-loader.js', + 'svg-loader': 'project:utils/svg-loader.js', /** signalr */ '@aspnet/signalr': 'npm:@aspnet/signalr/dist/cjs', diff --git a/apps/demos/index.html b/apps/demos/index.html index c61b7653f146..5693a6686f8b 100644 --- a/apps/demos/index.html +++ b/apps/demos/index.html @@ -1,8 +1,8 @@ - - + +