jb-mobile-ui 1.5.17 → 1.5.19

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.
@@ -132,6 +132,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
132
132
  type: BooleanConstructor;
133
133
  default: boolean;
134
134
  };
135
+ /**
136
+ * 是否禁用选项列表弹出层的底部确认按钮
137
+ */
138
+ confirmButtonDisabled: {
139
+ type: BooleanConstructor;
140
+ default: boolean;
141
+ };
135
142
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
136
143
  confirm: (...args: any[]) => void;
137
144
  "update:modelValue": (...args: any[]) => void;
@@ -259,6 +266,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
259
266
  type: BooleanConstructor;
260
267
  default: boolean;
261
268
  };
269
+ /**
270
+ * 是否禁用选项列表弹出层的底部确认按钮
271
+ */
272
+ confirmButtonDisabled: {
273
+ type: BooleanConstructor;
274
+ default: boolean;
275
+ };
262
276
  }>> & Readonly<{
263
277
  onConfirm?: ((...args: any[]) => any) | undefined;
264
278
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
@@ -267,6 +281,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
267
281
  }>, {
268
282
  loading: boolean;
269
283
  disabled: boolean;
284
+ confirmButtonDisabled: boolean;
270
285
  multiple: boolean;
271
286
  placeholder: string;
272
287
  modelValue: string | number;