jb-mobile-ui 1.4.13 → 1.4.14

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,6 +65,27 @@ 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
  }>, {
69
90
  handleSelectOptionItem: (item: Record<string, any>) => void;
70
91
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -128,6 +149,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
128
149
  type: ObjectConstructor;
129
150
  default: () => {};
130
151
  };
152
+ /**
153
+ * 是否显示搜索框
154
+ */
155
+ showSearch: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
159
+ /**
160
+ * 搜索框的提示文案
161
+ */
162
+ searchPlaceholder: {
163
+ type: StringConstructor;
164
+ default: string;
165
+ };
166
+ /**
167
+ * 选中项的样式类型, 1 - 主题色填充背景和边框, 2 - 主题色填充文案和边框
168
+ */
169
+ selectedType: {
170
+ type: NumberConstructor;
171
+ default: number;
172
+ };
131
173
  }>> & Readonly<{
132
174
  onChange?: ((...args: any[]) => any) | undefined;
133
175
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
@@ -138,6 +180,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
138
180
  popupTitle: string;
139
181
  options: Record<string, any>[];
140
182
  fieldNames: Record<string, any>;
183
+ showSearch: boolean;
184
+ searchPlaceholder: string;
185
+ selectedType: number;
141
186
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
142
187
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
143
188
  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;