codexly-ui 0.10.103 → 0.10.105

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": "codexly-ui",
3
- "version": "0.10.103",
3
+ "version": "0.10.105",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -119,9 +119,9 @@ declare class ClxSocialIconComponent {
119
119
  readonly platform: _angular_core.InputSignal<ClxSocialPlatform>;
120
120
  readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
121
121
  readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
122
- readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg" | undefined>;
122
+ readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
123
123
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
124
- protected readonly _size: _angular_core.Signal<"xxs" | "xs" | "sm" | "md" | "lg">;
124
+ protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
125
125
  protected readonly _markup: _angular_core.Signal<SafeHtml>;
126
126
  protected readonly _hostClass: _angular_core.Signal<string>;
127
127
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxSocialIconComponent, never>;
@@ -138,10 +138,10 @@ declare class ClxButtonComponent {
138
138
  * unusual background shade (bright yellow) where the variant's own resolved text color (white)
139
139
  * reads poorly and a themed text tone is needed instead. */
140
140
  readonly textColor: _angular_core.InputSignal<ClxColorInput | undefined>;
141
- readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg" | undefined>;
141
+ readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
142
142
  readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
143
143
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
144
- protected readonly _size: _angular_core.Signal<"xxs" | "xs" | "sm" | "md" | "lg">;
144
+ protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
145
145
  protected readonly _shape: _angular_core.Signal<ClxShape>;
146
146
  readonly loading: _angular_core.InputSignal<boolean>;
147
147
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -191,11 +191,11 @@ declare class ClxBadgeComponent {
191
191
  private readonly _themeSvc;
192
192
  readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
193
193
  readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
194
- readonly size: _angular_core.InputSignal<"xs" | "sm" | "md" | undefined>;
194
+ readonly size: _angular_core.InputSignal<"sm" | "md" | "xs" | undefined>;
195
195
  readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
196
196
  readonly positioned: _angular_core.InputSignal<boolean>;
197
197
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
198
- protected readonly _size: _angular_core.Signal<"xs" | "sm" | "md">;
198
+ protected readonly _size: _angular_core.Signal<"sm" | "md" | "xs">;
199
199
  protected readonly _shape: _angular_core.Signal<ClxShape>;
200
200
  protected readonly _hostClass: _angular_core.Signal<string>;
201
201
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
@@ -267,7 +267,7 @@ declare class ClxCardComponent {
267
267
  * product-cart-style layout) regardless of variant/color. */
268
268
  readonly border: _angular_core.InputSignal<boolean>;
269
269
  /** Per-instance border-radius override — falls back to the theme's global borderRadius when unset. */
270
- readonly radius: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl" | "none" | "full" | undefined>;
270
+ readonly radius: _angular_core.InputSignal<"none" | "sm" | "md" | "lg" | "xl" | "full" | undefined>;
271
271
  /** Auto-generated header icon (Material Symbols name) — shown in a rounded primary-subtle
272
272
  * square next to headerTitle. Ignored when a manual [clxCardHeader] block is projected. */
273
273
  readonly icon: _angular_core.InputSignal<string | undefined>;
@@ -2003,6 +2003,18 @@ interface ClxFormControlsTheme {
2003
2003
  otp?: ClxColorInput;
2004
2004
  wizard?: ClxColorInput;
2005
2005
  }
2006
+ type ClxTableShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl';
2007
+ interface ClxTableTheme {
2008
+ /** Header row background — accepts a shade (e.g. 'red-500') for full intensity control, not
2009
+ * just a bare color name. Falls back to primaryColor's subtle tint when unset. */
2010
+ headerColor?: ClxColorInput;
2011
+ /** Header row text/title color — falls back to a color derived from headerColor when unset. */
2012
+ headerTextColor?: ClxColorInput;
2013
+ /** Drop shadow under the table wrapper. Falls back to 'none'. */
2014
+ shadow?: ClxTableShadow;
2015
+ /** Whether the table wrapper shows its outer border. Falls back to true. */
2016
+ bordered?: boolean;
2017
+ }
2006
2018
  interface ClxThemeConfig {
2007
2019
  /** Default accent color for all components (buttons, inputs, checkboxes…) */
2008
2020
  primaryColor: ClxColorInput;
@@ -2036,6 +2048,8 @@ interface ClxThemeConfig {
2036
2048
  timelineTitle?: ClxTimelineTitleZoneStyle;
2037
2049
  /** Per-form-control accent color overrides — each falls back to primaryColor when unset */
2038
2050
  formControls?: ClxFormControlsTheme;
2051
+ /** ClxTableComponent global style override — see ClxTableTheme for per-field fallbacks */
2052
+ table?: ClxTableTheme;
2039
2053
  /** Default border-radius style applied to all components */
2040
2054
  borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
2041
2055
  /** Default size for all form/interactive components */
@@ -2062,7 +2076,7 @@ declare class ClxMenuComponent implements AfterViewInit {
2062
2076
  readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
2063
2077
  protected readonly _resolved: _angular_core.Signal<{
2064
2078
  color: codexly_ui.ClxColorInput;
2065
- size: "xs" | "sm" | "md";
2079
+ size: "sm" | "md" | "xs";
2066
2080
  weight: codexly_ui.ClxFontWeight;
2067
2081
  }>;
2068
2082
  protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
@@ -2798,7 +2812,7 @@ declare class ClxFabComponent {
2798
2812
  protected readonly _position: _angular_core.Signal<ClxFabPosition>;
2799
2813
  protected readonly _triggerClass: _angular_core.Signal<string>;
2800
2814
  /** Los botones de la pila de accesos van un paso más pequeños que el trigger. */
2801
- protected readonly _itemSize: _angular_core.Signal<"xxs" | "xs" | "sm">;
2815
+ protected readonly _itemSize: _angular_core.Signal<"sm" | "xxs" | "xs">;
2802
2816
  private readonly _sso;
2803
2817
  readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2804
2818
  readonly _positions: ConnectedPosition[];
@@ -2877,6 +2891,18 @@ declare class ClxTableComponent<T = any> {
2877
2891
  readonly emptyIcon: _angular_core.InputSignal<string>;
2878
2892
  readonly emptyTitle: _angular_core.InputSignal<string>;
2879
2893
  readonly emptyDescription: _angular_core.InputSignal<string>;
2894
+ /** Per-instance overrides — each falls back to ClxThemeService.tableStyle (the app-wide table
2895
+ * theme configured in Editar tema → Tablas) when unset. */
2896
+ readonly headerColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2897
+ readonly headerTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2898
+ readonly shadow: _angular_core.InputSignal<ClxTableShadow | undefined>;
2899
+ readonly bordered: _angular_core.InputSignal<boolean | undefined>;
2900
+ protected readonly _tableStyle: _angular_core.Signal<{
2901
+ headerColor: ClxColorInput;
2902
+ headerTextColor: ClxColorInput;
2903
+ shadow: ClxTableShadow;
2904
+ bordered: boolean;
2905
+ }>;
2880
2906
  readonly sortKey: _angular_core.ModelSignal<string | null>;
2881
2907
  readonly sortDir: _angular_core.ModelSignal<ClxTableSort | null>;
2882
2908
  readonly pageIndex: _angular_core.ModelSignal<number>;
@@ -2889,6 +2915,7 @@ declare class ClxTableComponent<T = any> {
2889
2915
  readonly selectionChange: _angular_core.OutputEmitterRef<ClxTableSelectionEvent<T>>;
2890
2916
  private readonly _columnDefs;
2891
2917
  protected _onPaginationPageChange(page: number): void;
2918
+ private static readonly _SHADOW_CLASS;
2892
2919
  protected readonly _tableWrapperClass: _angular_core.Signal<string>;
2893
2920
  protected readonly _tableClass: _angular_core.Signal<string>;
2894
2921
  protected readonly _headerClass: _angular_core.Signal<string>;
@@ -2917,7 +2944,7 @@ declare class ClxTableComponent<T = any> {
2917
2944
  protected _handleSelectAll(checked: boolean): void;
2918
2945
  protected _handleSelectItem(item: T, checked: boolean): void;
2919
2946
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxTableComponent<any>, never>;
2920
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxTableComponent<any>, "clx-table", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "singleSelect": { "alias": "singleSelect"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "emptyIcon": { "alias": "emptyIcon"; "required": false; "isSignal": true; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; "isSignal": true; }; "emptyDescription": { "alias": "emptyDescription"; "required": false; "isSignal": true; }; "sortKey": { "alias": "sortKey"; "required": false; "isSignal": true; }; "sortDir": { "alias": "sortDir"; "required": false; "isSignal": true; }; "pageIndex": { "alias": "pageIndex"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "_currentPage": { "alias": "_currentPage"; "required": false; "isSignal": true; }; "searchQuery": { "alias": "searchQuery"; "required": false; "isSignal": true; }; "selectedItems": { "alias": "selectedItems"; "required": false; "isSignal": true; }; }, { "sortKey": "sortKeyChange"; "sortDir": "sortDirChange"; "pageIndex": "pageIndexChange"; "pageSize": "pageSizeChange"; "_currentPage": "_currentPageChange"; "searchQuery": "searchQueryChange"; "selectedItems": "selectedItemsChange"; "sortChange": "sortChange"; "pageChange": "pageChange"; "selectionChange": "selectionChange"; }, ["_columnDefs"], never, true, never>;
2947
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxTableComponent<any>, "clx-table", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "singleSelect": { "alias": "singleSelect"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "serverSide": { "alias": "serverSide"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "emptyIcon": { "alias": "emptyIcon"; "required": false; "isSignal": true; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; "isSignal": true; }; "emptyDescription": { "alias": "emptyDescription"; "required": false; "isSignal": true; }; "headerColor": { "alias": "headerColor"; "required": false; "isSignal": true; }; "headerTextColor": { "alias": "headerTextColor"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "sortKey": { "alias": "sortKey"; "required": false; "isSignal": true; }; "sortDir": { "alias": "sortDir"; "required": false; "isSignal": true; }; "pageIndex": { "alias": "pageIndex"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "_currentPage": { "alias": "_currentPage"; "required": false; "isSignal": true; }; "searchQuery": { "alias": "searchQuery"; "required": false; "isSignal": true; }; "selectedItems": { "alias": "selectedItems"; "required": false; "isSignal": true; }; }, { "sortKey": "sortKeyChange"; "sortDir": "sortDirChange"; "pageIndex": "pageIndexChange"; "pageSize": "pageSizeChange"; "_currentPage": "_currentPageChange"; "searchQuery": "searchQueryChange"; "selectedItems": "selectedItemsChange"; "sortChange": "sortChange"; "pageChange": "pageChange"; "selectionChange": "selectionChange"; }, ["_columnDefs"], never, true, never>;
2921
2948
  }
2922
2949
 
2923
2950
  declare class ClxPageNotFoundComponent {
@@ -3474,7 +3501,7 @@ declare class ClxSearchComponent implements ControlValueAccessor {
3474
3501
  padDefaultL: string;
3475
3502
  padDefaultR: string;
3476
3503
  }>;
3477
- protected readonly _buttonSize: _angular_core.Signal<"xs" | "sm" | "md" | "lg">;
3504
+ protected readonly _buttonSize: _angular_core.Signal<"sm" | "md" | "lg" | "xs">;
3478
3505
  protected readonly _wrapperClass: _angular_core.Signal<string>;
3479
3506
  protected readonly _inputClass: _angular_core.Signal<string>;
3480
3507
  writeValue(val: string): void;
@@ -3603,6 +3630,12 @@ interface ClxResolvedListItemLabelZoneStyle {
3603
3630
  interface ClxResolvedTimelineTitleZoneStyle {
3604
3631
  weight: ClxFontWeight;
3605
3632
  }
3633
+ interface ClxResolvedTableStyle {
3634
+ headerColor: ClxColorInput;
3635
+ headerTextColor: ClxColorInput;
3636
+ shadow: ClxTableShadow;
3637
+ bordered: boolean;
3638
+ }
3606
3639
  type ClxThemeMode = 'light' | 'dark' | 'system';
3607
3640
  declare class ClxThemeService {
3608
3641
  private readonly _isBrowser;
@@ -3638,6 +3671,10 @@ declare class ClxThemeService {
3638
3671
  readonly listItemLabelStyle: _angular_core.Signal<ClxResolvedListItemLabelZoneStyle>;
3639
3672
  /** Resolved style for ClxTimelineItemComponent's event title — falls back to 600 */
3640
3673
  readonly timelineTitleStyle: _angular_core.Signal<ClxResolvedTimelineTitleZoneStyle>;
3674
+ /** Resolved style for ClxTableComponent — falls back to primaryColor's subtle tint header /
3675
+ * no shadow / bordered. Per-instance `[headerColor]`/`[shadow]`/`[bordered]` inputs on
3676
+ * clx-table itself still take precedence over this theme-wide default. */
3677
+ readonly tableStyle: _angular_core.Signal<ClxResolvedTableStyle>;
3641
3678
  constructor();
3642
3679
  setMode(mode: ClxThemeMode): void;
3643
3680
  setConfig(patch: Partial<ClxThemeConfig>): void;
@@ -3766,4 +3803,4 @@ declare class ClxToastService {
3766
3803
  }
3767
3804
 
3768
3805
  export { CLX_ADDON_BORDER, CLX_ADDON_TEXT, CLX_ALERT_OPTIONS, CLX_ALERT_RESOLVE, CLX_BG_ADDON, CLX_BG_DISABLED, CLX_BG_ICON_WRAP, CLX_BG_SECTION, CLX_BG_SURFACE, CLX_BORDER_DEFAULT, CLX_BORDER_DISABLED, CLX_BORDER_MEDIUM, CLX_COLOR_HEX, CLX_COLOR_HEX_100, CLX_COLOR_MAP, CLX_FONT_CATALOG, CLX_MODAL_ANIM_CONFIG, CLX_MODAL_DATA, CLX_MODAL_REF, CLX_OPTION_DISABLED, CLX_PLACEHOLDER, CLX_RADIO_GROUP, CLX_RADIUS_MAP, CLX_TEXT_BODY, CLX_TEXT_DISABLED, CLX_TEXT_HEADING, CLX_TEXT_HINT, CLX_TEXT_IDLE, CLX_TEXT_INPUT, CLX_TEXT_LABEL, CLX_TEXT_OPTION, CLX_TEXT_SUBTITLE, CLX_TEXT_TITLE, CLX_THEME_CONFIG, CLX_THEME_DEFAULTS, CLX_TOAST_DEFAULTS, ClxAlertComponent, ClxAlertService, ClxAnimateDirective, ClxAnimateGroupDirective, ClxAnimateService, ClxAppLayoutComponent, ClxAvatarComponent, ClxBadgeComponent, ClxBrandComponent, ClxButtonComponent, ClxButtonGroupComponent, ClxCardBodyDirective, ClxCardComponent, ClxCardFooterDirective, ClxCardHeaderActionsDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxCheckboxComponent, ClxCollapseComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxMenuItemTrailingDirective, ClxModalComponent, ClxModalService, ClxNativeOverlayService, ClxNavGroupComponent, ClxNumberComponent, ClxOtpComponent, ClxPageEmptyComponent, ClxPageHeaderComponent, ClxPageHeaderTitleDirective, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProductQuickViewComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSearchComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, ClxSocialIconComponent, ClxSpinnerComponent, ClxStatCardComponent, ClxStepComponent, ClxStepperComponent, ClxSwitchComponent, ClxTabDirective, ClxTableComponent, ClxTabsComponent, ClxTagComponent, ClxTextareaComponent, ClxThemeService, ClxTimelineComponent, ClxTimelineItemComponent, ClxTimepickerComponent, ClxToastComponent, ClxToastContainerComponent, ClxToastService, ClxTooltipComponent, ClxTooltipDirective, ClxTreeComponent, ClxUploadComponent, ClxWishlistComponent, ClxWizardComponent, TIMEPICKER_SIZE_MAP, parseColorInput, provideCodexlyTheme, resolveColor, resolveContainerRadius, resolveRadius };
3769
- export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxBrandSize, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardTitleZoneStyle, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxCheckboxVariant, ClxCollapseDivider, ClxCollapseSize, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerPosition, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxFontWeight, ClxFormControlsTheme, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListItemLabelZoneStyle, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedTimelineTitleZoneStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimelineTitleZoneStyle, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, NativeOverlayRef, SparkPoint };
3806
+ export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxBrandSize, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardTitleZoneStyle, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxCheckboxVariant, ClxCollapseDivider, ClxCollapseSize, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerPosition, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxFontWeight, ClxFormControlsTheme, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListItemLabelZoneStyle, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedTableStyle, ClxResolvedTimelineTitleZoneStyle, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSocialPlatform, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableShadow, ClxTableSort, ClxTableSortEvent, ClxTableTheme, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimelineTitleZoneStyle, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, NativeOverlayRef, SparkPoint };