@hb-hellotech/hb-ui 1.1.0 → 1.1.3
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 +966 -1289
- package/dist/hb_component_lib.umd.cjs +1 -1
- package/dist/index.d.ts +0 -4
- package/dist/index.d.ts.map +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
- package/dist/components/hooks/useListFormItem.d.ts +0 -8
- package/dist/components/hooks/useListFormItem.d.ts.map +0 -1
- package/dist/components/type.d.ts +0 -13
- package/dist/components/type.d.ts.map +0 -1
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import { Key, TreeNodes, TreeOptions } from "./tree";
|
|
2
|
-
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
-
readonly data: {
|
|
4
|
-
readonly type: import("vue").PropType<TreeOptions[]>;
|
|
5
|
-
readonly required: true;
|
|
6
|
-
};
|
|
7
|
-
readonly modelValue: {
|
|
8
|
-
readonly type: ArrayConstructor;
|
|
9
|
-
readonly default: () => never[];
|
|
10
|
-
};
|
|
11
|
-
readonly labelKey: {
|
|
12
|
-
readonly type: StringConstructor;
|
|
13
|
-
readonly default: "label";
|
|
14
|
-
};
|
|
15
|
-
readonly keyKey: {
|
|
16
|
-
readonly type: StringConstructor;
|
|
17
|
-
readonly default: "key";
|
|
18
|
-
};
|
|
19
|
-
readonly childrenKey: {
|
|
20
|
-
readonly type: StringConstructor;
|
|
21
|
-
readonly default: "children";
|
|
22
|
-
};
|
|
23
|
-
readonly defaultExpandKeys: {
|
|
24
|
-
readonly type: import("vue").PropType<Key[]>;
|
|
25
|
-
readonly default: () => never[];
|
|
26
|
-
};
|
|
27
|
-
readonly multiple: {
|
|
28
|
-
readonly type: BooleanConstructor;
|
|
29
|
-
readonly default: false;
|
|
30
|
-
};
|
|
31
|
-
readonly remote: {
|
|
32
|
-
readonly type: BooleanConstructor;
|
|
33
|
-
readonly default: false;
|
|
34
|
-
};
|
|
35
|
-
readonly clickToSelect: {
|
|
36
|
-
readonly type: BooleanConstructor;
|
|
37
|
-
};
|
|
38
|
-
}>, {
|
|
39
|
-
props: any;
|
|
40
|
-
bem: {
|
|
41
|
-
b: (block?: string | undefined) => string;
|
|
42
|
-
e: (element: string) => string;
|
|
43
|
-
m: (modifier: string) => string;
|
|
44
|
-
be: (block: string, element: string) => string;
|
|
45
|
-
em: (element: string, modifier: string) => string;
|
|
46
|
-
bem: (block: string, element: string, modifier: string) => string;
|
|
47
|
-
is: (name: string, state: string | boolean) => string;
|
|
48
|
-
};
|
|
49
|
-
afterFormatData: import("vue").Ref<{
|
|
50
|
-
[x: string]: unknown;
|
|
51
|
-
expanded?: boolean | undefined;
|
|
52
|
-
checked?: boolean | undefined;
|
|
53
|
-
indeterminate?: boolean | undefined;
|
|
54
|
-
disabled?: boolean | undefined;
|
|
55
|
-
loading?: boolean | undefined;
|
|
56
|
-
selected?: boolean | undefined;
|
|
57
|
-
leaf?: boolean | undefined;
|
|
58
|
-
parentKey?: Key | null | undefined;
|
|
59
|
-
level?: number | undefined;
|
|
60
|
-
originData?: {
|
|
61
|
-
[x: string]: unknown;
|
|
62
|
-
label?: Key | undefined;
|
|
63
|
-
key?: Key | undefined;
|
|
64
|
-
children?: any[] | undefined;
|
|
65
|
-
} | undefined;
|
|
66
|
-
label: Key;
|
|
67
|
-
key: Key;
|
|
68
|
-
children: {
|
|
69
|
-
[x: string]: unknown;
|
|
70
|
-
label?: Key | undefined;
|
|
71
|
-
key?: Key | undefined;
|
|
72
|
-
children?: any[] | undefined;
|
|
73
|
-
}[];
|
|
74
|
-
}[], TreeNodes[] | {
|
|
75
|
-
[x: string]: unknown;
|
|
76
|
-
expanded?: boolean | undefined;
|
|
77
|
-
checked?: boolean | undefined;
|
|
78
|
-
indeterminate?: boolean | undefined;
|
|
79
|
-
disabled?: boolean | undefined;
|
|
80
|
-
loading?: boolean | undefined;
|
|
81
|
-
selected?: boolean | undefined;
|
|
82
|
-
leaf?: boolean | undefined;
|
|
83
|
-
parentKey?: Key | null | undefined;
|
|
84
|
-
level?: number | undefined;
|
|
85
|
-
originData?: {
|
|
86
|
-
[x: string]: unknown;
|
|
87
|
-
label?: Key | undefined;
|
|
88
|
-
key?: Key | undefined;
|
|
89
|
-
children?: any[] | undefined;
|
|
90
|
-
} | undefined;
|
|
91
|
-
label: Key;
|
|
92
|
-
key: Key;
|
|
93
|
-
children: {
|
|
94
|
-
[x: string]: unknown;
|
|
95
|
-
label?: Key | undefined;
|
|
96
|
-
key?: Key | undefined;
|
|
97
|
-
children?: any[] | undefined;
|
|
98
|
-
}[];
|
|
99
|
-
}[]>;
|
|
100
|
-
expandedKeys: import("vue").Ref<Set<Key> & Omit<Set<Key>, keyof Set<any>>, Set<Key> | (Set<Key> & Omit<Set<Key>, keyof Set<any>>)>;
|
|
101
|
-
formatData: (data: TreeOptions[]) => TreeNodes[];
|
|
102
|
-
flatterTree: import("vue").ComputedRef<TreeNodes[]>;
|
|
103
|
-
toggleExpand: (key: Key) => void;
|
|
104
|
-
handleClick: () => void;
|
|
105
|
-
TreeNode: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
106
|
-
item: {
|
|
107
|
-
type: import("vue").PropType<TreeNodes>;
|
|
108
|
-
default(): {};
|
|
109
|
-
};
|
|
110
|
-
expandedKeys: {
|
|
111
|
-
type: import("vue").PropType<Set<string | number>>;
|
|
112
|
-
};
|
|
113
|
-
}>, {
|
|
114
|
-
props: any;
|
|
115
|
-
emits: (event: "toggleExpand", ...args: any[]) => void;
|
|
116
|
-
bem: {
|
|
117
|
-
b: (block?: string | undefined) => string;
|
|
118
|
-
e: (element: string) => string;
|
|
119
|
-
m: (modifier: string) => string;
|
|
120
|
-
be: (block: string, element: string) => string;
|
|
121
|
-
em: (element: string, modifier: string) => string;
|
|
122
|
-
bem: (block: string, element: string, modifier: string) => string;
|
|
123
|
-
is: (name: string, state: string | boolean) => string;
|
|
124
|
-
};
|
|
125
|
-
isExpanded: import("vue").ComputedRef<boolean>;
|
|
126
|
-
handleClick: () => void;
|
|
127
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "toggleExpand"[], "toggleExpand", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
128
|
-
item: {
|
|
129
|
-
type: import("vue").PropType<TreeNodes>;
|
|
130
|
-
default(): {};
|
|
131
|
-
};
|
|
132
|
-
expandedKeys: {
|
|
133
|
-
type: import("vue").PropType<Set<string | number>>;
|
|
134
|
-
};
|
|
135
|
-
}>> & Readonly<{
|
|
136
|
-
onToggleExpand?: ((...args: any[]) => any) | undefined;
|
|
137
|
-
}>, {
|
|
138
|
-
item: TreeNodes;
|
|
139
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
140
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
141
|
-
readonly data: {
|
|
142
|
-
readonly type: import("vue").PropType<TreeOptions[]>;
|
|
143
|
-
readonly required: true;
|
|
144
|
-
};
|
|
145
|
-
readonly modelValue: {
|
|
146
|
-
readonly type: ArrayConstructor;
|
|
147
|
-
readonly default: () => never[];
|
|
148
|
-
};
|
|
149
|
-
readonly labelKey: {
|
|
150
|
-
readonly type: StringConstructor;
|
|
151
|
-
readonly default: "label";
|
|
152
|
-
};
|
|
153
|
-
readonly keyKey: {
|
|
154
|
-
readonly type: StringConstructor;
|
|
155
|
-
readonly default: "key";
|
|
156
|
-
};
|
|
157
|
-
readonly childrenKey: {
|
|
158
|
-
readonly type: StringConstructor;
|
|
159
|
-
readonly default: "children";
|
|
160
|
-
};
|
|
161
|
-
readonly defaultExpandKeys: {
|
|
162
|
-
readonly type: import("vue").PropType<Key[]>;
|
|
163
|
-
readonly default: () => never[];
|
|
164
|
-
};
|
|
165
|
-
readonly multiple: {
|
|
166
|
-
readonly type: BooleanConstructor;
|
|
167
|
-
readonly default: false;
|
|
168
|
-
};
|
|
169
|
-
readonly remote: {
|
|
170
|
-
readonly type: BooleanConstructor;
|
|
171
|
-
readonly default: false;
|
|
172
|
-
};
|
|
173
|
-
readonly clickToSelect: {
|
|
174
|
-
readonly type: BooleanConstructor;
|
|
175
|
-
};
|
|
176
|
-
}>> & Readonly<{}>, {
|
|
177
|
-
readonly modelValue: unknown[];
|
|
178
|
-
readonly labelKey: string;
|
|
179
|
-
readonly keyKey: string;
|
|
180
|
-
readonly childrenKey: string;
|
|
181
|
-
readonly defaultExpandKeys: Key[];
|
|
182
|
-
readonly multiple: boolean;
|
|
183
|
-
readonly remote: boolean;
|
|
184
|
-
readonly clickToSelect: boolean;
|
|
185
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
186
|
-
export default _sfc_main;
|
|
187
|
-
//# sourceMappingURL=tree.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tree.vue.d.ts","sourceRoot":"","sources":["tree.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAc,GAAG,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAA;AAIhE,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAkBW,WAAW,EAAE;;wBAwEZ,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAiB5B,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { PropType } from "vue";
|
|
2
|
-
import { TreeNodes } from "./tree";
|
|
3
|
-
declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
|
-
item: {
|
|
5
|
-
type: PropType<TreeNodes>;
|
|
6
|
-
default(): {};
|
|
7
|
-
};
|
|
8
|
-
expandedKeys: {
|
|
9
|
-
type: PropType<Set<string | number>>;
|
|
10
|
-
};
|
|
11
|
-
}>, {
|
|
12
|
-
props: any;
|
|
13
|
-
emits: (event: "toggleExpand", ...args: any[]) => void;
|
|
14
|
-
bem: {
|
|
15
|
-
b: (block?: string | undefined) => string;
|
|
16
|
-
e: (element: string) => string;
|
|
17
|
-
m: (modifier: string) => string;
|
|
18
|
-
be: (block: string, element: string) => string;
|
|
19
|
-
em: (element: string, modifier: string) => string;
|
|
20
|
-
bem: (block: string, element: string, modifier: string) => string;
|
|
21
|
-
is: (name: string, state: string | boolean) => string;
|
|
22
|
-
};
|
|
23
|
-
isExpanded: import("vue").ComputedRef<boolean>;
|
|
24
|
-
handleClick: () => void;
|
|
25
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "toggleExpand"[], "toggleExpand", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
item: {
|
|
27
|
-
type: PropType<TreeNodes>;
|
|
28
|
-
default(): {};
|
|
29
|
-
};
|
|
30
|
-
expandedKeys: {
|
|
31
|
-
type: PropType<Set<string | number>>;
|
|
32
|
-
};
|
|
33
|
-
}>> & Readonly<{
|
|
34
|
-
onToggleExpand?: ((...args: any[]) => any) | undefined;
|
|
35
|
-
}>, {
|
|
36
|
-
item: TreeNodes;
|
|
37
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
38
|
-
export default _sfc_main;
|
|
39
|
-
//# sourceMappingURL=treeNode.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"treeNode.vue.d.ts","sourceRoot":"","sources":["treeNode.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAY,QAAQ,EAAE,MAAM,KAAK,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA;AAIlC,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAgCb,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { LocalShowList_intf } from '../business_comp/list_page_comp/hb_form_item_filter_modal/src/type';
|
|
2
|
-
declare const useListFormItem: (props: LocalShowList_intf[]) => {
|
|
3
|
-
formItems: import("vue").Ref<LocalShowList_intf[] | undefined, LocalShowList_intf[] | undefined>;
|
|
4
|
-
DeepCloneFromItem: any;
|
|
5
|
-
handleSearchCase: (queryParam: any) => void;
|
|
6
|
-
};
|
|
7
|
-
export default useListFormItem;
|
|
8
|
-
//# sourceMappingURL=useListFormItem.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useListFormItem.d.ts","sourceRoot":"","sources":["useListFormItem.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oEAAoE,CAAC;AAI7G,QAAA,MAAM,eAAe,UAAW,kBAAkB,EAAE;;;mCAMZ,GAAG;CAgB1C,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export * from '../components/business_comp/list_page_comp/hb_form_item_filter_modal/src/type';
|
|
2
|
-
export * from '../components/business_comp/list_page_comp/hb_form_select_filter/src/type';
|
|
3
|
-
export * from '../components/business_comp/list_page_comp/hb_form_select_modal/src/type';
|
|
4
|
-
export * from '../components/business_comp/list_page_comp/hb_list_btns_act/src/type';
|
|
5
|
-
export * from '../components/business_comp/list_page_comp/hb_list_form/src/type';
|
|
6
|
-
export * from '../components/business_comp/list_page_comp/hb_list_page_act/src/type';
|
|
7
|
-
export * from '../components/business_comp/list_page_comp/hb_list_page_container/src/type';
|
|
8
|
-
export * from '../components/business_comp/list_page_comp/hb_list_table/src/type';
|
|
9
|
-
export * from '../components/business_comp/list_page_comp/hb_list_table_act/src/type';
|
|
10
|
-
export * from '../components/business_comp/list_page_comp/hb_list_table_colums_set/src/type';
|
|
11
|
-
export * from '../components/func_comp/hb_func_comp_copy/src/type';
|
|
12
|
-
export * from '../components/func_comp/hb_func_comp_drag/src/type';
|
|
13
|
-
//# sourceMappingURL=type.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"type.d.ts","sourceRoot":"","sources":["type.ts"],"names":[],"mappings":"AACA,cAAc,8EAA8E,CAAC;AAC7F,cAAc,0EAA0E,CAAC;AACzF,cAAc,yEAAyE,CAAC;AACxF,cAAc,qEAAqE,CAAC;AACpF,cAAc,iEAAiE,CAAC;AAChF,cAAc,qEAAqE,CAAC;AACpF,cAAc,2EAA2E,CAAC;AAC1F,cAAc,kEAAkE,CAAC;AACjF,cAAc,sEAAsE,CAAC;AACrF,cAAc,6EAA6E,CAAC;AAE5F,cAAc,mDAAmD,CAAC;AAClE,cAAc,mDAAmD,CAAC"}
|