@juzhenfe/page-model 3.16.1 → 3.16.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/components/table/components/table-column/components/filter-zone/index.vue.d.ts +13 -6
- package/dist/components/table/components/table-column/index.vue.d.ts +4 -0
- package/dist/index.es.js +273 -230
- package/dist/index.min.css +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/main.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FilterItemTypeEnum } from "./utils";
|
|
1
|
+
import { FilterItemTypeEnum, FilterMatchModeEnum } from "./utils";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
3
|
tableManager: {
|
|
4
4
|
type: ObjectConstructor;
|
|
@@ -19,6 +19,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
19
19
|
}>;
|
|
20
20
|
filterMultiple: import("vue").Ref<boolean>;
|
|
21
21
|
hasCompare: import("vue").Ref<boolean>;
|
|
22
|
+
isShowFilter: import("vue").Ref<boolean>;
|
|
23
|
+
filterKeywords: import("vue").Ref<string>;
|
|
22
24
|
filterList: import("vue").Ref<{
|
|
23
25
|
prop: string;
|
|
24
26
|
filterType?: FilterItemTypeEnum;
|
|
@@ -27,9 +29,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
27
29
|
label: string;
|
|
28
30
|
value: string | number | boolean;
|
|
29
31
|
}[];
|
|
30
|
-
condition?:
|
|
32
|
+
condition?: FilterMatchModeEnum;
|
|
31
33
|
value?: any;
|
|
32
34
|
}[]>;
|
|
35
|
+
filterOptions: import("vue").ComputedRef<any[]>;
|
|
33
36
|
multSelectDatas: import("vue").ComputedRef<{
|
|
34
37
|
[key: string]: {
|
|
35
38
|
modelValue: boolean;
|
|
@@ -53,22 +56,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
53
56
|
handleAddFilterItem: () => void;
|
|
54
57
|
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
55
58
|
readonly Remove: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
59
|
+
readonly Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
56
60
|
readonly FilterItemTypeEnum: typeof FilterItemTypeEnum;
|
|
57
61
|
readonly compareOptions: {
|
|
58
62
|
string: {
|
|
59
63
|
label: string;
|
|
60
|
-
value:
|
|
64
|
+
value: FilterMatchModeEnum;
|
|
61
65
|
}[];
|
|
62
66
|
number: {
|
|
63
67
|
label: string;
|
|
64
|
-
|
|
68
|
+
/**
|
|
69
|
+
* 多选列的标记
|
|
70
|
+
*/
|
|
71
|
+
value: FilterMatchModeEnum;
|
|
65
72
|
}[];
|
|
66
73
|
date: {
|
|
67
74
|
label: string;
|
|
68
|
-
value:
|
|
75
|
+
value: FilterMatchModeEnum;
|
|
69
76
|
}[];
|
|
70
77
|
};
|
|
71
|
-
readonly noValueOptions:
|
|
78
|
+
readonly noValueOptions: FilterMatchModeEnum[];
|
|
72
79
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "screen"[], "screen", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
73
80
|
tableManager: {
|
|
74
81
|
type: ObjectConstructor;
|
|
@@ -231,6 +231,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
231
231
|
}>;
|
|
232
232
|
filterMultiple: import("vue").Ref<boolean>;
|
|
233
233
|
hasCompare: import("vue").Ref<boolean>;
|
|
234
|
+
isShowFilter: import("vue").Ref<boolean>;
|
|
235
|
+
filterKeywords: import("vue").Ref<string>;
|
|
234
236
|
filterList: import("vue").Ref<{
|
|
235
237
|
prop: string;
|
|
236
238
|
filterType?: import("./components/filter-zone/utils").FilterItemTypeEnum;
|
|
@@ -242,6 +244,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
242
244
|
condition?: import("./components/filter-zone/utils").FilterMatchModeEnum;
|
|
243
245
|
value?: any;
|
|
244
246
|
}[]>;
|
|
247
|
+
filterOptions: import("vue").ComputedRef<any[]>;
|
|
245
248
|
multSelectDatas: import("vue").ComputedRef<{
|
|
246
249
|
[key: string]: {
|
|
247
250
|
modelValue: boolean;
|
|
@@ -265,6 +268,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
265
268
|
handleAddFilterItem: () => void;
|
|
266
269
|
readonly Plus: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
267
270
|
readonly Remove: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
271
|
+
readonly Search: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
268
272
|
readonly FilterItemTypeEnum: typeof import("./components/filter-zone/utils").FilterItemTypeEnum;
|
|
269
273
|
readonly compareOptions: {
|
|
270
274
|
string: {
|