@solar-angular/ui-zorro 1.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/README.md +7 -0
- package/crud/editor-drawer/editor-drawer.component.d.ts +9 -0
- package/crud/editor-drawer/index.d.ts +1 -0
- package/crud/editor.d.ts +35 -0
- package/crud/index.d.ts +4 -0
- package/crud/page.d.ts +52 -0
- package/crud/searcher.d.ts +8 -0
- package/esm2022/crud/editor-drawer/editor-drawer.component.mjs +34 -0
- package/esm2022/crud/editor-drawer/index.mjs +2 -0
- package/esm2022/crud/editor.mjs +65 -0
- package/esm2022/crud/index.mjs +5 -0
- package/esm2022/crud/page.mjs +69 -0
- package/esm2022/crud/searcher.mjs +9 -0
- package/esm2022/crud/solar-angular-ui-zorro-crud.mjs +5 -0
- package/esm2022/fluent-form/components.mjs +15 -0
- package/esm2022/fluent-form/controls.mjs +104 -0
- package/esm2022/fluent-form/form.mjs +15 -0
- package/esm2022/fluent-form/index.mjs +5 -0
- package/esm2022/fluent-form/patchers.mjs +57 -0
- package/esm2022/fluent-form/solar-angular-ui-zorro-fluent-form.mjs +5 -0
- package/esm2022/fluent-form/typing.mjs +2 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/media-uploader/index.mjs +2 -0
- package/esm2022/media-uploader/media-uploader.component.mjs +175 -0
- package/esm2022/media-uploader/solar-angular-ui-zorro-media-uploader.mjs +5 -0
- package/esm2022/message/index.mjs +2 -0
- package/esm2022/message/message.service.mjs +36 -0
- package/esm2022/message/solar-angular-ui-zorro-message.mjs +5 -0
- package/esm2022/page-forbidden/forbidden.page.mjs +25 -0
- package/esm2022/page-forbidden/index.mjs +4 -0
- package/esm2022/page-forbidden/solar-angular-ui-zorro-page-forbidden.mjs +5 -0
- package/esm2022/page-logout/index.mjs +4 -0
- package/esm2022/page-logout/logout.page.mjs +36 -0
- package/esm2022/page-logout/solar-angular-ui-zorro-page-logout.mjs +5 -0
- package/esm2022/page-not-found/index.mjs +4 -0
- package/esm2022/page-not-found/not-found.page.mjs +25 -0
- package/esm2022/page-not-found/solar-angular-ui-zorro-page-not-found.mjs +5 -0
- package/esm2022/solar-angular-ui-zorro.mjs +5 -0
- package/esm2022/updater/app-updater.mjs +27 -0
- package/esm2022/updater/index.mjs +3 -0
- package/esm2022/updater/solar-angular-ui-zorro-updater.mjs +5 -0
- package/esm2022/updater/updater.component.mjs +71 -0
- package/fesm2022/solar-angular-ui-zorro-crud.mjs +180 -0
- package/fesm2022/solar-angular-ui-zorro-crud.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-fluent-form.mjs +196 -0
- package/fesm2022/solar-angular-ui-zorro-fluent-form.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-media-uploader.mjs +182 -0
- package/fesm2022/solar-angular-ui-zorro-media-uploader.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-message.mjs +43 -0
- package/fesm2022/solar-angular-ui-zorro-message.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-page-forbidden.mjs +32 -0
- package/fesm2022/solar-angular-ui-zorro-page-forbidden.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-page-logout.mjs +43 -0
- package/fesm2022/solar-angular-ui-zorro-page-logout.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-page-not-found.mjs +32 -0
- package/fesm2022/solar-angular-ui-zorro-page-not-found.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro-updater.mjs +102 -0
- package/fesm2022/solar-angular-ui-zorro-updater.mjs.map +1 -0
- package/fesm2022/solar-angular-ui-zorro.mjs +6 -0
- package/fesm2022/solar-angular-ui-zorro.mjs.map +1 -0
- package/fluent-form/components.d.ts +6 -0
- package/fluent-form/controls.d.ts +45 -0
- package/fluent-form/form.d.ts +8 -0
- package/fluent-form/index.d.ts +4 -0
- package/fluent-form/patchers.d.ts +10 -0
- package/fluent-form/typing.d.ts +1 -0
- package/index.d.ts +2 -0
- package/media-uploader/index.d.ts +1 -0
- package/media-uploader/media-uploader.component.d.ts +53 -0
- package/message/index.d.ts +1 -0
- package/message/message.service.d.ts +13 -0
- package/package.json +85 -0
- package/page-forbidden/forbidden.page.d.ts +5 -0
- package/page-forbidden/index.d.ts +3 -0
- package/page-logout/index.d.ts +3 -0
- package/page-logout/logout.page.d.ts +10 -0
- package/page-not-found/index.d.ts +3 -0
- package/page-not-found/not-found.page.d.ts +5 -0
- package/updater/app-updater.d.ts +10 -0
- package/updater/index.d.ts +2 -0
- package/updater/updater.component.d.ts +14 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@solar-angular/ui-zorro",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"sideEffects": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"peerDependencies": {
|
|
9
|
+
"@angular/cdk": "^18.0.0",
|
|
10
|
+
"@angular/common": "^18.0.0",
|
|
11
|
+
"@angular/core": "^18.0.0",
|
|
12
|
+
"@angular/forms": "^18.0.0",
|
|
13
|
+
"@angular/service-worker": "^18.0.0",
|
|
14
|
+
"@fluent-form/core": ">=0.27.0",
|
|
15
|
+
"@fluent-form/ui-zorro": ">=0.27.0",
|
|
16
|
+
"@solar-angular/core": "0.0.0",
|
|
17
|
+
"@solar-angular/planets": "0.0.0",
|
|
18
|
+
"@solar-angular/platform-browser": "0.0.0",
|
|
19
|
+
"ng-zorro-antd": "^18.0.0"
|
|
20
|
+
},
|
|
21
|
+
"module": "fesm2022/solar-angular-ui-zorro.mjs",
|
|
22
|
+
"typings": "index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
"./package.json": {
|
|
25
|
+
"default": "./package.json"
|
|
26
|
+
},
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./index.d.ts",
|
|
29
|
+
"esm2022": "./esm2022/solar-angular-ui-zorro.mjs",
|
|
30
|
+
"esm": "./esm2022/solar-angular-ui-zorro.mjs",
|
|
31
|
+
"default": "./fesm2022/solar-angular-ui-zorro.mjs"
|
|
32
|
+
},
|
|
33
|
+
"./crud": {
|
|
34
|
+
"types": "./crud/index.d.ts",
|
|
35
|
+
"esm2022": "./esm2022/crud/solar-angular-ui-zorro-crud.mjs",
|
|
36
|
+
"esm": "./esm2022/crud/solar-angular-ui-zorro-crud.mjs",
|
|
37
|
+
"default": "./fesm2022/solar-angular-ui-zorro-crud.mjs"
|
|
38
|
+
},
|
|
39
|
+
"./fluent-form": {
|
|
40
|
+
"types": "./fluent-form/index.d.ts",
|
|
41
|
+
"esm2022": "./esm2022/fluent-form/solar-angular-ui-zorro-fluent-form.mjs",
|
|
42
|
+
"esm": "./esm2022/fluent-form/solar-angular-ui-zorro-fluent-form.mjs",
|
|
43
|
+
"default": "./fesm2022/solar-angular-ui-zorro-fluent-form.mjs"
|
|
44
|
+
},
|
|
45
|
+
"./media-uploader": {
|
|
46
|
+
"types": "./media-uploader/index.d.ts",
|
|
47
|
+
"esm2022": "./esm2022/media-uploader/solar-angular-ui-zorro-media-uploader.mjs",
|
|
48
|
+
"esm": "./esm2022/media-uploader/solar-angular-ui-zorro-media-uploader.mjs",
|
|
49
|
+
"default": "./fesm2022/solar-angular-ui-zorro-media-uploader.mjs"
|
|
50
|
+
},
|
|
51
|
+
"./message": {
|
|
52
|
+
"types": "./message/index.d.ts",
|
|
53
|
+
"esm2022": "./esm2022/message/solar-angular-ui-zorro-message.mjs",
|
|
54
|
+
"esm": "./esm2022/message/solar-angular-ui-zorro-message.mjs",
|
|
55
|
+
"default": "./fesm2022/solar-angular-ui-zorro-message.mjs"
|
|
56
|
+
},
|
|
57
|
+
"./page-forbidden": {
|
|
58
|
+
"types": "./page-forbidden/index.d.ts",
|
|
59
|
+
"esm2022": "./esm2022/page-forbidden/solar-angular-ui-zorro-page-forbidden.mjs",
|
|
60
|
+
"esm": "./esm2022/page-forbidden/solar-angular-ui-zorro-page-forbidden.mjs",
|
|
61
|
+
"default": "./fesm2022/solar-angular-ui-zorro-page-forbidden.mjs"
|
|
62
|
+
},
|
|
63
|
+
"./page-logout": {
|
|
64
|
+
"types": "./page-logout/index.d.ts",
|
|
65
|
+
"esm2022": "./esm2022/page-logout/solar-angular-ui-zorro-page-logout.mjs",
|
|
66
|
+
"esm": "./esm2022/page-logout/solar-angular-ui-zorro-page-logout.mjs",
|
|
67
|
+
"default": "./fesm2022/solar-angular-ui-zorro-page-logout.mjs"
|
|
68
|
+
},
|
|
69
|
+
"./page-not-found": {
|
|
70
|
+
"types": "./page-not-found/index.d.ts",
|
|
71
|
+
"esm2022": "./esm2022/page-not-found/solar-angular-ui-zorro-page-not-found.mjs",
|
|
72
|
+
"esm": "./esm2022/page-not-found/solar-angular-ui-zorro-page-not-found.mjs",
|
|
73
|
+
"default": "./fesm2022/solar-angular-ui-zorro-page-not-found.mjs"
|
|
74
|
+
},
|
|
75
|
+
"./updater": {
|
|
76
|
+
"types": "./updater/index.d.ts",
|
|
77
|
+
"esm2022": "./esm2022/updater/solar-angular-ui-zorro-updater.mjs",
|
|
78
|
+
"esm": "./esm2022/updater/solar-angular-ui-zorro-updater.mjs",
|
|
79
|
+
"default": "./fesm2022/solar-angular-ui-zorro-updater.mjs"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"tslib": "^2.3.0"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SunLogoutPage {
|
|
4
|
+
private router;
|
|
5
|
+
protected readonly interval$: import("rxjs").Observable<number>;
|
|
6
|
+
constructor(router: Router);
|
|
7
|
+
login(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SunLogoutPage, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SunLogoutPage, "sun-logout", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SwUpdate } from '@angular/service-worker';
|
|
2
|
+
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AppUpdater {
|
|
5
|
+
protected readonly update: SwUpdate;
|
|
6
|
+
protected readonly message: NzMessageService;
|
|
7
|
+
checkForUpdate(): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppUpdater, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppUpdater>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { NzNotificationComponent } from 'ng-zorro-antd/notification';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SunUpdater {
|
|
5
|
+
private readonly location;
|
|
6
|
+
private readonly notification;
|
|
7
|
+
templateRef: TemplateRef<any>;
|
|
8
|
+
constructor();
|
|
9
|
+
private present;
|
|
10
|
+
update(): void;
|
|
11
|
+
defer(notification: NzNotificationComponent): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SunUpdater, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SunUpdater, "sun-updater", never, {}, {}, never, never, true, never>;
|
|
14
|
+
}
|