@sd-angular/core 19.0.0-beta.79 → 19.0.0-beta.80
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/fesm2022/sd-angular-core-components-table.mjs +2 -2
- package/fesm2022/sd-angular-core-components-table.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules-authom.mjs +359 -0
- package/fesm2022/sd-angular-core-modules-authom.mjs.map +1 -0
- package/fesm2022/sd-angular-core-modules-layout.mjs +266 -13
- package/fesm2022/sd-angular-core-modules-layout.mjs.map +1 -1
- package/fesm2022/sd-angular-core-modules.mjs +1 -0
- package/fesm2022/sd-angular-core-modules.mjs.map +1 -1
- package/modules/authom/authom.configuration.d.ts +17 -0
- package/modules/authom/authom.interceptor.d.ts +3 -0
- package/modules/authom/authom.module.d.ts +16 -0
- package/modules/authom/authom.service.d.ts +32 -0
- package/modules/authom/index.d.ts +35 -0
- package/modules/index.d.ts +1 -0
- package/modules/layout/components/index.d.ts +2 -0
- package/modules/layout/components/layout-main/layout-main.component.d.ts +1 -0
- package/modules/layout/components/sidebar-mobile-v1/components/sidebar/sidebar.component.d.ts +35 -0
- package/modules/layout/components/sidebar-mobile-v1/components/user/user.component.d.ts +24 -0
- package/modules/layout/components/sidebar-mobile-v1/main.component.d.ts +21 -0
- package/modules/layout/services/menu/menu.model.d.ts +1 -1
- package/package.json +47 -43
- package/sd-angular-core-19.0.0-beta.80.tgz +0 -0
- package/sd-angular-core-19.0.0-beta.79.tgz +0 -0
|
@@ -2,6 +2,7 @@ export * from '@sd-angular/core/modules/keycloak';
|
|
|
2
2
|
export * from '@sd-angular/core/modules/permission';
|
|
3
3
|
export * from '@sd-angular/core/modules/auth';
|
|
4
4
|
export * from '@sd-angular/core/modules/layout';
|
|
5
|
+
export * from '@sd-angular/core/modules/authom';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Generated bundle index. Do not edit.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sd-angular-core-modules.mjs","sources":["../../../projects/sd-angular/modules/sd-angular-core-modules.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sd-angular-core-modules.mjs","sources":["../../../projects/sd-angular/modules/sd-angular-core-modules.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;;AAAA;;AAEG"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
export interface SdAuthOmTenantConfig {
|
|
3
|
+
domain: string;
|
|
4
|
+
clientId: string;
|
|
5
|
+
redirectUri?: string;
|
|
6
|
+
audience?: string;
|
|
7
|
+
organization?: string;
|
|
8
|
+
scope?: string;
|
|
9
|
+
secureRoutes?: string[];
|
|
10
|
+
silentRefreshRedirectUri?: string;
|
|
11
|
+
refreshThresholdSeconds?: number;
|
|
12
|
+
authorizeTimeoutInSeconds?: number;
|
|
13
|
+
}
|
|
14
|
+
export interface ISdAuthOmConfiguration {
|
|
15
|
+
loadTenantConfig: () => Promise<SdAuthOmTenantConfig>;
|
|
16
|
+
}
|
|
17
|
+
export declare const SD_AUTHOM_CONFIGURATION: InjectionToken<ISdAuthOmConfiguration>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ModuleWithProviders, Type, EnvironmentProviders } from '@angular/core';
|
|
2
|
+
import { ISdAuthOmConfiguration } from './authom.configuration';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface ProvideOptions {
|
|
5
|
+
useClass?: Type<ISdAuthOmConfiguration>;
|
|
6
|
+
useFactory?: (...args: any[]) => ISdAuthOmConfiguration;
|
|
7
|
+
deps?: any[];
|
|
8
|
+
}
|
|
9
|
+
export declare function provideSdAuthOm(options: ProvideOptions): EnvironmentProviders;
|
|
10
|
+
export declare class SdAuthOmModule {
|
|
11
|
+
static forRoot(options: ProvideOptions): ModuleWithProviders<SdAuthOmModule>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SdAuthOmModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SdAuthOmModule, never, never, never>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SdAuthOmModule>;
|
|
15
|
+
}
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { SdAuthOmTenantConfig } from './authom.configuration';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SdAuthOmService {
|
|
4
|
+
private readonly platformId;
|
|
5
|
+
private readonly isBrowser;
|
|
6
|
+
readonly accessToken: import("@angular/core").WritableSignal<string | null>;
|
|
7
|
+
readonly idTokenClaims: import("@angular/core").WritableSignal<Record<string, unknown> | null>;
|
|
8
|
+
readonly isAuthenticated: import("@angular/core").Signal<boolean>;
|
|
9
|
+
config: SdAuthOmTenantConfig;
|
|
10
|
+
private refreshTimer;
|
|
11
|
+
getAccessToken(): string | null;
|
|
12
|
+
private base64UrlEncode;
|
|
13
|
+
private generateCodeVerifier;
|
|
14
|
+
private generateCodeChallenge;
|
|
15
|
+
private buildAuthorizeUrl;
|
|
16
|
+
private getDefaultRedirectUri;
|
|
17
|
+
private getSilentRedirectUri;
|
|
18
|
+
private decodeJwtPayload;
|
|
19
|
+
login(options?: {
|
|
20
|
+
returnTo?: string;
|
|
21
|
+
}): Promise<void>;
|
|
22
|
+
logout(options?: {
|
|
23
|
+
returnTo?: string;
|
|
24
|
+
}): void;
|
|
25
|
+
private exchangeCode;
|
|
26
|
+
private scheduleRefresh;
|
|
27
|
+
silentRefresh(): Promise<boolean>;
|
|
28
|
+
handleCallback(): Promise<boolean>;
|
|
29
|
+
init(config: SdAuthOmTenantConfig): Promise<boolean>;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SdAuthOmService, never>;
|
|
31
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SdAuthOmService>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Module `authom` — OAuth 2.0 + PKCE authentication client cho AuthOM (Auth0-based).
|
|
3
|
+
*
|
|
4
|
+
* Cách dùng (standalone):
|
|
5
|
+
* ```ts
|
|
6
|
+
* import { provideHttpClient, withInterceptors } from '@angular/common/http';
|
|
7
|
+
* import { provideSdAuthOm, SdAuthOmInterceptor } from '@sd-angular/core/modules/authom';
|
|
8
|
+
*
|
|
9
|
+
* export const appConfig: ApplicationConfig = {
|
|
10
|
+
* providers: [
|
|
11
|
+
* provideHttpClient(withInterceptors([SdAuthOmInterceptor])),
|
|
12
|
+
* provideSdAuthOm({
|
|
13
|
+
* useFactory: () => ({
|
|
14
|
+
* loadTenantConfig: () => Promise.resolve({
|
|
15
|
+
* domain: 'login.example.com',
|
|
16
|
+
* clientId: 'YOUR_CLIENT_ID',
|
|
17
|
+
* audience: 'https://api.example.com',
|
|
18
|
+
* organization: 'org_xxx',
|
|
19
|
+
* scope: 'openid profile email offline_access',
|
|
20
|
+
* secureRoutes: ['https://api.example.com/*'],
|
|
21
|
+
* }),
|
|
22
|
+
* }),
|
|
23
|
+
* }),
|
|
24
|
+
* ],
|
|
25
|
+
* };
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* Yêu cầu setup thêm:
|
|
29
|
+
* 1. Copy file `silent-authom.html` từ source module này vào thư mục `public/` của app.
|
|
30
|
+
* 2. App phải chạy trên HTTPS (hoặc localhost) — Web Crypto API yêu cầu secure context.
|
|
31
|
+
*/
|
|
32
|
+
export * from './authom.configuration';
|
|
33
|
+
export * from './authom.service';
|
|
34
|
+
export * from './authom.interceptor';
|
|
35
|
+
export * from './authom.module';
|
package/modules/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare class SdLayoutComponent {
|
|
|
6
6
|
menus: import("@angular/core").Signal<SdLayoutMenu[]>;
|
|
7
7
|
userInfo: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SdLayoutUserInfo | undefined>;
|
|
8
8
|
sidebar: import("@angular/core").WritableSignal<import("@sd-angular/core/modules/layout").SidebarConfigurationV1 | undefined>;
|
|
9
|
+
isMobileOrTablet: import("@angular/core").WritableSignal<boolean>;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SdLayoutComponent, never>;
|
|
10
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<SdLayoutComponent, "sd-layout", never, { "menusInput": { "alias": "menus"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
11
12
|
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Params } from '@angular/router';
|
|
2
|
+
import { SdLayoutUserInfo, SidebarConfigurationV1 } from '../../../../configurations';
|
|
3
|
+
import { SdLayoutMenu } from '../../../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SidebarMobileOverlayComponent {
|
|
6
|
+
#private;
|
|
7
|
+
isShowSidebar: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
menus: import("@angular/core").InputSignal<SdLayoutMenu[]>;
|
|
9
|
+
userInfo: import("@angular/core").InputSignal<SdLayoutUserInfo>;
|
|
10
|
+
sidebar: import("@angular/core").InputSignal<SidebarConfigurationV1>;
|
|
11
|
+
showSideBar: import("@angular/core").OutputEmitterRef<boolean | null>;
|
|
12
|
+
expandSideBar: import("@angular/core").OutputEmitterRef<void>;
|
|
13
|
+
popupUserMenuOpened: import("@angular/core").OutputEmitterRef<void>;
|
|
14
|
+
popupUserMenuClosed: import("@angular/core").OutputEmitterRef<void>;
|
|
15
|
+
titleMenuGroupChanged: import("@angular/core").OutputEmitterRef<string | undefined>;
|
|
16
|
+
titleMenuGroup: import("@angular/core").WritableSignal<string | undefined>;
|
|
17
|
+
currentPath: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
expandedMobileGroups: import("@angular/core").WritableSignal<Set<string>>;
|
|
19
|
+
constructor();
|
|
20
|
+
toggleMobileGroup(groupId: string | undefined): void;
|
|
21
|
+
isExpanded(groupId: string | undefined): boolean;
|
|
22
|
+
navigate(args: {
|
|
23
|
+
path?: string;
|
|
24
|
+
queryParams?: Params;
|
|
25
|
+
}): void;
|
|
26
|
+
onClose(): void;
|
|
27
|
+
hasChildren(menu: SdLayoutMenu): boolean;
|
|
28
|
+
getChildren(menu: SdLayoutMenu): SdLayoutMenu[];
|
|
29
|
+
getPath(menu: SdLayoutMenu): string | undefined;
|
|
30
|
+
getQueryParams(menu: SdLayoutMenu): Params;
|
|
31
|
+
onUserMenuOpened: () => void;
|
|
32
|
+
onUserMenuClosed: () => void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMobileOverlayComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarMobileOverlayComponent, "sd-sidebar-mobile-overlay", never, { "isShowSidebar": { "alias": "isShowSidebar"; "required": false; "isSignal": true; }; "menus": { "alias": "menus"; "required": true; "isSignal": true; }; "userInfo": { "alias": "userInfo"; "required": true; "isSignal": true; }; "sidebar": { "alias": "sidebar"; "required": true; "isSignal": true; }; }, { "showSideBar": "showSideBar"; "expandSideBar": "expandSideBar"; "popupUserMenuOpened": "popupUserMenuOpened"; "popupUserMenuClosed": "popupUserMenuClosed"; "titleMenuGroupChanged": "titleMenuGroupChanged"; }, never, never, true, never>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SdLayoutUserInfo } from '../../../../configurations';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LayoutUserComponent {
|
|
4
|
+
#private;
|
|
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>;
|
|
12
|
+
singoutLayoutConfig: () => void | Promise<void>;
|
|
13
|
+
changePasswordLayoutConfig: (() => void | Promise<void>) | undefined;
|
|
14
|
+
isExpanded: import("@angular/core").WritableSignal<boolean>;
|
|
15
|
+
onMenuOpened: () => void;
|
|
16
|
+
onMenuClosed: () => void;
|
|
17
|
+
keepOpenWhenClickInsideMenu: (event: Event) => void;
|
|
18
|
+
toggleExpanded: () => void;
|
|
19
|
+
logout: () => void;
|
|
20
|
+
changePassword: () => void;
|
|
21
|
+
onToggleMenuLock: (event: Event) => void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutUserComponent, never>;
|
|
23
|
+
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>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { SdLayoutUserInfo, SidebarConfigurationV1 } from '../../configurations';
|
|
2
|
+
import { SdLayoutMenu } from '../../services';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SidebarMobileV1Component {
|
|
5
|
+
#private;
|
|
6
|
+
menus: import("@angular/core").InputSignal<SdLayoutMenu[]>;
|
|
7
|
+
userInfo: import("@angular/core").InputSignal<SdLayoutUserInfo>;
|
|
8
|
+
sidebar: import("@angular/core").InputSignal<SidebarConfigurationV1>;
|
|
9
|
+
isShowSidebar: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
titleMenuGroup: import("@angular/core").WritableSignal<string | undefined>;
|
|
11
|
+
constructor();
|
|
12
|
+
openSidebar: () => void;
|
|
13
|
+
onToggle: (_data: boolean | null) => void;
|
|
14
|
+
onPopupOfSideBarOpened: () => void;
|
|
15
|
+
onPopupOfSideBarClosed: () => void;
|
|
16
|
+
onExpandSideBar: () => void;
|
|
17
|
+
onMouseleaveSideBar: () => void;
|
|
18
|
+
onTitleMenuGroupChanged: (title: string | undefined) => void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMobileV1Component, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarMobileV1Component, "sidebar-mobile-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>;
|
|
21
|
+
}
|
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.80",
|
|
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",
|
|
@@ -35,26 +35,26 @@
|
|
|
35
35
|
"types": "./components/index.d.ts",
|
|
36
36
|
"default": "./fesm2022/sd-angular-core-components.mjs"
|
|
37
37
|
},
|
|
38
|
-
"./configurations": {
|
|
39
|
-
"types": "./configurations/index.d.ts",
|
|
40
|
-
"default": "./fesm2022/sd-angular-core-configurations.mjs"
|
|
41
|
-
},
|
|
42
38
|
"./directives": {
|
|
43
39
|
"types": "./directives/index.d.ts",
|
|
44
40
|
"default": "./fesm2022/sd-angular-core-directives.mjs"
|
|
45
41
|
},
|
|
42
|
+
"./configurations": {
|
|
43
|
+
"types": "./configurations/index.d.ts",
|
|
44
|
+
"default": "./fesm2022/sd-angular-core-configurations.mjs"
|
|
45
|
+
},
|
|
46
46
|
"./forms": {
|
|
47
47
|
"types": "./forms/index.d.ts",
|
|
48
48
|
"default": "./fesm2022/sd-angular-core-forms.mjs"
|
|
49
49
|
},
|
|
50
|
-
"./handlers": {
|
|
51
|
-
"types": "./handlers/index.d.ts",
|
|
52
|
-
"default": "./fesm2022/sd-angular-core-handlers.mjs"
|
|
53
|
-
},
|
|
54
50
|
"./interceptors": {
|
|
55
51
|
"types": "./interceptors/index.d.ts",
|
|
56
52
|
"default": "./fesm2022/sd-angular-core-interceptors.mjs"
|
|
57
53
|
},
|
|
54
|
+
"./handlers": {
|
|
55
|
+
"types": "./handlers/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/sd-angular-core-handlers.mjs"
|
|
57
|
+
},
|
|
58
58
|
"./modules": {
|
|
59
59
|
"types": "./modules/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/sd-angular-core-modules.mjs"
|
|
@@ -75,30 +75,30 @@
|
|
|
75
75
|
"types": "./components/anchor/index.d.ts",
|
|
76
76
|
"default": "./fesm2022/sd-angular-core-components-anchor.mjs"
|
|
77
77
|
},
|
|
78
|
-
"./components/anchor-v2": {
|
|
79
|
-
"types": "./components/anchor-v2/index.d.ts",
|
|
80
|
-
"default": "./fesm2022/sd-angular-core-components-anchor-v2.mjs"
|
|
81
|
-
},
|
|
82
78
|
"./components/avatar": {
|
|
83
79
|
"types": "./components/avatar/index.d.ts",
|
|
84
80
|
"default": "./fesm2022/sd-angular-core-components-avatar.mjs"
|
|
85
81
|
},
|
|
86
|
-
"./components/
|
|
87
|
-
"types": "./components/
|
|
88
|
-
"default": "./fesm2022/sd-angular-core-components-
|
|
89
|
-
},
|
|
90
|
-
"./components/base": {
|
|
91
|
-
"types": "./components/base/index.d.ts",
|
|
92
|
-
"default": "./fesm2022/sd-angular-core-components-base.mjs"
|
|
82
|
+
"./components/anchor-v2": {
|
|
83
|
+
"types": "./components/anchor-v2/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/sd-angular-core-components-anchor-v2.mjs"
|
|
93
85
|
},
|
|
94
86
|
"./components/button": {
|
|
95
87
|
"types": "./components/button/index.d.ts",
|
|
96
88
|
"default": "./fesm2022/sd-angular-core-components-button.mjs"
|
|
97
89
|
},
|
|
90
|
+
"./components/badge": {
|
|
91
|
+
"types": "./components/badge/index.d.ts",
|
|
92
|
+
"default": "./fesm2022/sd-angular-core-components-badge.mjs"
|
|
93
|
+
},
|
|
98
94
|
"./components/chart": {
|
|
99
95
|
"types": "./components/chart/index.d.ts",
|
|
100
96
|
"default": "./fesm2022/sd-angular-core-components-chart.mjs"
|
|
101
97
|
},
|
|
98
|
+
"./components/base": {
|
|
99
|
+
"types": "./components/base/index.d.ts",
|
|
100
|
+
"default": "./fesm2022/sd-angular-core-components-base.mjs"
|
|
101
|
+
},
|
|
102
102
|
"./components/code-editor": {
|
|
103
103
|
"types": "./components/code-editor/index.d.ts",
|
|
104
104
|
"default": "./fesm2022/sd-angular-core-components-code-editor.mjs"
|
|
@@ -107,6 +107,10 @@
|
|
|
107
107
|
"types": "./components/document-builder/index.d.ts",
|
|
108
108
|
"default": "./fesm2022/sd-angular-core-components-document-builder.mjs"
|
|
109
109
|
},
|
|
110
|
+
"./components/mini-editor": {
|
|
111
|
+
"types": "./components/mini-editor/index.d.ts",
|
|
112
|
+
"default": "./fesm2022/sd-angular-core-components-mini-editor.mjs"
|
|
113
|
+
},
|
|
110
114
|
"./components/history": {
|
|
111
115
|
"types": "./components/history/index.d.ts",
|
|
112
116
|
"default": "./fesm2022/sd-angular-core-components-history.mjs"
|
|
@@ -115,10 +119,6 @@
|
|
|
115
119
|
"types": "./components/import-excel/index.d.ts",
|
|
116
120
|
"default": "./fesm2022/sd-angular-core-components-import-excel.mjs"
|
|
117
121
|
},
|
|
118
|
-
"./components/mini-editor": {
|
|
119
|
-
"types": "./components/mini-editor/index.d.ts",
|
|
120
|
-
"default": "./fesm2022/sd-angular-core-components-mini-editor.mjs"
|
|
121
|
-
},
|
|
122
122
|
"./components/modal": {
|
|
123
123
|
"types": "./components/modal/index.d.ts",
|
|
124
124
|
"default": "./fesm2022/sd-angular-core-components-modal.mjs"
|
|
@@ -131,14 +131,14 @@
|
|
|
131
131
|
"types": "./components/query-builder/index.d.ts",
|
|
132
132
|
"default": "./fesm2022/sd-angular-core-components-query-builder.mjs"
|
|
133
133
|
},
|
|
134
|
-
"./components/quick-action": {
|
|
135
|
-
"types": "./components/quick-action/index.d.ts",
|
|
136
|
-
"default": "./fesm2022/sd-angular-core-components-quick-action.mjs"
|
|
137
|
-
},
|
|
138
134
|
"./components/section": {
|
|
139
135
|
"types": "./components/section/index.d.ts",
|
|
140
136
|
"default": "./fesm2022/sd-angular-core-components-section.mjs"
|
|
141
137
|
},
|
|
138
|
+
"./components/quick-action": {
|
|
139
|
+
"types": "./components/quick-action/index.d.ts",
|
|
140
|
+
"default": "./fesm2022/sd-angular-core-components-quick-action.mjs"
|
|
141
|
+
},
|
|
142
142
|
"./components/side-drawer": {
|
|
143
143
|
"types": "./components/side-drawer/index.d.ts",
|
|
144
144
|
"default": "./fesm2022/sd-angular-core-components-side-drawer.mjs"
|
|
@@ -175,26 +175,26 @@
|
|
|
175
175
|
"types": "./forms/chip-calendar/index.d.ts",
|
|
176
176
|
"default": "./fesm2022/sd-angular-core-forms-chip-calendar.mjs"
|
|
177
177
|
},
|
|
178
|
-
"./forms/date": {
|
|
179
|
-
"types": "./forms/date/index.d.ts",
|
|
180
|
-
"default": "./fesm2022/sd-angular-core-forms-date.mjs"
|
|
181
|
-
},
|
|
182
178
|
"./forms/date-range": {
|
|
183
179
|
"types": "./forms/date-range/index.d.ts",
|
|
184
180
|
"default": "./fesm2022/sd-angular-core-forms-date-range.mjs"
|
|
185
181
|
},
|
|
182
|
+
"./forms/date": {
|
|
183
|
+
"types": "./forms/date/index.d.ts",
|
|
184
|
+
"default": "./fesm2022/sd-angular-core-forms-date.mjs"
|
|
185
|
+
},
|
|
186
186
|
"./forms/datetime": {
|
|
187
187
|
"types": "./forms/datetime/index.d.ts",
|
|
188
188
|
"default": "./fesm2022/sd-angular-core-forms-datetime.mjs"
|
|
189
189
|
},
|
|
190
|
-
"./forms/directives": {
|
|
191
|
-
"types": "./forms/directives/index.d.ts",
|
|
192
|
-
"default": "./fesm2022/sd-angular-core-forms-directives.mjs"
|
|
193
|
-
},
|
|
194
190
|
"./forms/input": {
|
|
195
191
|
"types": "./forms/input/index.d.ts",
|
|
196
192
|
"default": "./fesm2022/sd-angular-core-forms-input.mjs"
|
|
197
193
|
},
|
|
194
|
+
"./forms/directives": {
|
|
195
|
+
"types": "./forms/directives/index.d.ts",
|
|
196
|
+
"default": "./fesm2022/sd-angular-core-forms-directives.mjs"
|
|
197
|
+
},
|
|
198
198
|
"./forms/input-number": {
|
|
199
199
|
"types": "./forms/input-number/index.d.ts",
|
|
200
200
|
"default": "./fesm2022/sd-angular-core-forms-input-number.mjs"
|
|
@@ -219,13 +219,17 @@
|
|
|
219
219
|
"types": "./forms/switch/index.d.ts",
|
|
220
220
|
"default": "./fesm2022/sd-angular-core-forms-switch.mjs"
|
|
221
221
|
},
|
|
222
|
+
"./modules/auth": {
|
|
223
|
+
"types": "./modules/auth/index.d.ts",
|
|
224
|
+
"default": "./fesm2022/sd-angular-core-modules-auth.mjs"
|
|
225
|
+
},
|
|
222
226
|
"./forms/textarea": {
|
|
223
227
|
"types": "./forms/textarea/index.d.ts",
|
|
224
228
|
"default": "./fesm2022/sd-angular-core-forms-textarea.mjs"
|
|
225
229
|
},
|
|
226
|
-
"./modules/
|
|
227
|
-
"types": "./modules/
|
|
228
|
-
"default": "./fesm2022/sd-angular-core-modules-
|
|
230
|
+
"./modules/authom": {
|
|
231
|
+
"types": "./modules/authom/index.d.ts",
|
|
232
|
+
"default": "./fesm2022/sd-angular-core-modules-authom.mjs"
|
|
229
233
|
},
|
|
230
234
|
"./modules/keycloak": {
|
|
231
235
|
"types": "./modules/keycloak/index.d.ts",
|
|
@@ -259,14 +263,14 @@
|
|
|
259
263
|
"types": "./services/excel/index.d.ts",
|
|
260
264
|
"default": "./fesm2022/sd-angular-core-services-excel.mjs"
|
|
261
265
|
},
|
|
262
|
-
"./services/firebase": {
|
|
263
|
-
"types": "./services/firebase/index.d.ts",
|
|
264
|
-
"default": "./fesm2022/sd-angular-core-services-firebase.mjs"
|
|
265
|
-
},
|
|
266
266
|
"./services/license": {
|
|
267
267
|
"types": "./services/license/index.d.ts",
|
|
268
268
|
"default": "./fesm2022/sd-angular-core-services-license.mjs"
|
|
269
269
|
},
|
|
270
|
+
"./services/firebase": {
|
|
271
|
+
"types": "./services/firebase/index.d.ts",
|
|
272
|
+
"default": "./fesm2022/sd-angular-core-services-firebase.mjs"
|
|
273
|
+
},
|
|
270
274
|
"./services/loading": {
|
|
271
275
|
"types": "./services/loading/index.d.ts",
|
|
272
276
|
"default": "./fesm2022/sd-angular-core-services-loading.mjs"
|
|
Binary file
|
|
Binary file
|