codexly-ui 0.6.19 → 0.7.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.
@@ -6,12 +6,6 @@
6
6
  /* ── Font body variable (overridden dynamically by ClxThemeService) ───────── */
7
7
  :root {
8
8
  --clx-font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
9
-
10
- /* ── Font weight (overridden dynamically by ClxThemeService) ──
11
- label: field labels, secondary text, idle nav, badges
12
- emphasis: titles, selected/active state, standout values (prices, counters) */
13
- --clx-font-weight-label: 500;
14
- --clx-font-weight-emphasis: 600;
15
9
  }
16
10
 
17
11
  /* ── Light theme (default) ────────────────────────────────────────────────── */
@@ -378,11 +378,6 @@ const CLX_FONT_CATALOG = [
378
378
  googleUrl: 'https://fonts.googleapis.com/css2?family=Bungee&display=swap',
379
379
  },
380
380
  ];
381
- const CLX_FONT_WEIGHT_MAP = {
382
- light: { label: 400, emphasis: 500 },
383
- normal: { label: 500, emphasis: 600 },
384
- bold: { label: 600, emphasis: 700 },
385
- };
386
381
  // ── Tailwind rounded classes per borderRadius token ───────────────────────────
387
382
  const CLX_RADIUS_MAP = {
388
383
  none: 'rounded-none',
@@ -422,7 +417,6 @@ const CLX_THEME_DEFAULTS = {
422
417
  defaultSize: 'md',
423
418
  defaultShape: 'rounded',
424
419
  fontFamily: 'DM Sans',
425
- fontWeight: 'normal',
426
420
  };
427
421
  // ── Injection token ───────────────────────────────────────────────────────────
428
422
  const CLX_THEME_CONFIG = new InjectionToken('CLX_THEME_CONFIG', { factory: () => CLX_THEME_DEFAULTS });
@@ -551,12 +545,12 @@ class ClxThemeService {
551
545
  return false;
552
546
  return this._sysDark();
553
547
  }, ...(ngDevMode ? [{ debugName: "isDark" }] : /* istanbul ignore next */ []));
554
- /** Resolved style for clx-nav-group labels — falls back to neutralColor/xs/label */
555
- sidebarGroupStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarGroup, this._config().neutralColor, 'xs', 'label'), ...(ngDevMode ? [{ debugName: "sidebarGroupStyle" }] : /* istanbul ignore next */ []));
556
- /** Resolved style for top-level clx-menu — falls back to primaryColor/sm/emphasis */
557
- sidebarMenuStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarMenu, this._config().primaryColor, 'sm', 'emphasis'), ...(ngDevMode ? [{ debugName: "sidebarMenuStyle" }] : /* istanbul ignore next */ []));
558
- /** Resolved style for clx-menu-item — falls back to primaryColor/sm/label */
559
- sidebarItemStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarItem, this._config().primaryColor, 'sm', 'label'), ...(ngDevMode ? [{ debugName: "sidebarItemStyle" }] : /* istanbul ignore next */ []));
548
+ /** Resolved style for clx-nav-group labels — falls back to neutralColor/xs/500 */
549
+ sidebarGroupStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarGroup, this._config().neutralColor, 'xs', 500), ...(ngDevMode ? [{ debugName: "sidebarGroupStyle" }] : /* istanbul ignore next */ []));
550
+ /** Resolved style for top-level clx-menu — falls back to primaryColor/sm/500 */
551
+ sidebarMenuStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarMenu, this._config().primaryColor, 'sm', 500), ...(ngDevMode ? [{ debugName: "sidebarMenuStyle" }] : /* istanbul ignore next */ []));
552
+ /** Resolved style for clx-menu-item — falls back to primaryColor/sm/500 */
553
+ sidebarItemStyle = computed(() => this._resolveNavZoneStyle(this._config().sidebarItem, this._config().primaryColor, 'sm', 500), ...(ngDevMode ? [{ debugName: "sidebarItemStyle" }] : /* istanbul ignore next */ []));
560
554
  _resolveNavZoneStyle(override, defaultColor, defaultSize, defaultWeight) {
561
555
  return {
562
556
  color: override?.color ?? defaultColor,
@@ -565,11 +559,11 @@ class ClxThemeService {
565
559
  };
566
560
  }
567
561
  /** Resolved style for ClxPageHeaderComponent's title — falls back to the default
568
- * text-clx-text-label color (no override) / 2xl / emphasis */
569
- pageHeaderTitleStyle = computed(() => this._resolvePageHeaderZoneStyle(this._config().pageHeaderTitle, '2xl', 'emphasis'), ...(ngDevMode ? [{ debugName: "pageHeaderTitleStyle" }] : /* istanbul ignore next */ []));
562
+ * text-clx-text-label color (no override) / 2xl / 600 */
563
+ pageHeaderTitleStyle = computed(() => this._resolvePageHeaderZoneStyle(this._config().pageHeaderTitle, '2xl', 600), ...(ngDevMode ? [{ debugName: "pageHeaderTitleStyle" }] : /* istanbul ignore next */ []));
570
564
  /** Resolved style for ClxPageHeaderComponent's subtitle — falls back to the default
571
- * text-clx-text-muted color (no override) / sm / label */
572
- pageHeaderSubtitleStyle = computed(() => this._resolvePageHeaderZoneStyle(this._config().pageHeaderSubtitle, 'sm', 'label'), ...(ngDevMode ? [{ debugName: "pageHeaderSubtitleStyle" }] : /* istanbul ignore next */ []));
565
+ * text-clx-text-muted color (no override) / sm / 500 */
566
+ pageHeaderSubtitleStyle = computed(() => this._resolvePageHeaderZoneStyle(this._config().pageHeaderSubtitle, 'sm', 500), ...(ngDevMode ? [{ debugName: "pageHeaderSubtitleStyle" }] : /* istanbul ignore next */ []));
573
567
  _resolvePageHeaderZoneStyle(override, defaultSize, defaultWeight) {
574
568
  return {
575
569
  color: override?.color,
@@ -577,6 +571,10 @@ class ClxThemeService {
577
571
  weight: override?.weight ?? defaultWeight,
578
572
  };
579
573
  }
574
+ /** Resolved style for ClxCardComponent's auto-generated headerTitle — falls back to 600 */
575
+ cardTitleStyle = computed(() => ({
576
+ weight: this._config().cardTitle?.weight ?? 600,
577
+ }), ...(ngDevMode ? [{ debugName: "cardTitleStyle" }] : /* istanbul ignore next */ []));
580
578
  constructor() {
581
579
  effect(() => {
582
580
  if (!this._isBrowser)
@@ -596,11 +594,6 @@ class ClxThemeService {
596
594
  return;
597
595
  this._applyFont(this._config().fontFamily ?? 'Roboto');
598
596
  });
599
- effect(() => {
600
- if (!this._isBrowser)
601
- return;
602
- this._applyFontWeight(this._config().fontWeight ?? 'normal');
603
- });
604
597
  if (this._isBrowser) {
605
598
  const mq = window.matchMedia('(prefers-color-scheme: dark)');
606
599
  mq.addEventListener('change', e => this._sysDark.set(e.matches));
@@ -653,13 +646,6 @@ class ClxThemeService {
653
646
  link.href = option.googleUrl;
654
647
  document.documentElement.style.setProperty('--clx-font-body', `'${family}', ui-sans-serif, system-ui, sans-serif`);
655
648
  }
656
- _applyFontWeight(intensity) {
657
- const pair = CLX_FONT_WEIGHT_MAP[intensity];
658
- if (!pair)
659
- return;
660
- document.documentElement.style.setProperty('--clx-font-weight-label', String(pair.label));
661
- document.documentElement.style.setProperty('--clx-font-weight-emphasis', String(pair.emphasis));
662
- }
663
649
  _loadMode() {
664
650
  if (!this._isBrowser)
665
651
  return 'system';
@@ -1348,6 +1334,7 @@ class ClxCardComponent {
1348
1334
  /** Optional secondary line under headerTitle. */
1349
1335
  headerSubtitle = input(undefined, ...(ngDevMode ? [{ debugName: "headerSubtitle" }] : /* istanbul ignore next */ []));
1350
1336
  _color = computed(() => this.color() ?? this._themeSvc.config().primaryColor, ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
1337
+ _titleClass = computed(() => `text-sm font-[${this._themeSvc.cardTitleStyle().weight}] text-clx-text-label leading-tight truncate`, ...(ngDevMode ? [{ debugName: "_titleClass" }] : /* istanbul ignore next */ []));
1351
1338
  _headerSlot = contentChild(ClxCardHeaderDirective, ...(ngDevMode ? [{ debugName: "_headerSlot" }] : /* istanbul ignore next */ []));
1352
1339
  _headerActionsSlot = contentChild(ClxCardHeaderActionsDirective, ...(ngDevMode ? [{ debugName: "_headerActionsSlot" }] : /* istanbul ignore next */ []));
1353
1340
  _bodySlot = contentChild(ClxCardBodyDirective, ...(ngDevMode ? [{ debugName: "_bodySlot" }] : /* istanbul ignore next */ []));
@@ -1399,7 +1386,7 @@ class ClxCardComponent {
1399
1386
  </div>
1400
1387
  }
1401
1388
  <div class="flex flex-col min-w-0">
1402
- <p class="text-sm font-(--clx-font-weight-emphasis) text-clx-text-label leading-tight truncate">{{ headerTitle() }}</p>
1389
+ <p [class]="_titleClass()">{{ headerTitle() }}</p>
1403
1390
  @if (headerSubtitle()) {
1404
1391
  <p class="text-xs text-clx-text-muted leading-tight truncate">{{ headerSubtitle() }}</p>
1405
1392
  }
@@ -1451,7 +1438,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
1451
1438
  </div>
1452
1439
  }
1453
1440
  <div class="flex flex-col min-w-0">
1454
- <p class="text-sm font-(--clx-font-weight-emphasis) text-clx-text-label leading-tight truncate">{{ headerTitle() }}</p>
1441
+ <p [class]="_titleClass()">{{ headerTitle() }}</p>
1455
1442
  @if (headerSubtitle()) {
1456
1443
  <p class="text-xs text-clx-text-muted leading-tight truncate">{{ headerSubtitle() }}</p>
1457
1444
  }
@@ -9651,6 +9638,8 @@ const NAV_ITEM_BASE = 'flex items-center gap-3 cursor-pointer select-none';
9651
9638
  // sidebar edges instead of touching them — width is `w-[calc(100%-...)]`, not `w-full`.
9652
9639
  const NAV_ITEM_L1 = 'w-[calc(100%-1.5rem)] mx-3 px-4 py-3';
9653
9640
  const NAV_ITEM_L2 = 'w-[calc(100%-1.5rem)] mx-3 pl-3 pr-3 py-2';
9641
+ // Collapsed sidebar: same breathing room, centered icon, no text.
9642
+ const NAV_ITEM_COLLAPSED = 'w-[calc(100%-1rem)] mx-2 py-3 justify-center';
9654
9643
  const NAV_ITEM_IDLE = 'text-clx-text-subtle';
9655
9644
  // ── Nav zone size → Tailwind text-size class ─────────────────────────────────
9656
9645
  const NAV_ZONE_SIZE_CLASS = {
@@ -9658,19 +9647,10 @@ const NAV_ZONE_SIZE_CLASS = {
9658
9647
  sm: 'text-sm',
9659
9648
  md: 'text-base',
9660
9649
  };
9661
- // ── Nav weight token CSS var-backed arbitrary Tailwind class ───────────────
9662
- const NAV_ZONE_WEIGHT_CLASS = {
9663
- label: 'font-(--clx-font-weight-label)',
9664
- emphasis: 'font-(--clx-font-weight-emphasis)',
9665
- };
9666
- /** Resolves a nav zone's configured size + idle weight (its base, theme-configured weight). */
9667
- function resolveNavZoneIdle(style) {
9668
- return `${NAV_ZONE_SIZE_CLASS[style.size]} ${NAV_ZONE_WEIGHT_CLASS[style.weight]}`;
9669
- }
9670
- /** Resolves a nav zone's configured size + the active/selected state's emphasis weight —
9671
- * the selected item always reads one step heavier than its configured idle weight. */
9672
- function resolveNavZoneActive(style) {
9673
- return `${NAV_ZONE_SIZE_CLASS[style.size]} ${NAV_ZONE_WEIGHT_CLASS.emphasis}`;
9650
+ /** Resolves a nav zone's configured size + weight same typography for idle and active;
9651
+ * the active/selected state is distinguished by color/background, not extra weight. */
9652
+ function resolveNavZoneTypography(style) {
9653
+ return `${NAV_ZONE_SIZE_CLASS[style.size]} font-[${style.weight}]`;
9674
9654
  }
9675
9655
  // ── Children container ─────────────────────────────────────────────────────────
9676
9656
  const NAV_CHILDREN_WRAPPER = 'grid transition-[grid-template-rows] duration-300 ease-in-out';
@@ -9714,12 +9694,13 @@ class ClxMenuComponent {
9714
9694
  }
9715
9695
  _iconCls = computed(() => resolveColor(this._color()).textSubtle, ...(ngDevMode ? [{ debugName: "_iconCls" }] : /* istanbul ignore next */ []));
9716
9696
  _buttonCls(isActive) {
9717
- const geom = this.collapsed() ? 'w-full py-3 px-0 justify-center' : NAV_ITEM_L1;
9697
+ const geom = this.collapsed() ? NAV_ITEM_COLLAPSED : NAV_ITEM_L1;
9718
9698
  const t = resolveColor(this._color());
9699
+ const typography = resolveNavZoneTypography(this._resolved());
9719
9700
  if (isActive) {
9720
- return `${NAV_ITEM_BASE} ${resolveNavZoneActive(this._resolved())} ${geom} ${t.textSubtle} ${t.bgSubtle} rounded-lg`;
9701
+ return `${NAV_ITEM_BASE} ${typography} ${geom} ${t.textSubtle} ${t.bgSubtle} rounded-lg`;
9721
9702
  }
9722
- return `${NAV_ITEM_BASE} ${resolveNavZoneIdle(this._resolved())} ${geom} ${t.hoverBgMuted} rounded-lg`;
9703
+ return `${NAV_ITEM_BASE} ${typography} ${geom} ${t.hoverBgMuted} rounded-lg`;
9723
9704
  }
9724
9705
  NAV_CHILDREN_WRAPPER = NAV_CHILDREN_WRAPPER;
9725
9706
  NAV_CHILDREN_INNER = NAV_CHILDREN_INNER;
@@ -9875,18 +9856,18 @@ class ClxMenuItemComponent {
9875
9856
  }, ...(ngDevMode ? [{ debugName: "_resolved" }] : /* istanbul ignore next */ []));
9876
9857
  _geom = computed(() => {
9877
9858
  if (this.collapsed())
9878
- return 'w-full py-3 px-0 justify-center';
9859
+ return NAV_ITEM_COLLAPSED;
9879
9860
  return this.nested() ? NAV_ITEM_L2 : NAV_ITEM_L1;
9880
9861
  }, ...(ngDevMode ? [{ debugName: "_geom" }] : /* istanbul ignore next */ []));
9881
9862
  _iconCls = computed(() => resolveColor(this._resolved().color).textSubtle, ...(ngDevMode ? [{ debugName: "_iconCls" }] : /* istanbul ignore next */ []));
9863
+ _typography = computed(() => resolveNavZoneTypography(this._resolved()), ...(ngDevMode ? [{ debugName: "_typography" }] : /* istanbul ignore next */ []));
9882
9864
  _idleCls = computed(() => {
9883
9865
  const hover = resolveColor(this._resolved().color).hoverBgMuted;
9884
- return `${NAV_ITEM_BASE} ${resolveNavZoneIdle(this._resolved())} ${this._geom()} ${hover} rounded-lg`;
9866
+ return `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()} ${hover} rounded-lg`;
9885
9867
  }, ...(ngDevMode ? [{ debugName: "_idleCls" }] : /* istanbul ignore next */ []));
9886
9868
  _activeCls = computed(() => {
9887
9869
  const t = resolveColor(this._resolved().color);
9888
- const typography = resolveNavZoneActive(this._resolved());
9889
- return `${NAV_ITEM_BASE} ${typography} ${this._geom()} ${t.textSubtle} ${t.bgSubtle} rounded-lg`;
9870
+ return `${NAV_ITEM_BASE} ${this._typography()} ${this._geom()} ${t.textSubtle} ${t.bgSubtle} rounded-lg`;
9890
9871
  }, ...(ngDevMode ? [{ debugName: "_activeCls" }] : /* istanbul ignore next */ []));
9891
9872
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9892
9873
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxMenuItemComponent, isStandalone: true, selector: "clx-menu-item", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null }, nested: { classPropertyName: "nested", publicName: "nested", isSignal: true, isRequired: false, transformFunction: null }, collapsed: { classPropertyName: "collapsed", publicName: "collapsed", isSignal: true, isRequired: false, transformFunction: null }, routerLink: { classPropertyName: "routerLink", publicName: "routerLink", isSignal: true, isRequired: false, transformFunction: null }, routerLinkActiveOptions: { classPropertyName: "routerLinkActiveOptions", publicName: "routerLinkActiveOptions", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { itemClick: "itemClick" }, host: { classAttribute: "block" }, ngImport: i0, template: `
@@ -9975,7 +9956,7 @@ class ClxNavGroupComponent {
9975
9956
  const o = this.style();
9976
9957
  return { color: o?.color ?? base.color, size: o?.size ?? base.size, weight: o?.weight ?? base.weight };
9977
9958
  }, ...(ngDevMode ? [{ debugName: "_resolved" }] : /* istanbul ignore next */ []));
9978
- labelClass = computed(() => `${resolveColor(this._resolved().color).textSubtle} ${resolveNavZoneIdle(this._resolved())}`, ...(ngDevMode ? [{ debugName: "labelClass" }] : /* istanbul ignore next */ []));
9959
+ labelClass = computed(() => `${resolveColor(this._resolved().color).textSubtle} ${resolveNavZoneTypography(this._resolved())}`, ...(ngDevMode ? [{ debugName: "labelClass" }] : /* istanbul ignore next */ []));
9979
9960
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxNavGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9980
9961
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxNavGroupComponent, isStandalone: true, selector: "clx-nav-group", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: true, transformFunction: null }, collapsed: { classPropertyName: "collapsed", publicName: "collapsed", isSignal: true, isRequired: false, transformFunction: null }, style: { classPropertyName: "style", publicName: "style", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "block" }, ngImport: i0, template: `
9981
9962
  @if (!collapsed()) {
@@ -10029,10 +10010,6 @@ const TEXT_SIZE_CLASS = {
10029
10010
  '2xl': 'text-2xl',
10030
10011
  '3xl': 'text-3xl',
10031
10012
  };
10032
- const WEIGHT_CLASS = {
10033
- label: 'font-(--clx-font-weight-label)',
10034
- emphasis: 'font-(--clx-font-weight-emphasis)',
10035
- };
10036
10013
  /**
10037
10014
  * Standard page title block: an optional back button, title + optional subtitle on the
10038
10015
  * left, a free-content slot (button, select, badge...) on the right. Replaces the
@@ -10055,12 +10032,12 @@ class ClxPageHeaderComponent {
10055
10032
  _titleClass = computed(() => {
10056
10033
  const s = this._themeSvc.pageHeaderTitleStyle();
10057
10034
  const colorCls = s.color ? resolveColor(s.color).textSubtle : 'text-clx-text-label';
10058
- return `${TEXT_SIZE_CLASS[s.size]} ${WEIGHT_CLASS[s.weight]} ${colorCls} truncate`;
10035
+ return `${TEXT_SIZE_CLASS[s.size]} font-[${s.weight}] ${colorCls} truncate`;
10059
10036
  }, ...(ngDevMode ? [{ debugName: "_titleClass" }] : /* istanbul ignore next */ []));
10060
10037
  _subtitleClass = computed(() => {
10061
10038
  const s = this._themeSvc.pageHeaderSubtitleStyle();
10062
10039
  const colorCls = s.color ? resolveColor(s.color).textSubtle : 'text-clx-text-muted';
10063
- return `${TEXT_SIZE_CLASS[s.size]} ${WEIGHT_CLASS[s.weight]} ${colorCls} mt-0.5`;
10040
+ return `${TEXT_SIZE_CLASS[s.size]} font-[${s.weight}] ${colorCls} mt-0.5`;
10064
10041
  }, ...(ngDevMode ? [{ debugName: "_subtitleClass" }] : /* istanbul ignore next */ []));
10065
10042
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxPageHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10066
10043
  static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxPageHeaderComponent, isStandalone: true, selector: "clx-page-header", inputs: { title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, subtitle: { classPropertyName: "subtitle", publicName: "subtitle", isSignal: true, isRequired: false, transformFunction: null }, showBack: { classPropertyName: "showBack", publicName: "showBack", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { back: "back" }, host: { classAttribute: "flex items-center gap-3 flex-wrap" }, queries: [{ propertyName: "_titleSlot", first: true, predicate: ClxPageHeaderTitleDirective, descendants: true, isSignal: true }], ngImport: i0, template: `
@@ -15850,5 +15827,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
15850
15827
  * Generated bundle index. Do not edit.
15851
15828
  */
15852
15829
 
15853
- 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_FONT_WEIGHT_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, ClxCardHeaderActionsDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageHeaderComponent, ClxPageHeaderTitleDirective, 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 };
15830
+ 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, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageHeaderComponent, ClxPageHeaderTitleDirective, 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 };
15854
15831
  //# sourceMappingURL=codexly-ui.mjs.map