@kolektor/nucleus-material 0.0.9-pre.5707 → 0.0.10-pre.6137
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/dialog/dialog.component.mjs +5 -5
- package/esm2020/lib/dialog/dialog.module.mjs +7 -12
- package/esm2020/lib/dialog/dialog.service.mjs +3 -3
- package/esm2020/lib/loaded-content/loaded-content-component.mjs +6 -6
- package/esm2020/lib/loaded-content/loaded-content-directive.mjs +3 -3
- package/esm2020/lib/loaded-content/loaded-content-module.mjs +8 -13
- package/esm2020/lib/native-styling/native-styling.service.mjs +3 -3
- package/esm2020/lib/snackbar/snackbar.module.mjs +6 -8
- package/esm2020/lib/snackbar/snackbar.service.mjs +3 -3
- package/esm2020/lib/swipe-tabs/swipe-tabs-directive.mjs +8 -8
- package/esm2020/lib/swipe-tabs/swipe-tabs-module.mjs +5 -7
- package/esm2020/lib/user-avatar/user-avatar-component.mjs +3 -3
- package/esm2020/lib/user-avatar/user-avatar-module.mjs +5 -7
- package/fesm2015/kolektor-nucleus-material.mjs +60 -75
- package/fesm2015/kolektor-nucleus-material.mjs.map +1 -1
- package/fesm2020/kolektor-nucleus-material.mjs +60 -75
- package/fesm2020/kolektor-nucleus-material.mjs.map +1 -1
- package/{kolektor-nucleus-material.d.ts → index.d.ts} +0 -0
- package/lib/dialog/dialog.component.d.ts +1 -1
- package/lib/loaded-content/loaded-content-component.d.ts +1 -1
- package/lib/loaded-content/loaded-content-directive.d.ts +1 -1
- package/lib/swipe-tabs/swipe-tabs-directive.d.ts +1 -1
- package/lib/user-avatar/user-avatar-component.d.ts +1 -1
- package/package.json +7 -7
|
@@ -19,5 +19,5 @@ export declare class NucLoadedContentDirective {
|
|
|
19
19
|
set showRetry(showRetry: boolean);
|
|
20
20
|
private _updateView;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<NucLoadedContentDirective, never>;
|
|
22
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NucLoadedContentDirective, "[nucLoadedContent]", never, { "nucLoadedContent": "nucLoadedContent"; "errorTemplate": "nucLoadedContentError"; "inProgressTemplate": "nucLoadedContentInProgress"; "inProgressMessage": "nucLoadedContentInProgressMessage"; "errorMessage": "nucLoadedContentErrorMessage"; "showRetry": "nucLoadedContentShowRetry"; }, {}, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NucLoadedContentDirective, "[nucLoadedContent]", never, { "nucLoadedContent": "nucLoadedContent"; "errorTemplate": "nucLoadedContentError"; "inProgressTemplate": "nucLoadedContentInProgress"; "inProgressMessage": "nucLoadedContentInProgressMessage"; "errorMessage": "nucLoadedContentErrorMessage"; "showRetry": "nucLoadedContentShowRetry"; }, {}, never, never, false>;
|
|
23
23
|
}
|
|
@@ -9,5 +9,5 @@ export declare class NucSwipeTabsDirective implements OnInit {
|
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
private getOffset;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<NucSwipeTabsDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NucSwipeTabsDirective, "[nucSwipe]", never, {}, {}, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NucSwipeTabsDirective, "[nucSwipe]", never, {}, {}, never, never, false>;
|
|
13
13
|
}
|
|
@@ -10,5 +10,5 @@ export declare class NucUserAvatarComponent {
|
|
|
10
10
|
getUserInitials(): string;
|
|
11
11
|
getHslString(): string;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<NucUserAvatarComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NucUserAvatarComponent, "nuc-user-avatar", never, { "name": "name"; "image": "image"; "size": "size"; "background": "background"; }, {}, never, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NucUserAvatarComponent, "nuc-user-avatar", never, { "name": "name"; "image": "image"; "size": "size"; "background": "background"; }, {}, never, never, false>;
|
|
14
14
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolektor/nucleus-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10-pre.6137",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/material": "^
|
|
8
|
-
"@types/winrt-uwp": "^0.0.
|
|
5
|
+
"@angular/common": "^14.0.0",
|
|
6
|
+
"@angular/core": "^14.0.0",
|
|
7
|
+
"@angular/material": "^14.0.0",
|
|
8
|
+
"@types/winrt-uwp": "^0.0.23"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"tslib": "^2.0.0"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"esm2020": "esm2020/kolektor-nucleus-material.mjs",
|
|
16
16
|
"fesm2020": "fesm2020/kolektor-nucleus-material.mjs",
|
|
17
17
|
"fesm2015": "fesm2015/kolektor-nucleus-material.mjs",
|
|
18
|
-
"typings": "
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
19
|
"exports": {
|
|
20
20
|
"./package.json": {
|
|
21
21
|
"default": "./package.json"
|
|
22
22
|
},
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
25
|
"esm2020": "./esm2020/kolektor-nucleus-material.mjs",
|
|
26
26
|
"es2020": "./fesm2020/kolektor-nucleus-material.mjs",
|
|
27
27
|
"es2015": "./fesm2015/kolektor-nucleus-material.mjs",
|