@kris701/ez-ui 1.1.10 → 1.1.12

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": "@kris701/ez-ui",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0"
@@ -314,7 +314,8 @@ declare class EzUITableSelectFilter {
314
314
  selected: string[];
315
315
  filterType: any;
316
316
  filterTypes: any[];
317
- stringify: (value: string) => string;
317
+ protected readonly stringifyOption: (item: any) => string;
318
+ stringifyValue: (value: string) => string;
318
319
  getOptionLabel(item: any): any;
319
320
  getOptionValue(item: any): any;
320
321
  constructor(table: EzUITable);