@evotor-dev/ui-kit 7.0.1 → 7.0.3
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/esm2020/lib/directives/evo-let/evo-let.directive.mjs +10 -1
- package/fesm2015/evotor-dev-ui-kit.mjs +9 -0
- package/fesm2015/evotor-dev-ui-kit.mjs.map +1 -1
- package/fesm2020/evotor-dev-ui-kit.mjs +9 -0
- package/fesm2020/evotor-dev-ui-kit.mjs.map +1 -1
- package/lib/directives/evo-let/evo-let.directive.d.ts +16 -0
- package/package.json +15 -5
|
@@ -12,6 +12,22 @@ export declare class EvoLetContext<T> {
|
|
|
12
12
|
export declare class EvoLetDirective<T> {
|
|
13
13
|
evoLet: T;
|
|
14
14
|
constructor(viewContainer: ViewContainerRef, templateRef: TemplateRef<EvoLetContext<T>>);
|
|
15
|
+
/**
|
|
16
|
+
* Assert the correct type of the expression bound to the `evoLet` input within the template.
|
|
17
|
+
*
|
|
18
|
+
* The presence of this static field is a signal to the Ivy template type check compiler that
|
|
19
|
+
* when the `EvoLetDirective` structural directive renders its template, the type of the expression bound
|
|
20
|
+
* to `evoLet` should be narrowed in some way. For `EvoLetDirective`, the binding expression itself is used to
|
|
21
|
+
* narrow its type, which allows the strictNullChecks feature of TypeScript to work with `EvoLetDirective`.
|
|
22
|
+
*/
|
|
23
|
+
static ngTemplateGuard_evoLet: 'binding';
|
|
24
|
+
/**
|
|
25
|
+
* Asserts the correct type of the context for the template that `EvoLetDirective` will render.
|
|
26
|
+
*
|
|
27
|
+
* The presence of this method is a signal to the Ivy template type-check compiler that the
|
|
28
|
+
* `EvoLetDirective` structural directive renders its template with a specific context type.
|
|
29
|
+
*/
|
|
30
|
+
static ngTemplateContextGuard<T>(dir: EvoLetDirective<T>, ctx: any): ctx is EvoLetContext<T>;
|
|
15
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EvoLetDirective<any>, never>;
|
|
16
32
|
static ɵdir: i0.ɵɵDirectiveDeclaration<EvoLetDirective<any>, "[evoLet]", never, { "evoLet": "evoLet"; }, {}, never>;
|
|
17
33
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evotor-dev/ui-kit",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": ">=13.3.9",
|
|
6
6
|
"@angular/common": ">=13.4.0",
|
|
@@ -8,6 +8,19 @@
|
|
|
8
8
|
"@angular/forms": ">=13.4.0",
|
|
9
9
|
"rxjs": ">=6.5.3"
|
|
10
10
|
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"tslib": "^2.2.0",
|
|
13
|
+
"@popperjs/core": "2.0.6",
|
|
14
|
+
"angular-imask": "6.3.0",
|
|
15
|
+
"autobind-decorator": "^2.4.0",
|
|
16
|
+
"flatpickr": "4.6.9",
|
|
17
|
+
"imask": "6.3.0",
|
|
18
|
+
"lodash-es": "^4.17.15",
|
|
19
|
+
"mime": "3.0.0",
|
|
20
|
+
"ngx-page-scroll": "8.0.0",
|
|
21
|
+
"ngx-page-scroll-core": "8.0.0",
|
|
22
|
+
"ts-keycode-enum": "^1.0.4"
|
|
23
|
+
},
|
|
11
24
|
"exports": {
|
|
12
25
|
"./styles/*": {
|
|
13
26
|
"default": "./styles/*"
|
|
@@ -94,8 +107,5 @@
|
|
|
94
107
|
"fesm2020": "fesm2020/evotor-dev-ui-kit.mjs",
|
|
95
108
|
"fesm2015": "fesm2015/evotor-dev-ui-kit.mjs",
|
|
96
109
|
"typings": "evotor-dev-ui-kit.d.ts",
|
|
97
|
-
"sideEffects": false
|
|
98
|
-
"dependencies": {
|
|
99
|
-
"tslib": "^2.2.0"
|
|
100
|
-
}
|
|
110
|
+
"sideEffects": false
|
|
101
111
|
}
|