@hb-hellotech/hb-ui 1.1.0 → 1.1.1
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/business_comp/list_page_comp/hb_form_select_modal/index.d.ts +232 -1
- package/dist/components/business_comp/list_page_comp/hb_form_select_modal/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_form_select_modal/src/HbMutilpleSelectModal.vue.d.ts +3 -3
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/index.d.ts +124 -1
- package/dist/components/business_comp/list_page_comp/hb_list_btns_act/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/index.d.ts +124 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts +3 -3
- package/dist/components/business_comp/list_page_comp/hb_list_page_container/index.d.ts +97 -1
- package/dist/components/business_comp/list_page_comp/hb_list_page_container/index.d.ts.map +1 -1
- package/dist/components/business_comp/list_page_comp/index.d.ts +1 -2
- package/dist/components/business_comp/list_page_comp/index.d.ts.map +1 -1
- package/dist/components/func_comp/hb_func_comp_copy/index.d.ts +151 -1
- package/dist/components/func_comp/hb_func_comp_copy/index.d.ts.map +1 -1
- package/dist/components/func_comp/index.d.ts +3 -4
- package/dist/components/func_comp/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/hb_component_lib.js +990 -1133
- package/dist/hb_component_lib.umd.cjs +1 -1
- package/package.json +1 -1
- package/dist/components/business_comp/list_page_comp/hb_form_item_filter_modal/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_form_item_filter_modal/index.d.ts.map +0 -1
- package/dist/components/business_comp/list_page_comp/hb_form_select_filter/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_form_select_filter/index.d.ts.map +0 -1
- package/dist/components/business_comp/list_page_comp/hb_list_form/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_list_form/index.d.ts.map +0 -1
- package/dist/components/business_comp/list_page_comp/hb_list_table/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_list_table/index.d.ts.map +0 -1
- package/dist/components/business_comp/list_page_comp/hb_list_table_act/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_list_table_act/index.d.ts.map +0 -1
- package/dist/components/business_comp/list_page_comp/hb_list_table_colums_set/index.d.ts +0 -5
- package/dist/components/business_comp/list_page_comp/hb_list_table_colums_set/index.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_comp_tree/index.d.ts +0 -458
- package/dist/components/func_comp/hb_func_comp_tree/index.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_comp_tree/src/tree.d.ts +0 -59
- package/dist/components/func_comp/hb_func_comp_tree/src/tree.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_comp_tree/src/tree.vue.d.ts +0 -187
- package/dist/components/func_comp/hb_func_comp_tree/src/tree.vue.d.ts.map +0 -1
- package/dist/components/func_comp/hb_func_comp_tree/src/treeNode.vue.d.ts +0 -39
- package/dist/components/func_comp/hb_func_comp_tree/src/treeNode.vue.d.ts.map +0 -1
|
@@ -1,5 +1,236 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
|
-
declare const HbFormSelectModal:
|
|
2
|
+
declare const HbFormSelectModal: ({
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
modelTitle: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
required: false;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
modalWidth: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: number;
|
|
13
|
+
};
|
|
14
|
+
tableHeight: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
tableColumn: {
|
|
20
|
+
type: ArrayConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
default: () => never[];
|
|
23
|
+
};
|
|
24
|
+
tableData: {
|
|
25
|
+
type: ArrayConstructor;
|
|
26
|
+
required: false;
|
|
27
|
+
default: () => never[];
|
|
28
|
+
};
|
|
29
|
+
tableKey: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
required: false;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
labelKey: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
required: false;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
}>> & Readonly<{
|
|
40
|
+
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
41
|
+
onHandleConfirm?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}>, {
|
|
43
|
+
props: any;
|
|
44
|
+
emits: (event: "handleCancel" | "handleConfirm", ...args: any[]) => void;
|
|
45
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
46
|
+
inputValue: import("vue").Ref<string, string>;
|
|
47
|
+
searchInput: import("vue").Ref<any, any>;
|
|
48
|
+
hbMultipSelectModalRef: import("vue").Ref<any, any>;
|
|
49
|
+
selectedRowKeysResult: any;
|
|
50
|
+
selectedRowKeysRowResult: any;
|
|
51
|
+
tableRef: import("vue").Ref<any, any>;
|
|
52
|
+
state: {
|
|
53
|
+
searchText: string | number;
|
|
54
|
+
searchedColumn: string | number;
|
|
55
|
+
};
|
|
56
|
+
data: import("vue").ComputedRef<any>;
|
|
57
|
+
columns: import("vue").ComputedRef<any>;
|
|
58
|
+
handleOk: () => void;
|
|
59
|
+
handleCancel: () => void;
|
|
60
|
+
handleOpen: () => void;
|
|
61
|
+
handleFooterReset: () => void;
|
|
62
|
+
resetInputVal: () => void;
|
|
63
|
+
handleSearch: (selectedKeys: (string | number)[], confirm: () => void, dataIndex: string | number) => void;
|
|
64
|
+
handleReset: (clearFilters: any, confirm: any) => void;
|
|
65
|
+
onSelectChange: (selectedRowKeys: any[], selectionRows: any[]) => void;
|
|
66
|
+
readonly UnorderedListOutlined: import("@ant-design/icons-vue/lib/icons/UnorderedListOutlined").UnorderedListOutlinedIconType;
|
|
67
|
+
readonly SearchOutlined: import("@ant-design/icons-vue/lib/icons/SearchOutlined").SearchOutlinedIconType;
|
|
68
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleCancel" | "handleConfirm")[], import("vue").PublicProps, {
|
|
69
|
+
tableHeight: number;
|
|
70
|
+
modelTitle: string;
|
|
71
|
+
modalWidth: number;
|
|
72
|
+
tableColumn: unknown[];
|
|
73
|
+
tableData: unknown[];
|
|
74
|
+
tableKey: string;
|
|
75
|
+
labelKey: string;
|
|
76
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
77
|
+
P: {};
|
|
78
|
+
B: {};
|
|
79
|
+
D: {};
|
|
80
|
+
C: {};
|
|
81
|
+
M: {};
|
|
82
|
+
Defaults: {};
|
|
83
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
modelTitle: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: false;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
modalWidth: {
|
|
90
|
+
type: NumberConstructor;
|
|
91
|
+
required: false;
|
|
92
|
+
default: number;
|
|
93
|
+
};
|
|
94
|
+
tableHeight: {
|
|
95
|
+
type: NumberConstructor;
|
|
96
|
+
required: false;
|
|
97
|
+
default: number;
|
|
98
|
+
};
|
|
99
|
+
tableColumn: {
|
|
100
|
+
type: ArrayConstructor;
|
|
101
|
+
required: true;
|
|
102
|
+
default: () => never[];
|
|
103
|
+
};
|
|
104
|
+
tableData: {
|
|
105
|
+
type: ArrayConstructor;
|
|
106
|
+
required: false;
|
|
107
|
+
default: () => never[];
|
|
108
|
+
};
|
|
109
|
+
tableKey: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
required: false;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
114
|
+
labelKey: {
|
|
115
|
+
type: StringConstructor;
|
|
116
|
+
required: false;
|
|
117
|
+
default: string;
|
|
118
|
+
};
|
|
119
|
+
}>> & Readonly<{
|
|
120
|
+
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
121
|
+
onHandleConfirm?: ((...args: any[]) => any) | undefined;
|
|
122
|
+
}>, {
|
|
123
|
+
props: any;
|
|
124
|
+
emits: (event: "handleCancel" | "handleConfirm", ...args: any[]) => void;
|
|
125
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
126
|
+
inputValue: import("vue").Ref<string, string>;
|
|
127
|
+
searchInput: import("vue").Ref<any, any>;
|
|
128
|
+
hbMultipSelectModalRef: import("vue").Ref<any, any>;
|
|
129
|
+
selectedRowKeysResult: any;
|
|
130
|
+
selectedRowKeysRowResult: any;
|
|
131
|
+
tableRef: import("vue").Ref<any, any>;
|
|
132
|
+
state: {
|
|
133
|
+
searchText: string | number;
|
|
134
|
+
searchedColumn: string | number;
|
|
135
|
+
};
|
|
136
|
+
data: import("vue").ComputedRef<any>;
|
|
137
|
+
columns: import("vue").ComputedRef<any>;
|
|
138
|
+
handleOk: () => void;
|
|
139
|
+
handleCancel: () => void;
|
|
140
|
+
handleOpen: () => void;
|
|
141
|
+
handleFooterReset: () => void;
|
|
142
|
+
resetInputVal: () => void;
|
|
143
|
+
handleSearch: (selectedKeys: (string | number)[], confirm: () => void, dataIndex: string | number) => void;
|
|
144
|
+
handleReset: (clearFilters: any, confirm: any) => void;
|
|
145
|
+
onSelectChange: (selectedRowKeys: any[], selectionRows: any[]) => void;
|
|
146
|
+
readonly UnorderedListOutlined: import("@ant-design/icons-vue/lib/icons/UnorderedListOutlined").UnorderedListOutlinedIconType;
|
|
147
|
+
readonly SearchOutlined: import("@ant-design/icons-vue/lib/icons/SearchOutlined").SearchOutlinedIconType;
|
|
148
|
+
}, {}, {}, {}, {
|
|
149
|
+
tableHeight: number;
|
|
150
|
+
modelTitle: string;
|
|
151
|
+
modalWidth: number;
|
|
152
|
+
tableColumn: unknown[];
|
|
153
|
+
tableData: unknown[];
|
|
154
|
+
tableKey: string;
|
|
155
|
+
labelKey: string;
|
|
156
|
+
}>;
|
|
157
|
+
__isFragment?: undefined;
|
|
158
|
+
__isTeleport?: undefined;
|
|
159
|
+
__isSuspense?: undefined;
|
|
160
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
161
|
+
modelTitle: {
|
|
162
|
+
type: StringConstructor;
|
|
163
|
+
required: false;
|
|
164
|
+
default: string;
|
|
165
|
+
};
|
|
166
|
+
modalWidth: {
|
|
167
|
+
type: NumberConstructor;
|
|
168
|
+
required: false;
|
|
169
|
+
default: number;
|
|
170
|
+
};
|
|
171
|
+
tableHeight: {
|
|
172
|
+
type: NumberConstructor;
|
|
173
|
+
required: false;
|
|
174
|
+
default: number;
|
|
175
|
+
};
|
|
176
|
+
tableColumn: {
|
|
177
|
+
type: ArrayConstructor;
|
|
178
|
+
required: true;
|
|
179
|
+
default: () => never[];
|
|
180
|
+
};
|
|
181
|
+
tableData: {
|
|
182
|
+
type: ArrayConstructor;
|
|
183
|
+
required: false;
|
|
184
|
+
default: () => never[];
|
|
185
|
+
};
|
|
186
|
+
tableKey: {
|
|
187
|
+
type: StringConstructor;
|
|
188
|
+
required: false;
|
|
189
|
+
default: string;
|
|
190
|
+
};
|
|
191
|
+
labelKey: {
|
|
192
|
+
type: StringConstructor;
|
|
193
|
+
required: false;
|
|
194
|
+
default: string;
|
|
195
|
+
};
|
|
196
|
+
}>> & Readonly<{
|
|
197
|
+
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
198
|
+
onHandleConfirm?: ((...args: any[]) => any) | undefined;
|
|
199
|
+
}>, {
|
|
200
|
+
props: any;
|
|
201
|
+
emits: (event: "handleCancel" | "handleConfirm", ...args: any[]) => void;
|
|
202
|
+
visible: import("vue").Ref<boolean, boolean>;
|
|
203
|
+
inputValue: import("vue").Ref<string, string>;
|
|
204
|
+
searchInput: import("vue").Ref<any, any>;
|
|
205
|
+
hbMultipSelectModalRef: import("vue").Ref<any, any>;
|
|
206
|
+
selectedRowKeysResult: any;
|
|
207
|
+
selectedRowKeysRowResult: any;
|
|
208
|
+
tableRef: import("vue").Ref<any, any>;
|
|
209
|
+
state: {
|
|
210
|
+
searchText: string | number;
|
|
211
|
+
searchedColumn: string | number;
|
|
212
|
+
};
|
|
213
|
+
data: import("vue").ComputedRef<any>;
|
|
214
|
+
columns: import("vue").ComputedRef<any>;
|
|
215
|
+
handleOk: () => void;
|
|
216
|
+
handleCancel: () => void;
|
|
217
|
+
handleOpen: () => void;
|
|
218
|
+
handleFooterReset: () => void;
|
|
219
|
+
resetInputVal: () => void;
|
|
220
|
+
handleSearch: (selectedKeys: (string | number)[], confirm: () => void, dataIndex: string | number) => void;
|
|
221
|
+
handleReset: (clearFilters: any, confirm: any) => void;
|
|
222
|
+
onSelectChange: (selectedRowKeys: any[], selectionRows: any[]) => void;
|
|
223
|
+
readonly UnorderedListOutlined: import("@ant-design/icons-vue/lib/icons/UnorderedListOutlined").UnorderedListOutlinedIconType;
|
|
224
|
+
readonly SearchOutlined: import("@ant-design/icons-vue/lib/icons/SearchOutlined").SearchOutlinedIconType;
|
|
225
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleCancel" | "handleConfirm")[], "handleCancel" | "handleConfirm", {
|
|
226
|
+
tableHeight: number;
|
|
227
|
+
modelTitle: string;
|
|
228
|
+
modalWidth: number;
|
|
229
|
+
tableColumn: unknown[];
|
|
230
|
+
tableData: unknown[];
|
|
231
|
+
tableKey: string;
|
|
232
|
+
labelKey: string;
|
|
233
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
3
234
|
export default HbFormSelectModal;
|
|
4
235
|
export type HbFormItemFilterModalInstance = InstanceType<typeof HbFormSelectModal>;
|
|
5
236
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAA+B,CAAC;AACvD,eAAe,iBAAiB,CAAC;AAEjC,MAAM,MAAM,6BAA6B,GAAG,YAAY,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -100,13 +100,13 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
100
100
|
onHandleCancel?: ((...args: any[]) => any) | undefined;
|
|
101
101
|
onHandleConfirm?: ((...args: any[]) => any) | undefined;
|
|
102
102
|
}>, {
|
|
103
|
-
labelKey: string;
|
|
104
|
-
modalWidth: number;
|
|
105
|
-
modelTitle: string;
|
|
106
103
|
tableHeight: number;
|
|
104
|
+
modelTitle: string;
|
|
105
|
+
modalWidth: number;
|
|
107
106
|
tableColumn: unknown[];
|
|
108
107
|
tableData: unknown[];
|
|
109
108
|
tableKey: string;
|
|
109
|
+
labelKey: string;
|
|
110
110
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
111
111
|
export default _sfc_main;
|
|
112
112
|
//# sourceMappingURL=HbMutilpleSelectModal.vue.d.ts.map
|
|
@@ -1,5 +1,128 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
|
-
declare const HbListBtns:
|
|
2
|
+
declare const HbListBtns: ({
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
formItems: {
|
|
5
|
+
type: ArrayConstructor;
|
|
6
|
+
required: true;
|
|
7
|
+
default: () => never[];
|
|
8
|
+
};
|
|
9
|
+
isShowSelfFilter: {
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
needReload: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
needOpenOrClose: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
}>> & Readonly<{
|
|
25
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
onHandleReload?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {
|
|
28
|
+
props: any;
|
|
29
|
+
emits: (event: "handleOpenOrClose" | "handleReload", ...args: any[]) => void;
|
|
30
|
+
isFormExpanded: import("vue").Ref<boolean, boolean>;
|
|
31
|
+
handleOpenOrClose: () => void;
|
|
32
|
+
handleReload: () => void;
|
|
33
|
+
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
34
|
+
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
35
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleOpenOrClose" | "handleReload")[], import("vue").PublicProps, {
|
|
36
|
+
formItems: unknown[];
|
|
37
|
+
isShowSelfFilter: boolean;
|
|
38
|
+
needReload: boolean;
|
|
39
|
+
needOpenOrClose: boolean;
|
|
40
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
41
|
+
P: {};
|
|
42
|
+
B: {};
|
|
43
|
+
D: {};
|
|
44
|
+
C: {};
|
|
45
|
+
M: {};
|
|
46
|
+
Defaults: {};
|
|
47
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
formItems: {
|
|
49
|
+
type: ArrayConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
default: () => never[];
|
|
52
|
+
};
|
|
53
|
+
isShowSelfFilter: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
needReload: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
required: false;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
needOpenOrClose: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
required: false;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
}>> & Readonly<{
|
|
69
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
onHandleReload?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
}>, {
|
|
72
|
+
props: any;
|
|
73
|
+
emits: (event: "handleOpenOrClose" | "handleReload", ...args: any[]) => void;
|
|
74
|
+
isFormExpanded: import("vue").Ref<boolean, boolean>;
|
|
75
|
+
handleOpenOrClose: () => void;
|
|
76
|
+
handleReload: () => void;
|
|
77
|
+
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
78
|
+
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
79
|
+
}, {}, {}, {}, {
|
|
80
|
+
formItems: unknown[];
|
|
81
|
+
isShowSelfFilter: boolean;
|
|
82
|
+
needReload: boolean;
|
|
83
|
+
needOpenOrClose: boolean;
|
|
84
|
+
}>;
|
|
85
|
+
__isFragment?: undefined;
|
|
86
|
+
__isTeleport?: undefined;
|
|
87
|
+
__isSuspense?: undefined;
|
|
88
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
89
|
+
formItems: {
|
|
90
|
+
type: ArrayConstructor;
|
|
91
|
+
required: true;
|
|
92
|
+
default: () => never[];
|
|
93
|
+
};
|
|
94
|
+
isShowSelfFilter: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
required: false;
|
|
97
|
+
default: boolean;
|
|
98
|
+
};
|
|
99
|
+
needReload: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
required: false;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
needOpenOrClose: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
required: false;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
}>> & Readonly<{
|
|
110
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
111
|
+
onHandleReload?: ((...args: any[]) => any) | undefined;
|
|
112
|
+
}>, {
|
|
113
|
+
props: any;
|
|
114
|
+
emits: (event: "handleOpenOrClose" | "handleReload", ...args: any[]) => void;
|
|
115
|
+
isFormExpanded: import("vue").Ref<boolean, boolean>;
|
|
116
|
+
handleOpenOrClose: () => void;
|
|
117
|
+
handleReload: () => void;
|
|
118
|
+
readonly UpCircleOutlined: import("@ant-design/icons-vue/lib/icons/UpCircleOutlined").UpCircleOutlinedIconType;
|
|
119
|
+
readonly DownCircleOutlined: import("@ant-design/icons-vue/lib/icons/DownCircleOutlined").DownCircleOutlinedIconType;
|
|
120
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleOpenOrClose" | "handleReload")[], "handleOpenOrClose" | "handleReload", {
|
|
121
|
+
formItems: unknown[];
|
|
122
|
+
isShowSelfFilter: boolean;
|
|
123
|
+
needReload: boolean;
|
|
124
|
+
needOpenOrClose: boolean;
|
|
125
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
3
126
|
export default HbListBtns;
|
|
4
127
|
export type HbListBtnsInstance = InstanceType<typeof HbListBtns>;
|
|
5
128
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAAwB,CAAC;AACzC,eAAe,UAAU,CAAC;AAE1B,MAAM,MAAM,kBAAkB,GAAG,YAAY,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -1,5 +1,128 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
|
-
declare const HbListPageAct:
|
|
2
|
+
declare const HbListPageAct: ({
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
formItems: {
|
|
5
|
+
type: ArrayConstructor;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
isShowSelfFilter: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
required: false;
|
|
11
|
+
default: boolean;
|
|
12
|
+
};
|
|
13
|
+
isShowOpenClose: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
isShowFullScreen: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{
|
|
24
|
+
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
28
|
+
}>, {
|
|
29
|
+
props: any;
|
|
30
|
+
ListPageBoxObj: any;
|
|
31
|
+
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
32
|
+
toggle: () => Promise<void>;
|
|
33
|
+
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
34
|
+
breadCrumbData: import("vue").Ref<string, string>;
|
|
35
|
+
handleBreadCrumb: () => void;
|
|
36
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose")[], import("vue").PublicProps, {
|
|
37
|
+
isShowSelfFilter: boolean;
|
|
38
|
+
isShowOpenClose: boolean;
|
|
39
|
+
isShowFullScreen: boolean;
|
|
40
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
41
|
+
P: {};
|
|
42
|
+
B: {};
|
|
43
|
+
D: {};
|
|
44
|
+
C: {};
|
|
45
|
+
M: {};
|
|
46
|
+
Defaults: {};
|
|
47
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
48
|
+
formItems: {
|
|
49
|
+
type: ArrayConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
isShowSelfFilter: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
required: false;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
isShowOpenClose: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
required: false;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
isShowFullScreen: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
required: false;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
}>> & Readonly<{
|
|
68
|
+
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
69
|
+
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
70
|
+
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
71
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
72
|
+
}>, {
|
|
73
|
+
props: any;
|
|
74
|
+
ListPageBoxObj: any;
|
|
75
|
+
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
76
|
+
toggle: () => Promise<void>;
|
|
77
|
+
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
78
|
+
breadCrumbData: import("vue").Ref<string, string>;
|
|
79
|
+
handleBreadCrumb: () => void;
|
|
80
|
+
}, {}, {}, {}, {
|
|
81
|
+
isShowSelfFilter: boolean;
|
|
82
|
+
isShowOpenClose: boolean;
|
|
83
|
+
isShowFullScreen: boolean;
|
|
84
|
+
}>;
|
|
85
|
+
__isFragment?: undefined;
|
|
86
|
+
__isTeleport?: undefined;
|
|
87
|
+
__isSuspense?: undefined;
|
|
88
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
89
|
+
formItems: {
|
|
90
|
+
type: ArrayConstructor;
|
|
91
|
+
required: true;
|
|
92
|
+
};
|
|
93
|
+
isShowSelfFilter: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
required: false;
|
|
96
|
+
default: boolean;
|
|
97
|
+
};
|
|
98
|
+
isShowOpenClose: {
|
|
99
|
+
type: BooleanConstructor;
|
|
100
|
+
required: false;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
103
|
+
isShowFullScreen: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
required: false;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
108
|
+
}>> & Readonly<{
|
|
109
|
+
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
111
|
+
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
112
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
113
|
+
}>, {
|
|
114
|
+
props: any;
|
|
115
|
+
ListPageBoxObj: any;
|
|
116
|
+
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
117
|
+
toggle: () => Promise<void>;
|
|
118
|
+
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
119
|
+
breadCrumbData: import("vue").Ref<string, string>;
|
|
120
|
+
handleBreadCrumb: () => void;
|
|
121
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose")[], "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", {
|
|
122
|
+
isShowSelfFilter: boolean;
|
|
123
|
+
isShowOpenClose: boolean;
|
|
124
|
+
isShowFullScreen: boolean;
|
|
125
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
3
126
|
export default HbListPageAct;
|
|
4
127
|
export type HbFormItemFilterModalInstance = InstanceType<typeof HbListPageAct>;
|
|
5
128
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAA2B,CAAC;AAC/C,eAAe,aAAa,CAAC;AAE7B,MAAM,MAAM,6BAA6B,GAAG,YAAY,CAAC,OAAO,aAAa,CAAC,CAAC"}
|
package/dist/components/business_comp/list_page_comp/hb_list_page_act/src/HbListPageAct.vue.d.ts
CHANGED
|
@@ -23,10 +23,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
23
23
|
ListPageBoxObj: any;
|
|
24
24
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
25
25
|
toggle: () => Promise<void>;
|
|
26
|
-
emits: (event: "handleSearch" | "handleReset" | "
|
|
26
|
+
emits: (event: "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", ...args: any[]) => void;
|
|
27
27
|
breadCrumbData: import("vue").Ref<string, string>;
|
|
28
28
|
handleBreadCrumb: () => void;
|
|
29
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSearch" | "handleReset" | "
|
|
29
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose")[], "handleSearch" | "handleReset" | "handleSfcmConfirm" | "handleOpenOrClose", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
30
|
formItems: {
|
|
31
31
|
type: ArrayConstructor;
|
|
32
32
|
required: true;
|
|
@@ -47,10 +47,10 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
47
47
|
default: boolean;
|
|
48
48
|
};
|
|
49
49
|
}>> & Readonly<{
|
|
50
|
-
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
51
50
|
onHandleSearch?: ((...args: any[]) => any) | undefined;
|
|
52
51
|
onHandleReset?: ((...args: any[]) => any) | undefined;
|
|
53
52
|
onHandleSfcmConfirm?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
onHandleOpenOrClose?: ((...args: any[]) => any) | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
isShowSelfFilter: boolean;
|
|
56
56
|
isShowOpenClose: boolean;
|
|
@@ -1,5 +1,101 @@
|
|
|
1
1
|
export * from './src/type';
|
|
2
|
-
declare const HbListPageBox:
|
|
2
|
+
declare const HbListPageBox: ({
|
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
tableHeight: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
required: false;
|
|
7
|
+
default: number;
|
|
8
|
+
};
|
|
9
|
+
tabelData: {
|
|
10
|
+
type: ArrayConstructor;
|
|
11
|
+
required: false;
|
|
12
|
+
default: () => never[];
|
|
13
|
+
};
|
|
14
|
+
offsetBottom: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
required: false;
|
|
17
|
+
};
|
|
18
|
+
minHeight: {
|
|
19
|
+
type: NumberConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{}>, {
|
|
23
|
+
props: any;
|
|
24
|
+
PageContainerRef: Readonly<import("vue").ShallowRef<unknown, unknown>>;
|
|
25
|
+
calTableHeight: () => void;
|
|
26
|
+
tableHeight: import("vue").Ref<number, number>;
|
|
27
|
+
tbHeight: import("vue").ComputedRef<number>;
|
|
28
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
29
|
+
tableHeight: number;
|
|
30
|
+
tabelData: unknown[];
|
|
31
|
+
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
32
|
+
P: {};
|
|
33
|
+
B: {};
|
|
34
|
+
D: {};
|
|
35
|
+
C: {};
|
|
36
|
+
M: {};
|
|
37
|
+
Defaults: {};
|
|
38
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
+
tableHeight: {
|
|
40
|
+
type: NumberConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
default: number;
|
|
43
|
+
};
|
|
44
|
+
tabelData: {
|
|
45
|
+
type: ArrayConstructor;
|
|
46
|
+
required: false;
|
|
47
|
+
default: () => never[];
|
|
48
|
+
};
|
|
49
|
+
offsetBottom: {
|
|
50
|
+
type: NumberConstructor;
|
|
51
|
+
required: false;
|
|
52
|
+
};
|
|
53
|
+
minHeight: {
|
|
54
|
+
type: NumberConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{}>, {
|
|
58
|
+
props: any;
|
|
59
|
+
PageContainerRef: Readonly<import("vue").ShallowRef<unknown, unknown>>;
|
|
60
|
+
calTableHeight: () => void;
|
|
61
|
+
tableHeight: import("vue").Ref<number, number>;
|
|
62
|
+
tbHeight: import("vue").ComputedRef<number>;
|
|
63
|
+
}, {}, {}, {}, {
|
|
64
|
+
tableHeight: number;
|
|
65
|
+
tabelData: unknown[];
|
|
66
|
+
}>;
|
|
67
|
+
__isFragment?: undefined;
|
|
68
|
+
__isTeleport?: undefined;
|
|
69
|
+
__isSuspense?: undefined;
|
|
70
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
71
|
+
tableHeight: {
|
|
72
|
+
type: NumberConstructor;
|
|
73
|
+
required: false;
|
|
74
|
+
default: number;
|
|
75
|
+
};
|
|
76
|
+
tabelData: {
|
|
77
|
+
type: ArrayConstructor;
|
|
78
|
+
required: false;
|
|
79
|
+
default: () => never[];
|
|
80
|
+
};
|
|
81
|
+
offsetBottom: {
|
|
82
|
+
type: NumberConstructor;
|
|
83
|
+
required: false;
|
|
84
|
+
};
|
|
85
|
+
minHeight: {
|
|
86
|
+
type: NumberConstructor;
|
|
87
|
+
required: false;
|
|
88
|
+
};
|
|
89
|
+
}>> & Readonly<{}>, {
|
|
90
|
+
props: any;
|
|
91
|
+
PageContainerRef: Readonly<import("vue").ShallowRef<unknown, unknown>>;
|
|
92
|
+
calTableHeight: () => void;
|
|
93
|
+
tableHeight: import("vue").Ref<number, number>;
|
|
94
|
+
tbHeight: import("vue").ComputedRef<number>;
|
|
95
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
96
|
+
tableHeight: number;
|
|
97
|
+
tabelData: unknown[];
|
|
98
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[], any[]>) & Record<string, any>;
|
|
3
99
|
export default HbListPageBox;
|
|
4
100
|
export type HbFormItemFilterModalInstance = InstanceType<typeof HbListPageBox>;
|
|
5
101
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAEA,cAAc,YAAY,CAAC;AAC3B,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mSAAiC,CAAC;AACrD,eAAe,aAAa,CAAC;AAE7B,MAAM,MAAM,6BAA6B,GAAG,YAAY,CAAC,OAAO,aAAa,CAAC,CAAC"}
|
|
@@ -8,6 +8,5 @@ import HbMutilpleSelectModal from './hb_form_select_modal';
|
|
|
8
8
|
import HbTableAct from './hb_list_table_act';
|
|
9
9
|
import HbLibListTable from './hb_list_table';
|
|
10
10
|
import HbTableColumnSet from './hb_list_table_colums_set';
|
|
11
|
-
|
|
12
|
-
export { HbListForm as HbLibListForm, HbListPageAct as HbLibListPageAct, HbListBtnsAct as HbLibListBtnsAct, HbListPageContainer as HbLibListPageContainer, HbListMultiSelect as HbLibListMultiSelect, HbMutilpleSelectModal as HbLibMutilpleSelectModal, HbTableAct as HbLibTableAct, HbFormItemFilterModal as HbLibFormItemFilterModal, HbTableColumnSet as HbLibTableColumnSet, HbLibListTable, HbLibCopy, };
|
|
11
|
+
export { HbListForm as HbLibListForm, HbListPageAct as HbLibListPageAct, HbListBtnsAct as HbLibListBtnsAct, HbListPageContainer as HbLibListPageContainer, HbListMultiSelect as HbLibListMultiSelect, HbMutilpleSelectModal as HbLibMutilpleSelectModal, HbTableAct as HbLibTableAct, HbFormItemFilterModal as HbLibFormItemFilterModal, HbTableColumnSet as HbLibTableColumnSet, HbLibListTable, };
|
|
13
12
|
//# sourceMappingURL=index.d.ts.map
|