@verisoft/ui-core 20.2.0 → 21.0.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/package.json
CHANGED
|
@@ -1,32 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verisoft/ui-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@verisoft/core": "~
|
|
6
|
-
"@verisoft/store": "~
|
|
7
|
-
"@angular/core": "~
|
|
8
|
-
"@angular/common": "~
|
|
9
|
-
"@angular/forms": "~
|
|
10
|
-
"@angular/platform-browser": "~
|
|
11
|
-
"@angular/router": "~
|
|
12
|
-
"@ngrx/store": "~
|
|
5
|
+
"@verisoft/core": "~21.0.0",
|
|
6
|
+
"@verisoft/store": "~21.0.0",
|
|
7
|
+
"@angular/core": "~21.0.6",
|
|
8
|
+
"@angular/common": "~21.0.6",
|
|
9
|
+
"@angular/forms": "~21.0.6",
|
|
10
|
+
"@angular/platform-browser": "~21.0.6",
|
|
11
|
+
"@angular/router": "~21.0.6",
|
|
12
|
+
"@ngrx/store": "~21.0.0",
|
|
13
13
|
"@ngx-translate/core": "^17.0.0",
|
|
14
14
|
"rxjs": "~7.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"
|
|
18
|
-
"uuid": "^11.0.0",
|
|
17
|
+
"uuid": "^13.0.0",
|
|
19
18
|
"tslib": "^2.3.0"
|
|
20
19
|
},
|
|
21
20
|
"sideEffects": false,
|
|
22
21
|
"module": "fesm2022/verisoft-ui-core.mjs",
|
|
23
|
-
"typings": "
|
|
22
|
+
"typings": "types/verisoft-ui-core.d.ts",
|
|
24
23
|
"exports": {
|
|
25
24
|
"./package.json": {
|
|
26
25
|
"default": "./package.json"
|
|
27
26
|
},
|
|
28
27
|
".": {
|
|
29
|
-
"types": "./
|
|
28
|
+
"types": "./types/verisoft-ui-core.d.ts",
|
|
30
29
|
"default": "./fesm2022/verisoft-ui-core.mjs"
|
|
31
30
|
}
|
|
32
31
|
}
|
|
@@ -145,10 +145,6 @@ interface CommonIcons {
|
|
|
145
145
|
check: string;
|
|
146
146
|
envelope: string;
|
|
147
147
|
loader: string;
|
|
148
|
-
file: string;
|
|
149
|
-
map: string;
|
|
150
|
-
arrowCounterclockwise: string;
|
|
151
|
-
folder: string;
|
|
152
148
|
}
|
|
153
149
|
|
|
154
150
|
declare function downloadText(filename: string, text: string, mimeType?: string | undefined): void;
|
|
@@ -610,6 +606,8 @@ interface HeaderCore {
|
|
|
610
606
|
userName: string;
|
|
611
607
|
logoUrl: string;
|
|
612
608
|
userRole: any | any[] | undefined;
|
|
609
|
+
fixed: boolean;
|
|
610
|
+
userAvatar: string;
|
|
613
611
|
menuRef: HTMLDivElement;
|
|
614
612
|
}
|
|
615
613
|
|