jb-mobile-ui 1.4.15 → 1.4.16
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/JbMobileSelect.vue.d.ts +15 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +10 -3
- package/package.json +1 -1
|
@@ -15,6 +15,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
15
15
|
type: NumberConstructor;
|
|
16
16
|
default: number;
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* 选项列表弹出层内容的高度
|
|
20
|
+
*/
|
|
21
|
+
popupContentHeight: {
|
|
22
|
+
type: NumberConstructor;
|
|
23
|
+
default: number;
|
|
24
|
+
};
|
|
18
25
|
/**
|
|
19
26
|
* 选择器所选择的值,可通过 v-model 进行双向数据绑定
|
|
20
27
|
*/
|
|
@@ -100,6 +107,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
100
107
|
type: NumberConstructor;
|
|
101
108
|
default: number;
|
|
102
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* 选项列表弹出层内容的高度
|
|
112
|
+
*/
|
|
113
|
+
popupContentHeight: {
|
|
114
|
+
type: NumberConstructor;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
103
117
|
/**
|
|
104
118
|
* 选择器所选择的值,可通过 v-model 进行双向数据绑定
|
|
105
119
|
*/
|
|
@@ -178,6 +192,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
178
192
|
placeholder: string;
|
|
179
193
|
modelValue: string | number;
|
|
180
194
|
width: number;
|
|
195
|
+
popupContentHeight: number;
|
|
181
196
|
popupTitle: string;
|
|
182
197
|
options: Record<string, any>[];
|
|
183
198
|
fieldNames: Record<string, any>;
|