@ethlete/cdk 4.57.0 → 4.58.0
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/CHANGELOG.md +7 -0
- package/fesm2022/ethlete-cdk.mjs +252 -26
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +84 -10
- package/package.json +1 -2
package/index.d.ts
CHANGED
|
@@ -18,8 +18,6 @@ import { AbstractControl, ControlValueAccessor, ValidationErrors, FormGroup, For
|
|
|
18
18
|
import { Platform } from '@angular/cdk/platform';
|
|
19
19
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
20
20
|
import { ComponentType as ComponentType$1, ScrollStrategy, OverlayRef as OverlayRef$1, Overlay, PositionStrategy, ConnectedPosition } from '@angular/cdk/overlay';
|
|
21
|
-
import * as i2 from '@ethlete/theming';
|
|
22
|
-
import { ProvideThemeDirective } from '@ethlete/theming';
|
|
23
21
|
import { Direction, Directionality } from '@angular/cdk/bidi';
|
|
24
22
|
import * as _angular_cdk_overlay_module_d_CVO_IcaN from '@angular/cdk/overlay-module.d-CVO-IcaN';
|
|
25
23
|
import { CdkDialogContainer, DialogRef as DialogRef$1, Dialog } from '@angular/cdk/dialog';
|
|
@@ -6093,6 +6091,82 @@ declare class ComboboxBodyMoreItemsHintTemplateDirective {
|
|
|
6093
6091
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ComboboxBodyMoreItemsHintTemplateDirective, "ng-template[etComboboxBodyMoreItemsHintTemplate]", ["etComboboxBodyMoreItemsHintTemplate"], {}, {}, never, never, true, never>;
|
|
6094
6092
|
}
|
|
6095
6093
|
|
|
6094
|
+
declare const THEMES_TOKEN: InjectionToken<string[]>;
|
|
6095
|
+
|
|
6096
|
+
declare const THEME_PROVIDER: InjectionToken<ProvideThemeDirective>;
|
|
6097
|
+
declare class ProvideThemeDirective {
|
|
6098
|
+
private readonly _themes;
|
|
6099
|
+
private readonly _injector;
|
|
6100
|
+
private _currentProviderSync;
|
|
6101
|
+
get theme(): string | null;
|
|
6102
|
+
set theme(value: string | null);
|
|
6103
|
+
readonly _theme: i0.WritableSignal<string | null>;
|
|
6104
|
+
get altTheme(): string | null;
|
|
6105
|
+
set altTheme(value: string | null);
|
|
6106
|
+
readonly _altTheme: i0.WritableSignal<string | null>;
|
|
6107
|
+
protected themeClass: i0.Signal<string>;
|
|
6108
|
+
syncWithProvider(provider: ProvideThemeDirective): void;
|
|
6109
|
+
stopSyncWithProvider(): void;
|
|
6110
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvideThemeDirective, never>;
|
|
6111
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProvideThemeDirective, "[etProvideTheme]", never, { "theme": { "alias": "etProvideTheme"; "required": false; }; "altTheme": { "alias": "etProvideAltTheme"; "required": false; }; }, {}, never, never, true, never>;
|
|
6112
|
+
}
|
|
6113
|
+
|
|
6114
|
+
type ThemeRGBColor = `${number} ${number} ${number}`;
|
|
6115
|
+
type ThemeHSLColor = `${number} ${number}% ${number}%`;
|
|
6116
|
+
type ThemeColor = ThemeRGBColor | ThemeHSLColor;
|
|
6117
|
+
interface ThemeColorMap {
|
|
6118
|
+
default: ThemeColor;
|
|
6119
|
+
hover: ThemeColor;
|
|
6120
|
+
focus?: ThemeColor;
|
|
6121
|
+
active: ThemeColor;
|
|
6122
|
+
disabled: ThemeColor;
|
|
6123
|
+
}
|
|
6124
|
+
interface OnThemeColorMap {
|
|
6125
|
+
default: ThemeColor;
|
|
6126
|
+
hover?: ThemeColor;
|
|
6127
|
+
focus?: ThemeColor;
|
|
6128
|
+
active?: ThemeColor;
|
|
6129
|
+
disabled?: ThemeColor;
|
|
6130
|
+
}
|
|
6131
|
+
interface ThemeSwatch {
|
|
6132
|
+
color: ThemeColorMap;
|
|
6133
|
+
onColor: OnThemeColorMap;
|
|
6134
|
+
}
|
|
6135
|
+
interface Theme {
|
|
6136
|
+
name: string;
|
|
6137
|
+
isDefault?: boolean;
|
|
6138
|
+
isDefaultAlt?: boolean;
|
|
6139
|
+
primary: ThemeSwatch;
|
|
6140
|
+
secondary?: ThemeSwatch;
|
|
6141
|
+
tertiary?: ThemeSwatch;
|
|
6142
|
+
}
|
|
6143
|
+
|
|
6144
|
+
declare const createCssThemeName: (name: string) => string;
|
|
6145
|
+
declare const createSwatchCss: (swatch: string, isAlt: boolean, data: ThemeSwatch) => string;
|
|
6146
|
+
declare const createRootThemeCss: (themes: Theme[]) => void;
|
|
6147
|
+
declare const createThemeStyle: (theme: Theme, isAlt: boolean) => void;
|
|
6148
|
+
declare const createTailwindCssVar: (name: string | undefined) => string | null;
|
|
6149
|
+
declare const createTailwindRgbVar: (val: string | undefined) => string | null;
|
|
6150
|
+
declare const createTailwindColorThemes: (themes: Theme[], prefix?: string) => Record<string, {
|
|
6151
|
+
DEFAULT: string;
|
|
6152
|
+
hover: string;
|
|
6153
|
+
focus: string;
|
|
6154
|
+
active: string;
|
|
6155
|
+
disabled: string;
|
|
6156
|
+
}>;
|
|
6157
|
+
declare const provideColorThemes: (themes: Theme[]) => {
|
|
6158
|
+
provide: i0.InjectionToken<string[]>;
|
|
6159
|
+
useValue: string[];
|
|
6160
|
+
};
|
|
6161
|
+
/**
|
|
6162
|
+
* @deprecated Use `provideColorThemes()` instead
|
|
6163
|
+
*/
|
|
6164
|
+
declare const provideThemes: (themes: Theme[]) => {
|
|
6165
|
+
provide: i0.InjectionToken<string[]>;
|
|
6166
|
+
useValue: string[];
|
|
6167
|
+
};
|
|
6168
|
+
declare const provideSurfaceThemes: (themes: Theme[]) => void;
|
|
6169
|
+
|
|
6096
6170
|
declare const COMBOBOX_OPTION_TOKEN: InjectionToken<ComboboxOptionComponent>;
|
|
6097
6171
|
declare class ComboboxOptionComponent implements AbstractComboboxOption {
|
|
6098
6172
|
combobox: ComboboxDirective;
|
|
@@ -6158,7 +6232,7 @@ declare class ComboboxBodyComponent implements AbstractComboboxBody {
|
|
|
6158
6232
|
constructor();
|
|
6159
6233
|
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
6160
6234
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxBodyComponent, never>;
|
|
6161
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxBodyComponent, "et-combobox-body", never, {}, {}, never, never, true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }, { directive: typeof
|
|
6235
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxBodyComponent, "et-combobox-body", never, {}, {}, never, never, true, [{ directive: typeof i1.ClickOutsideDirective; inputs: {}; outputs: {}; }, { directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
6162
6236
|
}
|
|
6163
6237
|
|
|
6164
6238
|
declare const createComboboxConfig: (globalConfig?: Partial<ComboboxConfig> | null | undefined, localConfig?: Partial<ComboboxConfig> | null | undefined) => ComboboxConfig;
|
|
@@ -6354,7 +6428,7 @@ declare class SelectBodyComponent {
|
|
|
6354
6428
|
_bodyTemplate: TemplateRef<unknown> | null;
|
|
6355
6429
|
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
6356
6430
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBodyComponent, never>;
|
|
6357
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBodyComponent, "et-select-body", never, {}, {}, never, never, true, [{ directive: typeof SelectBodyDirective; inputs: {}; outputs: {}; }, { directive: typeof
|
|
6431
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectBodyComponent, "et-select-body", never, {}, {}, never, never, true, [{ directive: typeof SelectBodyDirective; inputs: {}; outputs: {}; }, { directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
6358
6432
|
}
|
|
6359
6433
|
|
|
6360
6434
|
declare class SelectComponent extends DecoratedInputBase implements AfterViewInit {
|
|
@@ -7358,7 +7432,7 @@ declare class MenuContainerComponent {
|
|
|
7358
7432
|
_markForCheck(): void;
|
|
7359
7433
|
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
7360
7434
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuContainerComponent, never>;
|
|
7361
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuContainerComponent, "et-menu-container", never, {}, {}, never, never, true, [{ directive: typeof
|
|
7435
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuContainerComponent, "et-menu-container", never, {}, {}, never, never, true, [{ directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
7362
7436
|
}
|
|
7363
7437
|
|
|
7364
7438
|
declare const MENU_TRIGGER_TOKEN: InjectionToken<MenuTriggerDirective>;
|
|
@@ -8657,7 +8731,7 @@ declare class OverlayContainerComponent extends CdkDialogContainer<OverlayConfig
|
|
|
8657
8731
|
private _defaultSwipeMoveStyleInterpolator;
|
|
8658
8732
|
private _defaultSwipeEndStyleInterpolator;
|
|
8659
8733
|
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayContainerComponent, never>;
|
|
8660
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayContainerComponent, "et-overlay-container", never, {}, {}, never, never, true, [{ directive: typeof i1.RootBoundaryDirective; inputs: {}; outputs: {}; }, { directive: typeof i1.AnimatedLifecycleDirective; inputs: {}; outputs: {}; }, { directive: typeof
|
|
8734
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OverlayContainerComponent, "et-overlay-container", never, {}, {}, never, never, true, [{ directive: typeof i1.RootBoundaryDirective; inputs: {}; outputs: {}; }, { directive: typeof i1.AnimatedLifecycleDirective; inputs: {}; outputs: {}; }, { directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
8661
8735
|
}
|
|
8662
8736
|
|
|
8663
8737
|
declare const OVERLAY_DATA: InjectionToken<unknown>;
|
|
@@ -8905,7 +8979,7 @@ declare class ToggletipComponent {
|
|
|
8905
8979
|
_markForCheck(): void;
|
|
8906
8980
|
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
8907
8981
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggletipComponent, never>;
|
|
8908
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggletipComponent, "et-toggletip", never, {}, {}, never, never, true, [{ directive: typeof
|
|
8982
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggletipComponent, "et-toggletip", never, {}, {}, never, never, true, [{ directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
8909
8983
|
}
|
|
8910
8984
|
|
|
8911
8985
|
interface ToggletipConfig {
|
|
@@ -9011,7 +9085,7 @@ declare class TooltipComponent {
|
|
|
9011
9085
|
_markForCheck(): void;
|
|
9012
9086
|
_setThemeFromProvider(provider: ProvideThemeDirective): void;
|
|
9013
9087
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
9014
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "et-tooltip", never, {}, {}, never, never, true, [{ directive: typeof
|
|
9088
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "et-tooltip", never, {}, {}, never, never, true, [{ directive: typeof ProvideThemeDirective; inputs: {}; outputs: {}; }]>;
|
|
9015
9089
|
}
|
|
9016
9090
|
|
|
9017
9091
|
interface TooltipConfig {
|
|
@@ -10366,5 +10440,5 @@ declare class SwipeHandlerService {
|
|
|
10366
10440
|
|
|
10367
10441
|
declare const FLOATING_UI_PLACEMENTS: Placement[];
|
|
10368
10442
|
|
|
10369
|
-
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetState, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, Bracket, BracketComponent, BracketImports, BracketMatchComponent$1 as BracketMatchComponent, BracketMatchDirective, index_d as BracketNew, BracketRoundDirective, BracketRoundHeaderComponent$1 as BracketRoundHeaderComponent, ButtonComponent, ButtonDirective, ButtonImports, CAROUSEL_ITEM_NAV_TOKEN, CAROUSEL_ITEM_TOKEN, CAROUSEL_NEXT_BUTTON_TOKEN, CAROUSEL_PREVIOUS_BUTTON_TOKEN, CAROUSEL_TOGGLE_AUTO_PLAY_BUTTON_TOKEN, CAROUSEL_TOKEN, CDK_MENU, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, CHEVRON_ICON, COLOR_INPUT_TOKEN, COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, COMBOBOX_BODY_MORE_ITEMS_HINT_TEMPLATE_TOKEN, COMBOBOX_BODY_TOKEN, COMBOBOX_CONFIG_TOKEN, COMBOBOX_DEFAULT_CONFIG, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_OPTION_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CarouselComponent, CarouselDirective, CarouselImports, CarouselItemComponent, CarouselItemDirective, CarouselItemNavComponent, CarouselItemNavDirective, CarouselNextButtonDirective, CarouselPreviousButtonDirective, CarouselToggleAutoPlayButtonDirective, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DATE_TIME_INPUT_FORMAT_TOKEN, DATE_TIME_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DEFAULT_DATE_TIME_INPUT_FORMAT, DEFAULT_TIME_INPUT_FORMAT, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogState, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_ANCHORED_DIALOG_CLASS, ET_OVERLAY_BOTTOM_SHEET_CLASS, ET_OVERLAY_CONFIG_CLASS_KEYS, ET_OVERLAY_DIALOG_CLASS, ET_OVERLAY_FULL_SCREEN_DIALOG_CLASS, ET_OVERLAY_LAYOUT_CLASSES, ET_OVERLAY_LEFT_SHEET_CLASS, ET_OVERLAY_RIGHT_SHEET_CLASS, ET_OVERLAY_TOP_SHEET_CLASS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FocusNext, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, IMAGE_CONFIG_TOKEN, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconDirective, IconImports, IfInputEmptyDirective, IfInputFilledDirective, IfSupportsShowPickerDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU, MENU_AIM, MENU_CHECKBOX_GROUP_TOKEN, MENU_CONTAINER, MENU_GROUP_TITLE_TOKEN, MENU_GROUP_TOKEN, MENU_ITEM_TOKEN, MENU_RADIO_GROUP_TOKEN, MENU_SEARCH_TEMPLATE_TOKEN, MENU_STACK, MENU_TEMPLATE, MENU_TRIGGER, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuStack, MenuTriggerDirective, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NewBracketComponent, NewBracketDefaultMatchComponent, NewBracketDefaultRoundHeaderComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CLOSE_BLOCKER_TOKEN, OVERLAY_CONFIG, OVERLAY_DATA, OVERLAY_DEFAULT_CONFIG, OVERLAY_DEFAULT_OPTIONS, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_SCROLL_STRATEGY, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OVERLAY_STATE, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayPositionBuilder, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlayService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PointerFocusTracker, ProgressSpinnerComponent, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RICH_FILTER_BUTTON_SLOT_TOKEN, RICH_FILTER_BUTTON_TOKEN, RICH_FILTER_CONTENT_TOKEN, RICH_FILTER_TOP_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RecycleRowsDirective, RichFilterButtonDirective, RichFilterButtonSlotDirective, RichFilterContentDirective, RichFilterHostComponent, RichFilterImports, RichFilterTopDirective, RowComponent, RowDefDirective, SCROLLABLE_IGNORE_CHILD_ATTRIBUTE, SCROLLABLE_IGNORE_CHILD_TOKEN, SCROLLABLE_IS_ACTIVE_CHILD_ATTRIBUTE, SCROLLABLE_IS_ACTIVE_CHILD_TOKEN, SCROLLABLE_LOADING_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_ITEM_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_OVERLAY_TEMPLATE_TOKEN, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SHOW_PICKER_TRIGGER_TOKEN, SIDEBAR_OVERLAY_CONFIG, SLIDER_THUMB_CONTENT_TEMPLATE_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableIgnoreChildDirective, ScrollableImports, ScrollableIsActiveChildDirective, ScrollableLoadingTemplateDirective, ScrollablePlaceholderComponent, ScrollablePlaceholderItemTemplateDirective, ScrollablePlaceholderOverlayTemplateDirective, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, ShowPickerTriggerDirective, SidebarOverlayService, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SliderThumbContentTemplateDirective, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEL_INPUT_TOKEN, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, TIMES_ICON, TIME_INPUT_FORMAT_TOKEN, TIME_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TargetMenuAim, TelInputComponent, TelInputDirective, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, TimeInputComponent, TimeInputDirective, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, accordionAnimations, createBottomSheetConfig, createBracketConfig, createComboboxConfig, createDialogConfig, createFormChangesTracker, createOverlayConfig, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, getClosestBottomSheet, getClosestDialog, getClosestOverlay, isScrollableChildActive, isScrollableChildIgnored, isUpperBracketMatch, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialog, provideDialogDefaultConfig, provideFilterOverlayConfig, provideIcons, provideImageConfig, provideOverlay, provideOverlayDefaultConfig, provideOverlayRouterConfig, provideSidebarOverlayConfig, provideSort, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
10370
|
-
export type { AbstractComboboxBody, AbstractComboboxOption, ActiveTabUnderlineItem, ArrowViewState, ArrowViewStateTransition, BottomSheetAutoFocusTarget, BottomSheetConfig, BracketConfig, BracketMatch$1 as BracketMatch, BracketRound$1 as BracketRound, CarouselTransitionDirection, CarouselTransitionType, CloseOptions, ComboboxConfig, ConnectedMatches, ContextMenuCoordinates, CreateFormChangesTrackerConfig, CreateOverlayDismissCheckerConfig, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DefaultSubmitButtonConfigFnConfig, DialogAutoFocusTarget, DialogConfig, DialogPosition, DialogRole, DynamicOverlayConfig, DynamicOverlayRed, ExposeInputVarsContext, FilterOverlayConfig, FilterOverlayResult, FilterOverlaySubmitButtonConfig, FocusableElement, FormChangesTrackerRef, IconDefinition, InlineTabBodyOriginState, InlineTabBodyPositionState, InputTouchedFn, InputValueChangeFn, InputValueUpdateType, LegacyBottomSheetAnimationEvent, LegacyDialogAnimationEvent, MasonryDimensions, MaybeOverlayConsumerConfigWithData, Menu, MenuAim, MenuStackCloseEvent, MenuStackItem, NativeSelectOptionValue, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayBreakpointConfigEntry, OverlayCloseCallEvent, OverlayConfig, OverlayConsumerConfig, OverlayDismissCheckerRef, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayHeaderTemplates, OverlayLayout, OverlayPosition, OverlayRole, OverlayRoute, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterTransitionType, OverlayState, PaginateOptions, PaginatedTabHeaderItem, PaginationHeadServiceConfig, PaginationItem, PictureConfig, PictureSource, ProgressSpinnerDefaultOptions, ProgressSpinnerMode, QueryErrorItem, QueryErrorList, RadioValue, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableScrollMode, ScrollableScrollOrigin, SegmentedButtonGroupRenderAs, SidebarOverlayConfig, SortDefaultOptions, SortHeaderArrowPosition, SortHeaderColumnDef, Sortable, SwipeEndEvent, SwipeUpdateEvent, TabConfig, TabPaginationScrollDirection, TableDataSourcePageEvent, TableDataSourcePaginator, Toggler, ToggletipConfig, TooltipConfig, ValidationErrorsServiceType, ValidatorErrors, _ActiveTabUnderlinePositioner };
|
|
10443
|
+
export { ACCORDION_COMPONENT, ACCORDION_HINT_WRAPPER_DIRECTIVE, ACCORDION_LABEL_WRAPPER_DIRECTIVE, AccordionComponent, AccordionGroupComponent, AccordionHintDirective, AccordionHintWrapperDirective, AccordionImports, AccordionLabelDirective, AccordionLabelWrapperDirective, ActiveTabUnderlineBarManager, ActiveTabUnderlineDirective, AutosizeTextareaDirective, BOTTOM_SHEET_CONFIG, BOTTOM_SHEET_DATA, BOTTOM_SHEET_DEFAULT_CONFIG, BOTTOM_SHEET_DEFAULT_OPTIONS, BOTTOM_SHEET_MIN_SWIPE_TO_CLOSE_LENGTH, BOTTOM_SHEET_MIN_VELOCITY_TO_CLOSE, BOTTOM_SHEET_SCROLL_STRATEGY, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER, BOTTOM_SHEET_SCROLL_STRATEGY_PROVIDER_FACTORY, BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG, BRACKET_MATCH_ID_TOKEN, BRACKET_ROUND_ID_TOKEN, BRACKET_TOKEN, BottomSheetContainerBaseComponent, BottomSheetContainerComponent, BottomSheetDragHandleComponent, BottomSheetImports, BottomSheetRef, BottomSheetService, BottomSheetServiceBase, BottomSheetState, BottomSheetSwipeHandlerService, BottomSheetTitleDirective, Bracket, BracketComponent, BracketImports, BracketMatchComponent$1 as BracketMatchComponent, BracketMatchDirective, index_d as BracketNew, BracketRoundDirective, BracketRoundHeaderComponent$1 as BracketRoundHeaderComponent, ButtonComponent, ButtonDirective, ButtonImports, CAROUSEL_ITEM_NAV_TOKEN, CAROUSEL_ITEM_TOKEN, CAROUSEL_NEXT_BUTTON_TOKEN, CAROUSEL_PREVIOUS_BUTTON_TOKEN, CAROUSEL_TOGGLE_AUTO_PLAY_BUTTON_TOKEN, CAROUSEL_TOKEN, CDK_MENU, CHECKBOX_FIELD_TOKEN, CHECKBOX_GROUP_CONTROL_TOKEN, CHECKBOX_GROUP_TOKEN, CHECKBOX_TOKEN, CHEVRON_ICON, COLOR_INPUT_TOKEN, COMBOBOX_BODY_EMPTY_TEMPLATE_TOKEN, COMBOBOX_BODY_ERROR_TEMPLATE_TOKEN, COMBOBOX_BODY_LOADING_TEMPLATE_TOKEN, COMBOBOX_BODY_MORE_ITEMS_HINT_TEMPLATE_TOKEN, COMBOBOX_BODY_TOKEN, COMBOBOX_CONFIG_TOKEN, COMBOBOX_DEFAULT_CONFIG, COMBOBOX_OPTION_TEMPLATE_TOKEN, COMBOBOX_OPTION_TOKEN, COMBOBOX_SELECTED_OPTION_TEMPLATE_TOKEN, COMBOBOX_TOKEN, CarouselComponent, CarouselDirective, CarouselImports, CarouselItemComponent, CarouselItemDirective, CarouselItemNavComponent, CarouselItemNavDirective, CarouselNextButtonDirective, CarouselPreviousButtonDirective, CarouselToggleAutoPlayButtonDirective, CdkContextMenuTrigger, CdkMenu, CdkMenuBar, CdkMenuBase, CdkMenuGroup, CdkMenuItem, CdkMenuItemCheckbox, CdkMenuItemRadio, CdkMenuItemSelectable, CdkMenuModule, CdkMenuTrigger, CdkMenuTriggerBase, CdkTargetMenuAim, CellDefDirective, CellDirective, CheckboxComponent, CheckboxDirective, CheckboxFieldComponent, CheckboxFieldDirective, CheckboxGroupComponent, CheckboxGroupControlDirective, CheckboxGroupDirective, CheckboxImports, ColorInputComponent, ColorInputDirective, ColumnDefDirective, ComboboxBodyComponent, ComboboxBodyEmptyTemplateDirective, ComboboxBodyErrorTemplateDirective, ComboboxBodyLoadingTemplateDirective, ComboboxBodyMoreItemsHintTemplateDirective, ComboboxComponent, ComboboxDirective, ComboboxImports, ComboboxOptionComponent, ComboboxOptionTemplateDirective, ComboboxSelectedOptionTemplateDirective, ContextMenuTracker, DATE_INPUT_FORMAT_TOKEN, DATE_INPUT_TOKEN, DATE_TIME_INPUT_FORMAT_TOKEN, DATE_TIME_INPUT_TOKEN, DEFAULT_DATE_INPUT_FORMAT, DEFAULT_DATE_TIME_INPUT_FORMAT, DEFAULT_TIME_INPUT_FORMAT, DIALOG_CONFIG, DIALOG_DATA, DIALOG_DEFAULT_CONFIG, DIALOG_DEFAULT_OPTIONS, DIALOG_SCROLL_STRATEGY, DIALOG_SCROLL_STRATEGY_PROVIDER, DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY, DYNAMIC_FORM_FIELD_TOKEN, DYNAMIC_FORM_GROUP_TOKEN, DateInputComponent, DateInputDirective, DateTimeInputComponent, DateTimeInputDirective, DecoratedFormFieldBase, DecoratedInputBase, DefaultValidatorErrorsService, DialogCloseDirective, DialogContainerBaseComponent, DialogContainerComponent, DialogImports, DialogRef, DialogService, DialogServiceBase, DialogState, DialogTitleDirective, DynamicFormFieldDirective, DynamicFormGroupDirective, DynamicOverlayService, DynamicOverlayTitleDirective, EMAIL_INPUT_TOKEN, ET_OVERLAY_ANCHORED_DIALOG_CLASS, ET_OVERLAY_BOTTOM_SHEET_CLASS, ET_OVERLAY_CONFIG_CLASS_KEYS, ET_OVERLAY_DIALOG_CLASS, ET_OVERLAY_FULL_SCREEN_DIALOG_CLASS, ET_OVERLAY_LAYOUT_CLASSES, ET_OVERLAY_LEFT_SHEET_CLASS, ET_OVERLAY_RIGHT_SHEET_CLASS, ET_OVERLAY_TOP_SHEET_CLASS, EXPOSE_INPUT_VARS_TOKEN, EmailInputComponent, EmailInputDirective, ErrorComponent, ExposeInputVarsDirective, FILTER_OVERLAY_CONFIG, FLOATING_UI_PLACEMENTS, FilterOverlayService, FocusNext, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, FormFieldStateService, FormGroupStateService, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, IMAGE_CONFIG_TOKEN, INPUT_PREFIX_TOKEN, INPUT_SUFFIX_TOKEN, INPUT_TOKEN, IconDirective, IconImports, IfInputEmptyDirective, IfInputFilledDirective, IfSupportsShowPickerDirective, InlineTabBodyComponent, InlineTabBodyHostDirective, InlineTabChangeEvent, InlineTabComponent, InlineTabContentDirective, InlineTabHeaderComponent, InlineTabLabelDirective, InlineTabLabelWrapperDirective, InlineTabsComponent, InputBase, InputDirective, InputFieldComponent, InputImports, InputPrefixDirective, InputStateService, InputSuffixDirective, LABEL_TOKEN, LabelComponent, LabelImports, LabelSuffixDirective, MASONRY_ITEM_TOKEN, MAX_SAFE_INTEGER, MENU, MENU_AIM, MENU_CHECKBOX_GROUP_TOKEN, MENU_CONTAINER, MENU_GROUP_TITLE_TOKEN, MENU_GROUP_TOKEN, MENU_ITEM_TOKEN, MENU_RADIO_GROUP_TOKEN, MENU_SEARCH_TEMPLATE_TOKEN, MENU_STACK, MENU_TEMPLATE, MENU_TRIGGER, MENU_TRIGGER_TOKEN, MasonryComponent, MasonryImports, MasonryItemComponent, MenuCheckboxGroupDirective, MenuCheckboxItemComponent, MenuComponent, MenuContainerComponent, MenuGroupDirective, MenuGroupTitleDirective, MenuImports, MenuItemDirective, MenuRadioGroupDirective, MenuRadioItemComponent, MenuSearchTemplateDirective, MenuStack, MenuTriggerDirective, NATIVE_INPUT_REF_TOKEN, NATIVE_SELECT_INPUT_TOKEN, NATIVE_SELECT_OPTION_TOKEN, NUMBER_INPUT_TOKEN, NativeInputRefDirective, NativeSelectImports, NativeSelectInputComponent, NativeSelectInputDirective, NativeSelectOptionComponent, NativeSelectOptionDirective, NavTabLinkComponent, NavTabsComponent, NavTabsOutletComponent, NewBracketComponent, NewBracketDefaultMatchComponent, NewBracketDefaultRoundHeaderComponent, NoDataRowDirective, NumberInputComponent, NumberInputDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CLOSE_BLOCKER_TOKEN, OVERLAY_CONFIG, OVERLAY_DATA, OVERLAY_DEFAULT_CONFIG, OVERLAY_DEFAULT_OPTIONS, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_SCROLL_STRATEGY, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OVERLAY_STATE, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseBlockerDirective, OverlayCloseDirective, OverlayContainerComponent, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayImports, OverlayMainDirective, OverlayPositionBuilder, OverlayRef, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlayRouterService, OverlayService, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlayTitleDirective, OverlayWithRoutingImports, OverlayWithSidebarImports, PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER, PARENT_OR_NEW_MENU_STACK_PROVIDER, PASSWORD_INPUT_TOKEN, PROGRESS_SPINNER_DEFAULT_OPTIONS, PROGRESS_SPINNER_DEFAULT_OPTIONS_FACTORY, PaginatedTabHeaderDirective, PaginationComponent, PaginationHeadService, PaginationImports, PaginationLinkDirective, PasswordInputComponent, PasswordInputDirective, PasswordInputToggleComponent, PictureComponent, PointerFocusTracker, ProgressSpinnerComponent, ProvideThemeDirective, QUERY_ERROR_TOKEN, QueryButtonComponent, QueryButtonDirective, QueryErrorComponent, QueryErrorDirective, RADIO_FIELD_TOKEN, RADIO_GROUP_TOKEN, RADIO_TOKEN, RICH_FILTER_BUTTON_SLOT_TOKEN, RICH_FILTER_BUTTON_TOKEN, RICH_FILTER_CONTENT_TOKEN, RICH_FILTER_TOP_TOKEN, RadioComponent, RadioDirective, RadioFieldComponent, RadioFieldDirective, RadioGroupComponent, RadioGroupDirective, RadioImports, RecycleRowsDirective, RichFilterButtonDirective, RichFilterButtonSlotDirective, RichFilterContentDirective, RichFilterHostComponent, RichFilterImports, RichFilterTopDirective, RowComponent, RowDefDirective, SCROLLABLE_IGNORE_CHILD_ATTRIBUTE, SCROLLABLE_IGNORE_CHILD_TOKEN, SCROLLABLE_IS_ACTIVE_CHILD_ATTRIBUTE, SCROLLABLE_IS_ACTIVE_CHILD_TOKEN, SCROLLABLE_LOADING_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_ITEM_TEMPLATE_TOKEN, SCROLLABLE_PLACEHOLDER_OVERLAY_TEMPLATE_TOKEN, SEARCH_INPUT_TOKEN, SEGMENTED_BUTTON_FIELD_TOKEN, SEGMENTED_BUTTON_GROUP_TOKEN, SEGMENTED_BUTTON_TOKEN, SELECTION_LIST_FIELD, SELECTION_LIST_OPTION, SELECT_BODY_TOKEN, SELECT_FIELD_TOKEN, SELECT_OPTION_TOKEN, SELECT_TOKEN, SHOW_PICKER_TRIGGER_TOKEN, SIDEBAR_OVERLAY_CONFIG, SLIDER_THUMB_CONTENT_TEMPLATE_TOKEN, SLIDE_TOGGLE_TOKEN, SORT_DEFAULT_OPTIONS, SORT_HEADER_COLUMN_DEF, SORT_HEADER_INTL_PROVIDER, SORT_HEADER_INTL_PROVIDER_FACTORY, STATIC_FORM_FIELD_TOKEN, STATIC_FORM_GROUP_TOKEN, ScrollableComponent, ScrollableIgnoreChildDirective, ScrollableImports, ScrollableIsActiveChildDirective, ScrollableLoadingTemplateDirective, ScrollablePlaceholderComponent, ScrollablePlaceholderItemTemplateDirective, ScrollablePlaceholderOverlayTemplateDirective, SearchInputClearComponent, SearchInputComponent, SearchInputDirective, SegmentedButtonComponent, SegmentedButtonDirective, SegmentedButtonFieldComponent, SegmentedButtonFieldDirective, SegmentedButtonGroupComponent, SegmentedButtonGroupDirective, SegmentedButtonImports, SelectBodyComponent, SelectBodyDirective, SelectComponent, SelectDirective, SelectFieldComponent, SelectFieldDirective, SelectImports, SelectOptionComponent, SelectOptionDirective, SelectionListFieldComponent, SelectionListFieldDirective, SelectionListImports, SelectionListOptionComponent, SelectionListOptionDirective, ShowPickerTriggerDirective, SidebarOverlayService, SkeletonComponent, SkeletonImports, SkeletonItemComponent, SlideToggleComponent, SlideToggleDirective, SlideToggleFieldComponent, SlideToggleImports, SliderComponent, SliderFieldComponent, SliderImports, SliderThumbContentTemplateDirective, SortDirective, SortHeaderComponent, SortHeaderIntl, SortImports, StaticFormFieldDirective, StaticFormGroupDirective, SwipeHandlerService, TAB, TABS_CONFIG, TAB_CONTENT, TAB_GROUP, TAB_LABEL, TEL_INPUT_TOKEN, TEXTAREA_INPUT_TOKEN, TEXT_INPUT_TOKEN, THEMES_TOKEN, THEME_PROVIDER, TIMES_ICON, TIME_INPUT_FORMAT_TOKEN, TIME_INPUT_TOKEN, TOGGLETIP, TOGGLETIP_CONFIG, TOGGLETIP_DEFAULT_CONFIG, TOGGLETIP_DIRECTIVE, TOGGLETIP_TEMPLATE, TOGGLETIP_TEXT, TOOLTIP, TOOLTIP_CONFIG, TOOLTIP_DEFAULT_CONFIG, TOOLTIP_DIRECTIVE, TOOLTIP_TEMPLATE, TOOLTIP_TEXT, TabImports, TableBusyDirective, TableBusyOutletDirective, TableComponent, TableDataSource, TableImports, TargetMenuAim, TelInputComponent, TelInputDirective, TextColumnComponent, TextInputComponent, TextInputDirective, TextareaInputComponent, TextareaInputDirective, TimeInputComponent, TimeInputDirective, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipImports, TooltipComponent, TooltipDirective, TooltipImports, VALIDATOR_ERROR_SERVICE_TOKEN, WRITEABLE_INPUT_TOKEN, WRITEABLE_INPUT_VALUE_ACCESSOR, WriteableInputDirective, _MAT_INK_BAR_POSITIONER, _MAT_INK_BAR_POSITIONER_FACTORY, accordionAnimations, createBottomSheetConfig, createBracketConfig, createComboboxConfig, createCssThemeName, createDialogConfig, createFormChangesTracker, createOverlayConfig, createOverlayDismissChecker, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createRootThemeCss, createSwatchCss, createTailwindColorThemes, createTailwindCssVar, createTailwindRgbVar, createThemeStyle, createToggletipConfig, createTooltipConfig, defaultSubmitButtonConfigFn, getClosestBottomSheet, getClosestDialog, getClosestOverlay, isScrollableChildActive, isScrollableChildIgnored, isUpperBracketMatch, normalizePictureSizes, normalizePictureSource, normalizeRoundType, orderRounds, orderRoundsByRoundNumber, paginate, provideBottomSheet, provideBottomSheetDefaultConfig, provideBracketConfig, provideColorThemes, provideComboboxConfig, provideDateFormat, provideDateTimeFormat, provideDialog, provideDialogDefaultConfig, provideFilterOverlayConfig, provideIcons, provideImageConfig, provideOverlay, provideOverlayDefaultConfig, provideOverlayRouterConfig, provideSidebarOverlayConfig, provideSort, provideSurfaceThemes, provideThemes, provideTimeFormat, provideToggletipConfig, provideTooltipConfig, provideValidatorErrorsService, tabAnimations };
|
|
10444
|
+
export type { AbstractComboboxBody, AbstractComboboxOption, ActiveTabUnderlineItem, ArrowViewState, ArrowViewStateTransition, BottomSheetAutoFocusTarget, BottomSheetConfig, BracketConfig, BracketMatch$1 as BracketMatch, BracketRound$1 as BracketRound, CarouselTransitionDirection, CarouselTransitionType, CloseOptions, ComboboxConfig, ConnectedMatches, ContextMenuCoordinates, CreateFormChangesTrackerConfig, CreateOverlayDismissCheckerConfig, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DefaultSubmitButtonConfigFnConfig, DialogAutoFocusTarget, DialogConfig, DialogPosition, DialogRole, DynamicOverlayConfig, DynamicOverlayRed, ExposeInputVarsContext, FilterOverlayConfig, FilterOverlayResult, FilterOverlaySubmitButtonConfig, FocusableElement, FormChangesTrackerRef, IconDefinition, InlineTabBodyOriginState, InlineTabBodyPositionState, InputTouchedFn, InputValueChangeFn, InputValueUpdateType, LegacyBottomSheetAnimationEvent, LegacyDialogAnimationEvent, MasonryDimensions, MaybeOverlayConsumerConfigWithData, Menu, MenuAim, MenuStackCloseEvent, MenuStackItem, NativeSelectOptionValue, OnThemeColorMap, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayBreakpointConfigEntry, OverlayCloseCallEvent, OverlayConfig, OverlayConsumerConfig, OverlayDismissCheckerRef, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayHeaderTemplates, OverlayLayout, OverlayPosition, OverlayRole, OverlayRoute, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterTransitionType, OverlayState, PaginateOptions, PaginatedTabHeaderItem, PaginationHeadServiceConfig, PaginationItem, PictureConfig, PictureSource, ProgressSpinnerDefaultOptions, ProgressSpinnerMode, QueryErrorItem, QueryErrorList, RadioValue, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableScrollMode, ScrollableScrollOrigin, SegmentedButtonGroupRenderAs, SidebarOverlayConfig, SortDefaultOptions, SortHeaderArrowPosition, SortHeaderColumnDef, Sortable, SwipeEndEvent, SwipeUpdateEvent, TabConfig, TabPaginationScrollDirection, TableDataSourcePageEvent, TableDataSourcePaginator, Theme, ThemeColor, ThemeColorMap, ThemeHSLColor, ThemeRGBColor, ThemeSwatch, Toggler, ToggletipConfig, TooltipConfig, ValidationErrorsServiceType, ValidatorErrors, _ActiveTabUnderlinePositioner };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/cdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.58.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"exports": {
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
"@angular/router": "20.0.0",
|
|
24
24
|
"@ethlete/core": "^4.0.3",
|
|
25
25
|
"@ethlete/query": "^5.0.3",
|
|
26
|
-
"@ethlete/theming": "^2.3.1",
|
|
27
26
|
"@ethlete/types": "^1.6.2",
|
|
28
27
|
"@floating-ui/dom": "1.7.0",
|
|
29
28
|
"date-fns": "4.1.0",
|