codexly-ui 0.10.79 → 0.10.81
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
|
@@ -2982,6 +2982,13 @@ declare class ClxProductDetailComponent {
|
|
|
2982
2982
|
readonly product: _angular_core.InputSignal<ClxProductDetailData | null>;
|
|
2983
2983
|
readonly initialVariationId: _angular_core.InputSignal<string | null>;
|
|
2984
2984
|
readonly clxColor: _angular_core.InputSignal<ClxColorInput>;
|
|
2985
|
+
/** Optional override for just the two CTA buttons (Comprar ahora / Agrega al carrito) — some
|
|
2986
|
+
* brand colors (e.g. a saturated yellow) read fine as small accents (badges, tags, selected
|
|
2987
|
+
* spec chips) via clxColor but look garish filling a large solid button; this lets a host swap
|
|
2988
|
+
* only the CTAs to a calmer color without losing the accent everywhere else. Falls back to
|
|
2989
|
+
* clxColor() when not set, so existing consumers are unaffected. */
|
|
2990
|
+
readonly actionColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2991
|
+
protected readonly _actionColor: _angular_core.Signal<ClxColorInput>;
|
|
2985
2992
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
2986
2993
|
readonly currency: _angular_core.InputSignal<string>;
|
|
2987
2994
|
/** Hides the tabs (Características/Especificaciones/Descripción) and the Reviews section —
|
|
@@ -3059,7 +3066,7 @@ declare class ClxProductDetailComponent {
|
|
|
3059
3066
|
specsLeft<T>(specs: T[]): T[];
|
|
3060
3067
|
specsRight<T>(specs: T[]): T[];
|
|
3061
3068
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxProductDetailComponent, never>;
|
|
3062
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxProductDetailComponent, "clx-product-detail", never, { "product": { "alias": "product"; "required": false; "isSignal": true; }; "initialVariationId": { "alias": "initialVariationId"; "required": false; "isSignal": true; }; "clxColor": { "alias": "clxColor"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "currency": { "alias": "currency"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, { "addToCart": "addToCart"; "buyNow": "buyNow"; "wishlist": "wishlist"; "variationChange": "variationChange"; }, never, never, true, never>;
|
|
3069
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxProductDetailComponent, "clx-product-detail", never, { "product": { "alias": "product"; "required": false; "isSignal": true; }; "initialVariationId": { "alias": "initialVariationId"; "required": false; "isSignal": true; }; "clxColor": { "alias": "clxColor"; "required": false; "isSignal": true; }; "actionColor": { "alias": "actionColor"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "currency": { "alias": "currency"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, { "addToCart": "addToCart"; "buyNow": "buyNow"; "wishlist": "wishlist"; "variationChange": "variationChange"; }, never, never, true, never>;
|
|
3063
3070
|
}
|
|
3064
3071
|
|
|
3065
3072
|
interface ClxProductQuickViewData {
|