codexly-ui 0.10.78 → 0.10.79
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/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -245,6 +245,9 @@ declare class ClxCardComponent {
|
|
|
245
245
|
readonly shadow: _angular_core.InputSignal<ClxCardShadow | undefined>;
|
|
246
246
|
readonly hover: _angular_core.InputSignal<boolean>;
|
|
247
247
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
248
|
+
/** Set to false to drop the card's border entirely (e.g. a shadow-only card matching a
|
|
249
|
+
* product-cart-style layout) regardless of variant/color. */
|
|
250
|
+
readonly border: _angular_core.InputSignal<boolean>;
|
|
248
251
|
/** Auto-generated header icon (Material Symbols name) — shown in a rounded primary-subtle
|
|
249
252
|
* square next to headerTitle. Ignored when a manual [clxCardHeader] block is projected. */
|
|
250
253
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
@@ -269,7 +272,7 @@ declare class ClxCardComponent {
|
|
|
269
272
|
protected readonly _footerClass: _angular_core.Signal<string>;
|
|
270
273
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
271
274
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxCardComponent, never>;
|
|
272
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCardComponent, "clx-card", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "hover": { "alias": "hover"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerSubtitle": { "alias": "headerSubtitle"; "required": false; "isSignal": true; }; }, {}, ["_headerSlot", "_headerActionsSlot", "_bodySlot", "_footerSlot"], ["[clxCardHeader]", "[clxCardHeaderActions]", "[clxCardBody]", "*", "[clxCardFooter]"], true, never>;
|
|
275
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxCardComponent, "clx-card", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "hover": { "alias": "hover"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "headerTitle": { "alias": "headerTitle"; "required": false; "isSignal": true; }; "headerSubtitle": { "alias": "headerSubtitle"; "required": false; "isSignal": true; }; }, {}, ["_headerSlot", "_headerActionsSlot", "_bodySlot", "_footerSlot"], ["[clxCardHeader]", "[clxCardHeaderActions]", "[clxCardBody]", "*", "[clxCardFooter]"], true, never>;
|
|
273
276
|
}
|
|
274
277
|
|
|
275
278
|
declare class ClxCardHeaderDirective {
|