@tedi-design-system/angular 6.5.0-rc.13 → 6.5.0-rc.15
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 +2 -2
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +4986 -4043
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/index.css +1 -1
- package/package.json +2 -2
- package/tedi/index.d.ts +666 -36
- package/tedi/index.d.ts.map +1 -1
package/tedi/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterContentChecked, InputSignal, Signal, PipeTransform,
|
|
2
|
+
import { AfterContentChecked, AfterViewInit, InputSignal, Signal, PipeTransform, ElementRef, TemplateRef, OnDestroy, Injector, InjectionToken, WritableSignal, OnInit, AfterContentInit, AfterViewChecked, QueryList, EnvironmentProviders } from '@angular/core';
|
|
3
3
|
import * as _tedi_design_system_angular_tedi from '@tedi-design-system/angular/tedi';
|
|
4
4
|
import * as _tanstack_table_core from '@tanstack/table-core';
|
|
5
5
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
@@ -60,8 +60,8 @@ declare class IconComponent {
|
|
|
60
60
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "tedi-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "background": { "alias": "background"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
type TextModifiers = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "normal" | "small" | "bold" | "thin" | "italic" | "center" | "left" | "right" | "nowrap" | "break-all" | "break-word" | "break-spaces" | "uppercase" | "lowercase" | "capitalize" | "capitalize-first" | "inline-block" | "inline" | "line-normal" | "line-condensed" | "subtitle";
|
|
64
|
-
type TextColor = "primary" | "secondary" | "tertiary" | "white" | "disabled" | "brand" | "success" | "warning" | "danger" | "info" | "neutral";
|
|
63
|
+
type TextModifiers = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "normal" | "small" | "extra-small" | "bold" | "thin" | "italic" | "center" | "left" | "right" | "nowrap" | "break-all" | "break-word" | "break-spaces" | "uppercase" | "lowercase" | "capitalize" | "capitalize-first" | "inline-block" | "inline" | "line-normal" | "line-condensed" | "subtitle";
|
|
64
|
+
type TextColor = "primary" | "secondary" | "tertiary" | "white" | "disabled" | "brand" | "success" | "warning" | "danger" | "info" | "neutral" | "inherit";
|
|
65
65
|
declare class TextComponent {
|
|
66
66
|
/**
|
|
67
67
|
* Single or multiple modifiers to change the text behavior
|
|
@@ -94,11 +94,15 @@ declare class BaseButtonDirective implements AfterContentChecked {
|
|
|
94
94
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BaseButtonDirective, never, never, {}, {}, never, never, true, never>;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
type ButtonVariant = "primary" | "secondary" | "neutral" | "success" | "danger" | "danger-neutral" | "primary-inverted" | "secondary-inverted" | "neutral-inverted";
|
|
97
|
+
type ButtonVariant = "primary" | "secondary" | "neutral" | "success" | "danger" | "danger-neutral" | "primary-inverted" | "secondary-inverted" | "neutral-inverted" | "primary-button-group" | "secondary-button-group";
|
|
98
98
|
type ButtonSize = "default" | "small";
|
|
99
99
|
declare class ButtonComponent {
|
|
100
100
|
/**
|
|
101
101
|
* Specifies the color theme of the button. The color should meet accessibility standards for color contrast.
|
|
102
|
+
*
|
|
103
|
+
* `primary-button-group` and `secondary-button-group` are intended for items inside
|
|
104
|
+
* `tedi-button-group`: they use the small (`button-radius-sm`) corner radius and show
|
|
105
|
+
* their selected state via `aria-pressed`.
|
|
102
106
|
* @default primary
|
|
103
107
|
*/
|
|
104
108
|
variant: _angular_core.InputSignal<ButtonVariant>;
|
|
@@ -112,6 +116,127 @@ declare class ButtonComponent {
|
|
|
112
116
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "[tedi-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof BaseButtonDirective; inputs: {}; outputs: {}; }]>;
|
|
113
117
|
}
|
|
114
118
|
|
|
119
|
+
/**
|
|
120
|
+
* Turns a `<button>` inside `tedi-button-group` into a styled, selectable item.
|
|
121
|
+
* Extends `tedi-button` (composes `BaseButtonDirective` and applies the
|
|
122
|
+
* `tedi-button` variant classes), inherits `variant`/`size` from the parent
|
|
123
|
+
* group (overridable per item), and derives its selected state from the group's
|
|
124
|
+
* `value`. The `iconLeft`/`iconRight`/`icon` inputs are auto-rendered as
|
|
125
|
+
* `tedi-icon` elements and reused by the mobile dropdown.
|
|
126
|
+
*/
|
|
127
|
+
declare class ButtonGroupButtonDirective implements AfterViewInit {
|
|
128
|
+
/** Identity contributing to the group's selected value. */
|
|
129
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
130
|
+
/** Visible text; used by the mobile dropdown and as the accessible name in icon-only mode. */
|
|
131
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
132
|
+
/** Disables interaction via the native `disabled` attribute. */
|
|
133
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
134
|
+
/** Icon rendered before the label (and in the dropdown item). */
|
|
135
|
+
readonly iconLeft: _angular_core.InputSignal<string | undefined>;
|
|
136
|
+
/** Icon rendered after the label (and in the dropdown item). */
|
|
137
|
+
readonly iconRight: _angular_core.InputSignal<string | undefined>;
|
|
138
|
+
/** Icon-only mode: icon for the button, dropdown trigger and dropdown item. */
|
|
139
|
+
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
140
|
+
/** Overrides the group's `variant` for this item. */
|
|
141
|
+
readonly variant: _angular_core.InputSignal<ButtonVariant | undefined>;
|
|
142
|
+
/** Overrides the group's `size` for this item. */
|
|
143
|
+
readonly size: _angular_core.InputSignal<ButtonSize | undefined>;
|
|
144
|
+
/** Fires on user activation (click). Disabled items don't emit. */
|
|
145
|
+
readonly clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
146
|
+
private readonly host;
|
|
147
|
+
private readonly viewContainer;
|
|
148
|
+
private readonly renderer;
|
|
149
|
+
private readonly parent;
|
|
150
|
+
private readonly iconRefs;
|
|
151
|
+
readonly effectiveVariant: _angular_core.Signal<ButtonVariant>;
|
|
152
|
+
readonly effectiveSize: _angular_core.Signal<ButtonSize>;
|
|
153
|
+
readonly selected: _angular_core.Signal<boolean>;
|
|
154
|
+
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
155
|
+
constructor();
|
|
156
|
+
ngAfterViewInit(): void;
|
|
157
|
+
/** Wraps the projected text in a padded span so the gap to an adjacent icon
|
|
158
|
+
* comes from the label (the icon itself stays flush), matching the design. */
|
|
159
|
+
private wrapLabel;
|
|
160
|
+
private syncIcon;
|
|
161
|
+
protected onClick(event: MouseEvent): void;
|
|
162
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonGroupButtonDirective, never>;
|
|
163
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ButtonGroupButtonDirective, "button[tedi-button-group-button]", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "iconLeft": { "alias": "iconLeft"; "required": false; "isSignal": true; }; "iconRight": { "alias": "iconRight"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, [{ directive: typeof BaseButtonDirective; inputs: {}; outputs: {}; }]>;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
type ButtonGroupDropdownLabelMode = "selected" | "static";
|
|
167
|
+
declare class ButtonGroupComponent {
|
|
168
|
+
/**
|
|
169
|
+
* Variant applied to every item button (each item may override via its own
|
|
170
|
+
* `variant`). Accepts the full `ButtonVariant` union. Only the
|
|
171
|
+
* `*-button-group` variants get the connected/segmented strip geometry; other
|
|
172
|
+
* variants keep their own radius and show their active colors when selected.
|
|
173
|
+
* @default primary-button-group
|
|
174
|
+
*/
|
|
175
|
+
readonly variant: _angular_core.InputSignal<ButtonVariant>;
|
|
176
|
+
/**
|
|
177
|
+
* Size applied to every item button.
|
|
178
|
+
* @default default
|
|
179
|
+
*/
|
|
180
|
+
readonly size: _angular_core.InputSignal<ButtonSize>;
|
|
181
|
+
/**
|
|
182
|
+
* When true, multiple items can be toggled on and `value` is a string array.
|
|
183
|
+
* @default false
|
|
184
|
+
*/
|
|
185
|
+
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
186
|
+
/**
|
|
187
|
+
* Selected value(s). A single `string` (or `undefined`) in single mode, a
|
|
188
|
+
* `string[]` in `multiple` mode. Two-way bindable via `[(value)]`.
|
|
189
|
+
*/
|
|
190
|
+
readonly value: _angular_core.ModelSignal<string | string[] | undefined>;
|
|
191
|
+
/**
|
|
192
|
+
* When true, items share the available horizontal space equally.
|
|
193
|
+
* @default false
|
|
194
|
+
*/
|
|
195
|
+
readonly stretch: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
196
|
+
/** Accessible name for the group. Required if no visible heading labels it. */
|
|
197
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
198
|
+
/**
|
|
199
|
+
* When true, the strip collapses into a dropdown below `mobileBreakpoint`.
|
|
200
|
+
* @default false
|
|
201
|
+
*/
|
|
202
|
+
readonly enableMobileDropdown: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
203
|
+
/**
|
|
204
|
+
* Viewport breakpoint at which the strip switches to a dropdown.
|
|
205
|
+
* @default md
|
|
206
|
+
*/
|
|
207
|
+
readonly mobileBreakpoint: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
|
|
208
|
+
/** Label for the dropdown trigger. Falls back to the `buttonGroup.menu` translation. */
|
|
209
|
+
readonly dropdownLabel: _angular_core.InputSignal<string | undefined>;
|
|
210
|
+
/**
|
|
211
|
+
* Source for the dropdown trigger label.
|
|
212
|
+
* - `static` (default) — always show `dropdownLabel`.
|
|
213
|
+
* - `selected` — show the selected item's label (single mode only).
|
|
214
|
+
* @default static
|
|
215
|
+
*/
|
|
216
|
+
readonly dropdownLabelMode: _angular_core.InputSignal<ButtonGroupDropdownLabelMode>;
|
|
217
|
+
/** Emits the value of the item the user toggled. */
|
|
218
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<string>;
|
|
219
|
+
protected readonly items: _angular_core.Signal<readonly any[]>;
|
|
220
|
+
private readonly breakpointService;
|
|
221
|
+
private readonly translations;
|
|
222
|
+
private readonly isBelowMobile;
|
|
223
|
+
protected readonly isDropdownMode: _angular_core.Signal<boolean>;
|
|
224
|
+
/** Trigger variant derived from the group `variant` (button-group variants map
|
|
225
|
+
* to their plain counterpart; any other variant is used as-is). */
|
|
226
|
+
readonly triggerVariant: _angular_core.Signal<ButtonVariant>;
|
|
227
|
+
/** Whether the group uses a *-button-group variant (drives the trigger radius). */
|
|
228
|
+
protected readonly isButtonGroupVariant: _angular_core.Signal<boolean>;
|
|
229
|
+
protected readonly selectedItem: _angular_core.Signal<any>;
|
|
230
|
+
protected readonly triggerLabel: _angular_core.Signal<any>;
|
|
231
|
+
protected readonly triggerIcon: _angular_core.Signal<any>;
|
|
232
|
+
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
233
|
+
isSelected(value: string): boolean;
|
|
234
|
+
toggle(value: string): void;
|
|
235
|
+
protected onDropdownItemSelect(item: ButtonGroupButtonDirective): void;
|
|
236
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
|
|
237
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonGroupComponent, "tedi-button-group", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "stretch": { "alias": "stretch"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "enableMobileDropdown": { "alias": "enableMobileDropdown"; "required": false; "isSignal": true; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; "isSignal": true; }; "dropdownLabel": { "alias": "dropdownLabel"; "required": false; "isSignal": true; }; "dropdownLabelMode": { "alias": "dropdownLabelMode"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "selectionChange": "selectionChange"; }, ["items"], ["*"], true, never>;
|
|
238
|
+
}
|
|
239
|
+
|
|
115
240
|
/**
|
|
116
241
|
* Interactive wrapper around a `tedi-card`. Apply to an anchor (with `href`
|
|
117
242
|
* or `routerLink`) for navigation or to a button for actions — the host
|
|
@@ -284,6 +409,13 @@ declare const translationsMap: {
|
|
|
284
409
|
en: string;
|
|
285
410
|
ru: string;
|
|
286
411
|
};
|
|
412
|
+
"header.role-search.organization": {
|
|
413
|
+
description: string;
|
|
414
|
+
components: string[];
|
|
415
|
+
et: string;
|
|
416
|
+
en: string;
|
|
417
|
+
ru: string;
|
|
418
|
+
};
|
|
287
419
|
"header.role-no-representatives": {
|
|
288
420
|
description: string;
|
|
289
421
|
components: string[];
|
|
@@ -298,7 +430,7 @@ declare const translationsMap: {
|
|
|
298
430
|
en: string;
|
|
299
431
|
ru: string;
|
|
300
432
|
};
|
|
301
|
-
"header.login
|
|
433
|
+
"header.login.mobile": {
|
|
302
434
|
description: string;
|
|
303
435
|
components: string[];
|
|
304
436
|
et: string;
|
|
@@ -312,6 +444,13 @@ declare const translationsMap: {
|
|
|
312
444
|
en: string;
|
|
313
445
|
ru: string;
|
|
314
446
|
};
|
|
447
|
+
"header.logout.mobile": {
|
|
448
|
+
description: string;
|
|
449
|
+
components: string[];
|
|
450
|
+
et: string;
|
|
451
|
+
en: string;
|
|
452
|
+
ru: string;
|
|
453
|
+
};
|
|
315
454
|
"header.logo": {
|
|
316
455
|
description: string;
|
|
317
456
|
components: string[];
|
|
@@ -326,6 +465,20 @@ declare const translationsMap: {
|
|
|
326
465
|
en: string;
|
|
327
466
|
ru: string;
|
|
328
467
|
};
|
|
468
|
+
"header.profile.mobile": {
|
|
469
|
+
description: string;
|
|
470
|
+
components: string[];
|
|
471
|
+
et: string;
|
|
472
|
+
en: string;
|
|
473
|
+
ru: string;
|
|
474
|
+
};
|
|
475
|
+
"header.search": {
|
|
476
|
+
description: string;
|
|
477
|
+
components: string[];
|
|
478
|
+
et: string;
|
|
479
|
+
en: string;
|
|
480
|
+
ru: string;
|
|
481
|
+
};
|
|
329
482
|
"file-upload.add": {
|
|
330
483
|
description: string;
|
|
331
484
|
components: string[];
|
|
@@ -900,6 +1053,13 @@ declare const translationsMap: {
|
|
|
900
1053
|
en: (value: string, isOpen: boolean) => string;
|
|
901
1054
|
ru: (value: string, isOpen: boolean) => string;
|
|
902
1055
|
};
|
|
1056
|
+
"buttonGroup.menu": {
|
|
1057
|
+
description: string;
|
|
1058
|
+
components: string[];
|
|
1059
|
+
et: string;
|
|
1060
|
+
en: string;
|
|
1061
|
+
ru: string;
|
|
1062
|
+
};
|
|
903
1063
|
carousel: {
|
|
904
1064
|
description: string;
|
|
905
1065
|
components: string[];
|
|
@@ -3686,6 +3846,11 @@ declare class DropdownComponent implements OnDestroy {
|
|
|
3686
3846
|
* @default true
|
|
3687
3847
|
*/
|
|
3688
3848
|
readonly preventOverflow: _angular_core.InputSignal<boolean>;
|
|
3849
|
+
/**
|
|
3850
|
+
* Gap in px between the trigger and the dropdown panel.
|
|
3851
|
+
* @default 4
|
|
3852
|
+
*/
|
|
3853
|
+
readonly offset: _angular_core.InputSignal<number>;
|
|
3689
3854
|
/**
|
|
3690
3855
|
* Does the dropdown hide when the page scrolls?
|
|
3691
3856
|
* @default false
|
|
@@ -3698,7 +3863,16 @@ declare class DropdownComponent implements OnDestroy {
|
|
|
3698
3863
|
readonly isOpen: _angular_core.WritableSignal<boolean>;
|
|
3699
3864
|
readonly triggerWidth: _angular_core.WritableSignal<number | null>;
|
|
3700
3865
|
readonly overlayOrigin: _angular_core.Signal<_angular_cdk_overlay.CdkOverlayOrigin>;
|
|
3701
|
-
readonly overlayPositions: _angular_core.Signal<
|
|
3866
|
+
readonly overlayPositions: _angular_core.Signal<{
|
|
3867
|
+
offsetX: number | undefined;
|
|
3868
|
+
offsetY: number | undefined;
|
|
3869
|
+
originX: "start" | "center" | "end";
|
|
3870
|
+
originY: "top" | "center" | "bottom";
|
|
3871
|
+
overlayX: "start" | "center" | "end";
|
|
3872
|
+
overlayY: "top" | "center" | "bottom";
|
|
3873
|
+
weight?: number;
|
|
3874
|
+
panelClass?: string | string[];
|
|
3875
|
+
}[]>;
|
|
3702
3876
|
readonly triggerWidthVar: _angular_core.Signal<string | null>;
|
|
3703
3877
|
private readonly platformId;
|
|
3704
3878
|
private readonly document;
|
|
@@ -3725,7 +3899,7 @@ declare class DropdownComponent implements OnDestroy {
|
|
|
3725
3899
|
private getNextEnabledIndex;
|
|
3726
3900
|
private getPrevEnabledIndex;
|
|
3727
3901
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
3728
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownComponent, "tedi-dropdown", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["dropdownTrigger", "dropdownContent"], ["[tedi-dropdown-trigger]", "tedi-dropdown-content"], true, never>;
|
|
3902
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownComponent, "tedi-dropdown", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["dropdownTrigger", "dropdownContent"], ["[tedi-dropdown-trigger]", "tedi-dropdown-content"], true, never>;
|
|
3729
3903
|
}
|
|
3730
3904
|
|
|
3731
3905
|
type FilterVariant = "primary" | "secondary";
|
|
@@ -5809,7 +5983,7 @@ declare class FooterBottomComponent implements AfterContentInit {
|
|
|
5809
5983
|
|
|
5810
5984
|
declare class HeaderComponent {
|
|
5811
5985
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
5812
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "header[tedi-header]", never, {}, {}, never, ["button[tedi-sidenav-toggle]", "*"], true, never>;
|
|
5986
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "header[tedi-header]", never, {}, {}, never, ["button[tedi-sidenav-toggle]", "*", "tedi-header-bottom"], true, never>;
|
|
5813
5987
|
}
|
|
5814
5988
|
|
|
5815
5989
|
declare class HeaderActionsComponent {
|
|
@@ -5817,9 +5991,40 @@ declare class HeaderActionsComponent {
|
|
|
5817
5991
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderActionsComponent, "tedi-header-actions", never, {}, {}, never, ["*"], true, never>;
|
|
5818
5992
|
}
|
|
5819
5993
|
|
|
5994
|
+
/**
|
|
5995
|
+
* Mobile-only secondary row rendered below the main header bar.
|
|
5996
|
+
*
|
|
5997
|
+
* Typical use: a compact search bar or mobile-specific navigation that only
|
|
5998
|
+
* appears below the `md` breakpoint. Above `md` the component is hidden via
|
|
5999
|
+
* CSS, so consumers can include it unconditionally — desktop users won't see it.
|
|
6000
|
+
*
|
|
6001
|
+
* @example
|
|
6002
|
+
* <header tedi-header>
|
|
6003
|
+
* <!-- main content -->
|
|
6004
|
+
* <tedi-header-bottom>
|
|
6005
|
+
* <tedi-header-search mobileVariant="inline">
|
|
6006
|
+
* <tedi-search inputId="search" placeholder="Search..." />
|
|
6007
|
+
* </tedi-header-search>
|
|
6008
|
+
* </tedi-header-bottom>
|
|
6009
|
+
* </header>
|
|
6010
|
+
*/
|
|
6011
|
+
declare class HeaderBottomComponent {
|
|
6012
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderBottomComponent, never>;
|
|
6013
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderBottomComponent, "tedi-header-bottom", never, {}, {}, never, ["*"], true, never>;
|
|
6014
|
+
}
|
|
6015
|
+
|
|
6016
|
+
type HeaderContentAlignment = "flex-start" | "center" | "space-between";
|
|
5820
6017
|
declare class HeaderContentComponent {
|
|
6018
|
+
/**
|
|
6019
|
+
* Controls the horizontal alignment of the projected content (`justify-content`).
|
|
6020
|
+
* Useful when the center area mixes nav links with another component (e.g. a
|
|
6021
|
+
* `<tedi-header-search>`) and you want to push them apart or align them to one edge.
|
|
6022
|
+
* @default "center"
|
|
6023
|
+
*/
|
|
6024
|
+
readonly alignment: _angular_core.InputSignal<HeaderContentAlignment>;
|
|
6025
|
+
protected readonly classes: _angular_core.Signal<string>;
|
|
5821
6026
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderContentComponent, never>;
|
|
5822
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderContentComponent, "tedi-header-content", never, {}, {}, never, ["*"], true, never>;
|
|
6027
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderContentComponent, "tedi-header-content", never, { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5823
6028
|
}
|
|
5824
6029
|
|
|
5825
6030
|
type HeaderLanguage = {
|
|
@@ -5844,82 +6049,507 @@ declare class HeaderLanguageComponent {
|
|
|
5844
6049
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLanguageComponent, "tedi-header-language", never, { "languages": { "alias": "languages"; "required": true; "isSignal": true; }; }, { "languageChange": "languageChange"; }, never, never, true, never>;
|
|
5845
6050
|
}
|
|
5846
6051
|
|
|
5847
|
-
|
|
6052
|
+
type HeaderLoginSize = "default" | "small";
|
|
6053
|
+
/**
|
|
6054
|
+
* Subset of `HeaderLoginComponent` inputs that can be overridden per breakpoint
|
|
6055
|
+
* via the `[xs]` / `[sm]` / `[md]` / `[lg]` / `[xl]` / `[xxl]` inputs. Mirrors
|
|
6056
|
+
* React's `HeaderLoginBreakpointProps`.
|
|
6057
|
+
*/
|
|
6058
|
+
type HeaderLoginInputs = {
|
|
6059
|
+
size: HeaderLoginSize | undefined;
|
|
6060
|
+
label: string;
|
|
6061
|
+
};
|
|
6062
|
+
declare class HeaderLoginComponent implements BreakpointInputs<HeaderLoginInputs> {
|
|
5848
6063
|
breakpointService: BreakpointService;
|
|
5849
6064
|
translationService: TediTranslationService;
|
|
5850
|
-
isMobile
|
|
5851
|
-
|
|
5852
|
-
|
|
5853
|
-
|
|
6065
|
+
private isMobile;
|
|
6066
|
+
/**
|
|
6067
|
+
* Visual size of the login button.
|
|
6068
|
+
* - `'small'` renders a compact icon-and-caption button (the
|
|
6069
|
+
* `<tedi-header-mobile-button>` variant).
|
|
6070
|
+
* - `'default'` renders a primary button or anchor with text only.
|
|
6071
|
+
*
|
|
6072
|
+
* When left unset, the size is chosen automatically based on the viewport:
|
|
6073
|
+
* `'small'` below the `md` breakpoint, `'default'` from `md` up. Pass an
|
|
6074
|
+
* explicit value to force a variant regardless of viewport.
|
|
6075
|
+
*/
|
|
6076
|
+
size: _angular_core.InputSignal<HeaderLoginSize | undefined>;
|
|
6077
|
+
/**
|
|
6078
|
+
* Custom label text for the login button. When provided, used as-is — not
|
|
6079
|
+
* translated. When omitted or empty, falls back to the `header.login.mobile`
|
|
6080
|
+
* translation key for the compact variant and `header.login` for the full
|
|
6081
|
+
* variant.
|
|
6082
|
+
*/
|
|
6083
|
+
label: _angular_core.InputSignal<string>;
|
|
6084
|
+
/**
|
|
6085
|
+
* If provided, the login button renders as an `<a>` navigating to this URL.
|
|
6086
|
+
* Otherwise renders as a `<button>`.
|
|
6087
|
+
*/
|
|
6088
|
+
href: _angular_core.InputSignal<string | undefined>;
|
|
6089
|
+
xs: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6090
|
+
sm: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6091
|
+
md: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6092
|
+
lg: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6093
|
+
xl: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6094
|
+
xxl: _angular_core.InputSignal<HeaderLoginInputs | undefined>;
|
|
6095
|
+
protected readonly breakpointInputs: _angular_core.Signal<HeaderLoginInputs>;
|
|
6096
|
+
isSmall: _angular_core.Signal<boolean>;
|
|
6097
|
+
resolvedLabel: _angular_core.Signal<string>;
|
|
5854
6098
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderLoginComponent, never>;
|
|
5855
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLoginComponent, "tedi-header-login", never, {}, {}, never, never, true, never>;
|
|
6099
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLoginComponent, "tedi-header-login", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "xs": { "alias": "xs"; "required": false; "isSignal": true; }; "sm": { "alias": "sm"; "required": false; "isSignal": true; }; "md": { "alias": "md"; "required": false; "isSignal": true; }; "lg": { "alias": "lg"; "required": false; "isSignal": true; }; "xl": { "alias": "xl"; "required": false; "isSignal": true; }; "xxl": { "alias": "xxl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5856
6100
|
}
|
|
5857
6101
|
|
|
5858
|
-
declare class
|
|
5859
|
-
|
|
5860
|
-
|
|
5861
|
-
|
|
6102
|
+
declare class HeaderLogoComponent {
|
|
6103
|
+
/**
|
|
6104
|
+
* Optional link URL. When set, the logo is wrapped in an anchor element.
|
|
6105
|
+
*/
|
|
6106
|
+
readonly href: _angular_core.InputSignal<string | undefined>;
|
|
6107
|
+
/**
|
|
6108
|
+
* Controls visibility of the logo. Useful for conditionally hiding the logo
|
|
6109
|
+
* based on application state, feature flags, or custom media queries that
|
|
6110
|
+
* fall between standard breakpoints (e.g. 360px). For responsive hiding at
|
|
6111
|
+
* standard breakpoints, prefer wrapping `<tedi-header-logo>` with `*hideAt`
|
|
6112
|
+
* or `*showAt`.
|
|
6113
|
+
* @default true
|
|
6114
|
+
*/
|
|
6115
|
+
readonly showLogo: _angular_core.InputSignal<boolean>;
|
|
6116
|
+
private readonly darkSlot;
|
|
6117
|
+
private readonly themeService;
|
|
6118
|
+
protected readonly useDark: _angular_core.Signal<boolean>;
|
|
6119
|
+
protected readonly classes: _angular_core.Signal<string>;
|
|
6120
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderLogoComponent, never>;
|
|
6121
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLogoComponent, "tedi-header-logo", never, { "href": { "alias": "href"; "required": false; "isSignal": true; }; "showLogo": { "alias": "showLogo"; "required": false; "isSignal": true; }; }, {}, ["darkSlot"], ["*", "[tedi-header-logo-dark]"], true, never>;
|
|
6122
|
+
}
|
|
6123
|
+
|
|
6124
|
+
/**
|
|
6125
|
+
* Marks a projected child of `<tedi-header-logo>` as the dark-theme variant.
|
|
6126
|
+
* `HeaderLogoComponent` detects it via `contentChild` and swaps to the dark
|
|
6127
|
+
* slot when the active theme is `dark`.
|
|
6128
|
+
*/
|
|
6129
|
+
declare class HeaderLogoDarkDirective {
|
|
6130
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderLogoDarkDirective, never>;
|
|
6131
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HeaderLogoDarkDirective, "[tedi-header-logo-dark]", never, {}, {}, never, never, true, never>;
|
|
6132
|
+
}
|
|
6133
|
+
|
|
6134
|
+
type HeaderLogoutSize = "default" | "small";
|
|
6135
|
+
/**
|
|
6136
|
+
* Subset of `HeaderLogoutComponent` inputs that can be overridden per
|
|
6137
|
+
* breakpoint via the `[xs]` / `[sm]` / `[md]` / `[lg]` / `[xl]` / `[xxl]`
|
|
6138
|
+
* inputs. Mirrors React's `HeaderLogoutBreakpointProps`.
|
|
6139
|
+
*/
|
|
6140
|
+
type HeaderLogoutInputs = {
|
|
6141
|
+
size: HeaderLogoutSize | undefined;
|
|
6142
|
+
label: string;
|
|
6143
|
+
};
|
|
6144
|
+
declare class HeaderLogoutComponent implements BreakpointInputs<HeaderLogoutInputs> {
|
|
6145
|
+
private readonly translationService;
|
|
6146
|
+
private readonly breakpointService;
|
|
6147
|
+
private isMobile;
|
|
6148
|
+
/**
|
|
6149
|
+
* Visual size of the logout button.
|
|
6150
|
+
* - `'small'` renders a compact icon-and-caption button (the
|
|
6151
|
+
* `<tedi-header-mobile-button>` variant).
|
|
6152
|
+
* - `'default'` renders a full-width link with inline icon and text.
|
|
6153
|
+
*
|
|
6154
|
+
* When left unset (the default), the size is chosen automatically based on
|
|
6155
|
+
* the viewport: `'small'` below the `md` breakpoint, `'default'` from `md`
|
|
6156
|
+
* up. Pass an explicit value to force a variant regardless of viewport —
|
|
6157
|
+
* useful inside tight containers (sidebar panel, dropdown) where the
|
|
6158
|
+
* desktop layout has no room.
|
|
6159
|
+
*/
|
|
6160
|
+
size: _angular_core.InputSignal<HeaderLogoutSize | undefined>;
|
|
6161
|
+
/**
|
|
6162
|
+
* Custom label text for the logout button. When provided, used as-is — not
|
|
6163
|
+
* translated. When omitted or empty, falls back to the `header.logout.mobile`
|
|
6164
|
+
* translation key for the compact variant and `header.logout` for the full
|
|
6165
|
+
* variant.
|
|
6166
|
+
*/
|
|
6167
|
+
label: _angular_core.InputSignal<string>;
|
|
6168
|
+
/**
|
|
6169
|
+
* If provided, the logout button renders as an `<a>` navigating to this URL.
|
|
6170
|
+
* Otherwise renders as a `<button>`.
|
|
6171
|
+
*/
|
|
6172
|
+
href: _angular_core.InputSignal<string | undefined>;
|
|
6173
|
+
xs: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6174
|
+
sm: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6175
|
+
md: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6176
|
+
lg: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6177
|
+
xl: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6178
|
+
xxl: _angular_core.InputSignal<HeaderLogoutInputs | undefined>;
|
|
6179
|
+
protected readonly breakpointInputs: _angular_core.Signal<HeaderLogoutInputs>;
|
|
6180
|
+
isSmall: _angular_core.Signal<boolean>;
|
|
6181
|
+
resolvedLabel: _angular_core.Signal<string>;
|
|
5862
6182
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderLogoutComponent, never>;
|
|
5863
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLogoutComponent, "
|
|
6183
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLogoutComponent, "tedi-header-logout", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "xs": { "alias": "xs"; "required": false; "isSignal": true; }; "sm": { "alias": "sm"; "required": false; "isSignal": true; }; "md": { "alias": "md"; "required": false; "isSignal": true; }; "lg": { "alias": "lg"; "required": false; "isSignal": true; }; "xl": { "alias": "xl"; "required": false; "isSignal": true; }; "xxl": { "alias": "xxl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5864
6184
|
}
|
|
5865
6185
|
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
6186
|
+
/**
|
|
6187
|
+
* Compact icon + label button used inside the mobile header row
|
|
6188
|
+
* (`<tedi-header-bottom>` or a mobile-specific section of
|
|
6189
|
+
* `<tedi-header-actions>`).
|
|
6190
|
+
*
|
|
6191
|
+
* Renders as an `<a>` when `href` is provided and `disabled` is false,
|
|
6192
|
+
* otherwise as a `<button>` — mirroring the React `HeaderMobileButton`.
|
|
6193
|
+
*
|
|
6194
|
+
* @example
|
|
6195
|
+
* <tedi-header-mobile-button icon="menu" label="Menu" />
|
|
6196
|
+
* <tedi-header-mobile-button icon="search" label="Search" href="/search" />
|
|
6197
|
+
* <tedi-header-mobile-button icon="notifications" label="Alerts" [selected]="true" />
|
|
6198
|
+
*/
|
|
6199
|
+
declare class HeaderMobileButtonComponent {
|
|
6200
|
+
/** Material icon name displayed inside the button. */
|
|
6201
|
+
icon: _angular_core.InputSignal<string>;
|
|
6202
|
+
/** Label text displayed below the icon. */
|
|
6203
|
+
label: _angular_core.InputSignal<string | undefined>;
|
|
6204
|
+
/**
|
|
6205
|
+
* If provided (and not disabled), the button renders as an `<a>`
|
|
6206
|
+
* navigating to this URL. Otherwise renders as a `<button>`.
|
|
6207
|
+
*/
|
|
6208
|
+
href: _angular_core.InputSignal<string | undefined>;
|
|
6209
|
+
/** Whether the button is in a selected state. */
|
|
6210
|
+
selected: _angular_core.InputSignal<boolean>;
|
|
6211
|
+
/** Whether the button is disabled. */
|
|
6212
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
6213
|
+
/**
|
|
6214
|
+
* Accessible name override forwarded to the inner `<button>`/`<a>`.
|
|
6215
|
+
* Useful when the visible label needs to be augmented for screen readers
|
|
6216
|
+
* (e.g. when the button only renders an icon).
|
|
6217
|
+
*/
|
|
6218
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
6219
|
+
/**
|
|
6220
|
+
* Forwarded to the inner `<button>` as `aria-haspopup`. Set to `'dialog'`
|
|
6221
|
+
* when the button opens a modal dialog, `'menu'` for menus, etc.
|
|
6222
|
+
*
|
|
6223
|
+
* Only applied when the component renders as a `<button>` (i.e. when
|
|
6224
|
+
* `href` is not set). A real navigation link with popup-trigger semantics
|
|
6225
|
+
* is confusing to assistive tech — if a popup is involved, omit `href`
|
|
6226
|
+
* so the component renders as a button.
|
|
6227
|
+
*/
|
|
6228
|
+
ariaHasPopup: _angular_core.InputSignal<"menu" | "listbox" | "dialog" | "true" | "grid" | "false" | "tree" | undefined>;
|
|
6229
|
+
/**
|
|
6230
|
+
* Forwarded to the inner `<button>` as `aria-expanded`. Pair with
|
|
6231
|
+
* `ariaHasPopup` when this button toggles a dialog/menu open.
|
|
6232
|
+
*
|
|
6233
|
+
* Only applied when the component renders as a `<button>` (i.e. when
|
|
6234
|
+
* `href` is not set).
|
|
6235
|
+
*/
|
|
6236
|
+
ariaExpanded: _angular_core.InputSignal<boolean | undefined>;
|
|
6237
|
+
renderAsLink: _angular_core.Signal<boolean>;
|
|
6238
|
+
classes: _angular_core.Signal<string>;
|
|
6239
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderMobileButtonComponent, never>;
|
|
6240
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderMobileButtonComponent, "tedi-header-mobile-button", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaHasPopup": { "alias": "ariaHasPopup"; "required": false; "isSignal": true; }; "ariaExpanded": { "alias": "ariaExpanded"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6241
|
+
}
|
|
6242
|
+
|
|
6243
|
+
type HeaderProfileSize = "default" | "small";
|
|
6244
|
+
/**
|
|
6245
|
+
* Subset of `HeaderProfileComponent` inputs that can be overridden per
|
|
6246
|
+
* breakpoint via the `[xs]` / `[sm]` / `[md]` / `[lg]` / `[xl]` / `[xxl]` inputs.
|
|
6247
|
+
*/
|
|
6248
|
+
type HeaderProfileInputs = {
|
|
6249
|
+
label: string;
|
|
6250
|
+
showPopover: Breakpoint;
|
|
6251
|
+
};
|
|
6252
|
+
declare class HeaderProfileComponent implements BreakpointInputs<HeaderProfileInputs>, AfterContentInit {
|
|
6253
|
+
/**
|
|
6254
|
+
* Custom label text for the profile button. Falls back to the `header.profile`
|
|
6255
|
+
* translation key on desktop, or `header.profile.mobile` on mobile.
|
|
6256
|
+
*/
|
|
6257
|
+
label: _angular_core.InputSignal<string>;
|
|
6258
|
+
/**
|
|
6259
|
+
* Whether to display a text label next to the profile icon on non-mobile
|
|
6260
|
+
* viewports. When `false` the desktop trigger renders as an icon-only button
|
|
6261
|
+
* and the label (custom or translated) is used as the `aria-label` only.
|
|
6262
|
+
* When `true` the label is visible and a chevron is shown next to it.
|
|
6263
|
+
*
|
|
6264
|
+
* Has no effect on the mobile/small variant — the mobile button always
|
|
6265
|
+
* shows its label.
|
|
6266
|
+
* @default false
|
|
6267
|
+
*/
|
|
6268
|
+
showLabel: _angular_core.InputSignal<boolean>;
|
|
6269
|
+
/**
|
|
6270
|
+
* Defines the breakpoint from which the profile menu is displayed as a popover.
|
|
6271
|
+
* Below this breakpoint, it is rendered as a modal.
|
|
6272
|
+
*
|
|
6273
|
+
* @default 'lg'
|
|
6274
|
+
*/
|
|
6275
|
+
showPopover: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
|
|
6276
|
+
/**
|
|
6277
|
+
* Removes default item styles from the mobile modal content. When `true`,
|
|
6278
|
+
* projected children render without the padding, border, or background that
|
|
6279
|
+
* `<tedi-header-profile>` normally applies to each direct child of the
|
|
6280
|
+
* modal. Use when the content requires custom item styling.
|
|
6281
|
+
*
|
|
6282
|
+
* Only affects the mobile/modal branch. The desktop popover uses
|
|
6283
|
+
* `<tedi-popover-content>`'s own styling and is unaffected.
|
|
6284
|
+
*
|
|
6285
|
+
* @default false
|
|
6286
|
+
*/
|
|
6287
|
+
noStyle: _angular_core.InputSignal<boolean>;
|
|
6288
|
+
/**
|
|
6289
|
+
* Visual size of the profile button.
|
|
6290
|
+
* - `'small'` renders a compact icon-and-caption button (the
|
|
6291
|
+
* `<tedi-header-mobile-button>` variant).
|
|
6292
|
+
* - `'default'` renders a button with the user's name + icon.
|
|
6293
|
+
*
|
|
6294
|
+
* When left unset, the size is chosen automatically based on the viewport:
|
|
6295
|
+
* `'small'` below the `md` breakpoint, `'default'` from `md` up. Pass an
|
|
6296
|
+
* explicit value to force a variant regardless of viewport.
|
|
6297
|
+
*/
|
|
6298
|
+
size: _angular_core.InputSignal<HeaderProfileSize | undefined>;
|
|
6299
|
+
xs: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
6300
|
+
sm: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
6301
|
+
md: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
6302
|
+
lg: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
6303
|
+
xl: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
6304
|
+
xxl: _angular_core.InputSignal<HeaderProfileInputs | undefined>;
|
|
5871
6305
|
readonly breakpointService: BreakpointService;
|
|
5872
6306
|
readonly translationService: TediTranslationService;
|
|
5873
6307
|
private readonly document;
|
|
5874
6308
|
private readonly host;
|
|
5875
6309
|
private readonly renderer;
|
|
5876
|
-
private readonly
|
|
6310
|
+
private readonly destroyRef;
|
|
6311
|
+
readonly isMobile: _angular_core.Signal<boolean>;
|
|
6312
|
+
readonly isSmall: _angular_core.Signal<boolean>;
|
|
6313
|
+
protected readonly breakpointInputs: _angular_core.Signal<HeaderProfileInputs>;
|
|
6314
|
+
readonly resolvedLabel: _angular_core.Signal<string>;
|
|
5877
6315
|
constructor();
|
|
5878
6316
|
modalOpen: _angular_core.WritableSignal<boolean>;
|
|
6317
|
+
/**
|
|
6318
|
+
* Tracks which `HeaderRoleComponent` instance currently has its
|
|
6319
|
+
* accordion open. When a role opens, it writes its own reference here;
|
|
6320
|
+
* other roles watch this signal and close themselves when it changes.
|
|
6321
|
+
* @internal
|
|
6322
|
+
*/
|
|
6323
|
+
readonly activeRole: _angular_core.WritableSignal<unknown>;
|
|
5879
6324
|
readonly buttonVariant: _angular_core.Signal<ButtonVariant>;
|
|
5880
|
-
readonly buttonClass: _angular_core.Signal<"tedi-header-profile--mobile" | null>;
|
|
5881
6325
|
ngAfterContentInit(): void;
|
|
5882
6326
|
handleModalOpen(): void;
|
|
5883
6327
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderProfileComponent, never>;
|
|
5884
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderProfileComponent, "tedi-header-profile", never, { "
|
|
6328
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderProfileComponent, "tedi-header-profile", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showPopover": { "alias": "showPopover"; "required": false; "isSignal": true; }; "noStyle": { "alias": "noStyle"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "xs": { "alias": "xs"; "required": false; "isSignal": true; }; "sm": { "alias": "sm"; "required": false; "isSignal": true; }; "md": { "alias": "md"; "required": false; "isSignal": true; }; "lg": { "alias": "lg"; "required": false; "isSignal": true; }; "xl": { "alias": "xl"; "required": false; "isSignal": true; }; "xxl": { "alias": "xxl"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5885
6329
|
}
|
|
5886
6330
|
|
|
6331
|
+
/**
|
|
6332
|
+
* Marker directive applied to a projected child of `<tedi-header-role>` to mark it
|
|
6333
|
+
* as the title content (e.g. a `<tedi-tag>`). The directive itself adds no DOM or
|
|
6334
|
+
* behavior — it only exists so `HeaderRoleComponent` can detect, via `contentChild`,
|
|
6335
|
+
* whether a consumer has projected title content. When projected, the title slot
|
|
6336
|
+
* replaces the bold `role` string fallback.
|
|
6337
|
+
*
|
|
6338
|
+
* @example
|
|
6339
|
+
* <tedi-header-role [representatives]="..." [currentRepresentative]="...">
|
|
6340
|
+
* <tedi-tag tedi-header-role-title>Esindatav</tedi-tag>
|
|
6341
|
+
* </tedi-header-role>
|
|
6342
|
+
*/
|
|
6343
|
+
declare class HeaderRoleTitleDirective {
|
|
6344
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderRoleTitleDirective, never>;
|
|
6345
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HeaderRoleTitleDirective, "[tedi-header-role-title]", never, {}, {}, never, never, true, never>;
|
|
6346
|
+
}
|
|
6347
|
+
|
|
6348
|
+
type RepresentativeIcon = {
|
|
6349
|
+
/** Material Icon name. */
|
|
6350
|
+
name: string;
|
|
6351
|
+
/** Size in px. Falls back to `<tedi-icon>`'s default (24) when omitted. */
|
|
6352
|
+
size?: IconSize;
|
|
6353
|
+
};
|
|
5887
6354
|
type Representative = {
|
|
6355
|
+
/**
|
|
6356
|
+
* Stable identifier. Required for selection comparison and for re-syncing
|
|
6357
|
+
* the current representative when the `representatives` input changes.
|
|
6358
|
+
*/
|
|
6359
|
+
id: string;
|
|
5888
6360
|
name: string;
|
|
5889
|
-
|
|
6361
|
+
/**
|
|
6362
|
+
* Icon shown next to the representative. Accepts either a Material Icon name
|
|
6363
|
+
* as a string (`'person'`) for the common case, or a full
|
|
6364
|
+
* `RepresentativeIcon` object (`{ name: 'person', size: 18 }`) when an
|
|
6365
|
+
* explicit size is needed. The two forms are equivalent when only `name` is
|
|
6366
|
+
* relevant.
|
|
6367
|
+
*/
|
|
6368
|
+
icon?: string | RepresentativeIcon;
|
|
5890
6369
|
description?: string;
|
|
5891
6370
|
};
|
|
6371
|
+
/**
|
|
6372
|
+
* Structural marker for custom content projected into the role selection
|
|
6373
|
+
* popover (desktop) or accordion (tablet/mobile).
|
|
6374
|
+
*
|
|
6375
|
+
* When present, replaces the default representative list entirely.
|
|
6376
|
+
*
|
|
6377
|
+
* Usage:
|
|
6378
|
+
* ```html
|
|
6379
|
+
* <tedi-header-role ...>
|
|
6380
|
+
* <ng-template tedi-header-role-content>
|
|
6381
|
+
* <div>Custom content here</div>
|
|
6382
|
+
* </ng-template>
|
|
6383
|
+
* </tedi-header-role>
|
|
6384
|
+
* ```
|
|
6385
|
+
*/
|
|
6386
|
+
declare class HeaderRoleContentDirective {
|
|
6387
|
+
readonly templateRef: TemplateRef<any>;
|
|
6388
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderRoleContentDirective, never>;
|
|
6389
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HeaderRoleContentDirective, "[tedi-header-role-content]", never, {}, {}, never, never, true, never>;
|
|
6390
|
+
}
|
|
6391
|
+
/**
|
|
6392
|
+
* Structural marker for custom "no results" content shown when the search
|
|
6393
|
+
* filter produces an empty representative list.
|
|
6394
|
+
*
|
|
6395
|
+
* When absent, the component falls back to a default translated string.
|
|
6396
|
+
*
|
|
6397
|
+
* Usage:
|
|
6398
|
+
* ```html
|
|
6399
|
+
* <tedi-header-role ...>
|
|
6400
|
+
* <ng-template tedi-header-role-no-results>
|
|
6401
|
+
* <tedi-empty-state description="No matches found" />
|
|
6402
|
+
* </ng-template>
|
|
6403
|
+
* </tedi-header-role>
|
|
6404
|
+
* ```
|
|
6405
|
+
*/
|
|
6406
|
+
declare class HeaderRoleNoResultsDirective {
|
|
6407
|
+
readonly templateRef: TemplateRef<any>;
|
|
6408
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderRoleNoResultsDirective, never>;
|
|
6409
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HeaderRoleNoResultsDirective, "[tedi-header-role-no-results]", never, {}, {}, never, never, true, never>;
|
|
6410
|
+
}
|
|
5892
6411
|
declare class HeaderRoleComponent {
|
|
5893
6412
|
/**
|
|
5894
|
-
*
|
|
6413
|
+
* Label text. Rendered as bold text in the title position when no title content is
|
|
6414
|
+
* projected via `[tedi-header-role-title]`. Projected content takes precedence and
|
|
6415
|
+
* replaces this string.
|
|
5895
6416
|
*/
|
|
5896
|
-
|
|
6417
|
+
label: _angular_core.InputSignal<string>;
|
|
5897
6418
|
/**
|
|
5898
6419
|
* Description text
|
|
5899
6420
|
*/
|
|
5900
6421
|
description: _angular_core.InputSignal<string>;
|
|
5901
|
-
/**
|
|
6422
|
+
/**
|
|
6423
|
+
* Whether the consumer projected title content (e.g. `<tedi-tag tedi-header-role-title>`)
|
|
6424
|
+
* via the `[tedi-header-role-title]` slot. Used by the template to know whether the
|
|
6425
|
+
* title position has content even when `label` is empty.
|
|
6426
|
+
*/
|
|
6427
|
+
protected readonly titleContent: _angular_core.Signal<HeaderRoleTitleDirective | undefined>;
|
|
6428
|
+
protected readonly hasTitle: _angular_core.Signal<boolean>;
|
|
6429
|
+
/**
|
|
6430
|
+
* Projected custom content that replaces the default representative list.
|
|
6431
|
+
*/
|
|
6432
|
+
protected readonly customContent: _angular_core.Signal<HeaderRoleContentDirective | undefined>;
|
|
6433
|
+
protected readonly hasCustomContent: _angular_core.Signal<boolean>;
|
|
6434
|
+
protected readonly customContentTemplate: _angular_core.Signal<TemplateRef<any> | null>;
|
|
6435
|
+
protected readonly noResultsContent: _angular_core.Signal<HeaderRoleNoResultsDirective | undefined>;
|
|
6436
|
+
protected readonly hasNoResultsContent: _angular_core.Signal<boolean>;
|
|
6437
|
+
protected readonly noResultsTemplate: _angular_core.Signal<TemplateRef<any> | null>;
|
|
6438
|
+
/**
|
|
6439
|
+
* Whether to display the search input above the representative list.
|
|
6440
|
+
* @default false
|
|
6441
|
+
*/
|
|
6442
|
+
showSearch: _angular_core.InputSignal<boolean>;
|
|
6443
|
+
/**
|
|
6444
|
+
* Whether the search input shows a clear button.
|
|
5902
6445
|
* @default false
|
|
5903
6446
|
*/
|
|
5904
|
-
|
|
6447
|
+
searchClearable: _angular_core.InputSignal<boolean>;
|
|
6448
|
+
/**
|
|
6449
|
+
* Whether to clear the search input when a representative is selected.
|
|
6450
|
+
* @default true
|
|
6451
|
+
*/
|
|
6452
|
+
clearSearchOnSelect: _angular_core.InputSignal<boolean>;
|
|
6453
|
+
/**
|
|
6454
|
+
* Whether the role represents an organization.
|
|
6455
|
+
* Affects the search input label.
|
|
6456
|
+
*/
|
|
6457
|
+
isOrganization: _angular_core.InputSignal<boolean>;
|
|
6458
|
+
/**
|
|
6459
|
+
* Label for the search input when selecting a representative.
|
|
6460
|
+
* Falls back to i18n labels when not provided.
|
|
6461
|
+
*/
|
|
6462
|
+
searchLabel: _angular_core.InputSignal<string | undefined>;
|
|
6463
|
+
/**
|
|
6464
|
+
* Label for the search input when selecting an organization representative.
|
|
6465
|
+
* Overrides both the default and `searchLabel` when `isOrganization` is true.
|
|
6466
|
+
*/
|
|
6467
|
+
organizationSearchLabel: _angular_core.InputSignal<string | undefined>;
|
|
6468
|
+
/**
|
|
6469
|
+
* Whether to show the role selection toggle and dropdown.
|
|
6470
|
+
* When not set, defaults to showing the selection when there are multiple representatives.
|
|
6471
|
+
*/
|
|
6472
|
+
showRoleSwitch: _angular_core.InputSignal<boolean | undefined>;
|
|
5905
6473
|
/** List of representatives */
|
|
5906
6474
|
representatives: _angular_core.InputSignal<Representative[]>;
|
|
5907
6475
|
/** Current representative */
|
|
5908
6476
|
currentRepresentative: _angular_core.ModelSignal<Representative>;
|
|
6477
|
+
/**
|
|
6478
|
+
* Emits when the role selection (mobile collapse on tablet/mobile, popover on
|
|
6479
|
+
* desktop) opens or closes.
|
|
6480
|
+
*/
|
|
6481
|
+
readonly roleSelectionToggle: _angular_core.OutputEmitterRef<boolean>;
|
|
5909
6482
|
mobileOpen: _angular_core.WritableSignal<boolean>;
|
|
5910
6483
|
inputValue: _angular_core.WritableSignal<string>;
|
|
6484
|
+
protected readonly inputId: string;
|
|
6485
|
+
readonly breakpointService: BreakpointService;
|
|
6486
|
+
readonly isTabletView: _angular_core.Signal<boolean>;
|
|
6487
|
+
protected readonly hasRoleSelection: _angular_core.Signal<boolean>;
|
|
6488
|
+
private readonly popover;
|
|
6489
|
+
private readonly searchInput;
|
|
6490
|
+
private previousPopoverOpen;
|
|
6491
|
+
private readonly parentProfile;
|
|
6492
|
+
constructor();
|
|
5911
6493
|
translationService: TediTranslationService;
|
|
5912
6494
|
switchRoleText: _angular_core.Signal<string>;
|
|
5913
6495
|
closeText: _angular_core.Signal<string>;
|
|
6496
|
+
private defaultSearchText;
|
|
6497
|
+
private defaultOrgSearchText;
|
|
5914
6498
|
searchText: _angular_core.Signal<string>;
|
|
5915
6499
|
noResultsText: _angular_core.Signal<string>;
|
|
5916
6500
|
collapseText: _angular_core.Signal<string>;
|
|
5917
6501
|
filteredRepresentatives: _angular_core.Signal<Representative[]>;
|
|
6502
|
+
closeIfOtherRoleActive(active: unknown, isOpen: boolean): void;
|
|
5918
6503
|
handleMobileOpen(): void;
|
|
5919
6504
|
handleSelectRepresentative(r: Representative): void;
|
|
5920
6505
|
handleInputChange(event: Event): void;
|
|
6506
|
+
trackById: (_: number, r: Representative) => string;
|
|
6507
|
+
protected resolveIcon(icon: string | RepresentativeIcon | undefined): {
|
|
6508
|
+
name: string;
|
|
6509
|
+
size: IconSize;
|
|
6510
|
+
} | null;
|
|
5921
6511
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderRoleComponent, never>;
|
|
5922
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderRoleComponent, "tedi-header-role", never, { "
|
|
6512
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderRoleComponent, "tedi-header-role", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "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; }; "isOrganization": { "alias": "isOrganization"; "required": false; "isSignal": true; }; "searchLabel": { "alias": "searchLabel"; "required": false; "isSignal": true; }; "organizationSearchLabel": { "alias": "organizationSearchLabel"; "required": false; "isSignal": true; }; "showRoleSwitch": { "alias": "showRoleSwitch"; "required": false; "isSignal": true; }; "representatives": { "alias": "representatives"; "required": true; "isSignal": true; }; "currentRepresentative": { "alias": "currentRepresentative"; "required": true; "isSignal": true; }; }, { "currentRepresentative": "currentRepresentativeChange"; "roleSelectionToggle": "roleSelectionToggle"; }, ["titleContent", "customContent", "noResultsContent"], ["[tedi-header-role-title]"], true, never>;
|
|
6513
|
+
}
|
|
6514
|
+
|
|
6515
|
+
type HeaderSearchMobileVariant = "modal" | "inline";
|
|
6516
|
+
interface HeaderSearchMobileLabels {
|
|
6517
|
+
/** Label shown on the mobile toggle button. Falls back to the `header.search` translation. */
|
|
6518
|
+
button?: string;
|
|
6519
|
+
/** Title shown in the mobile modal heading. Falls back to the `header.search` translation. */
|
|
6520
|
+
modalTitle?: string;
|
|
6521
|
+
}
|
|
6522
|
+
declare class HeaderSearchComponent {
|
|
6523
|
+
/**
|
|
6524
|
+
* Behavior on mobile viewports (below the `md` breakpoint).
|
|
6525
|
+
* - `'modal'` shows a toggle button that opens a fullscreen native dialog containing the projected content.
|
|
6526
|
+
* - `'inline'` renders the projected content inline at all breakpoints (no toggle, no dialog).
|
|
6527
|
+
* @default "modal"
|
|
6528
|
+
*/
|
|
6529
|
+
readonly mobileVariant: _angular_core.InputSignal<HeaderSearchMobileVariant>;
|
|
6530
|
+
/**
|
|
6531
|
+
* Mobile-specific labels for the toggle button and the modal title.
|
|
6532
|
+
* When omitted, both fall back to the `header.search` translation key.
|
|
6533
|
+
*/
|
|
6534
|
+
readonly mobileLabels: _angular_core.InputSignal<HeaderSearchMobileLabels>;
|
|
6535
|
+
/**
|
|
6536
|
+
* Disables the mobile toggle button. Has no effect on desktop or in the `inline` variant.
|
|
6537
|
+
* @default false
|
|
6538
|
+
*/
|
|
6539
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
6540
|
+
protected readonly translationService: TediTranslationService;
|
|
6541
|
+
protected readonly isMobile: _angular_core.Signal<boolean>;
|
|
6542
|
+
protected readonly modalOpen: _angular_core.WritableSignal<boolean>;
|
|
6543
|
+
protected readonly dialogEl: _angular_core.Signal<ElementRef<HTMLDialogElement> | undefined>;
|
|
6544
|
+
protected readonly buttonLabel: _angular_core.Signal<string>;
|
|
6545
|
+
protected readonly modalTitle: _angular_core.Signal<string>;
|
|
6546
|
+
protected readonly closeLabel: _angular_core.Signal<string>;
|
|
6547
|
+
constructor();
|
|
6548
|
+
protected open(): void;
|
|
6549
|
+
protected close(): void;
|
|
6550
|
+
protected onDialogClose(): void;
|
|
6551
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderSearchComponent, never>;
|
|
6552
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderSearchComponent, "tedi-header-search", never, { "mobileVariant": { "alias": "mobileVariant"; "required": false; "isSignal": true; }; "mobileLabels": { "alias": "mobileLabels"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5923
6553
|
}
|
|
5924
6554
|
|
|
5925
6555
|
declare class SideNavDropdownComponent implements AfterViewInit {
|
|
@@ -6790,6 +7420,6 @@ declare const TEDI_THEME_DEFAULT_TOKEN: InjectionToken<string>;
|
|
|
6790
7420
|
|
|
6791
7421
|
declare const TEDI_TRANSLATION_DEFAULT_TOKEN: InjectionToken<Language>;
|
|
6792
7422
|
|
|
6793
|
-
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoutComponent, HeaderProfileComponent, HeaderRoleComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, breakpointInput, calculateArrowOffset, createTablePersistence, generateUUID, getCardBorderPlacementColor, getPaddingCssVariables, getPlacementFromPositionChange, groupRowSpan, injectTediTableContext, provideTedi, resolveCardBorderRadius, toConnectedPositions, usePagination };
|
|
6794
|
-
export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonSize, ButtonVariant, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderLanguage, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TagEllipsis, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
|
|
7423
|
+
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, breakpointInput, calculateArrowOffset, createTablePersistence, generateUUID, getCardBorderPlacementColor, getPaddingCssVariables, getPlacementFromPositionChange, groupRowSpan, injectTediTableContext, provideTedi, resolveCardBorderRadius, toConnectedPositions, usePagination };
|
|
7424
|
+
export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TagEllipsis, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
|
|
6795
7425
|
//# sourceMappingURL=index.d.ts.map
|