codexly-ui 0.12.26 → 0.12.28
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 +48 -20
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/codexly-ui.d.ts +12 -1
package/package.json
CHANGED
package/types/codexly-ui.d.ts
CHANGED
|
@@ -2947,6 +2947,15 @@ declare class ClxFilterPanelComponent {
|
|
|
2947
2947
|
* resolution untouched. */
|
|
2948
2948
|
readonly applyButtonTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
|
|
2949
2949
|
readonly applyButtonSize: _angular_core.InputSignal<ClxButtonSize>;
|
|
2950
|
+
/** Lets the whole panel collapse down to just its "Filtros" header row (click to toggle) — for
|
|
2951
|
+
* narrow layouts where a host wants to reclaim vertical space once the visitor is done
|
|
2952
|
+
* adjusting filters, without unmounting the panel (its field values/expand-state are preserved
|
|
2953
|
+
* underneath, just hidden). False (the default) keeps the current always-expanded behavior. */
|
|
2954
|
+
readonly collapsible: _angular_core.InputSignal<boolean>;
|
|
2955
|
+
/** Two-way — a host can control/observe collapse state (e.g. persist it, or start collapsed on
|
|
2956
|
+
* mobile) as well as let the header click toggle it internally. Only takes effect when
|
|
2957
|
+
* collapsible() is true; the header row itself is always visible regardless. */
|
|
2958
|
+
readonly panelCollapsed: _angular_core.ModelSignal<boolean>;
|
|
2950
2959
|
protected readonly _color: _angular_core.Signal<ClxColorInput>;
|
|
2951
2960
|
protected readonly _applyButtonColor: _angular_core.Signal<ClxColorInput>;
|
|
2952
2961
|
/** Outer border — was a hardcoded border-clx-border (a fixed global CSS var, same gray in every
|
|
@@ -2954,6 +2963,8 @@ declare class ClxFilterPanelComponent {
|
|
|
2954
2963
|
* clx-product, clx-wishlist, clx-notification all use cardBorderColor/borderLight). Now
|
|
2955
2964
|
* consistent with those. */
|
|
2956
2965
|
protected readonly _hostClass: _angular_core.Signal<string>;
|
|
2966
|
+
protected readonly _headerClass: _angular_core.Signal<string>;
|
|
2967
|
+
protected _togglePanel(): void;
|
|
2957
2968
|
readonly values: _angular_core.ModelSignal<ClxFilterValues>;
|
|
2958
2969
|
readonly filterChange: _angular_core.OutputEmitterRef<ClxFilterChangeEvent>;
|
|
2959
2970
|
readonly applyChange: _angular_core.OutputEmitterRef<ClxFilterValues>;
|
|
@@ -2977,7 +2988,7 @@ declare class ClxFilterPanelComponent {
|
|
|
2977
2988
|
protected _badgeCls(): string;
|
|
2978
2989
|
protected _fieldBadgeCls(): string;
|
|
2979
2990
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxFilterPanelComponent, never>;
|
|
2980
|
-
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; }; "applyButtonTextColor": { "alias": "applyButtonTextColor"; "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>;
|
|
2991
|
+
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; }; "applyButtonTextColor": { "alias": "applyButtonTextColor"; "required": false; "isSignal": true; }; "applyButtonSize": { "alias": "applyButtonSize"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "panelCollapsed": { "alias": "panelCollapsed"; "required": false; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; }, { "panelCollapsed": "panelCollapsedChange"; "values": "valuesChange"; "filterChange": "filterChange"; "applyChange": "applyChange"; }, never, never, true, never>;
|
|
2981
2992
|
}
|
|
2982
2993
|
|
|
2983
2994
|
declare class ClxCarouselDirective {
|