codexly-ui 0.12.5 → 0.12.7

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.5",
3
+ "version": "0.12.7",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -3501,6 +3501,12 @@ declare class ClxProductDetailComponent {
3501
3501
  * at all) — now reflects product().rating for real, with no-reviews-yet as its own copy rather
3502
3502
  * than falsely implying a mediocre-but-real score. */
3503
3503
  protected readonly _ratingLabel: _angular_core.Signal<"Sin reseñas todavía" | "Excelente" | "Muy bueno" | "Bueno" | "Regular" | "Deficiente">;
3504
+ /** p.tags is plain string[] (ClxProductDetailData isn't coupled to ClxProductTag), so lookups
3505
+ * guard against an unrecognized value instead of indexing the Record directly. */
3506
+ private isKnownTag;
3507
+ protected tagLabel(tag: string): string;
3508
+ protected tagColor(tag: string): ClxColorInput;
3509
+ protected tagVariant(tag: string): codexly_ui.ClxBadgeVariant;
3504
3510
  readonly discount: _angular_core.Signal<number>;
3505
3511
  /** An option is available if some in-stock variation matches it together with the rest of the
3506
3512
  * current selection — a sold-out combination is hidden, same "hide, don't disable" rule already