codexly-ui 0.10.15 → 0.10.17
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
|
@@ -352,6 +352,10 @@ declare class ClxListItemComponent {
|
|
|
352
352
|
private readonly _themeSvc;
|
|
353
353
|
readonly label: _angular_core.InputSignal<string>;
|
|
354
354
|
readonly sublabel: _angular_core.InputSignal<string>;
|
|
355
|
+
/** By default the sublabel is a single truncated line, right for short metadata (a value, a
|
|
356
|
+
* date). Set true for long descriptive text (e.g. a technical-spec sheet's paragraph value)
|
|
357
|
+
* where clipping the content would hide information the reader actually needs. */
|
|
358
|
+
readonly wrapSublabel: _angular_core.InputSignal<boolean>;
|
|
355
359
|
readonly icon: _angular_core.InputSignal<string>;
|
|
356
360
|
readonly meta: _angular_core.InputSignal<string>;
|
|
357
361
|
readonly metaColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
@@ -362,9 +366,10 @@ declare class ClxListItemComponent {
|
|
|
362
366
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
363
367
|
protected readonly _numberClass: _angular_core.Signal<string>;
|
|
364
368
|
protected readonly _labelClass: _angular_core.Signal<string>;
|
|
369
|
+
protected readonly _sublabelClass: _angular_core.Signal<string>;
|
|
365
370
|
protected readonly _metaClass: _angular_core.Signal<string>;
|
|
366
371
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxListItemComponent, never>;
|
|
367
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxListItemComponent, "clx-list-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "sublabel": { "alias": "sublabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; "metaColor": { "alias": "metaColor"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["[clxLead]", "[clxContent]", "[clxTrail]", "*"], true, never>;
|
|
372
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxListItemComponent, "clx-list-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "sublabel": { "alias": "sublabel"; "required": false; "isSignal": true; }; "wrapSublabel": { "alias": "wrapSublabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; "metaColor": { "alias": "metaColor"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["[clxLead]", "[clxContent]", "[clxTrail]", "*"], true, never>;
|
|
368
373
|
}
|
|
369
374
|
|
|
370
375
|
type ClxSkeletonVariant = 'text' | 'circular' | 'rectangular';
|
|
@@ -2935,6 +2940,9 @@ interface ClxReview {
|
|
|
2935
2940
|
interface ClxProductDetailData {
|
|
2936
2941
|
product_id: string;
|
|
2937
2942
|
product_name: string;
|
|
2943
|
+
/** Short marketing blurb shown right under the title (e.g. "Free shipping on orders $35+…") —
|
|
2944
|
+
* distinct from the long "Descripción" tab body. */
|
|
2945
|
+
product_detail?: string;
|
|
2938
2946
|
trademark: string;
|
|
2939
2947
|
product_sale_price: number;
|
|
2940
2948
|
discount_price?: number;
|