This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface AttributeSelectorUpgradeData {
/** The attribute name to replace. */
replace: string;
/** The new name for the attribute. */
replaceWith: string;
}
export declare const attributeSelectors: VersionChanges<AttributeSelectorUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.attributeSelectors = void 0;
exports.attributeSelectors = {};
//# sourceMappingURL=attribute-selectors.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"attribute-selectors.js","sourceRoot":"","sources":["attribute-selectors.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAWU,QAAA,kBAAkB,GAAiD,EAAE,CAAC"}

View File

@@ -0,0 +1,15 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface ClassNameUpgradeData {
/** The Class name to replace. */
replace: string;
/** The new name for the Class. */
replaceWith: string;
}
export declare const classNames: VersionChanges<ClassNameUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.classNames = void 0;
exports.classNames = {};
//# sourceMappingURL=class-names.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"class-names.js","sourceRoot":"","sources":["class-names.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAWU,QAAA,UAAU,GAAyC,EAAE,CAAC"}

View File

@@ -0,0 +1,15 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export type ConstructorChecksUpgradeData = string;
/**
* List of class names for which the constructor signature has been changed. The new constructor
* signature types don't need to be stored here because the signature will be determined
* automatically through type checking.
*/
export declare const constructorChecks: VersionChanges<ConstructorChecksUpgradeData>;

View File

@@ -0,0 +1,17 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.constructorChecks = void 0;
/**
* List of class names for which the constructor signature has been changed. The new constructor
* signature types don't need to be stored here because the signature will be determined
* automatically through type checking.
*/
exports.constructorChecks = {};
//# sourceMappingURL=constructor-checks.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"constructor-checks.js","sourceRoot":"","sources":["constructor-checks.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAMH;;;;GAIG;AACU,QAAA,iBAAiB,GAAiD,EAAE,CAAC"}

View File

@@ -0,0 +1,27 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface CssSelectorUpgradeData {
/** The CSS selector to replace. */
replace: string;
/** The new CSS selector. */
replaceWith: string;
/**
* Controls which file types in which this replacement is made. If omitted, it is made in all
* files.
*/
replaceIn?: {
/** Replace this name in stylesheet files. */
stylesheet?: boolean;
/** Replace this name in HTML files. */
html?: boolean;
/** Replace this name in TypeScript strings. */
tsStringLiterals?: boolean;
};
}
export declare const cssSelectors: VersionChanges<CssSelectorUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.cssSelectors = void 0;
exports.cssSelectors = {};
//# sourceMappingURL=css-selectors.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"css-selectors.js","sourceRoot":"","sources":["css-selectors.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAuBU,QAAA,YAAY,GAA2C,EAAE,CAAC"}

View File

@@ -0,0 +1,27 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface CssTokenUpgradeData {
/** The CSS selector to replace. */
replace: string;
/** The new CSS selector. */
replaceWith: string;
/**
* Controls which file types in which this replacement is made. If omitted, it is made in all
* files.
*/
replaceIn?: {
/** Replace this name in stylesheet files. */
stylesheet?: boolean;
/** Replace this name in HTML files. */
html?: boolean;
/** Replace this name in TypeScript strings. */
tsStringLiterals?: boolean;
};
}
export declare const cssTokens: VersionChanges<CssTokenUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.cssTokens = void 0;
exports.cssTokens = {};
//# sourceMappingURL=css-tokens.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"css-tokens.js","sourceRoot":"","sources":["css-tokens.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAuBU,QAAA,SAAS,GAAwC,EAAE,CAAC"}

View File

@@ -0,0 +1,15 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface ElementSelectorUpgradeData {
/** The element name to replace. */
replace: string;
/** The new name for the element. */
replaceWith: string;
}
export declare const elementSelectors: VersionChanges<ElementSelectorUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.elementSelectors = void 0;
exports.elementSelectors = {};
//# sourceMappingURL=element-selectors.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"element-selectors.js","sourceRoot":"","sources":["element-selectors.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAWU,QAAA,gBAAgB,GAA+C,EAAE,CAAC"}

View File

@@ -0,0 +1,18 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
export * from './attribute-selectors';
export * from './class-names';
export * from './constructor-checks';
export * from './css-selectors';
export * from './css-tokens';
export * from './element-selectors';
export * from './input-names';
export * from './method-call-checks';
export * from './output-names';
export * from './property-names';
export * from './symbol-removal';

35
node_modules/@angular/cdk/schematics/ng-update/data/index.js generated vendored Executable file
View File

@@ -0,0 +1,35 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./attribute-selectors"), exports);
__exportStar(require("./class-names"), exports);
__exportStar(require("./constructor-checks"), exports);
__exportStar(require("./css-selectors"), exports);
__exportStar(require("./css-tokens"), exports);
__exportStar(require("./element-selectors"), exports);
__exportStar(require("./input-names"), exports);
__exportStar(require("./method-call-checks"), exports);
__exportStar(require("./output-names"), exports);
__exportStar(require("./property-names"), exports);
__exportStar(require("./symbol-removal"), exports);
//# sourceMappingURL=index.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;;;;;;;;;;;;;;AAEH,wDAAsC;AACtC,gDAA8B;AAC9B,uDAAqC;AACrC,kDAAgC;AAChC,+CAA6B;AAC7B,sDAAoC;AACpC,gDAA8B;AAC9B,uDAAqC;AACrC,iDAA+B;AAC/B,mDAAiC;AACjC,mDAAiC"}

View File

@@ -0,0 +1,22 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface InputNameUpgradeData {
/** The @Input() name to replace. */
replace: string;
/** The new name for the @Input(). */
replaceWith: string;
/** Controls which elements and attributes in which this replacement is made. */
limitedTo: {
/** Limit to elements with any of these element tags. */
elements?: string[];
/** Limit to elements with any of these attributes. */
attributes?: string[];
};
}
export declare const inputNames: VersionChanges<InputNameUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.inputNames = void 0;
exports.inputNames = {};
//# sourceMappingURL=input-names.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"input-names.js","sourceRoot":"","sources":["input-names.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAkBU,QAAA,UAAU,GAAyC,EAAE,CAAC"}

View File

@@ -0,0 +1,17 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface MethodCallUpgradeData {
className: string;
method: string;
invalidArgCounts: {
count: number;
message: string;
}[];
}
export declare const methodCallChecks: VersionChanges<MethodCallUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.methodCallChecks = void 0;
exports.methodCallChecks = {};
//# sourceMappingURL=method-call-checks.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"method-call-checks.js","sourceRoot":"","sources":["method-call-checks.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAUU,QAAA,gBAAgB,GAA0C,EAAE,CAAC"}

View File

@@ -0,0 +1,22 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface OutputNameUpgradeData {
/** The @Output() name to replace. */
replace: string;
/** The new name for the @Output(). */
replaceWith: string;
/** Controls which elements and attributes in which this replacement is made. */
limitedTo: {
/** Limit to elements with any of these element tags. */
elements?: string[];
/** Limit to elements with any of these attributes. */
attributes?: string[];
};
}
export declare const outputNames: VersionChanges<OutputNameUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.outputNames = void 0;
exports.outputNames = {};
//# sourceMappingURL=output-names.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"output-names.js","sourceRoot":"","sources":["output-names.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAkBU,QAAA,WAAW,GAA0C,EAAE,CAAC"}

View File

@@ -0,0 +1,20 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface PropertyNameUpgradeData {
/** The property name to replace. */
replace: string;
/** The new name for the property. */
replaceWith: string;
/** Controls which classes in which this replacement is made. */
limitedTo: {
/** Replace the property only when its type is one of the given Classes. */
classes: string[];
};
}
export declare const propertyNames: VersionChanges<PropertyNameUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.propertyNames = void 0;
exports.propertyNames = {};
//# sourceMappingURL=property-names.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"property-names.js","sourceRoot":"","sources":["property-names.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAgBU,QAAA,aAAa,GAA4C,EAAE,CAAC"}

View File

@@ -0,0 +1,17 @@
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { VersionChanges } from '../../update-tool/version-changes';
export interface SymbolRemovalUpgradeData {
/** Module that the symbol was removed from. */
module: string;
/** Name of the symbol being removed. */
name: string;
/** Message to log explaining why the symbol was removed. */
message: string;
}
export declare const symbolRemoval: VersionChanges<SymbolRemovalUpgradeData>;

View File

@@ -0,0 +1,12 @@
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.symbolRemoval = void 0;
exports.symbolRemoval = {};
//# sourceMappingURL=symbol-removal.js.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"symbol-removal.js","sourceRoot":"","sources":["symbol-removal.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAeU,QAAA,aAAa,GAA6C,EAAE,CAAC"}