Skip to content

Commit e890746

Browse files
authored
Merge branch 'master' into rkaraivanov/remove-direction-service
2 parents c37dc28 + 98a789a commit e890746

72 files changed

Lines changed: 841 additions & 946 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/npm-publish.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 22
17+
node-version: '22.22.1' # Specifically avoid 22.22.2 due to a regression with npm latest
1818
cache: 'npm'
1919
registry-url: 'https://registry.npmjs.org'
2020

@@ -87,3 +87,25 @@ jobs:
8787
- name: Publish igniteui-angular-extras
8888
run: npm publish --tag ${NPM_TAG}
8989
working-directory: dist/igniteui-angular-extras
90+
91+
dispatch-api-update:
92+
needs: build
93+
runs-on: ubuntu-latest
94+
steps:
95+
- name: Get app token
96+
id: app-token
97+
uses: actions/create-github-app-token@v2
98+
with:
99+
app-id: ${{ secrets.IGNITEUI_GITHUB_APP_ID }}
100+
private-key: ${{ secrets.IGNITEUI_GITHUB_APP_PRIVATE_KEY }}
101+
owner: IgniteUI
102+
- name: Trigger API update workflow
103+
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697
104+
with:
105+
token: ${{ steps.app-token.outputs.token }}
106+
repository: IgniteUI/igniteui-angular-api-i18n
107+
event-type: api-update
108+
client-payload: |
109+
{
110+
"release_tag": "${{ github.event.release.tag_name }}"
111+
}

angular.json

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"index": "src/index.html",
2424
"polyfills": [
25-
"zone.js"
25+
"zone.js"
2626
],
2727
"tsConfig": "src/tsconfig.app.json",
2828
"assets": [
@@ -31,7 +31,12 @@
3131
"src/web.config"
3232
],
3333
"styles": [
34-
"src/styles/styles.scss"
34+
"src/styles/styles.scss",
35+
{
36+
"input": "src/styles/grid-cell-merging-alternate-theme.scss",
37+
"bundleName": "grid-cell-merging-alternate-theme",
38+
"inject": false
39+
}
3540
],
3641
"scripts": [],
3742
"extractLicenses": false,
@@ -346,11 +351,19 @@
346351
"projects/igniteui-angular-elements/src/styles.scss"
347352
],
348353
"scripts": [
349-
{ "input": "./node_modules/lit-html/lit-html.js", "inject": false },
350-
{ "input": "./node_modules/lit-html/development/directive.js", "inject": false }
354+
{
355+
"input": "./node_modules/lit-html/lit-html.js",
356+
"inject": false
357+
},
358+
{
359+
"input": "./node_modules/lit-html/development/directive.js",
360+
"inject": false
361+
}
351362
],
352363
"stylePreprocessorOptions": {
353-
"includePaths": ["node_modules"]
364+
"includePaths": [
365+
"node_modules"
366+
]
354367
},
355368
"browser": "projects/igniteui-angular-elements/src/main.ts"
356369
},
@@ -382,7 +395,10 @@
382395
],
383396
"outputHashing": "none",
384397
"optimization": true,
385-
"externalDependencies": ["lit", "igniteui-i18n-core"]
398+
"externalDependencies": [
399+
"lit",
400+
"igniteui-i18n-core"
401+
]
386402
},
387403
"development": {
388404
"optimization": false,
@@ -391,8 +407,8 @@
391407
"namedChunks": true
392408
},
393409
"dev-app": {
394-
"browser": "projects/igniteui-angular-elements/src/main.app.ts",
395-
"tsConfig": "projects/igniteui-angular-elements/tsconfig.app.json"
410+
"browser": "projects/igniteui-angular-elements/src/main.app.ts",
411+
"tsConfig": "projects/igniteui-angular-elements/tsconfig.app.json"
396412
}
397413
},
398414
"defaultConfiguration": "production"
@@ -419,7 +435,7 @@
419435
"builder": "@angular/build:karma",
420436
"options": {
421437
"main": "projects/igniteui-angular-elements/src/test.ts",
422-
"polyfills": [
438+
"polyfills": [
423439
"projects/igniteui-angular-elements/src/polyfills.ts"
424440
],
425441
"tsConfig": "projects/igniteui-angular-elements/tsconfig.spec.json",
@@ -433,7 +449,9 @@
433449
"projects/igniteui-angular-elements/src/styles.scss"
434450
],
435451
"stylePreprocessorOptions": {
436-
"includePaths": ["node_modules"]
452+
"includePaths": [
453+
"node_modules"
454+
]
437455
},
438456
"scripts": []
439457
}
@@ -572,7 +590,9 @@
572590
"projects/igniteui-angular-performance/src/styles.scss"
573591
],
574592
"stylePreprocessorOptions": {
575-
"includePaths": ["node_modules"]
593+
"includePaths": [
594+
"node_modules"
595+
]
576596
}
577597
},
578598
"configurations": {

0 commit comments

Comments
 (0)