@tedi-design-system/angular 7.1.0-rc.12 → 7.1.0-rc.14
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 +4 -0
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +4 -0
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +317 -132
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +187 -63
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -5418,6 +5418,8 @@ declare class DateInputComponent implements AfterViewChecked {
|
|
|
5418
5418
|
readonly showClear: _angular_core.Signal<boolean>;
|
|
5419
5419
|
readonly iconAriaLabel: _angular_core.Signal<string>;
|
|
5420
5420
|
readonly clearAriaLabel: _angular_core.Signal<string>;
|
|
5421
|
+
/** Moves focus to the text input. Used by the wrapping field. */
|
|
5422
|
+
focusInput(): void;
|
|
5421
5423
|
handleInput(event: Event): void;
|
|
5422
5424
|
handleIconClick(): void;
|
|
5423
5425
|
handleTagRemove(id: string): void;
|
|
@@ -5450,6 +5452,12 @@ interface FormFieldControl<T = unknown> {
|
|
|
5450
5452
|
* If implemented, the form field can trigger clearing the value.
|
|
5451
5453
|
*/
|
|
5452
5454
|
clearField?(): void;
|
|
5455
|
+
/**
|
|
5456
|
+
* Optional method used when the field box itself is clicked. If implemented,
|
|
5457
|
+
* clicking the box padding — which is not part of the control's own hit area —
|
|
5458
|
+
* moves focus into the control, the way clicking the value does.
|
|
5459
|
+
*/
|
|
5460
|
+
focus?(): void;
|
|
5453
5461
|
}
|
|
5454
5462
|
/**
|
|
5455
5463
|
* Injection token used by `tedi-form-field` to obtain
|
|
@@ -5671,6 +5679,7 @@ declare class DateFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
5671
5679
|
registerOnTouched(fn: () => void): void;
|
|
5672
5680
|
setDisabledState(isDisabled: boolean): void;
|
|
5673
5681
|
setInvalidState(isInvalid: boolean): void;
|
|
5682
|
+
focus(): void;
|
|
5674
5683
|
clearField(): void;
|
|
5675
5684
|
handleClear(): void;
|
|
5676
5685
|
handleIconClick(): void;
|
|
@@ -6018,6 +6027,179 @@ declare class NumberFieldComponent implements ControlValueAccessor {
|
|
|
6018
6027
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NumberFieldComponent, "tedi-number-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "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; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "suffix": { "alias": "suffix"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
6019
6028
|
}
|
|
6020
6029
|
|
|
6030
|
+
type InputSize = "small" | "large" | "default";
|
|
6031
|
+
type InputState = "valid" | "error" | "default";
|
|
6032
|
+
type ValidationState = "invalid" | "valid" | "neutral";
|
|
6033
|
+
interface FormFieldIcon {
|
|
6034
|
+
name: string;
|
|
6035
|
+
size?: IconSize;
|
|
6036
|
+
color?: IconColor;
|
|
6037
|
+
type?: IconType;
|
|
6038
|
+
variant?: IconVariant;
|
|
6039
|
+
}
|
|
6040
|
+
declare class FormFieldComponent implements AfterContentInit {
|
|
6041
|
+
/**
|
|
6042
|
+
* The size of the form field.
|
|
6043
|
+
* @default "default"
|
|
6044
|
+
*/
|
|
6045
|
+
size: _angular_core.InputSignal<InputSize>;
|
|
6046
|
+
/**
|
|
6047
|
+
* Icon name or configuration object.
|
|
6048
|
+
*/
|
|
6049
|
+
icon: _angular_core.InputSignal<string | FormFieldIcon | undefined>;
|
|
6050
|
+
/**
|
|
6051
|
+
* Whether the form field includes a clear button.
|
|
6052
|
+
* @default false
|
|
6053
|
+
*/
|
|
6054
|
+
clearable: _angular_core.InputSignal<boolean>;
|
|
6055
|
+
/**
|
|
6056
|
+
* Custom CSS classes for the input.
|
|
6057
|
+
*/
|
|
6058
|
+
inputClass: _angular_core.InputSignal<string | null>;
|
|
6059
|
+
control?: FormFieldControl;
|
|
6060
|
+
ngControl?: NgControl;
|
|
6061
|
+
feedback?: FeedbackTextComponent;
|
|
6062
|
+
private readonly destroyRef;
|
|
6063
|
+
private readonly inputGroup;
|
|
6064
|
+
constructor();
|
|
6065
|
+
ngAfterContentInit(): void;
|
|
6066
|
+
private updateValidationState;
|
|
6067
|
+
private computeInvalid;
|
|
6068
|
+
readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
|
|
6069
|
+
readonly validationState: _angular_core.Signal<ValidationState>;
|
|
6070
|
+
showClearButton: _angular_core.Signal<boolean>;
|
|
6071
|
+
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
6072
|
+
readonly hostClasses: _angular_core.Signal<{
|
|
6073
|
+
"tedi-form-field": boolean;
|
|
6074
|
+
"tedi-form-field--valid": boolean;
|
|
6075
|
+
"tedi-form-field--invalid": boolean;
|
|
6076
|
+
"tedi-form-field--disabled": boolean;
|
|
6077
|
+
"tedi-form-field--small": boolean;
|
|
6078
|
+
"tedi-form-field--large": boolean;
|
|
6079
|
+
"tedi-form-field--with-icon": boolean;
|
|
6080
|
+
}>;
|
|
6081
|
+
readonly inputClasses: _angular_core.Signal<{
|
|
6082
|
+
"tedi-form-field__input": boolean;
|
|
6083
|
+
}>;
|
|
6084
|
+
clear(): void;
|
|
6085
|
+
/**
|
|
6086
|
+
* The control never fills the whole box — the box padding and the layout
|
|
6087
|
+
* wrappers around the control are outside its hit area — so clicking there
|
|
6088
|
+
* would otherwise leave the field unfocused. Focus the control instead, unless
|
|
6089
|
+
* the click landed on something interactive that handles it itself (the
|
|
6090
|
+
* control, the clear/calendar buttons, a tag's close button).
|
|
6091
|
+
*/
|
|
6092
|
+
handleBoxMouseDown(event: MouseEvent): void;
|
|
6093
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6094
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "tedi-form-field", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "inputClass": { "alias": "inputClass"; "required": false; "isSignal": true; }; }, {}, ["control", "ngControl", "feedback"], ["label[tedi-label]", "input[tedi-text-field], tedi-time-field, tedi-date-field", "tedi-feedback-text", "*"], true, never>;
|
|
6095
|
+
}
|
|
6096
|
+
|
|
6097
|
+
type SearchSize = InputSize;
|
|
6098
|
+
interface SearchButton {
|
|
6099
|
+
/**
|
|
6100
|
+
* Visible button text. When omitted, the button is rendered icon-only.
|
|
6101
|
+
*/
|
|
6102
|
+
text?: string;
|
|
6103
|
+
/**
|
|
6104
|
+
* Icon shown inside the button.
|
|
6105
|
+
* @default "search"
|
|
6106
|
+
*/
|
|
6107
|
+
icon?: string;
|
|
6108
|
+
/**
|
|
6109
|
+
* Button color variant.
|
|
6110
|
+
* @default "primary"
|
|
6111
|
+
*/
|
|
6112
|
+
variant?: ButtonVariant;
|
|
6113
|
+
/**
|
|
6114
|
+
* Accessible label for an icon-only button.
|
|
6115
|
+
* @default translation "search"
|
|
6116
|
+
*/
|
|
6117
|
+
ariaLabel?: string;
|
|
6118
|
+
}
|
|
6119
|
+
declare class SearchComponent implements ControlValueAccessor {
|
|
6120
|
+
/**
|
|
6121
|
+
* Unique identifier for the input element, used to associate the label.
|
|
6122
|
+
*/
|
|
6123
|
+
inputId: _angular_core.InputSignal<string>;
|
|
6124
|
+
/**
|
|
6125
|
+
* Visible label text. When omitted, provide `ariaLabel` for accessibility.
|
|
6126
|
+
*/
|
|
6127
|
+
label: _angular_core.InputSignal<string | undefined>;
|
|
6128
|
+
/**
|
|
6129
|
+
* Value of the search input. Supports two-way binding and reactive forms.
|
|
6130
|
+
*/
|
|
6131
|
+
value: _angular_core.ModelSignal<string>;
|
|
6132
|
+
/**
|
|
6133
|
+
* Placeholder text for the search input.
|
|
6134
|
+
*/
|
|
6135
|
+
placeholder: _angular_core.InputSignal<string>;
|
|
6136
|
+
/**
|
|
6137
|
+
* Size of the search field.
|
|
6138
|
+
* @default "default"
|
|
6139
|
+
*/
|
|
6140
|
+
size: _angular_core.InputSignal<InputSize>;
|
|
6141
|
+
/**
|
|
6142
|
+
* Whether the input shows a clear button once it has a value.
|
|
6143
|
+
* @default true
|
|
6144
|
+
*/
|
|
6145
|
+
clearable: _angular_core.InputSignal<boolean>;
|
|
6146
|
+
/**
|
|
6147
|
+
* Icon shown inside the input. Ignored when `button` is set.
|
|
6148
|
+
* @default "search"
|
|
6149
|
+
*/
|
|
6150
|
+
searchIcon: _angular_core.InputSignal<string | FormFieldIcon>;
|
|
6151
|
+
/**
|
|
6152
|
+
* Whether the search field is disabled.
|
|
6153
|
+
* @default false
|
|
6154
|
+
*/
|
|
6155
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
6156
|
+
/**
|
|
6157
|
+
* When set, renders a trailing search button and hides the inline icon.
|
|
6158
|
+
*/
|
|
6159
|
+
button: _angular_core.InputSignal<SearchButton | undefined>;
|
|
6160
|
+
/**
|
|
6161
|
+
* FeedbackText component inputs (hint / validation message).
|
|
6162
|
+
*/
|
|
6163
|
+
feedbackText: _angular_core.InputSignal<ComponentInputs<FeedbackTextComponent> | undefined>;
|
|
6164
|
+
/**
|
|
6165
|
+
* Accessible name for the search region. Falls back to `label`, then
|
|
6166
|
+
* `placeholder`, then the translated "search" label.
|
|
6167
|
+
*/
|
|
6168
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
6169
|
+
/**
|
|
6170
|
+
* Emitted when the search is executed (Enter key or button click).
|
|
6171
|
+
*/
|
|
6172
|
+
readonly searchEvent: _angular_core.OutputEmitterRef<string>;
|
|
6173
|
+
/**
|
|
6174
|
+
* Emitted when the clear button is clicked.
|
|
6175
|
+
*/
|
|
6176
|
+
readonly clear: _angular_core.OutputEmitterRef<void>;
|
|
6177
|
+
private readonly inputRef;
|
|
6178
|
+
private readonly formDisabled;
|
|
6179
|
+
private readonly translationService;
|
|
6180
|
+
private onChange;
|
|
6181
|
+
private onTouched;
|
|
6182
|
+
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
6183
|
+
readonly fieldIcon: _angular_core.Signal<string | FormFieldIcon | undefined>;
|
|
6184
|
+
readonly fieldHeight: _angular_core.Signal<"var(--form-field-height-sm)" | "var(--form-field-height-lg)" | "var(--form-field-height)">;
|
|
6185
|
+
readonly buttonSize: _angular_core.Signal<"small" | "default">;
|
|
6186
|
+
readonly buttonIconSize: _angular_core.Signal<24 | 18>;
|
|
6187
|
+
readonly buttonAriaLabel: _angular_core.Signal<string | null>;
|
|
6188
|
+
readonly feedbackId: _angular_core.Signal<string | null>;
|
|
6189
|
+
readonly searchAriaLabel: _angular_core.Signal<string>;
|
|
6190
|
+
onInputValue(value: string): void;
|
|
6191
|
+
onClear(): void;
|
|
6192
|
+
onBlur(): void;
|
|
6193
|
+
emitSearch(): void;
|
|
6194
|
+
focus(): void;
|
|
6195
|
+
writeValue(value: string | null): void;
|
|
6196
|
+
registerOnChange(fn: (value: string) => void): void;
|
|
6197
|
+
registerOnTouched(fn: () => void): void;
|
|
6198
|
+
setDisabledState(isDisabled: boolean): void;
|
|
6199
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchComponent, never>;
|
|
6200
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchComponent, "tedi-search", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "searchIcon": { "alias": "searchIcon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "button": { "alias": "button"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "searchEvent": "searchEvent"; "clear": "clear"; }, never, never, true, never>;
|
|
6201
|
+
}
|
|
6202
|
+
|
|
6021
6203
|
/**
|
|
6022
6204
|
* Context provided to custom option templates.
|
|
6023
6205
|
*/
|
|
@@ -6104,65 +6286,6 @@ declare class SelectTooltipTemplateDirective {
|
|
|
6104
6286
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectTooltipTemplateDirective, "[tediSelectTooltip]", never, {}, {}, never, never, true, never>;
|
|
6105
6287
|
}
|
|
6106
6288
|
|
|
6107
|
-
type InputSize = "small" | "large" | "default";
|
|
6108
|
-
type InputState = "valid" | "error" | "default";
|
|
6109
|
-
type ValidationState = "invalid" | "valid" | "neutral";
|
|
6110
|
-
interface FormFieldIcon {
|
|
6111
|
-
name: string;
|
|
6112
|
-
size?: IconSize;
|
|
6113
|
-
color?: IconColor;
|
|
6114
|
-
type?: IconType;
|
|
6115
|
-
variant?: IconVariant;
|
|
6116
|
-
}
|
|
6117
|
-
declare class FormFieldComponent implements AfterContentInit {
|
|
6118
|
-
/**
|
|
6119
|
-
* The size of the form field.
|
|
6120
|
-
* @default "default"
|
|
6121
|
-
*/
|
|
6122
|
-
size: _angular_core.InputSignal<InputSize>;
|
|
6123
|
-
/**
|
|
6124
|
-
* Icon name or configuration object.
|
|
6125
|
-
*/
|
|
6126
|
-
icon: _angular_core.InputSignal<string | FormFieldIcon | undefined>;
|
|
6127
|
-
/**
|
|
6128
|
-
* Whether the form field includes a clear button.
|
|
6129
|
-
* @default false
|
|
6130
|
-
*/
|
|
6131
|
-
clearable: _angular_core.InputSignal<boolean>;
|
|
6132
|
-
/**
|
|
6133
|
-
* Custom CSS classes for the input.
|
|
6134
|
-
*/
|
|
6135
|
-
inputClass: _angular_core.InputSignal<string | null>;
|
|
6136
|
-
control?: FormFieldControl;
|
|
6137
|
-
ngControl?: NgControl;
|
|
6138
|
-
feedback?: FeedbackTextComponent;
|
|
6139
|
-
private readonly destroyRef;
|
|
6140
|
-
private readonly inputGroup;
|
|
6141
|
-
constructor();
|
|
6142
|
-
ngAfterContentInit(): void;
|
|
6143
|
-
private updateValidationState;
|
|
6144
|
-
private computeInvalid;
|
|
6145
|
-
readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
|
|
6146
|
-
readonly validationState: _angular_core.Signal<ValidationState>;
|
|
6147
|
-
showClearButton: _angular_core.Signal<boolean>;
|
|
6148
|
-
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
6149
|
-
readonly hostClasses: _angular_core.Signal<{
|
|
6150
|
-
"tedi-form-field": boolean;
|
|
6151
|
-
"tedi-form-field--valid": boolean;
|
|
6152
|
-
"tedi-form-field--invalid": boolean;
|
|
6153
|
-
"tedi-form-field--disabled": boolean;
|
|
6154
|
-
"tedi-form-field--small": boolean;
|
|
6155
|
-
"tedi-form-field--large": boolean;
|
|
6156
|
-
"tedi-form-field--with-icon": boolean;
|
|
6157
|
-
}>;
|
|
6158
|
-
readonly inputClasses: _angular_core.Signal<{
|
|
6159
|
-
"tedi-form-field__input": boolean;
|
|
6160
|
-
}>;
|
|
6161
|
-
clear(): void;
|
|
6162
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6163
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FormFieldComponent, "tedi-form-field", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "inputClass": { "alias": "inputClass"; "required": false; "isSignal": true; }; }, {}, ["control", "ngControl", "feedback"], ["label[tedi-label]", "input[tedi-text-field], tedi-time-field, tedi-date-field", "tedi-feedback-text", "*"], true, never>;
|
|
6164
|
-
}
|
|
6165
|
-
|
|
6166
6289
|
type SelectInputSize = Exclude<InputSize, "large">;
|
|
6167
6290
|
interface SelectOption<T = unknown> {
|
|
6168
6291
|
value: T;
|
|
@@ -6797,6 +6920,7 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
6797
6920
|
setDisabledState(isDisabled: boolean): void;
|
|
6798
6921
|
handleInputChange(event: Event): void;
|
|
6799
6922
|
handleBlur(): void;
|
|
6923
|
+
focus(): void;
|
|
6800
6924
|
clearField(): void;
|
|
6801
6925
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
6802
6926
|
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>;
|
|
@@ -7020,6 +7144,7 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
7020
7144
|
handleInput(event: Event): void;
|
|
7021
7145
|
handleBlur(): void;
|
|
7022
7146
|
clearInput(): void;
|
|
7147
|
+
focus(): void;
|
|
7023
7148
|
clearField(): void;
|
|
7024
7149
|
openNativePicker(): void;
|
|
7025
7150
|
onInputClick(event: MouseEvent): void;
|
|
@@ -8120,8 +8245,7 @@ declare class HeaderRoleComponent {
|
|
|
8120
8245
|
closeIfOtherRoleActive(active: unknown, isOpen: boolean): void;
|
|
8121
8246
|
handleMobileOpen(): void;
|
|
8122
8247
|
handleSelectRepresentative(r: Representative): void;
|
|
8123
|
-
handleInputChange(
|
|
8124
|
-
trackById: (_: number, r: Representative) => string;
|
|
8248
|
+
handleInputChange(value: string): void;
|
|
8125
8249
|
protected resolveIcon(icon: string | RepresentativeIcon | undefined): {
|
|
8126
8250
|
name: string;
|
|
8127
8251
|
size: IconSize;
|
|
@@ -9200,6 +9324,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
9200
9324
|
*/
|
|
9201
9325
|
declare function normalizeTime(input: string): string | null;
|
|
9202
9326
|
|
|
9203
|
-
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 };
|
|
9204
|
-
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 };
|
|
9327
|
+
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, SearchComponent, 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 };
|
|
9328
|
+
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, SearchButton, SearchSize, 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 };
|
|
9205
9329
|
//# sourceMappingURL=index.d.ts.map
|