jb-mobile-ui 1.4.14 → 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 +16 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +14 -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
|
*/
|
|
@@ -87,6 +94,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
87
94
|
default: number;
|
|
88
95
|
};
|
|
89
96
|
}>, {
|
|
97
|
+
showOptionsPopup: () => void;
|
|
90
98
|
handleSelectOptionItem: (item: Record<string, any>) => void;
|
|
91
99
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
92
100
|
change: (...args: any[]) => void;
|
|
@@ -99,6 +107,13 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
99
107
|
type: NumberConstructor;
|
|
100
108
|
default: number;
|
|
101
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* 选项列表弹出层内容的高度
|
|
112
|
+
*/
|
|
113
|
+
popupContentHeight: {
|
|
114
|
+
type: NumberConstructor;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
102
117
|
/**
|
|
103
118
|
* 选择器所选择的值,可通过 v-model 进行双向数据绑定
|
|
104
119
|
*/
|
|
@@ -177,6 +192,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
177
192
|
placeholder: string;
|
|
178
193
|
modelValue: string | number;
|
|
179
194
|
width: number;
|
|
195
|
+
popupContentHeight: number;
|
|
180
196
|
popupTitle: string;
|
|
181
197
|
options: Record<string, any>[];
|
|
182
198
|
fieldNames: Record<string, any>;
|