@tedi-design-system/angular 7.1.0-rc.2 → 7.1.0-rc.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "7.1.0-rc.2",
3
+ "version": "7.1.0-rc.4",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
package/tedi/index.d.ts CHANGED
@@ -6421,6 +6421,135 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6421
6421
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate"], never, true, never>;
6422
6422
  }
6423
6423
 
6424
+ type SliderHideLabel = boolean | "keep-space";
6425
+ declare class SliderComponent implements ControlValueAccessor, OnDestroy {
6426
+ /**
6427
+ * Unique identifier for the underlying range input, used for label association.
6428
+ */
6429
+ inputId: _angular_core.InputSignal<string>;
6430
+ /**
6431
+ * Name attribute of the underlying input.
6432
+ */
6433
+ name: _angular_core.InputSignal<string | undefined>;
6434
+ /**
6435
+ * Label rendered above the slider.
6436
+ */
6437
+ label: _angular_core.InputSignal<string | undefined>;
6438
+ /**
6439
+ * Hide the label visually while keeping it available to assistive technology, or
6440
+ * `"keep-space"` to also reserve its vertical space.
6441
+ * @default false
6442
+ */
6443
+ hideLabel: _angular_core.InputSignal<SliderHideLabel>;
6444
+ /**
6445
+ * Marks the field as required.
6446
+ * @default false
6447
+ */
6448
+ required: _angular_core.InputSignal<boolean>;
6449
+ /**
6450
+ * Minimum allowed value.
6451
+ * @default 0
6452
+ */
6453
+ min: _angular_core.InputSignal<number>;
6454
+ /**
6455
+ * Maximum allowed value.
6456
+ * @default 100
6457
+ */
6458
+ max: _angular_core.InputSignal<number>;
6459
+ /**
6460
+ * Step size.
6461
+ * @default 1
6462
+ */
6463
+ step: _angular_core.InputSignal<number>;
6464
+ /**
6465
+ * Current value. Supports two-way binding and reactive forms.
6466
+ */
6467
+ value: _angular_core.ModelSignal<number>;
6468
+ /**
6469
+ * Disables the slider.
6470
+ * @default false
6471
+ */
6472
+ disabled: _angular_core.InputSignal<boolean>;
6473
+ /**
6474
+ * Marks the slider as invalid for validation purposes.
6475
+ * @default false
6476
+ */
6477
+ invalid: _angular_core.InputSignal<boolean>;
6478
+ /**
6479
+ * Text rendered to the left of the track (e.g. the minimum value).
6480
+ */
6481
+ minLabel: _angular_core.InputSignal<string | undefined>;
6482
+ /**
6483
+ * Text rendered to the right of the track (e.g. the maximum value).
6484
+ * Ignored when `showCurrentValue` is `true`.
6485
+ */
6486
+ maxLabel: _angular_core.InputSignal<string | undefined>;
6487
+ /**
6488
+ * Render the current value to the right of the track instead of `maxLabel`.
6489
+ * @default false
6490
+ */
6491
+ showCurrentValue: _angular_core.InputSignal<boolean>;
6492
+ /**
6493
+ * Formats the current value for the thumb tooltip and the `showCurrentValue` label.
6494
+ */
6495
+ valueFormatter: _angular_core.InputSignal<((value: number) => string) | undefined>;
6496
+ /**
6497
+ * Show a tooltip with the current value above the thumb while hovered, focused or dragged.
6498
+ * @default true
6499
+ */
6500
+ tooltip: _angular_core.InputSignal<boolean>;
6501
+ /**
6502
+ * FeedbackText component inputs, rendered below the slider.
6503
+ */
6504
+ feedbackText: _angular_core.InputSignal<ComponentInputs<FeedbackTextComponent> | undefined>;
6505
+ /**
6506
+ * Accessible label used when no visible `label` is provided.
6507
+ */
6508
+ ariaLabel: _angular_core.InputSignal<string | undefined>;
6509
+ /**
6510
+ * ID of an element that labels the slider, used when no visible `label` is provided.
6511
+ */
6512
+ ariaLabelledby: _angular_core.InputSignal<string | undefined>;
6513
+ /**
6514
+ * Human-readable text alternative of the current value.
6515
+ */
6516
+ ariaValuetext: _angular_core.InputSignal<string | undefined>;
6517
+ private readonly formDisabled;
6518
+ readonly isHovered: _angular_core.WritableSignal<boolean>;
6519
+ readonly isFocused: _angular_core.WritableSignal<boolean>;
6520
+ readonly isDragging: _angular_core.WritableSignal<boolean>;
6521
+ private onChange;
6522
+ private onTouched;
6523
+ readonly isDisabled: _angular_core.Signal<boolean>;
6524
+ readonly isInvalid: _angular_core.Signal<boolean>;
6525
+ readonly clampedValue: _angular_core.Signal<number>;
6526
+ readonly progress: _angular_core.Signal<number>;
6527
+ readonly progressStyle: _angular_core.Signal<{
6528
+ "--tedi-slider-progress": string;
6529
+ "--tedi-slider-progress-ratio": string;
6530
+ }>;
6531
+ readonly formattedValue: _angular_core.Signal<string>;
6532
+ readonly rightLabel: _angular_core.Signal<string | undefined>;
6533
+ readonly feedbackId: _angular_core.Signal<string | null>;
6534
+ readonly canShowTooltip: _angular_core.Signal<boolean>;
6535
+ readonly tooltipOpen: _angular_core.Signal<boolean>;
6536
+ readonly classes: _angular_core.Signal<string>;
6537
+ writeValue(value?: number): void;
6538
+ registerOnChange(fn: (value: number) => void): void;
6539
+ registerOnTouched(fn: () => void): void;
6540
+ setDisabledState(disabled: boolean): void;
6541
+ handleInput(event: Event): void;
6542
+ handlePointerDown(): void;
6543
+ handleFocus(): void;
6544
+ handleBlur(): void;
6545
+ handleMouseEnter(): void;
6546
+ handleMouseLeave(): void;
6547
+ ngOnDestroy(): void;
6548
+ private endDrag;
6549
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SliderComponent, never>;
6550
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SliderComponent, "tedi-slider", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "minLabel": { "alias": "minLabel"; "required": false; "isSignal": true; }; "maxLabel": { "alias": "maxLabel"; "required": false; "isSignal": true; }; "showCurrentValue": { "alias": "showCurrentValue"; "required": false; "isSignal": true; }; "valueFormatter": { "alias": "valueFormatter"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaValuetext": { "alias": "ariaValuetext"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["[sliderAddon]"], true, never>;
6551
+ }
6552
+
6424
6553
  type ToggleVariant = "primary" | "colored";
6425
6554
  type ToggleType = "filled" | "outlined";
6426
6555
  type ToggleSize = "default" | "large";
@@ -8463,6 +8592,14 @@ declare class ModalHeaderComponent {
8463
8592
  }
8464
8593
 
8465
8594
  declare class TooltipTriggerComponent implements AfterContentChecked {
8595
+ /**
8596
+ * When `false`, the trigger is a pure positioning anchor: it skips making its
8597
+ * projected child focusable (no synthesized `tabindex`, focus ring or
8598
+ * `aria-describedby`). Use for decorative or externally-controlled origins where
8599
+ * focus and ARIA live on another element (e.g. a slider's range input).
8600
+ * @default true
8601
+ */
8602
+ readonly interactive: _angular_core.InputSignal<boolean>;
8466
8603
  readonly host: ElementRef<HTMLElement>;
8467
8604
  readonly overlayOrigin: CdkOverlayOrigin;
8468
8605
  private renderer;
@@ -8490,11 +8627,11 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
8490
8627
  private resolveInteractiveElement;
8491
8628
  private isFocusable;
8492
8629
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipTriggerComponent, never>;
8493
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, {}, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
8630
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, { "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
8494
8631
  }
8495
8632
 
8496
8633
  type TooltipPosition = OverlayPosition;
8497
- type TooltipOpenWith = "hover" | "click" | "both";
8634
+ type TooltipOpenWith = "hover" | "click" | "both" | "none";
8498
8635
  declare class TooltipComponent implements AfterContentChecked {
8499
8636
  /**
8500
8637
  * The position of the tooltip relative to the trigger element.
@@ -8507,14 +8644,35 @@ declare class TooltipComponent implements AfterContentChecked {
8507
8644
  */
8508
8645
  readonly preventOverflow: _angular_core.InputSignal<boolean>;
8509
8646
  /**
8510
- * How tooltip can opened?
8647
+ * How the tooltip can be opened. Use `none` for full external control via `open`
8648
+ * (e.g. a slider or custom draggable element driving the open state itself).
8511
8649
  * @default both
8512
8650
  */
8513
8651
  readonly openWith: _angular_core.InputSignal<TooltipOpenWith>;
8652
+ /**
8653
+ * Controlled open state. When set (not `undefined`), it overrides the built-in
8654
+ * trigger behavior; typically paired with `openWith="none"`. Leave unset for the
8655
+ * default trigger-driven behavior.
8656
+ */
8657
+ readonly open: _angular_core.ModelSignal<boolean | undefined>;
8658
+ /**
8659
+ * While open, continuously reposition the tooltip so it follows an origin that moves
8660
+ * (e.g. a dragging slider thumb). Uses `requestAnimationFrame`; enable only while the
8661
+ * origin can actually move to avoid needless work.
8662
+ * @default false
8663
+ */
8664
+ readonly trackPosition: _angular_core.InputSignal<boolean>;
8514
8665
  /** Delay time (in ms) for closing tooltip when not hovering trigger or content.
8515
8666
  * @default 100
8516
8667
  */
8517
8668
  readonly timeoutDelay: _angular_core.InputSignal<number>;
8669
+ /**
8670
+ * Extra distance (in px) between the tooltip and its trigger, added on top of the
8671
+ * arrow allowance. Set to `0` to sit the tooltip directly against the trigger
8672
+ * (e.g. a slider thumb).
8673
+ * @default 4
8674
+ */
8675
+ readonly offset: _angular_core.InputSignal<number>;
8518
8676
  /** Dropdown trigger button */
8519
8677
  readonly tooltipTrigger: _angular_core.Signal<TooltipTriggerComponent>;
8520
8678
  /** Tooltip content component */
@@ -8522,7 +8680,8 @@ declare class TooltipComponent implements AfterContentChecked {
8522
8680
  private readonly connectedOverlay;
8523
8681
  readonly descriptionId: string;
8524
8682
  readonly contentText: _angular_core.WritableSignal<string>;
8525
- readonly isOpen: _angular_core.WritableSignal<boolean>;
8683
+ private readonly internalOpen;
8684
+ readonly isOpen: _angular_core.Signal<boolean>;
8526
8685
  readonly currentPlacement: _angular_core.WritableSignal<OverlaySide>;
8527
8686
  readonly arrowLeft: _angular_core.WritableSignal<number | null>;
8528
8687
  readonly arrowTop: _angular_core.WritableSignal<number | null>;
@@ -8530,10 +8689,20 @@ declare class TooltipComponent implements AfterContentChecked {
8530
8689
  readonly overlayOrigin: _angular_core.Signal<_angular_cdk_overlay.CdkOverlayOrigin>;
8531
8690
  readonly isContentHovered: _angular_core.WritableSignal<boolean>;
8532
8691
  hideTimeout?: ReturnType<typeof setTimeout>;
8692
+ private readonly ngZone;
8693
+ private trackRafId;
8533
8694
  private readonly horizontalPush;
8534
8695
  constructor();
8535
8696
  showTooltip(): void;
8536
8697
  hideTooltip(): void;
8698
+ /**
8699
+ * Recomputes the overlay position against its origin. Call this when the origin has
8700
+ * moved without a scroll/resize event (e.g. a dragged element). `trackPosition`
8701
+ * calls it automatically each frame while open.
8702
+ */
8703
+ updatePosition(): void;
8704
+ private startTracking;
8705
+ private stopTracking;
8537
8706
  toggleTooltip(): void;
8538
8707
  onPositionChange(change: ConnectedOverlayPositionChange): void;
8539
8708
  onOverlayAttach(): void;
@@ -8541,7 +8710,7 @@ declare class TooltipComponent implements AfterContentChecked {
8541
8710
  ngAfterContentChecked(): void;
8542
8711
  private syncContentText;
8543
8712
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipComponent, never>;
8544
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "tedi-tooltip", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "preventOverflow": { "alias": "preventOverflow"; "required": false; "isSignal": true; }; "openWith": { "alias": "openWith"; "required": false; "isSignal": true; }; "timeoutDelay": { "alias": "timeoutDelay"; "required": false; "isSignal": true; }; }, {}, ["tooltipTrigger", "tooltipContent"], ["tedi-tooltip-trigger", "tedi-tooltip-content"], true, never>;
8713
+ 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>;
8545
8714
  }
8546
8715
 
8547
8716
  type TooltipWidth = "none" | "small" | "medium" | "large";
@@ -8755,6 +8924,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
8755
8924
  */
8756
8925
  declare function normalizeTime(input: string): string | null;
8757
8926
 
8758
- export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
8759
- export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
8927
+ export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
8928
+ export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, 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 };
8760
8929
  //# sourceMappingURL=index.d.ts.map