codexly-ui 0.11.7 → 0.11.9

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.11.7",
3
+ "version": "0.11.9",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -1167,7 +1167,7 @@ declare class ClxSwitchComponent implements ControlValueAccessor {
1167
1167
  readonly track: "w-9 h-5";
1168
1168
  readonly thumb: "w-4 h-4";
1169
1169
  readonly translate: "translate-x-4";
1170
- readonly label: "text-xs";
1170
+ readonly label: "text-sm";
1171
1171
  } | {
1172
1172
  readonly track: "w-12 h-6";
1173
1173
  readonly thumb: "w-5 h-5";
@@ -2026,6 +2026,13 @@ interface ClxTableTheme {
2026
2026
  /** Whether the table wrapper shows its outer border. Falls back to true. */
2027
2027
  bordered?: boolean;
2028
2028
  }
2029
+ interface ClxTabsTheme {
2030
+ /** Active tab's text/icon/badge color — falls back to primaryColor when unset. */
2031
+ activeTextColor?: ClxColorInput;
2032
+ /** Active tab's bottom underline color — independent of activeTextColor, falls back to
2033
+ * primaryColor when unset. */
2034
+ underlineColor?: ClxColorInput;
2035
+ }
2029
2036
  interface ClxPaginationTheme {
2030
2037
  /** Page-number buttons + the "items per page" select accent color — falls back to
2031
2038
  * primaryColor when unset. */
@@ -2054,8 +2061,14 @@ interface ClxNotificationTheme {
2054
2061
  severityColors?: ClxNotificationSeverityColors;
2055
2062
  /** Unread-row accent (left rail + title dot) — falls back to primaryColor when unset. */
2056
2063
  unreadColor?: ClxColorInput;
2064
+ /** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent — falls back to
2065
+ * primaryColor when unset. Independent from the bell button's own color. */
2066
+ tabsColor?: ClxColorInput;
2057
2067
  /** Row density. Falls back to 'md'. */
2058
2068
  size?: ClxNotificationSize;
2069
+ /** Whether the panel wrapper shows its outer border at all — falls back to true. Same field
2070
+ * name/semantics as ClxCardTheme's border, ClxTableTheme.bordered, etc. */
2071
+ border?: boolean;
2059
2072
  /** Panel wrapper border color — falls back to listBorderColor, then primaryColor, when unset. */
2060
2073
  borderColor?: ClxColorInput;
2061
2074
  /** Panel wrapper border-radius override — falls back to the app-wide borderRadius when unset. */
@@ -2110,6 +2123,8 @@ interface ClxThemeConfig {
2110
2123
  formControls?: ClxFormControlsTheme;
2111
2124
  /** ClxTableComponent global style override — see ClxTableTheme for per-field fallbacks */
2112
2125
  table?: ClxTableTheme;
2126
+ /** ClxTabsComponent global style override — see ClxTabsTheme for per-field fallbacks */
2127
+ tabs?: ClxTabsTheme;
2113
2128
  /** ClxPaginationComponent global style override — see ClxPaginationTheme for per-field fallbacks */
2114
2129
  pagination?: ClxPaginationTheme;
2115
2130
  /** ClxNotificationComponent global style override — see ClxNotificationTheme for per-field fallbacks */
@@ -2484,28 +2499,38 @@ interface ClxNotificationGroup {
2484
2499
  declare class ClxNotificationComponent {
2485
2500
  private readonly _themeSvc;
2486
2501
  readonly items: _angular_core.InputSignal<ClxNotificationItem[]>;
2487
- readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
2488
2502
  /** Optional third tab that filters items by ClxNotificationItem.category — e.g.
2489
2503
  * `{ id: 'orders', label: 'Órdenes' }`. Omit for just Todas/Sin leer. */
2490
2504
  readonly categoryTab: _angular_core.InputSignal<{
2491
2505
  id: string;
2492
2506
  label: string;
2493
2507
  } | undefined>;
2494
- readonly triggerVariant: _angular_core.InputSignal<ClxButtonVariant>;
2495
- readonly triggerSize: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
2496
- readonly triggerIcon: _angular_core.InputSignal<string>;
2508
+ readonly buttonColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2509
+ readonly buttonVariant: _angular_core.InputSignal<ClxButtonVariant>;
2510
+ readonly buttonSize: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
2511
+ readonly buttonIcon: _angular_core.InputSignal<string>;
2497
2512
  /** Unread-count badge color — falls back to the theme's notification.unreadColor (then
2498
- * primaryColor) when unset, same precedence as every other per-instance override in this
2499
- * library (instance input > theme block > primaryColor). */
2513
+ * primaryColor) when unset. */
2500
2514
  readonly badgeColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2515
+ /** clx-tabs (Todas/Sin leer/...) + "Marcar todo leído" link accent — falls back to the theme's
2516
+ * notification.tabsColor (then primaryColor) when unset. */
2517
+ readonly tabsColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2518
+ /** Whether the floating panel shows its outer border — falls back to the theme's
2519
+ * notification.border (then true) when unset. */
2520
+ readonly border: _angular_core.InputSignal<boolean | undefined>;
2521
+ /** Panel wrapper border color — falls back to the theme's notification.borderColor when unset. */
2522
+ readonly borderColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2501
2523
  readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
2502
2524
  readonly markRead: _angular_core.OutputEmitterRef<string>;
2503
2525
  readonly markAllRead: _angular_core.OutputEmitterRef<void>;
2504
2526
  readonly delete: _angular_core.OutputEmitterRef<string>;
2505
2527
  readonly deleteAllRead: _angular_core.OutputEmitterRef<void>;
2506
2528
  protected readonly _style: _angular_core.Signal<codexly_ui.ClxResolvedNotificationStyle>;
2507
- protected readonly _color: _angular_core.Signal<ClxColorInput>;
2529
+ protected readonly _buttonColor: _angular_core.Signal<ClxColorInput>;
2508
2530
  protected readonly _badgeColor: _angular_core.Signal<ClxColorInput>;
2531
+ protected readonly _tabsColor: _angular_core.Signal<ClxColorInput>;
2532
+ protected readonly _border: _angular_core.Signal<boolean>;
2533
+ protected readonly _borderColor: _angular_core.Signal<ClxColorInput>;
2509
2534
  private readonly _sso;
2510
2535
  readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2511
2536
  readonly _positions: ConnectedPosition[];
@@ -2518,7 +2543,6 @@ declare class ClxNotificationComponent {
2518
2543
  private readonly _visibleItems;
2519
2544
  protected readonly _groups: _angular_core.Signal<ClxNotificationGroup[]>;
2520
2545
  protected readonly _groupLabelClass: _angular_core.Signal<string>;
2521
- protected readonly _linkClass: _angular_core.Signal<string>;
2522
2546
  protected readonly _unreadRailClass: _angular_core.Signal<string>;
2523
2547
  protected readonly _unreadDotClass: _angular_core.Signal<string>;
2524
2548
  protected readonly _detailClass: _angular_core.Signal<string>;
@@ -2533,7 +2557,7 @@ declare class ClxNotificationComponent {
2533
2557
  private _dayLabel;
2534
2558
  protected _timeOf(iso: string): string;
2535
2559
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
2536
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "triggerVariant": { "alias": "triggerVariant"; "required": false; "isSignal": true; }; "triggerSize": { "alias": "triggerSize"; "required": false; "isSignal": true; }; "triggerIcon": { "alias": "triggerIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2560
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "categoryTab": { "alias": "categoryTab"; "required": false; "isSignal": true; }; "buttonColor": { "alias": "buttonColor"; "required": false; "isSignal": true; }; "buttonVariant": { "alias": "buttonVariant"; "required": false; "isSignal": true; }; "buttonSize": { "alias": "buttonSize"; "required": false; "isSignal": true; }; "buttonIcon": { "alias": "buttonIcon"; "required": false; "isSignal": true; }; "badgeColor": { "alias": "badgeColor"; "required": false; "isSignal": true; }; "tabsColor": { "alias": "tabsColor"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2537
2561
  }
2538
2562
 
2539
2563
  declare class ClxAlertComponent implements OnInit, OnDestroy {
@@ -2698,14 +2722,24 @@ declare class ClxTabDirective {
2698
2722
  declare class ClxTabsComponent {
2699
2723
  private readonly _themeSvc;
2700
2724
  readonly tabs: _angular_core.InputSignal<ClxTabItem[]>;
2725
+ /** Legacy single-color override — still the shared fallback for both activeTextColor and
2726
+ * underlineColor when neither of those is set, so existing callers keep working unchanged. */
2701
2727
  readonly clxColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2728
+ /** Active tab's text/icon/badge color — falls back to clxColor, then the theme's
2729
+ * tabs.activeTextColor (then primaryColor), when unset. */
2730
+ readonly activeTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2731
+ /** Active tab's bottom underline color — independent of activeTextColor, falls back to
2732
+ * clxColor, then the theme's tabs.underlineColor (then primaryColor), when unset. */
2733
+ readonly underlineColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2702
2734
  readonly activeTab: _angular_core.ModelSignal<string>;
2703
- protected readonly _clxColor: _angular_core.Signal<ClxColorInput>;
2735
+ private readonly _style;
2736
+ protected readonly _activeTextColor: _angular_core.Signal<ClxColorInput>;
2737
+ protected readonly _underlineColorResolved: _angular_core.Signal<ClxColorInput>;
2704
2738
  protected readonly _panels: _angular_core.Signal<readonly ClxTabDirective[]>;
2705
2739
  protected readonly _underlineClass: _angular_core.Signal<string>;
2706
2740
  protected _badgeClass(tabId: string): string;
2707
2741
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxTabsComponent, never>;
2708
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxTabsComponent, "clx-tabs", never, { "tabs": { "alias": "tabs"; "required": true; "isSignal": true; }; "clxColor": { "alias": "clxColor"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; }, ["_panels"], never, true, never>;
2742
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxTabsComponent, "clx-tabs", never, { "tabs": { "alias": "tabs"; "required": true; "isSignal": true; }; "clxColor": { "alias": "clxColor"; "required": false; "isSignal": true; }; "activeTextColor": { "alias": "activeTextColor"; "required": false; "isSignal": true; }; "underlineColor": { "alias": "underlineColor"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; }, ["_panels"], never, true, never>;
2709
2743
  }
2710
2744
 
2711
2745
  type ClxTreeSize = 'sm' | 'md' | 'lg';
@@ -3826,10 +3860,16 @@ interface ClxResolvedPaginationStyle {
3826
3860
  shadow: ClxTableShadow;
3827
3861
  bordered: boolean;
3828
3862
  }
3863
+ interface ClxResolvedTabsStyle {
3864
+ activeTextColor: ClxColorInput;
3865
+ underlineColor: ClxColorInput;
3866
+ }
3829
3867
  interface ClxResolvedNotificationStyle {
3830
3868
  severityColors: Required<ClxNotificationSeverityColors>;
3831
3869
  unreadColor: ClxColorInput;
3870
+ tabsColor: ClxColorInput;
3832
3871
  size: ClxNotificationSize;
3872
+ border: boolean;
3833
3873
  borderColor: ClxColorInput;
3834
3874
  radius: ClxThemeConfig['borderRadius'];
3835
3875
  titleWeight: ClxFontWeight;
@@ -3878,6 +3918,10 @@ declare class ClxThemeService {
3878
3918
  /** Resolved style for ClxPaginationComponent — falls back to primaryColor / no shadow /
3879
3919
  * bordered. Per-instance `[color]` input still takes precedence over this theme-wide default. */
3880
3920
  readonly paginationStyle: _angular_core.Signal<ClxResolvedPaginationStyle>;
3921
+ /** Resolved style for ClxTabsComponent — activeTextColor and underlineColor each fall back to
3922
+ * primaryColor independently when unset. Per-instance inputs on clx-tabs still take
3923
+ * precedence over this theme-wide default. */
3924
+ readonly tabsStyle: _angular_core.Signal<ClxResolvedTabsStyle>;
3881
3925
  /** Resolved style for ClxNotificationComponent — severity colors fall back to built-in
3882
3926
  * green/amber/sky/red, unreadColor to primaryColor, borderColor to listBorderColor then
3883
3927
  * primaryColor, radius to the app-wide borderRadius. Per-instance inputs on clx-notification
@@ -4020,4 +4064,4 @@ declare class ClxToastService {
4020
4064
  }
4021
4065
 
4022
4066
  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, ClxNotificationComponent, 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 };
4023
- 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, ClxNotificationItem, ClxNotificationSeverity, ClxNotificationSeverityColors, ClxNotificationSize, ClxNotificationTheme, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxPaginationTheme, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedNotificationStyle, 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 };
4067
+ 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, ClxNotificationItem, ClxNotificationSeverity, ClxNotificationSeverityColors, ClxNotificationSize, ClxNotificationTheme, ClxNumberSize, ClxNumberVariant, ClxOtpSize, ClxPageChangeEvent, ClxPageHeaderTextSize, ClxPageHeaderZoneStyle, ClxPageSizeChangeEvent, ClxPaginationSize, ClxPaginationTheme, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductQuickViewData, ClxProductQuickViewResult, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedCardTitleZoneStyle, ClxResolvedListItemLabelZoneStyle, ClxResolvedNavZoneStyle, ClxResolvedNotificationStyle, ClxResolvedPageHeaderZoneStyle, ClxResolvedPaginationStyle, ClxResolvedTableStyle, ClxResolvedTabsStyle, 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, ClxTabsTheme, 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 };