@tedi-design-system/angular 6.4.0-rc.3 → 6.4.0-rc.5
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/fesm2022/tedi-design-system-angular-community.mjs +10 -10
- package/fesm2022/tedi-design-system-angular-tedi.mjs +745 -114
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/index.css +1 -1
- package/package.json +2 -2
- package/tedi/components/filter/filter-content.directive.d.ts +6 -0
- package/tedi/components/filter/filter-content.directive.d.ts.map +1 -0
- package/tedi/components/filter/filter-group.component.d.ts +35 -0
- package/tedi/components/filter/filter-group.component.d.ts.map +1 -0
- package/tedi/components/filter/filter-prepend.directive.d.ts +12 -0
- package/tedi/components/filter/filter-prepend.directive.d.ts.map +1 -0
- package/tedi/components/filter/filter.component.d.ts +171 -0
- package/tedi/components/filter/filter.component.d.ts.map +1 -0
- package/tedi/components/filter/index.d.ts +5 -0
- package/tedi/components/filter/index.d.ts.map +1 -0
- package/tedi/components/form/text-field/text-field.component.d.ts.map +1 -1
- package/tedi/components/index.d.ts +1 -0
- package/tedi/components/index.d.ts.map +1 -1
- package/tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts +1 -1
- package/tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts.map +1 -1
- package/tedi/components/tags/index.d.ts +1 -0
- package/tedi/components/tags/index.d.ts.map +1 -1
- package/tedi/components/tags/status-badge/status-badge.component.d.ts.map +1 -1
- package/tedi/components/tags/status-indicator/index.d.ts +2 -0
- package/tedi/components/tags/status-indicator/index.d.ts.map +1 -0
- package/tedi/components/tags/status-indicator/status-indicator.component.d.ts +37 -0
- package/tedi/components/tags/status-indicator/status-indicator.component.d.ts.map +1 -0
- package/tedi/services/translation/translations.d.ts +7 -0
- 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.
|
|
3
|
+
"version": "6.4.0-rc.5",
|
|
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.
|
|
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,
|
|
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 +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"}
|
|
@@ -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>;
|
package/tedi/components/overlay/dropdown/dropdown-trigger/dropdown-trigger.directive.d.ts.map
CHANGED
|
@@ -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;
|
|
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 +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":"
|
|
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 @@
|
|
|
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"}
|
|
@@ -335,6 +335,13 @@ export declare const translationsMap: {
|
|
|
335
335
|
en: string;
|
|
336
336
|
ru: string;
|
|
337
337
|
};
|
|
338
|
+
"filter.clear-selection": {
|
|
339
|
+
description: string;
|
|
340
|
+
components: string[];
|
|
341
|
+
et: string;
|
|
342
|
+
en: string;
|
|
343
|
+
ru: string;
|
|
344
|
+
};
|
|
338
345
|
"table.filter.no-options": {
|
|
339
346
|
description: string;
|
|
340
347
|
components: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEjD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAiFX,OAAO;qBACP,OAAO;qBACP,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAuGR,MAAM;oBACN,MAAM;oBACN,MAAM;;;;;oBAKN,MAAM,WAAW,MAAM;oBAEvB,MAAM,WAAW,MAAM;oBAEvB,MAAM,WAAW,MAAM;;;;;;;;;;;;oBAavB,MAAM;oBACN,MAAM;oBACN,MAAM;;;;;oBAKN,MAAM,cAAc,MAAM;oBAE1B,MAAM,cAAc,MAAM;oBAE1B,MAAM,cAAc,MAAM
|
|
1
|
+
{"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../tedi/services/translation/translations.ts"],"names":[],"mappings":"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"}
|