codexly-ui 0.12.18 → 0.12.19

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.18",
3
+ "version": "0.12.19",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -3452,6 +3452,11 @@ declare class ClxProductDetailComponent {
3452
3452
  * independent: setting one never affects any other, so a host can, say, pin addToCartColor to
3453
3453
  * the theme's secondaryColor while leaving buyNowColor/specButtonColor on the shared clxColor. */
3454
3454
  readonly clxColor: _angular_core.InputSignal<ClxColorInput>;
3455
+ /** Selected-thumbnail border in the gallery strip — was a malformed literal string concat
3456
+ * ('border-' + clxColor() + '-500', which double-appends a shade when clxColor already carries
3457
+ * one, e.g. 'yellow-400' → the invalid class "border-yellow-400-500"). resolveColor() builds
3458
+ * the correct border-{color}-{shade} class from whatever shade clxColor actually resolves to. */
3459
+ protected readonly _thumbBorderClass: _angular_core.Signal<string>;
3455
3460
  readonly buyNowColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3456
3461
  readonly buyNowTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3457
3462
  protected readonly _buyNowColor: _angular_core.Signal<ClxColorInput>;