jb-mobile-ui 1.4.13 → 1.4.15
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.
|
@@ -65,7 +65,29 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
65
65
|
type: ObjectConstructor;
|
|
66
66
|
default: () => {};
|
|
67
67
|
};
|
|
68
|
+
/**
|
|
69
|
+
* 是否显示搜索框
|
|
70
|
+
*/
|
|
71
|
+
showSearch: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* 搜索框的提示文案
|
|
77
|
+
*/
|
|
78
|
+
searchPlaceholder: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* 选中项的样式类型, 1 - 主题色填充背景和边框, 2 - 主题色填充文案和边框
|
|
84
|
+
*/
|
|
85
|
+
selectedType: {
|
|
86
|
+
type: NumberConstructor;
|
|
87
|
+
default: number;
|
|
88
|
+
};
|
|
68
89
|
}>, {
|
|
90
|
+
showOptionsPopup: () => void;
|
|
69
91
|
handleSelectOptionItem: (item: Record<string, any>) => void;
|
|
70
92
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
71
93
|
change: (...args: any[]) => void;
|
|
@@ -128,6 +150,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
128
150
|
type: ObjectConstructor;
|
|
129
151
|
default: () => {};
|
|
130
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* 是否显示搜索框
|
|
155
|
+
*/
|
|
156
|
+
showSearch: {
|
|
157
|
+
type: BooleanConstructor;
|
|
158
|
+
default: boolean;
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* 搜索框的提示文案
|
|
162
|
+
*/
|
|
163
|
+
searchPlaceholder: {
|
|
164
|
+
type: StringConstructor;
|
|
165
|
+
default: string;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* 选中项的样式类型, 1 - 主题色填充背景和边框, 2 - 主题色填充文案和边框
|
|
169
|
+
*/
|
|
170
|
+
selectedType: {
|
|
171
|
+
type: NumberConstructor;
|
|
172
|
+
default: number;
|
|
173
|
+
};
|
|
131
174
|
}>> & Readonly<{
|
|
132
175
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
133
176
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -138,6 +181,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
138
181
|
popupTitle: string;
|
|
139
182
|
options: Record<string, any>[];
|
|
140
183
|
fieldNames: Record<string, any>;
|
|
184
|
+
showSearch: boolean;
|
|
185
|
+
searchPlaceholder: string;
|
|
186
|
+
selectedType: number;
|
|
141
187
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
142
188
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
143
189
|
export default _default;
|
|
@@ -194,9 +194,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
194
194
|
visible: boolean;
|
|
195
195
|
height: number;
|
|
196
196
|
fieldNames: Record<string, any>;
|
|
197
|
+
searchValue: string;
|
|
197
198
|
paddingTop: number;
|
|
198
199
|
dataList: Record<string, any>[];
|
|
199
|
-
searchValue: string;
|
|
200
200
|
searchInputPlaceholder: string;
|
|
201
201
|
defaultSelectedValue: string | number;
|
|
202
202
|
isAutoSelectFirstChildren: boolean;
|