codexly-ui 0.10.95 → 0.10.97
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 +22 -14
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +4 -2
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2936,7 +2936,9 @@ declare class ClxPageServerErrorComponent {
|
|
|
2936
2936
|
declare class ClxPageEmptyComponent {
|
|
2937
2937
|
private readonly _themeSvc;
|
|
2938
2938
|
readonly icon: _angular_core.InputSignal<string>;
|
|
2939
|
-
|
|
2939
|
+
/** Named "heading", not "title" — the latter shadows the native HTML title attribute (tooltip
|
|
2940
|
+
* on hover) when bound without brackets, e.g. `title="..."` instead of `[title]="..."`. */
|
|
2941
|
+
readonly heading: _angular_core.InputSignal<string>;
|
|
2940
2942
|
readonly description: _angular_core.InputSignal<string>;
|
|
2941
2943
|
readonly ctaLabel: _angular_core.InputSignal<string>;
|
|
2942
2944
|
readonly ctaIcon: _angular_core.InputSignal<string>;
|
|
@@ -2944,7 +2946,7 @@ declare class ClxPageEmptyComponent {
|
|
|
2944
2946
|
protected readonly _ctaColor: _angular_core.Signal<ClxColorInput>;
|
|
2945
2947
|
readonly cta: _angular_core.OutputEmitterRef<void>;
|
|
2946
2948
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxPageEmptyComponent, never>;
|
|
2947
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageEmptyComponent, "clx-page-empty", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "
|
|
2949
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxPageEmptyComponent, "clx-page-empty", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "heading": { "alias": "heading"; "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>;
|
|
2948
2950
|
}
|
|
2949
2951
|
|
|
2950
2952
|
type ClxTrendDirection = 'up' | 'down' | 'neutral';
|