codexly-ui 0.12.19 → 0.12.21

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.19",
3
+ "version": "0.12.21",
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;
@@ -3457,6 +3462,12 @@ declare class ClxProductDetailComponent {
3457
3462
  * one, e.g. 'yellow-400' → the invalid class "border-yellow-400-500"). resolveColor() builds
3458
3463
  * the correct border-{color}-{shade} class from whatever shade clxColor actually resolves to. */
3459
3464
  protected readonly _thumbBorderClass: _angular_core.Signal<string>;
3465
+ /** "Excelente"/"Muy bueno"/etc rating label color — same malformed-concat bug as
3466
+ * _thumbBorderClass ('text-' + clxColor() + '-600' double-appends a shade when clxColor
3467
+ * already carries one). textSubtle (not text — that one auto-picks white/dark-800 for
3468
+ * contrast against a filled background, wrong here since this label sits on the plain page
3469
+ * background) gives the literal text-{color}-{shade} class instead. */
3470
+ protected readonly _ratingLabelClass: _angular_core.Signal<string>;
3460
3471
  readonly buyNowColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3461
3472
  readonly buyNowTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
3462
3473
  protected readonly _buyNowColor: _angular_core.Signal<ClxColorInput>;