@edm-sdui/sdui 1.0.16 → 1.0.18
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/modal/modal.component.mjs +30 -0
- package/esm2022/lib/components/uilayout/fab/fab.component.mjs +42 -0
- package/esm2022/lib/components/uilayout/single-column-layout/single-column-layout.component.mjs +5 -4
- 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/services/uiscreen.service.mjs +5 -2
- package/esm2022/lib/core/uicomposition/models/uisingle-column-layout.mjs +1 -1
- package/esm2022/lib/core/uitheme/mapping/color-mapping.mjs +3 -3
- package/esm2022/lib/core/uitheme/models/uibackground.mjs +1 -1
- package/esm2022/lib/directives/uiview.directive.mjs +8 -1
- package/esm2022/lib/sdui.module.mjs +4 -1
- package/fesm2022/edm-sdui-sdui.mjs +1243 -1135
- package/fesm2022/edm-sdui-sdui.mjs.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/components/uilayout/fab/fab.component.d.ts +17 -0
- package/lib/components/uilayout/fab/fab.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/services/uiscreen.service.d.ts.map +1 -1
- package/lib/core/uicomposition/models/uisingle-column-layout.d.ts +2 -0
- package/lib/core/uicomposition/models/uisingle-column-layout.d.ts.map +1 -1
- package/lib/core/uitheme/models/uibackground.d.ts +3 -1
- package/lib/core/uitheme/models/uibackground.d.ts.map +1 -1
- package/lib/directives/uiview.directive.d.ts.map +1 -1
- package/lib/sdui.module.d.ts +28 -27
- package/lib/sdui.module.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -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,17 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import { UIActionService } from '../../../core/services/ui-action.service';
|
|
3
|
+
import { UIElement } from '../../../core/uicomposition/models/uielement';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FabComponent implements AfterViewInit {
|
|
6
|
+
private actionService;
|
|
7
|
+
private render2;
|
|
8
|
+
element: UIElement;
|
|
9
|
+
imgElement: ElementRef;
|
|
10
|
+
constructor(actionService: UIActionService, render2: Renderer2);
|
|
11
|
+
ngAfterViewInit(): void;
|
|
12
|
+
applyElement(element: UIElement): void;
|
|
13
|
+
onClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabComponent, "sdui-fab", never, { "element": { "alias": "element"; "required": true; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=fab.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fab.component.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/components/uilayout/fab/fab.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAiB,SAAS,EAAa,MAAM,eAAe,CAAC;AAC1G,OAAO,EAAE,eAAe,EAAE,MAAM,0CAA0C,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAC;;AAGzE,qBAMa,YAAa,YAAW,aAAa;IAGpC,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,OAAO;IAHA,OAAO,EAAG,SAAS,CAAC;IACtB,UAAU,EAAG,UAAU,CAAC;gBAC7B,aAAa,EAAE,eAAe,EAC9B,OAAO,EAAE,SAAS;IAEtC,eAAe,IAAI,IAAI;IAMvB,YAAY,CAAC,OAAO,EAAE,SAAS;IAO/B,OAAO;yCAnBI,YAAY;2CAAZ,YAAY;CAwBxB"}
|
|
@@ -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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uiscreen.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/uiscreen.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAO,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;;AA6B5D,qBAGa,eAAe;IAExB,OAAO,CAAC,IAAI;IACuB,OAAO,CAAC,OAAO;gBAD1C,IAAI,EAAE,UAAU,EACmB,OAAO,GAAE,MAAW;IAGjE,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAQ9C,OAAO,CAAC,aAAa;IAgBrB,OAAO,CAAC,SAAS;IAgBjB,OAAO,CAAC,uBAAuB;
|
|
1
|
+
{"version":3,"file":"uiscreen.service.d.ts","sourceRoot":"","sources":["../../../../../../libs/sdui/src/lib/core/services/uiscreen.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAO,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;;AA6B5D,qBAGa,eAAe;IAExB,OAAO,CAAC,IAAI;IACuB,OAAO,CAAC,OAAO;gBAD1C,IAAI,EAAE,UAAU,EACmB,OAAO,GAAE,MAAW;IAGjE,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,UAAU,CAAC,QAAQ,CAAC;IAQ9C,OAAO,CAAC,aAAa;IAgBrB,OAAO,CAAC,SAAS;IAgBjB,OAAO,CAAC,uBAAuB;IAY/B,OAAO,CAAC,0BAA0B;IAclC,OAAO,CAAC,iBAAiB;IASzB,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,cAAc;IAwBtB,OAAO,CAAC,WAAW;IAqBnB,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,SAAS;IAQjB,OAAO,CAAC,SAAS;yCAxJN,eAAe;6CAAf,eAAe;CAkK3B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UIComponent } from './uicomponent';
|
|
2
|
+
import { UIElement } from './uielement';
|
|
2
3
|
import { UILayout } from './uilayout';
|
|
3
4
|
import { UINavigation } from './uinavigation';
|
|
4
5
|
export interface UISingleColumnLayout extends UILayout {
|
|
@@ -6,5 +7,6 @@ export interface UISingleColumnLayout extends UILayout {
|
|
|
6
7
|
header?: UIComponent | null;
|
|
7
8
|
main?: UIComponent | null;
|
|
8
9
|
footer?: UIComponent | null;
|
|
10
|
+
fab?: UIElement | null;
|
|
9
11
|
}
|
|
10
12
|
//# sourceMappingURL=uisingle-column-layout.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uisingle-column-layout.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uisingle-column-layout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,WAAW,oBAAqB,SAAQ,QAAQ;IACpD,GAAG,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"uisingle-column-layout.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uicomposition/models/uisingle-column-layout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,MAAM,WAAW,oBAAqB,SAAQ,QAAQ;IACpD,GAAG,CAAC,EAAE,YAAY,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B,IAAI,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC1B,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI,CAAC;IAC5B,GAAG,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;CACxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uibackground.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/models/uibackground.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,WAAW,YAAY;IAC3B,eAAe,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"uibackground.d.ts","sourceRoot":"","sources":["../../../../../../../libs/sdui/src/lib/core/uitheme/models/uibackground.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,WAAW,YAAY;IAC3B,eAAe,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACjC,cAAc,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAChC,cAAc,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACjC"}
|
|
@@ -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;
|
|
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;IAuBvB,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;yCA7RhB,eAAe;2CAAf,eAAe;CAqS3B"}
|
package/lib/sdui.module.d.ts
CHANGED
|
@@ -3,32 +3,33 @@ import { SduiRoutingModule } from './sdui-routing.module';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
import * as i1 from "./components/uiscreen/uiscreen.component";
|
|
5
5
|
import * as i2 from "./components/uilayout/uinavigation/uinavigation.component";
|
|
6
|
-
import * as i3 from "./components/uilayout/
|
|
7
|
-
import * as i4 from "./components/uilayout/
|
|
8
|
-
import * as i5 from "./components/
|
|
9
|
-
import * as i6 from "./components/uicomponent/
|
|
10
|
-
import * as i7 from "./components/uicomponent/row
|
|
11
|
-
import * as i8 from "./components/uicomponent/
|
|
12
|
-
import * as i9 from "./components/uicomponent/
|
|
13
|
-
import * as i10 from "./components/uicomponent/
|
|
14
|
-
import * as i11 from "./components/uicomponent/
|
|
15
|
-
import * as i12 from "./components/uicomponent/
|
|
16
|
-
import * as i13 from "./components/uicomponent/
|
|
17
|
-
import * as i14 from "./components/uicomponent/
|
|
18
|
-
import * as i15 from "./components/uicomponent/
|
|
19
|
-
import * as i16 from "./components/uicomponent/search-bar
|
|
20
|
-
import * as i17 from "./components/uicomponent/
|
|
21
|
-
import * as i18 from "./components/uicomponent/
|
|
22
|
-
import * as i19 from "./components/uicomponent/picker
|
|
23
|
-
import * as i20 from "./components/uicomponent/
|
|
24
|
-
import * as i21 from "./components/uicomponent/scrollable-
|
|
25
|
-
import * as i22 from "./components/uicomponent/
|
|
26
|
-
import * as i23 from "./components/uicomponent/
|
|
27
|
-
import * as i24 from "./
|
|
28
|
-
import * as i25 from "./
|
|
29
|
-
import * as i26 from "./
|
|
30
|
-
import * as i27 from "
|
|
31
|
-
import * as i28 from "@angular/
|
|
6
|
+
import * as i3 from "./components/uilayout/fab/fab.component";
|
|
7
|
+
import * as i4 from "./components/uilayout/single-column-layout/single-column-layout.component";
|
|
8
|
+
import * as i5 from "./components/uilayout/centered-content-layout/centered-content-layout.component";
|
|
9
|
+
import * as i6 from "./components/uicomponent/uicomponent.component";
|
|
10
|
+
import * as i7 from "./components/uicomponent/row/row.component";
|
|
11
|
+
import * as i8 from "./components/uicomponent/row-divisor/row-divisor.component";
|
|
12
|
+
import * as i9 from "./components/uicomponent/column/column.component";
|
|
13
|
+
import * as i10 from "./components/uicomponent/zstack/zstack.component";
|
|
14
|
+
import * as i11 from "./components/uicomponent/label/label.component";
|
|
15
|
+
import * as i12 from "./components/uicomponent/space/space.component";
|
|
16
|
+
import * as i13 from "./components/uicomponent/button/button.component";
|
|
17
|
+
import * as i14 from "./components/uicomponent/image/image.component";
|
|
18
|
+
import * as i15 from "./components/uicomponent/tag/tag.component";
|
|
19
|
+
import * as i16 from "./components/uicomponent/search-bar/search-bar.component";
|
|
20
|
+
import * as i17 from "./components/uicomponent/search-bar dismiss/search-bar-dismiss.component";
|
|
21
|
+
import * as i18 from "./components/uicomponent/media-type/media-type.component";
|
|
22
|
+
import * as i19 from "./components/uicomponent/picker/picker.component";
|
|
23
|
+
import * as i20 from "./components/uicomponent/picker-item/picker-item.component";
|
|
24
|
+
import * as i21 from "./components/uicomponent/scrollable-row/scrollable-row.component";
|
|
25
|
+
import * as i22 from "./components/uicomponent/scrollable-column/scrollable-column.component";
|
|
26
|
+
import * as i23 from "./components/uicomponent/profile-button/profile-button.component";
|
|
27
|
+
import * as i24 from "./components/uicomponent/progress-bar/progress-bar.component";
|
|
28
|
+
import * as i25 from "./directives/uiview.directive";
|
|
29
|
+
import * as i26 from "./components/navigation-controls/navigation-controls.component";
|
|
30
|
+
import * as i27 from "./sdui.component";
|
|
31
|
+
import * as i28 from "@angular/common";
|
|
32
|
+
import * as i29 from "@angular/router";
|
|
32
33
|
export interface SduiModuleConfig {
|
|
33
34
|
baseUrl?: string;
|
|
34
35
|
routePath?: string;
|
|
@@ -38,7 +39,7 @@ export declare class SduiModule {
|
|
|
38
39
|
static forRoot(config: SduiModuleConfig): ModuleWithProviders<SduiModule>;
|
|
39
40
|
static forRouting(config?: SduiModuleConfig): ModuleWithProviders<SduiRoutingModule>;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<SduiModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SduiModule, [typeof i1.UIScreenComponent, typeof i2.UINavigationComponent, typeof i3.
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SduiModule, [typeof i1.UIScreenComponent, typeof i2.UINavigationComponent, typeof i3.FabComponent, typeof i4.SingleColumnLayoutComponent, typeof i5.CenteredContentLayoutComponent, typeof i6.UIComponentComponent, typeof i7.RowComponent, typeof i8.RowDivisorComponent, typeof i9.ColumnComponent, typeof i10.ZStackComponent, typeof i11.LabelComponent, typeof i12.SpaceComponent, typeof i13.ButtonComponent, typeof i14.ImageComponent, typeof i15.TagComponent, typeof i16.SearchBarComponent, typeof i17.SearchBarDismissComponent, typeof i18.MediaTypeComponent, typeof i19.PickerComponent, typeof i20.PickerItemComponent, typeof i21.ScrollableRowComponent, typeof i22.ScrollableColumnComponent, typeof i23.ProfileButtonComponent, typeof i24.ProgressBarComponent, typeof i25.UIViewDirective, typeof i26.NavigationControlsComponent, typeof i27.SduiComponent], [typeof i28.CommonModule, typeof i29.RouterModule], [typeof i27.SduiComponent]>;
|
|
42
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<SduiModule>;
|
|
43
44
|
}
|
|
44
45
|
//# sourceMappingURL=sdui.module.d.ts.map
|
package/lib/sdui.module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdui.module.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAmB9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC
|
|
1
|
+
{"version":3,"file":"sdui.module.d.ts","sourceRoot":"","sources":["../../../../libs/sdui/src/lib/sdui.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAmB9D,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAc1D,MAAM,WAAW,gBAAgB;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBA2Ca,UAAU;IACrB,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,gBAAgB,GAAG,mBAAmB,CAAC,UAAU,CAAC;IAgBzE,MAAM,CAAC,UAAU,CACf,MAAM,CAAC,EAAE,gBAAgB,GACxB,mBAAmB,CAAC,iBAAiB,CAAC;yCAnB9B,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAsBtB"}
|