@angular/core 19.2.0-rc.0 → 19.2.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/fesm2022/core.mjs +461 -269
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +696 -5
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +195 -19
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/{apply_import_manager-a930fcf1.js → apply_import_manager-a4e62ded.js} +2 -2
- package/schematics/bundles/checker-2eecc677.js +2 -2
- package/schematics/bundles/cleanup-unused-imports.js +4 -4
- package/schematics/bundles/{compiler_host-c280a924.js → compiler_host-f313eac9.js} +1 -1
- package/schematics/bundles/control-flow-migration.js +2 -2
- package/schematics/bundles/explicit-standalone-flag.js +4 -4
- package/schematics/bundles/{imports-abe29092.js → imports-31a38653.js} +1 -1
- package/schematics/bundles/index-3891dd55.js +2 -2
- package/schematics/bundles/{index-24a2ad1e.js → index-afc3f749.js} +2 -2
- package/schematics/bundles/inject-migration.js +6 -6
- package/schematics/bundles/{leading_space-d190b83b.js → leading_space-6e7a8ec6.js} +1 -1
- package/schematics/bundles/{migrate_ts_type_references-71b3a951.js → migrate_ts_type_references-1abf1f5f.js} +4 -4
- package/schematics/bundles/{ng_decorators-e699c081.js → ng_decorators-6878e227.js} +2 -2
- package/schematics/bundles/{nodes-a535b2be.js → nodes-ffdce442.js} +1 -1
- package/schematics/bundles/output-migration.js +5 -5
- package/schematics/bundles/pending-tasks.js +4 -4
- package/schematics/bundles/program-24da9092.js +10 -10
- package/schematics/bundles/{project_paths-b073c4d6.js → project_paths-64bc3947.js} +1 -1
- package/schematics/bundles/{project_tsconfig_paths-e9ccccbf.js → project_tsconfig_paths-6c9cde78.js} +1 -1
- package/schematics/bundles/{property_name-7c8433f5.js → property_name-42030525.js} +1 -1
- package/schematics/bundles/provide-initializer.js +4 -4
- package/schematics/bundles/route-lazy-loading.js +4 -4
- package/schematics/bundles/self-closing-tags-migration.js +6 -6
- package/schematics/bundles/signal-input-migration.js +7 -7
- package/schematics/bundles/signal-queries-migration.js +7 -7
- package/schematics/bundles/signals.js +7 -7
- package/schematics/bundles/standalone-migration.js +6 -6
- package/testing/index.d.ts +297 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.0
|
|
2
|
+
* @license Angular v19.2.0
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3931,6 +3931,27 @@ declare type DirectiveDefList = (ɵDirectiveDef<any> | ɵComponentDef<any>)[];
|
|
|
3931
3931
|
*/
|
|
3932
3932
|
declare type DirectiveDefListOrFactory = (() => DirectiveDefList) | DirectiveDefList;
|
|
3933
3933
|
|
|
3934
|
+
/**
|
|
3935
|
+
* Represents a map between a class reference and the index at which its directive is available on
|
|
3936
|
+
* a specific TNode. The value can be either:
|
|
3937
|
+
* 1. A number means that there's only one selector-matched directive on the node and it
|
|
3938
|
+
* doesn't have any host directives.
|
|
3939
|
+
* 2. An array means that there's a selector-matched directive and it has host directives.
|
|
3940
|
+
* The array is structured as follows:
|
|
3941
|
+
* - 0: Index of the selector-matched directive.
|
|
3942
|
+
* - 1: Start index of the range within which the host directives are defined.
|
|
3943
|
+
* - 2: End of the host directive range.
|
|
3944
|
+
*
|
|
3945
|
+
* Example:
|
|
3946
|
+
* ```
|
|
3947
|
+
* Map {
|
|
3948
|
+
* [NoHostDirectives]: 5,
|
|
3949
|
+
* [HasHostDirectives]: [10, 6, 8],
|
|
3950
|
+
* }
|
|
3951
|
+
* ```
|
|
3952
|
+
*/
|
|
3953
|
+
declare type DirectiveIndexMap = Map<Type<unknown>, number | [directiveIndex: number, hostDirectivesStart: number, hostDirectivesEnd: number]>;
|
|
3954
|
+
|
|
3934
3955
|
/**
|
|
3935
3956
|
* Map of inputs for a given directive/component.
|
|
3936
3957
|
*
|
|
@@ -5208,6 +5229,26 @@ declare interface HostDirectiveDef<T = unknown> {
|
|
|
5208
5229
|
*/
|
|
5209
5230
|
declare type HostDirectiveDefs = Map<ɵDirectiveDef<unknown>, HostDirectiveDef>;
|
|
5210
5231
|
|
|
5232
|
+
/**
|
|
5233
|
+
* Represents inputs coming from a host directive and exposed on a TNode.
|
|
5234
|
+
*
|
|
5235
|
+
* - The key is the public name of an input as it is exposed on the specific node.
|
|
5236
|
+
* - The value is an array where:
|
|
5237
|
+
* - i+0: Index of the host directive that should be written to.
|
|
5238
|
+
* - i+1: Public name of the input as it was defined on the host directive before aliasing.
|
|
5239
|
+
*/
|
|
5240
|
+
declare type HostDirectiveInputs = Record<string, (number | string)[]>;
|
|
5241
|
+
|
|
5242
|
+
/**
|
|
5243
|
+
* Represents outputs coming from a host directive and exposed on a TNode.
|
|
5244
|
+
*
|
|
5245
|
+
* - The key is the public name of an output as it is exposed on the specific node.
|
|
5246
|
+
* - The value is an array where:
|
|
5247
|
+
* - i+0: Index of the host directive on which the output is defined..
|
|
5248
|
+
* - i+1: Public name of the output as it was defined on the host directive before aliasing.
|
|
5249
|
+
*/
|
|
5250
|
+
declare type HostDirectiveOutputs = Record<string, (number | string)[]>;
|
|
5251
|
+
|
|
5211
5252
|
/**
|
|
5212
5253
|
* Type of the HostListener metadata.
|
|
5213
5254
|
*
|
|
@@ -7615,6 +7656,35 @@ declare const MULTIPLIER = "x";
|
|
|
7615
7656
|
|
|
7616
7657
|
declare const NATIVE = 7;
|
|
7617
7658
|
|
|
7659
|
+
declare interface NavigateEventInit extends EventInit {
|
|
7660
|
+
navigationType?: ɵNavigationTypeString;
|
|
7661
|
+
canIntercept?: boolean;
|
|
7662
|
+
userInitiated?: boolean;
|
|
7663
|
+
hashChange?: boolean;
|
|
7664
|
+
destination: ɵNavigationDestination;
|
|
7665
|
+
signal: AbortSignal;
|
|
7666
|
+
formData?: FormData | null;
|
|
7667
|
+
downloadRequest?: string | null;
|
|
7668
|
+
info?: unknown;
|
|
7669
|
+
}
|
|
7670
|
+
|
|
7671
|
+
declare interface NavigationCurrentEntryChangeEventInit extends EventInit {
|
|
7672
|
+
navigationType?: ɵNavigationTypeString | null;
|
|
7673
|
+
from: ɵNavigationHistoryEntry;
|
|
7674
|
+
}
|
|
7675
|
+
|
|
7676
|
+
|
|
7677
|
+
declare interface NavigationEventMap {
|
|
7678
|
+
navigate: ɵNavigateEvent;
|
|
7679
|
+
navigatesuccess: Event;
|
|
7680
|
+
navigateerror: ErrorEvent;
|
|
7681
|
+
currententrychange: ɵNavigationCurrentEntryChangeEvent;
|
|
7682
|
+
}
|
|
7683
|
+
|
|
7684
|
+
declare interface NavigationHistoryEntryEventMap {
|
|
7685
|
+
dispose: Event;
|
|
7686
|
+
}
|
|
7687
|
+
|
|
7618
7688
|
declare const NEXT = 4;
|
|
7619
7689
|
|
|
7620
7690
|
declare interface NgGlobalPublishUtils {
|
|
@@ -8158,36 +8228,28 @@ export declare interface NgZoneOptions {
|
|
|
8158
8228
|
export declare const NO_ERRORS_SCHEMA: SchemaMetadata;
|
|
8159
8229
|
|
|
8160
8230
|
/**
|
|
8161
|
-
*
|
|
8162
|
-
*
|
|
8163
|
-
* This allows efficiently setting the same input on a directive that
|
|
8164
|
-
* might apply to multiple directives.
|
|
8165
|
-
*
|
|
8166
|
-
* i+0: directive instance index
|
|
8167
|
-
* i+1: privateName
|
|
8231
|
+
* Maps the public names of inputs applied to a specific node to the index of the
|
|
8232
|
+
* directive instance to which the input value should be written, for example:
|
|
8168
8233
|
*
|
|
8169
|
-
* e.g.
|
|
8170
8234
|
* ```
|
|
8171
8235
|
* {
|
|
8172
|
-
* "publicName": [0,
|
|
8236
|
+
* "publicName": [0, 5]
|
|
8173
8237
|
* }
|
|
8174
8238
|
* ```
|
|
8175
8239
|
*/
|
|
8176
|
-
declare type NodeInputBindings = Record<string,
|
|
8240
|
+
declare type NodeInputBindings = Record<string, number[]>;
|
|
8177
8241
|
|
|
8178
8242
|
/**
|
|
8179
|
-
*
|
|
8243
|
+
* Maps the public names of outputs available on a specific node to the index
|
|
8244
|
+
* of the directive instance that defines the output, for example:
|
|
8180
8245
|
*
|
|
8181
|
-
* i+0: directive instance index
|
|
8182
|
-
* i+1: privateName
|
|
8183
|
-
*
|
|
8184
|
-
* e.g.
|
|
8185
8246
|
* ```
|
|
8186
8247
|
* {
|
|
8187
|
-
* "publicName": [0,
|
|
8248
|
+
* "publicName": [0, 5]
|
|
8188
8249
|
* }
|
|
8250
|
+
* ```
|
|
8189
8251
|
*/
|
|
8190
|
-
declare type NodeOutputBindings = Record<string,
|
|
8252
|
+
declare type NodeOutputBindings = Record<string, number[]>;
|
|
8191
8253
|
|
|
8192
8254
|
declare const NODES = "n";
|
|
8193
8255
|
|
|
@@ -11087,17 +11149,29 @@ declare interface TNode {
|
|
|
11087
11149
|
*/
|
|
11088
11150
|
localNames: (string | number)[] | null;
|
|
11089
11151
|
/** Information about input properties that need to be set once from attribute data. */
|
|
11090
|
-
initialInputs: InitialInputData | null
|
|
11152
|
+
initialInputs: InitialInputData | null;
|
|
11091
11153
|
/**
|
|
11092
11154
|
* Input data for all directives on this node. `null` means that there are no directives with
|
|
11093
11155
|
* inputs on this node.
|
|
11094
11156
|
*/
|
|
11095
11157
|
inputs: NodeInputBindings | null;
|
|
11158
|
+
/**
|
|
11159
|
+
* Input data for host directives applied to the node.
|
|
11160
|
+
*/
|
|
11161
|
+
hostDirectiveInputs: HostDirectiveInputs | null;
|
|
11096
11162
|
/**
|
|
11097
11163
|
* Output data for all directives on this node. `null` means that there are no directives with
|
|
11098
11164
|
* outputs on this node.
|
|
11099
11165
|
*/
|
|
11100
11166
|
outputs: NodeOutputBindings | null;
|
|
11167
|
+
/**
|
|
11168
|
+
* Input data for host directives applied to the node.
|
|
11169
|
+
*/
|
|
11170
|
+
hostDirectiveOutputs: HostDirectiveOutputs | null;
|
|
11171
|
+
/**
|
|
11172
|
+
* Mapping between directive classes applied to the node and their indexes.
|
|
11173
|
+
*/
|
|
11174
|
+
directiveToIndex: DirectiveIndexMap | null;
|
|
11101
11175
|
/**
|
|
11102
11176
|
* The TView attached to this node.
|
|
11103
11177
|
*
|
|
@@ -14127,6 +14201,108 @@ export declare class ɵMicrotaskEffectScheduler extends ZoneAwareEffectScheduler
|
|
|
14127
14201
|
static ɵprov: unknown;
|
|
14128
14202
|
}
|
|
14129
14203
|
|
|
14204
|
+
export declare class ɵNavigateEvent extends Event {
|
|
14205
|
+
constructor(type: string, eventInit?: NavigateEventInit);
|
|
14206
|
+
readonly navigationType: ɵNavigationTypeString;
|
|
14207
|
+
readonly canIntercept: boolean;
|
|
14208
|
+
readonly userInitiated: boolean;
|
|
14209
|
+
readonly hashChange: boolean;
|
|
14210
|
+
readonly destination: ɵNavigationDestination;
|
|
14211
|
+
readonly signal: AbortSignal;
|
|
14212
|
+
readonly formData: FormData | null;
|
|
14213
|
+
readonly downloadRequest: string | null;
|
|
14214
|
+
readonly info?: unknown;
|
|
14215
|
+
intercept(options?: ɵNavigationInterceptOptions): void;
|
|
14216
|
+
scroll(): void;
|
|
14217
|
+
}
|
|
14218
|
+
|
|
14219
|
+
export declare class ɵNavigation extends EventTarget {
|
|
14220
|
+
entries(): ɵNavigationHistoryEntry[];
|
|
14221
|
+
readonly currentEntry: ɵNavigationHistoryEntry | null;
|
|
14222
|
+
updateCurrentEntry(options: ɵNavigationUpdateCurrentEntryOptions): void;
|
|
14223
|
+
readonly transition: ɵNavigationTransition | null;
|
|
14224
|
+
readonly canGoBack: boolean;
|
|
14225
|
+
readonly canGoForward: boolean;
|
|
14226
|
+
navigate(url: string, options?: ɵNavigationNavigateOptions): ɵNavigationResult;
|
|
14227
|
+
reload(options?: ɵNavigationReloadOptions): ɵNavigationResult;
|
|
14228
|
+
traverseTo(key: string, options?: ɵNavigationOptions): ɵNavigationResult;
|
|
14229
|
+
back(options?: ɵNavigationOptions): ɵNavigationResult;
|
|
14230
|
+
forward(options?: ɵNavigationOptions): ɵNavigationResult;
|
|
14231
|
+
onnavigate: ((this: ɵNavigation, ev: ɵNavigateEvent) => any) | null;
|
|
14232
|
+
onnavigatesuccess: ((this: ɵNavigation, ev: Event) => any) | null;
|
|
14233
|
+
onnavigateerror: ((this: ɵNavigation, ev: ErrorEvent) => any) | null;
|
|
14234
|
+
oncurrententrychange: ((this: ɵNavigation, ev: ɵNavigationCurrentEntryChangeEvent) => any) | null;
|
|
14235
|
+
addEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: ɵNavigation, ev: NavigationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
14236
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
14237
|
+
removeEventListener<K extends keyof NavigationEventMap>(type: K, listener: (this: ɵNavigation, ev: NavigationEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
14238
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
14239
|
+
}
|
|
14240
|
+
|
|
14241
|
+
export declare class ɵNavigationCurrentEntryChangeEvent extends Event {
|
|
14242
|
+
constructor(type: string, eventInit?: NavigationCurrentEntryChangeEventInit);
|
|
14243
|
+
readonly navigationType: ɵNavigationTypeString | null;
|
|
14244
|
+
readonly from: ɵNavigationHistoryEntry;
|
|
14245
|
+
}
|
|
14246
|
+
|
|
14247
|
+
export declare class ɵNavigationDestination {
|
|
14248
|
+
readonly url: string;
|
|
14249
|
+
readonly key: string | null;
|
|
14250
|
+
readonly id: string | null;
|
|
14251
|
+
readonly index: number;
|
|
14252
|
+
readonly sameDocument: boolean;
|
|
14253
|
+
getState(): unknown;
|
|
14254
|
+
}
|
|
14255
|
+
|
|
14256
|
+
export declare class ɵNavigationHistoryEntry extends EventTarget {
|
|
14257
|
+
readonly key: string;
|
|
14258
|
+
readonly id: string;
|
|
14259
|
+
readonly url: string | null;
|
|
14260
|
+
readonly index: number;
|
|
14261
|
+
readonly sameDocument: boolean;
|
|
14262
|
+
getState(): unknown;
|
|
14263
|
+
ondispose: ((this: ɵNavigationHistoryEntry, ev: Event) => any) | null;
|
|
14264
|
+
addEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: ɵNavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
14265
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
14266
|
+
removeEventListener<K extends keyof NavigationHistoryEntryEventMap>(type: K, listener: (this: ɵNavigationHistoryEntry, ev: NavigationHistoryEntryEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
14267
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
14268
|
+
}
|
|
14269
|
+
|
|
14270
|
+
export declare interface ɵNavigationInterceptOptions {
|
|
14271
|
+
handler?: () => Promise<void>;
|
|
14272
|
+
focusReset?: 'after-transition' | 'manual';
|
|
14273
|
+
scroll?: 'after-transition' | 'manual';
|
|
14274
|
+
}
|
|
14275
|
+
|
|
14276
|
+
export declare interface ɵNavigationNavigateOptions extends ɵNavigationOptions {
|
|
14277
|
+
state?: unknown;
|
|
14278
|
+
history?: 'auto' | 'push' | 'replace';
|
|
14279
|
+
}
|
|
14280
|
+
|
|
14281
|
+
export declare interface ɵNavigationOptions {
|
|
14282
|
+
info?: unknown;
|
|
14283
|
+
}
|
|
14284
|
+
|
|
14285
|
+
export declare interface ɵNavigationReloadOptions extends ɵNavigationOptions {
|
|
14286
|
+
state?: unknown;
|
|
14287
|
+
}
|
|
14288
|
+
|
|
14289
|
+
export declare interface ɵNavigationResult {
|
|
14290
|
+
committed: Promise<ɵNavigationHistoryEntry>;
|
|
14291
|
+
finished: Promise<ɵNavigationHistoryEntry>;
|
|
14292
|
+
}
|
|
14293
|
+
|
|
14294
|
+
export declare class ɵNavigationTransition {
|
|
14295
|
+
readonly navigationType: ɵNavigationTypeString;
|
|
14296
|
+
readonly from: ɵNavigationHistoryEntry;
|
|
14297
|
+
readonly finished: Promise<void>;
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14300
|
+
export declare type ɵNavigationTypeString = 'reload' | 'push' | 'replace' | 'traverse';
|
|
14301
|
+
|
|
14302
|
+
export declare interface ɵNavigationUpdateCurrentEntryOptions {
|
|
14303
|
+
state: unknown;
|
|
14304
|
+
}
|
|
14305
|
+
|
|
14130
14306
|
|
|
14131
14307
|
export declare const ɵNG_COMP_DEF: string;
|
|
14132
14308
|
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED
package/schematics/bundles/{apply_import_manager-a930fcf1.js → apply_import_manager-a4e62ded.js}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
10
|
require('os');
|
|
11
11
|
var checker = require('./checker-2eecc677.js');
|
|
12
|
-
var project_paths = require('./project_paths-
|
|
12
|
+
var project_paths = require('./project_paths-64bc3947.js');
|
|
13
13
|
|
|
14
14
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
15
15
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -30722,7 +30722,7 @@ function publishFacade(global) {
|
|
|
30722
30722
|
* @description
|
|
30723
30723
|
* Entry point for all public APIs of the compiler package.
|
|
30724
30724
|
*/
|
|
30725
|
-
new Version('19.2.0
|
|
30725
|
+
new Version('19.2.0');
|
|
30726
30726
|
|
|
30727
30727
|
const _I18N_ATTR = 'i18n';
|
|
30728
30728
|
const _I18N_ATTR_PREFIX = 'i18n-';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
13
|
-
var project_paths = require('./project_paths-
|
|
12
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-6c9cde78.js');
|
|
13
|
+
var project_paths = require('./project_paths-64bc3947.js');
|
|
14
14
|
require('os');
|
|
15
15
|
var ts = require('typescript');
|
|
16
16
|
var checker = require('./checker-2eecc677.js');
|
|
17
17
|
var program = require('./program-24da9092.js');
|
|
18
18
|
require('path');
|
|
19
19
|
require('./index-3891dd55.js');
|
|
20
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
20
|
+
var apply_import_manager = require('./apply_import_manager-a4e62ded.js');
|
|
21
21
|
require('@angular-devkit/core');
|
|
22
22
|
require('node:path/posix');
|
|
23
23
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var compiler_host = require('./compiler_host-f313eac9.js');
|
|
14
14
|
var checker = require('./checker-2eecc677.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
16
|
require('os');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,10 +10,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
14
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-6c9cde78.js');
|
|
14
|
+
var compiler_host = require('./compiler_host-f313eac9.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var imports = require('./imports-
|
|
16
|
+
var imports = require('./imports-31a38653.js');
|
|
17
17
|
require('@angular-devkit/core');
|
|
18
18
|
require('./checker-2eecc677.js');
|
|
19
19
|
require('os');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -17,7 +17,7 @@ require('path');
|
|
|
17
17
|
* @description
|
|
18
18
|
* Entry point for all public APIs of the compiler-cli package.
|
|
19
19
|
*/
|
|
20
|
-
new checker.Version('19.2.0
|
|
20
|
+
new checker.Version('19.2.0');
|
|
21
21
|
|
|
22
22
|
var LogLevel;
|
|
23
23
|
(function (LogLevel) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -11,7 +11,7 @@ require('os');
|
|
|
11
11
|
var checker = require('./checker-2eecc677.js');
|
|
12
12
|
var program = require('./program-24da9092.js');
|
|
13
13
|
require('path');
|
|
14
|
-
var project_paths = require('./project_paths-
|
|
14
|
+
var project_paths = require('./project_paths-64bc3947.js');
|
|
15
15
|
|
|
16
16
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
17
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,12 +10,12 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var compiler_host = require('./compiler_host-f313eac9.js');
|
|
14
14
|
var ts = require('typescript');
|
|
15
|
-
var ng_decorators = require('./ng_decorators-
|
|
16
|
-
var imports = require('./imports-
|
|
17
|
-
var nodes = require('./nodes-
|
|
18
|
-
var leading_space = require('./leading_space-
|
|
15
|
+
var ng_decorators = require('./ng_decorators-6878e227.js');
|
|
16
|
+
var imports = require('./imports-31a38653.js');
|
|
17
|
+
var nodes = require('./nodes-ffdce442.js');
|
|
18
|
+
var leading_space = require('./leading_space-6e7a8ec6.js');
|
|
19
19
|
require('./checker-2eecc677.js');
|
|
20
20
|
require('os');
|
|
21
21
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,9 +10,9 @@ var checker = require('./checker-2eecc677.js');
|
|
|
10
10
|
var ts = require('typescript');
|
|
11
11
|
require('os');
|
|
12
12
|
var assert = require('assert');
|
|
13
|
-
var index = require('./index-
|
|
14
|
-
var project_paths = require('./project_paths-
|
|
15
|
-
var leading_space = require('./leading_space-
|
|
13
|
+
var index = require('./index-afc3f749.js');
|
|
14
|
+
var project_paths = require('./project_paths-64bc3947.js');
|
|
15
|
+
var leading_space = require('./leading_space-6e7a8ec6.js');
|
|
16
16
|
require('./program-24da9092.js');
|
|
17
17
|
require('path');
|
|
18
18
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
|
-
var imports = require('./imports-
|
|
10
|
+
var imports = require('./imports-31a38653.js');
|
|
11
11
|
|
|
12
12
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
13
|
-
var project_paths = require('./project_paths-
|
|
12
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-6c9cde78.js');
|
|
13
|
+
var project_paths = require('./project_paths-64bc3947.js');
|
|
14
14
|
require('os');
|
|
15
15
|
var ts = require('typescript');
|
|
16
16
|
var checker = require('./checker-2eecc677.js');
|
|
17
17
|
var program = require('./program-24da9092.js');
|
|
18
18
|
require('path');
|
|
19
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
20
|
-
var index = require('./index-
|
|
19
|
+
var apply_import_manager = require('./apply_import_manager-a4e62ded.js');
|
|
20
|
+
var index = require('./index-afc3f749.js');
|
|
21
21
|
require('@angular-devkit/core');
|
|
22
22
|
require('node:path/posix');
|
|
23
23
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.0
|
|
3
|
+
* @license Angular v19.2.0
|
|
4
4
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -10,10 +10,10 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
10
10
|
|
|
11
11
|
var schematics = require('@angular-devkit/schematics');
|
|
12
12
|
var p = require('path');
|
|
13
|
-
var project_tsconfig_paths = require('./project_tsconfig_paths-
|
|
14
|
-
var compiler_host = require('./compiler_host-
|
|
13
|
+
var project_tsconfig_paths = require('./project_tsconfig_paths-6c9cde78.js');
|
|
14
|
+
var compiler_host = require('./compiler_host-f313eac9.js');
|
|
15
15
|
var ts = require('typescript');
|
|
16
|
-
var imports = require('./imports-
|
|
16
|
+
var imports = require('./imports-31a38653.js');
|
|
17
17
|
require('@angular-devkit/core');
|
|
18
18
|
require('./checker-2eecc677.js');
|
|
19
19
|
require('os');
|