codexly-ui 0.1.22 → 0.1.24
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/_fonts.css +3 -84
- package/assets/styles/_theme.css +11 -1
- package/fesm2022/codexly-ui.mjs +442 -111
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +57 -24
- 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/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -106,7 +106,7 @@ declare class ClxStatCardComponent {
|
|
|
106
106
|
readonly metric: _angular_core.InputSignal<ClxStatMetric>;
|
|
107
107
|
readonly chartData: _angular_core.InputSignal<number[]>;
|
|
108
108
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
109
|
-
readonly layout: _angular_core.InputSignal<"
|
|
109
|
+
readonly layout: _angular_core.InputSignal<"vertical" | "horizontal" | "bar">;
|
|
110
110
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
111
111
|
protected readonly _barHeights: _angular_core.Signal<number[]>;
|
|
112
112
|
protected readonly _iconBg: _angular_core.Signal<string>;
|
|
@@ -382,7 +382,7 @@ declare class ClxTreeComponent {
|
|
|
382
382
|
icon: "xs" | "sm" | "md";
|
|
383
383
|
indent: string;
|
|
384
384
|
}>;
|
|
385
|
-
protected readonly _indentPx: _angular_core.Signal<16 |
|
|
385
|
+
protected readonly _indentPx: _angular_core.Signal<16 | 24 | 20>;
|
|
386
386
|
protected readonly _rootClass: _angular_core.Signal<string>;
|
|
387
387
|
protected _isExpanded(id: string | number): boolean;
|
|
388
388
|
protected _isSelected(id: string | number): boolean;
|
|
@@ -474,20 +474,22 @@ 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;
|
|
477
478
|
private readonly _zone;
|
|
478
479
|
constructor();
|
|
479
480
|
private get _type();
|
|
481
|
+
private get _isConfirm();
|
|
480
482
|
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>;
|
|
484
483
|
protected readonly _title: _angular_core.WritableSignal<string>;
|
|
485
484
|
protected readonly _message: _angular_core.WritableSignal<string>;
|
|
486
485
|
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>;
|
|
487
489
|
protected readonly _confirmText: _angular_core.WritableSignal<string>;
|
|
488
|
-
protected readonly _confirmColor: _angular_core.
|
|
490
|
+
protected readonly _confirmColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
489
491
|
protected readonly _cancelText: _angular_core.WritableSignal<string>;
|
|
490
|
-
protected readonly _cancelColor: _angular_core.
|
|
492
|
+
protected readonly _cancelColor: _angular_core.Signal<codexly_ui.ClxColorInput>;
|
|
491
493
|
protected readonly _cancelVariant: _angular_core.WritableSignal<ClxButtonVariant>;
|
|
492
494
|
protected readonly _timerTotal: _angular_core.WritableSignal<number>;
|
|
493
495
|
protected readonly _progressPct: _angular_core.WritableSignal<number>;
|
|
@@ -679,6 +681,8 @@ interface ClxSelectOption {
|
|
|
679
681
|
value: string | number;
|
|
680
682
|
label: string;
|
|
681
683
|
disabled?: boolean;
|
|
684
|
+
/** Renders the option label using this font family, for font-picker selects */
|
|
685
|
+
previewFontFamily?: string;
|
|
682
686
|
}
|
|
683
687
|
|
|
684
688
|
type PageItem = {
|
|
@@ -886,7 +890,7 @@ declare class ClxAvatarComponent {
|
|
|
886
890
|
protected readonly _contentType: _angular_core.Signal<ClxAvatarContentType>;
|
|
887
891
|
protected readonly _initials: _angular_core.Signal<string>;
|
|
888
892
|
protected readonly _iconSize: _angular_core.Signal<ClxSize>;
|
|
889
|
-
protected readonly _shapeClass: _angular_core.Signal<"rounded-
|
|
893
|
+
protected readonly _shapeClass: _angular_core.Signal<"rounded-full" | "rounded-xl">;
|
|
890
894
|
protected readonly _colorClass: _angular_core.Signal<string>;
|
|
891
895
|
protected readonly _textClass: _angular_core.Signal<string>;
|
|
892
896
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
@@ -900,7 +904,7 @@ declare class ClxButtonGroupComponent {
|
|
|
900
904
|
readonly label: _angular_core.InputSignal<string>;
|
|
901
905
|
readonly shape: _angular_core.InputSignal<ClxButtonGroupShape>;
|
|
902
906
|
readonly attached: _angular_core.InputSignal<boolean>;
|
|
903
|
-
readonly orientation: _angular_core.InputSignal<"
|
|
907
|
+
readonly orientation: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
904
908
|
protected readonly _groupClass: _angular_core.Signal<string>;
|
|
905
909
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxButtonGroupComponent, never>;
|
|
906
910
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxButtonGroupComponent, "clx-button-group", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "attached": { "alias": "attached"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1201,7 +1205,7 @@ interface ClxChartOptions {
|
|
|
1201
1205
|
declare class ClxChartComponent implements AfterViewInit, OnDestroy {
|
|
1202
1206
|
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
1203
1207
|
type: _angular_core.InputSignal<ClxChartType>;
|
|
1204
|
-
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.
|
|
1208
|
+
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | chart_js.Point | [number, number] | chart_js.BubbleDataPoint | null)[], unknown>>;
|
|
1205
1209
|
options: _angular_core.InputSignal<node_modules_chart_js_dist_types_utils._DeepPartialObject<chart_js.CoreChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ElementChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.PluginChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.DatasetChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ScaleChartOptions<keyof chart_js.ChartTypeRegistry>>>;
|
|
1206
1210
|
height: _angular_core.InputSignal<string | number>;
|
|
1207
1211
|
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1873,7 +1877,7 @@ declare class ClxRadioGroupComponent implements ControlValueAccessor {
|
|
|
1873
1877
|
readonly resolvedColor: _angular_core.Signal<ClxColorInput>;
|
|
1874
1878
|
readonly variant: _angular_core.InputSignal<ClxRadioVariant>;
|
|
1875
1879
|
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
1876
|
-
readonly direction: _angular_core.InputSignal<"
|
|
1880
|
+
readonly direction: _angular_core.InputSignal<"vertical" | "horizontal">;
|
|
1877
1881
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
1878
1882
|
/** Current selected value — readable by child clx-radio via injection */
|
|
1879
1883
|
readonly _value: _angular_core.WritableSignal<unknown>;
|
|
@@ -1962,6 +1966,8 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
1962
1966
|
protected readonly _activeColor: Signal<ClxColorInput>;
|
|
1963
1967
|
private readonly _el;
|
|
1964
1968
|
private readonly _sso;
|
|
1969
|
+
private readonly _isBrowser;
|
|
1970
|
+
private readonly _loadedFonts;
|
|
1965
1971
|
readonly _scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
1966
1972
|
constructor();
|
|
1967
1973
|
private _onChange;
|
|
@@ -1985,6 +1991,7 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
1985
1991
|
protected readonly _filteredOptions: Signal<ClxSelectOption[]>;
|
|
1986
1992
|
protected readonly _showAsyncPlaceholder: Signal<boolean>;
|
|
1987
1993
|
protected readonly _displayValue: Signal<string>;
|
|
1994
|
+
protected readonly _displayFontFamily: Signal<string | null>;
|
|
1988
1995
|
protected readonly _overlayWidth: Signal<number>;
|
|
1989
1996
|
protected readonly _labelClass: Signal<string>;
|
|
1990
1997
|
protected readonly _hintClass: Signal<string>;
|
|
@@ -1998,6 +2005,7 @@ declare class ClxSelectComponent implements ControlValueAccessor {
|
|
|
1998
2005
|
protected _optionClass(opt: ClxSelectOption): string;
|
|
1999
2006
|
protected _togglePanel(): void;
|
|
2000
2007
|
private _openPanel;
|
|
2008
|
+
private _loadPreviewFont;
|
|
2001
2009
|
protected _closePanel(): void;
|
|
2002
2010
|
protected _selectOption(opt: ClxSelectOption): void;
|
|
2003
2011
|
protected _deselect(value: string | number): void;
|
|
@@ -2361,9 +2369,7 @@ declare class ClxMenuItemComponent {
|
|
|
2361
2369
|
exact: boolean;
|
|
2362
2370
|
}>;
|
|
2363
2371
|
readonly itemClick: _angular_core.OutputEmitterRef<void>;
|
|
2364
|
-
private readonly _inheritedColor;
|
|
2365
2372
|
private readonly _resolvedColor;
|
|
2366
|
-
inheritColor(c: ClxColorInput): void;
|
|
2367
2373
|
private readonly _geom;
|
|
2368
2374
|
protected readonly _iconCls: _angular_core.Signal<string>;
|
|
2369
2375
|
protected readonly _idleCls: _angular_core.Signal<string>;
|
|
@@ -2372,7 +2378,7 @@ declare class ClxMenuItemComponent {
|
|
|
2372
2378
|
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>;
|
|
2373
2379
|
}
|
|
2374
2380
|
|
|
2375
|
-
declare class ClxMenuComponent implements
|
|
2381
|
+
declare class ClxMenuComponent implements AfterViewInit {
|
|
2376
2382
|
private readonly _themeSvc;
|
|
2377
2383
|
readonly label: _angular_core.InputSignal<string>;
|
|
2378
2384
|
readonly icon: _angular_core.InputSignal<string>;
|
|
@@ -2386,27 +2392,26 @@ declare class ClxMenuComponent implements AfterContentInit, AfterViewInit {
|
|
|
2386
2392
|
}>;
|
|
2387
2393
|
readonly _isExpanded: _angular_core.WritableSignal<boolean>;
|
|
2388
2394
|
private readonly _rla?;
|
|
2389
|
-
private readonly _childItems;
|
|
2390
2395
|
private readonly _destroyRef;
|
|
2391
2396
|
constructor();
|
|
2392
2397
|
ngAfterViewInit(): void;
|
|
2393
2398
|
protected readonly _iconCls: _angular_core.Signal<string>;
|
|
2394
2399
|
protected _buttonCls(isActive: boolean): string;
|
|
2395
|
-
protected readonly NAV_CHILDREN_WRAPPER = "grid transition-
|
|
2400
|
+
protected readonly NAV_CHILDREN_WRAPPER = "grid transition-[grid-template-rows] duration-300 ease-in-out";
|
|
2396
2401
|
protected readonly NAV_CHILDREN_INNER = "overflow-hidden";
|
|
2397
2402
|
protected readonly NAV_CHILDREN_LIST = "ml-6 py-1 space-y-0.5";
|
|
2398
|
-
ngAfterContentInit(): void;
|
|
2399
|
-
private _syncChildren;
|
|
2400
2403
|
protected _toggle(): void;
|
|
2401
2404
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxMenuComponent, never>;
|
|
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; }; }, {},
|
|
2405
|
+
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; }; }, {}, never, ["*"], true, never>;
|
|
2403
2406
|
}
|
|
2404
2407
|
|
|
2405
2408
|
declare class ClxNavGroupComponent {
|
|
2406
2409
|
readonly label: _angular_core.InputSignal<string>;
|
|
2407
2410
|
readonly collapsed: _angular_core.InputSignal<boolean>;
|
|
2411
|
+
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2412
|
+
readonly labelClass: _angular_core.Signal<string>;
|
|
2408
2413
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxNavGroupComponent, never>;
|
|
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>;
|
|
2414
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxNavGroupComponent, "clx-nav-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2410
2415
|
}
|
|
2411
2416
|
|
|
2412
2417
|
interface ClxProfileMenuItem {
|
|
@@ -2682,9 +2687,18 @@ declare class ClxCartSummaryDrawer {
|
|
|
2682
2687
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCartSummaryDrawer, "clx-cart-summary-drawer", never, {}, {}, never, never, true, never>;
|
|
2683
2688
|
}
|
|
2684
2689
|
|
|
2690
|
+
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';
|
|
2691
|
+
interface ClxFontOption {
|
|
2692
|
+
label: string;
|
|
2693
|
+
value: ClxFontFamily;
|
|
2694
|
+
googleUrl: string;
|
|
2695
|
+
}
|
|
2696
|
+
declare const CLX_FONT_CATALOG: ClxFontOption[];
|
|
2685
2697
|
interface ClxThemeConfig {
|
|
2686
2698
|
/** Default accent color for all components (buttons, inputs, checkboxes…) */
|
|
2687
2699
|
primaryColor: ClxColorInput;
|
|
2700
|
+
/** Color used for secondary actions (cancel, close buttons) */
|
|
2701
|
+
secondaryColor: ClxColorInput;
|
|
2688
2702
|
/** Color used for destructive actions and error states */
|
|
2689
2703
|
dangerColor: ClxColorInput;
|
|
2690
2704
|
/** Color used for success confirmations */
|
|
@@ -2693,12 +2707,22 @@ interface ClxThemeConfig {
|
|
|
2693
2707
|
warningColor: ClxColorInput;
|
|
2694
2708
|
/** Neutral color for surfaces, nav idle states */
|
|
2695
2709
|
neutralColor: ClxColorInput;
|
|
2710
|
+
/** Base text color applied across the app */
|
|
2711
|
+
textColor: ClxColorInput;
|
|
2712
|
+
/** Sidebar nav-group label color override — falls back to neutralColor when unset */
|
|
2713
|
+
sidebarGroupColor?: ClxColorInput;
|
|
2714
|
+
/** Sidebar top-level menu color override — falls back to primaryColor when unset */
|
|
2715
|
+
sidebarMenuColor?: ClxColorInput;
|
|
2716
|
+
/** Sidebar menu-item color override — falls back to primaryColor when unset */
|
|
2717
|
+
sidebarItemColor?: ClxColorInput;
|
|
2696
2718
|
/** Default border-radius style applied to all components */
|
|
2697
2719
|
borderRadius: 'none' | 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
2698
2720
|
/** Default size for all form/interactive components */
|
|
2699
2721
|
defaultSize: Extract<ClxSize, 'sm' | 'md' | 'lg'>;
|
|
2700
2722
|
/** Default shape for buttons, badges, tags */
|
|
2701
2723
|
defaultShape: Extract<ClxShape, 'rounded' | 'pill'>;
|
|
2724
|
+
/** Body font family — must be one of CLX_FONT_CATALOG values */
|
|
2725
|
+
fontFamily: ClxFontFamily;
|
|
2702
2726
|
}
|
|
2703
2727
|
declare const CLX_RADIUS_MAP: Record<ClxThemeConfig['borderRadius'], string>;
|
|
2704
2728
|
/** Returns the Tailwind class for a form-control radius */
|
|
@@ -2791,7 +2815,7 @@ declare class ClxAnimateDirective implements OnInit, OnChanges {
|
|
|
2791
2815
|
readonly delay: _angular_core.InputSignalWithTransform<number, number>;
|
|
2792
2816
|
readonly repeat: _angular_core.InputSignal<number | "infinite" | undefined>;
|
|
2793
2817
|
readonly easing: _angular_core.InputSignal<string | undefined>;
|
|
2794
|
-
readonly fillMode: _angular_core.InputSignal<"none" | "
|
|
2818
|
+
readonly fillMode: _angular_core.InputSignal<"none" | "both" | "forwards" | "backwards" | undefined>;
|
|
2795
2819
|
readonly once: _angular_core.InputSignalWithTransform<boolean, boolean>;
|
|
2796
2820
|
readonly threshold: _angular_core.InputSignalWithTransform<number, number>;
|
|
2797
2821
|
readonly animationStart: _angular_core.OutputEmitterRef<void>;
|
|
@@ -2888,10 +2912,19 @@ declare class ClxThemeService {
|
|
|
2888
2912
|
readonly mode: _angular_core.Signal<ClxThemeMode>;
|
|
2889
2913
|
readonly config: _angular_core.Signal<ClxThemeConfig>;
|
|
2890
2914
|
readonly isDark: _angular_core.Signal<boolean>;
|
|
2915
|
+
/** Color to apply to clx-nav-group labels — falls back to neutralColor */
|
|
2916
|
+
readonly sidebarGroupColor: _angular_core.Signal<ClxColorInput>;
|
|
2917
|
+
/** Color to apply to top-level clx-menu — falls back to primaryColor */
|
|
2918
|
+
readonly sidebarMenuColor: _angular_core.Signal<ClxColorInput>;
|
|
2919
|
+
/** Color to apply to clx-menu-item — falls back to primaryColor */
|
|
2920
|
+
readonly sidebarItemColor: _angular_core.Signal<ClxColorInput>;
|
|
2891
2921
|
constructor();
|
|
2892
2922
|
setMode(mode: ClxThemeMode): void;
|
|
2893
2923
|
setConfig(patch: Partial<ClxThemeConfig>): void;
|
|
2894
2924
|
toggle(): void;
|
|
2925
|
+
private _applyColorVar;
|
|
2926
|
+
private _applyTextColor;
|
|
2927
|
+
private _applyFont;
|
|
2895
2928
|
private _loadMode;
|
|
2896
2929
|
private _getSystemDark;
|
|
2897
2930
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxThemeService, never>;
|
|
@@ -2993,7 +3026,7 @@ declare class ClxProgressBarComponent {
|
|
|
2993
3026
|
readonly variant: _angular_core.InputSignal<ClxProgressBarVariant>;
|
|
2994
3027
|
readonly label: _angular_core.InputSignal<string>;
|
|
2995
3028
|
readonly showValue: _angular_core.InputSignal<boolean>;
|
|
2996
|
-
readonly valueFormat: _angular_core.InputSignal<"
|
|
3029
|
+
readonly valueFormat: _angular_core.InputSignal<"percent" | "fraction" | "value">;
|
|
2997
3030
|
protected readonly _pct: _angular_core.Signal<number>;
|
|
2998
3031
|
protected readonly _pbSize: _angular_core.Signal<ClxProgressBarSize>;
|
|
2999
3032
|
protected readonly _trackH: _angular_core.Signal<string>;
|
|
@@ -3057,5 +3090,5 @@ declare class ClxPageEmptyComponent {
|
|
|
3057
3090
|
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>;
|
|
3058
3091
|
}
|
|
3059
3092
|
|
|
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 };
|
|
3093
|
+
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, 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 };
|
|
3094
|
+
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, 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, ClxUploadSize, ClxVariation, ClxWishlistItem, ClxWishlistPageChangeEvent, ClxWizardColor, ClxWizardOrientation, ClxWizardStepStatus, SparkPoint };
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|