@yelon/bis 12.0.10 → 12.0.11
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/LICENSE +21 -21
- package/bis.d.ts +4 -4
- package/bundles/bis.umd.js +7 -7
- package/bundles/layout.umd.js +1609 -1609
- package/bundles/shared.umd.js +1225 -1225
- package/esm2015/bis.js +4 -4
- package/esm2015/layout/bis.config.js +10 -10
- package/esm2015/layout/layout.js +5 -5
- package/esm2015/layout/layout.module.js +34 -34
- package/esm2015/layout/public_api.js +10 -10
- package/esm2015/layout/stomp.config.js +19 -19
- package/esm2015/layout/widgets/index.js +7 -7
- package/esm2015/layout/widgets/yz.application.component.js +132 -132
- package/esm2015/layout/widgets/yz.clear-storage.component.js +35 -35
- package/esm2015/layout/widgets/yz.fullscreen.component.js +32 -32
- package/esm2015/layout/widgets/yz.i18n.component.js +50 -50
- package/esm2015/layout/widgets/yz.notify.component.js +143 -143
- package/esm2015/layout/widgets/yz.them-btn.component.js +106 -106
- package/esm2015/layout/widgets/yz.user.component.js +57 -57
- package/esm2015/layout/yz.auth.service.js +157 -157
- package/esm2015/layout/yz.basic.component.js +40 -40
- package/esm2015/layout/yz.default.interceptor.js +191 -191
- package/esm2015/layout/yz.i18n.service.js +103 -103
- package/esm2015/layout/yz.startup.service.js +137 -137
- package/esm2015/layout/yz.stomp.service.js +90 -90
- package/esm2015/public_api.js +1 -1
- package/esm2015/shared/public_api.js +4 -4
- package/esm2015/shared/shared-yelon.module.js +107 -107
- package/esm2015/shared/shared-zorro.module.js +78 -78
- package/esm2015/shared/shared.js +4 -4
- package/esm2015/shared/shared.module.js +15 -15
- package/esm2015/shared/style-icons.js +795 -795
- package/fesm2015/bis.js +2 -2
- package/fesm2015/layout.js +1207 -1207
- package/fesm2015/shared.js +901 -901
- package/layout/bis.config.d.ts +3 -3
- package/layout/layout.d.ts +5 -5
- package/layout/layout.module.d.ts +2 -2
- package/layout/public_api.d.ts +10 -10
- package/layout/stomp.config.d.ts +3 -3
- package/layout/widgets/index.d.ts +7 -7
- package/layout/widgets/yz.application.component.d.ts +45 -45
- package/layout/widgets/yz.clear-storage.component.d.ts +8 -8
- package/layout/widgets/yz.fullscreen.component.d.ts +6 -6
- package/layout/widgets/yz.i18n.component.d.ts +19 -19
- package/layout/widgets/yz.notify.component.d.ts +25 -25
- package/layout/widgets/yz.them-btn.component.d.ts +29 -29
- package/layout/widgets/yz.user.component.d.ts +25 -25
- package/layout/yz.auth.service.d.ts +19 -19
- package/layout/yz.basic.component.d.ts +15 -15
- package/layout/yz.default.interceptor.d.ts +25 -25
- package/layout/yz.i18n.service.d.ts +24 -24
- package/layout/yz.startup.service.d.ts +31 -31
- package/layout/yz.stomp.service.d.ts +39 -39
- package/package.json +10 -10
- package/public_api.d.ts +2 -2
- package/shared/public_api.d.ts +4 -4
- package/shared/shared-yelon.module.d.ts +3 -3
- package/shared/shared-zorro.module.d.ts +2 -2
- package/shared/shared.d.ts +4 -4
- package/shared/shared.module.d.ts +2 -2
- package/shared/style-icons.d.ts +1 -1
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
import { Injector } from '@angular/core';
|
|
2
|
-
import { Observable, Subscription } from 'rxjs';
|
|
3
|
-
import { RxStomp } from '@stomp/rx-stomp';
|
|
4
|
-
import { IRxStompPublishParams } from '@stomp/rx-stomp/esm6/i-rx-stomp-publish-params';
|
|
5
|
-
import { IMessage, StompHeaders } from '@stomp/stompjs';
|
|
6
|
-
import { NzSafeAny } from 'ng-zorro-antd/core/types';
|
|
7
|
-
import { NzNotificationService } from 'ng-zorro-antd/notification';
|
|
8
|
-
import { CacheService } from '@yelon/cache';
|
|
9
|
-
import { YunzaiBusinessConfig, YunzaiConfigService, YunzaiStompConfig } from '@yelon/util';
|
|
10
|
-
export interface StompMessage {
|
|
11
|
-
title?: string;
|
|
12
|
-
content?: string;
|
|
13
|
-
href?: string;
|
|
14
|
-
type?: string;
|
|
15
|
-
}
|
|
16
|
-
export interface IconStompMessage extends StompMessage {
|
|
17
|
-
icon?: string;
|
|
18
|
-
}
|
|
19
|
-
export interface UserStompMessage extends StompMessage {
|
|
20
|
-
useruri?: string;
|
|
21
|
-
}
|
|
22
|
-
export declare class YzStompService {
|
|
23
|
-
private csr;
|
|
24
|
-
private cache;
|
|
25
|
-
private injector;
|
|
26
|
-
private notification;
|
|
27
|
-
config: YunzaiStompConfig;
|
|
28
|
-
bisConfig: YunzaiBusinessConfig;
|
|
29
|
-
rxStomp: RxStomp;
|
|
30
|
-
user: NzSafeAny;
|
|
31
|
-
subs: Subscription[];
|
|
32
|
-
constructor(csr: YunzaiConfigService, cache: CacheService, injector: Injector, notification: NzNotificationService);
|
|
33
|
-
listen(): void;
|
|
34
|
-
createNotification(message: StompMessage): void;
|
|
35
|
-
logoutNotification(message: StompMessage): void;
|
|
36
|
-
unListen(): void;
|
|
37
|
-
publish(parameters: IRxStompPublishParams): void;
|
|
38
|
-
watch(destination: string, headers?: StompHeaders): Observable<IMessage>;
|
|
39
|
-
}
|
|
1
|
+
import { Injector } from '@angular/core';
|
|
2
|
+
import { Observable, Subscription } from 'rxjs';
|
|
3
|
+
import { RxStomp } from '@stomp/rx-stomp';
|
|
4
|
+
import { IRxStompPublishParams } from '@stomp/rx-stomp/esm6/i-rx-stomp-publish-params';
|
|
5
|
+
import { IMessage, StompHeaders } from '@stomp/stompjs';
|
|
6
|
+
import { NzSafeAny } from 'ng-zorro-antd/core/types';
|
|
7
|
+
import { NzNotificationService } from 'ng-zorro-antd/notification';
|
|
8
|
+
import { CacheService } from '@yelon/cache';
|
|
9
|
+
import { YunzaiBusinessConfig, YunzaiConfigService, YunzaiStompConfig } from '@yelon/util';
|
|
10
|
+
export interface StompMessage {
|
|
11
|
+
title?: string;
|
|
12
|
+
content?: string;
|
|
13
|
+
href?: string;
|
|
14
|
+
type?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface IconStompMessage extends StompMessage {
|
|
17
|
+
icon?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface UserStompMessage extends StompMessage {
|
|
20
|
+
useruri?: string;
|
|
21
|
+
}
|
|
22
|
+
export declare class YzStompService {
|
|
23
|
+
private csr;
|
|
24
|
+
private cache;
|
|
25
|
+
private injector;
|
|
26
|
+
private notification;
|
|
27
|
+
config: YunzaiStompConfig;
|
|
28
|
+
bisConfig: YunzaiBusinessConfig;
|
|
29
|
+
rxStomp: RxStomp;
|
|
30
|
+
user: NzSafeAny;
|
|
31
|
+
subs: Subscription[];
|
|
32
|
+
constructor(csr: YunzaiConfigService, cache: CacheService, injector: Injector, notification: NzNotificationService);
|
|
33
|
+
listen(): void;
|
|
34
|
+
createNotification(message: StompMessage): void;
|
|
35
|
+
logoutNotification(message: StompMessage): void;
|
|
36
|
+
unListen(): void;
|
|
37
|
+
publish(parameters: IRxStompPublishParams): void;
|
|
38
|
+
watch(destination: string, headers?: StompHeaders): Observable<IMessage>;
|
|
39
|
+
}
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yelon/bis",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.11",
|
|
4
4
|
"author": "devcui<devcui@outlook.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"ng-zorro-antd": "^12.0.1",
|
|
8
|
-
"@yelon/acl": "^12.0.
|
|
9
|
-
"@yelon/auth": "^12.0.
|
|
10
|
-
"@yelon/theme": "^12.0.
|
|
11
|
-
"@yelon/mock": "^12.0.
|
|
12
|
-
"@yelon/cache": "^12.0.
|
|
13
|
-
"@yelon/chart": "^12.0.
|
|
14
|
-
"@yelon/form": "^12.0.
|
|
15
|
-
"@yelon/testing": "^12.0.
|
|
16
|
-
"@yelon/util": "^12.0.
|
|
8
|
+
"@yelon/acl": "^12.0.11",
|
|
9
|
+
"@yelon/auth": "^12.0.11",
|
|
10
|
+
"@yelon/theme": "^12.0.11",
|
|
11
|
+
"@yelon/mock": "^12.0.11",
|
|
12
|
+
"@yelon/cache": "^12.0.11",
|
|
13
|
+
"@yelon/chart": "^12.0.11",
|
|
14
|
+
"@yelon/form": "^12.0.11",
|
|
15
|
+
"@yelon/testing": "^12.0.11",
|
|
16
|
+
"@yelon/util": "^12.0.11",
|
|
17
17
|
"tslib": "^2.2.0"
|
|
18
18
|
},
|
|
19
19
|
"main": "bundles/bis.umd.js",
|
package/public_api.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: undefined;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: undefined;
|
|
2
|
+
export default _default;
|
package/shared/public_api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './shared-yelon.module';
|
|
2
|
-
export * from './shared-zorro.module';
|
|
3
|
-
export * from './shared.module';
|
|
4
|
-
export * from './style-icons';
|
|
1
|
+
export * from './shared-yelon.module';
|
|
2
|
+
export * from './shared-zorro.module';
|
|
3
|
+
export * from './shared.module';
|
|
4
|
+
export * from './style-icons';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { NoticeIconModule } from '@yelon/abc/notice-icon';
|
|
2
|
-
import { YunzaiThemeModule } from '@yelon/theme';
|
|
3
|
-
export declare const YZ_SHARED_YELON_MODULES: (typeof YunzaiThemeModule | typeof NoticeIconModule)[];
|
|
1
|
+
import { NoticeIconModule } from '@yelon/abc/notice-icon';
|
|
2
|
+
import { YunzaiThemeModule } from '@yelon/theme';
|
|
3
|
+
export declare const YZ_SHARED_YELON_MODULES: (typeof YunzaiThemeModule | typeof NoticeIconModule)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const YZ_SHARED_ZORRO_MODULES: (typeof
|
|
1
|
+
import { NzBackTopModule } from 'ng-zorro-antd/back-top';
|
|
2
|
+
export declare const YZ_SHARED_ZORRO_MODULES: (typeof NzBackTopModule)[];
|
package/shared/shared.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public_api';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class YzSharedModule {
|
|
2
|
-
}
|
|
1
|
+
export declare class YzSharedModule {
|
|
2
|
+
}
|
package/shared/style-icons.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ICONS: import("@ant-design/icons-angular").IconDefinition[];
|
|
1
|
+
export declare const ICONS: import("@ant-design/icons-angular").IconDefinition[];
|