codexly-ui 0.10.113 → 0.11.1

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.1",
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>;
@@ -1863,6 +1863,8 @@ interface ClxTabItem {
1863
1863
  label: string;
1864
1864
  icon?: string;
1865
1865
  disabled?: boolean;
1866
+ /** Optional count/label shown as a small pill next to the tab label — omit for no badge. */
1867
+ badge?: number | string;
1866
1868
  }
1867
1869
 
1868
1870
  declare class ClxWizardComponent implements AfterContentInit {
@@ -2035,6 +2037,38 @@ interface ClxPaginationTheme {
2035
2037
  /** Whether the pagination wrapper shows its outer border. Falls back to true. */
2036
2038
  bordered?: boolean;
2037
2039
  }
2040
+ type ClxNotificationSize = Extract<ClxSize, 'sm' | 'md' | 'lg'>;
2041
+ /** Deliberately independent from the app-wide dangerColor/successColor/warningColor: those
2042
+ * already drive buttons/alerts/toasts, and a notification's category color (e.g. "system
2043
+ * events are blue") is a different concern that shouldn't move just because someone retunes
2044
+ * a destructive-button color elsewhere. Each falls back to a sensible built-in default
2045
+ * (green/amber/sky/red) when unset. */
2046
+ interface ClxNotificationSeverityColors {
2047
+ success?: ClxColorInput;
2048
+ warning?: ClxColorInput;
2049
+ info?: ClxColorInput;
2050
+ error?: ClxColorInput;
2051
+ }
2052
+ interface ClxNotificationTheme {
2053
+ /** Per-severity icon/badge color — see ClxNotificationSeverityColors for fallbacks. */
2054
+ severityColors?: ClxNotificationSeverityColors;
2055
+ /** Unread-row accent (left rail + title dot) — falls back to primaryColor when unset. */
2056
+ unreadColor?: ClxColorInput;
2057
+ /** Row density. Falls back to 'md'. */
2058
+ size?: ClxNotificationSize;
2059
+ /** Panel wrapper border color — falls back to listBorderColor, then primaryColor, when unset. */
2060
+ borderColor?: ClxColorInput;
2061
+ /** Panel wrapper border-radius override — falls back to the app-wide borderRadius when unset. */
2062
+ radius?: ClxThemeConfig['borderRadius'];
2063
+ /** Row title weight override — falls back to 600 (700 while unread) when unset. Font family
2064
+ * always inherits the app-wide fontFamily; only weight is themeable per zone, same as every
2065
+ * other text zone in this config (pageHeaderTitle, listItemLabel, etc). */
2066
+ titleWeight?: ClxFontWeight;
2067
+ /** Row detail/body text color — falls back to the default text-clx-text-muted class when unset. */
2068
+ detailColor?: ClxColorInput;
2069
+ /** Day-group label ("Hoy", "Ayer") weight override — falls back to 700 when unset. */
2070
+ groupLabelWeight?: ClxFontWeight;
2071
+ }
2038
2072
  interface ClxThemeConfig {
2039
2073
  /** Default accent color for all components (buttons, inputs, checkboxes…) */
2040
2074
  primaryColor: ClxColorInput;
@@ -2078,6 +2112,8 @@ interface ClxThemeConfig {
2078
2112
  table?: ClxTableTheme;
2079
2113
  /** ClxPaginationComponent global style override — see ClxPaginationTheme for per-field fallbacks */
2080
2114
  pagination?: ClxPaginationTheme;
2115
+ /** ClxNotificationComponent global style override — see ClxNotificationTheme for per-field fallbacks */
2116
+ notification?: ClxNotificationTheme;
2081
2117
  /** ClxCardComponent border color (outlined/elevated variants) — falls back to primaryColor when unset */
2082
2118
  cardBorderColor?: ClxColorInput;
2083
2119
  /** ClxListComponent divider/border color — falls back to primaryColor when unset */
@@ -2411,6 +2447,88 @@ declare class ClxDrawerComponent {
2411
2447
  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
2448
  }
2413
2449
 
2450
+ /** Category a notification belongs to — drives its icon color (see ClxNotificationTheme.severityColors)
2451
+ * and lets consumers filter/group by meaning rather than by raw backend `type` strings. */
2452
+ type ClxNotificationSeverity = 'success' | 'warning' | 'info' | 'error';
2453
+ /** A single notification row — the component is "dumb": it only renders what it's given via
2454
+ * input() and emits intent (markRead/delete/click) outward. Callers own fetching, real-time
2455
+ * updates (SSE/polling) and persistence. */
2456
+ interface ClxNotificationItem {
2457
+ id: string;
2458
+ severity: ClxNotificationSeverity;
2459
+ /** Material Symbols icon name — falls back to a sensible default per severity when omitted. */
2460
+ icon?: string;
2461
+ title: string;
2462
+ detail?: string;
2463
+ read: boolean;
2464
+ /** ISO 8601 timestamp — the component derives both the day-group header ("Hoy", "Ayer", a date)
2465
+ * and the row's displayed time from this. */
2466
+ createdAt: string;
2467
+ /** Opaque payload the caller can use to navigate/act on itemClick — never read by the component. */
2468
+ actionUrl?: string;
2469
+ /** Opaque grouping key for the optional third tab (see ClxNotificationComponent's
2470
+ * categoryTab input) — e.g. "orders". The component never interprets this value, it only
2471
+ * matches it against categoryTab.id. */
2472
+ category?: string;
2473
+ }
2474
+
2475
+ interface ClxNotificationGroup {
2476
+ label: string;
2477
+ items: ClxNotificationItem[];
2478
+ }
2479
+ /** Self-contained bell trigger + floating panel — same overlay pattern as clx-profile (CDK
2480
+ * Overlay anchored to the trigger, no page-level backdrop), not a full-height clx-drawer. It's
2481
+ * "dumb" beyond that: renders whatever `items()` it's given and emits intent (itemClick/
2482
+ * markRead/delete/...) outward. Callers (e.g. a NotificationService backed by SSE) own fetching
2483
+ * and persistence — this component never calls an API itself. */
2484
+ declare class ClxNotificationComponent {
2485
+ private readonly _themeSvc;
2486
+ readonly items: _angular_core.InputSignal<ClxNotificationItem[]>;
2487
+ readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
2488
+ /** Optional third tab that filters items by ClxNotificationItem.category — e.g.
2489
+ * `{ id: 'orders', label: 'Órdenes' }`. Omit for just Todas/Sin leer. */
2490
+ readonly categoryTab: _angular_core.InputSignal<{
2491
+ id: string;
2492
+ label: string;
2493
+ } | undefined>;
2494
+ readonly itemClick: _angular_core.OutputEmitterRef<ClxNotificationItem>;
2495
+ readonly markRead: _angular_core.OutputEmitterRef<string>;
2496
+ readonly markAllRead: _angular_core.OutputEmitterRef<void>;
2497
+ readonly delete: _angular_core.OutputEmitterRef<string>;
2498
+ readonly deleteAllRead: _angular_core.OutputEmitterRef<void>;
2499
+ protected readonly _style: _angular_core.Signal<codexly_ui.ClxResolvedNotificationStyle>;
2500
+ protected readonly _color: _angular_core.Signal<ClxColorInput>;
2501
+ private readonly _sso;
2502
+ readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2503
+ readonly _positions: ConnectedPosition[];
2504
+ protected readonly _isOpen: _angular_core.WritableSignal<boolean>;
2505
+ protected readonly _filter: _angular_core.WritableSignal<string>;
2506
+ protected readonly _ringClass: _angular_core.Signal<string>;
2507
+ protected readonly _panelClass: _angular_core.Signal<string>;
2508
+ protected readonly _unreadCount: _angular_core.Signal<number>;
2509
+ protected readonly _readCount: _angular_core.Signal<number>;
2510
+ protected readonly _tabs: _angular_core.Signal<ClxTabItem[]>;
2511
+ private readonly _visibleItems;
2512
+ protected readonly _groups: _angular_core.Signal<ClxNotificationGroup[]>;
2513
+ protected readonly _groupLabelClass: _angular_core.Signal<string>;
2514
+ protected readonly _linkClass: _angular_core.Signal<string>;
2515
+ protected readonly _unreadRailClass: _angular_core.Signal<string>;
2516
+ protected readonly _unreadDotClass: _angular_core.Signal<string>;
2517
+ protected readonly _detailClass: _angular_core.Signal<string>;
2518
+ protected _titleClass(item: ClxNotificationItem): string;
2519
+ protected _iconWrapClass(item: ClxNotificationItem): string;
2520
+ protected _defaultIcon(severity: ClxNotificationItem['severity']): string;
2521
+ protected _open(item: ClxNotificationItem): void;
2522
+ protected _toggle(): void;
2523
+ protected _close(): void;
2524
+ protected _onKeydown(event: KeyboardEvent): void;
2525
+ private _severityColor;
2526
+ private _dayLabel;
2527
+ protected _timeOf(iso: string): string;
2528
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNotificationComponent, never>;
2529
+ 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; }; }, { "itemClick": "itemClick"; "markRead": "markRead"; "markAllRead": "markAllRead"; "delete": "delete"; "deleteAllRead": "deleteAllRead"; }, never, never, true, never>;
2530
+ }
2531
+
2414
2532
  declare class ClxAlertComponent implements OnInit, OnDestroy {
2415
2533
  private readonly _opts;
2416
2534
  private readonly _resolve;
@@ -2578,6 +2696,7 @@ declare class ClxTabsComponent {
2578
2696
  protected readonly _clxColor: _angular_core.Signal<ClxColorInput>;
2579
2697
  protected readonly _panels: _angular_core.Signal<readonly ClxTabDirective[]>;
2580
2698
  protected readonly _underlineClass: _angular_core.Signal<string>;
2699
+ protected _badgeClass(tabId: string): string;
2581
2700
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxTabsComponent, never>;
2582
2701
  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>;
2583
2702
  }
@@ -3700,6 +3819,16 @@ interface ClxResolvedPaginationStyle {
3700
3819
  shadow: ClxTableShadow;
3701
3820
  bordered: boolean;
3702
3821
  }
3822
+ interface ClxResolvedNotificationStyle {
3823
+ severityColors: Required<ClxNotificationSeverityColors>;
3824
+ unreadColor: ClxColorInput;
3825
+ size: ClxNotificationSize;
3826
+ borderColor: ClxColorInput;
3827
+ radius: ClxThemeConfig['borderRadius'];
3828
+ titleWeight: ClxFontWeight;
3829
+ detailColor?: ClxColorInput;
3830
+ groupLabelWeight: ClxFontWeight;
3831
+ }
3703
3832
  type ClxThemeMode = 'light' | 'dark' | 'system';
3704
3833
  declare class ClxThemeService {
3705
3834
  private readonly _isBrowser;
@@ -3742,6 +3871,11 @@ declare class ClxThemeService {
3742
3871
  /** Resolved style for ClxPaginationComponent — falls back to primaryColor / no shadow /
3743
3872
  * bordered. Per-instance `[color]` input still takes precedence over this theme-wide default. */
3744
3873
  readonly paginationStyle: _angular_core.Signal<ClxResolvedPaginationStyle>;
3874
+ /** Resolved style for ClxNotificationComponent — severity colors fall back to built-in
3875
+ * green/amber/sky/red, unreadColor to primaryColor, borderColor to listBorderColor then
3876
+ * primaryColor, radius to the app-wide borderRadius. Per-instance inputs on clx-notification
3877
+ * still take precedence over this theme-wide default. */
3878
+ readonly notificationStyle: _angular_core.Signal<ClxResolvedNotificationStyle>;
3745
3879
  /** Resolved text color for solid primary/secondary buttons — undefined means "let
3746
3880
  * resolveColor() auto-pick white/dark-800 based on shade", same as today. */
3747
3881
  buttonTextColor(role: 'primary' | 'secondary'): ClxColorInput | undefined;
@@ -3878,5 +4012,5 @@ declare class ClxToastService {
3878
4012
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
3879
4013
  }
3880
4014
 
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 };
4015
+ 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 };
4016
+ 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 };