@tedi-design-system/angular 4.0.1-rc.2 → 4.1.0-rc.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "4.0.1-rc.2",
3
+ "version": "4.1.0-rc.2",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
@@ -34,7 +34,7 @@
34
34
  "ngx-float-ui": "^19.0.1 || ^20.0.0"
35
35
  },
36
36
  "dependencies": {
37
- "@tedi-design-system/core": "^2.0.0",
37
+ "@tedi-design-system/core": "^2.4.0",
38
38
  "tslib": "^2.3.0"
39
39
  },
40
40
  "commitlint": {
@@ -1,3 +1,4 @@
1
+ export * from "./modal";
1
2
  export * from "./tooltip";
2
3
  export * from "./popover";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/overlay/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/overlay/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC"}
@@ -0,0 +1,5 @@
1
+ export * from "./modal.component";
2
+ export * from "./modal-content/modal-content.component";
3
+ export * from "./modal-footer/modal-footer.component";
4
+ export * from "./modal-header/modal-header.component";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,yCAAyC,CAAC;AACxD,cAAc,uCAAuC,CAAC;AACtD,cAAc,uCAAuC,CAAC"}
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ModalContentComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalContentComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalContentComponent, "tedi-modal-content", never, {}, {}, never, ["*"], true, never>;
5
+ }
6
+ //# sourceMappingURL=modal-content.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal-content.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/overlay/modal/modal-content/modal-content.component.ts"],"names":[],"mappings":";AAMA,qBASa,qBAAqB;yCAArB,qBAAqB;2CAArB,qBAAqB;CAAG"}
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ModalFooterComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalFooterComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalFooterComponent, "tedi-modal-footer", never, {}, {}, never, ["*"], true, never>;
5
+ }
6
+ //# sourceMappingURL=modal-footer.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal-footer.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/overlay/modal/modal-footer/modal-footer.component.ts"],"names":[],"mappings":";AAMA,qBAQa,oBAAoB;yCAApB,oBAAoB;2CAApB,oBAAoB;CAAG"}
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ModalHeaderComponent {
3
+ /** Should show closing button? */
4
+ readonly showClose: import("@angular/core").InputSignal<boolean>;
5
+ private readonly modal;
6
+ closeModal(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalHeaderComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalHeaderComponent, "tedi-modal-header", never, { "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; }, {}, never, ["h1,h2,h3,h4,h5,h6", "*"], true, never>;
9
+ }
10
+ //# sourceMappingURL=modal-header.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal-header.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/overlay/modal/modal-header/modal-header.component.ts"],"names":[],"mappings":";AAUA,qBASa,oBAAoB;IAC/B,kCAAkC;IAClC,QAAQ,CAAC,SAAS,+CAAe;IAEjC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAA0B;IAEhD,UAAU;yCANC,oBAAoB;2CAApB,oBAAoB;CAShC"}
@@ -0,0 +1,30 @@
1
+ import { AfterViewInit, OnDestroy } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export type ModalSize = "default" | "small";
4
+ export type ModalWidth = "xs" | "sm" | "md" | "lg" | "xl";
5
+ export type ModalPosition = "center" | "left" | "right";
6
+ export declare class ModalComponent implements AfterViewInit, OnDestroy {
7
+ /** Is modal open? */
8
+ readonly open: import("@angular/core").ModelSignal<boolean>;
9
+ /** Modal size */
10
+ readonly size: import("@angular/core").InputSignal<ModalSize>;
11
+ /** Modal width */
12
+ readonly width: import("@angular/core").InputSignal<ModalWidth>;
13
+ /** Position of the modal */
14
+ readonly position: import("@angular/core").InputSignal<ModalPosition>;
15
+ private readonly document;
16
+ private readonly host;
17
+ private readonly platformId;
18
+ private prevBodyOverflow;
19
+ private prevFocusedElement;
20
+ readonly classes: import("@angular/core").Signal<string>;
21
+ constructor();
22
+ ngAfterViewInit(): void;
23
+ ngOnDestroy(): void;
24
+ private onOpen;
25
+ private onClose;
26
+ private handleKeydown;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalComponent, "tedi-modal", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, never, ["tedi-modal-header", "tedi-modal-content", "tedi-modal-footer"], true, never>;
29
+ }
30
+ //# sourceMappingURL=modal.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/modal.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,aAAa,EAEb,SAAS,EAGV,MAAM,eAAe,CAAC;;AAIvB,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAC5C,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;AAExD,qBAYa,cAAe,YAAW,aAAa,EAAE,SAAS;IAC7D,qBAAqB;IACrB,QAAQ,CAAC,IAAI,+CAAgB;IAE7B,iBAAiB;IACjB,QAAQ,CAAC,IAAI,iDAA+B;IAE5C,kBAAkB;IAClB,QAAQ,CAAC,KAAK,kDAA2B;IAEzC,4BAA4B;IAC5B,QAAQ,CAAC,QAAQ,qDAAkC;IAEnD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,QAAQ,CAAC,IAAI,CAA+C;IACpE,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAuB;IAElD,OAAO,CAAC,gBAAgB,CAAc;IACtC,OAAO,CAAC,kBAAkB,CAA4B;IAEtD,QAAQ,CAAC,OAAO,yCAab;;IAcH,eAAe,IAAI,IAAI;IAMvB,WAAW;IAYX,OAAO,CAAC,MAAM;IAOd,OAAO,CAAC,OAAO;IAUf,OAAO,CAAC,aAAa,CAInB;yCAtFS,cAAc;2CAAd,cAAc;CAuF1B"}