@tedi-design-system/angular 7.1.0 → 7.2.0-rc.2
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 +8 -0
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +8 -0
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +294 -44
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +107 -8
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -6190,16 +6190,36 @@ declare class FormFieldComponent implements AfterContentInit {
|
|
|
6190
6190
|
* Custom CSS classes for the input.
|
|
6191
6191
|
*/
|
|
6192
6192
|
inputClass: _angular_core.InputSignal<string | null>;
|
|
6193
|
-
|
|
6193
|
+
/**
|
|
6194
|
+
* Maximum number of characters the control should hold. When set, a live
|
|
6195
|
+
* character counter (`current/limit`) is shown in the feedback row and the
|
|
6196
|
+
* field enters an error state once the limit is exceeded.
|
|
6197
|
+
*/
|
|
6198
|
+
characterLimit: _angular_core.InputSignal<number | undefined>;
|
|
6199
|
+
readonly control: _angular_core.Signal<FormFieldControl<unknown> | undefined>;
|
|
6200
|
+
readonly controlElement: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
6194
6201
|
ngControl?: NgControl;
|
|
6195
6202
|
feedback?: FeedbackTextComponent;
|
|
6203
|
+
feedbackElement?: ElementRef<HTMLElement>;
|
|
6196
6204
|
private readonly destroyRef;
|
|
6197
6205
|
private readonly inputGroup;
|
|
6206
|
+
private readonly fallbackId;
|
|
6198
6207
|
constructor();
|
|
6208
|
+
/**
|
|
6209
|
+
* A textarea has no room for the trailing clear button / icon (per design),
|
|
6210
|
+
* so the form field suppresses both when it wraps one.
|
|
6211
|
+
*/
|
|
6212
|
+
readonly isTextarea: _angular_core.WritableSignal<boolean>;
|
|
6199
6213
|
ngAfterContentInit(): void;
|
|
6200
6214
|
private updateValidationState;
|
|
6201
6215
|
private computeInvalid;
|
|
6202
6216
|
readonly resolvedIcon: _angular_core.Signal<FormFieldIcon | undefined>;
|
|
6217
|
+
readonly characterCount: _angular_core.Signal<number>;
|
|
6218
|
+
readonly characterCountExceeded: _angular_core.Signal<boolean>;
|
|
6219
|
+
/** Base for the generated feedback / counter ids — the control's own id, or a fallback. */
|
|
6220
|
+
private get baseId();
|
|
6221
|
+
readonly characterCountId: _angular_core.Signal<string | null>;
|
|
6222
|
+
private syncAriaDescribedBy;
|
|
6203
6223
|
readonly validationState: _angular_core.Signal<ValidationState>;
|
|
6204
6224
|
showClearButton: _angular_core.Signal<boolean>;
|
|
6205
6225
|
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
@@ -6225,7 +6245,7 @@ declare class FormFieldComponent implements AfterContentInit {
|
|
|
6225
6245
|
*/
|
|
6226
6246
|
handleBoxMouseDown(event: MouseEvent): void;
|
|
6227
6247
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6228
|
-
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>;
|
|
6248
|
+
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; }; "characterLimit": { "alias": "characterLimit"; "required": false; "isSignal": true; }; }, {}, ["control", "controlElement", "ngControl", "feedback", "feedbackElement"], ["label[tedi-label]", "input[tedi-text-field], textarea[tedi-textarea], tedi-time-field, tedi-date-field", "tedi-feedback-text", "*"], true, never>;
|
|
6229
6249
|
}
|
|
6230
6250
|
|
|
6231
6251
|
type SearchSize = InputSize;
|
|
@@ -7172,6 +7192,85 @@ declare class TextFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
7172
7192
|
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>;
|
|
7173
7193
|
}
|
|
7174
7194
|
|
|
7195
|
+
declare class TextareaComponent implements ControlValueAccessor, FormFieldControl {
|
|
7196
|
+
private el;
|
|
7197
|
+
private renderer;
|
|
7198
|
+
/**
|
|
7199
|
+
* Value of the textarea. Supports two-way binding, use with form controls.
|
|
7200
|
+
*/
|
|
7201
|
+
value: _angular_core.ModelSignal<string>;
|
|
7202
|
+
/**
|
|
7203
|
+
* Whether the user can resize the textarea. Only vertical resizing is
|
|
7204
|
+
* supported; set to `false` to disable resizing entirely.
|
|
7205
|
+
*
|
|
7206
|
+
* The resize is applied to the surrounding `tedi-form-field` box (which owns
|
|
7207
|
+
* the border) while the textarea fills it, so the visible field resizes with
|
|
7208
|
+
* the drag.
|
|
7209
|
+
*
|
|
7210
|
+
* @default true
|
|
7211
|
+
*/
|
|
7212
|
+
resizable: _angular_core.InputSignal<boolean>;
|
|
7213
|
+
/**
|
|
7214
|
+
* Automatically grows the textarea to fit its content as the user types,
|
|
7215
|
+
* using the native CSS `field-sizing` property (no JavaScript). Growth is
|
|
7216
|
+
* bounded by `minRows` and `maxRows` (and the optional `maxHeight` cap), and
|
|
7217
|
+
* manual resizing is disabled while auto-growing.
|
|
7218
|
+
*
|
|
7219
|
+
* On browsers without `field-sizing` support the textarea gracefully falls
|
|
7220
|
+
* back to its `minRows` height and remains manually resizable.
|
|
7221
|
+
*
|
|
7222
|
+
* @default false
|
|
7223
|
+
*/
|
|
7224
|
+
autoGrow: _angular_core.InputSignal<boolean>;
|
|
7225
|
+
/**
|
|
7226
|
+
* Minimum number of visible rows while `autoGrow` is enabled.
|
|
7227
|
+
* @default 3
|
|
7228
|
+
*/
|
|
7229
|
+
minRows: _angular_core.InputSignal<number>;
|
|
7230
|
+
/**
|
|
7231
|
+
* Maximum number of visible rows before the field scrolls, while `autoGrow`
|
|
7232
|
+
* is enabled.
|
|
7233
|
+
* @default 12
|
|
7234
|
+
*/
|
|
7235
|
+
maxRows: _angular_core.InputSignal<number>;
|
|
7236
|
+
/**
|
|
7237
|
+
* Fixed height of the textarea (e.g. `'7.5rem'`, `200` → `200px`). Applied
|
|
7238
|
+
* only when `autoGrow` is disabled; otherwise the height is content-driven.
|
|
7239
|
+
* Set to `undefined` to let the resting height come from the native `rows`
|
|
7240
|
+
* attribute instead.
|
|
7241
|
+
*
|
|
7242
|
+
* @default "7.5rem"
|
|
7243
|
+
*/
|
|
7244
|
+
height: _angular_core.InputSignal<string | number | undefined>;
|
|
7245
|
+
/**
|
|
7246
|
+
* Maximum height the textarea may grow to (e.g. `'200px'`, `12` → `12px`,
|
|
7247
|
+
* `'12rem'`). Beyond it the field scrolls. Limits `autoGrow` growth (in
|
|
7248
|
+
* addition to `maxRows`) and manual resizing.
|
|
7249
|
+
*/
|
|
7250
|
+
maxHeight: _angular_core.InputSignal<string | number | undefined>;
|
|
7251
|
+
private toCssSize;
|
|
7252
|
+
private rowsToHeight;
|
|
7253
|
+
readonly heightStyle: _angular_core.Signal<string | null>;
|
|
7254
|
+
readonly minHeightStyle: _angular_core.Signal<string | null>;
|
|
7255
|
+
readonly maxHeightStyle: _angular_core.Signal<string | null>;
|
|
7256
|
+
readonly disabled: _angular_core.Signal<boolean>;
|
|
7257
|
+
readonly invalid: _angular_core.WritableSignal<boolean>;
|
|
7258
|
+
setInvalidState(isInvalid: boolean): void;
|
|
7259
|
+
private formDisabled;
|
|
7260
|
+
private onChange;
|
|
7261
|
+
private onTouched;
|
|
7262
|
+
constructor();
|
|
7263
|
+
private setValue;
|
|
7264
|
+
writeValue(value: string | null): void;
|
|
7265
|
+
registerOnChange(fn: (value: string) => void): void;
|
|
7266
|
+
registerOnTouched(fn: () => void): void;
|
|
7267
|
+
setDisabledState(isDisabled: boolean): void;
|
|
7268
|
+
handleInputChange(event: Event): void;
|
|
7269
|
+
handleBlur(): void;
|
|
7270
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
7271
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "textarea[tedi-textarea]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "autoGrow": { "alias": "autoGrow"; "required": false; "isSignal": true; }; "minRows": { "alias": "minRows"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
7272
|
+
}
|
|
7273
|
+
|
|
7175
7274
|
type TimePickerVariant = "scroll" | "slots" | "dropdown";
|
|
7176
7275
|
type WheelType = "hour" | "minute";
|
|
7177
7276
|
declare class TimePickerComponent implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
@@ -9242,6 +9341,7 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
|
|
|
9242
9341
|
onFocusIn(): void;
|
|
9243
9342
|
onFocusOut(): void;
|
|
9244
9343
|
onEscape(): void;
|
|
9344
|
+
onActivateKey(event: KeyboardEvent): void;
|
|
9245
9345
|
ngAfterContentChecked(): void;
|
|
9246
9346
|
/**
|
|
9247
9347
|
* The element that actually receives focus and ARIA semantics. When the
|
|
@@ -9259,7 +9359,7 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
|
|
|
9259
9359
|
|
|
9260
9360
|
type TooltipPosition = OverlayPosition;
|
|
9261
9361
|
type TooltipOpenWith = "hover" | "click" | "both" | "none";
|
|
9262
|
-
declare class TooltipComponent
|
|
9362
|
+
declare class TooltipComponent {
|
|
9263
9363
|
/**
|
|
9264
9364
|
* The position of the tooltip relative to the trigger element.
|
|
9265
9365
|
* @default top
|
|
@@ -9306,7 +9406,6 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
9306
9406
|
readonly tooltipContent: _angular_core.Signal<ElementRef<any>>;
|
|
9307
9407
|
private readonly connectedOverlay;
|
|
9308
9408
|
readonly descriptionId: string;
|
|
9309
|
-
readonly contentText: _angular_core.WritableSignal<string>;
|
|
9310
9409
|
private readonly internalOpen;
|
|
9311
9410
|
readonly isOpen: _angular_core.Signal<boolean>;
|
|
9312
9411
|
readonly currentPlacement: _angular_core.WritableSignal<OverlaySide>;
|
|
@@ -9317,7 +9416,9 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
9317
9416
|
readonly isContentHovered: _angular_core.WritableSignal<boolean>;
|
|
9318
9417
|
hideTimeout?: ReturnType<typeof setTimeout>;
|
|
9319
9418
|
private readonly ngZone;
|
|
9419
|
+
private readonly document;
|
|
9320
9420
|
private trackRafId;
|
|
9421
|
+
private readonly onDocumentKeydown;
|
|
9321
9422
|
private readonly horizontalPush;
|
|
9322
9423
|
constructor();
|
|
9323
9424
|
showTooltip(): void;
|
|
@@ -9334,8 +9435,6 @@ declare class TooltipComponent implements AfterContentChecked {
|
|
|
9334
9435
|
onPositionChange(change: ConnectedOverlayPositionChange): void;
|
|
9335
9436
|
onOverlayAttach(): void;
|
|
9336
9437
|
private updateArrowPosition;
|
|
9337
|
-
ngAfterContentChecked(): void;
|
|
9338
|
-
private syncContentText;
|
|
9339
9438
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
9340
9439
|
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>;
|
|
9341
9440
|
}
|
|
@@ -9347,7 +9446,7 @@ declare class TooltipContentComponent {
|
|
|
9347
9446
|
* @default medium
|
|
9348
9447
|
*/
|
|
9349
9448
|
maxWidth: _angular_core.InputSignal<TooltipWidth>;
|
|
9350
|
-
|
|
9449
|
+
protected readonly tooltip: TooltipComponent;
|
|
9351
9450
|
classes: _angular_core.Signal<string>;
|
|
9352
9451
|
onMouseEnter(): void;
|
|
9353
9452
|
onMouseLeave(): void;
|
|
@@ -9580,6 +9679,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
9580
9679
|
*/
|
|
9581
9680
|
declare function normalizeTime(input: string): string | null;
|
|
9582
9681
|
|
|
9583
|
-
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 };
|
|
9682
|
+
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, TextareaComponent, 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 };
|
|
9584
9683
|
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, VirtualRow };
|
|
9585
9684
|
//# sourceMappingURL=index.d.ts.map
|