@tedi-design-system/angular 6.3.0-rc.9 → 6.3.1

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.9",
3
+ "version": "6.3.1",
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 || ^21.0.0"
35
35
  },
36
36
  "dependencies": {
37
- "@tedi-design-system/core": "^6.0.0",
37
+ "@tedi-design-system/core": "^6.0.1",
38
38
  "tslib": "^2.3.0"
39
39
  },
40
40
  "commitlint": {
@@ -1,6 +1,7 @@
1
+ import { OnDestroy, OnInit } from "@angular/core";
1
2
  import * as i0 from "@angular/core";
2
3
  export type CheckboxSize = "default" | "large";
3
- export declare class CheckboxComponent {
4
+ export declare class CheckboxComponent implements OnInit, OnDestroy {
4
5
  /**
5
6
  * Size of the checkbox.
6
7
  * @default default
@@ -11,7 +12,27 @@ export declare class CheckboxComponent {
11
12
  * @default false
12
13
  */
13
14
  readonly invalid: import("@angular/core").InputSignal<boolean>;
15
+ /**
16
+ * Identity of this checkbox inside a managed `<tedi-checkbox-group>`.
17
+ * Required when the parent group is managed (has a FormControl or
18
+ * `[(values)]` binding). Ignored otherwise.
19
+ */
20
+ readonly value: import("@angular/core").InputSignal<string | undefined>;
21
+ /**
22
+ * Disables this checkbox. An enclosing disabled `<tedi-checkbox-group>`
23
+ * forces disabled regardless of this input.
24
+ * @default false
25
+ */
26
+ readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
27
+ private readonly elementRef;
28
+ private readonly group;
29
+ private warned;
30
+ readonly effectiveDisabled: import("@angular/core").Signal<boolean>;
31
+ get hostElement(): HTMLInputElement;
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ handleChange(): void;
14
35
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "input[type=checkbox][tedi-checkbox]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "input[type=checkbox][tedi-checkbox]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
16
37
  }
17
38
  //# sourceMappingURL=checkbox.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox/checkbox.component.ts"],"names":[],"mappings":";AAOA,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAE/C,qBAYa,iBAAiB;IAC5B;;;OAGG;IACH,QAAQ,CAAC,IAAI,oDAAkC;IAC/C;;;OAGG;IACH,QAAQ,CAAC,OAAO,+CAAgB;yCAVrB,iBAAiB;2CAAjB,iBAAiB;CAW7B"}
1
+ {"version":3,"file":"checkbox.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox/checkbox.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;;AAGvB,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,OAAO,CAAC;AAE/C,qBAca,iBAAkB,YAAW,MAAM,EAAE,SAAS;IACzD;;;OAGG;IACH,QAAQ,CAAC,IAAI,oDAAkC;IAC/C;;;OAGG;IACH,QAAQ,CAAC,OAAO,+CAAgB;IAChC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,qEAAiD;IAElE,OAAO,CAAC,QAAQ,CAAC,UAAU,CACwB;IACnD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAsD;IAC5E,OAAO,CAAC,MAAM,CAAS;IAEvB,QAAQ,CAAC,iBAAiB,0CAExB;IAEF,IAAI,WAAW,IAAI,gBAAgB,CAElC;IAED,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,YAAY,IAAI,IAAI;yCA7CT,iBAAiB;2CAAjB,iBAAiB;CA0D7B"}
@@ -1,6 +1,8 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import type { CheckboxComponent } from "../checkbox/checkbox.component";
1
3
  import * as i0 from "@angular/core";
2
4
  export type CheckboxGroupDirection = "horizontal" | "vertical";
3
- export declare class CheckboxGroupComponent {
5
+ export declare class CheckboxGroupComponent implements ControlValueAccessor {
4
6
  /**
5
7
  * Label text displayed above the checkbox group.
6
8
  */
@@ -10,7 +12,53 @@ export declare class CheckboxGroupComponent {
10
12
  * @default horizontal
11
13
  */
12
14
  readonly direction: import("@angular/core").InputSignal<CheckboxGroupDirection>;
15
+ /**
16
+ * Selected values. Bind with `[(values)]` or use a FormControl on the group.
17
+ * When provided, the group enters managed mode and coordinates `checked`
18
+ * on every registered child.
19
+ * @default []
20
+ */
21
+ readonly values: import("@angular/core").ModelSignal<string[]>;
22
+ /**
23
+ * Disables the entire group. Propagates to all children.
24
+ * @default false
25
+ */
26
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
27
+ /**
28
+ * Accessible name for the group. Use when no visible `label` is rendered.
29
+ * Ignored when `label` or `ariaLabelledby` is provided.
30
+ */
31
+ readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
32
+ /**
33
+ * ID of an external element that labels the group. Ignored when `label` is
34
+ * provided.
35
+ */
36
+ readonly ariaLabelledby: import("@angular/core").InputSignal<string | undefined>;
37
+ private readonly renderer;
38
+ protected readonly labelId: string;
39
+ private readonly children;
40
+ private readonly cvaDisabled;
41
+ private readonly managed;
42
+ private onChange;
43
+ private onTouched;
44
+ readonly isManaged: import("@angular/core").Signal<boolean>;
45
+ readonly isDisabled: import("@angular/core").Signal<boolean>;
46
+ protected readonly managedAriaLabelledby: import("@angular/core").Signal<string | null>;
47
+ protected readonly managedAriaLabel: import("@angular/core").Signal<string | null>;
48
+ constructor();
49
+ writeValue(values: string[] | null): void;
50
+ registerOnChange(fn: (values: string[]) => void): void;
51
+ registerOnTouched(fn: () => void): void;
52
+ setDisabledState(isDisabled: boolean): void;
53
+ registerChild(child: CheckboxComponent): void;
54
+ unregisterChild(child: CheckboxComponent): void;
55
+ onChildChange(value: string, checked: boolean): void;
56
+ isSelected(value: string | undefined): boolean;
57
+ private syncChildrenChecked;
58
+ private applyCheckedTo;
59
+ /** @internal */
60
+ warnMissingValue(): void;
13
61
  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>;
62
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxGroupComponent, "tedi-checkbox-group", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; }, { "values": "valuesChange"; }, never, ["*", "tedi-feedback-text"], true, never>;
15
63
  }
16
64
  //# sourceMappingURL=checkbox-group.component.d.ts.map
@@ -1 +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
+ {"version":3,"file":"checkbox-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/checkbox-group/checkbox-group.component.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AAEzE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;;AAExE,MAAM,MAAM,sBAAsB,GAAG,YAAY,GAAG,UAAU,CAAC;AAI/D,qBAuBa,sBAAuB,YAAW,oBAAoB;IACjE;;OAEG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;OAGG;IACH,QAAQ,CAAC,SAAS,8DAA+C;IACjE;;;;;OAKG;IACH,QAAQ,CAAC,MAAM,gDAAuB;IACtC;;;OAGG;IACH,QAAQ,CAAC,QAAQ,+CAAyB;IAC1C;;;OAGG;IACH,QAAQ,CAAC,SAAS,0DAAmB;IACrC;;;OAGG;IACH,QAAQ,CAAC,cAAc,0DAAmB;IAE1C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAqB;IAC9C,SAAS,CAAC,QAAQ,CAAC,OAAO,SAAgD;IAC1E,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAA4C;IACrE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAiB;IAC7C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAiB;IAEzC,OAAO,CAAC,QAAQ,CAAwC;IACxD,OAAO,CAAC,SAAS,CAAyB;IAE1C,QAAQ,CAAC,SAAS,0CAA6B;IAC/C,QAAQ,CAAC,UAAU,0CAAyD;IAC5E,SAAS,CAAC,QAAQ,CAAC,qBAAqB,gDAIrC;IACH,SAAS,CAAC,QAAQ,CAAC,gBAAgB,gDAIhC;;IAWH,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,IAAI,GAAG,IAAI;IAKzC,gBAAgB,CAAC,EAAE,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,IAAI,GAAG,IAAI;IAKtD,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAK3C,aAAa,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;IAK7C,eAAe,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;IAI/C,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,IAAI;IAepD,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO;IAI9C,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,cAAc;IAWtB,gBAAgB;IAChB,gBAAgB,IAAI,IAAI;yCAlIb,sBAAsB;2CAAtB,sBAAsB;CAyIlC"}
@@ -1,6 +1,7 @@
1
+ import { OnDestroy, OnInit } from "@angular/core";
1
2
  import * as i0 from "@angular/core";
2
3
  export type RadioSize = "default" | "large";
3
- export declare class RadioComponent {
4
+ export declare class RadioComponent implements OnInit, OnDestroy {
4
5
  /**
5
6
  * Size of the radio.
6
7
  * @default default
@@ -11,7 +12,27 @@ export declare class RadioComponent {
11
12
  * @default false
12
13
  */
13
14
  readonly invalid: import("@angular/core").InputSignal<boolean>;
15
+ /**
16
+ * Identity of this radio inside a managed `<tedi-radio-group>`. Required
17
+ * when the parent group is managed (has a FormControl or `[(value)]`
18
+ * binding). Ignored otherwise.
19
+ */
20
+ readonly value: import("@angular/core").InputSignal<string | undefined>;
21
+ /**
22
+ * Disables this radio. An enclosing disabled `<tedi-radio-group>` forces
23
+ * disabled regardless of this input.
24
+ * @default false
25
+ */
26
+ readonly disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
27
+ private readonly elementRef;
28
+ private readonly group;
29
+ private warned;
30
+ readonly effectiveDisabled: import("@angular/core").Signal<boolean>;
31
+ get hostElement(): HTMLInputElement;
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ handleChange(): void;
14
35
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "input[type=radio][tedi-radio]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "input[type=radio][tedi-radio]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
16
37
  }
17
38
  //# sourceMappingURL=radio.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio/radio.component.ts"],"names":[],"mappings":";AAOA,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE5C,qBAYa,cAAc;IACzB;;;OAGG;IACH,QAAQ,CAAC,IAAI,iDAA+B;IAC5C;;;OAGG;IACH,QAAQ,CAAC,OAAO,+CAAgB;yCAVrB,cAAc;2CAAd,cAAc;CAW1B"}
1
+ {"version":3,"file":"radio.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio/radio.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAQL,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAC;;AAGvB,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAE5C,qBAca,cAAe,YAAW,MAAM,EAAE,SAAS;IACtD;;;OAGG;IACH,QAAQ,CAAC,IAAI,iDAA+B;IAC5C;;;OAGG;IACH,QAAQ,CAAC,OAAO,+CAAgB;IAChC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,qEAAiD;IAElE,OAAO,CAAC,QAAQ,CAAC,UAAU,CACwB;IACnD,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAmD;IACzE,OAAO,CAAC,MAAM,CAAS;IAEvB,QAAQ,CAAC,iBAAiB,0CAExB;IAEF,IAAI,WAAW,IAAI,gBAAgB,CAElC;IAED,QAAQ,IAAI,IAAI;IAIhB,WAAW,IAAI,IAAI;IAInB,YAAY,IAAI,IAAI;yCA7CT,cAAc;2CAAd,cAAc;CA4D1B"}
@@ -7,7 +7,13 @@ export declare class RadioCardComponent {
7
7
  */
8
8
  readonly variant: import("@angular/core").InputSignal<RadioCardVariant>;
9
9
  /**
10
- * Whether the card is part of a button-group style layout.
10
+ * Whether the card is part of a button-group style layout. Prefer setting
11
+ * `grouped` on the enclosing `tedi-radio-card-group` instead; this input
12
+ * is retained for standalone cards outside a group.
13
+ *
14
+ * The effective state is `grouped || parentGrouped` (see `isGrouped()` and
15
+ * `RadioCardGroupComponent`): a child cannot opt out when its parent is
16
+ * grouped.
11
17
  * @default false
12
18
  */
13
19
  readonly grouped: import("@angular/core").InputSignal<boolean>;
@@ -17,6 +23,8 @@ export declare class RadioCardComponent {
17
23
  * @default true
18
24
  */
19
25
  readonly showIndicator: import("@angular/core").InputSignal<boolean>;
26
+ private readonly cardGroup;
27
+ readonly isGrouped: import("@angular/core").Signal<boolean>;
20
28
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioCardComponent, never>;
21
29
  static ɵcmp: i0.ɵɵComponentDeclaration<RadioCardComponent, "label[tedi-radio-card]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; "showIndicator": { "alias": "showIndicator"; "required": false; "isSignal": true; }; }, {}, never, ["*", "tedi-feedback-text"], true, never>;
22
30
  }
@@ -1 +1 @@
1
- {"version":3,"file":"radio-card.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-card/radio-card.component.ts"],"names":[],"mappings":";AAOA,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,WAAW,CAAC;AAEvD,qBAea,kBAAkB;IAC7B;;;OAGG;IACH,QAAQ,CAAC,OAAO,wDAAsC;IACtD;;;OAGG;IACH,QAAQ,CAAC,OAAO,+CAAgB;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,+CAAwB;yCAjBnC,kBAAkB;2CAAlB,kBAAkB;CAkB9B"}
1
+ {"version":3,"file":"radio-card.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-card/radio-card.component.ts"],"names":[],"mappings":";AAUA,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,WAAW,CAAC;AAEvD,qBAea,kBAAkB;IAC7B;;;OAGG;IACH,QAAQ,CAAC,OAAO,wDAAsC;IACtD;;;;;;;;;OASG;IACH,QAAQ,CAAC,OAAO,+CAAgB;IAEhC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,+CAAwB;IAE9C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAEvB;IAEH,QAAQ,CAAC,SAAS,0CAEhB;yCA/BS,kBAAkB;2CAAlB,kBAAkB;CAgC9B"}
@@ -1,6 +1,13 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class RadioCardGroupComponent {
3
+ /**
4
+ * Renders children in a button-group style layout with shared borders and
5
+ * no gap. Child `tedi-radio-card` instances automatically inherit this and
6
+ * do not need their own `grouped` input.
7
+ * @default false
8
+ */
9
+ readonly grouped: import("@angular/core").InputSignal<boolean>;
3
10
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioCardGroupComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioCardGroupComponent, "tedi-radio-card-group", never, {}, {}, never, ["*"], true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioCardGroupComponent, "tedi-radio-card-group", never, { "grouped": { "alias": "grouped"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
5
12
  }
6
13
  //# sourceMappingURL=radio-card-group.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-card-group/radio-card-group.component.ts"],"names":[],"mappings":";AAMA,qBAWa,uBAAuB;yCAAvB,uBAAuB;2CAAvB,uBAAuB;CAAG"}
1
+ {"version":3,"file":"radio-card-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-card-group/radio-card-group.component.ts"],"names":[],"mappings":";AAOA,qBAYa,uBAAuB;IAClC;;;;;OAKG;IACH,QAAQ,CAAC,OAAO,+CAAyB;yCAP9B,uBAAuB;2CAAvB,uBAAuB;CAQnC"}
@@ -1,6 +1,8 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import type { RadioComponent } from "../radio/radio.component";
1
3
  import * as i0 from "@angular/core";
2
4
  export type RadioGroupDirection = "horizontal" | "vertical";
3
- export declare class RadioGroupComponent {
5
+ export declare class RadioGroupComponent implements ControlValueAccessor {
4
6
  /**
5
7
  * Label text displayed above the radio group.
6
8
  */
@@ -10,7 +12,59 @@ export declare class RadioGroupComponent {
10
12
  * @default horizontal
11
13
  */
12
14
  readonly direction: import("@angular/core").InputSignal<RadioGroupDirection>;
15
+ /**
16
+ * Selected value. Bind with `[(value)]` or use a FormControl on the group.
17
+ * When set, the group enters managed mode and coordinates `checked` on every
18
+ * registered child.
19
+ * @default null
20
+ */
21
+ readonly value: import("@angular/core").ModelSignal<string | null>;
22
+ /**
23
+ * Shared `name` attribute applied to child radios. Auto-generated when
24
+ * omitted. Pass an explicit `name` to avoid SSR hydration mismatches.
25
+ */
26
+ readonly name: import("@angular/core").InputSignal<string | undefined>;
27
+ /**
28
+ * Disables the entire group. Propagates to all children.
29
+ * @default false
30
+ */
31
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
32
+ /**
33
+ * Accessible name for the group. Use when no visible `label` is rendered.
34
+ * Ignored when `label` or `ariaLabelledby` is provided.
35
+ */
36
+ readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
37
+ /**
38
+ * ID of an external element that labels the group. Ignored when `label` is
39
+ * provided.
40
+ */
41
+ readonly ariaLabelledby: import("@angular/core").InputSignal<string | undefined>;
42
+ private readonly renderer;
43
+ private readonly autoName;
44
+ protected readonly labelId: string;
45
+ private readonly children;
46
+ private readonly cvaDisabled;
47
+ private readonly managed;
48
+ private onChange;
49
+ private onTouched;
50
+ readonly isManaged: import("@angular/core").Signal<boolean>;
51
+ readonly isDisabled: import("@angular/core").Signal<boolean>;
52
+ protected readonly managedAriaLabelledby: import("@angular/core").Signal<string | null>;
53
+ protected readonly managedAriaLabel: import("@angular/core").Signal<string | null>;
54
+ constructor();
55
+ writeValue(value: string | null): void;
56
+ registerOnChange(fn: (value: string | null) => void): void;
57
+ registerOnTouched(fn: () => void): void;
58
+ setDisabledState(isDisabled: boolean): void;
59
+ registerChild(child: RadioComponent): void;
60
+ unregisterChild(child: RadioComponent): void;
61
+ onChildChange(value: string): void;
62
+ isSelected(value: string | undefined): boolean;
63
+ private syncChildrenChecked;
64
+ private applyCheckedTo;
65
+ /** @internal */
66
+ warnMissingValue(): void;
13
67
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioGroupComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "tedi-radio-group", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; }, {}, never, ["*", "tedi-feedback-text"], true, never>;
68
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioGroupComponent, "tedi-radio-group", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*", "tedi-feedback-text"], true, never>;
15
69
  }
16
70
  //# sourceMappingURL=radio-group.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"radio-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-group/radio-group.component.ts"],"names":[],"mappings":";AAQA,MAAM,MAAM,mBAAmB,GAAG,YAAY,GAAG,UAAU,CAAC;AAE5D,qBAYa,mBAAmB;IAC9B;;OAEG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;OAGG;IACH,QAAQ,CAAC,SAAS,2DAA4C;yCATnD,mBAAmB;2CAAnB,mBAAmB;CAU/B"}
1
+ {"version":3,"file":"radio-group.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/radio-group/radio-group.component.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AAEzE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;;AAE/D,MAAM,MAAM,mBAAmB,GAAG,YAAY,GAAG,UAAU,CAAC;AAI5D,qBAuBa,mBAAoB,YAAW,oBAAoB;IAC9D;;OAEG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;OAGG;IACH,QAAQ,CAAC,SAAS,2DAA4C;IAC9D;;;;;OAKG;IACH,QAAQ,CAAC,KAAK,qDAA8B;IAC5C;;;OAGG;IACH,QAAQ,CAAC,IAAI,0DAAmB;IAChC;;;OAGG;IACH,QAAQ,CAAC,QAAQ,+CAAyB;IAC1C;;;OAGG;IACH,QAAQ,CAAC,SAAS,0DAAmB;IACrC;;;OAGG;IACH,QAAQ,CAAC,cAAc,0DAAmB;IAE1C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAqB;IAC9C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAuC;IAChE,SAAS,CAAC,QAAQ,CAAC,OAAO,SAA4B;IACtD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAyC;IAClE,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAiB;IAC7C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAiB;IAEzC,OAAO,CAAC,QAAQ,CAA6C;IAC7D,OAAO,CAAC,SAAS,CAAyB;IAE1C,QAAQ,CAAC,SAAS,0CAA6B;IAC/C,QAAQ,CAAC,UAAU,0CAAyD;IAC5E,SAAS,CAAC,QAAQ,CAAC,qBAAqB,gDAIrC;IACH,SAAS,CAAC,QAAQ,CAAC,gBAAgB,gDAIhC;;IAmBH,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAKtC,gBAAgB,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI;IAK1D,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAK3C,aAAa,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI;IAK1C,eAAe,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI;IAI5C,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAQlC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO;IAI9C,OAAO,CAAC,mBAAmB;IAO3B,OAAO,CAAC,cAAc;IAWtB,gBAAgB;IAChB,gBAAgB,IAAI,IAAI;yCAzIb,mBAAmB;2CAAnB,mBAAmB;CAgJ/B"}
@@ -1,4 +1,4 @@
1
- import { ConnectedPosition } from "@angular/cdk/overlay";
1
+ import { CdkConnectedOverlay, ConnectedPosition } from "@angular/cdk/overlay";
2
2
  import { CdkListbox } from "@angular/cdk/listbox";
3
3
  import { AfterContentChecked, AfterViewChecked, ElementRef } from "@angular/core";
4
4
  import { ControlValueAccessor } from "@angular/forms";
@@ -152,6 +152,12 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
152
152
  * @default false
153
153
  */
154
154
  searchable: import("@angular/core").InputSignal<boolean>;
155
+ /**
156
+ * Custom search function for filtering options.
157
+ * When provided, overrides the default label-based search.
158
+ * Receives the search term and the option item (with all original properties), returns true to include the option.
159
+ */
160
+ searchFn: import("@angular/core").InputSignal<((term: string, item: T) => boolean) | undefined>;
155
161
  readonly SpecialOptionControls: typeof SpecialOptionControls;
156
162
  readonly dropdownPositions: ConnectedPosition[];
157
163
  listboxId: import("@angular/core").Signal<string>;
@@ -167,6 +173,7 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
167
173
  hiddenTagsCount: import("@angular/core").Signal<number>;
168
174
  listboxRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
169
175
  cdkListboxRef: import("@angular/core").Signal<CdkListbox<any> | undefined>;
176
+ connectedOverlay: import("@angular/core").Signal<CdkConnectedOverlay | undefined>;
170
177
  triggerRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
171
178
  searchInputRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
172
179
  multiselectContainerRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
@@ -183,6 +190,7 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
183
190
  selectedLabels: import("@angular/core").Signal<string[]>;
184
191
  showSingleSelectedValue: import("@angular/core").Signal<boolean>;
185
192
  allOptionsSelected: import("@angular/core").Signal<boolean>;
193
+ someOptionsSelected: import("@angular/core").Signal<boolean>;
186
194
  ngAfterContentChecked(): void;
187
195
  ngAfterViewChecked(): void;
188
196
  onWindowResize(): void;
@@ -195,6 +203,7 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
195
203
  onSearchFocus(): void;
196
204
  onSearchBlur(): void;
197
205
  onTriggerClick(): void;
206
+ onArrowClick(event: Event): void;
198
207
  onTriggerEnter(): void;
199
208
  onSearchKeydown(event: KeyboardEvent): void;
200
209
  private static readonly KEY_CODES;
@@ -233,6 +242,6 @@ export declare class SelectComponent<T = unknown> implements AfterContentChecked
233
242
  registerOnTouched(fn: () => void): void;
234
243
  setDisabledState(isDisabled: boolean): void;
235
244
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
236
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; }, {}, ["optionTemplate", "valueTemplate"], never, true, never>;
245
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; }, {}, ["optionTemplate", "valueTemplate"], never, true, never>;
237
246
  }
238
247
  //# sourceMappingURL=select.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/select/select.component.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"select.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/select/select.component.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"text-field.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/text-field/text-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAUL,UAAU,EACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EACL,gBAAgB,EAEjB,MAAM,kCAAkC,CAAC;;AAE1C,qBA0Ba,kBACX,YAAW,oBAAoB,EAAE,gBAAgB;IAgBrC,OAAO,CAAC,EAAE;IAdtB;;OAEG;IACH,KAAK,8CAAqB;IAC1B;;;OAGG;IACH,YAAY,+CAAwB;IACpC;;OAEG;IACH,QAAQ,CAAC,KAAK,iDAAkB;gBAEZ,EAAE,EAAE,UAAU,CAAC,gBAAgB,CAAC;IAEpD,QAAQ,CAAC,QAAQ,0CAEf;IAEF,QAAQ,CAAC,OAAO,kDAAiB;IAEjC,eAAe,CAAC,SAAS,EAAE,OAAO;IAIlC,OAAO,CAAC,YAAY,CAAiB;IACrC,OAAO,CAAC,QAAQ,CAAqC;IACrD,OAAO,CAAC,SAAS,CAAwB;IAEzC,OAAO,CAAC,QAAQ;IAKhB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAItC,gBAAgB,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI;IAInD,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAK3C,iBAAiB,CAAC,KAAK,EAAE,KAAK;IAQ9B,UAAU;IAIV,UAAU;yCAnEC,kBAAkB;2CAAlB,kBAAkB;CA2E9B"}
1
+ {"version":3,"file":"text-field.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/form/text-field/text-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAUL,UAAU,EACX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EACL,gBAAgB,EAEjB,MAAM,kCAAkC,CAAC;;AAE1C,qBA0Ba,kBACX,YAAW,oBAAoB,EAAE,gBAAgB;IAgBrC,OAAO,CAAC,EAAE;IAdtB;;OAEG;IACH,KAAK,8CAAqB;IAC1B;;;OAGG;IACH,YAAY,+CAAwB;IACpC;;OAEG;IACH,QAAQ,CAAC,KAAK,iDAAkB;gBAEZ,EAAE,EAAE,UAAU,CAAC,gBAAgB,CAAC;IAEpD,QAAQ,CAAC,QAAQ,0CAAuC;IAExD,QAAQ,CAAC,OAAO,kDAAiB;IAEjC,eAAe,CAAC,SAAS,EAAE,OAAO;IAIlC,OAAO,CAAC,YAAY,CAAiB;IACrC,OAAO,CAAC,QAAQ,CAAqC;IACrD,OAAO,CAAC,SAAS,CAAwB;IAEzC,OAAO,CAAC,QAAQ;IAKhB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI;IAItC,gBAAgB,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI;IAInD,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAK3C,iBAAiB,CAAC,KAAK,EAAE,KAAK;IAQ9B,UAAU;IAIV,UAAU;yCAjEC,kBAAkB;2CAAlB,kBAAkB;CAyE9B"}