codexly-ui 0.1.21 → 0.1.22
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/fonts/roboto-bold-italic.ttf +0 -0
- package/assets/fonts/roboto-bold.ttf +0 -0
- package/assets/fonts/roboto-italic.ttf +0 -0
- package/assets/fonts/roboto-light-italic.ttf +0 -0
- package/assets/fonts/roboto-light.ttf +0 -0
- package/assets/fonts/roboto-medium-italic.ttf +0 -0
- package/assets/fonts/roboto-medium.ttf +0 -0
- package/assets/fonts/roboto-regular.ttf +0 -0
- package/assets/fonts/roboto-semibold-italic.ttf +0 -0
- package/assets/fonts/roboto-semibold.ttf +0 -0
- package/assets/styles/_fonts.css +84 -3
- package/assets/styles/_globals.css +34 -43
- package/assets/styles/_safelist.css +22 -3
- package/assets/styles/_theme.css +86 -96
- package/fesm2022/codexly-ui.mjs +1292 -1655
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +29 -66
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ declare class ClxStatCardComponent {
|
|
|
116
116
|
protected readonly _gradId: _angular_core.Signal<string>;
|
|
117
117
|
protected readonly _trendColor: _angular_core.Signal<"red" | "green" | "slate">;
|
|
118
118
|
protected readonly _trendArrowIcon: _angular_core.Signal<"arrow_upward" | "arrow_downward" | "remove">;
|
|
119
|
-
protected readonly _trendTextClass: _angular_core.Signal<"text-
|
|
119
|
+
protected readonly _trendTextClass: _angular_core.Signal<"text-red-500" | "text-green-500" | "text-slate-400">;
|
|
120
120
|
protected readonly _trendIcon: _angular_core.Signal<"remove" | "arrow_outward" | "south_east">;
|
|
121
121
|
protected readonly _formattedValue: _angular_core.Signal<string>;
|
|
122
122
|
protected readonly _points: _angular_core.Signal<SparkPoint[]>;
|
|
@@ -474,22 +474,20 @@ declare class ClxAlertComponent implements OnInit, OnDestroy {
|
|
|
474
474
|
private readonly _resolve;
|
|
475
475
|
private readonly _animate;
|
|
476
476
|
private readonly _el;
|
|
477
|
-
private readonly _themeSvc;
|
|
478
477
|
private readonly _zone;
|
|
479
478
|
constructor();
|
|
480
479
|
private get _type();
|
|
481
|
-
private get _isConfirm();
|
|
482
480
|
protected readonly _icon: _angular_core.WritableSignal<string>;
|
|
481
|
+
protected readonly _iconBg: _angular_core.WritableSignal<string>;
|
|
482
|
+
protected readonly _iconColor: _angular_core.WritableSignal<string>;
|
|
483
|
+
protected readonly _progressColor: _angular_core.WritableSignal<string>;
|
|
483
484
|
protected readonly _title: _angular_core.WritableSignal<string>;
|
|
484
485
|
protected readonly _message: _angular_core.WritableSignal<string>;
|
|
485
486
|
protected readonly _showCancel: _angular_core.WritableSignal<boolean>;
|
|
486
|
-
protected readonly _iconBg: _angular_core.Signal<string>;
|
|
487
|
-
protected readonly _iconColor: _angular_core.Signal<string>;
|
|
488
|
-
protected readonly _progressColor: _angular_core.Signal<string>;
|
|
489
487
|
protected readonly _confirmText: _angular_core.WritableSignal<string>;
|
|
490
|
-
protected readonly _confirmColor: _angular_core.
|
|
488
|
+
protected readonly _confirmColor: _angular_core.WritableSignal<codexly_ui.ClxColorInput>;
|
|
491
489
|
protected readonly _cancelText: _angular_core.WritableSignal<string>;
|
|
492
|
-
protected readonly _cancelColor: _angular_core.
|
|
490
|
+
protected readonly _cancelColor: _angular_core.WritableSignal<codexly_ui.ClxColorInput>;
|
|
493
491
|
protected readonly _cancelVariant: _angular_core.WritableSignal<ClxButtonVariant>;
|
|
494
492
|
protected readonly _timerTotal: _angular_core.WritableSignal<number>;
|
|
495
493
|
protected readonly _progressPct: _angular_core.WritableSignal<number>;
|
|
@@ -681,8 +679,6 @@ interface ClxSelectOption {
|
|
|
681
679
|
value: string | number;
|
|
682
680
|
label: string;
|
|
683
681
|
disabled?: boolean;
|
|
684
|
-
/** Renders the option label using this font family, for font-picker selects */
|
|
685
|
-
previewFontFamily?: string;
|
|
686
682
|
}
|
|
687
683
|
|
|
688
684
|
type PageItem = {
|
|
@@ -890,7 +886,7 @@ declare class ClxAvatarComponent {
|
|
|
890
886
|
protected readonly _contentType: _angular_core.Signal<ClxAvatarContentType>;
|
|
891
887
|
protected readonly _initials: _angular_core.Signal<string>;
|
|
892
888
|
protected readonly _iconSize: _angular_core.Signal<ClxSize>;
|
|
893
|
-
protected readonly _shapeClass: _angular_core.Signal<"rounded-
|
|
889
|
+
protected readonly _shapeClass: _angular_core.Signal<"rounded-xl" | "rounded-full">;
|
|
894
890
|
protected readonly _colorClass: _angular_core.Signal<string>;
|
|
895
891
|
protected readonly _textClass: _angular_core.Signal<string>;
|
|
896
892
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
@@ -1003,11 +999,11 @@ declare class ClxBadgeComponent {
|
|
|
1003
999
|
private readonly _themeSvc;
|
|
1004
1000
|
readonly variant: _angular_core.InputSignal<ClxBadgeVariant>;
|
|
1005
1001
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1006
|
-
readonly size: _angular_core.InputSignal<"
|
|
1002
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "xs" | undefined>;
|
|
1007
1003
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
1008
1004
|
readonly positioned: _angular_core.InputSignal<boolean>;
|
|
1009
1005
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1010
|
-
protected readonly _size: _angular_core.Signal<"
|
|
1006
|
+
protected readonly _size: _angular_core.Signal<"sm" | "md" | "xs">;
|
|
1011
1007
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
1012
1008
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
1013
1009
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxBadgeComponent, never>;
|
|
@@ -1018,10 +1014,10 @@ declare class ClxButtonComponent {
|
|
|
1018
1014
|
private readonly _themeSvc;
|
|
1019
1015
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
1020
1016
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
1021
|
-
readonly size: _angular_core.InputSignal<"
|
|
1017
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg" | "xxs" | "xs" | undefined>;
|
|
1022
1018
|
readonly shape: _angular_core.InputSignal<ClxShape | undefined>;
|
|
1023
1019
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1024
|
-
protected readonly _size: _angular_core.Signal<"
|
|
1020
|
+
protected readonly _size: _angular_core.Signal<"sm" | "md" | "lg" | "xxs" | "xs">;
|
|
1025
1021
|
protected readonly _shape: _angular_core.Signal<ClxShape>;
|
|
1026
1022
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
1027
1023
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1658,7 +1654,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1658
1654
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
1659
1655
|
readonly size: _angular_core.InputSignal<ClxEditorSize | undefined>;
|
|
1660
1656
|
protected readonly _editorSize: _angular_core.Signal<ClxEditorSize>;
|
|
1661
|
-
readonly status: _angular_core.InputSignal<"
|
|
1657
|
+
readonly status: _angular_core.InputSignal<"default" | "error" | "success">;
|
|
1662
1658
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1663
1659
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1664
1660
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1966,8 +1962,6 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
1966
1962
|
protected readonly _activeColor: Signal<ClxColorInput>;
|
|
1967
1963
|
private readonly _el;
|
|
1968
1964
|
private readonly _sso;
|
|
1969
|
-
private readonly _isBrowser;
|
|
1970
|
-
private readonly _loadedFonts;
|
|
1971
1965
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
1972
1966
|
constructor();
|
|
1973
1967
|
private _onChange;
|
|
@@ -1991,7 +1985,6 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
1991
1985
|
protected readonly _filteredOptions: Signal<ClxSelectOption[]>;
|
|
1992
1986
|
protected readonly _showAsyncPlaceholder: Signal<boolean>;
|
|
1993
1987
|
protected readonly _displayValue: Signal<string>;
|
|
1994
|
-
protected readonly _displayFontFamily: Signal<string | null>;
|
|
1995
1988
|
protected readonly _overlayWidth: Signal<number>;
|
|
1996
1989
|
protected readonly _labelClass: Signal<string>;
|
|
1997
1990
|
protected readonly _hintClass: Signal<string>;
|
|
@@ -2005,7 +1998,6 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
2005
1998
|
protected _optionClass(opt: ClxSelectOption): string;
|
|
2006
1999
|
protected _togglePanel(): void;
|
|
2007
2000
|
private _openPanel;
|
|
2008
|
-
private _loadPreviewFont;
|
|
2009
2001
|
protected _closePanel(): void;
|
|
2010
2002
|
protected _selectOption(opt: ClxSelectOption): void;
|
|
2011
2003
|
protected _deselect(value: string | number): void;
|
|
@@ -2322,29 +2314,24 @@ declare class ClxWizardComponent implements AfterContentInit {
|
|
|
2322
2314
|
declare class ClxAppLayoutComponent implements OnInit, OnDestroy {
|
|
2323
2315
|
private readonly _zone;
|
|
2324
2316
|
private readonly _document;
|
|
2325
|
-
private readonly _el;
|
|
2326
2317
|
readonly activeColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2327
2318
|
readonly _sidebarOpen: _angular_core.WritableSignal<boolean>;
|
|
2328
2319
|
readonly collapsed: _angular_core.WritableSignal<boolean>;
|
|
2329
2320
|
readonly _hovered: _angular_core.WritableSignal<boolean>;
|
|
2330
|
-
readonly _isMobile
|
|
2321
|
+
private readonly _isMobile;
|
|
2331
2322
|
readonly collapsedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2332
2323
|
readonly expandedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2324
|
+
constructor();
|
|
2333
2325
|
protected readonly _showBackdrop: _angular_core.Signal<boolean>;
|
|
2334
2326
|
readonly _isExpanded: _angular_core.Signal<boolean>;
|
|
2335
2327
|
protected readonly _sidebarCls: _angular_core.Signal<string>;
|
|
2336
|
-
private _nativeSetTimeout;
|
|
2337
|
-
private _nativeClearTimeout;
|
|
2338
2328
|
private _mql;
|
|
2339
2329
|
private _mqlListener;
|
|
2340
|
-
private _resizeTimer;
|
|
2341
|
-
private _resizeListener;
|
|
2342
|
-
private _mouseEnterFn;
|
|
2343
|
-
private _mouseLeaveFn;
|
|
2344
|
-
private _sidebarEl;
|
|
2345
2330
|
ngOnInit(): void;
|
|
2346
2331
|
ngOnDestroy(): void;
|
|
2347
2332
|
_toggleCollapsed(): void;
|
|
2333
|
+
_onSidebarEnter(): void;
|
|
2334
|
+
_onSidebarLeave(): void;
|
|
2348
2335
|
toggleSidebar(): void;
|
|
2349
2336
|
openSidebar(): void;
|
|
2350
2337
|
closeSidebar(): void;
|
|
@@ -2374,7 +2361,9 @@ declare class ClxMenuItemComponent {
|
|
|
2374
2361
|
exact: boolean;
|
|
2375
2362
|
}>;
|
|
2376
2363
|
readonly itemClick: _angular_core.OutputEmitterRef<void>;
|
|
2364
|
+
private readonly _inheritedColor;
|
|
2377
2365
|
private readonly _resolvedColor;
|
|
2366
|
+
inheritColor(c: ClxColorInput): void;
|
|
2378
2367
|
private readonly _geom;
|
|
2379
2368
|
protected readonly _iconCls: _angular_core.Signal<string>;
|
|
2380
2369
|
protected readonly _idleCls: _angular_core.Signal<string>;
|
|
@@ -2383,7 +2372,7 @@ declare class ClxMenuItemComponent {
|
|
|
2383
2372
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuItemComponent, "clx-menu-item", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "nested": { "alias": "nested"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
2384
2373
|
}
|
|
2385
2374
|
|
|
2386
|
-
declare class ClxMenuComponent implements AfterViewInit {
|
|
2375
|
+
declare class ClxMenuComponent implements AfterContentInit, AfterViewInit {
|
|
2387
2376
|
private readonly _themeSvc;
|
|
2388
2377
|
readonly label: _angular_core.InputSignal<string>;
|
|
2389
2378
|
readonly icon: _angular_core.InputSignal<string>;
|
|
@@ -2397,6 +2386,7 @@ declare class ClxMenuComponent implements AfterViewInit {
|
|
|
2397
2386
|
}>;
|
|
2398
2387
|
readonly _isExpanded: _angular_core.WritableSignal<boolean>;
|
|
2399
2388
|
private readonly _rla?;
|
|
2389
|
+
private readonly _childItems;
|
|
2400
2390
|
private readonly _destroyRef;
|
|
2401
2391
|
constructor();
|
|
2402
2392
|
ngAfterViewInit(): void;
|
|
@@ -2405,18 +2395,18 @@ declare class ClxMenuComponent implements AfterViewInit {
|
|
|
2405
2395
|
protected readonly NAV_CHILDREN_WRAPPER = "grid transition-all duration-300 ease-in-out";
|
|
2406
2396
|
protected readonly NAV_CHILDREN_INNER = "overflow-hidden";
|
|
2407
2397
|
protected readonly NAV_CHILDREN_LIST = "ml-6 py-1 space-y-0.5";
|
|
2398
|
+
ngAfterContentInit(): void;
|
|
2399
|
+
private _syncChildren;
|
|
2408
2400
|
protected _toggle(): void;
|
|
2409
2401
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxMenuComponent, never>;
|
|
2410
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, {},
|
|
2402
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxMenuComponent, "clx-menu", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "routerLink": { "alias": "routerLink"; "required": false; "isSignal": true; }; "routerLinkActiveOptions": { "alias": "routerLinkActiveOptions"; "required": false; "isSignal": true; }; }, {}, ["_childItems"], ["*"], true, never>;
|
|
2411
2403
|
}
|
|
2412
2404
|
|
|
2413
2405
|
declare class ClxNavGroupComponent {
|
|
2414
2406
|
readonly label: _angular_core.InputSignal<string>;
|
|
2415
2407
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
2416
|
-
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2417
|
-
readonly labelClass: _angular_core.Signal<string>;
|
|
2418
2408
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNavGroupComponent, never>;
|
|
2419
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; };
|
|
2409
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2420
2410
|
}
|
|
2421
2411
|
|
|
2422
2412
|
interface ClxProfileMenuItem {
|
|
@@ -2542,8 +2532,9 @@ declare class ClxTableComponent<T = any> {
|
|
|
2542
2532
|
protected readonly _emptyDescription: _angular_core.Signal<string>;
|
|
2543
2533
|
protected readonly _allSelected: _angular_core.Signal<boolean>;
|
|
2544
2534
|
protected _isSelected(item: T): boolean;
|
|
2545
|
-
protected
|
|
2546
|
-
protected
|
|
2535
|
+
protected _getAlignClass(align: 'left' | 'center' | 'right'): string;
|
|
2536
|
+
protected _getHeaderCellClass(col: ClxTableColumn<T>): string;
|
|
2537
|
+
protected _getDataCellClass(col: ClxTableColumn<T>): string;
|
|
2547
2538
|
protected _getCellValue(item: T, key: string): unknown;
|
|
2548
2539
|
protected _handleSort(key: string): void;
|
|
2549
2540
|
protected _handleSelectAll(checked: boolean): void;
|
|
@@ -2691,18 +2682,9 @@ declare class ClxCartSummaryDrawer {
|
|
|
2691
2682
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCartSummaryDrawer, "clx-cart-summary-drawer", never, {}, {}, never, never, true, never>;
|
|
2692
2683
|
}
|
|
2693
2684
|
|
|
2694
|
-
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';
|
|
2695
|
-
interface ClxFontOption {
|
|
2696
|
-
label: string;
|
|
2697
|
-
value: ClxFontFamily;
|
|
2698
|
-
googleUrl: string;
|
|
2699
|
-
}
|
|
2700
|
-
declare const CLX_FONT_CATALOG: ClxFontOption[];
|
|
2701
2685
|
interface ClxThemeConfig {
|
|
2702
2686
|
/** Default accent color for all components (buttons, inputs, checkboxes…) */
|
|
2703
2687
|
primaryColor: ClxColorInput;
|
|
2704
|
-
/** Color used for secondary actions (cancel, close buttons) */
|
|
2705
|
-
secondaryColor: ClxColorInput;
|
|
2706
2688
|
/** Color used for destructive actions and error states */
|
|
2707
2689
|
dangerColor: ClxColorInput;
|
|
2708
2690
|
/** Color used for success confirmations */
|
|
@@ -2711,22 +2693,12 @@ interface ClxThemeConfig {
|
|
|
2711
2693
|
warningColor: ClxColorInput;
|
|
2712
2694
|
/** Neutral color for surfaces, nav idle states */
|
|
2713
2695
|
neutralColor: ClxColorInput;
|
|
2714
|
-
/** Base text color applied across the app */
|
|
2715
|
-
textColor: ClxColorInput;
|
|
2716
|
-
/** Sidebar nav-group label color override — falls back to neutralColor when unset */
|
|
2717
|
-
sidebarGroupColor?: ClxColorInput;
|
|
2718
|
-
/** Sidebar top-level menu color override — falls back to primaryColor when unset */
|
|
2719
|
-
sidebarMenuColor?: ClxColorInput;
|
|
2720
|
-
/** Sidebar menu-item color override — falls back to primaryColor when unset */
|
|
2721
|
-
sidebarItemColor?: ClxColorInput;
|
|
2722
2696
|
/** Default border-radius style applied to all components */
|
|
2723
2697
|
borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
2724
2698
|
/** Default size for all form/interactive components */
|
|
2725
2699
|
defaultSize: Extract<ClxSize, 'sm' | 'md' | 'lg'>;
|
|
2726
2700
|
/** Default shape for buttons, badges, tags */
|
|
2727
2701
|
defaultShape: Extract<ClxShape, 'rounded' | 'pill'>;
|
|
2728
|
-
/** Body font family — must be one of CLX_FONT_CATALOG values */
|
|
2729
|
-
fontFamily: ClxFontFamily;
|
|
2730
2702
|
}
|
|
2731
2703
|
declare const CLX_RADIUS_MAP: Record<ClxThemeConfig['borderRadius'], string>;
|
|
2732
2704
|
/** Returns the Tailwind class for a form-control radius */
|
|
@@ -2916,19 +2888,10 @@ declare class ClxThemeService {
|
|
|
2916
2888
|
readonly mode: _angular_core.Signal<ClxThemeMode>;
|
|
2917
2889
|
readonly config: _angular_core.Signal<ClxThemeConfig>;
|
|
2918
2890
|
readonly isDark: _angular_core.Signal<boolean>;
|
|
2919
|
-
/** Color to apply to clx-nav-group labels — falls back to neutralColor */
|
|
2920
|
-
readonly sidebarGroupColor: _angular_core.Signal<ClxColorInput>;
|
|
2921
|
-
/** Color to apply to top-level clx-menu — falls back to primaryColor */
|
|
2922
|
-
readonly sidebarMenuColor: _angular_core.Signal<ClxColorInput>;
|
|
2923
|
-
/** Color to apply to clx-menu-item — falls back to primaryColor */
|
|
2924
|
-
readonly sidebarItemColor: _angular_core.Signal<ClxColorInput>;
|
|
2925
2891
|
constructor();
|
|
2926
2892
|
setMode(mode: ClxThemeMode): void;
|
|
2927
2893
|
setConfig(patch: Partial<ClxThemeConfig>): void;
|
|
2928
2894
|
toggle(): void;
|
|
2929
|
-
private _applyColorVar;
|
|
2930
|
-
private _applyTextColor;
|
|
2931
|
-
private _applyFont;
|
|
2932
2895
|
private _loadMode;
|
|
2933
2896
|
private _getSystemDark;
|
|
2934
2897
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxThemeService, never>;
|
|
@@ -3094,5 +3057,5 @@ declare class ClxPageEmptyComponent {
|
|
|
3094
3057
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageEmptyComponent, "clx-page-empty", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "ctaLabel": { "alias": "ctaLabel"; "required": false; "isSignal": true; }; "ctaIcon": { "alias": "ctaIcon"; "required": false; "isSignal": true; }; "ctaColor": { "alias": "ctaColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "cta": "cta"; }, never, never, true, never>;
|
|
3095
3058
|
}
|
|
3096
3059
|
|
|
3097
|
-
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,
|
|
3098
|
-
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues,
|
|
3060
|
+
export { CLX_ADDON_BORDER, CLX_ADDON_TEXT, CLX_ALERT_OPTIONS, CLX_ALERT_RESOLVE, CLX_BG_ADDON, CLX_BG_DISABLED, CLX_BG_ICON_WRAP, CLX_BG_SECTION, CLX_BG_SURFACE, CLX_BORDER_DEFAULT, CLX_BORDER_DISABLED, CLX_BORDER_MEDIUM, CLX_COLOR_HEX, CLX_COLOR_HEX_100, CLX_COLOR_MAP, CLX_MODAL_ANIM_CONFIG, CLX_MODAL_DATA, CLX_MODAL_REF, CLX_OPTION_DISABLED, CLX_PLACEHOLDER, CLX_RADIO_GROUP, CLX_RADIUS_MAP, CLX_TEXT_BODY, CLX_TEXT_DISABLED, CLX_TEXT_HEADING, CLX_TEXT_HINT, CLX_TEXT_IDLE, CLX_TEXT_INPUT, CLX_TEXT_LABEL, CLX_TEXT_OPTION, CLX_TEXT_SUBTITLE, CLX_TEXT_TITLE, CLX_THEME_CONFIG, CLX_THEME_DEFAULTS, CLX_TOAST_DEFAULTS, ClxAlertComponent, ClxAlertService, ClxAnimateDirective, ClxAnimateGroupDirective, ClxAnimateService, ClxAppLayoutComponent, ClxAvatarComponent, ClxBadgeComponent, ClxBrandComponent, ClxButtonComponent, ClxButtonGroupComponent, ClxCardBodyDirective, ClxCardComponent, ClxCardFooterDirective, ClxCardHeaderDirective, ClxCarouselComponent, ClxCarouselDirective, ClxCartComponent, ClxCartSummaryDrawer, ClxCellDirective, ClxChartComponent, ClxCheckboxComponent, ClxColorPickerComponent, ClxColumnDefDirective, ClxDateRangePickerComponent, ClxDatepickerComponent, ClxDrawerComponent, ClxDrawerService, ClxEditorComponent, ClxEditorLinkModalComponent, ClxFilterPanelComponent, ClxHeaderCellDirective, ClxIconComponent, ClxInputComponent, ClxListComponent, ClxListItemComponent, ClxMenuComponent, ClxMenuItemComponent, ClxModalComponent, ClxModalService, ClxNavGroupComponent, ClxNumberComponent, ClxPageEmptyComponent, ClxPageNotFoundComponent, ClxPageServerErrorComponent, ClxPageUnauthorizedComponent, ClxPaginationComponent, ClxProductComponent, ClxProductDetailComponent, ClxProfileComponent, ClxProgressBarComponent, ClxRadioComponent, ClxRadioGroupComponent, ClxRatingComponent, ClxSelectComponent, ClxSkeletonComponent, ClxSliderComponent, ClxSpinnerComponent, ClxStatCardComponent, ClxStepComponent, ClxStepperComponent, ClxSwitchComponent, ClxTabDirective, ClxTableComponent, ClxTabsComponent, ClxTagComponent, ClxTextareaComponent, ClxThemeService, ClxTimelineComponent, ClxTimelineItemComponent, ClxTimepickerComponent, ClxToastComponent, ClxToastContainerComponent, ClxToastService, ClxTooltipComponent, ClxTooltipDirective, ClxTreeComponent, ClxUploadComponent, ClxWishlistComponent, ClxWizardComponent, TIMEPICKER_SIZE_MAP, parseColorInput, provideCodexlyTheme, resolveColor, resolveContainerRadius, resolveRadius };
|
|
3061
|
+
export type { ClxAlertButtonOptions, ClxAlertOptions, ClxAlertResult, ClxAlertType, ClxAnimateAttentionSeeker, ClxAnimateBackEntrance, ClxAnimateBackExit, ClxAnimateBouncingEntrance, ClxAnimateBouncingExit, ClxAnimateConfig, ClxAnimateDefaults, ClxAnimateEvent, ClxAnimateFadingEntrance, ClxAnimateFadingExit, ClxAnimateFlipper, ClxAnimateLightspeed, ClxAnimateName, ClxAnimateRotatingEntrance, ClxAnimateRotatingExit, ClxAnimateSlidingEntrance, ClxAnimateSlidingExit, ClxAnimateSpecial, ClxAnimateTrigger, ClxAnimateZoomingEntrance, ClxAnimateZoomingExit, ClxAvatarContentType, ClxBadgeVariant, ClxButtonColor, ClxButtonGroupShape, ClxButtonVariant, ClxCardPadding, ClxCardShadow, ClxCardVariant, ClxCarouselAspectRatio, ClxCarouselConfig, ClxCartItem, ClxCartSummaryData, ClxCellContext, ClxChartOptions, ClxChartType, ClxCheckboxVariant, ClxColor, ClxColorInput, ClxColorPickerFormat, ClxColorPickerSize, ClxColorResolved, ClxColorTokens, ClxCouponResult, ClxDateRange, ClxDateRangePickerSize, ClxDateRangePickerStatus, ClxDatepickerSize, ClxDatepickerStatus, ClxDrawerButtonOptions, ClxDrawerConfig, ClxDrawerRef, ClxDrawerSize, ClxEditorSize, ClxEditorTool, ClxEditorToolbarGroup, ClxFilterChangeEvent, ClxFilterField, ClxFilterFieldType, ClxFilterOption, ClxFilterValue, ClxFilterValues, ClxInputSize, ClxInputStatus, ClxInputType, ClxListItem, ClxListSize, ClxListVariant, ClxModalButtonOptions, ClxModalConfig, ClxModalRef, ClxModalSize, ClxNumberSize, ClxNumberVariant, ClxPageChangeEvent, ClxPageSizeChangeEvent, ClxPaginationSize, ClxProduct, ClxProductDescription, ClxProductDetailData, ClxProductLayout, ClxProductSize, ClxProductSpec, ClxProfileMenuItem, ClxProgressBarSize, ClxProgressBarVariant, ClxRadioVariant, ClxReview, ClxRippleItem, ClxSelectOption, ClxSelectSize, ClxShade, ClxShape, ClxSize, ClxSkeletonVariant, ClxSliderSize, ClxSpecOption, ClxSpecType, ClxSpinnerColor, ClxSpinnerVariant, ClxStatMetric, ClxStepperOrientation, ClxStepperSize, ClxStepperStatus, ClxStepperStep, ClxTabItem, ClxTableColumn, ClxTablePageEvent, ClxTableSelectionEvent, ClxTableSort, ClxTableSortEvent, ClxTagShape, ClxTagSize, ClxTagVariant, ClxTextareaResize, ClxTextareaSize, ClxTextareaStatus, ClxThemeConfig, ClxThemeMode, ClxTimelineLineStyle, ClxTimelineMode, ClxTimelineSize, ClxTimepickerSize, ClxTimepickerStatus, ClxToastAction, ClxToastEntry, ClxToastOptions, ClxToastPosition, ClxToastType, ClxTooltipPosition, ClxTooltipSize, ClxTreeExpandEvent, ClxTreeNode, ClxTreeSelectEvent, ClxTreeSize, ClxTreeVariant, ClxTrendDirection, ClxUploadError, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|