codexly-ui 0.12.10 → 0.12.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codexly-ui",
3
- "version": "0.12.10",
3
+ "version": "0.12.12",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -3436,6 +3436,12 @@ declare class ClxProductDetailComponent {
3436
3436
  * clxColor() when not set, so existing consumers are unaffected. */
3437
3437
  readonly actionColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3438
3438
  protected readonly _actionColor: _angular_core.Signal<ClxColorInput>;
3439
+ /** Text color for the same three CTAs (Comprar ahora / Agrega al carrito / Dejar una reseña) —
3440
+ * independent of actionColor, same rationale as clx-button's own [textColor]: a saturated
3441
+ * actionColor (e.g. brand yellow) can force a background where the auto-resolved white/dark-800
3442
+ * contrast text still reads poorly, and this lets a host pin the exact text tone instead.
3443
+ * Undefined (the default) leaves each button's own automatic contrast resolution untouched. */
3444
+ readonly actionTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3439
3445
  /** Optional override for the floating wishlist (heart) button on the gallery — same rationale
3440
3446
  * as actionColor: a saturated brand color that works as a small accent elsewhere can look wrong
3441
3447
  * as a solid filled circle. Falls back to clxColor()/'solid' when not set. */
@@ -3453,6 +3459,11 @@ declare class ClxProductDetailComponent {
3453
3459
  protected readonly _discountBadgeColor: _angular_core.Signal<ClxColorInput>;
3454
3460
  protected readonly _specButtonColor: _angular_core.Signal<ClxColorInput>;
3455
3461
  protected readonly _quantityColor: _angular_core.Signal<ClxColorInput>;
3462
+ /** Text color for the spec option buttons (Talla/Material/etc — not the color-swatch spec type,
3463
+ * which uses opt.value as an inline background and has no clx-button text to color). Same
3464
+ * rationale as actionTextColor: independent of specButtonColor, undefined leaves clx-button's
3465
+ * own automatic contrast resolution untouched. */
3466
+ readonly specButtonTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3456
3467
  readonly loading: _angular_core.InputSignal<boolean>;
3457
3468
  readonly currency: _angular_core.InputSignal<string>;
3458
3469
  /** Hides the tabs (Características/Especificaciones/Descripción) and the Reviews section —
@@ -3544,7 +3555,7 @@ declare class ClxProductDetailComponent {
3544
3555
  specsLeft<T>(specs: T[]): T[];
3545
3556
  specsRight<T>(specs: T[]): T[];
3546
3557
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxProductDetailComponent, never>;
3547
- 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; }; "stockBadgeColor": { "alias": "stockBadgeColor"; "required": false; "isSignal": true; }; "discountBadgeColor": { "alias": "discountBadgeColor"; "required": false; "isSignal": true; }; "specButtonColor": { "alias": "specButtonColor"; "required": false; "isSignal": true; }; "quantityColor": { "alias": "quantityColor"; "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"; "leaveReview": "leaveReview"; }, never, never, true, never>;
3558
+ 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; }; "actionTextColor": { "alias": "actionTextColor"; "required": false; "isSignal": true; }; "wishlistColor": { "alias": "wishlistColor"; "required": false; "isSignal": true; }; "wishlistVariant": { "alias": "wishlistVariant"; "required": false; "isSignal": true; }; "stockBadgeColor": { "alias": "stockBadgeColor"; "required": false; "isSignal": true; }; "discountBadgeColor": { "alias": "discountBadgeColor"; "required": false; "isSignal": true; }; "specButtonColor": { "alias": "specButtonColor"; "required": false; "isSignal": true; }; "quantityColor": { "alias": "quantityColor"; "required": false; "isSignal": true; }; "specButtonTextColor": { "alias": "specButtonTextColor"; "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"; "leaveReview": "leaveReview"; }, never, never, true, never>;
3548
3559
  }
3549
3560
 
3550
3561
  interface ClxProductQuickViewData {