@angular/core 16.1.6 → 16.1.8
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/esm2022/rxjs-interop/src/to_signal.mjs +1 -1
- package/esm2022/src/di/create_injector.mjs +1 -3
- package/esm2022/src/di/interface/provider.mjs +1 -1
- package/esm2022/src/metadata/di.mjs +5 -5
- package/esm2022/src/metadata/directives.mjs +1 -1
- package/esm2022/src/render3/component_ref.mjs +1 -8
- package/esm2022/src/util/coercion.mjs +11 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +20 -18
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +6 -14
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +30 -16
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +17 -15
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
- package/schematics/migrations/remove-module-id/bundle.js +14 -14
- package/schematics/ng-generate/standalone-migration/bundle.js +358 -357
- package/schematics/ng-generate/standalone-migration/bundle.js.map +2 -2
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.1.
|
|
2
|
+
* @license Angular v16.1.8
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -617,6 +617,11 @@ export declare interface AttributeDecorator {
|
|
|
617
617
|
/**
|
|
618
618
|
* Transforms a value (typically a string) to a boolean.
|
|
619
619
|
* Intended to be used as a transform function of an input.
|
|
620
|
+
*
|
|
621
|
+
* @usageNotes
|
|
622
|
+
* ```typescript
|
|
623
|
+
* @Input({ transform: booleanAttribute }) status!: boolean;
|
|
624
|
+
* ```
|
|
620
625
|
* @param value Value to be transformed.
|
|
621
626
|
*
|
|
622
627
|
* @publicApi
|
|
@@ -1685,7 +1690,7 @@ export declare const ContentChildren: ContentChildrenDecorator;
|
|
|
1685
1690
|
/**
|
|
1686
1691
|
* Type of the ContentChildren decorator / constructor function.
|
|
1687
1692
|
*
|
|
1688
|
-
* @see {@link ContentChildren}
|
|
1693
|
+
* @see {@link ContentChildren}
|
|
1689
1694
|
* @publicApi
|
|
1690
1695
|
*/
|
|
1691
1696
|
export declare interface ContentChildrenDecorator {
|
|
@@ -4690,20 +4695,26 @@ export declare interface InputDecorator {
|
|
|
4690
4695
|
* one of which is given a special binding name.
|
|
4691
4696
|
*
|
|
4692
4697
|
* ```typescript
|
|
4698
|
+
* import { Component, Input, numberAttribute, booleanAttribute } from '@angular/core';
|
|
4693
4699
|
* @Component({
|
|
4694
4700
|
* selector: 'bank-account',
|
|
4695
4701
|
* template: `
|
|
4696
4702
|
* Bank Name: {{bankName}}
|
|
4697
4703
|
* Account Id: {{id}}
|
|
4704
|
+
* Account Status: {{status ? 'Active' : 'InActive'}}
|
|
4698
4705
|
* `
|
|
4699
4706
|
* })
|
|
4700
4707
|
* class BankAccount {
|
|
4701
4708
|
* // This property is bound using its original name.
|
|
4702
|
-
*
|
|
4703
|
-
* // this property
|
|
4709
|
+
* // Defining argument required as true inside the Input Decorator
|
|
4710
|
+
* // makes this property deceleration as mandatory
|
|
4711
|
+
* @Input({ required: true }) bankName!: string;
|
|
4712
|
+
* // Argument alias makes this property value is bound to a different property name
|
|
4704
4713
|
* // when this component is instantiated in a template.
|
|
4705
|
-
*
|
|
4706
|
-
*
|
|
4714
|
+
* // Argument transform convert the input value from string to number
|
|
4715
|
+
* @Input({ alias:'account-id', transform: numberAttribute }) id: number;
|
|
4716
|
+
* // Argument transform the input value from string to boolean
|
|
4717
|
+
* @Input({ transform: booleanAttribute }) status: boolean;
|
|
4707
4718
|
* // this property is not bound, and is not automatically updated by Angular
|
|
4708
4719
|
* normalizedBankName: string;
|
|
4709
4720
|
* }
|
|
@@ -4711,7 +4722,7 @@ export declare interface InputDecorator {
|
|
|
4711
4722
|
* @Component({
|
|
4712
4723
|
* selector: 'app',
|
|
4713
4724
|
* template: `
|
|
4714
|
-
* <bank-account bankName="RBC" account-id="4747"></bank-account>
|
|
4725
|
+
* <bank-account bankName="RBC" account-id="4747" status="true"></bank-account>
|
|
4715
4726
|
* `
|
|
4716
4727
|
* })
|
|
4717
4728
|
* class App {}
|
|
@@ -6151,6 +6162,11 @@ declare const NUM_ROOT_NODES = "r";
|
|
|
6151
6162
|
* @param value Value to be transformed.
|
|
6152
6163
|
* @param fallbackValue Value to use if the provided value can't be parsed as a number.
|
|
6153
6164
|
*
|
|
6165
|
+
* @usageNotes
|
|
6166
|
+
* ```typescript
|
|
6167
|
+
* @Input({ transform: numberAttribute }) id!: number;
|
|
6168
|
+
* ```
|
|
6169
|
+
*
|
|
6154
6170
|
* @publicApi
|
|
6155
6171
|
*/
|
|
6156
6172
|
export declare function numberAttribute(value: unknown, fallbackValue?: number): number;
|
|
@@ -6694,10 +6710,10 @@ export declare interface Query {
|
|
|
6694
6710
|
/**
|
|
6695
6711
|
* Base class for query metadata.
|
|
6696
6712
|
*
|
|
6697
|
-
* @see {@link ContentChildren}
|
|
6698
|
-
* @see {@link ContentChild}
|
|
6699
|
-
* @see {@link ViewChildren}
|
|
6700
|
-
* @see {@link ViewChild}
|
|
6713
|
+
* @see {@link ContentChildren}
|
|
6714
|
+
* @see {@link ContentChild}
|
|
6715
|
+
* @see {@link ViewChildren}
|
|
6716
|
+
* @see {@link ViewChild}
|
|
6701
6717
|
*
|
|
6702
6718
|
* @publicApi
|
|
6703
6719
|
*/
|
|
@@ -8046,7 +8062,7 @@ export declare interface StaticClassSansProvider {
|
|
|
8046
8062
|
* Describes how an `Injector` should be configured as static (that is, without reflection).
|
|
8047
8063
|
* A static provider provides tokens to an injector for various types of dependencies.
|
|
8048
8064
|
*
|
|
8049
|
-
* @see {@link Injector.create()}
|
|
8065
|
+
* @see {@link Injector.create()}
|
|
8050
8066
|
* @see ["Dependency Injection Guide"](guide/dependency-injection-providers).
|
|
8051
8067
|
*
|
|
8052
8068
|
* @publicApi
|
|
@@ -9776,7 +9792,7 @@ export declare const ViewChild: ViewChildDecorator;
|
|
|
9776
9792
|
/**
|
|
9777
9793
|
* Type of the ViewChild decorator / constructor function.
|
|
9778
9794
|
*
|
|
9779
|
-
* @see {@link ViewChild}
|
|
9795
|
+
* @see {@link ViewChild}
|
|
9780
9796
|
* @publicApi
|
|
9781
9797
|
*/
|
|
9782
9798
|
export declare interface ViewChildDecorator {
|
|
@@ -9853,7 +9869,7 @@ export declare const ViewChildren: ViewChildrenDecorator;
|
|
|
9853
9869
|
/**
|
|
9854
9870
|
* Type of the ViewChildren decorator / constructor function.
|
|
9855
9871
|
*
|
|
9856
|
-
* @see {@link ViewChildren}
|
|
9872
|
+
* @see {@link ViewChildren}
|
|
9857
9873
|
*
|
|
9858
9874
|
* @publicApi
|
|
9859
9875
|
*/
|
|
@@ -10601,8 +10617,6 @@ export declare function ɵconvertToBitFlags(flags: InjectOptions | InjectFlags |
|
|
|
10601
10617
|
|
|
10602
10618
|
/**
|
|
10603
10619
|
* Create a new `Injector` which is configured using a `defType` of `InjectorType<any>`s.
|
|
10604
|
-
*
|
|
10605
|
-
* @publicApi
|
|
10606
10620
|
*/
|
|
10607
10621
|
export declare function ɵcreateInjector(defType: any, parent?: Injector | null, additionalProviders?: StaticProvider[] | null, name?: string): Injector;
|
|
10608
10622
|
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.1.
|
|
2
|
+
* @license Angular v16.1.8
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -64,8 +64,8 @@ export declare interface ToObservableOptions {
|
|
|
64
64
|
* By default, the subscription will be automatically cleaned up when the current [injection
|
|
65
65
|
* context](guide/dependency-injection-context) is destroyed. For example, when `toObservable` is
|
|
66
66
|
* called during the construction of a component, the subscription will be cleaned up when the
|
|
67
|
-
* component is destroyed. If an injection context is not
|
|
68
|
-
* passed instead.
|
|
67
|
+
* component is destroyed. If an [injection context](/guide/dependency-injection-context) is not
|
|
68
|
+
* available, an explicit `Injector` can be passed instead.
|
|
69
69
|
*
|
|
70
70
|
* If the subscription should persist until the `Observable` itself completes, the `manualCleanup`
|
|
71
71
|
* option can be specified instead, which disables the automatic subscription teardown. No injection
|
|
@@ -85,10 +85,11 @@ export declare function toSignal<T>(source: Observable<T> | Subscribable<T>): Si
|
|
|
85
85
|
* `initialValue`, or `undefined` if no `initialValue` is provided. If the `Observable` is
|
|
86
86
|
* guaranteed to emit synchronously, then the `requireSync` option can be passed instead.
|
|
87
87
|
*
|
|
88
|
-
* By default, the subscription will be automatically cleaned up when the current injection
|
|
89
|
-
* is destroyed. For example, when `toObservable` is
|
|
90
|
-
* the subscription will be cleaned up when the
|
|
91
|
-
* not available, an explicit `Injector` can be
|
|
88
|
+
* By default, the subscription will be automatically cleaned up when the current [injection
|
|
89
|
+
* context](/guide/dependency-injection-context) is destroyed. For example, when `toObservable` is
|
|
90
|
+
* called during the construction of a component, the subscription will be cleaned up when the
|
|
91
|
+
* component is destroyed. If an injection context is not available, an explicit `Injector` can be
|
|
92
|
+
* passed instead.
|
|
92
93
|
*
|
|
93
94
|
* If the subscription should persist until the `Observable` itself completes, the `manualCleanup`
|
|
94
95
|
* option can be specified instead, which disables the automatic subscription teardown. No injection
|
|
@@ -115,8 +116,8 @@ export declare function toSignal<T>(source: Observable<T> | Subscribable<T>, opt
|
|
|
115
116
|
* By default, the subscription will be automatically cleaned up when the current [injection
|
|
116
117
|
* context](guide/dependency-injection-context) is destroyed. For example, when `toObservable` is
|
|
117
118
|
* called during the construction of a component, the subscription will be cleaned up when the
|
|
118
|
-
* component is destroyed. If an injection context is not
|
|
119
|
-
* passed instead.
|
|
119
|
+
* component is destroyed. If an [injection context](/guide/dependency-injection-context) is not
|
|
120
|
+
* available, an explicit `Injector` can be passed instead.
|
|
120
121
|
*
|
|
121
122
|
* If the subscription should persist until the `Observable` itself completes, the `manualCleanup`
|
|
122
123
|
* option can be specified instead, which disables the automatic subscription teardown. No injection
|
|
@@ -141,10 +142,11 @@ export declare function toSignal<T, U extends T | null | undefined>(source: Obse
|
|
|
141
142
|
* immediately upon subscription. No `initialValue` is needed in this case, and the returned signal
|
|
142
143
|
* does not include an `undefined` type.
|
|
143
144
|
*
|
|
144
|
-
* By default, the subscription will be automatically cleaned up when the current injection
|
|
145
|
-
* is destroyed. For example, when `toObservable` is
|
|
146
|
-
* the subscription will be cleaned up when the
|
|
147
|
-
* not available, an explicit `Injector` can be
|
|
145
|
+
* By default, the subscription will be automatically cleaned up when the current [injection
|
|
146
|
+
* context](/guide/dependency-injection-context) is destroyed. For example, when `toObservable` is
|
|
147
|
+
* called during the construction of a component, the subscription will be cleaned up when the
|
|
148
|
+
* component is destroyed. If an injection context is not available, an explicit `Injector` can be
|
|
149
|
+
* passed instead.
|
|
148
150
|
*
|
|
149
151
|
* If the subscription should persist until the `Observable` itself completes, the `manualCleanup`
|
|
150
152
|
* option can be specified instead, which disables the automatic subscription teardown. No injection
|
|
@@ -180,8 +182,8 @@ export declare interface ToSignalOptions<T> {
|
|
|
180
182
|
/**
|
|
181
183
|
* `Injector` which will provide the `DestroyRef` used to clean up the Observable subscription.
|
|
182
184
|
*
|
|
183
|
-
* If this is not provided, a `DestroyRef` will be retrieved from the current injection
|
|
184
|
-
* unless manual cleanup is requested.
|
|
185
|
+
* If this is not provided, a `DestroyRef` will be retrieved from the current [injection
|
|
186
|
+
* context](/guide/dependency-injection-context), unless manual cleanup is requested.
|
|
185
187
|
*/
|
|
186
188
|
injector?: Injector;
|
|
187
189
|
/**
|
|
@@ -60,7 +60,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
60
60
|
});
|
|
61
61
|
};
|
|
62
62
|
|
|
63
|
-
// bazel-out/
|
|
63
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/guard-and-resolve-interfaces/index.mjs
|
|
64
64
|
var guard_and_resolve_interfaces_exports = {};
|
|
65
65
|
__export(guard_and_resolve_interfaces_exports, {
|
|
66
66
|
default: () => guard_and_resolve_interfaces_default
|
|
@@ -69,7 +69,7 @@ module.exports = __toCommonJS(guard_and_resolve_interfaces_exports);
|
|
|
69
69
|
var import_schematics = require("@angular-devkit/schematics");
|
|
70
70
|
var import_path3 = require("path");
|
|
71
71
|
|
|
72
|
-
// bazel-out/
|
|
72
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
73
73
|
var import_core = require("@angular-devkit/core");
|
|
74
74
|
function getProjectTsConfigPaths(tree) {
|
|
75
75
|
return __async(this, null, function* () {
|
|
@@ -149,11 +149,11 @@ function getWorkspace(tree) {
|
|
|
149
149
|
});
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
// bazel-out/
|
|
152
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
153
153
|
var import_path = require("path");
|
|
154
154
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
155
155
|
|
|
156
|
-
// bazel-out/
|
|
156
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
157
157
|
var path = __toESM(require("path"), 1);
|
|
158
158
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
159
159
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -170,7 +170,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
170
170
|
return import_typescript.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
// bazel-out/
|
|
173
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
174
174
|
function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
|
|
175
175
|
const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
|
|
176
176
|
return import_typescript2.default.createProgram(rootNames, options, host);
|
|
@@ -203,13 +203,13 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
203
203
|
return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
// bazel-out/
|
|
206
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/guard-and-resolve-interfaces/util.mjs
|
|
207
207
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
208
208
|
|
|
209
|
-
// bazel-out/
|
|
209
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
210
210
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
211
211
|
|
|
212
|
-
// bazel-out/
|
|
212
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/import_manager.mjs
|
|
213
213
|
var import_path2 = require("path");
|
|
214
214
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
215
215
|
var ImportManager = class {
|
|
@@ -393,7 +393,7 @@ ${text}`;
|
|
|
393
393
|
}
|
|
394
394
|
};
|
|
395
395
|
|
|
396
|
-
// bazel-out/
|
|
396
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/change_tracker.mjs
|
|
397
397
|
var ChangeTracker = class {
|
|
398
398
|
constructor(_printer, _importRemapper) {
|
|
399
399
|
__publicField(this, "_printer");
|
|
@@ -449,7 +449,7 @@ function normalizePath(path2) {
|
|
|
449
449
|
return path2.replace(/\\/g, "/");
|
|
450
450
|
}
|
|
451
451
|
|
|
452
|
-
// bazel-out/
|
|
452
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
453
453
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
454
454
|
function getImportOfIdentifier(typeChecker, node) {
|
|
455
455
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -521,7 +521,7 @@ function findImportSpecifier(nodes, specifierName) {
|
|
|
521
521
|
});
|
|
522
522
|
}
|
|
523
523
|
|
|
524
|
-
// bazel-out/
|
|
524
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/nodes.mjs
|
|
525
525
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
526
526
|
function closestNode(node, predicate) {
|
|
527
527
|
let current = node.parent;
|
|
@@ -534,7 +534,7 @@ function closestNode(node, predicate) {
|
|
|
534
534
|
return null;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
-
// bazel-out/
|
|
537
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/guard-and-resolve-interfaces/util.mjs
|
|
538
538
|
var deprecatedInterfaces = /* @__PURE__ */ new Set(["CanLoad", "CanMatch", "CanActivate", "CanDeactivate", "CanActivateChild", "Resolve"]);
|
|
539
539
|
var routerModule = "@angular/router";
|
|
540
540
|
function migrateFile(sourceFile, typeChecker, rewriteFn) {
|
|
@@ -647,7 +647,7 @@ function visitTypeReference(typeReference, typeChecker, changeTracker, sourceFil
|
|
|
647
647
|
import_typescript7.default.forEachChild(typeReference, visitTypeReferenceChildren);
|
|
648
648
|
}
|
|
649
649
|
|
|
650
|
-
// bazel-out/
|
|
650
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/guard-and-resolve-interfaces/index.mjs
|
|
651
651
|
function guard_and_resolve_interfaces_default() {
|
|
652
652
|
return (tree) => __async(this, null, function* () {
|
|
653
653
|
const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);
|
|
@@ -56,7 +56,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
56
56
|
});
|
|
57
57
|
};
|
|
58
58
|
|
|
59
|
-
// bazel-out/
|
|
59
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/remove-module-id/index.mjs
|
|
60
60
|
var remove_module_id_exports = {};
|
|
61
61
|
__export(remove_module_id_exports, {
|
|
62
62
|
default: () => remove_module_id_default
|
|
@@ -66,13 +66,13 @@ var import_schematics = require("@angular-devkit/schematics");
|
|
|
66
66
|
var import_path2 = require("path");
|
|
67
67
|
var import_typescript8 = __toESM(require("typescript"), 1);
|
|
68
68
|
|
|
69
|
-
// bazel-out/
|
|
69
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/extract_metadata.mjs
|
|
70
70
|
var import_typescript4 = __toESM(require("typescript"), 1);
|
|
71
71
|
|
|
72
|
-
// bazel-out/
|
|
72
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
73
73
|
var import_typescript2 = __toESM(require("typescript"), 1);
|
|
74
74
|
|
|
75
|
-
// bazel-out/
|
|
75
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/imports.mjs
|
|
76
76
|
var import_typescript = __toESM(require("typescript"), 1);
|
|
77
77
|
function getImportOfIdentifier(typeChecker, node) {
|
|
78
78
|
const symbol = typeChecker.getSymbolAtLocation(node);
|
|
@@ -94,7 +94,7 @@ function getImportOfIdentifier(typeChecker, node) {
|
|
|
94
94
|
};
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
// bazel-out/
|
|
97
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/decorators.mjs
|
|
98
98
|
function getCallDecoratorImport(typeChecker, decorator) {
|
|
99
99
|
if (!import_typescript2.default.isCallExpression(decorator.expression) || !import_typescript2.default.isIdentifier(decorator.expression.expression)) {
|
|
100
100
|
return null;
|
|
@@ -103,7 +103,7 @@ function getCallDecoratorImport(typeChecker, decorator) {
|
|
|
103
103
|
return getImportOfIdentifier(typeChecker, identifier);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
// bazel-out/
|
|
106
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/ng_decorators.mjs
|
|
107
107
|
function getAngularDecorators(typeChecker, decorators) {
|
|
108
108
|
return decorators.map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })).filter(({ importData }) => importData && importData.importModule.startsWith("@angular/")).map(({ node, importData }) => ({
|
|
109
109
|
node,
|
|
@@ -113,7 +113,7 @@ function getAngularDecorators(typeChecker, decorators) {
|
|
|
113
113
|
}));
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
// bazel-out/
|
|
116
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/functions.mjs
|
|
117
117
|
var import_typescript3 = __toESM(require("typescript"), 1);
|
|
118
118
|
function unwrapExpression(node) {
|
|
119
119
|
if (import_typescript3.default.isParenthesizedExpression(node) || import_typescript3.default.isAsExpression(node)) {
|
|
@@ -123,7 +123,7 @@ function unwrapExpression(node) {
|
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
// bazel-out/
|
|
126
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/extract_metadata.mjs
|
|
127
127
|
function extractAngularClassMetadata(typeChecker, node) {
|
|
128
128
|
const decorators = import_typescript4.default.getDecorators(node);
|
|
129
129
|
if (!decorators || !decorators.length) {
|
|
@@ -150,7 +150,7 @@ function extractAngularClassMetadata(typeChecker, node) {
|
|
|
150
150
|
};
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
-
// bazel-out/
|
|
153
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/project_tsconfig_paths.mjs
|
|
154
154
|
var import_core = require("@angular-devkit/core");
|
|
155
155
|
function getProjectTsConfigPaths(tree) {
|
|
156
156
|
return __async(this, null, function* () {
|
|
@@ -230,11 +230,11 @@ function getWorkspace(tree) {
|
|
|
230
230
|
});
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
-
// bazel-out/
|
|
233
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
234
234
|
var import_path = require("path");
|
|
235
235
|
var import_typescript6 = __toESM(require("typescript"), 1);
|
|
236
236
|
|
|
237
|
-
// bazel-out/
|
|
237
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/parse_tsconfig.mjs
|
|
238
238
|
var path = __toESM(require("path"), 1);
|
|
239
239
|
var import_typescript5 = __toESM(require("typescript"), 1);
|
|
240
240
|
function parseTsconfigFile(tsconfigPath, basePath) {
|
|
@@ -251,7 +251,7 @@ function parseTsconfigFile(tsconfigPath, basePath) {
|
|
|
251
251
|
return import_typescript5.default.parseJsonConfigFileContent(config, parseConfigHost, basePath, {});
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
-
// bazel-out/
|
|
254
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/compiler_host.mjs
|
|
255
255
|
function createMigrationProgram(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles) {
|
|
256
256
|
const { rootNames, options, host } = createProgramOptions(tree, tsconfigPath, basePath, fakeFileRead, additionalFiles);
|
|
257
257
|
return import_typescript6.default.createProgram(rootNames, options, host);
|
|
@@ -284,7 +284,7 @@ function canMigrateFile(basePath, sourceFile, program) {
|
|
|
284
284
|
return !(0, import_path.relative)(basePath, sourceFile.fileName).startsWith("..");
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
// bazel-out/
|
|
287
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/utils/typescript/property_name.mjs
|
|
288
288
|
var import_typescript7 = __toESM(require("typescript"), 1);
|
|
289
289
|
function getPropertyNameText(node) {
|
|
290
290
|
if (import_typescript7.default.isIdentifier(node) || import_typescript7.default.isStringLiteralLike(node)) {
|
|
@@ -293,7 +293,7 @@ function getPropertyNameText(node) {
|
|
|
293
293
|
return null;
|
|
294
294
|
}
|
|
295
295
|
|
|
296
|
-
// bazel-out/
|
|
296
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/core/schematics/migrations/remove-module-id/index.mjs
|
|
297
297
|
function remove_module_id_default() {
|
|
298
298
|
return (tree) => __async(this, null, function* () {
|
|
299
299
|
const { buildPaths, testPaths } = yield getProjectTsConfigPaths(tree);
|