codexly-ui 0.10.91 → 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 +168 -50
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +61 -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';
|
|
@@ -571,6 +571,13 @@ class ClxThemeService {
|
|
|
571
571
|
weight: override?.weight ?? defaultWeight,
|
|
572
572
|
};
|
|
573
573
|
}
|
|
574
|
+
/** Resolved accent color for a single form control zone (see ClxFormControlsTheme) — falls
|
|
575
|
+
* back to primaryColor when that control has no override of its own. Every form component
|
|
576
|
+
* (clx-input, clx-select, clx-checkbox, ...) calls this instead of reading primaryColor
|
|
577
|
+
* directly, so each can be pinned to a different accent independently. */
|
|
578
|
+
formControlColor(key) {
|
|
579
|
+
return this._config().formControls?.[key] ?? this._config().primaryColor;
|
|
580
|
+
}
|
|
574
581
|
/** Resolved style for ClxPageHeaderComponent's title — falls back to the default
|
|
575
582
|
* text-clx-text-label color (no override) / 2xl / 600 */
|
|
576
583
|
pageHeaderTitleStyle = computed(() => this._resolvePageHeaderZoneStyle(this._config().pageHeaderTitle, '2xl', 600), ...(ngDevMode ? [{ debugName: "pageHeaderTitleStyle" }] : /* istanbul ignore next */ []));
|
|
@@ -1587,6 +1594,148 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
1587
1594
|
}]
|
|
1588
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 }] }] } });
|
|
1589
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
|
+
|
|
1590
1739
|
const CLX_LIST_CONTEXT = new InjectionToken('CLX_LIST_CONTEXT');
|
|
1591
1740
|
// ── Variant maps ──────────────────────────────────────────────────────────────
|
|
1592
1741
|
const LIST_VARIANT_SHAPE = {
|
|
@@ -1987,37 +2136,6 @@ const STEPPER_SIZE_MAP = {
|
|
|
1987
2136
|
lg: { circle: 'w-11 h-11', iconSize: 'md', label: 'text-sm', desc: 'text-xs', connector: 'h-1' },
|
|
1988
2137
|
};
|
|
1989
2138
|
|
|
1990
|
-
// ── Text ──────────────────────────────────────────────────────────────────────
|
|
1991
|
-
const CLX_TEXT_LABEL = 'text-clx-text-label'; // field labels
|
|
1992
|
-
const CLX_TEXT_HINT = 'text-clx-text-subtle'; // hints, helper text
|
|
1993
|
-
const CLX_TEXT_DISABLED = 'text-clx-text-subtle'; // disabled text
|
|
1994
|
-
const CLX_TEXT_INPUT = 'text-clx-text-label'; // active input text
|
|
1995
|
-
const CLX_TEXT_TITLE = 'text-clx-text-label'; // page/section titles
|
|
1996
|
-
const CLX_TEXT_SUBTITLE = 'text-clx-text-subtle'; // secondary descriptions
|
|
1997
|
-
const CLX_TEXT_IDLE = 'text-clx-text-subtle'; // nav idle, placeholders
|
|
1998
|
-
const CLX_TEXT_BODY = 'text-clx-text-muted'; // body / message text
|
|
1999
|
-
const CLX_TEXT_HEADING = 'text-clx-text-label'; // modal/alert headings
|
|
2000
|
-
const CLX_TEXT_OPTION = 'text-clx-text-label'; // dropdown options
|
|
2001
|
-
// ── Borders ───────────────────────────────────────────────────────────────────
|
|
2002
|
-
const CLX_BORDER_DEFAULT = 'border-clx-border'; // default input/card border
|
|
2003
|
-
const CLX_BORDER_MEDIUM = 'border-clx-border'; // separator, dividers
|
|
2004
|
-
// ── Backgrounds ───────────────────────────────────────────────────────────────
|
|
2005
|
-
const CLX_BG_SURFACE = 'bg-clx-surface'; // input/dropdown background
|
|
2006
|
-
const CLX_BG_DISABLED = 'bg-clx-surface-2'; // disabled input/textarea
|
|
2007
|
-
const CLX_BG_SECTION = 'bg-clx-surface-2'; // card/modal header+footer
|
|
2008
|
-
const CLX_BG_ICON_WRAP = 'bg-clx-surface-3'; // empty-state icon wrapper
|
|
2009
|
-
const CLX_BG_ADDON = 'bg-clx-surface-3'; // prefix/suffix text addon
|
|
2010
|
-
// ── Placeholder ───────────────────────────────────────────────────────────────
|
|
2011
|
-
// Fixed color independent of --clx-text-subtle — see _theme.css for why.
|
|
2012
|
-
const CLX_PLACEHOLDER = 'placeholder:text-clx-placeholder';
|
|
2013
|
-
// ── Disabled borders ──────────────────────────────────────────────────────────
|
|
2014
|
-
const CLX_BORDER_DISABLED = 'border-clx-border';
|
|
2015
|
-
// ── Addon (prefix/suffix text) ────────────────────────────────────────────────
|
|
2016
|
-
const CLX_ADDON_BORDER = 'border-clx-border';
|
|
2017
|
-
const CLX_ADDON_TEXT = 'text-clx-text-muted';
|
|
2018
|
-
// ── Option states ─────────────────────────────────────────────────────────────
|
|
2019
|
-
const CLX_OPTION_DISABLED = 'text-clx-text-faint'; // disabled dropdown option
|
|
2020
|
-
|
|
2021
2139
|
class ClxStepperComponent {
|
|
2022
2140
|
_themeSvc = inject(ClxThemeService);
|
|
2023
2141
|
steps = input.required(...(ngDevMode ? [{ debugName: "steps" }] : /* istanbul ignore next */ []));
|
|
@@ -2879,7 +2997,7 @@ class ClxInputComponent {
|
|
|
2879
2997
|
placeholder = input('', ...(ngDevMode ? [{ debugName: "placeholder" }] : /* istanbul ignore next */ []));
|
|
2880
2998
|
type = input('text', ...(ngDevMode ? [{ debugName: "type" }] : /* istanbul ignore next */ []));
|
|
2881
2999
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
2882
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
3000
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('input'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
2883
3001
|
hint = input('', ...(ngDevMode ? [{ debugName: "hint" }] : /* istanbul ignore next */ []));
|
|
2884
3002
|
prefixIcon = input('', ...(ngDevMode ? [{ debugName: "prefixIcon" }] : /* istanbul ignore next */ []));
|
|
2885
3003
|
suffixIcon = input('', ...(ngDevMode ? [{ debugName: "suffixIcon" }] : /* istanbul ignore next */ []));
|
|
@@ -3206,7 +3324,7 @@ class ClxOtpComponent {
|
|
|
3206
3324
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
3207
3325
|
/** Autofocus the first box on init */
|
|
3208
3326
|
autoFocus = input(false, ...(ngDevMode ? [{ debugName: "autoFocus" }] : /* istanbul ignore next */ []));
|
|
3209
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
3327
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('otp'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
3210
3328
|
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
3211
3329
|
_sizeConfig = computed(() => OTP_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeConfig" }] : /* istanbul ignore next */ []));
|
|
3212
3330
|
_statusCfg = computed(() => INPUT_STATUS_MAP[this.status()], ...(ngDevMode ? [{ debugName: "_statusCfg" }] : /* istanbul ignore next */ []));
|
|
@@ -3485,7 +3603,7 @@ class ClxTextareaComponent {
|
|
|
3485
3603
|
_onChange = () => { };
|
|
3486
3604
|
_onTouched = () => { };
|
|
3487
3605
|
// ── Computed shortcuts ───────────────────────────────────────────────────
|
|
3488
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
3606
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('textarea'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
3489
3607
|
_sizeCfg = computed(() => TEXTAREA_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeCfg" }] : /* istanbul ignore next */ []));
|
|
3490
3608
|
_statusCfg = computed(() => INPUT_STATUS_MAP[this.status()], ...(ngDevMode ? [{ debugName: "_statusCfg" }] : /* istanbul ignore next */ []));
|
|
3491
3609
|
// ── Classes ──────────────────────────────────────────────────────────────
|
|
@@ -3757,7 +3875,7 @@ class ClxNumberComponent {
|
|
|
3757
3875
|
_isAtMax = computed(() => this.max() !== null && this._value() >= this.max(), ...(ngDevMode ? [{ debugName: "_isAtMax" }] : /* istanbul ignore next */ []));
|
|
3758
3876
|
// ── Computed classes ─────────────────────────────────────────────────────
|
|
3759
3877
|
_themeSvc = inject(ClxThemeService);
|
|
3760
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
3878
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('number'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
3761
3879
|
_sizeConfig = computed(() => NUMBER_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeConfig" }] : /* istanbul ignore next */ []));
|
|
3762
3880
|
_labelClass = computed(() => `${this._sizeConfig().label} ${CLX_TEXT_LABEL} leading-none`, ...(ngDevMode ? [{ debugName: "_labelClass" }] : /* istanbul ignore next */ []));
|
|
3763
3881
|
_hintClass = computed(() => `${this._sizeConfig().hint} ${CLX_TEXT_HINT}`, ...(ngDevMode ? [{ debugName: "_hintClass" }] : /* istanbul ignore next */ []));
|
|
@@ -4129,7 +4247,7 @@ class ClxSelectComponent {
|
|
|
4129
4247
|
// ── DI ─────────────────────────────────────────────────────────────────────
|
|
4130
4248
|
_themeSvc = inject(ClxThemeService);
|
|
4131
4249
|
_ngControl = inject(NgControl, { optional: true, self: true });
|
|
4132
|
-
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.
|
|
4250
|
+
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.formControlColor('select'), ...(ngDevMode ? [{ debugName: "_activeColor" }] : /* istanbul ignore next */ []));
|
|
4133
4251
|
_el = inject((ElementRef));
|
|
4134
4252
|
_sso = inject(ScrollStrategyOptions);
|
|
4135
4253
|
_isBrowser = isPlatformBrowser(inject(PLATFORM_ID));
|
|
@@ -4652,7 +4770,7 @@ const CHECKBOX_SIZE_MAP = {
|
|
|
4652
4770
|
class ClxCheckboxComponent {
|
|
4653
4771
|
_themeSvc = inject(ClxThemeService);
|
|
4654
4772
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
4655
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
4773
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('checkbox'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
4656
4774
|
variant = input('solid', ...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
4657
4775
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
4658
4776
|
_size = computed(() => this.size() ?? this._themeSvc.config().defaultSize, ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
@@ -4803,7 +4921,7 @@ const CLX_RADIO_GROUP = new InjectionToken('CLX_RADIO_GROUP');
|
|
|
4803
4921
|
class ClxRadioGroupComponent {
|
|
4804
4922
|
_themeSvc = inject(ClxThemeService);
|
|
4805
4923
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
4806
|
-
resolvedColor = computed(() => this.color() ?? this._themeSvc.
|
|
4924
|
+
resolvedColor = computed(() => this.color() ?? this._themeSvc.formControlColor('radio'), ...(ngDevMode ? [{ debugName: "resolvedColor" }] : /* istanbul ignore next */ []));
|
|
4807
4925
|
variant = input('solid', ...(ngDevMode ? [{ debugName: "variant" }] : /* istanbul ignore next */ []));
|
|
4808
4926
|
size = input('md', ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
4809
4927
|
direction = input('horizontal', ...(ngDevMode ? [{ debugName: "direction" }] : /* istanbul ignore next */ []));
|
|
@@ -4887,7 +5005,7 @@ class ClxRadioComponent {
|
|
|
4887
5005
|
_themeSvc = inject(ClxThemeService);
|
|
4888
5006
|
_checked = computed(() => this._group ? this._group._value() === this.value() : false, ...(ngDevMode ? [{ debugName: "_checked" }] : /* istanbul ignore next */ []));
|
|
4889
5007
|
_isDisabled = computed(() => this._group?.isDisabled() ?? false, ...(ngDevMode ? [{ debugName: "_isDisabled" }] : /* istanbul ignore next */ []));
|
|
4890
|
-
_color = computed(() => this.color() ?? this._group?.resolvedColor() ?? this._themeSvc.
|
|
5008
|
+
_color = computed(() => this.color() ?? this._group?.resolvedColor() ?? this._themeSvc.formControlColor('radio'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
4891
5009
|
_variant = computed(() => this.variant() ?? this._group?.variant() ?? 'solid', ...(ngDevMode ? [{ debugName: "_variant" }] : /* istanbul ignore next */ []));
|
|
4892
5010
|
_size = computed(() => this.size() ?? this._group?.size() ?? this._themeSvc.config().defaultSize, ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
4893
5011
|
_sizeConfig = computed(() => RADIO_SIZE_MAP[this._size()], ...(ngDevMode ? [{ debugName: "_sizeConfig" }] : /* istanbul ignore next */ []));
|
|
@@ -4991,7 +5109,7 @@ const SWITCH_SIZE_MAP = {
|
|
|
4991
5109
|
class ClxSwitchComponent {
|
|
4992
5110
|
_themeSvc = inject(ClxThemeService);
|
|
4993
5111
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
4994
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
5112
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('switch'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
4995
5113
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
4996
5114
|
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
4997
5115
|
label = input('', ...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
@@ -5125,7 +5243,7 @@ class ClxSliderComponent {
|
|
|
5125
5243
|
hint = input('', ...(ngDevMode ? [{ debugName: "hint" }] : /* istanbul ignore next */ []));
|
|
5126
5244
|
errorMessage = input('Valor fuera de rango', ...(ngDevMode ? [{ debugName: "errorMessage" }] : /* istanbul ignore next */ []));
|
|
5127
5245
|
activeColor = input(undefined, ...(ngDevMode ? [{ debugName: "activeColor" }] : /* istanbul ignore next */ []));
|
|
5128
|
-
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.
|
|
5246
|
+
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.formControlColor('slider'), ...(ngDevMode ? [{ debugName: "_activeColor" }] : /* istanbul ignore next */ []));
|
|
5129
5247
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
5130
5248
|
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
5131
5249
|
min = input(0, ...(ngDevMode ? [{ debugName: "min" }] : /* istanbul ignore next */ []));
|
|
@@ -5480,7 +5598,7 @@ class ClxUploadComponent {
|
|
|
5480
5598
|
/** Max file size in bytes. 0 = no limit. */
|
|
5481
5599
|
maxFileSize = input(0, ...(ngDevMode ? [{ debugName: "maxFileSize" }] : /* istanbul ignore next */ []));
|
|
5482
5600
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
5483
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
5601
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('upload'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
5484
5602
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
5485
5603
|
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
5486
5604
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
@@ -6159,7 +6277,7 @@ class ClxColorPickerComponent {
|
|
|
6159
6277
|
format = input('hex', ...(ngDevMode ? [{ debugName: "format" }] : /* istanbul ignore next */ []));
|
|
6160
6278
|
presets = input([], ...(ngDevMode ? [{ debugName: "presets" }] : /* istanbul ignore next */ []));
|
|
6161
6279
|
activeColor = input(undefined, ...(ngDevMode ? [{ debugName: "activeColor" }] : /* istanbul ignore next */ []));
|
|
6162
|
-
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.
|
|
6280
|
+
_activeColor = computed(() => this.activeColor() ?? this._themeSvc.formControlColor('colorpicker'), ...(ngDevMode ? [{ debugName: "_activeColor" }] : /* istanbul ignore next */ []));
|
|
6163
6281
|
hint = input('', ...(ngDevMode ? [{ debugName: "hint" }] : /* istanbul ignore next */ []));
|
|
6164
6282
|
errorMessage = input('Este campo es requerido', ...(ngDevMode ? [{ debugName: "errorMessage" }] : /* istanbul ignore next */ []));
|
|
6165
6283
|
disabled = input(false, ...(ngDevMode ? [{ debugName: "disabled" }] : /* istanbul ignore next */ []));
|
|
@@ -6816,7 +6934,7 @@ class ClxDatepickerComponent {
|
|
|
6816
6934
|
this._isOpen();
|
|
6817
6935
|
return this._el.nativeElement.getBoundingClientRect().width;
|
|
6818
6936
|
}, ...(ngDevMode ? [{ debugName: "_overlayWidth" }] : /* istanbul ignore next */ []));
|
|
6819
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
6937
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('datepicker'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
6820
6938
|
_labelClass = computed(() => `${this._sizeConfig().label} ${CLX_TEXT_LABEL} leading-none`, ...(ngDevMode ? [{ debugName: "_labelClass" }] : /* istanbul ignore next */ []));
|
|
6821
6939
|
_hintClass = computed(() => `${this._sizeConfig().hint} ${CLX_TEXT_HINT}`, ...(ngDevMode ? [{ debugName: "_hintClass" }] : /* istanbul ignore next */ []));
|
|
6822
6940
|
_statusMsgClass = computed(() => `${this._sizeConfig().hint} ${this._statusCfg().msgCls}`, ...(ngDevMode ? [{ debugName: "_statusMsgClass" }] : /* istanbul ignore next */ []));
|
|
@@ -7235,7 +7353,7 @@ class ClxTimepickerComponent {
|
|
|
7235
7353
|
this._isOpen();
|
|
7236
7354
|
return this._el.nativeElement.getBoundingClientRect().width;
|
|
7237
7355
|
}, ...(ngDevMode ? [{ debugName: "_overlayWidth" }] : /* istanbul ignore next */ []));
|
|
7238
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
7356
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('timepicker'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
7239
7357
|
_labelClass = computed(() => `${this._sizeConfig().label} ${CLX_TEXT_LABEL} leading-none`, ...(ngDevMode ? [{ debugName: "_labelClass" }] : /* istanbul ignore next */ []));
|
|
7240
7358
|
_hintClass = computed(() => `${this._sizeConfig().hint} ${CLX_TEXT_HINT}`, ...(ngDevMode ? [{ debugName: "_hintClass" }] : /* istanbul ignore next */ []));
|
|
7241
7359
|
_statusMsgClass = computed(() => `${this._sizeConfig().hint} ${this._statusCfg().msgCls}`, ...(ngDevMode ? [{ debugName: "_statusMsgClass" }] : /* istanbul ignore next */ []));
|
|
@@ -7541,7 +7659,7 @@ class ClxDateRangePickerComponent {
|
|
|
7541
7659
|
label = input('', ...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
7542
7660
|
placeholder = input('Selecciona un rango', ...(ngDevMode ? [{ debugName: "placeholder" }] : /* istanbul ignore next */ []));
|
|
7543
7661
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
7544
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
7662
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('dateRangePicker'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
7545
7663
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
7546
7664
|
_size = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_size" }] : /* istanbul ignore next */ []));
|
|
7547
7665
|
status = input('default', ...(ngDevMode ? [{ debugName: "status" }] : /* istanbul ignore next */ []));
|
|
@@ -8606,7 +8724,7 @@ class ClxEditorComponent {
|
|
|
8606
8724
|
label = input('', ...(ngDevMode ? [{ debugName: "label" }] : /* istanbul ignore next */ []));
|
|
8607
8725
|
placeholder = input('Escribe aquí...', ...(ngDevMode ? [{ debugName: "placeholder" }] : /* istanbul ignore next */ []));
|
|
8608
8726
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
8609
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
8727
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('editor'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
8610
8728
|
size = input(undefined, ...(ngDevMode ? [{ debugName: "size" }] : /* istanbul ignore next */ []));
|
|
8611
8729
|
_editorSize = computed(() => (this.size() ?? this._themeSvc.config().defaultSize), ...(ngDevMode ? [{ debugName: "_editorSize" }] : /* istanbul ignore next */ []));
|
|
8612
8730
|
status = input('default', ...(ngDevMode ? [{ debugName: "status" }] : /* istanbul ignore next */ []));
|
|
@@ -9437,7 +9555,7 @@ class ClxWizardComponent {
|
|
|
9437
9555
|
_themeSvc = inject(ClxThemeService);
|
|
9438
9556
|
// ── Inputs ─────────────────────────────────────────────────────────────────
|
|
9439
9557
|
color = input(undefined, ...(ngDevMode ? [{ debugName: "color" }] : /* istanbul ignore next */ []));
|
|
9440
|
-
_color = computed(() => this.color() ?? this._themeSvc.
|
|
9558
|
+
_color = computed(() => this.color() ?? this._themeSvc.formControlColor('wizard'), ...(ngDevMode ? [{ debugName: "_color" }] : /* istanbul ignore next */ []));
|
|
9441
9559
|
orientation = input('horizontal', ...(ngDevMode ? [{ debugName: "orientation" }] : /* istanbul ignore next */ []));
|
|
9442
9560
|
linear = input(true, ...(ngDevMode ? [{ debugName: "linear" }] : /* istanbul ignore next */ []));
|
|
9443
9561
|
prevLabel = input('Anterior', ...(ngDevMode ? [{ debugName: "prevLabel" }] : /* istanbul ignore next */ []));
|
|
@@ -16725,5 +16843,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.15", ngImpo
|
|
|
16725
16843
|
* Generated bundle index. Do not edit.
|
|
16726
16844
|
*/
|
|
16727
16845
|
|
|
16728
|
-
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 };
|
|
16729
16847
|
//# sourceMappingURL=codexly-ui.mjs.map
|