codexly-ui 0.10.84 → 0.10.86
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/fesm2022/codexly-ui.mjs +22 -10
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +16 -2
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -355,6 +355,10 @@ declare class ClxListItemComponent {
|
|
|
355
355
|
private readonly _themeSvc;
|
|
356
356
|
readonly label: _angular_core.InputSignal<string>;
|
|
357
357
|
readonly sublabel: _angular_core.InputSignal<string>;
|
|
358
|
+
/** Sublabel is single-line/truncated by default (its usual role as short trailing metadata) —
|
|
359
|
+
* set this when the sublabel is a longer explanatory sentence that should wrap instead of
|
|
360
|
+
* getting cut off with an ellipsis. */
|
|
361
|
+
readonly wrapSublabel: _angular_core.InputSignal<boolean>;
|
|
358
362
|
readonly icon: _angular_core.InputSignal<string>;
|
|
359
363
|
readonly meta: _angular_core.InputSignal<string>;
|
|
360
364
|
readonly metaColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
@@ -367,7 +371,7 @@ declare class ClxListItemComponent {
|
|
|
367
371
|
protected readonly _labelClass: _angular_core.Signal<string>;
|
|
368
372
|
protected readonly _metaClass: _angular_core.Signal<string>;
|
|
369
373
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxListItemComponent, never>;
|
|
370
|
-
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>;
|
|
374
|
+
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>;
|
|
371
375
|
}
|
|
372
376
|
|
|
373
377
|
type ClxSkeletonVariant = 'text' | 'circular' | 'rectangular';
|
|
@@ -2511,12 +2515,22 @@ interface ClxFilterChangeEvent {
|
|
|
2511
2515
|
all: ClxFilterValues;
|
|
2512
2516
|
}
|
|
2513
2517
|
|
|
2518
|
+
/** clx-button's own size input excludes 'xl' — mirrored here so applyButtonSize can't be set to a
|
|
2519
|
+
* value the button would silently reject. */
|
|
2520
|
+
type ClxButtonSize = Extract<ClxSize, 'xxs' | 'xs' | 'sm' | 'md' | 'lg'>;
|
|
2514
2521
|
declare class ClxFilterPanelComponent {
|
|
2515
2522
|
private readonly _themeSvc;
|
|
2516
2523
|
readonly fields: _angular_core.InputSignal<ClxFilterField[]>;
|
|
2517
2524
|
readonly color: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2518
2525
|
readonly showApply: _angular_core.InputSignal<boolean>;
|
|
2526
|
+
/** Overrides for just the "Aplicar filtros" button — falls back to color()/theme primary and
|
|
2527
|
+
* size 'sm' when unset, same pattern as clx-product-detail's actionColor/wishlistColor. Lets a
|
|
2528
|
+
* host keep a saturated brand color on checkboxes/slider (small accents) while giving the CTA
|
|
2529
|
+
* button its own color and a bigger size if the sidebar's width calls for it. */
|
|
2530
|
+
readonly applyButtonColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2531
|
+
readonly applyButtonSize: _angular_core.InputSignal<ClxButtonSize>;
|
|
2519
2532
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
2533
|
+
protected readonly _applyButtonColor: _angular_core.Signal<ClxColorInput>;
|
|
2520
2534
|
readonly values: _angular_core.ModelSignal<ClxFilterValues>;
|
|
2521
2535
|
readonly filterChange: _angular_core.OutputEmitterRef<ClxFilterChangeEvent>;
|
|
2522
2536
|
readonly applyChange: _angular_core.OutputEmitterRef<ClxFilterValues>;
|
|
@@ -2540,7 +2554,7 @@ declare class ClxFilterPanelComponent {
|
|
|
2540
2554
|
protected _badgeCls(): string;
|
|
2541
2555
|
protected _fieldBadgeCls(): string;
|
|
2542
2556
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxFilterPanelComponent, never>;
|
|
2543
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxFilterPanelComponent, "clx-filter-panel", never, { "fields": { "alias": "fields"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "showApply": { "alias": "showApply"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; }, { "values": "valuesChange"; "filterChange": "filterChange"; "applyChange": "applyChange"; }, never, never, true, never>;
|
|
2557
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClxFilterPanelComponent, "clx-filter-panel", never, { "fields": { "alias": "fields"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "showApply": { "alias": "showApply"; "required": false; "isSignal": true; }; "applyButtonColor": { "alias": "applyButtonColor"; "required": false; "isSignal": true; }; "applyButtonSize": { "alias": "applyButtonSize"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; }, { "values": "valuesChange"; "filterChange": "filterChange"; "applyChange": "applyChange"; }, never, never, true, never>;
|
|
2544
2558
|
}
|
|
2545
2559
|
|
|
2546
2560
|
declare class ClxCarouselDirective {
|