@edm-sdui/sdui 1.0.15 → 1.0.17
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/esm2022/lib/components/uicomponent/column/column.component.mjs +2 -2
- package/esm2022/lib/components/uicomponent/image/image.component.mjs +3 -6
- package/esm2022/lib/components/uicomponent/modal/modal.component.mjs +30 -0
- package/esm2022/lib/components/uilayout/uinavigation/uinavigation.component.mjs +3 -3
- package/esm2022/lib/core/services/modal.service.mjs +30 -0
- package/esm2022/lib/core/services/ui-action.service.mjs +13 -4
- package/esm2022/lib/core/uitheme/mapping/aspect-mapping.mjs +6 -0
- package/esm2022/lib/directives/uiview.directive.mjs +1 -17
- package/fesm2022/edm-sdui-sdui.mjs +89 -35
- package/fesm2022/edm-sdui-sdui.mjs.map +1 -1
- package/lib/components/uicomponent/image/image.component.d.ts.map +1 -1
- package/lib/components/uicomponent/modal/modal.component.d.ts +15 -0
- package/lib/components/uicomponent/modal/modal.component.d.ts.map +1 -0
- package/lib/core/services/modal.service.d.ts +12 -0
- package/lib/core/services/modal.service.d.ts.map +1 -0
- package/lib/core/services/ui-action.service.d.ts +3 -1
- package/lib/core/services/ui-action.service.d.ts.map +1 -1
- package/lib/core/uitheme/mapping/aspect-mapping.d.ts +3 -0
- package/lib/core/uitheme/mapping/aspect-mapping.d.ts.map +1 -0
- package/lib/directives/uiview.directive.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/image/image.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;
|
|
1
|
+
{"version":3,"file":"image.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/image/image.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EAEV,MAAM,EACN,SAAS,EAEV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;;AAU7E,qBAMa,cAAe,YAAW,MAAM,EAAE,aAAa;IAI1B,WAAW,EAAE,WAAW;IACtD,OAAO,CAAC,QAAQ;IAJO,aAAa,EAAG,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGtC,WAAW,EAAE,WAAW,EAC9C,QAAQ,EAAE,SAAS;IAG7B,QAAQ,IAAI,IAAI;IAEhB,eAAe,IAAI,IAAI;IAMvB,OAAO,CAAC,YAAY;yCAhBT,cAAc;2CAAd,cAAc;CAmD1B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { DomSanitizer, SafeResourceUrl } from "@angular/platform-browser";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ModalComponent {
|
|
5
|
+
private sanitizer;
|
|
6
|
+
url: string;
|
|
7
|
+
title: string;
|
|
8
|
+
closed: EventEmitter<void>;
|
|
9
|
+
constructor(sanitizer: DomSanitizer);
|
|
10
|
+
get safeUrl(): SafeResourceUrl;
|
|
11
|
+
close(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "edm-modal", never, { "url": { "alias": "url"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "closed": "closed"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=modal.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uicomponent/modal/modal.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;;AAE1E,qBAMa,cAAc;IAKb,OAAO,CAAC,SAAS;IAJpB,GAAG,EAAG,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAM;IAClB,MAAM,qBAA4B;gBAExB,SAAS,EAAE,YAAY;IAE3C,IAAI,OAAO,IAAI,eAAe,CAE7B;IAED,KAAK;yCAXM,cAAc;2CAAd,cAAc;CAc1B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ApplicationRef, ComponentFactoryResolver, Injector } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ModalService {
|
|
4
|
+
private injector;
|
|
5
|
+
private appRef;
|
|
6
|
+
private cfr;
|
|
7
|
+
constructor(injector: Injector, appRef: ApplicationRef, cfr: ComponentFactoryResolver);
|
|
8
|
+
open(url: string, title?: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=modal.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"modal.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/modal.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,wBAAwB,EAA+B,QAAQ,EAAoB,MAAM,eAAe,CAAC;;AAGlI,qBACa,YAAY;IAErB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,GAAG;gBAFH,QAAQ,EAAE,QAAQ,EAClB,MAAM,EAAE,cAAc,EACtB,GAAG,EAAE,wBAAwB;IAGvC,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,GAAE,MAAW;yCAPzB,YAAY;6CAAZ,YAAY;CAsBxB"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { Router } from '@angular/router';
|
|
2
2
|
import { UIAction } from '../uitheme/models/uiaction';
|
|
3
3
|
import { UIActionHandlersService } from './ui-action-handlers.service';
|
|
4
|
+
import { ModalService } from './modal.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class UIActionService {
|
|
6
7
|
private router;
|
|
7
8
|
private actionHandlers;
|
|
8
|
-
|
|
9
|
+
private modalService;
|
|
10
|
+
constructor(router: Router, actionHandlers: UIActionHandlersService, modalService: ModalService);
|
|
9
11
|
execute(action: UIAction): void;
|
|
10
12
|
private handleCustomNavigation;
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIActionService, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-action.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAGtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;;
|
|
1
|
+
{"version":3,"file":"ui-action.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC;AAGtD,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;;AAE/C,qBACa,eAAe;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,YAAY;gBAFZ,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,uBAAuB,EACvC,YAAY,EAAE,YAAY;IAI9C,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,IAAI;IA8C/B,OAAO,CAAC,sBAAsB;yCArDnB,eAAe;6CAAf,eAAe;CAqI3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"aspect-mapping.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/mapping/aspect-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAGtD,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uiview.directive.d.ts","sourceRoot":"","sources":["../../../../../libs/sdui/src/lib/directives/uiview.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAIV,SAAS,EAET,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAC;AAmB7D,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;;AAGrE,qBAIa,eAAgB,YAAW,SAAS;IAK7C,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,aAAa;IACT,OAAO,CAAC,eAAe;IAR5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,OAAO,CAAS;gBAG7B,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,SAAS,EACnB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,eAAe,EAClB,eAAe,EAAE,iBAAiB;IAGxD,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,OAAO,CAAC,WAAW;IAkDnB,OAAO,CAAC,YAAY;IAmCpB,OAAO,CAAC,eAAe;IAWvB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,cAAc;IAYtB,OAAO,CAAC,WAAW;IA2BnB,OAAO,CAAC,WAAW;
|
|
1
|
+
{"version":3,"file":"uiview.directive.d.ts","sourceRoot":"","sources":["../../../../../libs/sdui/src/lib/directives/uiview.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAIV,SAAS,EAET,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAC;AAmB7D,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAC3E,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;;AAGrE,qBAIa,eAAgB,YAAW,SAAS;IAK7C,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,aAAa;IACT,OAAO,CAAC,eAAe;IAR5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,OAAO,CAAS;gBAG7B,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,SAAS,EACnB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,eAAe,EAClB,eAAe,EAAE,iBAAiB;IAGxD,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,OAAO,CAAC,WAAW;IAkDnB,OAAO,CAAC,YAAY;IAmCpB,OAAO,CAAC,eAAe;IAWvB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,cAAc;IAYtB,OAAO,CAAC,WAAW;IA2BnB,OAAO,CAAC,WAAW;IAuCnB,OAAO,CAAC,YAAY;IAWpB,OAAO,CAAC,WAAW;IAWnB,OAAO,CAAC,UAAU;IAWlB,OAAO,CAAC,gBAAgB;IAiBxB,OAAO,CAAC,gBAAgB;IAWxB,OAAO,CAAC,YAAY;IAYpB,OAAO,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;yCAjRhB,eAAe;2CAAf,eAAe;CAyR3B"}
|