codexly-ui 0.10.18 → 0.10.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.10.18",
3
+ "version": "0.10.19",
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';