codexly-ui 0.10.92 → 0.10.93
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/fesm2022/codexly-ui.mjs +144 -33
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +36 -3
package/fesm2022/codexly-ui.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { input, computed, ChangeDetectionStrategy, ViewEncapsulation, Component, InjectionToken, inject, PLATFORM_ID, signal, effect, Injectable, ElementRef, HostAttributeToken, output, Directive, forwardRef, contentChild, ApplicationRef, EnvironmentInjector, RendererFactory2, createComponent, DestroyRef, untracked, ViewChildren, HostListener, viewChild, ViewChild, Injector, ChangeDetectorRef, NgZone,
|
|
2
|
+
import { input, computed, ChangeDetectionStrategy, ViewEncapsulation, Component, InjectionToken, inject, PLATFORM_ID, signal, effect, Injectable, ElementRef, HostAttributeToken, output, Directive, forwardRef, contentChild, model, ApplicationRef, EnvironmentInjector, RendererFactory2, createComponent, DestroyRef, untracked, ViewChildren, HostListener, viewChild, ViewChild, Injector, ChangeDetectorRef, NgZone, contentChildren, ContentChildren, numberAttribute, booleanAttribute, Input } from '@angular/core';
|
|
3
3
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
4
4
|
import { isPlatformBrowser, NgTemplateOutlet, DOCUMENT, NgStyle, CurrencyPipe, DecimalPipe } from '@angular/common';
|
|
5
5
|
import * as i1$1 from '@angular/forms';
|
|
@@ -1594,6 +1594,148 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
1594
1594
|
}]
|
|
1595
1595
|
}], propDecorators: { variant: [{ type: i0.Input, args: [{ isSignal: true, alias: "variant", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }], padding: [{ type: i0.Input, args: [{ isSignal: true, alias: "padding", required: false }] }], shadow: [{ type: i0.Input, args: [{ isSignal: true, alias: "shadow", required: false }] }], hover: [{ type: i0.Input, args: [{ isSignal: true, alias: "hover", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], border: [{ type: i0.Input, args: [{ isSignal: true, alias: "border", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], headerTitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "headerTitle", required: false }] }], headerSubtitle: [{ type: i0.Input, args: [{ isSignal: true, alias: "headerSubtitle", required: false }] }], _headerSlot: [{ type: i0.ContentChild, args: [i0.forwardRef(() => ClxCardHeaderDirective), { isSignal: true }] }], _headerActionsSlot: [{ type: i0.ContentChild, args: [i0.forwardRef(() => ClxCardHeaderActionsDirective), { isSignal: true }] }], _bodySlot: [{ type: i0.ContentChild, args: [i0.forwardRef(() => ClxCardBodyDirective), { isSignal: true }] }], _footerSlot: [{ type: i0.ContentChild, args: [i0.forwardRef(() => ClxCardFooterDirective), { isSignal: true }] }] } });
|
|
1596
1596
|
|
|
1597
|
+
const COLLAPSE_SIZE_MAP = {
|
|
1598
|
+
sm: { header: 'px-3 py-2.5', label: 'text-sm', icon: 'xs', chevron: 'xs' },
|
|
1599
|
+
md: { header: 'px-4 py-3', label: 'text-sm', icon: 'sm', chevron: 'sm' },
|
|
1600
|
+
lg: { header: 'px-5 py-4', label: 'text-base', icon: 'md', chevron: 'md' },
|
|
1601
|
+
};
|
|
1602
|
+
|
|
1603
|
+
// ── Text ──────────────────────────────────────────────────────────────────────
|
|
1604
|
+
const CLX_TEXT_LABEL = 'text-clx-text-label'; // field labels
|
|
1605
|
+
const CLX_TEXT_HINT = 'text-clx-text-subtle'; // hints, helper text
|
|
1606
|
+
const CLX_TEXT_DISABLED = 'text-clx-text-subtle'; // disabled text
|
|
1607
|
+
const CLX_TEXT_INPUT = 'text-clx-text-label'; // active input text
|
|
1608
|
+
const CLX_TEXT_TITLE = 'text-clx-text-label'; // page/section titles
|
|
1609
|
+
const CLX_TEXT_SUBTITLE = 'text-clx-text-subtle'; // secondary descriptions
|
|
1610
|
+
const CLX_TEXT_IDLE = 'text-clx-text-subtle'; // nav idle, placeholders
|
|
1611
|
+
const CLX_TEXT_BODY = 'text-clx-text-muted'; // body / message text
|
|
1612
|
+
const CLX_TEXT_HEADING = 'text-clx-text-label'; // modal/alert headings
|
|
1613
|
+
const CLX_TEXT_OPTION = 'text-clx-text-label'; // dropdown options
|
|
1614
|
+
// ── Borders ───────────────────────────────────────────────────────────────────
|
|
1615
|
+
const CLX_BORDER_DEFAULT = 'border-clx-border'; // default input/card border
|
|
1616
|
+
const CLX_BORDER_MEDIUM = 'border-clx-border'; // separator, dividers
|
|
1617
|
+
// ── Backgrounds ───────────────────────────────────────────────────────────────
|
|
1618
|
+
const CLX_BG_SURFACE = 'bg-clx-surface'; // input/dropdown background
|
|
1619
|
+
const CLX_BG_DISABLED = 'bg-clx-surface-2'; // disabled input/textarea
|
|
1620
|
+
const CLX_BG_SECTION = 'bg-clx-surface-2'; // card/modal header+footer
|
|
1621
|
+
const CLX_BG_ICON_WRAP = 'bg-clx-surface-3'; // empty-state icon wrapper
|
|
1622
|
+
const CLX_BG_ADDON = 'bg-clx-surface-3'; // prefix/suffix text addon
|
|
1623
|
+
// ── Placeholder ───────────────────────────────────────────────────────────────
|
|
1624
|
+
// Fixed color independent of --clx-text-subtle — see _theme.css for why.
|
|
1625
|
+
const CLX_PLACEHOLDER = 'placeholder:text-clx-placeholder';
|
|
1626
|
+
// ── Disabled borders ──────────────────────────────────────────────────────────
|
|
1627
|
+
const CLX_BORDER_DISABLED = 'border-clx-border';
|
|
1628
|
+
// ── Addon (prefix/suffix text) ────────────────────────────────────────────────
|
|
1629
|
+
const CLX_ADDON_BORDER = 'border-clx-border';
|
|
1630
|
+
const CLX_ADDON_TEXT = 'text-clx-text-muted';
|
|
1631
|
+
// ── Option states ─────────────────────────────────────────────────────────────
|
|
1632
|
+
const CLX_OPTION_DISABLED = 'text-clx-text-faint'; // disabled dropdown option
|
|
1633
|
+
|
|
1634
|
+
class ClxCollapseComponent {
|
|
1635
|
+
_themeSvc = inject(ClxThemeService);
|
|
1636
|
+
// ── Inputs ─────────────────────────────────────────────────────────────────
|
|
1637
|
+
label = input('', ...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
1638
|
+
icon = input('', ...(ngDevMode ? [{ debugName: "icon" }] : /* istanbul ignore next */ []));
|
|
1639
|
+
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
1640
|
+
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
1641
|
+
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
1642
|
+
/** Adds a top border so a standalone collapse (not nested inside a card body) reads as its
|
|
1643
|
+
* own bordered block — leave false when stacking several inside one clx-card, where the
|
|
1644
|
+
* parent already handles separation between sections. */
|
|
1645
|
+
bordered = input(false, ...(ngDevMode ? [{ debugName: "bordered" }] : /* istanbul ignore next */ []));
|
|
1646
|
+
/** Two-way bindable: [(expanded)]="..." */
|
|
1647
|
+
expanded = model(false, ...(ngDevMode ? [{ debugName: "expanded" }] : /* istanbul ignore next */ []));
|
|
1648
|
+
_color = computed(() => this.color() ?? this._themeSvc.config().primaryColor, ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
1649
|
+
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
1650
|
+
_sizeConfig = computed(() => COLLAPSE_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeConfig" }] : /* istanbul ignore next */ []));
|
|
1651
|
+
_iconCls = computed(() => {
|
|
1652
|
+
if (this.disabled())
|
|
1653
|
+
return CLX_TEXT_DISABLED;
|
|
1654
|
+
return resolveColor(this._color()).textSubtle;
|
|
1655
|
+
}, ...(ngDevMode ? [{ debugName: "_iconCls" }] : /* istanbul ignore next */ []));
|
|
1656
|
+
_chevronCls = computed(() => {
|
|
1657
|
+
const base = 'shrink-0 transition-transform duration-300';
|
|
1658
|
+
return this.disabled() ? `${base} ${CLX_TEXT_DISABLED}` : `${base} text-clx-text-subtle`;
|
|
1659
|
+
}, ...(ngDevMode ? [{ debugName: "_chevronCls" }] : /* istanbul ignore next */ []));
|
|
1660
|
+
_labelClass = computed(() => {
|
|
1661
|
+
const s = this._sizeConfig();
|
|
1662
|
+
const color = this.disabled() ? CLX_TEXT_DISABLED : CLX_TEXT_LABEL;
|
|
1663
|
+
return `${s.label} font-semibold ${color}`;
|
|
1664
|
+
}, ...(ngDevMode ? [{ debugName: "_labelClass" }] : /* istanbul ignore next */ []));
|
|
1665
|
+
_headerClass = computed(() => {
|
|
1666
|
+
const s = this._sizeConfig();
|
|
1667
|
+
const border = this.bordered() ? 'border border-clx-border rounded-lg' : '';
|
|
1668
|
+
const cursor = this.disabled() ? 'cursor-not-allowed opacity-60' : 'cursor-pointer';
|
|
1669
|
+
const hover = this.disabled() ? '' : resolveColor(this._color()).hoverBgMuted;
|
|
1670
|
+
return `w-full flex items-center gap-2.5 ${s.header} ${border} ${hover} transition-colors duration-200 outline-none select-none`;
|
|
1671
|
+
}, ...(ngDevMode ? [{ debugName: "_headerClass" }] : /* istanbul ignore next */ []));
|
|
1672
|
+
_bodyClass = computed(() => {
|
|
1673
|
+
const s = this._sizeConfig();
|
|
1674
|
+
return `${s.header} pt-0`;
|
|
1675
|
+
}, ...(ngDevMode ? [{ debugName: "_bodyClass" }] : /* istanbul ignore next */ []));
|
|
1676
|
+
toggle() {
|
|
1677
|
+
if (this.disabled())
|
|
1678
|
+
return;
|
|
1679
|
+
this.expanded.update(v => !v);
|
|
1680
|
+
}
|
|
1681
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxCollapseComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1682
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.15", type: ClxCollapseComponent, isStandalone: true, selector: "clx-collapse", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, color: { classPropertyName: "color", publicName: "color", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, bordered: { classPropertyName: "bordered", publicName: "bordered", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { expanded: "expandedChange" }, host: { classAttribute: "flex flex-col w-full" }, ngImport: i0, template: `
|
|
1683
|
+
<button type="button" [class]="_headerClass()" [disabled]="disabled()"
|
|
1684
|
+
[attr.aria-expanded]="expanded()" (click)="toggle()">
|
|
1685
|
+
@if (icon()) {
|
|
1686
|
+
<span clx-icon [name]="icon()!" [size]="_sizeConfig().icon" [class]="_iconCls()"></span>
|
|
1687
|
+
}
|
|
1688
|
+
<span class="flex-1 text-left truncate" [class]="_labelClass()">{{ label() }}</span>
|
|
1689
|
+
<span clx-icon name="expand_more" [size]="_sizeConfig().chevron"
|
|
1690
|
+
[class]="_chevronCls()"
|
|
1691
|
+
[style.transform]="expanded() ? 'rotate(180deg)' : 'rotate(0deg)'">
|
|
1692
|
+
</span>
|
|
1693
|
+
</button>
|
|
1694
|
+
|
|
1695
|
+
<div class="grid transition-[grid-template-rows] duration-300 ease-in-out"
|
|
1696
|
+
[style.grid-template-rows]="expanded() ? '1fr' : '0fr'">
|
|
1697
|
+
<div class="overflow-hidden">
|
|
1698
|
+
<div [class]="_bodyClass()">
|
|
1699
|
+
<ng-content />
|
|
1700
|
+
</div>
|
|
1701
|
+
</div>
|
|
1702
|
+
</div>
|
|
1703
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ClxIconComponent, selector: "span[clx-icon]", inputs: ["name", "size", "color", "fill"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1704
|
+
}
|
|
1705
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImport: i0, type: ClxCollapseComponent, decorators: [{
|
|
1706
|
+
type: Component,
|
|
1707
|
+
args: [{
|
|
1708
|
+
selector: 'clx-collapse',
|
|
1709
|
+
standalone: true,
|
|
1710
|
+
imports: [ClxIconComponent],
|
|
1711
|
+
template: `
|
|
1712
|
+
<button type="button" [class]="_headerClass()" [disabled]="disabled()"
|
|
1713
|
+
[attr.aria-expanded]="expanded()" (click)="toggle()">
|
|
1714
|
+
@if (icon()) {
|
|
1715
|
+
<span clx-icon [name]="icon()!" [size]="_sizeConfig().icon" [class]="_iconCls()"></span>
|
|
1716
|
+
}
|
|
1717
|
+
<span class="flex-1 text-left truncate" [class]="_labelClass()">{{ label() }}</span>
|
|
1718
|
+
<span clx-icon name="expand_more" [size]="_sizeConfig().chevron"
|
|
1719
|
+
[class]="_chevronCls()"
|
|
1720
|
+
[style.transform]="expanded() ? 'rotate(180deg)' : 'rotate(0deg)'">
|
|
1721
|
+
</span>
|
|
1722
|
+
</button>
|
|
1723
|
+
|
|
1724
|
+
<div class="grid transition-[grid-template-rows] duration-300 ease-in-out"
|
|
1725
|
+
[style.grid-template-rows]="expanded() ? '1fr' : '0fr'">
|
|
1726
|
+
<div class="overflow-hidden">
|
|
1727
|
+
<div [class]="_bodyClass()">
|
|
1728
|
+
<ng-content />
|
|
1729
|
+
</div>
|
|
1730
|
+
</div>
|
|
1731
|
+
</div>
|
|
1732
|
+
`,
|
|
1733
|
+
encapsulation: ViewEncapsulation.None,
|
|
1734
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1735
|
+
host: { class: 'flex flex-col w-full' },
|
|
1736
|
+
}]
|
|
1737
|
+
}], propDecorators: { label: [{ type: i0.Input, args: [{ isSignal: true, alias: "label", required: false }] }], icon: [{ type: i0.Input, args: [{ isSignal: true, alias: "icon", required: false }] }], color: [{ type: i0.Input, args: [{ isSignal: true, alias: "color", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], disabled: [{ type: i0.Input, args: [{ isSignal: true, alias: "disabled", required: false }] }], bordered: [{ type: i0.Input, args: [{ isSignal: true, alias: "bordered", required: false }] }], expanded: [{ type: i0.Input, args: [{ isSignal: true, alias: "expanded", required: false }] }, { type: i0.Output, args: ["expandedChange"] }] } });
|
|
1738
|
+
|
|
1597
1739
|
const CLX_LIST_CONTEXT = new InjectionToken('CLX_LIST_CONTEXT');
|
|
1598
1740
|
// ── Variant maps ──────────────────────────────────────────────────────────────
|
|
1599
1741
|
const LIST_VARIANT_SHAPE = {
|
|
@@ -1994,37 +2136,6 @@ const STEPPER_SIZE_MAP = {
|
|
|
1994
2136
|
lg: { circle: 'w-11 h-11', iconSize: 'md', label: 'text-sm', desc: 'text-xs', connector: 'h-1' },
|
|
1995
2137
|
};
|
|
1996
2138
|
|
|
1997
|
-
// ── Text ──────────────────────────────────────────────────────────────────────
|
|
1998
|
-
const CLX_TEXT_LABEL = 'text-clx-text-label'; // field labels
|
|
1999
|
-
const CLX_TEXT_HINT = 'text-clx-text-subtle'; // hints, helper text
|
|
2000
|
-
const CLX_TEXT_DISABLED = 'text-clx-text-subtle'; // disabled text
|
|
2001
|
-
const CLX_TEXT_INPUT = 'text-clx-text-label'; // active input text
|
|
2002
|
-
const CLX_TEXT_TITLE = 'text-clx-text-label'; // page/section titles
|
|
2003
|
-
const CLX_TEXT_SUBTITLE = 'text-clx-text-subtle'; // secondary descriptions
|
|
2004
|
-
const CLX_TEXT_IDLE = 'text-clx-text-subtle'; // nav idle, placeholders
|
|
2005
|
-
const CLX_TEXT_BODY = 'text-clx-text-muted'; // body / message text
|
|
2006
|
-
const CLX_TEXT_HEADING = 'text-clx-text-label'; // modal/alert headings
|
|
2007
|
-
const CLX_TEXT_OPTION = 'text-clx-text-label'; // dropdown options
|
|
2008
|
-
// ── Borders ───────────────────────────────────────────────────────────────────
|
|
2009
|
-
const CLX_BORDER_DEFAULT = 'border-clx-border'; // default input/card border
|
|
2010
|
-
const CLX_BORDER_MEDIUM = 'border-clx-border'; // separator, dividers
|
|
2011
|
-
// ── Backgrounds ───────────────────────────────────────────────────────────────
|
|
2012
|
-
const CLX_BG_SURFACE = 'bg-clx-surface'; // input/dropdown background
|
|
2013
|
-
const CLX_BG_DISABLED = 'bg-clx-surface-2'; // disabled input/textarea
|
|
2014
|
-
const CLX_BG_SECTION = 'bg-clx-surface-2'; // card/modal header+footer
|
|
2015
|
-
const CLX_BG_ICON_WRAP = 'bg-clx-surface-3'; // empty-state icon wrapper
|
|
2016
|
-
const CLX_BG_ADDON = 'bg-clx-surface-3'; // prefix/suffix text addon
|
|
2017
|
-
// ── Placeholder ───────────────────────────────────────────────────────────────
|
|
2018
|
-
// Fixed color independent of --clx-text-subtle — see _theme.css for why.
|
|
2019
|
-
const CLX_PLACEHOLDER = 'placeholder:text-clx-placeholder';
|
|
2020
|
-
// ── Disabled borders ──────────────────────────────────────────────────────────
|
|
2021
|
-
const CLX_BORDER_DISABLED = 'border-clx-border';
|
|
2022
|
-
// ── Addon (prefix/suffix text) ────────────────────────────────────────────────
|
|
2023
|
-
const CLX_ADDON_BORDER = 'border-clx-border';
|
|
2024
|
-
const CLX_ADDON_TEXT = 'text-clx-text-muted';
|
|
2025
|
-
// ── Option states ─────────────────────────────────────────────────────────────
|
|
2026
|
-
const CLX_OPTION_DISABLED = 'text-clx-text-faint'; // disabled dropdown option
|
|
2027
|
-
|
|
2028
2139
|
class ClxStepperComponent {
|
|
2029
2140
|
_themeSvc = inject(ClxThemeService);
|
|
2030
2141
|
steps = input.required(...(ngDevMode ? [{ debugName: "steps" }] : /* istanbul ignore next */ []));
|
|
@@ -16732,5 +16843,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
16732
16843
|
* Generated bundle index. Do not edit.
|
|
16733
16844
|
*/
|
|
16734
16845
|
|
|
16735
|
-
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, 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, 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 };
|
|
16846
|
+
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, 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 };
|
|
16736
16847
|
//# sourceMappingURL=codexly-ui.mjs.map
|