@tedi-design-system/angular 6.3.0-rc.5 → 6.3.0-rc.6

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": "6.3.0-rc.5",
3
+ "version": "6.3.0-rc.6",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
@@ -37,7 +37,7 @@ export declare class AccordionItemComponent implements OnInit {
37
37
  /**
38
38
  * Position of the expand action relative to the header content.
39
39
  */
40
- expandActionPosition: import("@angular/core").InputSignal<"start" | "end">;
40
+ expandActionPosition: import("@angular/core").InputSignal<"end" | "start">;
41
41
  /**
42
42
  * Whether the accordion item is expanded initially.
43
43
  * Does not control the expanded state after initialization.
@@ -48,7 +48,7 @@ export declare class AccordionItemComponent implements OnInit {
48
48
  /**
49
49
  * Position of the description relative to the title.
50
50
  */
51
- descriptionPosition: import("@angular/core").InputSignal<"start" | "end" | "both">;
51
+ descriptionPosition: import("@angular/core").InputSignal<"end" | "start" | "both">;
52
52
  /**
53
53
  * Enables the icon-card layout variant.
54
54
  */
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ export type CheckboxCardVariant = "primary" | "secondary";
3
+ export declare class CheckboxCardComponent {
4
+ /**
5
+ * Visual variant of the card.
6
+ * @default primary
7
+ */
8
+ readonly variant: import("@angular/core").InputSignal<CheckboxCardVariant>;
9
+ /**
10
+ * Whether to show the checkbox indicator.
11
+ * When false, the checkbox is visually hidden but remains functional.
12
+ * @default true
13
+ */
14
+ readonly showIndicator: import("@angular/core").InputSignal<boolean>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxCardComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxCardComponent, "label[tedi-checkbox-card]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showIndicator": { "alias": "showIndicator"; "required": false; "isSignal": true; }; }, {}, never, ["*", "tedi-feedback-text"], true, never>;
17
+ }
18
+ //# sourceMappingURL=checkbox-card.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkbox-card.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox-card/checkbox-card.component.ts"],"names":[],"mappings":";AAOA,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,WAAW,CAAC;AAE1D,qBAca,qBAAqB;IAChC;;;OAGG;IACH,QAAQ,CAAC,OAAO,2DAAyC;IAEzD;;;;OAIG;IACH,QAAQ,CAAC,aAAa,+CAAwB;yCAZnC,qBAAqB;2CAArB,qBAAqB;CAajC"}
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CheckboxCardGroupComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxCardGroupComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxCardGroupComponent, "tedi-checkbox-card-group", never, {}, {}, never, ["*"], true, never>;
5
+ }
6
+ //# sourceMappingURL=checkbox-card-group.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkbox-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox-card-group/checkbox-card-group.component.ts"],"names":[],"mappings":";AAMA,qBAWa,0BAA0B;yCAA1B,0BAA0B;2CAA1B,0BAA0B;CAAG"}
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ export type CheckboxGroupDirection = "horizontal" | "vertical";
3
+ export declare class CheckboxGroupComponent {
4
+ /**
5
+ * Label text displayed above the checkbox group.
6
+ */
7
+ readonly label: import("@angular/core").InputSignal<string | undefined>;
8
+ /**
9
+ * Layout direction of the checkboxes.
10
+ * @default horizontal
11
+ */
12
+ readonly direction: import("@angular/core").InputSignal<CheckboxGroupDirection>;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxGroupComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "tedi-checkbox-group", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; }, {}, never, ["*", "tedi-feedback-text"], true, never>;
15
+ }
16
+ //# sourceMappingURL=checkbox-group.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkbox-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox-group/checkbox-group.component.ts"],"names":[],"mappings":";AAQA,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG,UAAU,CAAC;AAE/D,qBAYa,sBAAsB;IACjC;;OAEG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;OAGG;IACH,QAAQ,CAAC,SAAS,8DAA+C;yCATtD,sBAAsB;2CAAtB,sBAAsB;CAUlC"}
@@ -1,4 +1,8 @@
1
1
  export * from "./checkbox/checkbox.component";
2
+ export * from "./checkbox-card/checkbox-card.component";
3
+ export * from "./checkbox-group/checkbox-group.component";
4
+ export * from "./checkbox-card-group/checkbox-card-group.component";
5
+ export * from "./date-picker/date-picker.component";
2
6
  export * from "./feedback-text/feedback-text.component";
3
7
  export * from "./label/label.component";
4
8
  export * from "./number-field/number-field.component";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/form/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yCAAyC,CAAC;AACxD,cAAc,yBAAyB,CAAC;AACxC,cAAc,uCAAuC,CAAC;AACtD,cAAc,UAAU,CAAC;AACzB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qCAAqC,CAAC;AACpD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/form/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,yCAAyC,CAAC;AACxD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,qDAAqD,CAAC;AACpE,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yBAAyB,CAAC;AACxC,cAAc,uCAAuC,CAAC;AACtD,cAAc,UAAU,CAAC;AACzB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qCAAqC,CAAC;AACpD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC"}