codexly-ui 0.1.22 → 0.1.23

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.1.22",
3
+ "version": "0.1.23",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0",
@@ -116,7 +116,7 @@ declare class ClxStatCardComponent {
116
116
  protected readonly _gradId: _angular_core.Signal<string>;
117
117
  protected readonly _trendColor: _angular_core.Signal<"red" | "green" | "slate">;
118
118
  protected readonly _trendArrowIcon: _angular_core.Signal<"arrow_upward" | "arrow_downward" | "remove">;
119
- protected readonly _trendTextClass: _angular_core.Signal<"text-red-500" | "text-green-500" | "text-slate-400">;
119
+ protected readonly _trendTextClass: _angular_core.Signal<"text-green-500" | "text-red-500" | "text-slate-400">;
120
120
  protected readonly _trendIcon: _angular_core.Signal<"remove" | "arrow_outward" | "south_east">;
121
121
  protected readonly _formattedValue: _angular_core.Signal<string>;
122
122
  protected readonly _points: _angular_core.Signal<SparkPoint[]>;
@@ -474,20 +474,22 @@ declare class ClxAlertComponent implements OnInit, OnDestroy {
474
474
  private readonly _resolve;
475
475
  private readonly _animate;
476
476
  private readonly _el;
477
+ private readonly _themeSvc;
477
478
  private readonly _zone;
478
479
  constructor();
479
480
  private get _type();
481
+ private get _isConfirm();
480
482
  protected readonly _icon: _angular_core.WritableSignal<string>;
481
- protected readonly _iconBg: _angular_core.WritableSignal<string>;
482
- protected readonly _iconColor: _angular_core.WritableSignal<string>;
483
- protected readonly _progressColor: _angular_core.WritableSignal<string>;
484
483
  protected readonly _title: _angular_core.WritableSignal<string>;
485
484
  protected readonly _message: _angular_core.WritableSignal<string>;
486
485
  protected readonly _showCancel: _angular_core.WritableSignal<boolean>;
486
+ protected readonly _iconBg: _angular_core.Signal<string>;
487
+ protected readonly _iconColor: _angular_core.Signal<string>;
488
+ protected readonly _progressColor: _angular_core.Signal<string>;
487
489
  protected readonly _confirmText: _angular_core.WritableSignal<string>;
488
- protected readonly _confirmColor: _angular_core.WritableSignal<codexly_ui.ClxColorInput>;
490
+ protected readonly _confirmColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
489
491
  protected readonly _cancelText: _angular_core.WritableSignal<string>;
490
- protected readonly _cancelColor: _angular_core.WritableSignal<codexly_ui.ClxColorInput>;
492
+ protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
491
493
  protected readonly _cancelVariant: _angular_core.WritableSignal<ClxButtonVariant>;
492
494
  protected readonly _timerTotal: _angular_core.WritableSignal<number>;
493
495
  protected readonly _progressPct: _angular_core.WritableSignal<number>;
@@ -679,6 +681,8 @@ interface ClxSelectOption {
679
681
  value: string | number;
680
682
  label: string;
681
683
  disabled?: boolean;
684
+ /** Renders the option label using this font family, for font-picker selects */
685
+ previewFontFamily?: string;
682
686
  }
683
687
 
684
688
  type PageItem = {
@@ -886,7 +890,7 @@ declare class ClxAvatarComponent {
886
890
  protected readonly _contentType: _angular_core.Signal<ClxAvatarContentType>;
887
891
  protected readonly _initials: _angular_core.Signal<string>;
888
892
  protected readonly _iconSize: _angular_core.Signal<ClxSize>;
889
- protected readonly _shapeClass: _angular_core.Signal<"rounded-xl" | "rounded-full">;
893
+ protected readonly _shapeClass: _angular_core.Signal<"rounded-full" | "rounded-xl">;
890
894
  protected readonly _colorClass: _angular_core.Signal<string>;
891
895
  protected readonly _textClass: _angular_core.Signal<string>;
892
896
  protected readonly _hostClass: _angular_core.Signal<string>;
@@ -999,11 +1003,11 @@ declare class ClxBadgeComponent {
999
1003
  private readonly _themeSvc;
1000
1004
  readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
1001
1005
  readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
1002
- readonly size: _angular_core.InputSignal<"sm" | "md" | "xs" | undefined>;
1006
+ readonly size: _angular_core.InputSignal<"xs" | "sm" | "md" | undefined>;
1003
1007
  readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
1004
1008
  readonly positioned: _angular_core.InputSignal<boolean>;
1005
1009
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
1006
- protected readonly _size: _angular_core.Signal<"sm" | "md" | "xs">;
1010
+ protected readonly _size: _angular_core.Signal<"xs" | "sm" | "md">;
1007
1011
  protected readonly _shape: _angular_core.Signal<ClxShape>;
1008
1012
  protected readonly _hostClass: _angular_core.Signal<string>;
1009
1013
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
@@ -1014,10 +1018,10 @@ declare class ClxButtonComponent {
1014
1018
  private readonly _themeSvc;
1015
1019
  readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
1016
1020
  readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
1017
- readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
1021
+ readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg" | undefined>;
1018
1022
  readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
1019
1023
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
1020
- protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
1024
+ protected readonly _size: _angular_core.Signal<"xxs" | "xs" | "sm" | "md" | "lg">;
1021
1025
  protected readonly _shape: _angular_core.Signal<ClxShape>;
1022
1026
  readonly loading: _angular_core.InputSignal<boolean>;
1023
1027
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -1654,7 +1658,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
1654
1658
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
1655
1659
  readonly size: _angular_core.InputSignal<ClxEditorSize | undefined>;
1656
1660
  protected readonly _editorSize: _angular_core.Signal<ClxEditorSize>;
1657
- readonly status: _angular_core.InputSignal<"default" | "error" | "success">;
1661
+ readonly status: _angular_core.InputSignal<"error" | "default" | "success">;
1658
1662
  readonly statusMessage: _angular_core.InputSignal<string>;
1659
1663
  readonly hint: _angular_core.InputSignal<string>;
1660
1664
  readonly disabled: _angular_core.InputSignal<boolean>;
@@ -1962,6 +1966,8 @@ declare class ClxSelectComponent implements ControlValueAccessor {
1962
1966
  protected readonly _activeColor: Signal<ClxColorInput>;
1963
1967
  private readonly _el;
1964
1968
  private readonly _sso;
1969
+ private readonly _isBrowser;
1970
+ private readonly _loadedFonts;
1965
1971
  readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
1966
1972
  constructor();
1967
1973
  private _onChange;
@@ -1985,6 +1991,7 @@ declare class ClxSelectComponent implements ControlValueAccessor {
1985
1991
  protected readonly _filteredOptions: Signal<ClxSelectOption[]>;
1986
1992
  protected readonly _showAsyncPlaceholder: Signal<boolean>;
1987
1993
  protected readonly _displayValue: Signal<string>;
1994
+ protected readonly _displayFontFamily: Signal<string | null>;
1988
1995
  protected readonly _overlayWidth: Signal<number>;
1989
1996
  protected readonly _labelClass: Signal<string>;
1990
1997
  protected readonly _hintClass: Signal<string>;
@@ -1998,6 +2005,7 @@ declare class ClxSelectComponent implements ControlValueAccessor {
1998
2005
  protected _optionClass(opt: ClxSelectOption): string;
1999
2006
  protected _togglePanel(): void;
2000
2007
  private _openPanel;
2008
+ private _loadPreviewFont;
2001
2009
  protected _closePanel(): void;
2002
2010
  protected _selectOption(opt: ClxSelectOption): void;
2003
2011
  protected _deselect(value: string | number): void;
@@ -2361,9 +2369,7 @@ declare class ClxMenuItemComponent {
2361
2369
  exact: boolean;
2362
2370
  }>;
2363
2371
  readonly itemClick: _angular_core.OutputEmitterRef<void>;
2364
- private readonly _inheritedColor;
2365
2372
  private readonly _resolvedColor;
2366
- inheritColor(c: ClxColorInput): void;
2367
2373
  private readonly _geom;
2368
2374
  protected readonly _iconCls: _angular_core.Signal<string>;
2369
2375
  protected readonly _idleCls: _angular_core.Signal<string>;
@@ -2372,7 +2378,7 @@ declare class ClxMenuItemComponent {
2372
2378
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuItemComponent, "clx-menu-item", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "nested": { "alias": "nested"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
2373
2379
  }
2374
2380
 
2375
- declare class ClxMenuComponent implements AfterContentInit, AfterViewInit {
2381
+ declare class ClxMenuComponent implements AfterViewInit {
2376
2382
  private readonly _themeSvc;
2377
2383
  readonly label: _angular_core.InputSignal<string>;
2378
2384
  readonly icon: _angular_core.InputSignal<string>;
@@ -2386,7 +2392,6 @@ declare class ClxMenuComponent implements AfterContentInit, AfterViewInit {
2386
2392
  }>;
2387
2393
  readonly _isExpanded: _angular_core.WritableSignal<boolean>;
2388
2394
  private readonly _rla?;
2389
- private readonly _childItems;
2390
2395
  private readonly _destroyRef;
2391
2396
  constructor();
2392
2397
  ngAfterViewInit(): void;
@@ -2395,18 +2400,18 @@ declare class ClxMenuComponent implements AfterContentInit, AfterViewInit {
2395
2400
  protected readonly NAV_CHILDREN_WRAPPER = "grid transition-all duration-300 ease-in-out";
2396
2401
  protected readonly NAV_CHILDREN_INNER = "overflow-hidden";
2397
2402
  protected readonly NAV_CHILDREN_LIST = "ml-6 py-1 space-y-0.5";
2398
- ngAfterContentInit(): void;
2399
- private _syncChildren;
2400
2403
  protected _toggle(): void;
2401
2404
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxMenuComponent, never>;
2402
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, {}, ["_childItems"], ["*"], true, never>;
2405
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2403
2406
  }
2404
2407
 
2405
2408
  declare class ClxNavGroupComponent {
2406
2409
  readonly label: _angular_core.InputSignal<string>;
2407
2410
  readonly collapsed: _angular_core.InputSignal<boolean>;
2411
+ readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
2412
+ readonly labelClass: _angular_core.Signal<string>;
2408
2413
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNavGroupComponent, never>;
2409
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2414
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2410
2415
  }
2411
2416
 
2412
2417
  interface ClxProfileMenuItem {
@@ -2682,9 +2687,18 @@ declare class ClxCartSummaryDrawer {
2682
2687
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCartSummaryDrawer, "clx-cart-summary-drawer", never, {}, {}, never, never, true, never>;
2683
2688
  }
2684
2689
 
2690
+ type ClxFontFamily = 'Roboto' | 'Inter' | 'Poppins' | 'Plus Jakarta Sans' | 'Nunito' | 'DM Sans' | 'Geist' | 'Lato' | 'Montserrat' | 'Open Sans' | 'Work Sans' | 'Manrope' | 'Sora' | 'Outfit' | 'Rubik' | 'Source Sans 3' | 'Space Grotesk' | 'Merriweather' | 'Playfair Display' | 'Lora' | 'PT Serif' | 'Caveat' | 'Dancing Script' | 'Cinzel' | 'Berkshire Swash' | 'JetBrains Mono' | 'Orbitron' | 'UnifrakturMaguntia' | 'Pirata One' | 'Press Start 2P' | 'Bungee';
2691
+ interface ClxFontOption {
2692
+ label: string;
2693
+ value: ClxFontFamily;
2694
+ googleUrl: string;
2695
+ }
2696
+ declare const CLX_FONT_CATALOG: ClxFontOption[];
2685
2697
  interface ClxThemeConfig {
2686
2698
  /** Default accent color for all components (buttons, inputs, checkboxes…) */
2687
2699
  primaryColor: ClxColorInput;
2700
+ /** Color used for secondary actions (cancel, close buttons) */
2701
+ secondaryColor: ClxColorInput;
2688
2702
  /** Color used for destructive actions and error states */
2689
2703
  dangerColor: ClxColorInput;
2690
2704
  /** Color used for success confirmations */
@@ -2693,12 +2707,22 @@ interface ClxThemeConfig {
2693
2707
  warningColor: ClxColorInput;
2694
2708
  /** Neutral color for surfaces, nav idle states */
2695
2709
  neutralColor: ClxColorInput;
2710
+ /** Base text color applied across the app */
2711
+ textColor: ClxColorInput;
2712
+ /** Sidebar nav-group label color override — falls back to neutralColor when unset */
2713
+ sidebarGroupColor?: ClxColorInput;
2714
+ /** Sidebar top-level menu color override — falls back to primaryColor when unset */
2715
+ sidebarMenuColor?: ClxColorInput;
2716
+ /** Sidebar menu-item color override — falls back to primaryColor when unset */
2717
+ sidebarItemColor?: ClxColorInput;
2696
2718
  /** Default border-radius style applied to all components */
2697
2719
  borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
2698
2720
  /** Default size for all form/interactive components */
2699
2721
  defaultSize: Extract<ClxSize, 'sm' | 'md' | 'lg'>;
2700
2722
  /** Default shape for buttons, badges, tags */
2701
2723
  defaultShape: Extract<ClxShape, 'rounded' | 'pill'>;
2724
+ /** Body font family — must be one of CLX_FONT_CATALOG values */
2725
+ fontFamily: ClxFontFamily;
2702
2726
  }
2703
2727
  declare const CLX_RADIUS_MAP: Record<ClxThemeConfig['borderRadius'], string>;
2704
2728
  /** Returns the Tailwind class for a form-control radius */
@@ -2888,10 +2912,19 @@ declare class ClxThemeService {
2888
2912
  readonly mode: _angular_core.Signal<ClxThemeMode>;
2889
2913
  readonly config: _angular_core.Signal<ClxThemeConfig>;
2890
2914
  readonly isDark: _angular_core.Signal<boolean>;
2915
+ /** Color to apply to clx-nav-group labels — falls back to neutralColor */
2916
+ readonly sidebarGroupColor: _angular_core.Signal<ClxColorInput>;
2917
+ /** Color to apply to top-level clx-menu — falls back to primaryColor */
2918
+ readonly sidebarMenuColor: _angular_core.Signal<ClxColorInput>;
2919
+ /** Color to apply to clx-menu-item — falls back to primaryColor */
2920
+ readonly sidebarItemColor: _angular_core.Signal<ClxColorInput>;
2891
2921
  constructor();
2892
2922
  setMode(mode: ClxThemeMode): void;
2893
2923
  setConfig(patch: Partial<ClxThemeConfig>): void;
2894
2924
  toggle(): void;
2925
+ private _applyColorVar;
2926
+ private _applyTextColor;
2927
+ private _applyFont;
2895
2928
  private _loadMode;
2896
2929
  private _getSystemDark;
2897
2930
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxThemeService, never>;
@@ -3057,5 +3090,5 @@ declare class ClxPageEmptyComponent {
3057
3090
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageEmptyComponent, "clx-page-empty", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "ctaLabel": { "alias": "ctaLabel"; "required": false; "isSignal": true; }; "ctaIcon": { "alias": "ctaIcon"; "required": false; "isSignal": true; }; "ctaColor": { "alias": "ctaColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "cta": "cta"; }, never, never, true, never>;
3058
3091
  }
3059
3092
 
3060
- 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_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, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxChartComponent, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, 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 };
3061
- 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, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
3093
+ 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, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxChartComponent, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, 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 };
3094
+ 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, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file