@angular-eslint/utils 16.1.3-alpha.0 → 16.1.3-alpha.1
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.
|
@@ -75,6 +75,11 @@ export declare const angularClassDecoratorKeys: readonly ("Component" | "Directi
|
|
|
75
75
|
export declare const angularInnerClassDecoratorKeys: readonly ("Attribute" | "Host" | "Inject" | "Optional" | "Self" | "SkipSelf" | "HostListener" | "ContentChild" | "ContentChildren" | "HostBinding" | "Input" | "Output" | "ViewChild" | "ViewChildren")[];
|
|
76
76
|
export declare const angularLifecycleInterfaceKeys: readonly ("AfterContentChecked" | "AfterContentInit" | "AfterViewChecked" | "AfterViewInit" | "DoBootstrap" | "DoCheck" | "OnChanges" | "OnDestroy" | "OnInit")[];
|
|
77
77
|
export declare const angularLifecycleMethodKeys: readonly ("ngAfterContentChecked" | "ngAfterContentInit" | "ngAfterViewChecked" | "ngAfterViewInit" | "ngDoBootstrap" | "ngDoCheck" | "ngOnChanges" | "ngOnDestroy" | "ngOnInit")[];
|
|
78
|
+
/**
|
|
79
|
+
* See lifecycle event sequence:
|
|
80
|
+
* https://angular.io/guide/lifecycle-hooks#lifecycle-event-sequence
|
|
81
|
+
*/
|
|
82
|
+
export declare const angularLifecycleMethodsOrdered: AngularLifecycleMethods[];
|
|
78
83
|
export declare const ANGULAR_CLASS_DECORATOR_LIFECYCLE_METHOD_MAPPER: ReadonlyMap<AngularClassDecoratorKeys, ReadonlySet<AngularLifecycleMethodKeys>>;
|
|
79
84
|
export declare const ANGULAR_INNER_CLASS_DECORATORS: ReadonlySet<AngularInnerClassDecoratorKeys>;
|
|
80
85
|
export declare const ANGULAR_CLASS_DECORATORS: ReadonlySet<AngularClassDecoratorKeys>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.isImplementsToken = exports.isSuper = exports.isMethodDefinition = exports.isStringLiteral = exports.isImportSpecifier = exports.isImportDeclaration = exports.isTemplateLiteral = exports.isTemplateElement = exports.isLiteral = exports.isProperty = exports.isArrayExpression = exports.isObjectExpression = exports.isImportNamespaceSpecifier = exports.isImportDefaultSpecifier = exports.isPropertyOrMethodDefinition = void 0;
|
|
3
|
+
exports.isClassDeclaration = exports.isIdentifierOrMemberExpression = exports.isMemberExpression = exports.isCallExpression = exports.getReplacementText = exports.getRawText = exports.isImportedFrom = exports.getLifecycleInterfaceByMethodName = exports.getMethodName = exports.getDeclaredMethods = exports.getDecoratorPropertyValue = exports.getDecoratorProperty = exports.getPropertyDefinitionName = exports.isAngularInnerClassDecorator = exports.isAngularClassDecorator = exports.isAngularLifecycleMethod = exports.isAngularLifecycleInterface = exports.ANGULAR_LIFECYCLE_METHODS = exports.ANGULAR_LIFECYCLE_INTERFACES = exports.getDecoratorName = exports.getDecoratorArgument = exports.getAngularClassDecorator = exports.getDecorator = exports.getClassName = exports.getNearestNodeFrom = exports.getDeclaredAngularLifecycleMethods = exports.getDeclaredAngularLifecycleInterfaces = exports.getDeclaredInterfaceNames = exports.getInterfaces = exports.getPipeDecorator = exports.getInterfaceName = exports.getInterface = exports.getImportDeclarationSpecifier = exports.getImportDeclarations = exports.getCorrespondentImportClause = exports.ANGULAR_CLASS_DECORATOR_MAPPER = exports.ANGULAR_CLASS_DECORATORS = exports.ANGULAR_INNER_CLASS_DECORATORS = exports.ANGULAR_CLASS_DECORATOR_LIFECYCLE_METHOD_MAPPER = exports.angularLifecycleMethodsOrdered = exports.angularLifecycleMethodKeys = exports.angularLifecycleInterfaceKeys = exports.angularInnerClassDecoratorKeys = exports.angularClassDecoratorKeys = exports.OPTION_STYLE_KEBAB_CASE = exports.OPTION_STYLE_CAMEL_CASE = exports.AngularLifecycleMethods = exports.AngularLifecycleInterfaces = exports.AngularInnerClassDecorators = exports.AngularClassDecorators = void 0;
|
|
4
|
+
exports.isImplementsToken = exports.isSuper = exports.isMethodDefinition = exports.isStringLiteral = exports.isImportSpecifier = exports.isImportDeclaration = exports.isTemplateLiteral = exports.isTemplateElement = exports.isLiteral = exports.isProperty = exports.isArrayExpression = exports.isObjectExpression = exports.isImportNamespaceSpecifier = exports.isImportDefaultSpecifier = exports.isPropertyOrMethodDefinition = exports.isPropertyDefinition = void 0;
|
|
5
5
|
const utils_1 = require("@typescript-eslint/utils");
|
|
6
6
|
const utils_2 = require("../utils");
|
|
7
7
|
var AngularClassDecorators;
|
|
@@ -66,6 +66,20 @@ exports.angularClassDecoratorKeys = (0, utils_2.objectKeys)(AngularClassDecorato
|
|
|
66
66
|
exports.angularInnerClassDecoratorKeys = (0, utils_2.objectKeys)(exports.AngularInnerClassDecorators);
|
|
67
67
|
exports.angularLifecycleInterfaceKeys = (0, utils_2.objectKeys)(AngularLifecycleInterfaces);
|
|
68
68
|
exports.angularLifecycleMethodKeys = (0, utils_2.objectKeys)(AngularLifecycleMethods);
|
|
69
|
+
/**
|
|
70
|
+
* See lifecycle event sequence:
|
|
71
|
+
* https://angular.io/guide/lifecycle-hooks#lifecycle-event-sequence
|
|
72
|
+
*/
|
|
73
|
+
exports.angularLifecycleMethodsOrdered = [
|
|
74
|
+
AngularLifecycleMethods.ngOnChanges,
|
|
75
|
+
AngularLifecycleMethods.ngOnInit,
|
|
76
|
+
AngularLifecycleMethods.ngDoCheck,
|
|
77
|
+
AngularLifecycleMethods.ngAfterContentInit,
|
|
78
|
+
AngularLifecycleMethods.ngAfterContentChecked,
|
|
79
|
+
AngularLifecycleMethods.ngAfterViewInit,
|
|
80
|
+
AngularLifecycleMethods.ngAfterViewChecked,
|
|
81
|
+
AngularLifecycleMethods.ngOnDestroy,
|
|
82
|
+
];
|
|
69
83
|
exports.ANGULAR_CLASS_DECORATOR_LIFECYCLE_METHOD_MAPPER = new Map([
|
|
70
84
|
[
|
|
71
85
|
AngularClassDecorators.Component,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/utils",
|
|
3
|
-
"version": "16.1.3-alpha.
|
|
3
|
+
"version": "16.1.3-alpha.1+47f7975",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"typescript": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@angular-eslint/bundled-angular-compiler": "16.1.3-alpha.
|
|
18
|
+
"@angular-eslint/bundled-angular-compiler": "16.1.3-alpha.1+47f7975",
|
|
19
19
|
"@typescript-eslint/utils": "5.62.0"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "47f7975aefb18e81aac5919f6586054d65b84f6f"
|
|
22
22
|
}
|