codexly-ui 0.12.20 → 0.12.22

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.20",
3
+ "version": "0.12.22",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2313,6 +2313,11 @@ declare class ClxProfileComponent {
2313
2313
  readonly fullName: _angular_core.Signal<string>;
2314
2314
  protected readonly _initials: _angular_core.Signal<string>;
2315
2315
  protected readonly _ringClass: _angular_core.Signal<string>;
2316
+ /** Dropdown panel border — was a hardcoded border-clx-border-soft (a fixed global CSS var, same
2317
+ * gray in every theme) instead of reading the theme like every other card-shaped component
2318
+ * (clx-card, clx-product, clx-wishlist, clx-notification, clx-filter-panel all use
2319
+ * cardBorderColor/borderLight). Now consistent with those. */
2320
+ protected readonly _panelClass: _angular_core.Signal<string>;
2316
2321
  protected _toggle(): void;
2317
2322
  protected _close(): void;
2318
2323
  protected _onKeydown(event: KeyboardEvent): void;
@@ -3660,9 +3665,11 @@ declare class ClxWishlistComponent {
3660
3665
  * text illegible against a light-tinted background. Undefined leaves clx-button's own
3661
3666
  * automatic resolution untouched. */
3662
3667
  readonly checkoutAllTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3663
- /** Text color for each item's own "Añadir al carrito" (variant="solid") — independent of
3664
- * `color`, same rationale as checkoutAllTextColor. */
3665
- readonly addToCartTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3668
+ /** Override for each item's own "Añadir al carrito" button (variant="solid") — same naming as
3669
+ * clx-product-detail's actionColor/actionTextColor. Falls back to `color()` when unset. */
3670
+ readonly actionColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3671
+ readonly actionTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3672
+ protected readonly _actionColor: _angular_core.Signal<ClxColorInput>;
3666
3673
  /** Product card drop shadow — same ClxCardShadow scale as clx-card ('none' turns it off
3667
3674
  * entirely). Falls back to 'sm', the shadow these cards have always rendered with. */
3668
3675
  readonly shadow: _angular_core.InputSignal<ClxCardShadow | undefined>;
@@ -3712,7 +3719,7 @@ declare class ClxWishlistComponent {
3712
3719
  handleRemove(item: ClxWishlistItem): void;
3713
3720
  handleCheckoutAll(): void;
3714
3721
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxWishlistComponent, never>;
3715
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWishlistComponent, "clx-wishlist", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "checkoutAllTextColor": { "alias": "checkoutAllTextColor"; "required": false; "isSignal": true; }; "addToCartTextColor": { "alias": "addToCartTextColor"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "sortOptions": { "alias": "sortOptions"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "sortValue": { "alias": "sortValue"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; "isSignal": true; }; }, { "currentPage": "currentPageChange"; "pageSize": "pageSizeChange"; "sortValue": "sortValueChange"; "searchValue": "searchValueChange"; "onRemove": "onRemove"; "onAddToCart": "onAddToCart"; "onSearchChange": "onSearchChange"; "onSortChange": "onSortChange"; "onPageChange": "onPageChange"; "onCheckoutAll": "onCheckoutAll"; "onBrowseCatalog": "onBrowseCatalog"; }, never, never, true, never>;
3722
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxWishlistComponent, "clx-wishlist", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "checkoutAllTextColor": { "alias": "checkoutAllTextColor"; "required": false; "isSignal": true; }; "actionColor": { "alias": "actionColor"; "required": false; "isSignal": true; }; "actionTextColor": { "alias": "actionTextColor"; "required": false; "isSignal": true; }; "shadow": { "alias": "shadow"; "required": false; "isSignal": true; }; "sortOptions": { "alias": "sortOptions"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "sortValue": { "alias": "sortValue"; "required": false; "isSignal": true; }; "searchValue": { "alias": "searchValue"; "required": false; "isSignal": true; }; }, { "currentPage": "currentPageChange"; "pageSize": "pageSizeChange"; "sortValue": "sortValueChange"; "searchValue": "searchValueChange"; "onRemove": "onRemove"; "onAddToCart": "onAddToCart"; "onSearchChange": "onSearchChange"; "onSortChange": "onSortChange"; "onPageChange": "onPageChange"; "onCheckoutAll": "onCheckoutAll"; "onBrowseCatalog": "onBrowseCatalog"; }, never, never, true, never>;
3716
3723
  }
3717
3724
 
3718
3725
  /** Refleja sa_cart_items + ca_variants + ca_products */