@edm-sdui/sdui 1.0.14 → 1.0.16
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/button/button.component.mjs +2 -2
- package/esm2022/lib/components/uicomponent/column/column.component.mjs +2 -2
- package/esm2022/lib/components/uicomponent/image/image.component.mjs +8 -5
- package/esm2022/lib/components/uicomponent/profile-button/profile-button.component.mjs +2 -2
- package/esm2022/lib/components/uicomponent/progress-bar/progress-bar.component.mjs +2 -2
- package/esm2022/lib/components/uicomponent/zstack/zstack.component.mjs +3 -3
- package/esm2022/lib/components/uilayout/uinavigation/uinavigation.component.mjs +3 -3
- package/esm2022/lib/core/services/ui-action-handlers.service.mjs +22 -0
- package/esm2022/lib/core/services/ui-action.service.mjs +19 -5
- package/esm2022/lib/core/uitheme/enums/uiaction-type.mjs +2 -1
- package/esm2022/lib/core/uitheme/mapping/aspect-mapping.mjs +6 -0
- package/esm2022/lib/directives/uiview.directive.mjs +1 -1
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/edm-sdui-sdui.mjs +67 -20
- package/fesm2022/edm-sdui-sdui.mjs.map +1 -1
- package/lib/components/uicomponent/image/image.component.d.ts.map +1 -1
- package/lib/core/services/ui-action-handlers.service.d.ts +9 -0
- package/lib/core/services/ui-action-handlers.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/enums/uiaction-type.d.ts +1 -0
- package/lib/core/uitheme/enums/uiaction-type.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
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +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,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class UIActionHandlersService {
|
|
3
|
+
logoutHandler?: () => void;
|
|
4
|
+
registerLogout(handler: () => void): void;
|
|
5
|
+
executeLogout(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UIActionHandlersService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UIActionHandlersService>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=ui-action-handlers.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ui-action-handlers.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/ui-action-handlers.service.ts"],"names":[],"mappings":";AAEA,qBACa,uBAAuB;IAClC,aAAa,CAAC,EAAE,MAAM,IAAI,CAAC;IAE3B,cAAc,CAAC,OAAO,EAAE,MAAM,IAAI;IAIlC,aAAa;yCAPF,uBAAuB;6CAAvB,uBAAuB;CAcnC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { Router } from '@angular/router';
|
|
2
2
|
import { UIAction } from '../uitheme/models/uiaction';
|
|
3
|
+
import { UIActionHandlersService } from './ui-action-handlers.service';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class UIActionService {
|
|
5
6
|
private router;
|
|
6
|
-
|
|
7
|
+
private actionHandlers;
|
|
8
|
+
constructor(router: Router, actionHandlers: UIActionHandlersService);
|
|
7
9
|
execute(action: UIAction): void;
|
|
8
10
|
private handleCustomNavigation;
|
|
9
11
|
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;;
|
|
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;;AAEvE,qBACa,eAAe;IACd,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,cAAc;gBADd,MAAM,EAAE,MAAM,EACd,cAAc,EAAE,uBAAuB;IAI3D,OAAO,CAAC,MAAM,EAAE,QAAQ,GAAG,IAAI;IAyC/B,OAAO,CAAC,sBAAsB;yCA/CnB,eAAe;6CAAf,eAAe;CA+H3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uiaction-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiaction-type.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IAEtB,YAAY,iBAAiB;IAC7B,mBAAmB,wBAAwB;IAC3C,gBAAgB,qBAAqB;IACrC,YAAY,iBAAiB;
|
|
1
|
+
{"version":3,"file":"uiaction-type.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/enums/uiaction-type.ts"],"names":[],"mappings":"AAAA,oBAAY,YAAY;IAEtB,YAAY,iBAAiB;IAC7B,mBAAmB,wBAAwB;IAC3C,gBAAgB,qBAAqB;IACrC,YAAY,iBAAiB;IAC7B,WAAW,gBAAgB;IAG3B,OAAO,YAAY;IACnB,QAAQ,aAAa;IAGrB,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
|
|
@@ -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;;
|
|
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"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ export { SduiModule } from './lib/sdui.module';
|
|
|
2
2
|
export { SduiComponent } from './lib/sdui.component';
|
|
3
3
|
export { SDUI_URL_PARAM } from './lib/core/view-models/uiscreen.viewmodel';
|
|
4
4
|
export { SduiModuleConfig } from './lib/sdui.module';
|
|
5
|
+
export * from './lib/core/services/ui-action-handlers.service';
|
|
5
6
|
//# sourceMappingURL=public-api.d.ts.map
|
package/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../libs/sdui/src/public-api.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAG/C,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAGrD,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../libs/sdui/src/public-api.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAG/C,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAGrD,OAAO,EAAE,cAAc,EAAE,MAAM,2CAA2C,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AACrD,cAAc,gDAAgD,CAAC"}
|