codexly-ui 0.10.58 → 0.10.59
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 +130 -200
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +1 -7
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2782,16 +2782,10 @@ declare class ClxPageEmptyComponent {
|
|
|
2782
2782
|
readonly ctaLabel: _angular_core.InputSignal<string>;
|
|
2783
2783
|
readonly ctaIcon: _angular_core.InputSignal<string>;
|
|
2784
2784
|
readonly ctaColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2785
|
-
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
2786
2785
|
protected readonly _ctaColor: _angular_core.Signal<ClxColorInput>;
|
|
2787
2786
|
readonly cta: _angular_core.OutputEmitterRef<void>;
|
|
2788
|
-
protected _iconWrap(): string;
|
|
2789
|
-
protected _iconSize(): 'sm' | 'md' | 'lg' | 'xl';
|
|
2790
|
-
protected _titleCls(): "text-sm font-semibold text-clx-text-label mb-1" | "text-xl font-semibold text-clx-text-label mb-2" | "text-base font-semibold text-clx-text-label mb-1";
|
|
2791
|
-
protected _descCls(): string;
|
|
2792
|
-
protected _ctaCls(): "mt-3" | "mt-5";
|
|
2793
2787
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxPageEmptyComponent, never>;
|
|
2794
|
-
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; };
|
|
2788
|
+
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; }; }, { "cta": "cta"; }, never, never, true, never>;
|
|
2795
2789
|
}
|
|
2796
2790
|
|
|
2797
2791
|
type ClxTrendDirection = 'up' | 'down' | 'neutral';
|