@fewangsit/wangsvue-fats 1.0.0-alpha.112 → 1.0.0-alpha.113

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.
@@ -102,12 +102,20 @@ export interface CalendarFilterField extends CalendarProps {
102
102
 
103
103
  export type AdditionalFilterField = ButtonSelectTreeFilterField;
104
104
 
105
- export type FilterField =
105
+ export type FilterField = (
106
106
  | AdditionalFilterField
107
107
  | MultiSelectFilterField
108
108
  | DropdownFilterField
109
109
  | RangeNumberFilterField
110
- | CalendarFilterField;
110
+ | CalendarFilterField
111
+ ) & {
112
+ /**
113
+ * Filter field visibility
114
+ *
115
+ * You dont need manually filter, this component already handle it.
116
+ */
117
+ visible?: boolean;
118
+ };
111
119
 
112
120
  export type FilterOptions<Opt = Record<string, boolean>> = Record<
113
121
  keyof Opt,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-fats",
3
- "version": "1.0.0-alpha.112",
3
+ "version": "1.0.0-alpha.113",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Fixed Asset Tagsamurai VueJS Component Library",
6
6
  "type": "module",