codexly-ui 0.12.13 → 0.12.15

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.13",
3
+ "version": "0.12.15",
4
4
  "description": "Standalone, signal-based Angular UI component library for Codexly, styled with Tailwind CSS.",
5
5
  "keywords": [
6
6
  "angular",
@@ -2928,9 +2928,19 @@ declare class ClxFilterPanelComponent {
2928
2928
  * host keep a saturated brand color on checkboxes/slider (small accents) while giving the CTA
2929
2929
  * button its own color and a bigger size if the sidebar's width calls for it. */
2930
2930
  readonly applyButtonColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2931
+ /** Text color for the same "Aplicar filtros" button — independent of applyButtonColor, same
2932
+ * rationale as clx-button's own [textColor]: a saturated applyButtonColor can leave the
2933
+ * auto-resolved contrast text illegible. Undefined leaves clx-button's own automatic
2934
+ * resolution untouched. */
2935
+ readonly applyButtonTextColor: _angular_core.InputSignal<ClxColorInput | undefined>;
2931
2936
  readonly applyButtonSize: _angular_core.InputSignal<ClxButtonSize>;
2932
2937
  protected readonly _color: _angular_core.Signal<ClxColorInput>;
2933
2938
  protected readonly _applyButtonColor: _angular_core.Signal<ClxColorInput>;
2939
+ /** Outer border — was a hardcoded border-clx-border (a fixed global CSS var, same gray in every
2940
+ * theme) instead of reading the theme like every other card-shaped component (clx-card,
2941
+ * clx-product, clx-wishlist, clx-notification all use cardBorderColor/borderLight). Now
2942
+ * consistent with those. */
2943
+ protected readonly _hostClass: _angular_core.Signal<string>;
2934
2944
  readonly values: _angular_core.ModelSignal<ClxFilterValues>;
2935
2945
  readonly filterChange: _angular_core.OutputEmitterRef<ClxFilterChangeEvent>;
2936
2946
  readonly applyChange: _angular_core.OutputEmitterRef<ClxFilterValues>;
@@ -2954,7 +2964,7 @@ declare class ClxFilterPanelComponent {
2954
2964
  protected _badgeCls(): string;
2955
2965
  protected _fieldBadgeCls(): string;
2956
2966
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClxFilterPanelComponent, never>;
2957
- 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>;
2967
+ 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>;
2958
2968
  }
2959
2969
 
2960
2970
  declare class ClxCarouselDirective {