@sd-angular/core 19.0.0-beta.49 → 19.0.0-beta.50
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/components/tab-router/src/components/tab-router-outlet/tab-router-outlet.component.d.ts +3 -15
- package/fesm2022/sd-angular-core-components-tab-router.mjs +140 -223
- package/fesm2022/sd-angular-core-components-tab-router.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules-layout.mjs +419 -454
- package/fesm2022/sd-angular-core-modules-layout.mjs.map +1 -1
- package/modules/layout/components/layout-main/layout-main.component.d.ts +7 -12
- package/modules/layout/components/sidebar-v1/components/sidebar/sidebar.component.d.ts +22 -30
- package/modules/layout/components/sidebar-v1/components/user/user.component.d.ts +10 -19
- package/modules/layout/components/sidebar-v1/main.component.d.ts +14 -14
- package/modules/layout/configurations/layout.configuration.d.ts +46 -6
- package/modules/layout/modules/forbidden/pages/root/root.component.d.ts +3 -8
- package/modules/layout/modules/home/components/home-page/home-page.component.d.ts +2 -5
- package/modules/layout/modules/not-found/pages/root/root.component.d.ts +3 -8
- package/modules/layout/services/index.d.ts +1 -0
- package/modules/layout/services/layout.service.d.ts +10 -0
- package/modules/layout/services/storage/storage.service.d.ts +0 -4
- package/package.json +63 -63
- package/sd-angular-core-19.0.0-beta.49.tgz +0 -0
|
@@ -1,39 +1,31 @@
|
|
|
1
1
|
import { NestedTreeControl } from '@angular/cdk/tree';
|
|
2
|
-
import { Params, Router } from '@angular/router';
|
|
3
2
|
import { MatTreeNestedDataSource } from '@angular/material/tree';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import { ISdLayoutConfiguration, ISidebarConfigurationV1 } from '../../../../configurations';
|
|
3
|
+
import { Params } from '@angular/router';
|
|
4
|
+
import { SdLayoutUserInfo, SidebarConfigurationV1 } from '../../../../configurations';
|
|
5
|
+
import { SdLayoutMenu } from '../../../../services';
|
|
8
6
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class
|
|
7
|
+
export declare class SidebarComponent {
|
|
10
8
|
#private;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
popupUserMenuOpened: EventEmitter<void>;
|
|
20
|
-
showSideBar: EventEmitter<boolean | null>;
|
|
21
|
-
menusOrigin: SdLayoutMenu[];
|
|
9
|
+
isShowSidebar: import("@angular/core").InputSignal<boolean>;
|
|
10
|
+
menus: import("@angular/core").InputSignal<SdLayoutMenu[]>;
|
|
11
|
+
userInfo: import("@angular/core").InputSignal<SdLayoutUserInfo>;
|
|
12
|
+
sidebar: import("@angular/core").InputSignal<SidebarConfigurationV1>;
|
|
13
|
+
expandSideBar: import("@angular/core").OutputEmitterRef<void>;
|
|
14
|
+
popupUserMenuClosed: import("@angular/core").OutputEmitterRef<void>;
|
|
15
|
+
popupUserMenuOpened: import("@angular/core").OutputEmitterRef<void>;
|
|
16
|
+
showSideBar: import("@angular/core").OutputEmitterRef<boolean | null>;
|
|
22
17
|
screenHeight: number;
|
|
23
|
-
searchText: string;
|
|
24
|
-
isMenuLock: boolean;
|
|
25
|
-
currentPath: string;
|
|
26
|
-
titleMenuGroup: string | undefined;
|
|
27
18
|
isMobileOrTablet: boolean;
|
|
28
|
-
|
|
19
|
+
isMenuLock: import("@angular/core").WritableSignal<boolean>;
|
|
20
|
+
currentPath: import("@angular/core").WritableSignal<string>;
|
|
21
|
+
searchText: import("@angular/core").WritableSignal<string>;
|
|
22
|
+
titleMenuGroup: import("@angular/core").WritableSignal<string | undefined>;
|
|
23
|
+
idMenuGroupActive: import("@angular/core").WritableSignal<string | undefined>;
|
|
24
|
+
menusByGroup: import("@angular/core").WritableSignal<SdLayoutMenu[]>;
|
|
25
|
+
totalMenuInMenusByGroup: import("@angular/core").Signal<number>;
|
|
29
26
|
dataSource: MatTreeNestedDataSource<SdLayoutMenu>;
|
|
30
|
-
idMenuGroupActive: string | undefined;
|
|
31
|
-
menusByGroup: SdLayoutMenu[];
|
|
32
|
-
totalMenuInMenusByGroup: number;
|
|
33
27
|
treeControl: NestedTreeControl<SdLayoutMenu, SdLayoutMenu>;
|
|
34
|
-
constructor(
|
|
35
|
-
ngOnInit(): Promise<void>;
|
|
36
|
-
ngOnDestroy(): void;
|
|
28
|
+
constructor();
|
|
37
29
|
hasChild: (_: number, node: SdLayoutMenu) => boolean;
|
|
38
30
|
onToggleMenuNode: (menu: SdLayoutMenu) => void;
|
|
39
31
|
toggleMenuLock(event: Event): void;
|
|
@@ -51,6 +43,6 @@ export declare class LayoutSidebarComponent implements OnDestroy, OnInit {
|
|
|
51
43
|
onMouseLeaveMenuGroupNode: (event: MouseEvent, menuNode: SdLayoutMenu) => void;
|
|
52
44
|
onMouseOverMenuNode: (event: MouseEvent, menuItem: SdLayoutMenu) => void;
|
|
53
45
|
onMouseLeaveMenuNode: (event: MouseEvent, menuItem: SdLayoutMenu) => void;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "sidebar", never, { "isShowSidebar": { "alias": "isShowSidebar"; "required": true; "isSignal": true; }; "menus": { "alias": "menus"; "required": true; "isSignal": true; }; "userInfo": { "alias": "userInfo"; "required": true; "isSignal": true; }; "sidebar": { "alias": "sidebar"; "required": true; "isSignal": true; }; }, { "expandSideBar": "expandSideBar"; "popupUserMenuClosed": "popupUserMenuClosed"; "popupUserMenuOpened": "popupUserMenuOpened"; "showSideBar": "showSideBar"; }, never, never, true, never>;
|
|
56
48
|
}
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SdLayoutStorageService } from '../../../../services';
|
|
3
|
-
import { ISdLayoutConfiguration } from '../../../../configurations';
|
|
1
|
+
import { SdLayoutUserInfo } from '../../../../configurations';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
5
3
|
export declare class LayoutUserComponent {
|
|
6
4
|
#private;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
toggleMenuLock: EventEmitter<Event>;
|
|
15
|
-
email: string;
|
|
16
|
-
avatar: string;
|
|
17
|
-
username: string;
|
|
18
|
-
fullName: string;
|
|
5
|
+
isMobileOrTablet: import("@angular/core").InputSignal<boolean>;
|
|
6
|
+
isMenuLock: import("@angular/core").InputSignal<boolean>;
|
|
7
|
+
isShowSidebar: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
userInfo: import("@angular/core").InputSignal<SdLayoutUserInfo>;
|
|
9
|
+
menuClosed: import("@angular/core").OutputEmitterRef<void>;
|
|
10
|
+
menuOpened: import("@angular/core").OutputEmitterRef<void>;
|
|
11
|
+
toggleMenuLock: import("@angular/core").OutputEmitterRef<Event>;
|
|
19
12
|
singoutLayoutConfig: () => void | Promise<void>;
|
|
20
|
-
changePasswordLayoutConfig
|
|
21
|
-
constructor(layoutConfiguration: ISdLayoutConfiguration, layoutStorageService: SdLayoutStorageService);
|
|
22
|
-
ngOnInit(): Promise<void>;
|
|
13
|
+
changePasswordLayoutConfig: (() => void | Promise<void>) | undefined;
|
|
23
14
|
onMenuOpened: () => void;
|
|
24
15
|
onMenuClosed: () => void;
|
|
25
16
|
keepOpenWhenClickInsideMenu: (event: Event) => void;
|
|
@@ -27,5 +18,5 @@ export declare class LayoutUserComponent {
|
|
|
27
18
|
changePassword: () => void;
|
|
28
19
|
onToggleMenuLock: (event: Event) => void;
|
|
29
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutUserComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutUserComponent, "lib-layout-user", never, { "isMobileOrTablet": { "alias": "isMobileOrTablet"; "required": false; }; "isMenuLock": { "alias": "isMenuLock"; "required": false; }; "isShowSidebar": { "alias": "isShowSidebar"; "required": false; }; }, { "menuClosed": "menuClosed"; "menuOpened": "menuOpened"; "toggleMenuLock": "toggleMenuLock"; }, never, never, true, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutUserComponent, "lib-layout-user", never, { "isMobileOrTablet": { "alias": "isMobileOrTablet"; "required": false; "isSignal": true; }; "isMenuLock": { "alias": "isMenuLock"; "required": false; "isSignal": true; }; "isShowSidebar": { "alias": "isShowSidebar"; "required": false; "isSignal": true; }; "userInfo": { "alias": "userInfo"; "required": true; "isSignal": true; }; }, { "menuClosed": "menuClosed"; "menuOpened": "menuOpened"; "toggleMenuLock": "toggleMenuLock"; }, never, never, true, never>;
|
|
31
22
|
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { MatSidenav } from '@angular/material/sidenav';
|
|
2
|
-
import {
|
|
2
|
+
import { SdLayoutUserInfo, SidebarConfigurationV1 } from '../../configurations';
|
|
3
|
+
import { SdLayoutMenu } from '../../services';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
5
|
+
export declare class SidebarV1Component {
|
|
5
6
|
#private;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
isMenuLock: boolean
|
|
12
|
-
isShowSidebar: boolean
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
timerMouseOutMenu: ReturnType<typeof setTimeout> | null;
|
|
7
|
+
sidenav: import("@angular/core").Signal<MatSidenav>;
|
|
8
|
+
menus: import("@angular/core").InputSignal<SdLayoutMenu[]>;
|
|
9
|
+
userInfo: import("@angular/core").InputSignal<SdLayoutUserInfo>;
|
|
10
|
+
sidebar: import("@angular/core").InputSignal<SidebarConfigurationV1>;
|
|
11
|
+
isMobileOrTablet: import("@angular/core").WritableSignal<boolean>;
|
|
12
|
+
isMenuLock: import("@angular/core").WritableSignal<boolean>;
|
|
13
|
+
isShowSidebar: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
onhover: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
constructor();
|
|
16
16
|
openSidebar: () => void;
|
|
17
17
|
onPopupOfSideBarOpened: () => void;
|
|
18
18
|
onPopupOfSideBarClosed: () => void;
|
|
19
19
|
onExpandSideBar: () => void;
|
|
20
20
|
onMouseleaveSideBar: () => void;
|
|
21
21
|
onToggle: (data: boolean | null) => void;
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarV1Component, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarV1Component, "sidebar-v1", never, { "menus": { "alias": "menus"; "required": false; "isSignal": true; }; "userInfo": { "alias": "userInfo"; "required": true; "isSignal": true; }; "sidebar": { "alias": "sidebar"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
24
24
|
}
|
|
@@ -1,19 +1,59 @@
|
|
|
1
1
|
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { SdMaybeAsync } from '@sd-angular/core/utilities/models';
|
|
2
3
|
export interface ISdLayoutConfiguration {
|
|
3
4
|
homeUrl?: string;
|
|
4
|
-
sidebar: ISdSidebarConfiguration | (() =>
|
|
5
|
+
sidebar: ISdSidebarConfiguration | (() => SdMaybeAsync<ISdSidebarConfiguration>);
|
|
6
|
+
userInfo: SdLayoutUserInfo | (() => SdMaybeAsync<SdLayoutUserInfo>);
|
|
5
7
|
signout: () => void | Promise<void>;
|
|
6
8
|
changePassword?: () => void | Promise<void>;
|
|
7
9
|
}
|
|
8
|
-
export
|
|
9
|
-
|
|
10
|
+
export interface SdLayoutUserInfo {
|
|
11
|
+
/**
|
|
12
|
+
* Tên đăng nhập hoặc tên định danh của người dùng.
|
|
13
|
+
* Thường dùng làm định danh rút gọn hoặc fallback hiển thị nếu user chưa cập nhật fullName.
|
|
14
|
+
*/
|
|
15
|
+
username?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Địa chỉ thư điện tử của người dùng.
|
|
18
|
+
* Thường được hiển thị bên dưới tên người dùng trong popup/menu thông tin tài khoản.
|
|
19
|
+
*/
|
|
20
|
+
email?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Họ và tên đầy đủ của người dùng.
|
|
23
|
+
* Đây là thông tin được ưu tiên hiển thị chính trên giao diện (VD: góc phải màn hình, lời chào).
|
|
24
|
+
*/
|
|
25
|
+
fullName?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Hình đại diện (avatar) của người dùng.
|
|
28
|
+
* Nếu để trống, hệ thống sẽ tự động lấy ký tự đầu tiên của fullName hoặc username để tạo avatar mặc định.
|
|
29
|
+
* Hỗ trợ các định dạng: URL (http/https), chuỗi base64 (data:image), hoặc đường dẫn nội bộ.
|
|
30
|
+
*/
|
|
31
|
+
avatar?: string;
|
|
32
|
+
}
|
|
33
|
+
export type ISdSidebarConfiguration = SidebarConfigurationV1;
|
|
34
|
+
export interface SidebarConfigurationV1 {
|
|
10
35
|
version: 1;
|
|
36
|
+
/**
|
|
37
|
+
* Màu brand chính.
|
|
38
|
+
* Nên sử dụng mã màu #HEX hoặc rgb để hỗ trợ opacity khi hover.
|
|
39
|
+
* Ví dụ: #1890ff, rgb(24,144,255)
|
|
40
|
+
*/
|
|
11
41
|
brandColor?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Màu brand nhạt (light).
|
|
44
|
+
* Dùng cho background, hover nhẹ.
|
|
45
|
+
*/
|
|
12
46
|
brandLightColor?: string;
|
|
47
|
+
/**
|
|
48
|
+
* URL logo hiển thị ở sidebar.
|
|
49
|
+
* Nên đặt trong thư mục public hoặc dùng URL CDN.
|
|
50
|
+
*/
|
|
13
51
|
logoUrl?: string;
|
|
52
|
+
/**
|
|
53
|
+
* Title mặc định của hệ thống.
|
|
54
|
+
* Nếu menu không truyền title thì sẽ dùng giá trị này.
|
|
55
|
+
* @default "Back Office"
|
|
56
|
+
*/
|
|
14
57
|
defaultTitle?: string;
|
|
15
|
-
defaultInfoUser?: {
|
|
16
|
-
avatar?: string;
|
|
17
|
-
};
|
|
18
58
|
}
|
|
19
59
|
export declare const SD_LAYOUT_CONFIGURATION: InjectionToken<ISdLayoutConfiguration>;
|
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import { ActivatedRoute } from '@angular/router';
|
|
2
|
-
import { SdLayoutStorageService } from '../../../../services';
|
|
3
1
|
import * as i0 from "@angular/core";
|
|
4
2
|
export declare class RootComponent {
|
|
5
3
|
#private;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
email: string;
|
|
10
|
-
constructor(route: ActivatedRoute, layoutStorageService: SdLayoutStorageService);
|
|
11
|
-
todayInfo: string;
|
|
4
|
+
readonly url: import("@angular/core").WritableSignal<string>;
|
|
5
|
+
readonly todayInfo: import("@angular/core").WritableSignal<string>;
|
|
6
|
+
userInfo: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SdLayoutUserInfo | undefined>;
|
|
12
7
|
reload(): void;
|
|
13
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<RootComponent, never>;
|
|
14
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<RootComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import { SdLayoutStorageService } from '../../../../services';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
2
|
export declare class HomePageComponent {
|
|
4
3
|
#private;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
constructor(layoutStorageService: SdLayoutStorageService);
|
|
8
|
-
todayInfo: string;
|
|
4
|
+
readonly todayInfo: import("@angular/core").WritableSignal<string>;
|
|
5
|
+
userInfo: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SdLayoutUserInfo | undefined>;
|
|
9
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<HomePageComponent, never>;
|
|
10
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<HomePageComponent, "app-home-page", never, {}, {}, never, never, true, never>;
|
|
11
8
|
}
|
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
import { ActivatedRoute } from '@angular/router';
|
|
2
|
-
import { SdLayoutStorageService } from '../../../../services';
|
|
3
1
|
import * as i0 from "@angular/core";
|
|
4
2
|
export declare class RootComponent {
|
|
5
3
|
#private;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
email: string;
|
|
10
|
-
constructor(route: ActivatedRoute, layoutStorageService: SdLayoutStorageService);
|
|
11
|
-
todayInfo: string;
|
|
4
|
+
readonly url: import("@angular/core").WritableSignal<string>;
|
|
5
|
+
readonly todayInfo: import("@angular/core").WritableSignal<string>;
|
|
6
|
+
userInfo: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SdLayoutUserInfo | undefined>;
|
|
12
7
|
reload(): void;
|
|
13
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<RootComponent, never>;
|
|
14
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<RootComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SdLayoutUserInfo } from '../configurations';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SdLayoutService {
|
|
4
|
+
#private;
|
|
5
|
+
userInfo: import("@angular/core").WritableSignal<SdLayoutUserInfo | undefined>;
|
|
6
|
+
sidebar: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SidebarConfigurationV1 | undefined>;
|
|
7
|
+
constructor();
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SdLayoutService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SdLayoutService>;
|
|
10
|
+
}
|
|
@@ -2,10 +2,6 @@ import { SdStorage, SdStorageService } from '@sd-angular/core/services';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SdLayoutStorageService {
|
|
4
4
|
private sdStorageService;
|
|
5
|
-
email: SdStorage<string>;
|
|
6
|
-
avatar: SdStorage<string>;
|
|
7
|
-
username: SdStorage<string>;
|
|
8
|
-
fullName: SdStorage<string>;
|
|
9
5
|
isShowSidebar: SdStorage<boolean>;
|
|
10
6
|
menuLockStatus: SdStorage<boolean>;
|
|
11
7
|
lastActiveMenuGroupId: SdStorage<string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sd-angular/core",
|
|
3
|
-
"version": "19.0.0-beta.
|
|
3
|
+
"version": "19.0.0-beta.50",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.0.0 || ^20.0.0 || ^21.0.0",
|
|
6
6
|
"@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"types": "./index.d.ts",
|
|
31
31
|
"default": "./fesm2022/sd-angular-core.mjs"
|
|
32
32
|
},
|
|
33
|
-
"./
|
|
34
|
-
"types": "./
|
|
35
|
-
"default": "./fesm2022/sd-angular-core-
|
|
33
|
+
"./configurations": {
|
|
34
|
+
"types": "./configurations/index.d.ts",
|
|
35
|
+
"default": "./fesm2022/sd-angular-core-configurations.mjs"
|
|
36
36
|
},
|
|
37
37
|
"./directives": {
|
|
38
38
|
"types": "./directives/index.d.ts",
|
|
39
39
|
"default": "./fesm2022/sd-angular-core-directives.mjs"
|
|
40
40
|
},
|
|
41
|
-
"./
|
|
42
|
-
"types": "./
|
|
43
|
-
"default": "./fesm2022/sd-angular-core-
|
|
41
|
+
"./components": {
|
|
42
|
+
"types": "./components/index.d.ts",
|
|
43
|
+
"default": "./fesm2022/sd-angular-core-components.mjs"
|
|
44
44
|
},
|
|
45
45
|
"./forms": {
|
|
46
46
|
"types": "./forms/index.d.ts",
|
|
@@ -78,10 +78,6 @@
|
|
|
78
78
|
"types": "./components/anchor/index.d.ts",
|
|
79
79
|
"default": "./fesm2022/sd-angular-core-components-anchor.mjs"
|
|
80
80
|
},
|
|
81
|
-
"./components/avatar": {
|
|
82
|
-
"types": "./components/avatar/index.d.ts",
|
|
83
|
-
"default": "./fesm2022/sd-angular-core-components-avatar.mjs"
|
|
84
|
-
},
|
|
85
81
|
"./components/anchor-v2": {
|
|
86
82
|
"types": "./components/anchor-v2/index.d.ts",
|
|
87
83
|
"default": "./fesm2022/sd-angular-core-components-anchor-v2.mjs"
|
|
@@ -90,6 +86,10 @@
|
|
|
90
86
|
"types": "./components/badge/index.d.ts",
|
|
91
87
|
"default": "./fesm2022/sd-angular-core-components-badge.mjs"
|
|
92
88
|
},
|
|
89
|
+
"./components/avatar": {
|
|
90
|
+
"types": "./components/avatar/index.d.ts",
|
|
91
|
+
"default": "./fesm2022/sd-angular-core-components-avatar.mjs"
|
|
92
|
+
},
|
|
93
93
|
"./components/base": {
|
|
94
94
|
"types": "./components/base/index.d.ts",
|
|
95
95
|
"default": "./fesm2022/sd-angular-core-components-base.mjs"
|
|
@@ -106,14 +106,6 @@
|
|
|
106
106
|
"types": "./components/document-builder/index.d.ts",
|
|
107
107
|
"default": "./fesm2022/sd-angular-core-components-document-builder.mjs"
|
|
108
108
|
},
|
|
109
|
-
"./components/history": {
|
|
110
|
-
"types": "./components/history/index.d.ts",
|
|
111
|
-
"default": "./fesm2022/sd-angular-core-components-history.mjs"
|
|
112
|
-
},
|
|
113
|
-
"./components/import-excel": {
|
|
114
|
-
"types": "./components/import-excel/index.d.ts",
|
|
115
|
-
"default": "./fesm2022/sd-angular-core-components-import-excel.mjs"
|
|
116
|
-
},
|
|
117
109
|
"./components/mini-editor": {
|
|
118
110
|
"types": "./components/mini-editor/index.d.ts",
|
|
119
111
|
"default": "./fesm2022/sd-angular-core-components-mini-editor.mjs"
|
|
@@ -122,6 +114,14 @@
|
|
|
122
114
|
"types": "./components/modal/index.d.ts",
|
|
123
115
|
"default": "./fesm2022/sd-angular-core-components-modal.mjs"
|
|
124
116
|
},
|
|
117
|
+
"./components/history": {
|
|
118
|
+
"types": "./components/history/index.d.ts",
|
|
119
|
+
"default": "./fesm2022/sd-angular-core-components-history.mjs"
|
|
120
|
+
},
|
|
121
|
+
"./components/import-excel": {
|
|
122
|
+
"types": "./components/import-excel/index.d.ts",
|
|
123
|
+
"default": "./fesm2022/sd-angular-core-components-import-excel.mjs"
|
|
124
|
+
},
|
|
125
125
|
"./components/preview": {
|
|
126
126
|
"types": "./components/preview/index.d.ts",
|
|
127
127
|
"default": "./fesm2022/sd-angular-core-components-preview.mjs"
|
|
@@ -134,33 +134,25 @@
|
|
|
134
134
|
"types": "./components/quick-action/index.d.ts",
|
|
135
135
|
"default": "./fesm2022/sd-angular-core-components-quick-action.mjs"
|
|
136
136
|
},
|
|
137
|
-
"./components/
|
|
138
|
-
"types": "./components/
|
|
139
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
137
|
+
"./components/tab-router": {
|
|
138
|
+
"types": "./components/tab-router/index.d.ts",
|
|
139
|
+
"default": "./fesm2022/sd-angular-core-components-tab-router.mjs"
|
|
140
140
|
},
|
|
141
141
|
"./components/side-drawer": {
|
|
142
142
|
"types": "./components/side-drawer/index.d.ts",
|
|
143
143
|
"default": "./fesm2022/sd-angular-core-components-side-drawer.mjs"
|
|
144
144
|
},
|
|
145
|
-
"./components/
|
|
146
|
-
"types": "./components/
|
|
147
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
148
|
-
},
|
|
149
|
-
"./components/table": {
|
|
150
|
-
"types": "./components/table/index.d.ts",
|
|
151
|
-
"default": "./fesm2022/sd-angular-core-components-table.mjs"
|
|
145
|
+
"./components/section": {
|
|
146
|
+
"types": "./components/section/index.d.ts",
|
|
147
|
+
"default": "./fesm2022/sd-angular-core-components-section.mjs"
|
|
152
148
|
},
|
|
153
149
|
"./components/view": {
|
|
154
150
|
"types": "./components/view/index.d.ts",
|
|
155
151
|
"default": "./fesm2022/sd-angular-core-components-view.mjs"
|
|
156
152
|
},
|
|
157
|
-
"./components/
|
|
158
|
-
"types": "./components/
|
|
159
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
160
|
-
},
|
|
161
|
-
"./forms/autocomplete": {
|
|
162
|
-
"types": "./forms/autocomplete/index.d.ts",
|
|
163
|
-
"default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
|
|
153
|
+
"./components/workflow": {
|
|
154
|
+
"types": "./components/workflow/index.d.ts",
|
|
155
|
+
"default": "./fesm2022/sd-angular-core-components-workflow.mjs"
|
|
164
156
|
},
|
|
165
157
|
"./forms/checkbox": {
|
|
166
158
|
"types": "./forms/checkbox/index.d.ts",
|
|
@@ -170,18 +162,26 @@
|
|
|
170
162
|
"types": "./forms/chip/index.d.ts",
|
|
171
163
|
"default": "./fesm2022/sd-angular-core-forms-chip.mjs"
|
|
172
164
|
},
|
|
165
|
+
"./forms/autocomplete": {
|
|
166
|
+
"types": "./forms/autocomplete/index.d.ts",
|
|
167
|
+
"default": "./fesm2022/sd-angular-core-forms-autocomplete.mjs"
|
|
168
|
+
},
|
|
173
169
|
"./forms/chip-calendar": {
|
|
174
170
|
"types": "./forms/chip-calendar/index.d.ts",
|
|
175
171
|
"default": "./fesm2022/sd-angular-core-forms-chip-calendar.mjs"
|
|
176
172
|
},
|
|
177
|
-
"./
|
|
178
|
-
"types": "./
|
|
179
|
-
"default": "./fesm2022/sd-angular-core-
|
|
173
|
+
"./components/table": {
|
|
174
|
+
"types": "./components/table/index.d.ts",
|
|
175
|
+
"default": "./fesm2022/sd-angular-core-components-table.mjs"
|
|
180
176
|
},
|
|
181
177
|
"./forms/date-range": {
|
|
182
178
|
"types": "./forms/date-range/index.d.ts",
|
|
183
179
|
"default": "./fesm2022/sd-angular-core-forms-date-range.mjs"
|
|
184
180
|
},
|
|
181
|
+
"./forms/date": {
|
|
182
|
+
"types": "./forms/date/index.d.ts",
|
|
183
|
+
"default": "./fesm2022/sd-angular-core-forms-date.mjs"
|
|
184
|
+
},
|
|
185
185
|
"./forms/datetime": {
|
|
186
186
|
"types": "./forms/datetime/index.d.ts",
|
|
187
187
|
"default": "./fesm2022/sd-angular-core-forms-datetime.mjs"
|
|
@@ -202,14 +202,14 @@
|
|
|
202
202
|
"types": "./forms/label/index.d.ts",
|
|
203
203
|
"default": "./fesm2022/sd-angular-core-forms-label.mjs"
|
|
204
204
|
},
|
|
205
|
-
"./forms/radio": {
|
|
206
|
-
"types": "./forms/radio/index.d.ts",
|
|
207
|
-
"default": "./fesm2022/sd-angular-core-forms-radio.mjs"
|
|
208
|
-
},
|
|
209
205
|
"./forms/models": {
|
|
210
206
|
"types": "./forms/models/index.d.ts",
|
|
211
207
|
"default": "./fesm2022/sd-angular-core-forms-models.mjs"
|
|
212
208
|
},
|
|
209
|
+
"./forms/radio": {
|
|
210
|
+
"types": "./forms/radio/index.d.ts",
|
|
211
|
+
"default": "./fesm2022/sd-angular-core-forms-radio.mjs"
|
|
212
|
+
},
|
|
213
213
|
"./forms/select": {
|
|
214
214
|
"types": "./forms/select/index.d.ts",
|
|
215
215
|
"default": "./fesm2022/sd-angular-core-forms-select.mjs"
|
|
@@ -230,14 +230,14 @@
|
|
|
230
230
|
"types": "./modules/auth/index.d.ts",
|
|
231
231
|
"default": "./fesm2022/sd-angular-core-modules-auth.mjs"
|
|
232
232
|
},
|
|
233
|
-
"./modules/keycloak": {
|
|
234
|
-
"types": "./modules/keycloak/index.d.ts",
|
|
235
|
-
"default": "./fesm2022/sd-angular-core-modules-keycloak.mjs"
|
|
236
|
-
},
|
|
237
233
|
"./modules/layout": {
|
|
238
234
|
"types": "./modules/layout/index.d.ts",
|
|
239
235
|
"default": "./fesm2022/sd-angular-core-modules-layout.mjs"
|
|
240
236
|
},
|
|
237
|
+
"./modules/keycloak": {
|
|
238
|
+
"types": "./modules/keycloak/index.d.ts",
|
|
239
|
+
"default": "./fesm2022/sd-angular-core-modules-keycloak.mjs"
|
|
240
|
+
},
|
|
241
241
|
"./modules/permission": {
|
|
242
242
|
"types": "./modules/permission/index.d.ts",
|
|
243
243
|
"default": "./fesm2022/sd-angular-core-modules-permission.mjs"
|
|
@@ -254,33 +254,33 @@
|
|
|
254
254
|
"types": "./services/confirm/index.d.ts",
|
|
255
255
|
"default": "./fesm2022/sd-angular-core-services-confirm.mjs"
|
|
256
256
|
},
|
|
257
|
-
"./services/excel": {
|
|
258
|
-
"types": "./services/excel/index.d.ts",
|
|
259
|
-
"default": "./fesm2022/sd-angular-core-services-excel.mjs"
|
|
260
|
-
},
|
|
261
257
|
"./services/docx": {
|
|
262
258
|
"types": "./services/docx/index.d.ts",
|
|
263
259
|
"default": "./fesm2022/sd-angular-core-services-docx.mjs"
|
|
264
260
|
},
|
|
265
|
-
"./services/
|
|
266
|
-
"types": "./services/
|
|
267
|
-
"default": "./fesm2022/sd-angular-core-services-
|
|
261
|
+
"./services/excel": {
|
|
262
|
+
"types": "./services/excel/index.d.ts",
|
|
263
|
+
"default": "./fesm2022/sd-angular-core-services-excel.mjs"
|
|
268
264
|
},
|
|
269
265
|
"./services/firebase": {
|
|
270
266
|
"types": "./services/firebase/index.d.ts",
|
|
271
267
|
"default": "./fesm2022/sd-angular-core-services-firebase.mjs"
|
|
272
268
|
},
|
|
273
|
-
"./services/
|
|
274
|
-
"types": "./services/
|
|
275
|
-
"default": "./fesm2022/sd-angular-core-services-
|
|
269
|
+
"./services/license": {
|
|
270
|
+
"types": "./services/license/index.d.ts",
|
|
271
|
+
"default": "./fesm2022/sd-angular-core-services-license.mjs"
|
|
272
|
+
},
|
|
273
|
+
"./services/storage": {
|
|
274
|
+
"types": "./services/storage/index.d.ts",
|
|
275
|
+
"default": "./fesm2022/sd-angular-core-services-storage.mjs"
|
|
276
276
|
},
|
|
277
277
|
"./services/notify": {
|
|
278
278
|
"types": "./services/notify/index.d.ts",
|
|
279
279
|
"default": "./fesm2022/sd-angular-core-services-notify.mjs"
|
|
280
280
|
},
|
|
281
|
-
"./services/
|
|
282
|
-
"types": "./services/
|
|
283
|
-
"default": "./fesm2022/sd-angular-core-services-
|
|
281
|
+
"./services/loading": {
|
|
282
|
+
"types": "./services/loading/index.d.ts",
|
|
283
|
+
"default": "./fesm2022/sd-angular-core-services-loading.mjs"
|
|
284
284
|
},
|
|
285
285
|
"./utilities/extensions": {
|
|
286
286
|
"types": "./utilities/extensions/index.d.ts",
|
|
@@ -290,9 +290,9 @@
|
|
|
290
290
|
"types": "./utilities/models/index.d.ts",
|
|
291
291
|
"default": "./fesm2022/sd-angular-core-utilities-models.mjs"
|
|
292
292
|
},
|
|
293
|
-
"./components/
|
|
294
|
-
"types": "./components/
|
|
295
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
293
|
+
"./components/upload-file": {
|
|
294
|
+
"types": "./components/upload-file/index.d.ts",
|
|
295
|
+
"default": "./fesm2022/sd-angular-core-components-upload-file.mjs"
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
298
|
}
|
|
Binary file
|