codexly-ui 0.10.108 → 0.10.110

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.108",
3
+ "version": "0.10.110",
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,11 @@ 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
+ private readonly _tableActionsColor;
143
144
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
144
- protected readonly _size: _angular_core.Signal<"xxs" | "xs" | "sm" | "md" | "lg">;
145
+ protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
145
146
  protected readonly _shape: _angular_core.Signal<ClxShape>;
146
147
  readonly loading: _angular_core.InputSignal<boolean>;
147
148
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -197,11 +198,11 @@ declare class ClxBadgeComponent {
197
198
  private readonly _themeSvc;
198
199
  readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
199
200
  readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
200
- readonly size: _angular_core.InputSignal<"xs" | "sm" | "md" | undefined>;
201
+ readonly size: _angular_core.InputSignal<"sm" | "md" | "xs" | undefined>;
201
202
  readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
202
203
  readonly positioned: _angular_core.InputSignal<boolean>;
203
204
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
204
- protected readonly _size: _angular_core.Signal<"xs" | "sm" | "md">;
205
+ protected readonly _size: _angular_core.Signal<"sm" | "md" | "xs">;
205
206
  protected readonly _shape: _angular_core.Signal<ClxShape>;
206
207
  protected readonly _hostClass: _angular_core.Signal<string>;
207
208
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
@@ -273,7 +274,7 @@ declare class ClxCardComponent {
273
274
  * product-cart-style layout) regardless of variant/color. */
274
275
  readonly border: _angular_core.InputSignal<boolean>;
275
276
  /** Per-instance border-radius override — falls back to the theme's global borderRadius when unset. */
276
- readonly radius: _angular_core.InputSignal<"sm" | "md" | "lg" | "xl" | "none" | "full" | undefined>;
277
+ readonly radius: _angular_core.InputSignal<"none" | "sm" | "md" | "lg" | "xl" | "full" | undefined>;
277
278
  /** Auto-generated header icon (Material Symbols name) — shown in a rounded primary-subtle
278
279
  * square next to headerTitle. Ignored when a manual [clxCardHeader] block is projected. */
279
280
  readonly icon: _angular_core.InputSignal<string | undefined>;
@@ -2016,6 +2017,8 @@ interface ClxTableTheme {
2016
2017
  headerColor?: ClxColorInput;
2017
2018
  /** Header row text/title color — falls back to a color derived from headerColor when unset. */
2018
2019
  headerTextColor?: ClxColorInput;
2020
+ /** Wrapper border color — independent of headerColor. Falls back to primaryColor when unset. */
2021
+ borderColor?: ClxColorInput;
2019
2022
  /** Drop shadow under the table wrapper. Falls back to 'none'. */
2020
2023
  shadow?: ClxTableShadow;
2021
2024
  /** Whether the table wrapper shows its outer border. Falls back to true. */
@@ -2075,6 +2078,13 @@ interface ClxThemeConfig {
2075
2078
  table?: ClxTableTheme;
2076
2079
  /** ClxPaginationComponent global style override — see ClxPaginationTheme for per-field fallbacks */
2077
2080
  pagination?: ClxPaginationTheme;
2081
+ /** ClxCardComponent border color (outlined/elevated variants) — falls back to primaryColor when unset */
2082
+ cardBorderColor?: ClxColorInput;
2083
+ /** ClxListComponent divider/border color — falls back to primaryColor when unset */
2084
+ listBorderColor?: ClxColorInput;
2085
+ /** Scrollbar thumb color (--clx-scroll/--clx-scroll-light CSS vars) — falls back to
2086
+ * primaryColor when unset. */
2087
+ scrollColor?: ClxColorInput;
2078
2088
  /** Default border-radius style applied to all components */
2079
2089
  borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
2080
2090
  /** Default size for all form/interactive components */
@@ -2101,7 +2111,7 @@ declare class ClxMenuComponent implements AfterViewInit {
2101
2111
  readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
2102
2112
  protected readonly _resolved: _angular_core.Signal<{
2103
2113
  color: codexly_ui.ClxColorInput;
2104
- size: "xs" | "sm" | "md";
2114
+ size: "sm" | "md" | "xs";
2105
2115
  weight: codexly_ui.ClxFontWeight;
2106
2116
  }>;
2107
2117
  protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
@@ -2245,7 +2255,7 @@ declare class ClxProfileComponent {
2245
2255
  readonly fullName: _angular_core.Signal<string>;
2246
2256
  protected readonly _initials: _angular_core.Signal<string>;
2247
2257
  protected readonly _ringClass: _angular_core.Signal<string>;
2248
- protected readonly _headerBgClass: _angular_core.Signal<string>;
2258
+ protected readonly _avatarRingClass: _angular_core.Signal<string>;
2249
2259
  protected _toggle(): void;
2250
2260
  protected _close(): void;
2251
2261
  protected _onKeydown(event: KeyboardEvent): void;
@@ -2842,7 +2852,7 @@ declare class ClxFabComponent {
2842
2852
  protected readonly _position: _angular_core.Signal<ClxFabPosition>;
2843
2853
  protected readonly _triggerClass: _angular_core.Signal<string>;
2844
2854
  /** Los botones de la pila de accesos van un paso más pequeños que el trigger. */
2845
- protected readonly _itemSize: _angular_core.Signal<"xxs" | "xs" | "sm">;
2855
+ protected readonly _itemSize: _angular_core.Signal<"sm" | "xxs" | "xs">;
2846
2856
  private readonly _sso;
2847
2857
  readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2848
2858
  readonly _positions: ConnectedPosition[];
@@ -2925,11 +2935,13 @@ declare class ClxTableComponent<T = any> {
2925
2935
  * theme configured in Editar tema → Tablas) when unset. */
2926
2936
  readonly headerColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2927
2937
  readonly headerTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2938
+ readonly borderColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2928
2939
  readonly shadow: _angular_core.InputSignal<ClxTableShadow | undefined>;
2929
2940
  readonly bordered: _angular_core.InputSignal<boolean | undefined>;
2930
2941
  protected readonly _tableStyle: _angular_core.Signal<{
2931
2942
  headerColor: ClxColorInput;
2932
2943
  headerTextColor: ClxColorInput;
2944
+ borderColor: ClxColorInput;
2933
2945
  shadow: ClxTableShadow;
2934
2946
  bordered: boolean;
2935
2947
  }>;
@@ -2974,7 +2986,17 @@ declare class ClxTableComponent<T = any> {
2974
2986
  protected _handleSelectAll(checked: boolean): void;
2975
2987
  protected _handleSelectItem(item: T, checked: boolean): void;
2976
2988
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxTableComponent<any>, never>;
2977
- 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>;
2989
+ 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; }; "borderColor": { "alias": "borderColor"; "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>;
2990
+ }
2991
+
2992
+ /** Wraps the action buttons in a clx-table column (edit/delete/view/...) so every nested
2993
+ * clx-button defaults to the theme's secondaryColor instead of primaryColor, without each one
2994
+ * having to pass [color] by hand. Any button that DOES pass its own [color] (e.g. a one-off
2995
+ * danger action) still overrides this default — same override precedence as every other
2996
+ * per-instance color input in the library. */
2997
+ declare class ClxTableActionsComponent {
2998
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxTableActionsComponent, never>;
2999
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxTableActionsComponent, "clx-table-actions", never, {}, {}, never, ["*"], true, never>;
2978
3000
  }
2979
3001
 
2980
3002
  declare class ClxPageNotFoundComponent {
@@ -3531,7 +3553,7 @@ declare class ClxSearchComponent implements ControlValueAccessor {
3531
3553
  padDefaultL: string;
3532
3554
  padDefaultR: string;
3533
3555
  }>;
3534
- protected readonly _buttonSize: _angular_core.Signal<"xs" | "sm" | "md" | "lg">;
3556
+ protected readonly _buttonSize: _angular_core.Signal<"sm" | "md" | "lg" | "xs">;
3535
3557
  protected readonly _wrapperClass: _angular_core.Signal<string>;
3536
3558
  protected readonly _inputClass: _angular_core.Signal<string>;
3537
3559
  writeValue(val: string): void;
@@ -3663,6 +3685,7 @@ interface ClxResolvedTimelineTitleZoneStyle {
3663
3685
  interface ClxResolvedTableStyle {
3664
3686
  headerColor: ClxColorInput;
3665
3687
  headerTextColor: ClxColorInput;
3688
+ borderColor: ClxColorInput;
3666
3689
  shadow: ClxTableShadow;
3667
3690
  bordered: boolean;
3668
3691
  }
@@ -3717,6 +3740,12 @@ declare class ClxThemeService {
3717
3740
  /** Resolved text color for solid primary/secondary buttons — undefined means "let
3718
3741
  * resolveColor() auto-pick white/dark-800 based on shade", same as today. */
3719
3742
  buttonTextColor(role: 'primary' | 'secondary'): ClxColorInput | undefined;
3743
+ /** Resolved border color for ClxCardComponent (outlined/elevated variants) — falls back to
3744
+ * primaryColor when unset. Per-instance `[color]` input on clx-card still takes precedence. */
3745
+ readonly cardBorderColor: _angular_core.Signal<ClxColorInput>;
3746
+ /** Resolved divider/border color for ClxListComponent — falls back to primaryColor when unset.
3747
+ * Per-instance `[color]` input on clx-list still takes precedence. */
3748
+ readonly listBorderColor: _angular_core.Signal<ClxColorInput>;
3720
3749
  constructor();
3721
3750
  setMode(mode: ClxThemeMode): void;
3722
3751
  setConfig(patch: Partial<ClxThemeConfig>): void;
@@ -3844,5 +3873,5 @@ declare class ClxToastService {
3844
3873
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
3845
3874
  }
3846
3875
 
3847
- 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 };
3876
+ 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, ClxTableActionsComponent, 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 };
3848
3877
  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, ClxPaginationTheme, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedPaginationStyle, 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 };