jb-mobile-ui 1.4.12 → 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.
- package/dist/components/JbMobileDatePicker.vue.d.ts +87 -2
- package/dist/components/JbMobileSelect.vue.d.ts +45 -0
- package/dist/components/JbMobileTimePicker.vue.d.ts +64 -3
- package/dist/components/JbMobileTreeSelectPopup.vue.d.ts +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.es.js +121 -54
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
/**
|
|
3
|
-
* 日期选择组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total -
|
|
3
|
+
* 日期选择组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total - 总,examine - 考核
|
|
4
4
|
*/
|
|
5
5
|
datePickerType: {
|
|
6
6
|
type: StringConstructor;
|
|
@@ -41,6 +41,28 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
41
41
|
type: BooleanConstructor;
|
|
42
42
|
default: boolean;
|
|
43
43
|
};
|
|
44
|
+
/**
|
|
45
|
+
* 日期选择组件自定义时间维度列表,值为数组,数组的每一项必须为 { label: '', value: '' } 这种格式的对象
|
|
46
|
+
*/
|
|
47
|
+
customDateFilterTypeList: {
|
|
48
|
+
type: {
|
|
49
|
+
(arrayLength: number): Record<string, any>[];
|
|
50
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
51
|
+
new (arrayLength: number): Record<string, any>[];
|
|
52
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
53
|
+
isArray(arg: any): arg is any[];
|
|
54
|
+
readonly prototype: any[];
|
|
55
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
56
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
57
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
58
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
59
|
+
of<T>(...items: T[]): T[];
|
|
60
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
61
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
62
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
63
|
+
};
|
|
64
|
+
default: () => never[];
|
|
65
|
+
};
|
|
44
66
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
45
67
|
confirm: (...args: any[]) => void;
|
|
46
68
|
changeDateFail: (...args: any[]) => void;
|
|
@@ -48,7 +70,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
70
|
"update:dateFormatValue": (...args: any[]) => void;
|
|
49
71
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
50
72
|
/**
|
|
51
|
-
* 日期选择组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total -
|
|
73
|
+
* 日期选择组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total - 总,examine - 考核
|
|
52
74
|
*/
|
|
53
75
|
datePickerType: {
|
|
54
76
|
type: StringConstructor;
|
|
@@ -89,6 +111,28 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
89
111
|
type: BooleanConstructor;
|
|
90
112
|
default: boolean;
|
|
91
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* 日期选择组件自定义时间维度列表,值为数组,数组的每一项必须为 { label: '', value: '' } 这种格式的对象
|
|
116
|
+
*/
|
|
117
|
+
customDateFilterTypeList: {
|
|
118
|
+
type: {
|
|
119
|
+
(arrayLength: number): Record<string, any>[];
|
|
120
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
121
|
+
new (arrayLength: number): Record<string, any>[];
|
|
122
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
123
|
+
isArray(arg: any): arg is any[];
|
|
124
|
+
readonly prototype: any[];
|
|
125
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
126
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
127
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
128
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
129
|
+
of<T>(...items: T[]): T[];
|
|
130
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
131
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
132
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
133
|
+
};
|
|
134
|
+
default: () => never[];
|
|
135
|
+
};
|
|
92
136
|
}>> & Readonly<{
|
|
93
137
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
94
138
|
onChangeDateFail?: ((...args: any[]) => any) | undefined;
|
|
@@ -98,6 +142,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
142
|
disabled: boolean;
|
|
99
143
|
defaultValue: Date | unknown[];
|
|
100
144
|
datePickerTypeList: unknown[];
|
|
145
|
+
customDateFilterTypeList: Record<string, any>[];
|
|
101
146
|
dateFormatValue: string;
|
|
102
147
|
datePickerType: string;
|
|
103
148
|
showDatePickerType: boolean;
|
|
@@ -143,6 +188,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
143
188
|
type: BooleanConstructor;
|
|
144
189
|
default: boolean;
|
|
145
190
|
};
|
|
191
|
+
customDateFilterTypeList: {
|
|
192
|
+
type: {
|
|
193
|
+
(arrayLength: number): Record<string, any>[];
|
|
194
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
195
|
+
new (arrayLength: number): Record<string, any>[];
|
|
196
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
197
|
+
isArray(arg: any): arg is any[];
|
|
198
|
+
readonly prototype: any[];
|
|
199
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
200
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
201
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
202
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
203
|
+
of<T>(...items: T[]): T[];
|
|
204
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
205
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
206
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
207
|
+
};
|
|
208
|
+
default: () => never[];
|
|
209
|
+
};
|
|
146
210
|
}>> & Readonly<{
|
|
147
211
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
148
212
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
@@ -167,6 +231,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
167
231
|
withSelectTab: boolean;
|
|
168
232
|
datePickerTypeList: unknown[];
|
|
169
233
|
disabledTab: boolean;
|
|
234
|
+
customDateFilterTypeList: Record<string, any>[];
|
|
170
235
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
171
236
|
timePickerContentRef: HTMLDivElement;
|
|
172
237
|
calendarRef: ({
|
|
@@ -689,6 +754,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
689
754
|
type: BooleanConstructor;
|
|
690
755
|
default: boolean;
|
|
691
756
|
};
|
|
757
|
+
customDateFilterTypeList: {
|
|
758
|
+
type: {
|
|
759
|
+
(arrayLength: number): Record<string, any>[];
|
|
760
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
761
|
+
new (arrayLength: number): Record<string, any>[];
|
|
762
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
763
|
+
isArray(arg: any): arg is any[];
|
|
764
|
+
readonly prototype: any[];
|
|
765
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
766
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
767
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
768
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
769
|
+
of<T>(...items: T[]): T[];
|
|
770
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
771
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
772
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
773
|
+
};
|
|
774
|
+
default: () => never[];
|
|
775
|
+
};
|
|
692
776
|
}>> & Readonly<{
|
|
693
777
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
694
778
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
@@ -708,6 +792,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
708
792
|
withSelectTab: boolean;
|
|
709
793
|
datePickerTypeList: unknown[];
|
|
710
794
|
disabledTab: boolean;
|
|
795
|
+
customDateFilterTypeList: Record<string, any>[];
|
|
711
796
|
}> | null;
|
|
712
797
|
}, HTMLDivElement>;
|
|
713
798
|
export default _default;
|
|
@@ -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;
|
|
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
8
8
|
default: boolean;
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
|
-
* 时间选择弹出层组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total -
|
|
11
|
+
* 时间选择弹出层组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total - 总,examine - 考核
|
|
12
12
|
*/
|
|
13
13
|
timePickerType: {
|
|
14
14
|
type: StringConstructor;
|
|
@@ -70,6 +70,28 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
70
|
type: BooleanConstructor;
|
|
71
71
|
default: boolean;
|
|
72
72
|
};
|
|
73
|
+
/**
|
|
74
|
+
* 时间选择弹出层组件自定义时间维度列表,值为数组,数组的每一项必须为 { label: '', value: '' } 这种格式的对象
|
|
75
|
+
*/
|
|
76
|
+
customDateFilterTypeList: {
|
|
77
|
+
type: {
|
|
78
|
+
(arrayLength: number): Record<string, any>[];
|
|
79
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
80
|
+
new (arrayLength: number): Record<string, any>[];
|
|
81
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
82
|
+
isArray(arg: any): arg is any[];
|
|
83
|
+
readonly prototype: any[];
|
|
84
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
85
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
86
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
87
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
88
|
+
of<T>(...items: T[]): T[];
|
|
89
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
90
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
91
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
92
|
+
};
|
|
93
|
+
default: () => never[];
|
|
94
|
+
};
|
|
73
95
|
}>, {
|
|
74
96
|
toPrevDate: () => void;
|
|
75
97
|
toNextDate: () => void;
|
|
@@ -87,7 +109,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
87
109
|
default: boolean;
|
|
88
110
|
};
|
|
89
111
|
/**
|
|
90
|
-
* 时间选择弹出层组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total -
|
|
112
|
+
* 时间选择弹出层组件当前默认的时间维度,可通过 v-model 进行双向数据绑定,可选值为:dateRange - 按日、week - 按周、month - 按月、quarter - 按季度、year - 按年、total - 总,examine - 考核
|
|
91
113
|
*/
|
|
92
114
|
timePickerType: {
|
|
93
115
|
type: StringConstructor;
|
|
@@ -149,6 +171,28 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
149
171
|
type: BooleanConstructor;
|
|
150
172
|
default: boolean;
|
|
151
173
|
};
|
|
174
|
+
/**
|
|
175
|
+
* 时间选择弹出层组件自定义时间维度列表,值为数组,数组的每一项必须为 { label: '', value: '' } 这种格式的对象
|
|
176
|
+
*/
|
|
177
|
+
customDateFilterTypeList: {
|
|
178
|
+
type: {
|
|
179
|
+
(arrayLength: number): Record<string, any>[];
|
|
180
|
+
(...items: Record<string, any>[]): Record<string, any>[];
|
|
181
|
+
new (arrayLength: number): Record<string, any>[];
|
|
182
|
+
new (...items: Record<string, any>[]): Record<string, any>[];
|
|
183
|
+
isArray(arg: any): arg is any[];
|
|
184
|
+
readonly prototype: any[];
|
|
185
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
186
|
+
from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
187
|
+
from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
|
|
188
|
+
from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
|
|
189
|
+
of<T>(...items: T[]): T[];
|
|
190
|
+
fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
|
|
191
|
+
fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
|
|
192
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
193
|
+
};
|
|
194
|
+
default: () => never[];
|
|
195
|
+
};
|
|
152
196
|
}>> & Readonly<{
|
|
153
197
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
154
198
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
@@ -165,6 +209,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
165
209
|
withSelectTab: boolean;
|
|
166
210
|
datePickerTypeList: unknown[];
|
|
167
211
|
disabledTab: boolean;
|
|
212
|
+
customDateFilterTypeList: Record<string, any>[];
|
|
168
213
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
169
214
|
timePickerContentRef: HTMLDivElement;
|
|
170
215
|
calendarRef: ({
|
|
@@ -466,7 +511,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
466
511
|
};
|
|
467
512
|
$forceUpdate: () => void;
|
|
468
513
|
$nextTick: typeof nextTick;
|
|
469
|
-
$watch<T extends string | ((
|
|
514
|
+
$watch<T extends string | ((
|
|
515
|
+
/**
|
|
516
|
+
* 时间选择弹出层组件,支持按日、按周、按月、按季度、按年这几个维度来选择日期
|
|
517
|
+
*/
|
|
518
|
+
...args: any) => any)>(source: T, cb: T extends (
|
|
519
|
+
/**
|
|
520
|
+
* 时间选择弹出层组件,支持按日、按周、按月、按季度、按年这几个维度来选择日期
|
|
521
|
+
*/
|
|
522
|
+
...args: any) => infer R ? (
|
|
523
|
+
/**
|
|
524
|
+
* 时间选择弹出层组件,支持按日、按周、按月、按季度、按年这几个维度来选择日期
|
|
525
|
+
*/
|
|
526
|
+
...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (
|
|
527
|
+
/**
|
|
528
|
+
* 时间选择弹出层组件,支持按日、按周、按月、按季度、按年这几个维度来选择日期
|
|
529
|
+
*/
|
|
530
|
+
...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
470
531
|
} & Readonly<{
|
|
471
532
|
type: import('vant').CalendarType;
|
|
472
533
|
position: import('vant').PopupPosition;
|
|
@@ -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;
|