@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.
- package/components/filtercontainer/FilterContainer.vue.d.ts +10 -2
- package/package.json +1 -1
- package/stats.html +1 -1
- package/wangsvue-fats.js +3069 -3067
- package/wangsvue-fats.system.js +38 -38
|
@@ -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,
|