jb-mobile-ui 1.4.16 → 1.4.17
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.
|
@@ -19,7 +19,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
19
19
|
* 选项列表弹出层内容的高度
|
|
20
20
|
*/
|
|
21
21
|
popupContentHeight: {
|
|
22
|
-
type: NumberConstructor;
|
|
22
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
23
23
|
default: number;
|
|
24
24
|
};
|
|
25
25
|
/**
|
|
@@ -111,7 +111,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
111
111
|
* 选项列表弹出层内容的高度
|
|
112
112
|
*/
|
|
113
113
|
popupContentHeight: {
|
|
114
|
-
type: NumberConstructor;
|
|
114
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
115
115
|
default: number;
|
|
116
116
|
};
|
|
117
117
|
/**
|
|
@@ -192,7 +192,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
192
192
|
placeholder: string;
|
|
193
193
|
modelValue: string | number;
|
|
194
194
|
width: number;
|
|
195
|
-
popupContentHeight: number;
|
|
195
|
+
popupContentHeight: string | number;
|
|
196
196
|
popupTitle: string;
|
|
197
197
|
options: Record<string, any>[];
|
|
198
198
|
fieldNames: Record<string, any>;
|