@tedi-design-system/angular 7.0.0-rc.1 → 7.0.0-rc.3
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.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +12 -0
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +400 -18
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/index.css +1 -1
- package/package.json +2 -2
- package/tedi/index.d.ts +144 -5
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tedi-design-system/angular",
|
|
3
|
-
"version": "7.0.0-rc.
|
|
3
|
+
"version": "7.0.0-rc.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "community.mjs",
|
|
6
6
|
"module": "fesm2022/tedi-design-system-angular.mjs",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@tanstack/angular-table": "^8.21.4",
|
|
36
|
-
"@tedi-design-system/core": "^6.4.
|
|
36
|
+
"@tedi-design-system/core": "^6.4.3",
|
|
37
37
|
"tslib": "^2.3.0"
|
|
38
38
|
},
|
|
39
39
|
"commitlint": {
|
package/tedi/index.d.ts
CHANGED
|
@@ -1622,6 +1622,7 @@ type AlertRole = "alert" | "status" | "none";
|
|
|
1622
1622
|
type AlertType = "info" | "success" | "warning" | "danger";
|
|
1623
1623
|
type AlertTitleType = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div";
|
|
1624
1624
|
type AlertVariant = "default" | "global" | "noSideBorders";
|
|
1625
|
+
type AlertSize = "default" | "small";
|
|
1625
1626
|
declare class AlertComponent {
|
|
1626
1627
|
/**
|
|
1627
1628
|
* An optional title for the alert, typically used to summarize the message's purpose.
|
|
@@ -1661,6 +1662,13 @@ declare class AlertComponent {
|
|
|
1661
1662
|
* For example, 'global' for full-width alerts or 'noSideBorders' for alerts without side borders.
|
|
1662
1663
|
*/
|
|
1663
1664
|
variant: _angular_core.InputSignal<AlertVariant>;
|
|
1665
|
+
/**
|
|
1666
|
+
* Alert size variant.
|
|
1667
|
+
* - 'default': standard padding and body text size.
|
|
1668
|
+
* - 'small': reduced padding and smaller body text.
|
|
1669
|
+
* @default default
|
|
1670
|
+
*/
|
|
1671
|
+
size: _angular_core.InputSignal<AlertSize>;
|
|
1664
1672
|
/**
|
|
1665
1673
|
* The HTML tag to be used for the alert title.
|
|
1666
1674
|
* @default h2
|
|
@@ -1690,7 +1698,7 @@ declare class AlertComponent {
|
|
|
1690
1698
|
}>;
|
|
1691
1699
|
handleClose(): void;
|
|
1692
1700
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
1693
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "tedi-alert", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "titleElement": { "alias": "titleElement"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "closeClick": "closeClick"; }, never, ["[tedi-alert-action]", "*"], true, never>;
|
|
1701
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "tedi-alert", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "titleElement": { "alias": "titleElement"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "closeClick": "closeClick"; }, never, ["[tedi-alert-action]", "*"], true, never>;
|
|
1694
1702
|
}
|
|
1695
1703
|
|
|
1696
1704
|
declare const TOAST_DEFAULT_DURATION = 6000;
|
|
@@ -4411,6 +4419,13 @@ declare class DropdownItemComponent {
|
|
|
4411
4419
|
readonly value: _angular_core.InputSignal<string | undefined>;
|
|
4412
4420
|
/** Is item disabled? */
|
|
4413
4421
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
4422
|
+
/**
|
|
4423
|
+
* Whether the item's label clips overflowing content (for text ellipsis).
|
|
4424
|
+
* Set `false` when projecting content with decorations that intentionally
|
|
4425
|
+
* sit outside the line box, e.g. status indicator.
|
|
4426
|
+
* @default true
|
|
4427
|
+
*/
|
|
4428
|
+
readonly clipContent: _angular_core.InputSignal<boolean>;
|
|
4414
4429
|
/**
|
|
4415
4430
|
* Whether selecting this item closes the dropdown. Set `false` for items
|
|
4416
4431
|
* that should keep the dropdown open after selection (e.g. multi-select
|
|
@@ -4432,10 +4447,11 @@ declare class DropdownItemComponent {
|
|
|
4432
4447
|
isSelected(): boolean;
|
|
4433
4448
|
focus(): void;
|
|
4434
4449
|
onClick(): void;
|
|
4450
|
+
onMousedown(event: MouseEvent): void;
|
|
4435
4451
|
onKeydown(event: KeyboardEvent): void;
|
|
4436
4452
|
private onItemSelect;
|
|
4437
4453
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownItemComponent, never>;
|
|
4438
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownItemComponent, "li[tedi-dropdown-item]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; }, ["customItemValue"], ["tedi-dropdown-item-value", "*"], true, never>;
|
|
4454
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownItemComponent, "li[tedi-dropdown-item]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "clipContent": { "alias": "clipContent"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; }, { "itemSelect": "itemSelect"; }, ["customItemValue"], ["tedi-dropdown-item-value", "*"], true, never>;
|
|
4439
4455
|
}
|
|
4440
4456
|
|
|
4441
4457
|
type DropdownRole = "menu" | "listbox";
|
|
@@ -7821,9 +7837,132 @@ interface UsePaginationArgs {
|
|
|
7821
7837
|
*/
|
|
7822
7838
|
declare function usePagination({ page, pageCount, boundaryCount, siblingCount, }: UsePaginationArgs): PaginationItem[];
|
|
7823
7839
|
|
|
7840
|
+
/**
|
|
7841
|
+
* Root of the Tabs compound component. Wraps `tedi-tabs-list` and
|
|
7842
|
+
* `tedi-tabs-content` elements and owns the active-tab state, which the list,
|
|
7843
|
+
* triggers and panels read by injecting this component.
|
|
7844
|
+
*
|
|
7845
|
+
* Use `defaultValue` for uncontrolled usage, or bind `[(value)]`
|
|
7846
|
+
* (or `[value]` + `(valueChange)`) for controlled usage.
|
|
7847
|
+
*/
|
|
7848
|
+
declare class TabsComponent {
|
|
7849
|
+
/** Controlled active tab id. Use with `(valueChange)` or `[(value)]`. */
|
|
7850
|
+
readonly value: _angular_core.InputSignal<string | undefined>;
|
|
7851
|
+
/** Initial active tab id for uncontrolled usage. */
|
|
7852
|
+
readonly defaultValue: _angular_core.InputSignal<string>;
|
|
7853
|
+
/** Emitted when the active tab changes. */
|
|
7854
|
+
readonly valueChange: _angular_core.OutputEmitterRef<string>;
|
|
7855
|
+
/** Currently active tab id, read by the list, triggers and panels. */
|
|
7856
|
+
readonly activeTab: _angular_core.WritableSignal<string>;
|
|
7857
|
+
private initialized;
|
|
7858
|
+
constructor();
|
|
7859
|
+
/**
|
|
7860
|
+
* Requests activation of a tab. In uncontrolled mode the active tab updates
|
|
7861
|
+
* immediately; in controlled mode only `valueChange` fires and the consumer
|
|
7862
|
+
* is expected to update the bound value.
|
|
7863
|
+
*/
|
|
7864
|
+
select(id: string): void;
|
|
7865
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
7866
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "tedi-tabs", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, ["*"], true, never>;
|
|
7867
|
+
}
|
|
7868
|
+
|
|
7869
|
+
/**
|
|
7870
|
+
* A single tab button inside `tedi-tabs-list`. Applied to a native `<button>`
|
|
7871
|
+
* so it inherits native focus, disabled and activation behaviour.
|
|
7872
|
+
*/
|
|
7873
|
+
declare class TabsTriggerComponent {
|
|
7874
|
+
private readonly tabs;
|
|
7875
|
+
private readonly host;
|
|
7876
|
+
/**
|
|
7877
|
+
* Unique identifier for this tab. Used as the element id and to link to the
|
|
7878
|
+
* corresponding `tedi-tabs-content` panel (`aria-controls="{id}-panel"`).
|
|
7879
|
+
*/
|
|
7880
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
7881
|
+
/** Icon displayed before the label. */
|
|
7882
|
+
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
7883
|
+
/** Whether the tab is disabled. */
|
|
7884
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
7885
|
+
readonly isSelected: _angular_core.Signal<boolean>;
|
|
7886
|
+
/** Plain-text label, used as the accessible name of the overflow dropdown item. */
|
|
7887
|
+
get label(): string;
|
|
7888
|
+
get contentNodes(): Node[];
|
|
7889
|
+
/** Scrolls this trigger into view within a horizontally scrolling tablist. */
|
|
7890
|
+
scrollIntoView(): void;
|
|
7891
|
+
handleClick(): void;
|
|
7892
|
+
handleKeydown(event: KeyboardEvent): void;
|
|
7893
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsTriggerComponent, never>;
|
|
7894
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsTriggerComponent, "button[tedi-tabs-trigger]", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7895
|
+
}
|
|
7896
|
+
|
|
7897
|
+
type TabsOverflowMode = "dropdown" | "scroll";
|
|
7898
|
+
interface OverflowItem {
|
|
7899
|
+
id: string;
|
|
7900
|
+
disabled: boolean;
|
|
7901
|
+
trigger: TabsTriggerComponent;
|
|
7902
|
+
}
|
|
7903
|
+
/**
|
|
7904
|
+
* Container for the tab triggers. Renders the `role="tablist"` element and
|
|
7905
|
+
* handles tab overflow either through a "More" dropdown or horizontal scroll.
|
|
7906
|
+
*/
|
|
7907
|
+
declare class TabsListComponent implements AfterViewInit, OnDestroy {
|
|
7908
|
+
private readonly tabs;
|
|
7909
|
+
private readonly platformId;
|
|
7910
|
+
private readonly host;
|
|
7911
|
+
private readonly injector;
|
|
7912
|
+
/** Accessible label for the tablist. */
|
|
7913
|
+
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
7914
|
+
/** Id of the element labelling the tablist. */
|
|
7915
|
+
readonly ariaLabelledby: _angular_core.InputSignal<string | undefined>;
|
|
7916
|
+
/**
|
|
7917
|
+
* How to handle tab overflow when tabs do not fit in the available space.
|
|
7918
|
+
* - `dropdown`: overflowing tabs move into a "More" dropdown (default)
|
|
7919
|
+
* - `scroll`: enables horizontal scrolling with a fade indicator
|
|
7920
|
+
*/
|
|
7921
|
+
readonly overflowMode: _angular_core.InputSignal<TabsOverflowMode>;
|
|
7922
|
+
/** Label for the overflow dropdown trigger. Defaults to the `more` translation. */
|
|
7923
|
+
readonly dropdownLabel: _angular_core.InputSignal<string | undefined>;
|
|
7924
|
+
private readonly listRef;
|
|
7925
|
+
private readonly triggers;
|
|
7926
|
+
private readonly isOverflowing;
|
|
7927
|
+
private resizeObserver?;
|
|
7928
|
+
readonly canScrollStart: _angular_core.WritableSignal<boolean>;
|
|
7929
|
+
readonly canScrollEnd: _angular_core.WritableSignal<boolean>;
|
|
7930
|
+
readonly showMore: _angular_core.Signal<boolean>;
|
|
7931
|
+
readonly dropdownItems: _angular_core.Signal<OverflowItem[]>;
|
|
7932
|
+
constructor();
|
|
7933
|
+
ngAfterViewInit(): void;
|
|
7934
|
+
ngOnDestroy(): void;
|
|
7935
|
+
selectTab(id: string): void;
|
|
7936
|
+
updateScrollFade(): void;
|
|
7937
|
+
private checkOverflow;
|
|
7938
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsListComponent, never>;
|
|
7939
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsListComponent, "tedi-tabs-list", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; "isSignal": true; }; "overflowMode": { "alias": "overflowMode"; "required": false; "isSignal": true; }; "dropdownLabel": { "alias": "dropdownLabel"; "required": false; "isSignal": true; }; }, {}, ["triggers"], ["*"], true, never>;
|
|
7940
|
+
}
|
|
7941
|
+
|
|
7942
|
+
/**
|
|
7943
|
+
* A tab panel. When `id` matches a trigger, the panel is only shown while that
|
|
7944
|
+
* tab is active. When `id` is omitted the content is always rendered (useful
|
|
7945
|
+
* for router outlets).
|
|
7946
|
+
*/
|
|
7947
|
+
declare class TabsContentComponent {
|
|
7948
|
+
private readonly tabs;
|
|
7949
|
+
/** Unique identifier matching the corresponding trigger id. */
|
|
7950
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
7951
|
+
readonly isActive: _angular_core.Signal<boolean>;
|
|
7952
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsContentComponent, never>;
|
|
7953
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsContentComponent, "tedi-tabs-content", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7954
|
+
}
|
|
7955
|
+
|
|
7824
7956
|
declare class DropdownItemValueLabelComponent {
|
|
7957
|
+
/**
|
|
7958
|
+
* Whether the label clips overflowing content for text ellipsis. Set `false`
|
|
7959
|
+
* when the label holds content with decorations that intentionally sit
|
|
7960
|
+
* outside the line box (e.g. status indicator), so they are not cut off.
|
|
7961
|
+
* @default true
|
|
7962
|
+
*/
|
|
7963
|
+
readonly clipContent: _angular_core.InputSignal<boolean>;
|
|
7825
7964
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownItemValueLabelComponent, never>;
|
|
7826
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownItemValueLabelComponent, "tedi-dropdown-item-value-label", never, {}, {}, never, ["*"], true, never>;
|
|
7965
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DropdownItemValueLabelComponent, "tedi-dropdown-item-value-label", never, { "clipContent": { "alias": "clipContent"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7827
7966
|
}
|
|
7828
7967
|
|
|
7829
7968
|
declare class DropdownItemValueMetaComponent {
|
|
@@ -8374,6 +8513,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
8374
8513
|
*/
|
|
8375
8514
|
declare function normalizeTime(input: string): string | null;
|
|
8376
8515
|
|
|
8377
|
-
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, 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 };
|
|
8378
|
-
export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, 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 };
|
|
8516
|
+
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, cookieSignal, createTablePersistence, endOfMonth, formatDate, formatLocaleDate, formatLocaleDateHint, formatLocaleDateLong, formatMonthYear, generateUUID, getCardBorderPlacementColor, getDaysInMonth, getFirstDayOfWeek, getFocusableElements, getISOWeek, getMonthNames, getPaddingCssVariables, getPlacementFromPositionChange, getWeekdayNames, groupRowSpan, injectTediTableContext, isAfterDay, isBeforeDay, isDateInRange, isSameDay, isSameMonth, isSameYear, isValidTime, matchAny, matchDate, normalizeTime, parseDate, parseLocaleDate, provideTedi, resolveCardBorderRadius, startOfMonth, startOfWeek, toConnectedPositions, toggleDateInArray, usePagination };
|
|
8517
|
+
export type { AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
|
|
8379
8518
|
//# sourceMappingURL=index.d.ts.map
|