@tedi-design-system/angular 7.1.0-rc.13 → 7.1.0-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +295 -147
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +176 -71
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -6027,6 +6027,179 @@ declare class NumberFieldComponent implements ControlValueAccessor {
|
|
|
6027
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>;
|
|
6028
6028
|
}
|
|
6029
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
|
+
|
|
6030
6203
|
/**
|
|
6031
6204
|
* Context provided to custom option templates.
|
|
6032
6205
|
*/
|
|
@@ -6113,73 +6286,6 @@ declare class SelectTooltipTemplateDirective {
|
|
|
6113
6286
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SelectTooltipTemplateDirective, "[tediSelectTooltip]", never, {}, {}, never, never, true, never>;
|
|
6114
6287
|
}
|
|
6115
6288
|
|
|
6116
|
-
type InputSize = "small" | "large" | "default";
|
|
6117
|
-
type InputState = "valid" | "error" | "default";
|
|
6118
|
-
type ValidationState = "invalid" | "valid" | "neutral";
|
|
6119
|
-
interface FormFieldIcon {
|
|
6120
|
-
name: string;
|
|
6121
|
-
size?: IconSize;
|
|
6122
|
-
color?: IconColor;
|
|
6123
|
-
type?: IconType;
|
|
6124
|
-
variant?: IconVariant;
|
|
6125
|
-
}
|
|
6126
|
-
declare class FormFieldComponent implements AfterContentInit {
|
|
6127
|
-
/**
|
|
6128
|
-
* The size of the form field.
|
|
6129
|
-
* @default "default"
|
|
6130
|
-
*/
|
|
6131
|
-
size: _angular_core.InputSignal<InputSize>;
|
|
6132
|
-
/**
|
|
6133
|
-
* Icon name or configuration object.
|
|
6134
|
-
*/
|
|
6135
|
-
icon: _angular_core.InputSignal<string | FormFieldIcon | undefined>;
|
|
6136
|
-
/**
|
|
6137
|
-
* Whether the form field includes a clear button.
|
|
6138
|
-
* @default false
|
|
6139
|
-
*/
|
|
6140
|
-
clearable: _angular_core.InputSignal<boolean>;
|
|
6141
|
-
/**
|
|
6142
|
-
* Custom CSS classes for the input.
|
|
6143
|
-
*/
|
|
6144
|
-
inputClass: _angular_core.InputSignal<string | null>;
|
|
6145
|
-
control?: FormFieldControl;
|
|
6146
|
-
ngControl?: NgControl;
|
|
6147
|
-
feedback?: FeedbackTextComponent;
|
|
6148
|
-
private readonly destroyRef;
|
|
6149
|
-
private readonly inputGroup;
|
|
6150
|
-
constructor();
|
|
6151
|
-
ngAfterContentInit(): void;
|
|
6152
|
-
private updateValidationState;
|
|
6153
|
-
private computeInvalid;
|
|
6154
|
-
readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
|
|
6155
|
-
readonly validationState: _angular_core.Signal<ValidationState>;
|
|
6156
|
-
showClearButton: _angular_core.Signal<boolean>;
|
|
6157
|
-
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
6158
|
-
readonly hostClasses: _angular_core.Signal<{
|
|
6159
|
-
"tedi-form-field": boolean;
|
|
6160
|
-
"tedi-form-field--valid": boolean;
|
|
6161
|
-
"tedi-form-field--invalid": boolean;
|
|
6162
|
-
"tedi-form-field--disabled": boolean;
|
|
6163
|
-
"tedi-form-field--small": boolean;
|
|
6164
|
-
"tedi-form-field--large": boolean;
|
|
6165
|
-
"tedi-form-field--with-icon": boolean;
|
|
6166
|
-
}>;
|
|
6167
|
-
readonly inputClasses: _angular_core.Signal<{
|
|
6168
|
-
"tedi-form-field__input": boolean;
|
|
6169
|
-
}>;
|
|
6170
|
-
clear(): void;
|
|
6171
|
-
/**
|
|
6172
|
-
* The control never fills the whole box — the box padding and the layout
|
|
6173
|
-
* wrappers around the control are outside its hit area — so clicking there
|
|
6174
|
-
* would otherwise leave the field unfocused. Focus the control instead, unless
|
|
6175
|
-
* the click landed on something interactive that handles it itself (the
|
|
6176
|
-
* control, the clear/calendar buttons, a tag's close button).
|
|
6177
|
-
*/
|
|
6178
|
-
handleBoxMouseDown(event: MouseEvent): void;
|
|
6179
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6180
|
-
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>;
|
|
6181
|
-
}
|
|
6182
|
-
|
|
6183
6289
|
type SelectInputSize = Exclude<InputSize, "large">;
|
|
6184
6290
|
interface SelectOption<T = unknown> {
|
|
6185
6291
|
value: T;
|
|
@@ -8139,8 +8245,7 @@ declare class HeaderRoleComponent {
|
|
|
8139
8245
|
closeIfOtherRoleActive(active: unknown, isOpen: boolean): void;
|
|
8140
8246
|
handleMobileOpen(): void;
|
|
8141
8247
|
handleSelectRepresentative(r: Representative): void;
|
|
8142
|
-
handleInputChange(
|
|
8143
|
-
trackById: (_: number, r: Representative) => string;
|
|
8248
|
+
handleInputChange(value: string): void;
|
|
8144
8249
|
protected resolveIcon(icon: string | RepresentativeIcon | undefined): {
|
|
8145
8250
|
name: string;
|
|
8146
8251
|
size: IconSize;
|
|
@@ -9219,6 +9324,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
9219
9324
|
*/
|
|
9220
9325
|
declare function normalizeTime(input: string): string | null;
|
|
9221
9326
|
|
|
9222
|
-
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 };
|
|
9223
|
-
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 };
|
|
9224
9329
|
//# sourceMappingURL=index.d.ts.map
|