@tedi-design-system/angular 6.4.0-rc.4 → 6.4.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.
Files changed (43) hide show
  1. package/fesm2022/tedi-design-system-angular-community.mjs +10 -10
  2. package/fesm2022/tedi-design-system-angular-tedi.mjs +823 -114
  3. package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
  4. package/index.css +1 -1
  5. package/package.json +2 -2
  6. package/tedi/components/filter/filter-content.directive.d.ts +6 -0
  7. package/tedi/components/filter/filter-content.directive.d.ts.map +1 -0
  8. package/tedi/components/filter/filter-group.component.d.ts +35 -0
  9. package/tedi/components/filter/filter-group.component.d.ts.map +1 -0
  10. package/tedi/components/filter/filter-prepend.directive.d.ts +12 -0
  11. package/tedi/components/filter/filter-prepend.directive.d.ts.map +1 -0
  12. package/tedi/components/filter/filter.component.d.ts +171 -0
  13. package/tedi/components/filter/filter.component.d.ts.map +1 -0
  14. package/tedi/components/filter/index.d.ts +5 -0
  15. package/tedi/components/filter/index.d.ts.map +1 -0
  16. package/tedi/components/form/text-field/text-field.component.d.ts.map +1 -1
  17. package/tedi/components/index.d.ts +1 -0
  18. package/tedi/components/index.d.ts.map +1 -1
  19. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.d.ts +25 -0
  20. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.d.ts.map +1 -0
  21. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.d.ts +2 -0
  22. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.d.ts.map +1 -0
  23. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.d.ts +18 -0
  24. package/tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.d.ts.map +1 -0
  25. package/tedi/components/navigation/horizontal-stepper/index.d.ts +3 -0
  26. package/tedi/components/navigation/horizontal-stepper/index.d.ts.map +1 -0
  27. package/tedi/components/navigation/index.d.ts +1 -0
  28. package/tedi/components/navigation/index.d.ts.map +1 -1
  29. package/tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts +1 -1
  30. package/tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts.map +1 -1
  31. package/tedi/components/overlay/modal/modal.types.d.ts +3 -2
  32. package/tedi/components/overlay/modal/modal.types.d.ts.map +1 -1
  33. package/tedi/components/tags/index.d.ts +1 -0
  34. package/tedi/components/tags/index.d.ts.map +1 -1
  35. package/tedi/components/tags/status-badge/status-badge.component.d.ts.map +1 -1
  36. package/tedi/components/tags/status-indicator/index.d.ts +2 -0
  37. package/tedi/components/tags/status-indicator/index.d.ts.map +1 -0
  38. package/tedi/components/tags/status-indicator/status-indicator.component.d.ts +37 -0
  39. package/tedi/components/tags/status-indicator/status-indicator.component.d.ts.map +1 -0
  40. package/tedi/services/breakpoint/breakpoint.service.d.ts +8 -0
  41. package/tedi/services/breakpoint/breakpoint.service.d.ts.map +1 -1
  42. package/tedi/services/translation/translations.d.ts +14 -0
  43. package/tedi/services/translation/translations.d.ts.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "6.4.0-rc.4",
3
+ "version": "6.4.0-rc.6",
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.1",
37
+ "@tedi-design-system/core": "^6.2.1",
38
38
  "tslib": "^2.3.0"
39
39
  },
40
40
  "commitlint": {
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FilterContentDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterContentDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilterContentDirective, "[tediFilterContent]", never, {}, {}, never, never, true, never>;
5
+ }
6
+ //# sourceMappingURL=filter-content.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-content.directive.d.ts","sourceRoot":"","sources":["../../../../tedi/components/filter/filter-content.directive.ts"],"names":[],"mappings":";AAEA,qBAIa,sBAAsB;yCAAtB,sBAAsB;2CAAtB,sBAAsB;CAAG"}
@@ -0,0 +1,35 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilterGroupComponent implements ControlValueAccessor {
4
+ /**
5
+ * Multi-select mode allows multiple filters to be selected simultaneously.
6
+ * When false, only one filter can be selected at a time (radio-like behavior).
7
+ * Value is treated as `string[]` when true, `string | null` otherwise.
8
+ * @default false
9
+ */
10
+ readonly allowMultiple: import("@angular/core").InputSignal<boolean>;
11
+ /**
12
+ * Selected value (single-select) or values (multi-select). Two-way bound.
13
+ * Use `string | null` when `allowMultiple` is false, `string[]` when true.
14
+ */
15
+ readonly value: import("@angular/core").ModelSignal<string | string[] | null>;
16
+ /**
17
+ * Accessible label for the group.
18
+ */
19
+ readonly label: import("@angular/core").InputSignal<string | undefined>;
20
+ readonly isManaged: import("@angular/core").WritableSignal<boolean>;
21
+ readonly disabled: import("@angular/core").WritableSignal<boolean>;
22
+ private readonly multiValues;
23
+ private readonly singleValue;
24
+ private onChange;
25
+ private onTouched;
26
+ writeValue(value: string | null | string[]): void;
27
+ registerOnChange(fn: (value: string | null | string[]) => void): void;
28
+ registerOnTouched(fn: () => void): void;
29
+ setDisabledState(isDisabled: boolean): void;
30
+ selectFilter(value: string): void;
31
+ isSelected(value: string): boolean;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterGroupComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterGroupComponent, "tedi-filter-group", never, { "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*"], true, never>;
34
+ }
35
+ //# sourceMappingURL=filter-group.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-group.component.d.ts","sourceRoot":"","sources":["../../../../tedi/components/filter/filter-group.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;;AAEzE,qBAqBa,oBAAqB,YAAW,oBAAoB;IAC/D;;;;;OAKG;IACH,QAAQ,CAAC,aAAa,+CAAyB;IAC/C;;;OAGG;IACH,QAAQ,CAAC,KAAK,gEAAyC;IACvD;;OAEG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IAEjC,QAAQ,CAAC,SAAS,kDAAiB;IACnC,QAAQ,CAAC,QAAQ,kDAAiB;IAElC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAGzB;IACH,OAAO,CAAC,QAAQ,CAAC,WAAW,CAGzB;IAEH,OAAO,CAAC,QAAQ,CAAuD;IACvE,OAAO,CAAC,SAAS,CAAwB;IAEzC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,EAAE,GAAG,IAAI;IAQjD,gBAAgB,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,EAAE,KAAK,IAAI,GAAG,IAAI;IAKrE,iBAAiB,CAAC,EAAE,EAAE,MAAM,IAAI,GAAG,IAAI;IAIvC,gBAAgB,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAI3C,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAgBjC,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;yCAtEvB,oBAAoB;2CAApB,oBAAoB;CA4EhC"}
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FilterPrependDirective {
3
+ /**
4
+ * Whether to hide the prepend content when the filter is selected.
5
+ * When true, the prepend is replaced by a check icon on selection.
6
+ * @default true
7
+ */
8
+ readonly hideWhenSelected: import("@angular/core").InputSignal<boolean>;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterPrependDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilterPrependDirective, "[tediFilterPrepend]", never, { "hideWhenSelected": { "alias": "hideWhenSelected"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
12
+ //# sourceMappingURL=filter-prepend.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-prepend.directive.d.ts","sourceRoot":"","sources":["../../../../tedi/components/filter/filter-prepend.directive.ts"],"names":[],"mappings":";AAEA,qBAIa,sBAAsB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,gBAAgB,+CAAe;yCAN7B,sBAAsB;2CAAtB,sBAAsB;CAOlC"}
@@ -0,0 +1,171 @@
1
+ import { ControlValueAccessor } from "@angular/forms";
2
+ import { DropdownComponent } from "../overlay/dropdown/dropdown.component";
3
+ import * as i0 from "@angular/core";
4
+ export type FilterVariant = "primary" | "secondary";
5
+ export type FilterSize = "default" | "large";
6
+ export interface FilterOption {
7
+ label: string;
8
+ value: string;
9
+ disabled?: boolean;
10
+ }
11
+ export declare class FilterComponent implements ControlValueAccessor {
12
+ /**
13
+ * Filter label text.
14
+ */
15
+ readonly text: import("@angular/core").InputSignal<string>;
16
+ /**
17
+ * Visual variant of the filter.
18
+ * @default primary
19
+ */
20
+ readonly variant: import("@angular/core").InputSignal<FilterVariant>;
21
+ /**
22
+ * Size of the filter.
23
+ * @default default
24
+ */
25
+ readonly size: import("@angular/core").InputSignal<FilterSize>;
26
+ /**
27
+ * Whether the filter is selected (boolean toggle mode, used when no options are provided).
28
+ * @default false
29
+ */
30
+ readonly selected: import("@angular/core").ModelSignal<boolean>;
31
+ /**
32
+ * Enables multi-select mode. When true, value is treated as `string[]`; when false,
33
+ * value is treated as `string`. Has no effect when no options are provided.
34
+ * @default false
35
+ */
36
+ readonly allowMultiple: import("@angular/core").InputSignal<boolean>;
37
+ /**
38
+ * Options for the dropdown. Enables single-select mode, or multi-select mode when
39
+ * combined with `allowMultiple`.
40
+ */
41
+ readonly options: import("@angular/core").InputSignal<FilterOption[]>;
42
+ /**
43
+ * Selected value (single-select) or values (multi-select). Two-way bound.
44
+ * Use `string` when `allowMultiple` is false, `string[]` when true.
45
+ */
46
+ readonly value: import("@angular/core").ModelSignal<string | string[]>;
47
+ /**
48
+ * Show the search field in the dropdown.
49
+ * @default false
50
+ */
51
+ readonly showSearch: import("@angular/core").InputSignal<boolean>;
52
+ /**
53
+ * Whether the dropdown search field has a clear (×) button.
54
+ * Only applies when `showSearch` is true.
55
+ * @default true
56
+ */
57
+ readonly searchClearable: import("@angular/core").InputSignal<boolean>;
58
+ /**
59
+ * Whether to clear the search field after an option is selected (or toggled in multi-select).
60
+ * Useful in multi-select flows where the user picks several options consecutively.
61
+ * @default false
62
+ */
63
+ readonly clearSearchOnSelect: import("@angular/core").InputSignal<boolean>;
64
+ /**
65
+ * Show "Select all" option in the dropdown.
66
+ * @default false
67
+ */
68
+ readonly showSelectAll: import("@angular/core").InputSignal<boolean>;
69
+ /**
70
+ * Show "Clear selection" action in the dropdown.
71
+ * @default false
72
+ */
73
+ readonly showClear: import("@angular/core").InputSignal<boolean>;
74
+ /**
75
+ * Override for the "Select all" option label. Defaults to the translated string.
76
+ */
77
+ readonly selectAllLabel: import("@angular/core").InputSignal<string | undefined>;
78
+ /**
79
+ * Override for the "Clear selection" action label. Defaults to the translated string.
80
+ */
81
+ readonly clearLabel: import("@angular/core").InputSignal<string | undefined>;
82
+ /**
83
+ * Emitted when the clear button is clicked in a custom content dropdown.
84
+ */
85
+ readonly cleared: import("@angular/core").OutputEmitterRef<void>;
86
+ /**
87
+ * When true, the filter label is preserved as a prefix when a value is selected.
88
+ * E.g. "Teenus: Optometristi vastuvõtt" instead of just "Optometristi vastuvõtt".
89
+ * @default false
90
+ */
91
+ readonly preserveLabel: import("@angular/core").InputSignal<boolean>;
92
+ /**
93
+ * Append dropdown to given selector.
94
+ * Use 'body' to append at the end of DOM or empty string to append next to trigger.
95
+ * @default ""
96
+ */
97
+ readonly appendTo: import("@angular/core").InputSignal<string>;
98
+ /**
99
+ * Whether the filter is disabled. Also set automatically when used with a disabled FormControl
100
+ * or when nested in a disabled FilterGroup.
101
+ * @default false
102
+ */
103
+ readonly disabled: import("@angular/core").InputSignal<boolean>;
104
+ readonly dropdown: import("@angular/core").Signal<DropdownComponent | undefined>;
105
+ private readonly dropdownPanel;
106
+ private readonly optionsList;
107
+ private readonly triggerBtn;
108
+ private readonly filterGroup;
109
+ private readonly translationService;
110
+ private readonly customContent;
111
+ private readonly filterPrepend;
112
+ readonly hasCustomContent: import("@angular/core").Signal<boolean>;
113
+ readonly hasOptions: import("@angular/core").Signal<boolean>;
114
+ readonly isMultiSelect: import("@angular/core").Signal<boolean>;
115
+ readonly isSingleSelect: import("@angular/core").Signal<boolean>;
116
+ readonly hasDropdown: import("@angular/core").Signal<boolean>;
117
+ readonly singleValue: import("@angular/core").Signal<string>;
118
+ readonly multiValues: import("@angular/core").Signal<string[]>;
119
+ private readonly defaultSelectAllLabel;
120
+ private readonly defaultClearLabel;
121
+ readonly resolvedSelectAllLabel: import("@angular/core").Signal<string>;
122
+ readonly resolvedClearLabel: import("@angular/core").Signal<string>;
123
+ private readonly idGenerator;
124
+ private readonly baseId;
125
+ private readonly formDisabled;
126
+ readonly isDisabled: import("@angular/core").Signal<boolean>;
127
+ readonly searchTerm: import("@angular/core").WritableSignal<string>;
128
+ readonly activeOptionIndex: import("@angular/core").WritableSignal<number>;
129
+ private suppressNextOptionsFocusAutoSelect;
130
+ readonly activeDescendantId: import("@angular/core").Signal<string | null>;
131
+ readonly iconSize: import("@angular/core").Signal<24 | 18>;
132
+ readonly isGrouped: import("@angular/core").Signal<boolean>;
133
+ readonly isGroupedRadio: import("@angular/core").Signal<boolean>;
134
+ readonly hidePrepend: import("@angular/core").Signal<boolean>;
135
+ readonly isSelected: import("@angular/core").Signal<boolean>;
136
+ readonly selectedCount: import("@angular/core").Signal<number>;
137
+ readonly selectedLabel: import("@angular/core").Signal<string | null>;
138
+ readonly displayText: import("@angular/core").Signal<string>;
139
+ readonly filteredOptions: import("@angular/core").Signal<FilterOption[]>;
140
+ readonly allFilteredSelected: import("@angular/core").Signal<boolean>;
141
+ readonly someFilteredSelected: import("@angular/core").Signal<boolean>;
142
+ private onChange;
143
+ private onTouched;
144
+ writeValue(value: boolean | string | string[]): void;
145
+ registerOnChange(fn: (value: boolean | string | string[]) => void): void;
146
+ registerOnTouched(fn: () => void): void;
147
+ setDisabledState(isDisabled: boolean): void;
148
+ toggle(): void;
149
+ getOptionId(index: number): string;
150
+ isOptionSelected(value: string): boolean;
151
+ selectOption(value: string): void;
152
+ toggleOption(value: string): void;
153
+ toggleSelectAll(): void;
154
+ clearSelection(): void;
155
+ clearSingleSelection(): void;
156
+ onCustomClear(): void;
157
+ onSearchClear(): void;
158
+ focusDropdownContent(keyboard?: boolean, focusLast?: boolean): void;
159
+ handleDropdownKeydown(event: KeyboardEvent): void;
160
+ onOptionsFocus(): void;
161
+ onOptionsBlur(): void;
162
+ onOptionsMousedown(): void;
163
+ onOptionsKeydown(event: KeyboardEvent): void;
164
+ private handleTabKey;
165
+ private findNextEnabledIndex;
166
+ private setActiveOption;
167
+ private getTabStops;
168
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterComponent, never>;
169
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterComponent, "tedi-filter", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "searchClearable": { "alias": "searchClearable"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "showClear": { "alias": "showClear"; "required": false; "isSignal": true; }; "selectAllLabel": { "alias": "selectAllLabel"; "required": false; "isSignal": true; }; "clearLabel": { "alias": "clearLabel"; "required": false; "isSignal": true; }; "preserveLabel": { "alias": "preserveLabel"; "required": false; "isSignal": true; }; "appendTo": { "alias": "appendTo"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; "value": "valueChange"; "cleared": "cleared"; }, ["customContent", "filterPrepend"], ["[tediFilterContent]", "[tediFilterPrepend]", "[tediFilterAppend]"], true, never>;
170
+ }
171
+ //# sourceMappingURL=filter.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter.component.d.ts","sourceRoot":"","sources":["../../../../tedi/components/filter/filter.component.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ export { FilterComponent, FilterVariant, FilterSize, FilterOption, } from "./filter.component";
2
+ export { FilterContentDirective } from "./filter-content.directive";
3
+ export { FilterPrependDirective } from "./filter-prepend.directive";
4
+ export { FilterGroupComponent } from "./filter-group.component";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/filter/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,aAAa,EACb,UAAU,EACV,YAAY,GACb,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC"}
@@ -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,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"}
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,qBA2Ba,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"}
@@ -1,6 +1,7 @@
1
1
  export * from "./base";
2
2
  export * from "./buttons";
3
3
  export * from "./content";
4
+ export * from "./filter";
4
5
  export * from "./form";
5
6
  export * from "./helpers";
6
7
  export * from "./layout";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../tedi/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../tedi/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}
@@ -0,0 +1,25 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class HorizontalStepperItemComponent {
3
+ label: import("@angular/core").InputSignal<string>;
4
+ description: import("@angular/core").InputSignal<string | undefined>;
5
+ completed: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
6
+ error: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
7
+ selected: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
8
+ /**
9
+ * Prevents the step from being clicked or focused. Use for future steps
10
+ * the user shouldn't reach yet (e.g. when validation runs step-by-step).
11
+ * Leave completed steps enabled so users can navigate back to them.
12
+ */
13
+ disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
14
+ /**
15
+ * Emits when the user clicks the step. Does not emit when the step is
16
+ * selected (it's already the current step) or disabled.
17
+ */
18
+ stepSelect: import("@angular/core").OutputEmitterRef<void>;
19
+ /** @internal Set by parent HorizontalStepperComponent */
20
+ _stepNumber: import("@angular/core").WritableSignal<number>;
21
+ protected onClick(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalStepperItemComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalStepperItemComponent, "tedi-horizontal-stepper-item", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "completed": { "alias": "completed"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "stepSelect": "stepSelect"; }, never, never, true, never>;
24
+ }
25
+ //# sourceMappingURL=horizontal-stepper-item.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"horizontal-stepper-item.component.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/horizontal-stepper-item.component.ts"],"names":[],"mappings":";AAYA,qBAgBa,8BAA8B;IACzC,KAAK,8CAA4B;IACjC,WAAW,0DAAmB;IAC9B,SAAS,qEAAiD;IAC1D,KAAK,qEAAiD;IACtD,QAAQ,qEAAiD;IACzD;;;;OAIG;IACH,QAAQ,qEAAiD;IAEzD;;;OAGG;IACH,UAAU,iDAAY;IAEtB,yDAAyD;IACzD,WAAW,iDAAa;IAExB,SAAS,CAAC,OAAO,IAAI,IAAI;yCAtBd,8BAA8B;2CAA9B,8BAA8B;CA0B1C"}
@@ -0,0 +1,2 @@
1
+ export * from "./horizontal-stepper-item.component";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper-item/index.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { HorizontalStepperItemComponent } from "./horizontal-stepper-item/horizontal-stepper-item.component";
2
+ import { BreakpointFlag } from "../../../services/breakpoint/breakpoint.service";
3
+ import * as i0 from "@angular/core";
4
+ export type HorizontalStepperBackground = "default" | "transparent";
5
+ export declare class HorizontalStepperComponent {
6
+ ariaLabel: import("@angular/core").InputSignal<string | undefined>;
7
+ background: import("@angular/core").InputSignal<HorizontalStepperBackground>;
8
+ /**
9
+ * Collapse labels so only indicators plus the selected step's label are visible.
10
+ * `true` — always collapsed. A breakpoint (`'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`) — collapsed below that breakpoint. @default 'sm'
11
+ */
12
+ compact: import("@angular/core").InputSignal<BreakpointFlag>;
13
+ items: import("@angular/core").Signal<readonly HorizontalStepperItemComponent[]>;
14
+ private assignStepNumbers;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<HorizontalStepperComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<HorizontalStepperComponent, "tedi-horizontal-stepper", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, never>;
17
+ }
18
+ //# sourceMappingURL=horizontal-stepper.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"horizontal-stepper.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/navigation/horizontal-stepper/horizontal-stepper.component.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,8BAA8B,EAAE,MAAM,6DAA6D,CAAC;AAC7G,OAAO,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;;AAEjF,MAAM,MAAM,2BAA2B,GAAG,SAAS,GAAG,aAAa,CAAC;AAEpE,qBAoBa,0BAA0B;IACrC,SAAS,0DAAmB;IAC5B,UAAU,mEAAiD;IAC3D;;;OAGG;IACH,OAAO,sDAA+B;IAEtC,KAAK,4EAAmD;IAExD,OAAO,CAAC,iBAAiB,CAItB;yCAfQ,0BAA0B;2CAA1B,0BAA0B;CAgBtC"}
@@ -0,0 +1,3 @@
1
+ export * from "./horizontal-stepper.component";
2
+ export * from "./horizontal-stepper-item";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/navigation/horizontal-stepper/index.ts"],"names":[],"mappings":"AAAA,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2BAA2B,CAAC"}
@@ -1,2 +1,3 @@
1
+ export * from "./horizontal-stepper";
1
2
  export * from "./link/link.component";
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/navigation/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC"}
@@ -1,7 +1,7 @@
1
1
  import { ElementRef } from "@angular/core";
2
2
  import { DropdownComponent } from "../dropdown.component";
3
3
  import * as i0 from "@angular/core";
4
- export type DropdownTriggerAriaHasPopup = "menu" | "listbox" | "true";
4
+ export type DropdownTriggerAriaHasPopup = "menu" | "listbox" | "dialog" | "true";
5
5
  export declare class DropdownTriggerDirective {
6
6
  /** Defines the aria-haspopup attribute for the trigger, informing assistive technologies whether it opens a menu or listbox. Improves accessibility by describing the type of popup. */
7
7
  readonly ariaHaspopup: import("@angular/core").InputSignal<DropdownTriggerAriaHasPopup>;
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown-trigger.directive.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAIX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;;AAE1D,MAAM,MAAM,2BAA2B,GAAG,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC;AAEtE,qBAYa,wBAAwB;IACnC,wLAAwL;IACxL,QAAQ,CAAC,YAAY,mEAA8C;IAEnE,QAAQ,CAAC,IAAI,0BAA+C;IAC5D,QAAQ,CAAC,QAAQ,oBAA6B;IAE9C,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAGD,OAAO;IAKP,SAAS,CAAC,KAAK,EAAE,aAAa;IAsB9B,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;yCA9Cb,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
1
+ {"version":3,"file":"dropdown-trigger.directive.d.ts","sourceRoot":"","sources":["../../../../../../tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAIX,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;;AAE1D,MAAM,MAAM,2BAA2B,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEjF,qBAYa,wBAAwB;IACnC,wLAAwL;IACxL,QAAQ,CAAC,YAAY,mEAA8C;IAEnE,QAAQ,CAAC,IAAI,0BAA+C;IAC5D,QAAQ,CAAC,QAAQ,oBAA6B;IAE9C,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAGD,OAAO;IAKP,SAAS,CAAC,KAAK,EAAE,aAAa;IAsB9B,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,gBAAgB;yCA9Cb,wBAAwB;2CAAxB,wBAAwB;CAoDpC"}
@@ -1,10 +1,11 @@
1
1
  import { InjectionToken } from "@angular/core";
2
+ import { BreakpointFlag } from "../../../services/breakpoint/breakpoint.service";
2
3
  export type ModalSize = "default" | "small";
3
4
  export type ModalWidthPreset = "xs" | "sm" | "md" | "lg" | "xl";
4
5
  export type ModalWidth = ModalWidthPreset | (string & {});
5
6
  export type ModalPosition = "center" | "top" | "left" | "right";
6
7
  export type ModalScrollBehavior = "content" | "page";
7
- export type ModalFullscreen = boolean | "sm" | "md" | "lg" | "xl";
8
+ export type ModalFullscreen = BreakpointFlag;
8
9
  export interface ModalConfig<D = unknown> {
9
10
  /** Data to pass to the modal content component. Accessible via `inject(MODAL_DATA)`. */
10
11
  data?: D;
@@ -22,7 +23,7 @@ export interface ModalConfig<D = unknown> {
22
23
  closeOnEscape?: boolean;
23
24
  /** Whether to show a close button in the header. @default true */
24
25
  showClose?: boolean;
25
- /** Fullscreen mode. `true` = always fullscreen, `'sm'`/`'md'`/etc = fullscreen below that breakpoint. @default false */
26
+ /** Fullscreen mode. `true` = always fullscreen, a breakpoint (`'sm'`, `'md'`, `'lg'`, `'xl'`, `'xxl'`) = fullscreen below that breakpoint. @default false */
26
27
  fullscreen?: ModalFullscreen;
27
28
  /** Max-width cap (e.g. '75%', '60vw'). Overrides the default 95vw limit. */
28
29
  maxWidth?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"modal.types.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/modal.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAC5C,MAAM,MAAM,gBAAgB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAChE,MAAM,MAAM,UAAU,GAAG,gBAAgB,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,MAAM,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,OAAO,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAElE,MAAM,WAAW,WAAW,CAAC,CAAC,GAAG,OAAO;IACtC,wFAAwF;IACxF,IAAI,CAAC,EAAE,CAAC,CAAC;IACT,6CAA6C;IAC7C,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,yFAAyF;IACzF,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,iIAAiI;IACjI,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,oEAAoE;IACpE,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,8DAA8D;IAC9D,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,kEAAkE;IAClE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,wHAAwH;IACxH,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,4EAA4E;IAC5E,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gDAAgD;IAChD,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,0EAA0E;AAC1E,eAAO,MAAM,UAAU,yBAA+C,CAAC"}
1
+ {"version":3,"file":"modal.types.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/overlay/modal/modal.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;AAEjF,MAAM,MAAM,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;AAC5C,MAAM,MAAM,gBAAgB,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAChE,MAAM,MAAM,UAAU,GAAG,gBAAgB,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,QAAQ,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,CAAC;AAChE,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,MAAM,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,cAAc,CAAC;AAE7C,MAAM,WAAW,WAAW,CAAC,CAAC,GAAG,OAAO;IACtC,wFAAwF;IACxF,IAAI,CAAC,EAAE,CAAC,CAAC;IACT,6CAA6C;IAC7C,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,yFAAyF;IACzF,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,+CAA+C;IAC/C,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,iIAAiI;IACjI,cAAc,CAAC,EAAE,mBAAmB,CAAC;IACrC,oEAAoE;IACpE,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,8DAA8D;IAC9D,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,kEAAkE;IAClE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,6JAA6J;IAC7J,UAAU,CAAC,EAAE,eAAe,CAAC;IAC7B,4EAA4E;IAC5E,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,iCAAiC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gDAAgD;IAChD,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,0EAA0E;AAC1E,eAAO,MAAM,UAAU,yBAA+C,CAAC"}
@@ -1,3 +1,4 @@
1
1
  export * from "./tag/tag.component";
2
2
  export * from "./status-badge/status-badge.component";
3
+ export * from "./status-indicator";
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/tags/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,uCAAuC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../tedi/components/tags/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,uCAAuC,CAAC;AACtD,cAAc,oBAAoB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"status-badge.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/tags/status-badge/status-badge.component.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;;AAEjD,MAAM,MAAM,gBAAgB,GACxB,SAAS,GACT,OAAO,GACP,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,SAAS,GACT,aAAa,CAAC;AAClB,MAAM,MAAM,kBAAkB,GAAG,QAAQ,GAAG,iBAAiB,GAAG,UAAU,CAAC;AAC3E,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,OAAO,CAAC;AAClD,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AAE9E,qBASa,oBAAoB;IAC/B,QAAQ,CAAC,WAAW,eAAwB;IAC5C,QAAQ,CAAC,QAAQ,SAA+C;IAChE;;OAEG;IACH,IAAI,8CAAqB;IACzB;;OAEG;IACH,KAAK,0DAAmB;IACxB;;;OAGG;IACH,KAAK,0DAAmB;IACxB;;OAEG;IACH,IAAI,0DAAmB;IACvB;;;OAGG;IACH,KAAK,wDAAsC;IAC3C;;;OAGG;IACH,OAAO,0DAAuC;IAC9C;;;OAGG;IACH,IAAI,uDAAqC;IACzC;;OAEG;IACH,MAAM,qEAA8B;IACpC;;OAEG;IACH,IAAI,8CAAqB;IAEzB,OAAO,2CAkCJ;IAEH,QAAQ,gEAQL;yCAxFQ,oBAAoB;2CAApB,oBAAoB;CAyFhC"}
1
+ {"version":3,"file":"status-badge.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/tags/status-badge/status-badge.component.ts"],"names":[],"mappings":"AAWA,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;;AAEjD,MAAM,MAAM,gBAAgB,GACxB,SAAS,GACT,OAAO,GACP,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,SAAS,GACT,aAAa,CAAC;AAClB,MAAM,MAAM,kBAAkB,GAAG,QAAQ,GAAG,iBAAiB,GAAG,UAAU,CAAC;AAC3E,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,OAAO,CAAC;AAClD,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,CAAC;AAE9E,qBASa,oBAAoB;IAC/B,QAAQ,CAAC,WAAW,eAAwB;IAC5C,QAAQ,CAAC,QAAQ,SAA+C;IAChE;;OAEG;IACH,IAAI,8CAAqB;IACzB;;OAEG;IACH,KAAK,0DAAmB;IACxB;;;OAGG;IACH,KAAK,0DAAmB;IACxB;;OAEG;IACH,IAAI,0DAAmB;IACvB;;;OAGG;IACH,KAAK,wDAAsC;IAC3C;;;OAGG;IACH,OAAO,0DAAuC;IAC9C;;;OAGG;IACH,IAAI,uDAAqC;IACzC;;OAEG;IACH,MAAM,qEAA8B;IACpC;;OAEG;IACH,IAAI,8CAAqB;IAEzB,OAAO,2CA2BJ;IAEH,QAAQ,gEAQL;yCAjFQ,oBAAoB;2CAApB,oBAAoB;CAkFhC"}
@@ -0,0 +1,2 @@
1
+ export * from "./status-indicator.component";
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/tags/status-indicator/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC"}
@@ -0,0 +1,37 @@
1
+ import * as i0 from "@angular/core";
2
+ export type StatusIndicatorType = "success" | "danger" | "warning" | "inactive";
3
+ export type StatusIndicatorSize = "sm" | "lg";
4
+ export type StatusIndicatorPosition = "default" | "top-right";
5
+ export declare class StatusIndicatorComponent {
6
+ /**
7
+ * Accessible label for the indicator. When provided, the indicator is
8
+ * exposed to assistive technology with `role="img"`. When omitted, the
9
+ * indicator is treated as decorative (`aria-hidden="true"`).
10
+ */
11
+ readonly label: import("@angular/core").InputSignal<string | undefined>;
12
+ /**
13
+ * The status type, which determines the indicator color.
14
+ * @default success
15
+ */
16
+ readonly type: import("@angular/core").InputSignal<StatusIndicatorType>;
17
+ /**
18
+ * The size of the indicator.
19
+ * @default sm
20
+ */
21
+ readonly size: import("@angular/core").InputSignal<StatusIndicatorSize>;
22
+ /**
23
+ * Whether the indicator has a white border ring.
24
+ * @default false
25
+ */
26
+ readonly hasBorder: import("@angular/core").InputSignal<boolean>;
27
+ /**
28
+ * Controls positioning of the indicator.
29
+ * - `'default'` — inline, no absolute positioning
30
+ * - `'top-right'` — absolutely positioned at the top-right corner of the parent
31
+ * @default default
32
+ */
33
+ readonly position: import("@angular/core").InputSignal<StatusIndicatorPosition>;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusIndicatorComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusIndicatorComponent, "tedi-status-indicator", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hasBorder": { "alias": "hasBorder"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
36
+ }
37
+ //# sourceMappingURL=status-indicator.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"status-indicator.component.d.ts","sourceRoot":"","sources":["../../../../../tedi/components/tags/status-indicator/status-indicator.component.ts"],"names":[],"mappings":";AAOA,MAAM,MAAM,mBAAmB,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,CAAC;AAChF,MAAM,MAAM,mBAAmB,GAAG,IAAI,GAAG,IAAI,CAAC;AAC9C,MAAM,MAAM,uBAAuB,GAAG,SAAS,GAAG,WAAW,CAAC;AAE9D,qBAsBa,wBAAwB;IACnC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,0DAAmB;IACjC;;;OAGG;IACH,QAAQ,CAAC,IAAI,2DAAyC;IACtD;;;OAGG;IACH,QAAQ,CAAC,IAAI,2DAAoC;IACjD;;;OAGG;IACH,QAAQ,CAAC,SAAS,+CAAyB;IAC3C;;;;;OAKG;IACH,QAAQ,CAAC,QAAQ,+DAA6C;yCA5BnD,wBAAwB;2CAAxB,wBAAwB;CA6BpC"}
@@ -18,6 +18,14 @@ export type BreakpointObject<T> = {
18
18
  xs: T;
19
19
  } & Partial<Record<Exclude<Breakpoint, "xs">, T>>;
20
20
  export type BreakpointInput<T> = T | BreakpointObject<T>;
21
+ /**
22
+ * Flag that toggles a feature on/off, optionally only below a breakpoint.
23
+ * `true` — always on. `false` — always off. A breakpoint name — on below that breakpoint.
24
+ *
25
+ * `'xs'` is intentionally excluded: "below xs" has no meaningful viewport and would
26
+ * be a confusing duplicate of `true`. Use `true` for always-on.
27
+ */
28
+ export type BreakpointFlag = boolean | Exclude<Breakpoint, "xs">;
21
29
  export declare class BreakpointService {
22
30
  private breakpointObserver;
23
31
  private readonly _currentBreakpoint;
@@ -1 +1 @@
1
- {"version":3,"file":"breakpoint.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/breakpoint/breakpoint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;;AAEzD,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAIX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,WAAW,CAAC;AAElD,MAAM,MAAM,gBAAgB,CAAC,OAAO,IAAI;KACrC,CAAC,IAAI,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;CAC9C,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,WAAW,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;AAElE,MAAM,MAAM,8BAA8B,CAAC,OAAO,IAAI,OAAO,GAC3D,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;AAEvC,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CACnD,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CACrC,CAAC;AACF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;AAEzD,qBAGa,iBAAiB;IAIhB,OAAO,CAAC,kBAAkB;IAHtC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAEjC;gBACkB,kBAAkB,EAAE,kBAAkB;IAwB1D,iBAAiB;IAMjB,mBAAmB,CAAC,OAAO,EACzB,MAAM,EAAE,8BAA8B,CAAC,OAAO,CAAC,GAC9C,OAAO;IA4BV,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IAe7D,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;yCA/ElD,iBAAiB;6CAAjB,iBAAiB;CA6F7B;AAED,wBAAgB,eAAe,CAAC,CAAC,EAC/B,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GACxB,gBAAgB,CAAC,CAAC,CAAC,CAMrB"}
1
+ {"version":3,"file":"breakpoint.service.d.ts","sourceRoot":"","sources":["../../../../tedi/services/breakpoint/breakpoint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,MAAM,EAEP,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;;AAEzD,eAAO,MAAM,WAAW;;;;;;;CAOd,CAAC;AAIX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,WAAW,CAAC;AAElD,MAAM,MAAM,gBAAgB,CAAC,OAAO,IAAI;KACrC,CAAC,IAAI,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;CAC9C,GAAG,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,WAAW,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;AAElE,MAAM,MAAM,8BAA8B,CAAC,OAAO,IAAI,OAAO,GAC3D,OAAO,CAAC,MAAM,CAAC,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC;AAEvC,MAAM,MAAM,gBAAgB,CAAC,CAAC,IAAI;IAAE,EAAE,EAAE,CAAC,CAAA;CAAE,GAAG,OAAO,CACnD,MAAM,CAAC,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,EAAE,CAAC,CAAC,CACrC,CAAC;AACF,MAAM,MAAM,eAAe,CAAC,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,CAAC,CAAC,CAAC;AAEzD;;;;;;GAMG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,GAAG,OAAO,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;AAEjE,qBAGa,iBAAiB;IAIhB,OAAO,CAAC,kBAAkB;IAHtC,OAAO,CAAC,QAAQ,CAAC,kBAAkB,CAEjC;gBACkB,kBAAkB,EAAE,kBAAkB;IAwB1D,iBAAiB;IAMjB,mBAAmB,CAAC,OAAO,EACzB,MAAM,EAAE,8BAA8B,CAAC,OAAO,CAAC,GAC9C,OAAO;IA4BV,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;IAe7D,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;yCA/ElD,iBAAiB;6CAAjB,iBAAiB;CA6F7B;AAED,wBAAgB,eAAe,CAAC,CAAC,EAC/B,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,GACxB,gBAAgB,CAAC,CAAC,CAAC,CAMrB"}
@@ -272,6 +272,13 @@ export declare const translationsMap: {
272
272
  en: string;
273
273
  ru: string;
274
274
  };
275
+ "stepper.error": {
276
+ description: string;
277
+ components: string[];
278
+ et: string;
279
+ en: string;
280
+ ru: string;
281
+ };
275
282
  "skeleton.loading": {
276
283
  description: string;
277
284
  components: string[];
@@ -335,6 +342,13 @@ export declare const translationsMap: {
335
342
  en: string;
336
343
  ru: string;
337
344
  };
345
+ "filter.clear-selection": {
346
+ description: string;
347
+ components: string[];
348
+ et: string;
349
+ en: string;
350
+ ru: string;
351
+ };
338
352
  "table.filter.no-options": {
339
353
  description: string;
340
354
  components: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"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"}