codexly-ui 0.10.18 → 0.10.20

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.10.18",
3
+ "version": "0.10.20",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -352,10 +352,6 @@ declare class ClxListItemComponent {
352
352
  private readonly _themeSvc;
353
353
  readonly label: _angular_core.InputSignal<string>;
354
354
  readonly sublabel: _angular_core.InputSignal<string>;
355
- /** By default the sublabel is a single truncated line, right for short metadata (a value, a
356
- * date). Set true for long descriptive text (e.g. a technical-spec sheet's paragraph value)
357
- * where clipping the content would hide information the reader actually needs. */
358
- readonly wrapSublabel: _angular_core.InputSignal<boolean>;
359
355
  readonly icon: _angular_core.InputSignal<string>;
360
356
  readonly meta: _angular_core.InputSignal<string>;
361
357
  readonly metaColor: _angular_core.InputSignal<ClxColorInput | undefined>;
@@ -366,10 +362,9 @@ declare class ClxListItemComponent {
366
362
  protected readonly _hostClass: _angular_core.Signal<string>;
367
363
  protected readonly _numberClass: _angular_core.Signal<string>;
368
364
  protected readonly _labelClass: _angular_core.Signal<string>;
369
- protected readonly _sublabelClass: _angular_core.Signal<string>;
370
365
  protected readonly _metaClass: _angular_core.Signal<string>;
371
366
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxListItemComponent, never>;
372
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxListItemComponent, "clx-list-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "sublabel": { "alias": "sublabel"; "required": false; "isSignal": true; }; "wrapSublabel": { "alias": "wrapSublabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; "metaColor": { "alias": "metaColor"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["[clxLead]", "[clxContent]", "[clxTrail]", "*"], true, never>;
367
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxListItemComponent, "clx-list-item", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "sublabel": { "alias": "sublabel"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "meta": { "alias": "meta"; "required": false; "isSignal": true; }; "metaColor": { "alias": "metaColor"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["[clxLead]", "[clxContent]", "[clxTrail]", "*"], true, never>;
373
368
  }
374
369
 
375
370
  type ClxSkeletonVariant = 'text' | 'circular' | 'rectangular';
@@ -2887,7 +2882,12 @@ declare class ClxProductComponent {
2887
2882
  interface ClxSpecOption {
2888
2883
  id: string;
2889
2884
  spec_type_id: string;
2885
+ /** Underlying data — for a 'color' input_type spec type, a hex string used to paint the
2886
+ * swatch; otherwise the same display text as label. */
2890
2887
  value: string;
2888
+ /** Human-readable label — "Rojo", "16 GB". Falls back to value when omitted (non-color types
2889
+ * where value is already the display text). */
2890
+ label?: string;
2891
2891
  }
2892
2892
  /** st_spec_types + sus opciones */
2893
2893
  interface ClxSpecType {
@@ -2994,7 +2994,6 @@ declare class ClxProductDetailComponent {
2994
2994
  selectedOptionLabel(specType: ClxSpecType): string;
2995
2995
  protected _emitAddToCart(): void;
2996
2996
  protected _emitBuyNow(): void;
2997
- asColor(value: string): ClxColorInput;
2998
2997
  specsLeft<T>(specs: T[]): T[];
2999
2998
  specsRight<T>(specs: T[]): T[];
3000
2999
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxProductDetailComponent, never>;