@tedi-design-system/angular 7.0.1 → 7.1.0-rc.10
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/community/index.d.ts +7 -0
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +10 -3
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +922 -82
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +511 -16
- package/tedi/index.d.ts.map +1 -1
package/tedi/index.d.ts
CHANGED
|
@@ -358,6 +358,13 @@ declare const translationsMap: {
|
|
|
358
358
|
en: string;
|
|
359
359
|
ru: string;
|
|
360
360
|
};
|
|
361
|
+
"breadcrumbs.show-more": {
|
|
362
|
+
description: string;
|
|
363
|
+
components: string[];
|
|
364
|
+
et: string;
|
|
365
|
+
en: string;
|
|
366
|
+
ru: string;
|
|
367
|
+
};
|
|
361
368
|
more: {
|
|
362
369
|
components: string[];
|
|
363
370
|
et: string;
|
|
@@ -4094,6 +4101,7 @@ declare class TediTableComponent<TData> {
|
|
|
4094
4101
|
*/
|
|
4095
4102
|
readonly rowDrop: _angular_core.OutputEmitterRef<CdkDragDrop<TData[], TData[], any>>;
|
|
4096
4103
|
protected readonly injector: Injector;
|
|
4104
|
+
private readonly platformId;
|
|
4097
4105
|
private readonly translation;
|
|
4098
4106
|
private readonly _hoveredRowId;
|
|
4099
4107
|
/**
|
|
@@ -4320,6 +4328,14 @@ declare class TediTableComponent<TData> {
|
|
|
4320
4328
|
protected handleHeaderKeydown(event: KeyboardEvent, header: {
|
|
4321
4329
|
column: ReturnType<Table<TData>["getAllLeafColumns"]>[number];
|
|
4322
4330
|
}): void;
|
|
4331
|
+
private readonly scrollContainer;
|
|
4332
|
+
/**
|
|
4333
|
+
* Resets the table's own vertical scroll to the top. Only affects the
|
|
4334
|
+
* internal scroll container (used when `maxHeight` is set); the horizontal
|
|
4335
|
+
* scroll position is preserved since columns are identical across pages, and
|
|
4336
|
+
* the window scroll is intentionally left untouched.
|
|
4337
|
+
*/
|
|
4338
|
+
private resetScrollTop;
|
|
4323
4339
|
protected handlePaginationPageChange(nextPage: number): void;
|
|
4324
4340
|
protected handlePaginationPageSizeChange(nextSize: number | undefined): void;
|
|
4325
4341
|
protected getColumnMeta(column: {
|
|
@@ -4778,12 +4794,13 @@ declare class DropdownComponent implements OnDestroy {
|
|
|
4778
4794
|
private readonly document;
|
|
4779
4795
|
private readonly renderer;
|
|
4780
4796
|
private scrollListener?;
|
|
4797
|
+
private skipNextGestureOutsideClick;
|
|
4781
4798
|
constructor();
|
|
4782
4799
|
ngOnDestroy(): void;
|
|
4783
4800
|
showDropdown(initialFocus?: "selected" | "first" | "last"): void;
|
|
4784
4801
|
hideDropdown(): void;
|
|
4785
4802
|
toggleDropdown(): void;
|
|
4786
|
-
onOutsideClick(): void;
|
|
4803
|
+
onOutsideClick(event?: MouseEvent): void;
|
|
4787
4804
|
handleFocusOut: (event: FocusEvent) => void;
|
|
4788
4805
|
tabOutOfDropdown(shiftKey: boolean): void;
|
|
4789
4806
|
focusFirstItem(): void;
|
|
@@ -5900,6 +5917,11 @@ declare class LabelComponent {
|
|
|
5900
5917
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LabelComponent, "[tedi-label]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5901
5918
|
}
|
|
5902
5919
|
|
|
5920
|
+
declare class LabelRowComponent {
|
|
5921
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LabelRowComponent, never>;
|
|
5922
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LabelRowComponent, "tedi-label-row", never, {}, {}, never, ["*"], true, never>;
|
|
5923
|
+
}
|
|
5924
|
+
|
|
5903
5925
|
type NumberFieldSize = "default" | "small";
|
|
5904
5926
|
declare class NumberFieldComponent implements ControlValueAccessor {
|
|
5905
5927
|
/**
|
|
@@ -6051,6 +6073,25 @@ declare class SelectValueTemplateDirective<T = unknown> {
|
|
|
6051
6073
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectValueTemplateDirective<any>, never>;
|
|
6052
6074
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectValueTemplateDirective<any>, "[tediSelectValue]", never, {}, {}, never, never, true, never>;
|
|
6053
6075
|
}
|
|
6076
|
+
/**
|
|
6077
|
+
* Directive for custom tooltip content next to the label. Use when the tooltip
|
|
6078
|
+
* needs formatting the plain `tooltip` string input cannot express (bold,
|
|
6079
|
+
* italic, links). Takes precedence over the `tooltip` input.
|
|
6080
|
+
*
|
|
6081
|
+
* @example
|
|
6082
|
+
* ```html
|
|
6083
|
+
* <tedi-select [options]="options" label="Ravim">
|
|
6084
|
+
* <ng-template tediSelectTooltip>
|
|
6085
|
+
* Vali <b>toimeaine</b>, mitte ravimi nimi.
|
|
6086
|
+
* </ng-template>
|
|
6087
|
+
* </tedi-select>
|
|
6088
|
+
* ```
|
|
6089
|
+
*/
|
|
6090
|
+
declare class SelectTooltipTemplateDirective {
|
|
6091
|
+
template: TemplateRef<unknown>;
|
|
6092
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectTooltipTemplateDirective, never>;
|
|
6093
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectTooltipTemplateDirective, "[tediSelectTooltip]", never, {}, {}, never, never, true, never>;
|
|
6094
|
+
}
|
|
6054
6095
|
|
|
6055
6096
|
type InputSize = "small" | "large" | "default";
|
|
6056
6097
|
type InputState = "valid" | "error" | "default";
|
|
@@ -6085,8 +6126,11 @@ declare class FormFieldComponent implements AfterContentInit {
|
|
|
6085
6126
|
ngControl?: NgControl;
|
|
6086
6127
|
feedback?: FeedbackTextComponent;
|
|
6087
6128
|
private readonly destroyRef;
|
|
6129
|
+
private readonly inputGroup;
|
|
6130
|
+
constructor();
|
|
6088
6131
|
ngAfterContentInit(): void;
|
|
6089
6132
|
private updateValidationState;
|
|
6133
|
+
private computeInvalid;
|
|
6090
6134
|
readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
|
|
6091
6135
|
readonly validationState: _angular_core.Signal<ValidationState>;
|
|
6092
6136
|
showClearButton: _angular_core.Signal<boolean>;
|
|
@@ -6095,7 +6139,7 @@ declare class FormFieldComponent implements AfterContentInit {
|
|
|
6095
6139
|
"tedi-form-field": boolean;
|
|
6096
6140
|
"tedi-form-field--valid": boolean;
|
|
6097
6141
|
"tedi-form-field--invalid": boolean;
|
|
6098
|
-
"tedi-form-field--disabled": boolean
|
|
6142
|
+
"tedi-form-field--disabled": boolean;
|
|
6099
6143
|
"tedi-form-field--small": boolean;
|
|
6100
6144
|
"tedi-form-field--large": boolean;
|
|
6101
6145
|
"tedi-form-field--with-icon": boolean;
|
|
@@ -6138,7 +6182,8 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6138
6182
|
label: _angular_core.InputSignal<string | undefined>;
|
|
6139
6183
|
/**
|
|
6140
6184
|
* When set, renders an info button next to the label that reveals this text
|
|
6141
|
-
* in a tooltip on hover/focus.
|
|
6185
|
+
* in a tooltip on hover/focus. For formatted content, project a
|
|
6186
|
+
* `*tediSelectTooltip` template instead, which takes precedence over this.
|
|
6142
6187
|
*/
|
|
6143
6188
|
tooltip: _angular_core.InputSignal<string | undefined>;
|
|
6144
6189
|
/**
|
|
@@ -6249,6 +6294,14 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6249
6294
|
* @default false
|
|
6250
6295
|
*/
|
|
6251
6296
|
tagEllipsis: _angular_core.InputSignal<TagEllipsis>;
|
|
6297
|
+
/**
|
|
6298
|
+
* Which end the single selected value truncates from when it doesn't fit.
|
|
6299
|
+
* The full value is revealed in a tooltip on hover/focus. `false` (default)
|
|
6300
|
+
* never truncates. Applies to single-select mode; multiselect tags use
|
|
6301
|
+
* `tagEllipsis`.
|
|
6302
|
+
* @default false
|
|
6303
|
+
*/
|
|
6304
|
+
ellipsis: _angular_core.InputSignal<false | EllipsisPosition>;
|
|
6252
6305
|
/**
|
|
6253
6306
|
* Function used to compare option values for equality.
|
|
6254
6307
|
* Used to determine which options are selected.
|
|
@@ -6269,6 +6322,11 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6269
6322
|
* When not set, the dropdown height is calculated based on available viewport space.
|
|
6270
6323
|
*/
|
|
6271
6324
|
maxDropdownHeight: _angular_core.InputSignal<number | undefined>;
|
|
6325
|
+
/**
|
|
6326
|
+
* Does the dropdown close when the page scrolls?
|
|
6327
|
+
* @default false
|
|
6328
|
+
*/
|
|
6329
|
+
hideOnScroll: _angular_core.InputSignal<boolean>;
|
|
6272
6330
|
/**
|
|
6273
6331
|
* Layout type for the dropdown options.
|
|
6274
6332
|
* - `"menu"` (default): vertical list of options.
|
|
@@ -6350,8 +6408,12 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6350
6408
|
tagRefs: _angular_core.Signal<readonly ElementRef<any>[]>;
|
|
6351
6409
|
hostRef: ElementRef<any>;
|
|
6352
6410
|
private ngZone;
|
|
6411
|
+
private renderer;
|
|
6412
|
+
private document;
|
|
6413
|
+
private scrollListener?;
|
|
6353
6414
|
optionTemplate: _angular_core.Signal<SelectOptionTemplateDirective<any> | undefined>;
|
|
6354
6415
|
valueTemplate: _angular_core.Signal<SelectValueTemplateDirective<any> | undefined>;
|
|
6416
|
+
tooltipTemplate: _angular_core.Signal<SelectTooltipTemplateDirective | undefined>;
|
|
6355
6417
|
normalizedOptions: _angular_core.Signal<SelectOption<T>[]>;
|
|
6356
6418
|
filteredOptions: _angular_core.Signal<SelectOption<T>[]>;
|
|
6357
6419
|
optionGroups: _angular_core.Signal<SelectOptionGroup<T>[]>;
|
|
@@ -6387,6 +6449,8 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6387
6449
|
private openDropdown;
|
|
6388
6450
|
private calculateDropdownMaxHeight;
|
|
6389
6451
|
private closeDropdown;
|
|
6452
|
+
private setupScrollListener;
|
|
6453
|
+
private cleanupScrollListener;
|
|
6390
6454
|
handleValueChange(event: {
|
|
6391
6455
|
value: readonly unknown[];
|
|
6392
6456
|
}): void;
|
|
@@ -6418,7 +6482,136 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
|
|
|
6418
6482
|
registerOnTouched(fn: () => void): void;
|
|
6419
6483
|
setDisabledState(isDisabled: boolean): void;
|
|
6420
6484
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
|
|
6421
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate"], never, true, never>;
|
|
6485
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "ellipsis": { "alias": "ellipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate", "tooltipTemplate"], never, true, never>;
|
|
6486
|
+
}
|
|
6487
|
+
|
|
6488
|
+
type SliderHideLabel = boolean | "keep-space";
|
|
6489
|
+
declare class SliderComponent implements ControlValueAccessor, OnDestroy {
|
|
6490
|
+
/**
|
|
6491
|
+
* Unique identifier for the underlying range input, used for label association.
|
|
6492
|
+
*/
|
|
6493
|
+
inputId: _angular_core.InputSignal<string>;
|
|
6494
|
+
/**
|
|
6495
|
+
* Name attribute of the underlying input.
|
|
6496
|
+
*/
|
|
6497
|
+
name: _angular_core.InputSignal<string | undefined>;
|
|
6498
|
+
/**
|
|
6499
|
+
* Label rendered above the slider.
|
|
6500
|
+
*/
|
|
6501
|
+
label: _angular_core.InputSignal<string | undefined>;
|
|
6502
|
+
/**
|
|
6503
|
+
* Hide the label visually while keeping it available to assistive technology, or
|
|
6504
|
+
* `"keep-space"` to also reserve its vertical space.
|
|
6505
|
+
* @default false
|
|
6506
|
+
*/
|
|
6507
|
+
hideLabel: _angular_core.InputSignal<SliderHideLabel>;
|
|
6508
|
+
/**
|
|
6509
|
+
* Marks the field as required.
|
|
6510
|
+
* @default false
|
|
6511
|
+
*/
|
|
6512
|
+
required: _angular_core.InputSignal<boolean>;
|
|
6513
|
+
/**
|
|
6514
|
+
* Minimum allowed value.
|
|
6515
|
+
* @default 0
|
|
6516
|
+
*/
|
|
6517
|
+
min: _angular_core.InputSignal<number>;
|
|
6518
|
+
/**
|
|
6519
|
+
* Maximum allowed value.
|
|
6520
|
+
* @default 100
|
|
6521
|
+
*/
|
|
6522
|
+
max: _angular_core.InputSignal<number>;
|
|
6523
|
+
/**
|
|
6524
|
+
* Step size.
|
|
6525
|
+
* @default 1
|
|
6526
|
+
*/
|
|
6527
|
+
step: _angular_core.InputSignal<number>;
|
|
6528
|
+
/**
|
|
6529
|
+
* Current value. Supports two-way binding and reactive forms.
|
|
6530
|
+
*/
|
|
6531
|
+
value: _angular_core.ModelSignal<number>;
|
|
6532
|
+
/**
|
|
6533
|
+
* Disables the slider.
|
|
6534
|
+
* @default false
|
|
6535
|
+
*/
|
|
6536
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
6537
|
+
/**
|
|
6538
|
+
* Marks the slider as invalid for validation purposes.
|
|
6539
|
+
* @default false
|
|
6540
|
+
*/
|
|
6541
|
+
invalid: _angular_core.InputSignal<boolean>;
|
|
6542
|
+
/**
|
|
6543
|
+
* Text rendered to the left of the track (e.g. the minimum value).
|
|
6544
|
+
*/
|
|
6545
|
+
minLabel: _angular_core.InputSignal<string | undefined>;
|
|
6546
|
+
/**
|
|
6547
|
+
* Text rendered to the right of the track (e.g. the maximum value).
|
|
6548
|
+
* Ignored when `showCurrentValue` is `true`.
|
|
6549
|
+
*/
|
|
6550
|
+
maxLabel: _angular_core.InputSignal<string | undefined>;
|
|
6551
|
+
/**
|
|
6552
|
+
* Render the current value to the right of the track instead of `maxLabel`.
|
|
6553
|
+
* @default false
|
|
6554
|
+
*/
|
|
6555
|
+
showCurrentValue: _angular_core.InputSignal<boolean>;
|
|
6556
|
+
/**
|
|
6557
|
+
* Formats the current value for the thumb tooltip and the `showCurrentValue` label.
|
|
6558
|
+
*/
|
|
6559
|
+
valueFormatter: _angular_core.InputSignal<((value: number) => string) | undefined>;
|
|
6560
|
+
/**
|
|
6561
|
+
* Show a tooltip with the current value above the thumb while hovered, focused or dragged.
|
|
6562
|
+
* @default true
|
|
6563
|
+
*/
|
|
6564
|
+
tooltip: _angular_core.InputSignal<boolean>;
|
|
6565
|
+
/**
|
|
6566
|
+
* FeedbackText component inputs, rendered below the slider.
|
|
6567
|
+
*/
|
|
6568
|
+
feedbackText: _angular_core.InputSignal<ComponentInputs<FeedbackTextComponent> | undefined>;
|
|
6569
|
+
/**
|
|
6570
|
+
* Accessible label used when no visible `label` is provided.
|
|
6571
|
+
*/
|
|
6572
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
6573
|
+
/**
|
|
6574
|
+
* ID of an element that labels the slider, used when no visible `label` is provided.
|
|
6575
|
+
*/
|
|
6576
|
+
ariaLabelledby: _angular_core.InputSignal<string | undefined>;
|
|
6577
|
+
/**
|
|
6578
|
+
* Human-readable text alternative of the current value.
|
|
6579
|
+
*/
|
|
6580
|
+
ariaValuetext: _angular_core.InputSignal<string | undefined>;
|
|
6581
|
+
private readonly formDisabled;
|
|
6582
|
+
readonly isHovered: _angular_core.WritableSignal<boolean>;
|
|
6583
|
+
readonly isFocused: _angular_core.WritableSignal<boolean>;
|
|
6584
|
+
readonly isDragging: _angular_core.WritableSignal<boolean>;
|
|
6585
|
+
private onChange;
|
|
6586
|
+
private onTouched;
|
|
6587
|
+
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
6588
|
+
readonly isInvalid: _angular_core.Signal<boolean>;
|
|
6589
|
+
readonly clampedValue: _angular_core.Signal<number>;
|
|
6590
|
+
readonly progress: _angular_core.Signal<number>;
|
|
6591
|
+
readonly progressStyle: _angular_core.Signal<{
|
|
6592
|
+
"--tedi-slider-progress": string;
|
|
6593
|
+
"--tedi-slider-progress-ratio": string;
|
|
6594
|
+
}>;
|
|
6595
|
+
readonly formattedValue: _angular_core.Signal<string>;
|
|
6596
|
+
readonly rightLabel: _angular_core.Signal<string | undefined>;
|
|
6597
|
+
readonly feedbackId: _angular_core.Signal<string | null>;
|
|
6598
|
+
readonly canShowTooltip: _angular_core.Signal<boolean>;
|
|
6599
|
+
readonly tooltipOpen: _angular_core.Signal<boolean>;
|
|
6600
|
+
readonly classes: _angular_core.Signal<string>;
|
|
6601
|
+
writeValue(value?: number): void;
|
|
6602
|
+
registerOnChange(fn: (value: number) => void): void;
|
|
6603
|
+
registerOnTouched(fn: () => void): void;
|
|
6604
|
+
setDisabledState(disabled: boolean): void;
|
|
6605
|
+
handleInput(event: Event): void;
|
|
6606
|
+
handlePointerDown(): void;
|
|
6607
|
+
handleFocus(): void;
|
|
6608
|
+
handleBlur(): void;
|
|
6609
|
+
handleMouseEnter(): void;
|
|
6610
|
+
handleMouseLeave(): void;
|
|
6611
|
+
ngOnDestroy(): void;
|
|
6612
|
+
private endDrag;
|
|
6613
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SliderComponent, never>;
|
|
6614
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SliderComponent, "tedi-slider", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "minLabel": { "alias": "minLabel"; "required": false; "isSignal": true; }; "maxLabel": { "alias": "maxLabel"; "required": false; "isSignal": true; }; "showCurrentValue": { "alias": "showCurrentValue"; "required": false; "isSignal": true; }; "valueFormatter": { "alias": "valueFormatter"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaValuetext": { "alias": "ariaValuetext"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["[sliderAddon]"], true, never>;
|
|
6422
6615
|
}
|
|
6423
6616
|
|
|
6424
6617
|
type ToggleVariant = "primary" | "colored";
|
|
@@ -6478,8 +6671,89 @@ declare class ToggleComponent implements ControlValueAccessor {
|
|
|
6478
6671
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggleComponent, "tedi-toggle", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, never, true, never>;
|
|
6479
6672
|
}
|
|
6480
6673
|
|
|
6674
|
+
/**
|
|
6675
|
+
* Shared behavior for the prefix/suffix addon directives: reads the group's
|
|
6676
|
+
* disabled state and detects whether the addon holds plain text (so the
|
|
6677
|
+
* wrapper, rather than a child element, gets the padding).
|
|
6678
|
+
*/
|
|
6679
|
+
declare abstract class InputGroupAddonDirective implements AfterContentInit {
|
|
6680
|
+
protected readonly el: ElementRef<HTMLElement>;
|
|
6681
|
+
private readonly group;
|
|
6682
|
+
readonly disabled: _angular_core.Signal<boolean>;
|
|
6683
|
+
protected readonly isText: _angular_core.WritableSignal<boolean>;
|
|
6684
|
+
ngAfterContentInit(): void;
|
|
6685
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupAddonDirective, never>;
|
|
6686
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<InputGroupAddonDirective, never, never, {}, {}, never, never, true, never>;
|
|
6687
|
+
}
|
|
6688
|
+
|
|
6689
|
+
/**
|
|
6690
|
+
* Marks an element as the prefix (leading) addon of a `tedi-input-group`.
|
|
6691
|
+
* Applied to any element, e.g. `<span tediInputGroupPrefix>Street</span>` or a
|
|
6692
|
+
* wrapper around a button/dropdown.
|
|
6693
|
+
*/
|
|
6694
|
+
declare class InputGroupPrefixDirective extends InputGroupAddonDirective {
|
|
6695
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupPrefixDirective, never>;
|
|
6696
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<InputGroupPrefixDirective, "[tediInputGroupPrefix]", never, {}, {}, never, never, true, never>;
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
/**
|
|
6700
|
+
* Marks an element as the suffix (trailing) addon of a `tedi-input-group`.
|
|
6701
|
+
* Applied to any element, e.g. `<span tediInputGroupSuffix>EUR</span>` or a
|
|
6702
|
+
* wrapper around a button/dropdown.
|
|
6703
|
+
*/
|
|
6704
|
+
declare class InputGroupSuffixDirective extends InputGroupAddonDirective {
|
|
6705
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupSuffixDirective, never>;
|
|
6706
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<InputGroupSuffixDirective, "[tediInputGroupSuffix]", never, {}, {}, never, never, true, never>;
|
|
6707
|
+
}
|
|
6708
|
+
|
|
6709
|
+
/**
|
|
6710
|
+
* Context exposed by `tedi-input-group` to the controls and addons rendered
|
|
6711
|
+
* inside it. Consumed via optional DI so a control can merge the group's
|
|
6712
|
+
* `disabled` / `invalid` state into its own.
|
|
6713
|
+
*/
|
|
6714
|
+
interface InputGroupContext {
|
|
6715
|
+
disabled: Signal<boolean>;
|
|
6716
|
+
invalid: Signal<boolean>;
|
|
6717
|
+
}
|
|
6718
|
+
declare const TEDI_INPUT_GROUP: InjectionToken<InputGroupContext>;
|
|
6719
|
+
|
|
6720
|
+
/**
|
|
6721
|
+
* A flexible wrapper that composes a form control with leading/trailing addons
|
|
6722
|
+
* (prefix/suffix). Project a `label[tedi-label]` for the label, a control
|
|
6723
|
+
* (`tedi-form-field`, `tedi-select`, …) as the input, optional
|
|
6724
|
+
* `[tediInputGroupPrefix]` / `[tediInputGroupSuffix]` addons, and a
|
|
6725
|
+
* `tedi-feedback-text` for helper/error messages.
|
|
6726
|
+
*/
|
|
6727
|
+
declare class InputGroupComponent implements InputGroupContext {
|
|
6728
|
+
/**
|
|
6729
|
+
* Merges the borders and radii of the addons and the control into a single
|
|
6730
|
+
* visual unit. Disable when using addons that should stay detached, e.g. a
|
|
6731
|
+
* standalone action button.
|
|
6732
|
+
* @default true
|
|
6733
|
+
*/
|
|
6734
|
+
addons: _angular_core.InputSignal<boolean>;
|
|
6735
|
+
/**
|
|
6736
|
+
* Disables the whole group. Greys out the addons and propagates the disabled
|
|
6737
|
+
* state to the wrapped control.
|
|
6738
|
+
* @default false
|
|
6739
|
+
*/
|
|
6740
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
6741
|
+
/**
|
|
6742
|
+
* Marks the whole group as invalid. Propagates `invalid` to the wrapped
|
|
6743
|
+
* control so it shows the error border. Pair with an error
|
|
6744
|
+
* `tedi-feedback-text`.
|
|
6745
|
+
* @default false
|
|
6746
|
+
*/
|
|
6747
|
+
invalid: _angular_core.InputSignal<boolean>;
|
|
6748
|
+
protected readonly prefix: _angular_core.Signal<InputGroupPrefixDirective | undefined>;
|
|
6749
|
+
protected readonly suffix: _angular_core.Signal<InputGroupSuffixDirective | undefined>;
|
|
6750
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupComponent, never>;
|
|
6751
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "tedi-input-group", never, { "addons": { "alias": "addons"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["label[tedi-label]", "[tediInputGroupPrefix]", "tedi-form-field, tedi-select", "[tediInputGroupSuffix]", "tedi-feedback-text"], true, never>;
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6481
6754
|
declare class TextFieldComponent implements ControlValueAccessor, FormFieldControl {
|
|
6482
6755
|
private el;
|
|
6756
|
+
private group;
|
|
6483
6757
|
/**
|
|
6484
6758
|
* Value of the input field. Supports two-way binding, use with form controls.
|
|
6485
6759
|
*/
|
|
@@ -6493,6 +6767,11 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
6493
6767
|
* Callback triggered when the clear button is clicked.
|
|
6494
6768
|
*/
|
|
6495
6769
|
readonly clear: _angular_core.OutputEmitterRef<void>;
|
|
6770
|
+
/**
|
|
6771
|
+
* Disables the input from a parent template (e.g. a wrapping field component).
|
|
6772
|
+
* Combined with the reactive-forms disabled state and any input-group state.
|
|
6773
|
+
*/
|
|
6774
|
+
readonly disabledInput: _angular_core.InputSignal<boolean>;
|
|
6496
6775
|
readonly disabled: _angular_core.Signal<boolean>;
|
|
6497
6776
|
readonly invalid: _angular_core.WritableSignal<boolean>;
|
|
6498
6777
|
setInvalidState(isInvalid: boolean): void;
|
|
@@ -6509,7 +6788,7 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
6509
6788
|
handleBlur(): void;
|
|
6510
6789
|
clearField(): void;
|
|
6511
6790
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
6512
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "input[tedi-text-field]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "arrowsHidden": { "alias": "arrowsHidden"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "clear": "clear"; }, never, never, true, never>;
|
|
6791
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "input[tedi-text-field]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "arrowsHidden": { "alias": "arrowsHidden"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "clear": "clear"; }, never, never, true, never>;
|
|
6513
6792
|
}
|
|
6514
6793
|
|
|
6515
6794
|
type TimePickerVariant = "scroll" | "slots" | "dropdown";
|
|
@@ -7286,7 +7565,7 @@ declare class FooterBottomComponent implements AfterContentInit {
|
|
|
7286
7565
|
|
|
7287
7566
|
declare class HeaderComponent {
|
|
7288
7567
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
7289
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "header[tedi-header]", never, {}, {}, never, ["button[tedi-sidenav-toggle]", "*", "tedi-header-bottom"], true, never>;
|
|
7568
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "header[tedi-header]", never, {}, {}, never, ["tedi-header-top", "button[tedi-sidenav-toggle]", "*", "tedi-header-bottom"], true, never>;
|
|
7290
7569
|
}
|
|
7291
7570
|
|
|
7292
7571
|
declare class HeaderActionsComponent {
|
|
@@ -7316,7 +7595,9 @@ declare class HeaderBottomComponent {
|
|
|
7316
7595
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderBottomComponent, "tedi-header-bottom", never, {}, {}, never, ["*"], true, never>;
|
|
7317
7596
|
}
|
|
7318
7597
|
|
|
7319
|
-
type
|
|
7598
|
+
type HeaderAlignment = "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
7599
|
+
|
|
7600
|
+
type HeaderContentAlignment = HeaderAlignment;
|
|
7320
7601
|
declare class HeaderContentComponent {
|
|
7321
7602
|
/**
|
|
7322
7603
|
* Controls the horizontal alignment of the projected content (`justify-content`).
|
|
@@ -7324,7 +7605,7 @@ declare class HeaderContentComponent {
|
|
|
7324
7605
|
* `<tedi-header-search>`) and you want to push them apart or align them to one edge.
|
|
7325
7606
|
* @default "center"
|
|
7326
7607
|
*/
|
|
7327
|
-
readonly alignment: _angular_core.InputSignal<
|
|
7608
|
+
readonly alignment: _angular_core.InputSignal<HeaderAlignment>;
|
|
7328
7609
|
protected readonly classes: _angular_core.Signal<string>;
|
|
7329
7610
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderContentComponent, never>;
|
|
7330
7611
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderContentComponent, "tedi-header-content", never, { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -7333,6 +7614,7 @@ declare class HeaderContentComponent {
|
|
|
7333
7614
|
type HeaderLanguage = {
|
|
7334
7615
|
[L in Language]?: string;
|
|
7335
7616
|
};
|
|
7617
|
+
type HeaderLanguageLabelPosition = "top" | "left";
|
|
7336
7618
|
declare class HeaderLanguageComponent {
|
|
7337
7619
|
/**
|
|
7338
7620
|
* Languages object.
|
|
@@ -7340,6 +7622,24 @@ declare class HeaderLanguageComponent {
|
|
|
7340
7622
|
* Value should be text shown in the UI.
|
|
7341
7623
|
*/
|
|
7342
7624
|
languages: _angular_core.InputSignal<HeaderLanguage>;
|
|
7625
|
+
/**
|
|
7626
|
+
* Label for the language selector. Falls back to the `header.select-lang`
|
|
7627
|
+
* translation when not provided.
|
|
7628
|
+
*/
|
|
7629
|
+
selectLabel: _angular_core.InputSignal<string | undefined>;
|
|
7630
|
+
/**
|
|
7631
|
+
* Position of the select label relative to the popover trigger.
|
|
7632
|
+
* - `top` — label sits above the trigger (default)
|
|
7633
|
+
* - `left` — label sits inline, to the left of the trigger
|
|
7634
|
+
* @default "top"
|
|
7635
|
+
*/
|
|
7636
|
+
labelPosition: _angular_core.InputSignal<HeaderLanguageLabelPosition>;
|
|
7637
|
+
/**
|
|
7638
|
+
* Optional per-language URLs. When a language has a URL, its option renders as
|
|
7639
|
+
* a navigation anchor (`<a href>`) and switching is handled by the browser
|
|
7640
|
+
* instead of the client-side translation service.
|
|
7641
|
+
*/
|
|
7642
|
+
languageHrefs: _angular_core.InputSignal<Partial<Record<Language, string>> | undefined>;
|
|
7343
7643
|
/**
|
|
7344
7644
|
* This is event emitter for changing language
|
|
7345
7645
|
*/
|
|
@@ -7347,9 +7647,13 @@ declare class HeaderLanguageComponent {
|
|
|
7347
7647
|
readonly popover: _angular_core.Signal<PopoverComponent | undefined>;
|
|
7348
7648
|
translationService: TediTranslationService;
|
|
7349
7649
|
languageKeys: _angular_core.Signal<Language[]>;
|
|
7650
|
+
/** Label currently shown on the trigger (the active language's display text). */
|
|
7651
|
+
readonly displayedLanguage: _angular_core.Signal<string | undefined>;
|
|
7652
|
+
/** Self-describing accessible name for the trigger, e.g. "Language EST". */
|
|
7653
|
+
readonly triggerAriaLabel: _angular_core.Signal<string>;
|
|
7350
7654
|
handleChangeLang(lang: Language): void;
|
|
7351
7655
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderLanguageComponent, never>;
|
|
7352
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLanguageComponent, "tedi-header-language", never, { "languages": { "alias": "languages"; "required": true; "isSignal": true; }; }, { "languageChange": "languageChange"; }, never, never, true, never>;
|
|
7656
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderLanguageComponent, "tedi-header-language", never, { "languages": { "alias": "languages"; "required": true; "isSignal": true; }; "selectLabel": { "alias": "selectLabel"; "required": false; "isSignal": true; }; "labelPosition": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "languageHrefs": { "alias": "languageHrefs"; "required": false; "isSignal": true; }; }, { "languageChange": "languageChange"; }, never, never, true, never>;
|
|
7353
7657
|
}
|
|
7354
7658
|
|
|
7355
7659
|
type HeaderLoginSize = "default" | "small";
|
|
@@ -7855,6 +8159,42 @@ declare class HeaderSearchComponent {
|
|
|
7855
8159
|
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>;
|
|
7856
8160
|
}
|
|
7857
8161
|
|
|
8162
|
+
type HeaderTopAlignment = HeaderAlignment;
|
|
8163
|
+
type HeaderTopInputs = {
|
|
8164
|
+
alignment: HeaderTopAlignment;
|
|
8165
|
+
};
|
|
8166
|
+
/**
|
|
8167
|
+
* Secondary bar rendered above the main header bar.
|
|
8168
|
+
*
|
|
8169
|
+
* @example
|
|
8170
|
+
* <header tedi-header>
|
|
8171
|
+
* <tedi-header-top alignment="center" [lg]="{ alignment: 'space-between' }">
|
|
8172
|
+
* <!-- top bar content -->
|
|
8173
|
+
* </tedi-header-top>
|
|
8174
|
+
* <!-- main content -->
|
|
8175
|
+
* </header>
|
|
8176
|
+
*/
|
|
8177
|
+
declare class HeaderTopComponent implements BreakpointInputs<HeaderTopInputs> {
|
|
8178
|
+
private breakpointService;
|
|
8179
|
+
/**
|
|
8180
|
+
* Horizontal alignment (`justify-content`) of the top bar content. Supports
|
|
8181
|
+
* per-breakpoint overrides via the `[xs]`–`[xxl]` inputs, e.g.
|
|
8182
|
+
* `alignment="center"` with `[lg]="{ alignment: 'space-between' }"`.
|
|
8183
|
+
* @default "space-between"
|
|
8184
|
+
*/
|
|
8185
|
+
alignment: _angular_core.InputSignal<HeaderAlignment>;
|
|
8186
|
+
xs: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8187
|
+
sm: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8188
|
+
md: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8189
|
+
lg: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8190
|
+
xl: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8191
|
+
xxl: _angular_core.InputSignal<HeaderTopInputs | undefined>;
|
|
8192
|
+
protected readonly breakpointInputs: _angular_core.Signal<HeaderTopInputs>;
|
|
8193
|
+
protected readonly classes: _angular_core.Signal<string>;
|
|
8194
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderTopComponent, never>;
|
|
8195
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderTopComponent, "tedi-header-top", never, { "alignment": { "alias": "alignment"; "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>;
|
|
8196
|
+
}
|
|
8197
|
+
|
|
7858
8198
|
declare class SideNavDropdownComponent implements AfterViewInit {
|
|
7859
8199
|
private readonly host;
|
|
7860
8200
|
open: _angular_core.WritableSignal<boolean>;
|
|
@@ -8030,6 +8370,92 @@ declare class SpinnerComponent {
|
|
|
8030
8370
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SpinnerComponent, "tedi-spinner", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8031
8371
|
}
|
|
8032
8372
|
|
|
8373
|
+
/**
|
|
8374
|
+
* Marks a projected element as a single breadcrumb. Apply as a structural
|
|
8375
|
+
* directive on the crumb element; `tedi-breadcrumbs` collects each one and
|
|
8376
|
+
* renders it into the trail, inserting separators between them.
|
|
8377
|
+
*
|
|
8378
|
+
* Use a link (e.g. `a tedi-link`) for navigable crumbs and a plain element
|
|
8379
|
+
* (e.g. `span`) for the current page — add `aria-current="page"` to it yourself.
|
|
8380
|
+
*/
|
|
8381
|
+
declare class BreadcrumbItemDirective {
|
|
8382
|
+
readonly templateRef: TemplateRef<unknown>;
|
|
8383
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbItemDirective, never>;
|
|
8384
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BreadcrumbItemDirective, "[tediBreadcrumbItem]", never, {}, {}, never, never, true, never>;
|
|
8385
|
+
}
|
|
8386
|
+
|
|
8387
|
+
/**
|
|
8388
|
+
* Optional custom separator for `tedi-breadcrumbs`. Provide as a template to
|
|
8389
|
+
* render arbitrary content between crumbs; takes precedence over the
|
|
8390
|
+
* `separator` string input and the default chevron icon.
|
|
8391
|
+
*/
|
|
8392
|
+
declare class BreadcrumbSeparatorDirective {
|
|
8393
|
+
readonly templateRef: TemplateRef<unknown>;
|
|
8394
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbSeparatorDirective, never>;
|
|
8395
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BreadcrumbSeparatorDirective, "[tediBreadcrumbSeparator]", never, {}, {}, never, never, true, never>;
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
type BreadcrumbsVariant = "long" | "short";
|
|
8399
|
+
type BreadcrumbsInputs = {
|
|
8400
|
+
variant?: BreadcrumbsVariant;
|
|
8401
|
+
maxItems?: number;
|
|
8402
|
+
itemsBeforeCollapse?: number;
|
|
8403
|
+
itemsAfterCollapse?: number;
|
|
8404
|
+
};
|
|
8405
|
+
type RenderToken = {
|
|
8406
|
+
kind: "item";
|
|
8407
|
+
item: BreadcrumbItemDirective;
|
|
8408
|
+
current: boolean;
|
|
8409
|
+
} | {
|
|
8410
|
+
kind: "ellipsis";
|
|
8411
|
+
hidden: BreadcrumbItemDirective[];
|
|
8412
|
+
};
|
|
8413
|
+
/**
|
|
8414
|
+
* Breadcrumbs show the user's location within the page hierarchy. Each child
|
|
8415
|
+
* marked with `*tediBreadcrumbItem` becomes one crumb, in order from the root
|
|
8416
|
+
* to the current page; chevron separators are inserted between them.
|
|
8417
|
+
*
|
|
8418
|
+
* Use a link (e.g. `a tedi-link`) for navigable crumbs and a plain element for
|
|
8419
|
+
* the current page — add `aria-current="page"` to it yourself.
|
|
8420
|
+
*
|
|
8421
|
+
* Crumb links are underlined by default. Set `[underline]="false"` on the
|
|
8422
|
+
* `tedi-link` for non-underlined crumbs — recommended for the `short` back-link.
|
|
8423
|
+
* Crumbs collapsed into the ellipsis dropdown are always rendered without an
|
|
8424
|
+
* underline, regardless of their `[underline]` setting.
|
|
8425
|
+
*/
|
|
8426
|
+
declare class BreadcrumbsComponent implements BreakpointInputs<BreadcrumbsInputs> {
|
|
8427
|
+
private readonly breakpointService;
|
|
8428
|
+
readonly items: _angular_core.Signal<readonly BreadcrumbItemDirective[]>;
|
|
8429
|
+
readonly separatorTemplate: _angular_core.Signal<BreadcrumbSeparatorDirective | undefined>;
|
|
8430
|
+
/** Accessible label for the `nav` landmark. Falls back to the `breadcrumbs` translation. */
|
|
8431
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
8432
|
+
/** Accessible label for the ellipsis button that opens the collapsed-crumbs dropdown. Falls back to the `breadcrumbs.show-more` translation. */
|
|
8433
|
+
readonly showMoreLabel: _angular_core.InputSignal<string | undefined>;
|
|
8434
|
+
/** Separator between crumbs. Defaults to a chevron icon; a `[tediBreadcrumbSeparator]` template overrides this. */
|
|
8435
|
+
readonly separator: _angular_core.InputSignal<string | undefined>;
|
|
8436
|
+
/** `long` shows the full trail; `short` shows only the parent crumb as a back-link. Defaults to `long`. */
|
|
8437
|
+
readonly variant: _angular_core.InputSignal<BreadcrumbsVariant | undefined>;
|
|
8438
|
+
/** Max crumbs before the middle collapses into an ellipsis dropdown. Long variant only; omit to render all. */
|
|
8439
|
+
readonly maxItems: _angular_core.InputSignal<number | undefined>;
|
|
8440
|
+
/** Crumbs kept visible at the start of the trail when collapsed. Defaults to `1`. */
|
|
8441
|
+
readonly itemsBeforeCollapse: _angular_core.InputSignal<number | undefined>;
|
|
8442
|
+
/** Crumbs kept visible at the end of the trail when collapsed. Defaults to `1`. */
|
|
8443
|
+
readonly itemsAfterCollapse: _angular_core.InputSignal<number | undefined>;
|
|
8444
|
+
readonly xs: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8445
|
+
readonly sm: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8446
|
+
readonly md: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8447
|
+
readonly lg: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8448
|
+
readonly xl: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8449
|
+
readonly xxl: _angular_core.InputSignal<BreadcrumbsInputs | undefined>;
|
|
8450
|
+
private readonly resolved;
|
|
8451
|
+
readonly currentVariant: _angular_core.Signal<BreadcrumbsVariant>;
|
|
8452
|
+
readonly parentItem: _angular_core.Signal<BreadcrumbItemDirective | null>;
|
|
8453
|
+
readonly visible: _angular_core.Signal<boolean>;
|
|
8454
|
+
readonly tokens: _angular_core.Signal<RenderToken[]>;
|
|
8455
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
8456
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "tedi-breadcrumbs", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "showMoreLabel": { "alias": "showMoreLabel"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "maxItems": { "alias": "maxItems"; "required": false; "isSignal": true; }; "itemsBeforeCollapse": { "alias": "itemsBeforeCollapse"; "required": false; "isSignal": true; }; "itemsAfterCollapse": { "alias": "itemsAfterCollapse"; "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; }; }, {}, ["items", "separatorTemplate"], never, true, never>;
|
|
8457
|
+
}
|
|
8458
|
+
|
|
8033
8459
|
declare class HorizontalStepperItemComponent {
|
|
8034
8460
|
label: _angular_core.InputSignal<string>;
|
|
8035
8461
|
description: _angular_core.InputSignal<string | undefined>;
|
|
@@ -8402,6 +8828,14 @@ declare class ModalHeaderComponent {
|
|
|
8402
8828
|
}
|
|
8403
8829
|
|
|
8404
8830
|
declare class TooltipTriggerComponent implements AfterContentChecked {
|
|
8831
|
+
/**
|
|
8832
|
+
* When `false`, the trigger is a pure positioning anchor: it skips making its
|
|
8833
|
+
* projected child focusable (no synthesized `tabindex`, focus ring or
|
|
8834
|
+
* `aria-describedby`). Use for decorative or externally-controlled origins where
|
|
8835
|
+
* focus and ARIA live on another element (e.g. a slider's range input).
|
|
8836
|
+
* @default true
|
|
8837
|
+
*/
|
|
8838
|
+
readonly interactive: _angular_core.InputSignal<boolean>;
|
|
8405
8839
|
readonly host: ElementRef<HTMLElement>;
|
|
8406
8840
|
readonly overlayOrigin: CdkOverlayOrigin;
|
|
8407
8841
|
private renderer;
|
|
@@ -8429,11 +8863,11 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
|
|
|
8429
8863
|
private resolveInteractiveElement;
|
|
8430
8864
|
private isFocusable;
|
|
8431
8865
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipTriggerComponent, never>;
|
|
8432
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, {}, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
8866
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, { "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
8433
8867
|
}
|
|
8434
8868
|
|
|
8435
8869
|
type TooltipPosition = OverlayPosition;
|
|
8436
|
-
type TooltipOpenWith = "hover" | "click" | "both";
|
|
8870
|
+
type TooltipOpenWith = "hover" | "click" | "both" | "none";
|
|
8437
8871
|
declare class TooltipComponent implements AfterContentChecked {
|
|
8438
8872
|
/**
|
|
8439
8873
|
* The position of the tooltip relative to the trigger element.
|
|
@@ -8446,14 +8880,35 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
8446
8880
|
*/
|
|
8447
8881
|
readonly preventOverflow: _angular_core.InputSignal<boolean>;
|
|
8448
8882
|
/**
|
|
8449
|
-
* How tooltip can opened
|
|
8883
|
+
* How the tooltip can be opened. Use `none` for full external control via `open`
|
|
8884
|
+
* (e.g. a slider or custom draggable element driving the open state itself).
|
|
8450
8885
|
* @default both
|
|
8451
8886
|
*/
|
|
8452
8887
|
readonly openWith: _angular_core.InputSignal<TooltipOpenWith>;
|
|
8888
|
+
/**
|
|
8889
|
+
* Controlled open state. When set (not `undefined`), it overrides the built-in
|
|
8890
|
+
* trigger behavior; typically paired with `openWith="none"`. Leave unset for the
|
|
8891
|
+
* default trigger-driven behavior.
|
|
8892
|
+
*/
|
|
8893
|
+
readonly open: _angular_core.ModelSignal<boolean | undefined>;
|
|
8894
|
+
/**
|
|
8895
|
+
* While open, continuously reposition the tooltip so it follows an origin that moves
|
|
8896
|
+
* (e.g. a dragging slider thumb). Uses `requestAnimationFrame`; enable only while the
|
|
8897
|
+
* origin can actually move to avoid needless work.
|
|
8898
|
+
* @default false
|
|
8899
|
+
*/
|
|
8900
|
+
readonly trackPosition: _angular_core.InputSignal<boolean>;
|
|
8453
8901
|
/** Delay time (in ms) for closing tooltip when not hovering trigger or content.
|
|
8454
8902
|
* @default 100
|
|
8455
8903
|
*/
|
|
8456
8904
|
readonly timeoutDelay: _angular_core.InputSignal<number>;
|
|
8905
|
+
/**
|
|
8906
|
+
* Extra distance (in px) between the tooltip and its trigger, added on top of the
|
|
8907
|
+
* arrow allowance. Set to `0` to sit the tooltip directly against the trigger
|
|
8908
|
+
* (e.g. a slider thumb).
|
|
8909
|
+
* @default 4
|
|
8910
|
+
*/
|
|
8911
|
+
readonly offset: _angular_core.InputSignal<number>;
|
|
8457
8912
|
/** Dropdown trigger button */
|
|
8458
8913
|
readonly tooltipTrigger: _angular_core.Signal<TooltipTriggerComponent>;
|
|
8459
8914
|
/** Tooltip content component */
|
|
@@ -8461,7 +8916,8 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
8461
8916
|
private readonly connectedOverlay;
|
|
8462
8917
|
readonly descriptionId: string;
|
|
8463
8918
|
readonly contentText: _angular_core.WritableSignal<string>;
|
|
8464
|
-
readonly
|
|
8919
|
+
private readonly internalOpen;
|
|
8920
|
+
readonly isOpen: _angular_core.Signal<boolean>;
|
|
8465
8921
|
readonly currentPlacement: _angular_core.WritableSignal<OverlaySide>;
|
|
8466
8922
|
readonly arrowLeft: _angular_core.WritableSignal<number | null>;
|
|
8467
8923
|
readonly arrowTop: _angular_core.WritableSignal<number | null>;
|
|
@@ -8469,10 +8925,20 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
8469
8925
|
readonly overlayOrigin: _angular_core.Signal<_angular_cdk_overlay.CdkOverlayOrigin>;
|
|
8470
8926
|
readonly isContentHovered: _angular_core.WritableSignal<boolean>;
|
|
8471
8927
|
hideTimeout?: ReturnType<typeof setTimeout>;
|
|
8928
|
+
private readonly ngZone;
|
|
8929
|
+
private trackRafId;
|
|
8472
8930
|
private readonly horizontalPush;
|
|
8473
8931
|
constructor();
|
|
8474
8932
|
showTooltip(): void;
|
|
8475
8933
|
hideTooltip(): void;
|
|
8934
|
+
/**
|
|
8935
|
+
* Recomputes the overlay position against its origin. Call this when the origin has
|
|
8936
|
+
* moved without a scroll/resize event (e.g. a dragged element). `trackPosition`
|
|
8937
|
+
* calls it automatically each frame while open.
|
|
8938
|
+
*/
|
|
8939
|
+
updatePosition(): void;
|
|
8940
|
+
private startTracking;
|
|
8941
|
+
private stopTracking;
|
|
8476
8942
|
toggleTooltip(): void;
|
|
8477
8943
|
onPositionChange(change: ConnectedOverlayPositionChange): void;
|
|
8478
8944
|
onOverlayAttach(): void;
|
|
@@ -8480,7 +8946,7 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
8480
8946
|
ngAfterContentChecked(): void;
|
|
8481
8947
|
private syncContentText;
|
|
8482
8948
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
8483
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "tedi-tooltip", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "openWith": { "alias": "openWith"; "required": false; "isSignal": true; }; "timeoutDelay": { "alias": "timeoutDelay"; "required": false; "isSignal": true; }; }, {}, ["tooltipTrigger", "tooltipContent"], ["tedi-tooltip-trigger", "tedi-tooltip-content"], true, never>;
|
|
8949
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "tedi-tooltip", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "openWith": { "alias": "openWith"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "trackPosition": { "alias": "trackPosition"; "required": false; "isSignal": true; }; "timeoutDelay": { "alias": "timeoutDelay"; "required": false; "isSignal": true; }; "offset": { "alias": "offset"; "required": false; "isSignal": true; }; }, { "open": "openChange"; }, ["tooltipTrigger", "tooltipContent"], ["tedi-tooltip-trigger", "tedi-tooltip-content"], true, never>;
|
|
8484
8950
|
}
|
|
8485
8951
|
|
|
8486
8952
|
type TooltipWidth = "none" | "small" | "medium" | "large";
|
|
@@ -8498,6 +8964,35 @@ declare class TooltipContentComponent {
|
|
|
8498
8964
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipContentComponent, "tedi-tooltip-content", never, { "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8499
8965
|
}
|
|
8500
8966
|
|
|
8967
|
+
declare class InfoTooltipComponent {
|
|
8968
|
+
/**
|
|
8969
|
+
* Position of the tooltip relative to the info button.
|
|
8970
|
+
* @default top
|
|
8971
|
+
*/
|
|
8972
|
+
position: _angular_core.InputSignal<_tedi_design_system_angular_tedi.OverlayPosition>;
|
|
8973
|
+
/**
|
|
8974
|
+
* How the tooltip can be opened.
|
|
8975
|
+
* @default both
|
|
8976
|
+
*/
|
|
8977
|
+
openWith: _angular_core.InputSignal<TooltipOpenWith>;
|
|
8978
|
+
/**
|
|
8979
|
+
* Max width of the tooltip content.
|
|
8980
|
+
* @default medium
|
|
8981
|
+
*/
|
|
8982
|
+
maxWidth: _angular_core.InputSignal<TooltipWidth>;
|
|
8983
|
+
/**
|
|
8984
|
+
* Color variant of the info button. Use `inverted` on dark or colored backgrounds.
|
|
8985
|
+
* @default primary
|
|
8986
|
+
*/
|
|
8987
|
+
color: _angular_core.InputSignal<"primary" | "inverted">;
|
|
8988
|
+
/**
|
|
8989
|
+
* Accessible name for the info button. Defaults to the translated info-button label.
|
|
8990
|
+
*/
|
|
8991
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
8992
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoTooltipComponent, never>;
|
|
8993
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoTooltipComponent, "tedi-info-tooltip", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "openWith": { "alias": "openWith"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8994
|
+
}
|
|
8995
|
+
|
|
8501
8996
|
type PopoverWidth = "none" | "small" | "medium" | "large";
|
|
8502
8997
|
declare class PopoverContentComponent {
|
|
8503
8998
|
/**
|
|
@@ -8694,6 +9189,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
8694
9189
|
*/
|
|
8695
9190
|
declare function normalizeTime(input: string): string | null;
|
|
8696
9191
|
|
|
8697
|
-
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, 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, DateFieldComponent, 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, TAG_GAP, 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, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, 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, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
|
|
8698
|
-
export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, 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, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, 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, Matcher, 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, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, 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 };
|
|
9192
|
+
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, 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, DateFieldComponent, 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, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, 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, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, 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, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
|
|
9193
|
+
export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, 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, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, 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, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, 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 };
|
|
8699
9194
|
//# sourceMappingURL=index.d.ts.map
|