v-datatable-plus 1.1.1 → 1.1.2
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/dist/types/types/index.d.ts +7 -1
- package/dist/v-datatable-plus.cjs +6 -6
- package/dist/v-datatable-plus.js +5214 -5155
- package/dist/v-datatable-plus.umd.cjs +6 -6
- package/package.json +1 -1
|
@@ -5,10 +5,16 @@ export declare const FilterType: {
|
|
|
5
5
|
readonly Contains: "contains";
|
|
6
6
|
readonly NotContains: "notcontains";
|
|
7
7
|
readonly EndWith: "ends";
|
|
8
|
+
readonly GreaterThan: "gt";
|
|
9
|
+
readonly LessThan: "lt";
|
|
10
|
+
readonly GreaterThanOrEqual: "gte";
|
|
11
|
+
readonly LessThanOrEqual: "lte";
|
|
8
12
|
};
|
|
9
13
|
export declare const FilterMode: {
|
|
10
14
|
readonly Selection: "selection";
|
|
11
|
-
readonly
|
|
15
|
+
readonly String: "string";
|
|
16
|
+
readonly Number: "number";
|
|
17
|
+
readonly DateTime: "datetime";
|
|
12
18
|
};
|
|
13
19
|
export type FilterTypeValue = (typeof FilterType)[keyof typeof FilterType];
|
|
14
20
|
export type FilterModeValue = (typeof FilterMode)[keyof typeof FilterMode];
|