codexly-ui 0.10.113 → 0.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.10.113",
3
+ "version": "0.11.0",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -1755,7 +1755,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
1755
1755
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
1756
1756
  readonly size: _angular_core.InputSignal<ClxEditorSize | undefined>;
1757
1757
  protected readonly _editorSize: _angular_core.Signal<ClxEditorSize>;
1758
- readonly status: _angular_core.InputSignal<"error" | "default" | "success">;
1758
+ readonly status: _angular_core.InputSignal<"success" | "error" | "default">;
1759
1759
  readonly statusMessage: _angular_core.InputSignal<string>;
1760
1760
  readonly hint: _angular_core.InputSignal<string>;
1761
1761
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -2035,6 +2035,38 @@ interface ClxPaginationTheme {
2035
2035
  /** Whether the pagination wrapper shows its outer border. Falls back to true. */
2036
2036
  bordered?: boolean;
2037
2037
  }
2038
+ type ClxNotificationSize = Extract<ClxSize, 'sm' | 'md' | 'lg'>;
2039
+ /** Deliberately independent from the app-wide dangerColor/successColor/warningColor: those
2040
+ * already drive buttons/alerts/toasts, and a notification's category color (e.g. "system
2041
+ * events are blue") is a different concern that shouldn't move just because someone retunes
2042
+ * a destructive-button color elsewhere. Each falls back to a sensible built-in default
2043
+ * (green/amber/sky/red) when unset. */
2044
+ interface ClxNotificationSeverityColors {
2045
+ success?: ClxColorInput;
2046
+ warning?: ClxColorInput;
2047
+ info?: ClxColorInput;
2048
+ error?: ClxColorInput;
2049
+ }
2050
+ interface ClxNotificationTheme {
2051
+ /** Per-severity icon/badge color — see ClxNotificationSeverityColors for fallbacks. */
2052
+ severityColors?: ClxNotificationSeverityColors;
2053
+ /** Unread-row accent (left rail + title dot) — falls back to primaryColor when unset. */
2054
+ unreadColor?: ClxColorInput;
2055
+ /** Row density. Falls back to 'md'. */
2056
+ size?: ClxNotificationSize;
2057
+ /** Panel wrapper border color — falls back to listBorderColor, then primaryColor, when unset. */
2058
+ borderColor?: ClxColorInput;
2059
+ /** Panel wrapper border-radius override — falls back to the app-wide borderRadius when unset. */
2060
+ radius?: ClxThemeConfig['borderRadius'];
2061
+ /** Row title weight override — falls back to 600 (700 while unread) when unset. Font family
2062
+ * always inherits the app-wide fontFamily; only weight is themeable per zone, same as every
2063
+ * other text zone in this config (pageHeaderTitle, listItemLabel, etc). */
2064
+ titleWeight?: ClxFontWeight;
2065
+ /** Row detail/body text color — falls back to the default text-clx-text-muted class when unset. */
2066
+ detailColor?: ClxColorInput;
2067
+ /** Day-group label ("Hoy", "Ayer") weight override — falls back to 700 when unset. */
2068
+ groupLabelWeight?: ClxFontWeight;
2069
+ }
2038
2070
  interface ClxThemeConfig {
2039
2071
  /** Default accent color for all components (buttons, inputs, checkboxes…) */
2040
2072
  primaryColor: ClxColorInput;
@@ -2078,6 +2110,8 @@ interface ClxThemeConfig {
2078
2110
  table?: ClxTableTheme;
2079
2111
  /** ClxPaginationComponent global style override — see ClxPaginationTheme for per-field fallbacks */
2080
2112
  pagination?: ClxPaginationTheme;
2113
+ /** ClxNotificationComponent global style override — see ClxNotificationTheme for per-field fallbacks */
2114
+ notification?: ClxNotificationTheme;
2081
2115
  /** ClxCardComponent border color (outlined/elevated variants) — falls back to primaryColor when unset */
2082
2116
  cardBorderColor?: ClxColorInput;
2083
2117
  /** ClxListComponent divider/border color — falls back to primaryColor when unset */
@@ -2411,6 +2445,80 @@ declare class ClxDrawerComponent {
2411
2445
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxDrawerComponent, "clx-drawer", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "confirmButton": { "alias": "confirmButton"; "required": false; "isSignal": true; }; "cancelButton": { "alias": "cancelButton"; "required": false; "isSignal": true; }; "showCancelButton": { "alias": "showCancelButton"; "required": false; "isSignal": true; }; }, { "confirmClick": "confirmClick"; "cancelClick": "cancelClick"; }, never, ["[clx-drawer-title]", "*", "[clx-drawer-footer]"], true, never>;
2412
2446
  }
2413
2447
 
2448
+ /** Category a notification belongs to — drives its icon color (see ClxNotificationTheme.severityColors)
2449
+ * and lets consumers filter/group by meaning rather than by raw backend `type` strings. */
2450
+ type ClxNotificationSeverity = 'success' | 'warning' | 'info' | 'error';
2451
+ /** A single notification row — the component is "dumb": it only renders what it's given via
2452
+ * input() and emits intent (markRead/delete/click) outward. Callers own fetching, real-time
2453
+ * updates (SSE/polling) and persistence. */
2454
+ interface ClxNotificationItem {
2455
+ id: string;
2456
+ severity: ClxNotificationSeverity;
2457
+ /** Material Symbols icon name — falls back to a sensible default per severity when omitted. */
2458
+ icon?: string;
2459
+ title: string;
2460
+ detail?: string;
2461
+ read: boolean;
2462
+ /** ISO 8601 timestamp — the component derives both the day-group header ("Hoy", "Ayer", a date)
2463
+ * and the row's displayed time from this. */
2464
+ createdAt: string;
2465
+ /** Opaque payload the caller can use to navigate/act on itemClick — never read by the component. */
2466
+ actionUrl?: string;
2467
+ }
2468
+
2469
+ interface ClxNotificationGroup {
2470
+ label: string;
2471
+ items: ClxNotificationItem[];
2472
+ }
2473
+ /** "Dumb" panel: renders whatever list of items it's given via `items()` and emits intent
2474
+ * (itemClick/markRead/markAllRead/delete/deleteAllRead) outward — it never fetches, persists,
2475
+ * or connects to a real-time source itself. Callers (e.g. codexly-app's NotificationService,
2476
+ * backed by SSE) own that and just feed the current list in. Meant to be projected inside
2477
+ * clx-drawer's body, same as any other content. */
2478
+ declare class ClxNotificationComponent {
2479
+ private readonly _themeSvc;
2480
+ readonly items: _angular_core.InputSignal<ClxNotificationItem[]>;
2481
+ readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
2482
+ readonly size: _angular_core.InputSignal<ClxNotificationSize | undefined>;
2483
+ readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
2484
+ readonly markRead: _angular_core.OutputEmitterRef<string>;
2485
+ readonly markAllRead: _angular_core.OutputEmitterRef<void>;
2486
+ readonly delete: _angular_core.OutputEmitterRef<string>;
2487
+ readonly deleteAllRead: _angular_core.OutputEmitterRef<void>;
2488
+ protected readonly _filter: _angular_core.WritableSignal<"all" | "unread">;
2489
+ private readonly _style;
2490
+ protected readonly _color: _angular_core.Signal<ClxColorInput>;
2491
+ protected readonly _resolvedSize: _angular_core.Signal<ClxNotificationSize>;
2492
+ protected readonly _sizeTokens: _angular_core.Signal<{
2493
+ row: string;
2494
+ iconWrap: string;
2495
+ iconSize: codexly_ui.ClxSize;
2496
+ title: string;
2497
+ detail: string;
2498
+ time: string;
2499
+ }>;
2500
+ protected readonly _unreadCount: _angular_core.Signal<number>;
2501
+ protected readonly _readCount: _angular_core.Signal<number>;
2502
+ private readonly _visibleItems;
2503
+ protected readonly _groups: _angular_core.Signal<ClxNotificationGroup[]>;
2504
+ protected readonly _wrapClass: _angular_core.Signal<string>;
2505
+ protected readonly _groupLabelClass: _angular_core.Signal<string>;
2506
+ protected readonly _linkClass: _angular_core.Signal<string>;
2507
+ protected readonly _unreadRailClass: _angular_core.Signal<string>;
2508
+ protected readonly _unreadDotClass: _angular_core.Signal<string>;
2509
+ protected readonly _detailClass: _angular_core.Signal<string>;
2510
+ protected _titleClass(item: ClxNotificationItem): string;
2511
+ protected _iconWrapClass(item: ClxNotificationItem): string;
2512
+ protected _defaultIcon(severity: ClxNotificationItem['severity']): string;
2513
+ protected _open(item: ClxNotificationItem): void;
2514
+ protected _countBadgeClass(tab: 'all' | 'unread'): string;
2515
+ private _severityColor;
2516
+ private _dayLabel;
2517
+ protected _timeOf(iso: string): string;
2518
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
2519
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNotificationComponent, "clx-notification", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2520
+ }
2521
+
2414
2522
  declare class ClxAlertComponent implements OnInit, OnDestroy {
2415
2523
  private readonly _opts;
2416
2524
  private readonly _resolve;
@@ -3700,6 +3808,16 @@ interface ClxResolvedPaginationStyle {
3700
3808
  shadow: ClxTableShadow;
3701
3809
  bordered: boolean;
3702
3810
  }
3811
+ interface ClxResolvedNotificationStyle {
3812
+ severityColors: Required<ClxNotificationSeverityColors>;
3813
+ unreadColor: ClxColorInput;
3814
+ size: ClxNotificationSize;
3815
+ borderColor: ClxColorInput;
3816
+ radius: ClxThemeConfig['borderRadius'];
3817
+ titleWeight: ClxFontWeight;
3818
+ detailColor?: ClxColorInput;
3819
+ groupLabelWeight: ClxFontWeight;
3820
+ }
3703
3821
  type ClxThemeMode = 'light' | 'dark' | 'system';
3704
3822
  declare class ClxThemeService {
3705
3823
  private readonly _isBrowser;
@@ -3742,6 +3860,11 @@ declare class ClxThemeService {
3742
3860
  /** Resolved style for ClxPaginationComponent — falls back to primaryColor / no shadow /
3743
3861
  * bordered. Per-instance `[color]` input still takes precedence over this theme-wide default. */
3744
3862
  readonly paginationStyle: _angular_core.Signal<ClxResolvedPaginationStyle>;
3863
+ /** Resolved style for ClxNotificationComponent — severity colors fall back to built-in
3864
+ * green/amber/sky/red, unreadColor to primaryColor, borderColor to listBorderColor then
3865
+ * primaryColor, radius to the app-wide borderRadius. Per-instance inputs on clx-notification
3866
+ * still take precedence over this theme-wide default. */
3867
+ readonly notificationStyle: _angular_core.Signal<ClxResolvedNotificationStyle>;
3745
3868
  /** Resolved text color for solid primary/secondary buttons — undefined means "let
3746
3869
  * resolveColor() auto-pick white/dark-800 based on shade", same as today. */
3747
3870
  buttonTextColor(role: 'primary' | 'secondary'): ClxColorInput | undefined;
@@ -3878,5 +4001,5 @@ declare class ClxToastService {
3878
4001
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
3879
4002
  }
3880
4003
 
3881
- 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 };
3882
- 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 };
4004
+ 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 };
4005
+ 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 };