codexly-ui 0.10.80 → 0.10.82
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
|
@@ -2989,6 +2989,12 @@ declare class ClxProductDetailComponent {
|
|
|
2989
2989
|
* clxColor() when not set, so existing consumers are unaffected. */
|
|
2990
2990
|
readonly actionColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2991
2991
|
protected readonly _actionColor: _angular_core.Signal<ClxColorInput>;
|
|
2992
|
+
/** Optional override for the floating wishlist (heart) button on the gallery — same rationale
|
|
2993
|
+
* as actionColor: a saturated brand color that works as a small accent elsewhere can look wrong
|
|
2994
|
+
* as a solid filled circle. Falls back to clxColor()/'solid' when not set. */
|
|
2995
|
+
readonly wishlistColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2996
|
+
readonly wishlistVariant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
2997
|
+
protected readonly _wishlistColor: _angular_core.Signal<ClxColorInput>;
|
|
2992
2998
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
2993
2999
|
readonly currency: _angular_core.InputSignal<string>;
|
|
2994
3000
|
/** Hides the tabs (Características/Especificaciones/Descripción) and the Reviews section —
|
|
@@ -3066,7 +3072,7 @@ declare class ClxProductDetailComponent {
|
|
|
3066
3072
|
specsLeft<T>(specs: T[]): T[];
|
|
3067
3073
|
specsRight<T>(specs: T[]): T[];
|
|
3068
3074
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxProductDetailComponent, 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>;
|
|
3075
|
+
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; }; "wishlistColor": { "alias": "wishlistColor"; "required": false; "isSignal": true; }; "wishlistVariant": { "alias": "wishlistVariant"; "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>;
|
|
3070
3076
|
}
|
|
3071
3077
|
|
|
3072
3078
|
interface ClxProductQuickViewData {
|