@igniteui/angular-templates 18.2.1423 → 19.0.1430-rc.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/AngularTypeScriptFileUpdate.d.ts +10 -2
- package/AngularTypeScriptFileUpdate.js +44 -4
- package/constants.d.ts +1 -1
- package/constants.js +1 -1
- package/igx-ts/projects/_base/files/__dot__github/workflows/{github.io.yml → github-pages.yml} +5 -2
- package/igx-ts/projects/_base/files/package.json +20 -20
- package/igx-ts/projects/_base/index.js +2 -1
- package/igx-ts/projects/_base_with_home/files/__dot__github/workflows/{github.io.yml → github-pages.yml} +5 -2
- package/igx-ts/projects/side-nav-auth/files/package.json +9 -9
- package/igx-ts-legacy/projects/_base/files/__dot__github/workflows/{github.io.yml → github-pages.yml} +5 -2
- package/igx-ts-legacy/projects/_base/files/angular.json +1 -1
- package/igx-ts-legacy/projects/_base/files/package.json +18 -18
- package/igx-ts-legacy/projects/_base/index.js +2 -1
- package/igx-ts-legacy/projects/_base_with_home/files/__dot__github/workflows/{github.io.yml → github-pages.yml} +5 -2
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +20 -20
- package/package.json +2 -2
- package/types/enumerations/AngularDecoratorMetaTargetType.d.ts +8 -0
- package/types/enumerations/AngularDecoratorMetaTargetType.js +12 -0
- package/types/enumerations/AngularDecoratorName.d.ts +4 -0
- package/types/enumerations/AngularDecoratorName.js +9 -0
- package/types/index.d.ts +3 -1
- package/types/index.js +3 -1
- /package/types/{enumerations/AngularDecoratorMetaTarget.d.ts → AngularDecoratorMetaTarget.d.ts} +0 -0
- /package/types/{enumerations/AngularDecoratorMetaTarget.js → AngularDecoratorMetaTarget.js} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as ts from 'typescript';
|
|
2
2
|
import { KeyValuePair, FormatSettings, PropertyAssignment, TemplateDependency, TypeScriptFileUpdate, RouteEntry } from '@igniteui/cli-core';
|
|
3
|
-
import { AngularRouteLike } from './types';
|
|
3
|
+
import { AngularRouteLike, AngularDecoratorOptions } from './types';
|
|
4
4
|
export declare class AngularTypeScriptFileUpdate extends TypeScriptFileUpdate {
|
|
5
5
|
readonly filePath: string;
|
|
6
6
|
readonly standalone: boolean;
|
|
@@ -35,6 +35,14 @@ export declare class AngularTypeScriptFileUpdate extends TypeScriptFileUpdate {
|
|
|
35
35
|
* @param multiline Whether to format the new entry as multiline.
|
|
36
36
|
*/
|
|
37
37
|
addNgModuleMeta(dep: TemplateDependency, variables?: KeyValuePair<string>, multiline?: boolean): void;
|
|
38
|
+
/**
|
|
39
|
+
* Sorts the elements of an Angular decorator property that is an {@link ts.ArrayLiteralExpression}.
|
|
40
|
+
* @param decoratorName The name of the decorator to look for.
|
|
41
|
+
* @param target The target metadata property to sort.
|
|
42
|
+
*
|
|
43
|
+
* @remarks The {@link target} must be a {@link ts.PropertyAssignment} with an initializer that is an {@link ts.ArrayLiteralExpression}.
|
|
44
|
+
*/
|
|
45
|
+
sortDecoratorPropertyInitializer(decoratorName: string, target: AngularDecoratorOptions): void;
|
|
38
46
|
/**
|
|
39
47
|
* Adds metadata to the arguments provided in `TestBed.configureTestingModule`.
|
|
40
48
|
* @param dep The dependency to add to the testing module's metadata.
|
|
@@ -74,7 +82,7 @@ export declare class AngularTypeScriptFileUpdate extends TypeScriptFileUpdate {
|
|
|
74
82
|
* @param target The target metadata property to update.
|
|
75
83
|
* @param multiline Whether to format the new entry as multiline.
|
|
76
84
|
*/
|
|
77
|
-
private
|
|
85
|
+
private addMetaToNgDecorator;
|
|
78
86
|
/**
|
|
79
87
|
* Updates Angular's metadata related to NgModules, Standalone Components or TestingModules.
|
|
80
88
|
* @param target The name of the target metadata property to update.
|
|
@@ -54,7 +54,7 @@ class AngularTypeScriptFileUpdate extends cli_core_1.TypeScriptFileUpdate {
|
|
|
54
54
|
}
|
|
55
55
|
const structure = this.buildRouteStructure(route, multiline);
|
|
56
56
|
const newRoute = this.factory.createObjectLiteralExpression(structure, multiline);
|
|
57
|
-
this.astTransformer.requestNewMembersInArrayLiteral((0, cli_core_1.variableAsParentCondition)(this.astTransformer, cli_core_1.ROUTES_VARIABLE_NAME), [newRoute],
|
|
57
|
+
this.astTransformer.requestNewMembersInArrayLiteral((0, cli_core_1.variableAsParentCondition)(this.astTransformer, cli_core_1.ROUTES_VARIABLE_NAME), [newRoute], anchorElement, { prepend });
|
|
58
58
|
}
|
|
59
59
|
addChildRoute(parentPath, route, asIdentifier = false, multiline = false) {
|
|
60
60
|
super.addChildRoute(parentPath, route, asIdentifier, multiline);
|
|
@@ -100,6 +100,46 @@ class AngularTypeScriptFileUpdate extends cli_core_1.TypeScriptFileUpdate {
|
|
|
100
100
|
this.addRootToModule(dep, copy);
|
|
101
101
|
this.applyDecoratorMutations(cli_core_1.NG_MODULE_DECORATOR_NAME, copy, multiline);
|
|
102
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* Sorts the elements of an Angular decorator property that is an {@link ts.ArrayLiteralExpression}.
|
|
105
|
+
* @param decoratorName The name of the decorator to look for.
|
|
106
|
+
* @param target The target metadata property to sort.
|
|
107
|
+
*
|
|
108
|
+
* @remarks The {@link target} must be a {@link ts.PropertyAssignment} with an initializer that is an {@link ts.ArrayLiteralExpression}.
|
|
109
|
+
*/
|
|
110
|
+
sortDecoratorPropertyInitializer(decoratorName, target) {
|
|
111
|
+
const visitCondition = (node) => {
|
|
112
|
+
const propertyAssignment = this.astTransformer.findNodeAncestor(node, (node) => ts.isPropertyAssignment(node) &&
|
|
113
|
+
ts.isIdentifier(node.name) &&
|
|
114
|
+
node.name.text.toLowerCase() === target.toLowerCase() &&
|
|
115
|
+
ts.isArrayLiteralExpression(node.initializer));
|
|
116
|
+
if (!propertyAssignment) {
|
|
117
|
+
return false;
|
|
118
|
+
}
|
|
119
|
+
const expectedDecorator = this.checkNgDecorator(decoratorName, node);
|
|
120
|
+
return expectedDecorator;
|
|
121
|
+
};
|
|
122
|
+
const igxMembersPrefix = 'igx';
|
|
123
|
+
this.astTransformer.requestSortInArrayLiteral(visitCondition, (a, b) => {
|
|
124
|
+
// this check is just to type guard to a ts.Identifier
|
|
125
|
+
// in reality, the elements should always be identifiers
|
|
126
|
+
if (!ts.isIdentifier(a) || !ts.isIdentifier(b))
|
|
127
|
+
return -1;
|
|
128
|
+
const aText = a.text.toLowerCase();
|
|
129
|
+
const bText = b.text.toLowerCase();
|
|
130
|
+
if (aText.startsWith(igxMembersPrefix) &&
|
|
131
|
+
!bText.startsWith(igxMembersPrefix)) {
|
|
132
|
+
return 1;
|
|
133
|
+
}
|
|
134
|
+
else if (!aText.startsWith(igxMembersPrefix) &&
|
|
135
|
+
bText.startsWith(igxMembersPrefix)) {
|
|
136
|
+
return -1;
|
|
137
|
+
}
|
|
138
|
+
else {
|
|
139
|
+
return aText.localeCompare(bText);
|
|
140
|
+
}
|
|
141
|
+
});
|
|
142
|
+
}
|
|
103
143
|
/**
|
|
104
144
|
* Adds metadata to the arguments provided in `TestBed.configureTestingModule`.
|
|
105
145
|
* @param dep The dependency to add to the testing module's metadata.
|
|
@@ -272,7 +312,7 @@ class AngularTypeScriptFileUpdate extends cli_core_1.TypeScriptFileUpdate {
|
|
|
272
312
|
applyDecoratorMutations(decoratorName, meta, multiline = false) {
|
|
273
313
|
for (const key of Object.keys(meta)) {
|
|
274
314
|
if (meta[key].length > 0) {
|
|
275
|
-
this.
|
|
315
|
+
this.addMetaToNgDecorator(decoratorName, meta[key], key, multiline);
|
|
276
316
|
}
|
|
277
317
|
}
|
|
278
318
|
}
|
|
@@ -283,7 +323,7 @@ class AngularTypeScriptFileUpdate extends cli_core_1.TypeScriptFileUpdate {
|
|
|
283
323
|
* @param target The target metadata property to update.
|
|
284
324
|
* @param multiline Whether to format the new entry as multiline.
|
|
285
325
|
*/
|
|
286
|
-
|
|
326
|
+
addMetaToNgDecorator(name, meta, target, multiline = false) {
|
|
287
327
|
const identifiers = meta.map(ts.factory.createIdentifier);
|
|
288
328
|
const targetMetaProp = this.findNgDecoratorProperty(name, target);
|
|
289
329
|
this.mutateNgMeta(target, targetMetaProp, identifiers, (node) => this.checkNgDecorator(name, node), multiline);
|
|
@@ -300,7 +340,7 @@ class AngularTypeScriptFileUpdate extends cli_core_1.TypeScriptFileUpdate {
|
|
|
300
340
|
const value = targetMetaProp && !ts.isArrayLiteralExpression(targetMetaProp.initializer)
|
|
301
341
|
? [targetMetaProp.initializer, ...identifiers]
|
|
302
342
|
: identifiers;
|
|
303
|
-
this.astTransformer.requestNewMemberInObjectLiteral(visitorCondition, target, this.factory.createArrayLiteralExpression(value, multiline), multiline);
|
|
343
|
+
this.astTransformer.requestNewMemberInObjectLiteral(visitorCondition, target, this.factory.createArrayLiteralExpression(value, multiline), { multiline });
|
|
304
344
|
}
|
|
305
345
|
/**
|
|
306
346
|
* Checks if a node has an ancestor with a specific decorator.
|
package/constants.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~
|
|
1
|
+
export declare const IGNITEUI_ANGULAR_PACKAGE = "igniteui-angular@~19.0.0-beta.0";
|
package/constants.js
CHANGED
package/igx-ts/projects/_base/files/__dot__github/workflows/{github.io.yml → github-pages.yml}
RENAMED
|
@@ -8,14 +8,17 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
build-and-deploy:
|
|
11
|
-
|
|
12
|
-
if: false
|
|
11
|
+
if: <%=yamlGenerateDeploymentScript%> == true
|
|
13
12
|
runs-on: ubuntu-latest
|
|
14
13
|
|
|
15
14
|
permissions:
|
|
16
15
|
pages: write
|
|
17
16
|
id-token: write
|
|
18
17
|
|
|
18
|
+
environment:
|
|
19
|
+
name: github-pages
|
|
20
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
21
|
+
|
|
19
22
|
strategy:
|
|
20
23
|
matrix:
|
|
21
24
|
node-version: [22.x]
|
|
@@ -11,30 +11,30 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
22
|
-
|
|
23
|
-
"igniteui-angular": "~
|
|
14
|
+
"@angular/animations": "~19.0.0",
|
|
15
|
+
"@angular/common": "~19.0.0",
|
|
16
|
+
"@angular/compiler": "~19.0.0",
|
|
17
|
+
"@angular/core": "~19.0.0",
|
|
18
|
+
"@angular/forms": "~19.0.0",
|
|
19
|
+
"@angular/platform-browser": "~19.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~19.0.0",
|
|
21
|
+
"@angular/router": "~19.0.0",
|
|
22
|
+
"hammerjs": "~2.0.8",
|
|
23
|
+
"igniteui-angular": "~19.0.0-rc.0",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
26
|
"tslib": "~2.3.0",
|
|
27
|
-
"zone.js": "~0.
|
|
27
|
+
"zone.js": "~0.15.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@angular-devkit/build-angular": "~
|
|
31
|
-
"@angular-eslint/builder": "~
|
|
32
|
-
"@angular-eslint/eslint-plugin": "~
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "~
|
|
34
|
-
"@angular-eslint/schematics": "~
|
|
35
|
-
"@angular-eslint/template-parser": "~
|
|
36
|
-
"@angular/cli": "~
|
|
37
|
-
"@angular/compiler-cli": "~
|
|
30
|
+
"@angular-devkit/build-angular": "~19.0.0",
|
|
31
|
+
"@angular-eslint/builder": "~19.0.0-alpha.1",
|
|
32
|
+
"@angular-eslint/eslint-plugin": "~19.0.0-alpha.1",
|
|
33
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0-alpha.1",
|
|
34
|
+
"@angular-eslint/schematics": "~19.0.0-alpha.1",
|
|
35
|
+
"@angular-eslint/template-parser": "~19.0.0-alpha.1",
|
|
36
|
+
"@angular/cli": "~19.0.0",
|
|
37
|
+
"@angular/compiler-cli": "~19.0.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",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"karma-coverage": "~2.2.0",
|
|
47
47
|
"karma-jasmine": "~5.1.0",
|
|
48
48
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
49
|
-
"typescript": "~5.
|
|
49
|
+
"typescript": "~5.6.2"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -100,7 +100,8 @@ $app-palette: palette($primary, $secondary, $surface);
|
|
|
100
100
|
projectTemplate: this.id,
|
|
101
101
|
igxPackage: cli_core_1.NPM_ANGULAR,
|
|
102
102
|
yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
|
|
103
|
-
ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
|
|
103
|
+
ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
|
|
104
|
+
yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
|
|
104
105
|
};
|
|
105
106
|
switch (theme) {
|
|
106
107
|
case "Custom":
|
|
@@ -8,14 +8,17 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
build-and-deploy:
|
|
11
|
-
|
|
12
|
-
if: false
|
|
11
|
+
if: <%=yamlGenerateDeploymentScript%> == true
|
|
13
12
|
runs-on: ubuntu-latest
|
|
14
13
|
|
|
15
14
|
permissions:
|
|
16
15
|
pages: write
|
|
17
16
|
id-token: write
|
|
18
17
|
|
|
18
|
+
environment:
|
|
19
|
+
name: github-pages
|
|
20
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
21
|
+
|
|
19
22
|
strategy:
|
|
20
23
|
matrix:
|
|
21
24
|
node-version: [22.x]
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~
|
|
32
|
-
"@angular-eslint/builder": "~
|
|
33
|
-
"@angular-eslint/eslint-plugin": "~
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "~
|
|
35
|
-
"@angular-eslint/schematics": "~
|
|
36
|
-
"@angular-eslint/template-parser": "~
|
|
37
|
-
"@angular/cli": "~
|
|
38
|
-
"@angular/compiler-cli": "~
|
|
39
|
-
"@angular/language-service": "~
|
|
31
|
+
"@angular-devkit/build-angular": "~19.0.0",
|
|
32
|
+
"@angular-eslint/builder": "~19.0.0-alpha.1",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~19.0.0-alpha.1",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0-alpha.1",
|
|
35
|
+
"@angular-eslint/schematics": "~19.0.0-alpha.1",
|
|
36
|
+
"@angular-eslint/template-parser": "~19.0.0-alpha.1",
|
|
37
|
+
"@angular/cli": "~19.0.0",
|
|
38
|
+
"@angular/compiler-cli": "~19.0.0",
|
|
39
|
+
"@angular/language-service": "~19.0.0",
|
|
40
40
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
41
|
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
|
@@ -8,14 +8,17 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
build-and-deploy:
|
|
11
|
-
|
|
12
|
-
if: false
|
|
11
|
+
if: <%=yamlGenerateDeploymentScript%> == true
|
|
13
12
|
runs-on: ubuntu-latest
|
|
14
13
|
|
|
15
14
|
permissions:
|
|
16
15
|
pages: write
|
|
17
16
|
id-token: write
|
|
18
17
|
|
|
18
|
+
environment:
|
|
19
|
+
name: github-pages
|
|
20
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
21
|
+
|
|
19
22
|
strategy:
|
|
20
23
|
matrix:
|
|
21
24
|
node-version: [22.x]
|
|
@@ -11,30 +11,30 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~19.0.0",
|
|
15
|
+
"@angular/common": "~19.0.0",
|
|
16
|
+
"@angular/compiler": "~19.0.0",
|
|
17
|
+
"@angular/core": "~19.0.0",
|
|
18
|
+
"@angular/forms": "~19.0.0",
|
|
19
|
+
"@angular/platform-browser": "~19.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~19.0.0",
|
|
21
|
+
"@angular/router": "~19.0.0",
|
|
22
22
|
"hammerjs": "^2.0.8",
|
|
23
|
-
"igniteui-angular": "~
|
|
23
|
+
"igniteui-angular": "~19.0.0-rc.0",
|
|
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": "~
|
|
31
|
-
"@angular-eslint/builder": "~
|
|
32
|
-
"@angular-eslint/eslint-plugin": "~
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "~
|
|
34
|
-
"@angular-eslint/schematics": "~
|
|
35
|
-
"@angular-eslint/template-parser": "~
|
|
36
|
-
"@angular/cli": "~
|
|
37
|
-
"@angular/compiler-cli": "~
|
|
30
|
+
"@angular-devkit/build-angular": "~19.0.0",
|
|
31
|
+
"@angular-eslint/builder": "~19.0.0-alpha.1",
|
|
32
|
+
"@angular-eslint/eslint-plugin": "~19.0.0-alpha.1",
|
|
33
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0-alpha.1",
|
|
34
|
+
"@angular-eslint/schematics": "~19.0.0-alpha.1",
|
|
35
|
+
"@angular-eslint/template-parser": "~19.0.0-alpha.1",
|
|
36
|
+
"@angular/cli": "~19.0.0",
|
|
37
|
+
"@angular/compiler-cli": "~19.0.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",
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"karma-coverage": "~2.2.0",
|
|
47
47
|
"karma-jasmine": "~5.1.0",
|
|
48
48
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
49
|
-
"typescript": "~5.
|
|
49
|
+
"typescript": "~5.6.2"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -99,7 +99,8 @@ $app-palette: palette($primary, $secondary, $surface);
|
|
|
99
99
|
path: name,
|
|
100
100
|
projectTemplate: this.id,
|
|
101
101
|
yamlDefaultBranch: "<%=yaml-default-branch%>", // the placeholder will be evaluated by CodeGen
|
|
102
|
-
ApplicationTitle: "<%=ApplicationTitle%>" // the placeholder will be evaluated by CodeGen
|
|
102
|
+
ApplicationTitle: "<%=ApplicationTitle%>", // the placeholder will be evaluated by CodeGen
|
|
103
|
+
yamlGenerateDeploymentScript: "<%=yaml-generate-deployment-script%>" // the placeholder will be evaluated by CodeGen
|
|
103
104
|
};
|
|
104
105
|
switch (theme) {
|
|
105
106
|
case "Custom":
|
|
@@ -8,14 +8,17 @@ on:
|
|
|
8
8
|
|
|
9
9
|
jobs:
|
|
10
10
|
build-and-deploy:
|
|
11
|
-
|
|
12
|
-
if: false
|
|
11
|
+
if: <%=yamlGenerateDeploymentScript%> == true
|
|
13
12
|
runs-on: ubuntu-latest
|
|
14
13
|
|
|
15
14
|
permissions:
|
|
16
15
|
pages: write
|
|
17
16
|
id-token: write
|
|
18
17
|
|
|
18
|
+
environment:
|
|
19
|
+
name: github-pages
|
|
20
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
21
|
+
|
|
19
22
|
strategy:
|
|
20
23
|
matrix:
|
|
21
24
|
node-version: [22.x]
|
|
@@ -11,32 +11,32 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "~
|
|
15
|
-
"@angular/common": "~
|
|
16
|
-
"@angular/compiler": "~
|
|
17
|
-
"@angular/core": "~
|
|
18
|
-
"@angular/forms": "~
|
|
19
|
-
"@angular/platform-browser": "~
|
|
20
|
-
"@angular/platform-browser-dynamic": "~
|
|
21
|
-
"@angular/router": "~
|
|
14
|
+
"@angular/animations": "~19.0.0",
|
|
15
|
+
"@angular/common": "~19.0.0",
|
|
16
|
+
"@angular/compiler": "~19.0.0",
|
|
17
|
+
"@angular/core": "~19.0.0",
|
|
18
|
+
"@angular/forms": "~19.0.0",
|
|
19
|
+
"@angular/platform-browser": "~19.0.0",
|
|
20
|
+
"@angular/platform-browser-dynamic": "~19.0.0",
|
|
21
|
+
"@angular/router": "~19.0.0",
|
|
22
22
|
"angular-auth-oidc-client": "~15.0.4",
|
|
23
23
|
"hammerjs": "~2.0.8",
|
|
24
|
-
"igniteui-angular": "~
|
|
24
|
+
"igniteui-angular": "~19.0.0-rc.0",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
27
|
"tslib": "~2.3.0",
|
|
28
|
-
"zone.js": "~0.
|
|
28
|
+
"zone.js": "~0.15.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@angular-devkit/build-angular": "~
|
|
32
|
-
"@angular-eslint/builder": "~
|
|
33
|
-
"@angular-eslint/eslint-plugin": "~
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "~
|
|
35
|
-
"@angular-eslint/schematics": "~
|
|
36
|
-
"@angular-eslint/template-parser": "~
|
|
37
|
-
"@angular/cli": "~
|
|
38
|
-
"@angular/compiler-cli": "~
|
|
39
|
-
"@angular/language-service": "~
|
|
31
|
+
"@angular-devkit/build-angular": "~19.0.0",
|
|
32
|
+
"@angular-eslint/builder": "~19.0.0-alpha.1",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~19.0.0-alpha.1",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0-alpha.1",
|
|
35
|
+
"@angular-eslint/schematics": "~19.0.0-alpha.1",
|
|
36
|
+
"@angular-eslint/template-parser": "~19.0.0-alpha.1",
|
|
37
|
+
"@angular/cli": "~19.0.0",
|
|
38
|
+
"@angular/compiler-cli": "~19.0.0",
|
|
39
|
+
"@angular/language-service": "~19.0.0",
|
|
40
40
|
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
41
|
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
"karma-coverage": "~2.2.0",
|
|
52
52
|
"karma-jasmine": "~5.1.0",
|
|
53
53
|
"karma-jasmine-html-reporter": "~2.1.0",
|
|
54
|
-
"typescript": "~5.
|
|
54
|
+
"typescript": "~5.6.2"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.1430-rc.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.3.0-rc.0",
|
|
16
16
|
"typescript": "~5.5.4"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AngularDecoratorOptions = void 0;
|
|
4
|
+
/** Represents the names of the different members an Angular decorator can have. */
|
|
5
|
+
var AngularDecoratorOptions;
|
|
6
|
+
(function (AngularDecoratorOptions) {
|
|
7
|
+
AngularDecoratorOptions["Imports"] = "imports";
|
|
8
|
+
AngularDecoratorOptions["Declarations"] = "declarations";
|
|
9
|
+
AngularDecoratorOptions["Providers"] = "providers";
|
|
10
|
+
AngularDecoratorOptions["Exports"] = "exports";
|
|
11
|
+
AngularDecoratorOptions["Schemas"] = "schemas";
|
|
12
|
+
})(AngularDecoratorOptions || (exports.AngularDecoratorOptions = AngularDecoratorOptions = {}));
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AngularDecoratorName = void 0;
|
|
4
|
+
/* Represents the names of the different decorators in Angular. */
|
|
5
|
+
var AngularDecoratorName;
|
|
6
|
+
(function (AngularDecoratorName) {
|
|
7
|
+
AngularDecoratorName["Component"] = "Component";
|
|
8
|
+
AngularDecoratorName["NgModule"] = "NgModule";
|
|
9
|
+
})(AngularDecoratorName || (exports.AngularDecoratorName = AngularDecoratorName = {}));
|
package/types/index.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export * from "./
|
|
1
|
+
export * from "./AngularDecoratorMetaTarget";
|
|
2
2
|
export * from "./enumerations/AngularRouteTarget";
|
|
3
|
+
export * from "./enumerations/AngularDecoratorName";
|
|
4
|
+
export * from "./enumerations/AngularDecoratorMetaTargetType";
|
|
3
5
|
export * from "./AngularRouteEntry";
|
|
4
6
|
export * from "./AngularRouteLike";
|
package/types/index.js
CHANGED
|
@@ -14,7 +14,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./
|
|
17
|
+
__exportStar(require("./AngularDecoratorMetaTarget"), exports);
|
|
18
18
|
__exportStar(require("./enumerations/AngularRouteTarget"), exports);
|
|
19
|
+
__exportStar(require("./enumerations/AngularDecoratorName"), exports);
|
|
20
|
+
__exportStar(require("./enumerations/AngularDecoratorMetaTargetType"), exports);
|
|
19
21
|
__exportStar(require("./AngularRouteEntry"), exports);
|
|
20
22
|
__exportStar(require("./AngularRouteLike"), exports);
|
/package/types/{enumerations/AngularDecoratorMetaTarget.d.ts → AngularDecoratorMetaTarget.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|