codexly-ui 0.6.11 → 0.6.12
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/assets/styles/_theme.css +6 -0
- package/fesm2022/codexly-ui.mjs +96 -35
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +94 -63
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { Signal, InjectionToken, OnDestroy, ElementRef, AfterViewInit, AfterContentInit, OnInit, QueryList, TemplateRef,
|
|
2
|
+
import { Signal, InjectionToken, OnDestroy, ElementRef, AfterViewInit, AfterContentInit, OnInit, Provider, QueryList, TemplateRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import * as codexly_ui from 'codexly-ui';
|
|
4
4
|
import { ControlValueAccessor, FormControl, FormGroup } from '@angular/forms';
|
|
5
5
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
@@ -1792,12 +1792,78 @@ declare class ClxBrandComponent {
|
|
|
1792
1792
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxBrandComponent, "clx-brand", never, { "logo": { "alias": "logo"; "required": true; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1793
1793
|
}
|
|
1794
1794
|
|
|
1795
|
+
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';
|
|
1796
|
+
interface ClxFontOption {
|
|
1797
|
+
label: string;
|
|
1798
|
+
value: ClxFontFamily;
|
|
1799
|
+
googleUrl: string;
|
|
1800
|
+
}
|
|
1801
|
+
declare const CLX_FONT_CATALOG: ClxFontOption[];
|
|
1802
|
+
interface ClxNavZoneStyle {
|
|
1803
|
+
color?: ClxColorInput;
|
|
1804
|
+
size?: Extract<ClxSize, 'xs' | 'sm' | 'md'>;
|
|
1805
|
+
/** Which theme weight token this zone reads — 'label' (lighter) or 'emphasis' (heavier) */
|
|
1806
|
+
weight?: 'label' | 'emphasis';
|
|
1807
|
+
}
|
|
1808
|
+
interface ClxThemeConfig {
|
|
1809
|
+
/** Default accent color for all components (buttons, inputs, checkboxes…) */
|
|
1810
|
+
primaryColor: ClxColorInput;
|
|
1811
|
+
/** Color used for secondary actions (cancel, close buttons) */
|
|
1812
|
+
secondaryColor: ClxColorInput;
|
|
1813
|
+
/** Color used for destructive actions and error states */
|
|
1814
|
+
dangerColor: ClxColorInput;
|
|
1815
|
+
/** Color used for success confirmations */
|
|
1816
|
+
successColor: ClxColorInput;
|
|
1817
|
+
/** Color used for warnings */
|
|
1818
|
+
warningColor: ClxColorInput;
|
|
1819
|
+
/** Neutral color for surfaces, nav idle states */
|
|
1820
|
+
neutralColor: ClxColorInput;
|
|
1821
|
+
/** Base text color applied across the app */
|
|
1822
|
+
textColor: ClxColorInput;
|
|
1823
|
+
/** Sidebar nav-group label style override — falls back to neutralColor/xs/label when unset */
|
|
1824
|
+
sidebarGroup?: ClxNavZoneStyle;
|
|
1825
|
+
/** Sidebar top-level menu style override — falls back to primaryColor/sm/emphasis when unset */
|
|
1826
|
+
sidebarMenu?: ClxNavZoneStyle;
|
|
1827
|
+
/** Sidebar menu-item style override — falls back to primaryColor/sm/label when unset */
|
|
1828
|
+
sidebarItem?: ClxNavZoneStyle;
|
|
1829
|
+
/** Default border-radius style applied to all components */
|
|
1830
|
+
borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
1831
|
+
/** Default size for all form/interactive components */
|
|
1832
|
+
defaultSize: Extract<ClxSize, 'sm' | 'md' | 'lg'>;
|
|
1833
|
+
/** Default shape for buttons, badges, tags */
|
|
1834
|
+
defaultShape: Extract<ClxShape, 'rounded' | 'pill'>;
|
|
1835
|
+
/** Body font family — must be one of CLX_FONT_CATALOG values */
|
|
1836
|
+
fontFamily: ClxFontFamily;
|
|
1837
|
+
/** Overall type-weight intensity — shifts both label and emphasis weights together */
|
|
1838
|
+
fontWeight: ClxFontWeightIntensity;
|
|
1839
|
+
}
|
|
1840
|
+
type ClxFontWeightIntensity = 'light' | 'normal' | 'bold';
|
|
1841
|
+
interface ClxFontWeightPair {
|
|
1842
|
+
label: number;
|
|
1843
|
+
emphasis: number;
|
|
1844
|
+
}
|
|
1845
|
+
declare const CLX_FONT_WEIGHT_MAP: Record<ClxFontWeightIntensity, ClxFontWeightPair>;
|
|
1846
|
+
declare const CLX_RADIUS_MAP: Record<ClxThemeConfig['borderRadius'], string>;
|
|
1847
|
+
/** Returns the Tailwind class for a form-control radius */
|
|
1848
|
+
declare function resolveRadius(r: ClxThemeConfig['borderRadius']): string;
|
|
1849
|
+
/** Returns the Tailwind class for a surface/container radius (card, panel, dropzone) */
|
|
1850
|
+
declare function resolveContainerRadius(r: ClxThemeConfig['borderRadius']): string;
|
|
1851
|
+
declare const CLX_THEME_DEFAULTS: ClxThemeConfig;
|
|
1852
|
+
declare const CLX_THEME_CONFIG: InjectionToken<ClxThemeConfig>;
|
|
1853
|
+
declare function provideCodexlyTheme(config: Partial<ClxThemeConfig>): Provider;
|
|
1854
|
+
|
|
1795
1855
|
declare class ClxMenuComponent implements AfterViewInit {
|
|
1796
1856
|
private readonly _themeSvc;
|
|
1797
1857
|
readonly label: _angular_core.InputSignal<string>;
|
|
1798
1858
|
readonly icon: _angular_core.InputSignal<string>;
|
|
1799
|
-
|
|
1800
|
-
|
|
1859
|
+
/** Per-instance override — any field left unset falls back to the theme's sidebarMenu style */
|
|
1860
|
+
readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
|
|
1861
|
+
protected readonly _resolved: _angular_core.Signal<{
|
|
1862
|
+
color: codexly_ui.ClxColorInput;
|
|
1863
|
+
size: "xs" | "sm" | "md";
|
|
1864
|
+
weight: "label" | "emphasis";
|
|
1865
|
+
}>;
|
|
1866
|
+
protected readonly _color: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
1801
1867
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1802
1868
|
readonly active: _angular_core.InputSignal<boolean>;
|
|
1803
1869
|
readonly routerLink: _angular_core.InputSignal<string | any[]>;
|
|
@@ -1816,7 +1882,7 @@ declare class ClxMenuComponent implements AfterViewInit {
|
|
|
1816
1882
|
protected readonly NAV_CHILDREN_LIST = "ml-6 py-1 space-y-0.5";
|
|
1817
1883
|
protected _toggle(): void;
|
|
1818
1884
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxMenuComponent, never>;
|
|
1819
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "
|
|
1885
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "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>;
|
|
1820
1886
|
}
|
|
1821
1887
|
|
|
1822
1888
|
declare class ClxMenuItemComponent {
|
|
@@ -1824,7 +1890,8 @@ declare class ClxMenuItemComponent {
|
|
|
1824
1890
|
readonly label: _angular_core.InputSignal<string>;
|
|
1825
1891
|
readonly icon: _angular_core.InputSignal<string>;
|
|
1826
1892
|
readonly active: _angular_core.InputSignal<boolean>;
|
|
1827
|
-
|
|
1893
|
+
/** Per-instance override — any field left unset falls back to the theme's sidebarItem style */
|
|
1894
|
+
readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
|
|
1828
1895
|
readonly nested: _angular_core.InputSignal<boolean>;
|
|
1829
1896
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1830
1897
|
readonly routerLink: _angular_core.InputSignal<string | any[]>;
|
|
@@ -1832,22 +1899,25 @@ declare class ClxMenuItemComponent {
|
|
|
1832
1899
|
exact: boolean;
|
|
1833
1900
|
}>;
|
|
1834
1901
|
readonly itemClick: _angular_core.OutputEmitterRef<void>;
|
|
1835
|
-
private readonly
|
|
1902
|
+
private readonly _resolved;
|
|
1836
1903
|
private readonly _geom;
|
|
1837
1904
|
protected readonly _iconCls: _angular_core.Signal<string>;
|
|
1838
1905
|
protected readonly _idleCls: _angular_core.Signal<string>;
|
|
1839
1906
|
protected readonly _activeCls: _angular_core.Signal<string>;
|
|
1840
1907
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxMenuItemComponent, never>;
|
|
1841
|
-
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; }; "
|
|
1908
|
+
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; }; "style": { "alias": "style"; "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>;
|
|
1842
1909
|
}
|
|
1843
1910
|
|
|
1844
1911
|
declare class ClxNavGroupComponent {
|
|
1912
|
+
private readonly _themeSvc;
|
|
1845
1913
|
readonly label: _angular_core.InputSignal<string>;
|
|
1846
1914
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
1847
|
-
|
|
1915
|
+
/** Per-instance override — any field left unset falls back to the theme's sidebarGroup style */
|
|
1916
|
+
readonly style: _angular_core.InputSignal<ClxNavZoneStyle | undefined>;
|
|
1917
|
+
private readonly _resolved;
|
|
1848
1918
|
readonly labelClass: _angular_core.Signal<string>;
|
|
1849
1919
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNavGroupComponent, never>;
|
|
1850
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "
|
|
1920
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1851
1921
|
}
|
|
1852
1922
|
|
|
1853
1923
|
interface ClxProfileMenuItem {
|
|
@@ -2942,52 +3012,6 @@ declare class ClxCartSummaryDrawer {
|
|
|
2942
3012
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCartSummaryDrawer, "clx-cart-summary-drawer", never, {}, {}, never, never, true, never>;
|
|
2943
3013
|
}
|
|
2944
3014
|
|
|
2945
|
-
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';
|
|
2946
|
-
interface ClxFontOption {
|
|
2947
|
-
label: string;
|
|
2948
|
-
value: ClxFontFamily;
|
|
2949
|
-
googleUrl: string;
|
|
2950
|
-
}
|
|
2951
|
-
declare const CLX_FONT_CATALOG: ClxFontOption[];
|
|
2952
|
-
interface ClxThemeConfig {
|
|
2953
|
-
/** Default accent color for all components (buttons, inputs, checkboxes…) */
|
|
2954
|
-
primaryColor: ClxColorInput;
|
|
2955
|
-
/** Color used for secondary actions (cancel, close buttons) */
|
|
2956
|
-
secondaryColor: ClxColorInput;
|
|
2957
|
-
/** Color used for destructive actions and error states */
|
|
2958
|
-
dangerColor: ClxColorInput;
|
|
2959
|
-
/** Color used for success confirmations */
|
|
2960
|
-
successColor: ClxColorInput;
|
|
2961
|
-
/** Color used for warnings */
|
|
2962
|
-
warningColor: ClxColorInput;
|
|
2963
|
-
/** Neutral color for surfaces, nav idle states */
|
|
2964
|
-
neutralColor: ClxColorInput;
|
|
2965
|
-
/** Base text color applied across the app */
|
|
2966
|
-
textColor: ClxColorInput;
|
|
2967
|
-
/** Sidebar nav-group label color override — falls back to neutralColor when unset */
|
|
2968
|
-
sidebarGroupColor?: ClxColorInput;
|
|
2969
|
-
/** Sidebar top-level menu color override — falls back to primaryColor when unset */
|
|
2970
|
-
sidebarMenuColor?: ClxColorInput;
|
|
2971
|
-
/** Sidebar menu-item color override — falls back to primaryColor when unset */
|
|
2972
|
-
sidebarItemColor?: ClxColorInput;
|
|
2973
|
-
/** Default border-radius style applied to all components */
|
|
2974
|
-
borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
2975
|
-
/** Default size for all form/interactive components */
|
|
2976
|
-
defaultSize: Extract<ClxSize, 'sm' | 'md' | 'lg'>;
|
|
2977
|
-
/** Default shape for buttons, badges, tags */
|
|
2978
|
-
defaultShape: Extract<ClxShape, 'rounded' | 'pill'>;
|
|
2979
|
-
/** Body font family — must be one of CLX_FONT_CATALOG values */
|
|
2980
|
-
fontFamily: ClxFontFamily;
|
|
2981
|
-
}
|
|
2982
|
-
declare const CLX_RADIUS_MAP: Record<ClxThemeConfig['borderRadius'], string>;
|
|
2983
|
-
/** Returns the Tailwind class for a form-control radius */
|
|
2984
|
-
declare function resolveRadius(r: ClxThemeConfig['borderRadius']): string;
|
|
2985
|
-
/** Returns the Tailwind class for a surface/container radius (card, panel, dropzone) */
|
|
2986
|
-
declare function resolveContainerRadius(r: ClxThemeConfig['borderRadius']): string;
|
|
2987
|
-
declare const CLX_THEME_DEFAULTS: ClxThemeConfig;
|
|
2988
|
-
declare const CLX_THEME_CONFIG: InjectionToken<ClxThemeConfig>;
|
|
2989
|
-
declare function provideCodexlyTheme(config: Partial<ClxThemeConfig>): Provider;
|
|
2990
|
-
|
|
2991
3015
|
declare const CLX_TEXT_LABEL = "text-clx-text-label";
|
|
2992
3016
|
declare const CLX_TEXT_HINT = "text-clx-text-subtle";
|
|
2993
3017
|
declare const CLX_TEXT_DISABLED = "text-clx-text-subtle";
|
|
@@ -3083,6 +3107,11 @@ declare class ClxAnimateGroupDirective {
|
|
|
3083
3107
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ClxAnimateGroupDirective, "[clxAnimateGroup]", ["clxAnimateGroup"], { "stagger": { "alias": "stagger"; "required": false; "isSignal": true; }; }, {}, ["children"], never, true, never>;
|
|
3084
3108
|
}
|
|
3085
3109
|
|
|
3110
|
+
interface ClxResolvedNavZoneStyle {
|
|
3111
|
+
color: ClxColorInput;
|
|
3112
|
+
size: Extract<ClxSize, 'xs' | 'sm' | 'md'>;
|
|
3113
|
+
weight: 'label' | 'emphasis';
|
|
3114
|
+
}
|
|
3086
3115
|
type ClxThemeMode = 'light' | 'dark' | 'system';
|
|
3087
3116
|
declare class ClxThemeService {
|
|
3088
3117
|
private readonly _isBrowser;
|
|
@@ -3093,12 +3122,13 @@ declare class ClxThemeService {
|
|
|
3093
3122
|
readonly mode: _angular_core.Signal<ClxThemeMode>;
|
|
3094
3123
|
readonly config: _angular_core.Signal<ClxThemeConfig>;
|
|
3095
3124
|
readonly isDark: _angular_core.Signal<boolean>;
|
|
3096
|
-
/**
|
|
3097
|
-
readonly
|
|
3098
|
-
/**
|
|
3099
|
-
readonly
|
|
3100
|
-
/**
|
|
3101
|
-
readonly
|
|
3125
|
+
/** Resolved style for clx-nav-group labels — falls back to neutralColor/xs/label */
|
|
3126
|
+
readonly sidebarGroupStyle: _angular_core.Signal<ClxResolvedNavZoneStyle>;
|
|
3127
|
+
/** Resolved style for top-level clx-menu — falls back to primaryColor/sm/emphasis */
|
|
3128
|
+
readonly sidebarMenuStyle: _angular_core.Signal<ClxResolvedNavZoneStyle>;
|
|
3129
|
+
/** Resolved style for clx-menu-item — falls back to primaryColor/sm/label */
|
|
3130
|
+
readonly sidebarItemStyle: _angular_core.Signal<ClxResolvedNavZoneStyle>;
|
|
3131
|
+
private _resolveNavZoneStyle;
|
|
3102
3132
|
constructor();
|
|
3103
3133
|
setMode(mode: ClxThemeMode): void;
|
|
3104
3134
|
setConfig(patch: Partial<ClxThemeConfig>): void;
|
|
@@ -3106,6 +3136,7 @@ declare class ClxThemeService {
|
|
|
3106
3136
|
private _applyColorVar;
|
|
3107
3137
|
private _applyTextColor;
|
|
3108
3138
|
private _applyFont;
|
|
3139
|
+
private _applyFontWeight;
|
|
3109
3140
|
private _loadMode;
|
|
3110
3141
|
private _getSystemDark;
|
|
3111
3142
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxThemeService, never>;
|
|
@@ -3194,5 +3225,5 @@ declare class ClxToastService {
|
|
|
3194
3225
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ClxToastService>;
|
|
3195
3226
|
}
|
|
3196
3227
|
|
|
3197
|
-
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, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFabComponent, 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 };
|
|
3198
|
-
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, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, 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, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|
|
3228
|
+
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, 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, 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 };
|
|
3229
|
+
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, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxExistingFile, ClxFabItem, ClxFabPosition, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxFontFamily, ClxFontOption, ClxFontWeightIntensity, ClxFontWeightPair, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNavZoneStyle, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxResolvedNavZoneStyle, 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, ClxUploadItemAction, ClxUploadItemActionResolver, ClxUploadPreviewItem, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|