diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 4b85921377..d53b9cf8a1 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -13,9 +13,9 @@ jobs: with: node-version: 18.19.1 cache: 'npm' - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run build:packages - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: built-packages path: 'dist/' @@ -30,8 +30,8 @@ jobs: node-version: 18.19.1 cache: 'npm' - run: | - npm ci - npm install rxjs@7.4.0 + npm ci --legacy-peer-deps + npm install rxjs@7.4.0 --legacy-peer-deps npm run build:packages build-docs: needs: build-packages @@ -41,7 +41,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.19.1 - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run docs:build build-playground: needs: build-packages @@ -51,8 +51,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.19.1 - - run: npm ci - - uses: actions/download-artifact@v2 + - run: npm ci --legacy-peer-deps + - uses: actions/download-artifact@v4 with: name: built-packages path: dist @@ -75,7 +75,7 @@ jobs: # with: # node-version: '16' # - run: npm ci -# - uses: actions/download-artifact@v2 +# - uses: actions/download-artifact@v4 # with: # name: built-packages # path: dist @@ -105,8 +105,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.19.1 - - run: npm ci - - uses: actions/download-artifact@v2 + - run: npm ci --legacy-peer-deps + - uses: actions/download-artifact@v4 with: name: built-packages path: dist @@ -137,11 +137,11 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18.19.1 - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4 with: name: built-packages path: packages-smoke/.lib/ - - run: npm ci + - run: npm ci --legacy-peer-deps working-directory: packages-smoke - name: Build run: npm run build -- --configuration=production diff --git a/docs/app/@theme/components/footer/footer.component.html b/docs/app/@theme/components/footer/footer.component.html index 378f67e44f..a6a988af27 100644 --- a/docs/app/@theme/components/footer/footer.component.html +++ b/docs/app/@theme/components/footer/footer.component.html @@ -1,13 +1,39 @@
@@ -25,7 +51,12 @@
  • - © 2015-2019 Akveo LLC
    + © 2015-2019 + Akveo LLC
    Documentation licensed under CC BY 4.0.
  • @@ -33,6 +64,6 @@
    diff --git a/docs/app/@theme/services/version.service.ts b/docs/app/@theme/services/version.service.ts index c2ee36548f..ef6fb007ec 100644 --- a/docs/app/@theme/services/version.service.ts +++ b/docs/app/@theme/services/version.service.ts @@ -26,8 +26,7 @@ export class NgdVersionService { catchError(() => of([])), shareReplay(1), ); - } - this.supportedVersions$ = of([this.devVersion]).pipe(shareReplay(1)); + } else this.supportedVersions$ = of([this.devVersion]).pipe(shareReplay(1)); } getCurrentVersion(): Observable { diff --git a/src/framework/theme/styles/_theming.scss b/src/framework/theme/styles/_theming.scss index 12a5243140..e2fdf88a3d 100644 --- a/src/framework/theme/styles/_theming.scss +++ b/src/framework/theme/styles/_theming.scss @@ -11,4 +11,4 @@ @forward 'core/variants'; @forward 'core/theming/register' show nb-register-theme; @forward 'core/theming/install'; -@forward 'core/theming/get-value'; +@forward 'core/theming/get-value' show nb-deep-find-value, nb-process-theme, get-current-theme-name, nb-theme;