-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,020 changed files
with
9,030 additions
and
7,207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ inputs: | |
node-version: | ||
description: Node.js version | ||
required: false | ||
default: 20.x | ||
default: 22.x | ||
frozen-lockfile: | ||
description: Install dependencies from lock file | ||
required: false | ||
|
@@ -23,32 +23,41 @@ runs: | |
shell: bash | ||
run: npm install -g corepack | ||
|
||
- name: Enable Corepack for Yarn 4.5.1 | ||
- name: Enable Corepack for Yarn 4.6.0 | ||
shell: bash | ||
run: | | ||
corepack enable yarn && yarn | ||
corepack enable yarn | ||
- name: Install Yarn 4.5.1 (if not available) | ||
- name: Run Yarn | ||
shell: bash | ||
run: | | ||
if ! yarn --version | grep -q "4.5.1"; then | ||
npm install -g [email protected] | ||
yarn | ||
- name: Install Yarn 4.6.0 (if not available) | ||
shell: bash | ||
run: | | ||
if ! yarn --version | grep -q "4.6.0"; then | ||
npm install -g [email protected] | ||
fi | ||
- name: Print Node.js version | ||
shell: bash | ||
run: node --version | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | ||
shell: bash | ||
|
||
- name: Use the global Yarn cache if available | ||
uses: actions/cache@v4.1.2 | ||
uses: actions/cache@v4.2.0 | ||
with: | ||
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | ||
key: ${{ runner.os }}-node-${{ inputs.node_version }}-yarn-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ inputs.node_version }}-yarn- | ||
- uses: actions/cache@v4.1.2 | ||
- uses: actions/cache@v4.2.0 | ||
id: node_modules | ||
name: Use project node_modules cache if available | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ jobs: | |
strategy: | ||
matrix: | ||
agent: [1, 2, 3, 4, 5] | ||
node-version: [22.x] | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/nodejs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ jobs: | |
strategy: | ||
matrix: | ||
agent: [1, 2, 3, 4, 5, 6, 7, 8] | ||
node-version: [22.x] | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/nodejs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.14.0 | ||
v22.12.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { NgModule } from '@angular/core'; | ||
|
||
@NgModule({ | ||
imports: [], | ||
declarations: [], | ||
exports: [] | ||
}) | ||
export class FundamentalNgxBtpModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
throw new Error('Do not import anything from the `@fundamental-ngx/btp`, use secondary entrypoint exports instead!'); | ||
export default 'noop'; | ||
export * from '@fundamental-ngx/btp/button'; | ||
export * from '@fundamental-ngx/btp/navigation'; | ||
export * from '@fundamental-ngx/btp/navigation-menu'; | ||
export * from '@fundamental-ngx/btp/search-field'; | ||
export * from '@fundamental-ngx/btp/shared'; | ||
export * from '@fundamental-ngx/btp/splitter'; | ||
export * from '@fundamental-ngx/btp/tool-header'; | ||
export * from '@fundamental-ngx/btp/tool-layout'; | ||
export * from '@fundamental-ngx/core/button'; | ||
export * from '@fundamental-ngx/core/icon'; | ||
export * from './fundamental-ngx.module'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
libs/btp/navigation/components/navigation/navigation.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.