@igniteui/angular-templates 18.1.1410 → 18.2.1420-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/igx-ts/projects/_base/files/__dot__github/workflows/github.io.yml +41 -0
- package/igx-ts/projects/_base/files/package.json +17 -17
- package/igx-ts/projects/_base_with_home/files/__dot__github/workflows/github.io.yml +41 -0
- package/igx-ts/projects/side-nav-auth/files/package.json +18 -18
- package/igx-ts-legacy/projects/_base/files/__dot__github/workflows/github.io.yml +41 -0
- package/igx-ts-legacy/projects/_base/files/package.json +17 -17
- package/igx-ts-legacy/projects/_base_with_home/files/__dot__github/workflows/github.io.yml +41 -0
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +18 -18
- package/package.json +2 -2
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Deploy GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build-and-deploy:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
node-version: [18.x, 20.x]
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v3
|
|
24
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
|
+
uses: actions/setup-node@v2
|
|
26
|
+
with:
|
|
27
|
+
node-version: ${{ matrix.node-version }}
|
|
28
|
+
# cache: 'npm' # enable after committing lock file from first install
|
|
29
|
+
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
30
|
+
- name: Set project name
|
|
31
|
+
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
32
|
+
- name: Build project with dynamic base-href
|
|
33
|
+
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
34
|
+
- name: Update Resource Paths
|
|
35
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
36
|
+
- name: Upload build artifact to GitHub Pages
|
|
37
|
+
uses: actions/upload-pages-artifact@v1
|
|
38
|
+
with:
|
|
39
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
40
|
+
- name: Deploy to GitHub Pages
|
|
41
|
+
uses: actions/deploy-pages@v1
|
|
@@ -11,30 +11,30 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~18.
|
|
15
|
-
"@angular/common": "~18.
|
|
16
|
-
"@angular/compiler": "~18.
|
|
17
|
-
"@angular/core": "~18.
|
|
18
|
-
"@angular/forms": "~18.
|
|
19
|
-
"@angular/platform-browser": "~18.
|
|
20
|
-
"@angular/platform-browser-dynamic": "~18.
|
|
21
|
-
"@angular/router": "~18.
|
|
14
|
+
"@angular/animations": "~18.2.0",
|
|
15
|
+
"@angular/common": "~18.2.0",
|
|
16
|
+
"@angular/compiler": "~18.2.0",
|
|
17
|
+
"@angular/core": "~18.2.0",
|
|
18
|
+
"@angular/forms": "~18.2.0",
|
|
19
|
+
"@angular/platform-browser": "~18.2.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~18.2.0",
|
|
21
|
+
"@angular/router": "~18.2.0",
|
|
22
22
|
"hammerjs": "~2.0.8",
|
|
23
|
-
"igniteui-angular": "~18.
|
|
23
|
+
"igniteui-angular": "~18.2.0-beta.2",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
26
|
"tslib": "~2.3.0",
|
|
27
27
|
"zone.js": "~0.14.3"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@angular-devkit/build-angular": "~18.
|
|
31
|
-
"@angular-eslint/builder": "~18.
|
|
32
|
-
"@angular-eslint/eslint-plugin": "~18.
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "~18.
|
|
34
|
-
"@angular-eslint/schematics": "~18.
|
|
35
|
-
"@angular-eslint/template-parser": "~18.
|
|
36
|
-
"@angular/cli": "~18.
|
|
37
|
-
"@angular/compiler-cli": "~18.
|
|
30
|
+
"@angular-devkit/build-angular": "~18.2.0",
|
|
31
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
32
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
34
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
35
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
36
|
+
"@angular/cli": "~18.2.0",
|
|
37
|
+
"@angular/compiler-cli": "~18.2.0",
|
|
38
38
|
"@types/jasmine": "~5.1.1",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "~7.11.0",
|
|
40
40
|
"@typescript-eslint/parser": "~7.11.0",
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Deploy GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build-and-deploy:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
node-version: [18.x, 20.x]
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v3
|
|
24
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
|
+
uses: actions/setup-node@v2
|
|
26
|
+
with:
|
|
27
|
+
node-version: ${{ matrix.node-version }}
|
|
28
|
+
# cache: 'npm' # enable after committing lock file from first install
|
|
29
|
+
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
30
|
+
- name: Set project name
|
|
31
|
+
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
32
|
+
- name: Build project with dynamic base-href
|
|
33
|
+
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
34
|
+
- name: Update Resource Paths
|
|
35
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
36
|
+
- name: Upload build artifact to GitHub Pages
|
|
37
|
+
uses: actions/upload-pages-artifact@v1
|
|
38
|
+
with:
|
|
39
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
40
|
+
- name: Deploy to GitHub Pages
|
|
41
|
+
uses: actions/deploy-pages@v1
|
|
@@ -11,32 +11,32 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~18.
|
|
15
|
-
"@angular/common": "~18.
|
|
16
|
-
"@angular/compiler": "~18.
|
|
17
|
-
"@angular/core": "~18.
|
|
18
|
-
"@angular/forms": "~18.
|
|
19
|
-
"@angular/platform-browser": "~18.
|
|
20
|
-
"@angular/platform-browser-dynamic": "~18.
|
|
21
|
-
"@angular/router": "~18.
|
|
14
|
+
"@angular/animations": "~18.2.0",
|
|
15
|
+
"@angular/common": "~18.2.0",
|
|
16
|
+
"@angular/compiler": "~18.2.0",
|
|
17
|
+
"@angular/core": "~18.2.0",
|
|
18
|
+
"@angular/forms": "~18.2.0",
|
|
19
|
+
"@angular/platform-browser": "~18.2.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~18.2.0",
|
|
21
|
+
"@angular/router": "~18.2.0",
|
|
22
22
|
"angular-auth-oidc-client": "~15.0.4",
|
|
23
23
|
"hammerjs": "~2.0.8",
|
|
24
|
-
"igniteui-angular": "~18.0.
|
|
24
|
+
"igniteui-angular": "~18.2.0-beta.2",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "~2.3.0",
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~18.
|
|
32
|
-
"@angular-eslint/builder": "~18.
|
|
33
|
-
"@angular-eslint/eslint-plugin": "~18.
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "~18.
|
|
35
|
-
"@angular-eslint/schematics": "~18.
|
|
36
|
-
"@angular-eslint/template-parser": "~18.
|
|
37
|
-
"@angular/cli": "~18.
|
|
38
|
-
"@angular/compiler-cli": "~18.
|
|
39
|
-
"@angular/language-service": "~18.
|
|
31
|
+
"@angular-devkit/build-angular": "~18.2.0",
|
|
32
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
35
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
36
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
37
|
+
"@angular/cli": "~18.2.0",
|
|
38
|
+
"@angular/compiler-cli": "~18.2.0",
|
|
39
|
+
"@angular/language-service": "~18.2.0",
|
|
40
40
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
41
|
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Deploy GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ <%=yamlDefaultBranch%> ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build-and-deploy:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
node-version: [18.x, 20.x]
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v3
|
|
24
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
|
+
uses: actions/setup-node@v2
|
|
26
|
+
with:
|
|
27
|
+
node-version: ${{ matrix.node-version }}
|
|
28
|
+
# cache: 'npm' # enable after committing lock file from first install
|
|
29
|
+
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
30
|
+
- name: Set project name
|
|
31
|
+
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
32
|
+
- name: Build project with dynamic base-href
|
|
33
|
+
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
34
|
+
- name: Update Resource Paths
|
|
35
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
36
|
+
- name: Upload build artifact to GitHub Pages
|
|
37
|
+
uses: actions/upload-pages-artifact@v1
|
|
38
|
+
with:
|
|
39
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
40
|
+
- name: Deploy to GitHub Pages
|
|
41
|
+
uses: actions/deploy-pages@v1
|
|
@@ -11,30 +11,30 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~18.
|
|
15
|
-
"@angular/common": "~18.
|
|
16
|
-
"@angular/compiler": "~18.
|
|
17
|
-
"@angular/core": "~18.
|
|
18
|
-
"@angular/forms": "~18.
|
|
19
|
-
"@angular/platform-browser": "~18.
|
|
20
|
-
"@angular/platform-browser-dynamic": "~18.
|
|
21
|
-
"@angular/router": "~18.
|
|
14
|
+
"@angular/animations": "~18.2.0",
|
|
15
|
+
"@angular/common": "~18.2.0",
|
|
16
|
+
"@angular/compiler": "~18.2.0",
|
|
17
|
+
"@angular/core": "~18.2.0",
|
|
18
|
+
"@angular/forms": "~18.2.0",
|
|
19
|
+
"@angular/platform-browser": "~18.2.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~18.2.0",
|
|
21
|
+
"@angular/router": "~18.2.0",
|
|
22
22
|
"hammerjs": "^2.0.8",
|
|
23
|
-
"igniteui-angular": "~18.
|
|
23
|
+
"igniteui-angular": "~18.2.0-beta.2",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
26
|
"tslib": "~2.3.0",
|
|
27
27
|
"zone.js": "~0.14.3"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@angular-devkit/build-angular": "~18.
|
|
31
|
-
"@angular-eslint/builder": "~18.
|
|
32
|
-
"@angular-eslint/eslint-plugin": "~18.
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "~18.
|
|
34
|
-
"@angular-eslint/schematics": "~18.
|
|
35
|
-
"@angular-eslint/template-parser": "~18.
|
|
36
|
-
"@angular/cli": "~18.
|
|
37
|
-
"@angular/compiler-cli": "~18.
|
|
30
|
+
"@angular-devkit/build-angular": "~18.2.0",
|
|
31
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
32
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
34
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
35
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
36
|
+
"@angular/cli": "~18.2.0",
|
|
37
|
+
"@angular/compiler-cli": "~18.2.0",
|
|
38
38
|
"@types/jasmine": "~5.1.1",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "6.9.1",
|
|
40
40
|
"@typescript-eslint/parser": "6.9.1",
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Deploy GitHub Pages
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ main ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build-and-deploy:
|
|
11
|
+
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
pages: write
|
|
16
|
+
id-token: write
|
|
17
|
+
|
|
18
|
+
strategy:
|
|
19
|
+
matrix:
|
|
20
|
+
node-version: [18.x, 20.x]
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v3
|
|
24
|
+
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
|
+
uses: actions/setup-node@v2
|
|
26
|
+
with:
|
|
27
|
+
node-version: ${{ matrix.node-version }}
|
|
28
|
+
# cache: 'npm' # enable after committing lock file from first install
|
|
29
|
+
- run: npm i # replace with 'npm ci' after committing lock file from first install
|
|
30
|
+
- name: Set project name
|
|
31
|
+
run: echo "PROJECT_NAME=$(jq -r '.name' package.json)" >> $GITHUB_ENV
|
|
32
|
+
- name: Build project with dynamic base-href
|
|
33
|
+
run: npm run build -- --base-href "/${{ github.event.repository.name }}/"
|
|
34
|
+
- name: Update Resource Paths
|
|
35
|
+
run: find ./dist/${{ env.PROJECT_NAME }} -type f -name '*main*.js' -exec sed -i -e "s|/assets|/${{ github.event.repository.name }}/assets|g" -e "s|url('/assets|url('/${{ github.event.repository.name }}/assets|g" {} +
|
|
36
|
+
- name: Upload build artifact to GitHub Pages
|
|
37
|
+
uses: actions/upload-pages-artifact@v1
|
|
38
|
+
with:
|
|
39
|
+
path: ./dist/${{ env.PROJECT_NAME }}
|
|
40
|
+
- name: Deploy to GitHub Pages
|
|
41
|
+
uses: actions/deploy-pages@v1
|
|
@@ -11,32 +11,32 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~18.
|
|
15
|
-
"@angular/common": "~18.
|
|
16
|
-
"@angular/compiler": "~18.
|
|
17
|
-
"@angular/core": "~18.
|
|
18
|
-
"@angular/forms": "~18.
|
|
19
|
-
"@angular/platform-browser": "~18.
|
|
20
|
-
"@angular/platform-browser-dynamic": "~18.
|
|
21
|
-
"@angular/router": "~18.
|
|
14
|
+
"@angular/animations": "~18.2.0",
|
|
15
|
+
"@angular/common": "~18.2.0",
|
|
16
|
+
"@angular/compiler": "~18.2.0",
|
|
17
|
+
"@angular/core": "~18.2.0",
|
|
18
|
+
"@angular/forms": "~18.2.0",
|
|
19
|
+
"@angular/platform-browser": "~18.2.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~18.2.0",
|
|
21
|
+
"@angular/router": "~18.2.0",
|
|
22
22
|
"angular-auth-oidc-client": "~15.0.4",
|
|
23
23
|
"hammerjs": "~2.0.8",
|
|
24
|
-
"igniteui-angular": "~18.
|
|
24
|
+
"igniteui-angular": "~18.2.0-beta.2",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "~2.3.0",
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~18.
|
|
32
|
-
"@angular-eslint/builder": "~18.
|
|
33
|
-
"@angular-eslint/eslint-plugin": "~18.
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "~18.
|
|
35
|
-
"@angular-eslint/schematics": "~18.
|
|
36
|
-
"@angular-eslint/template-parser": "~18.
|
|
37
|
-
"@angular/cli": "~18.
|
|
38
|
-
"@angular/compiler-cli": "~18.
|
|
39
|
-
"@angular/language-service": "~18.
|
|
31
|
+
"@angular-devkit/build-angular": "~18.2.0",
|
|
32
|
+
"@angular-eslint/builder": "~18.2.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~18.2.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~18.2.0",
|
|
35
|
+
"@angular-eslint/schematics": "~18.2.0",
|
|
36
|
+
"@angular-eslint/template-parser": "~18.2.0",
|
|
37
|
+
"@angular/cli": "~18.2.0",
|
|
38
|
+
"@angular/compiler-cli": "~18.2.0",
|
|
39
|
+
"@angular/language-service": "~18.2.0",
|
|
40
40
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
41
|
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.2.1420-beta.0",
|
|
4
4
|
"description": "Templates for Ignite UI for Angular projects and components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Infragistics",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@igniteui/cli-core": "~14.
|
|
15
|
+
"@igniteui/cli-core": "~14.2.0-beta.0",
|
|
16
16
|
"typescript": "~5.5.4"
|
|
17
17
|
}
|
|
18
18
|
}
|