@uzum-tech/ui 1.12.21 → 1.13.0

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.
Files changed (95) hide show
  1. package/dist/index.js +2789 -510
  2. package/dist/index.prod.js +4 -4
  3. package/es/_styles/common/dark.js +1 -1
  4. package/es/_styles/common/light.d.ts +1 -0
  5. package/es/_styles/common/light.js +1 -1
  6. package/es/chat/src/ChatMessages.js +6 -1
  7. package/es/chat/src/styles/index.cssr.js +5 -1
  8. package/es/components.d.ts +1 -0
  9. package/es/components.js +1 -0
  10. package/es/config-provider/src/internal-interface.d.ts +3 -0
  11. package/es/date-picker-v2/index.d.ts +5 -0
  12. package/es/date-picker-v2/index.js +2 -0
  13. package/es/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
  14. package/es/date-picker-v2/src/DatePickerV2.js +750 -0
  15. package/es/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
  16. package/es/date-picker-v2/src/composables/useCalendarScroll.js +61 -0
  17. package/es/date-picker-v2/src/config.d.ts +14 -0
  18. package/es/date-picker-v2/src/config.js +34 -0
  19. package/es/date-picker-v2/src/interface.d.ts +42 -0
  20. package/es/date-picker-v2/src/interface.js +1 -0
  21. package/es/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
  22. package/es/date-picker-v2/src/panel/CalendarPanel.js +186 -0
  23. package/es/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
  24. package/es/date-picker-v2/src/panel/CalendarRangePanel.js +205 -0
  25. package/es/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
  26. package/es/date-picker-v2/src/styles/index.cssr.js +190 -0
  27. package/es/date-picker-v2/src/utils.d.ts +12 -0
  28. package/es/date-picker-v2/src/utils.js +92 -0
  29. package/es/date-picker-v2/styles/dark.d.ts +447 -0
  30. package/es/date-picker-v2/styles/dark.js +19 -0
  31. package/es/date-picker-v2/styles/index.d.ts +3 -0
  32. package/es/date-picker-v2/styles/index.js +2 -0
  33. package/es/date-picker-v2/styles/light.d.ts +477 -0
  34. package/es/date-picker-v2/styles/light.js +56 -0
  35. package/es/dialog/src/DialogProvider.d.ts +2 -0
  36. package/es/header/src/Header.js +4 -1
  37. package/es/header/src/HeaderSearchDesktop.d.ts +12 -0
  38. package/es/header/src/HeaderSearchDesktop.js +21 -4
  39. package/es/header/src/HeaderSearchMobile.d.ts +12 -0
  40. package/es/header/src/HeaderSearchMobile.js +8 -2
  41. package/es/header/src/mobile/HeaderMobile.js +18 -3
  42. package/es/locales/common/enUS.js +1 -1
  43. package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
  44. package/es/themes/dark.js +2 -0
  45. package/es/themes/light.js +2 -0
  46. package/es/version.d.ts +1 -1
  47. package/es/version.js +1 -1
  48. package/lib/_styles/common/dark.js +1 -1
  49. package/lib/_styles/common/light.d.ts +1 -0
  50. package/lib/_styles/common/light.js +1 -1
  51. package/lib/chat/src/ChatMessages.js +6 -1
  52. package/lib/chat/src/styles/index.cssr.js +5 -1
  53. package/lib/components.d.ts +1 -0
  54. package/lib/components.js +1 -0
  55. package/lib/config-provider/src/internal-interface.d.ts +3 -0
  56. package/lib/date-picker-v2/index.d.ts +5 -0
  57. package/lib/date-picker-v2/index.js +11 -0
  58. package/lib/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
  59. package/lib/date-picker-v2/src/DatePickerV2.js +756 -0
  60. package/lib/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
  61. package/lib/date-picker-v2/src/composables/useCalendarScroll.js +64 -0
  62. package/lib/date-picker-v2/src/config.d.ts +14 -0
  63. package/lib/date-picker-v2/src/config.js +37 -0
  64. package/lib/date-picker-v2/src/interface.d.ts +42 -0
  65. package/lib/date-picker-v2/src/interface.js +4 -0
  66. package/lib/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
  67. package/lib/date-picker-v2/src/panel/CalendarPanel.js +188 -0
  68. package/lib/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
  69. package/lib/date-picker-v2/src/panel/CalendarRangePanel.js +207 -0
  70. package/lib/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
  71. package/lib/date-picker-v2/src/styles/index.cssr.js +195 -0
  72. package/lib/date-picker-v2/src/utils.d.ts +12 -0
  73. package/lib/date-picker-v2/src/utils.js +101 -0
  74. package/lib/date-picker-v2/styles/dark.d.ts +447 -0
  75. package/lib/date-picker-v2/styles/dark.js +21 -0
  76. package/lib/date-picker-v2/styles/index.d.ts +3 -0
  77. package/lib/date-picker-v2/styles/index.js +10 -0
  78. package/lib/date-picker-v2/styles/light.d.ts +477 -0
  79. package/lib/date-picker-v2/styles/light.js +60 -0
  80. package/lib/dialog/src/DialogProvider.d.ts +2 -0
  81. package/lib/header/src/Header.js +4 -1
  82. package/lib/header/src/HeaderSearchDesktop.d.ts +12 -0
  83. package/lib/header/src/HeaderSearchDesktop.js +20 -3
  84. package/lib/header/src/HeaderSearchMobile.d.ts +12 -0
  85. package/lib/header/src/HeaderSearchMobile.js +7 -1
  86. package/lib/header/src/mobile/HeaderMobile.js +18 -3
  87. package/lib/locales/common/enUS.js +1 -1
  88. package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
  89. package/lib/themes/dark.js +2 -0
  90. package/lib/themes/light.js +2 -0
  91. package/lib/version.d.ts +1 -1
  92. package/lib/version.js +1 -1
  93. package/package.json +1 -1
  94. package/volar.d.ts +1 -0
  95. package/web-types.json +161 -1
@@ -0,0 +1,1222 @@
1
+ import { type PropType } from 'vue';
2
+ import type { DateItem, MonthItem, Value } from '../interface';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ value: PropType<Value>;
5
+ displayYear: {
6
+ type: NumberConstructor;
7
+ required: true;
8
+ };
9
+ displayMonth: {
10
+ type: NumberConstructor;
11
+ required: true;
12
+ };
13
+ showYearDropdown: {
14
+ type: BooleanConstructor;
15
+ required: true;
16
+ };
17
+ isDateDisabled: PropType<(ts: number) => boolean>;
18
+ onDateClick: {
19
+ type: PropType<(ts: number) => void>;
20
+ required: true;
21
+ };
22
+ onMonthSelect: {
23
+ type: PropType<(year: number, month: number) => void>;
24
+ required: true;
25
+ };
26
+ onYearSelect: {
27
+ type: PropType<(year: number) => void>;
28
+ required: true;
29
+ };
30
+ onToggleYearDropdown: {
31
+ type: PropType<() => void>;
32
+ required: true;
33
+ };
34
+ onMonthScroll: {
35
+ type: PropType<(year: number) => void>;
36
+ required: true;
37
+ };
38
+ style: PropType<any>;
39
+ themeClass: StringConstructor;
40
+ }, {
41
+ mergedClsPrefix: string;
42
+ allMonthsRef: import("vue").ComputedRef<MonthItem[]>;
43
+ groupedMonthsRef: import("vue").ComputedRef<{
44
+ year: number;
45
+ months: MonthItem[];
46
+ }[]>;
47
+ yearsRef: import("vue").ComputedRef<import("../interface").YearItem[]>;
48
+ yearMonthsWithDatesRef: import("vue").ComputedRef<{
49
+ year: number;
50
+ month: number;
51
+ label: string;
52
+ dates: DateItem[];
53
+ }[]>;
54
+ weekdayNamesRef: import("vue").ComputedRef<string[]>;
55
+ monthScrollbarRef: import("vue").Ref<({
56
+ $: import("vue").ComponentInternalInstance;
57
+ $data: {};
58
+ $props: {
59
+ readonly trigger?: "none" | "hover" | undefined;
60
+ readonly xScrollable?: boolean | undefined;
61
+ readonly duration?: number | undefined;
62
+ readonly scrollable?: boolean | undefined;
63
+ readonly useUnifiedContainer?: boolean | undefined;
64
+ readonly triggerDisplayManually?: boolean | undefined;
65
+ readonly internalHoistYRail?: boolean | undefined;
66
+ readonly yPlacement?: "left" | "right" | undefined;
67
+ readonly xPlacement?: "top" | "bottom" | undefined;
68
+ ref?: import("vue").VNodeRef | undefined;
69
+ readonly onScroll?: ((e: Event) => void) | undefined;
70
+ readonly onWheel?: ((e: WheelEvent) => void) | undefined;
71
+ readonly theme?: import("../../../_mixins").Theme<"Scrollbar", {
72
+ height: string;
73
+ width: string;
74
+ borderRadius: string;
75
+ color: string;
76
+ colorHover: string;
77
+ railInsetHorizontalBottom: string;
78
+ railInsetHorizontalTop: string;
79
+ railInsetVerticalRight: string;
80
+ railInsetVerticalLeft: string;
81
+ railColor: string;
82
+ }, any> | undefined;
83
+ readonly themeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
84
+ height: string;
85
+ width: string;
86
+ borderRadius: string;
87
+ color: string;
88
+ colorHover: string;
89
+ railInsetHorizontalBottom: string;
90
+ railInsetHorizontalTop: string;
91
+ railInsetVerticalRight: string;
92
+ railInsetVerticalLeft: string;
93
+ railColor: string;
94
+ }, any>> | undefined;
95
+ readonly builtinThemeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
96
+ height: string;
97
+ width: string;
98
+ borderRadius: string;
99
+ color: string;
100
+ colorHover: string;
101
+ railInsetHorizontalBottom: string;
102
+ railInsetHorizontalTop: string;
103
+ railInsetVerticalRight: string;
104
+ railInsetVerticalLeft: string;
105
+ railColor: string;
106
+ }, any>> | undefined;
107
+ class?: unknown;
108
+ style?: unknown;
109
+ readonly contentStyle?: string | import("vue").CSSProperties | undefined;
110
+ readonly content?: (() => HTMLElement | null | undefined) | undefined;
111
+ readonly container?: (() => HTMLElement | null | undefined) | undefined;
112
+ readonly containerClass?: string | undefined;
113
+ readonly containerStyle?: string | import("vue").CSSProperties | undefined;
114
+ readonly contentClass?: string | (string | undefined)[] | undefined;
115
+ readonly horizontalRailStyle?: string | import("vue").CSSProperties | undefined;
116
+ readonly verticalRailStyle?: string | import("vue").CSSProperties | undefined;
117
+ readonly onResize?: ((e: ResizeObserverEntry) => void) | undefined;
118
+ readonly internalOnUpdateScrollLeft?: ((scrollLeft: number) => void) | undefined;
119
+ key?: (string | number | symbol) | undefined;
120
+ ref_for?: boolean | undefined;
121
+ ref_key?: string | undefined;
122
+ onVnodeBeforeMount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
123
+ onVnodeMounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
124
+ onVnodeBeforeUpdate?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
125
+ onVnodeUpdated?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
126
+ onVnodeBeforeUnmount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
127
+ onVnodeUnmounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
128
+ };
129
+ $attrs: {
130
+ [x: string]: unknown;
131
+ };
132
+ $refs: {
133
+ [x: string]: unknown;
134
+ };
135
+ $slots: Readonly<{
136
+ [name: string]: import("vue").Slot<any> | undefined;
137
+ }>;
138
+ $root: import("vue").ComponentPublicInstance | null;
139
+ $parent: import("vue").ComponentPublicInstance | null;
140
+ $emit: (event: string, ...args: any[]) => void;
141
+ $el: any;
142
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
143
+ readonly duration: {
144
+ readonly type: NumberConstructor;
145
+ readonly default: 0;
146
+ };
147
+ readonly scrollable: {
148
+ readonly type: BooleanConstructor;
149
+ readonly default: true;
150
+ };
151
+ readonly xScrollable: BooleanConstructor;
152
+ readonly trigger: {
153
+ readonly type: PropType<"none" | "hover">;
154
+ readonly default: "hover";
155
+ };
156
+ readonly useUnifiedContainer: BooleanConstructor;
157
+ readonly triggerDisplayManually: BooleanConstructor;
158
+ readonly container: PropType<() => HTMLElement | null | undefined>;
159
+ readonly content: PropType<() => HTMLElement | null | undefined>;
160
+ readonly containerClass: StringConstructor;
161
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
162
+ readonly contentClass: PropType<string | Array<string | undefined>>;
163
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
164
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
165
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
166
+ readonly onScroll: PropType<(e: Event) => void>;
167
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
168
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
169
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
170
+ readonly internalHoistYRail: BooleanConstructor;
171
+ readonly yPlacement: {
172
+ readonly type: PropType<"left" | "right">;
173
+ readonly default: "right";
174
+ };
175
+ readonly xPlacement: {
176
+ readonly type: PropType<"top" | "bottom">;
177
+ readonly default: "bottom";
178
+ };
179
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
180
+ height: string;
181
+ width: string;
182
+ borderRadius: string;
183
+ color: string;
184
+ colorHover: string;
185
+ railInsetHorizontalBottom: string;
186
+ railInsetHorizontalTop: string;
187
+ railInsetVerticalRight: string;
188
+ railInsetVerticalLeft: string;
189
+ railColor: string;
190
+ }, any>>;
191
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
192
+ height: string;
193
+ width: string;
194
+ borderRadius: string;
195
+ color: string;
196
+ colorHover: string;
197
+ railInsetHorizontalBottom: string;
198
+ railInsetHorizontalTop: string;
199
+ railInsetVerticalRight: string;
200
+ railInsetVerticalLeft: string;
201
+ railColor: string;
202
+ }, any>>>;
203
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
204
+ height: string;
205
+ width: string;
206
+ borderRadius: string;
207
+ color: string;
208
+ colorHover: string;
209
+ railInsetHorizontalBottom: string;
210
+ railInsetHorizontalTop: string;
211
+ railInsetVerticalRight: string;
212
+ railInsetVerticalLeft: string;
213
+ railColor: string;
214
+ }, any>>>;
215
+ }>>, {
216
+ mergedClsPrefix: import("vue").Ref<string>;
217
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
218
+ containerScrollTop: import("vue").Ref<number>;
219
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
220
+ containerRef: import("vue").Ref<HTMLElement | null>;
221
+ contentRef: import("vue").Ref<HTMLElement | null>;
222
+ yRailRef: import("vue").Ref<HTMLElement | null>;
223
+ xRailRef: import("vue").Ref<HTMLElement | null>;
224
+ needYBar: import("vue").ComputedRef<boolean>;
225
+ needXBar: import("vue").ComputedRef<boolean>;
226
+ yBarSizePx: import("vue").ComputedRef<string>;
227
+ xBarSizePx: import("vue").ComputedRef<string>;
228
+ yBarTopPx: import("vue").ComputedRef<string>;
229
+ xBarLeftPx: import("vue").ComputedRef<string>;
230
+ isShowXBar: import("vue").ComputedRef<boolean>;
231
+ isShowYBar: import("vue").ComputedRef<boolean>;
232
+ isIos: boolean;
233
+ handleScroll: (e: Event) => void;
234
+ handleContentResize: () => void;
235
+ handleContainerResize: (e: ResizeObserverEntry) => void;
236
+ handleYScrollMouseDown: (e: MouseEvent) => void;
237
+ handleXScrollMouseDown: (e: MouseEvent) => void;
238
+ cssVars: import("vue").ComputedRef<{
239
+ '--u-scrollbar-bezier': string;
240
+ '--u-scrollbar-color': string;
241
+ '--u-scrollbar-color-hover': string;
242
+ '--u-scrollbar-border-radius': string;
243
+ '--u-scrollbar-width': string;
244
+ '--u-scrollbar-height': string;
245
+ '--u-scrollbar-rail-top-horizontal-top': string;
246
+ '--u-scrollbar-rail-right-horizontal-top': string;
247
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
248
+ '--u-scrollbar-rail-left-horizontal-top': string;
249
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
250
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
251
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
252
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
253
+ '--u-scrollbar-rail-top-vertical-right': string;
254
+ '--u-scrollbar-rail-right-vertical-right': string;
255
+ '--u-scrollbar-rail-bottom-vertical-right': string;
256
+ '--u-scrollbar-rail-left-vertical-right': string;
257
+ '--u-scrollbar-rail-top-vertical-left': string;
258
+ '--u-scrollbar-rail-right-vertical-left': string;
259
+ '--u-scrollbar-rail-bottom-vertical-left': string;
260
+ '--u-scrollbar-rail-left-vertical-left': string;
261
+ '--u-scrollbar-rail-color': string;
262
+ }> | undefined;
263
+ themeClass: import("vue").Ref<string> | undefined;
264
+ onRender: (() => void) | undefined;
265
+ syncUnifiedContainer: () => void;
266
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
267
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
268
+ sync: () => void;
269
+ handleMouseEnterWrapper: () => void;
270
+ handleMouseLeaveWrapper: () => void;
271
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
272
+ readonly trigger: "none" | "hover";
273
+ readonly xScrollable: boolean;
274
+ readonly duration: number;
275
+ readonly scrollable: boolean;
276
+ readonly useUnifiedContainer: boolean;
277
+ readonly triggerDisplayManually: boolean;
278
+ readonly internalHoistYRail: boolean;
279
+ readonly yPlacement: "left" | "right";
280
+ readonly xPlacement: "top" | "bottom";
281
+ }, {}, string, {}> & {
282
+ beforeCreate?: (() => void) | (() => void)[];
283
+ created?: (() => void) | (() => void)[];
284
+ beforeMount?: (() => void) | (() => void)[];
285
+ mounted?: (() => void) | (() => void)[];
286
+ beforeUpdate?: (() => void) | (() => void)[];
287
+ updated?: (() => void) | (() => void)[];
288
+ activated?: (() => void) | (() => void)[];
289
+ deactivated?: (() => void) | (() => void)[];
290
+ beforeDestroy?: (() => void) | (() => void)[];
291
+ beforeUnmount?: (() => void) | (() => void)[];
292
+ destroyed?: (() => void) | (() => void)[];
293
+ unmounted?: (() => void) | (() => void)[];
294
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
295
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
296
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
297
+ };
298
+ $forceUpdate: () => void;
299
+ $nextTick: typeof import("vue").nextTick;
300
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
301
+ } & Readonly<import("vue").ExtractPropTypes<{
302
+ readonly duration: {
303
+ readonly type: NumberConstructor;
304
+ readonly default: 0;
305
+ };
306
+ readonly scrollable: {
307
+ readonly type: BooleanConstructor;
308
+ readonly default: true;
309
+ };
310
+ readonly xScrollable: BooleanConstructor;
311
+ readonly trigger: {
312
+ readonly type: PropType<"none" | "hover">;
313
+ readonly default: "hover";
314
+ };
315
+ readonly useUnifiedContainer: BooleanConstructor;
316
+ readonly triggerDisplayManually: BooleanConstructor;
317
+ readonly container: PropType<() => HTMLElement | null | undefined>;
318
+ readonly content: PropType<() => HTMLElement | null | undefined>;
319
+ readonly containerClass: StringConstructor;
320
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
321
+ readonly contentClass: PropType<string | Array<string | undefined>>;
322
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
323
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
324
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
325
+ readonly onScroll: PropType<(e: Event) => void>;
326
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
327
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
328
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
329
+ readonly internalHoistYRail: BooleanConstructor;
330
+ readonly yPlacement: {
331
+ readonly type: PropType<"left" | "right">;
332
+ readonly default: "right";
333
+ };
334
+ readonly xPlacement: {
335
+ readonly type: PropType<"top" | "bottom">;
336
+ readonly default: "bottom";
337
+ };
338
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
339
+ height: string;
340
+ width: string;
341
+ borderRadius: string;
342
+ color: string;
343
+ colorHover: string;
344
+ railInsetHorizontalBottom: string;
345
+ railInsetHorizontalTop: string;
346
+ railInsetVerticalRight: string;
347
+ railInsetVerticalLeft: string;
348
+ railColor: string;
349
+ }, any>>;
350
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
351
+ height: string;
352
+ width: string;
353
+ borderRadius: string;
354
+ color: string;
355
+ colorHover: string;
356
+ railInsetHorizontalBottom: string;
357
+ railInsetHorizontalTop: string;
358
+ railInsetVerticalRight: string;
359
+ railInsetVerticalLeft: string;
360
+ railColor: string;
361
+ }, any>>>;
362
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
363
+ height: string;
364
+ width: string;
365
+ borderRadius: string;
366
+ color: string;
367
+ colorHover: string;
368
+ railInsetHorizontalBottom: string;
369
+ railInsetHorizontalTop: string;
370
+ railInsetVerticalRight: string;
371
+ railInsetVerticalLeft: string;
372
+ railColor: string;
373
+ }, any>>>;
374
+ }>> & import("vue").ShallowUnwrapRef<{
375
+ mergedClsPrefix: import("vue").Ref<string>;
376
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
377
+ containerScrollTop: import("vue").Ref<number>;
378
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
379
+ containerRef: import("vue").Ref<HTMLElement | null>;
380
+ contentRef: import("vue").Ref<HTMLElement | null>;
381
+ yRailRef: import("vue").Ref<HTMLElement | null>;
382
+ xRailRef: import("vue").Ref<HTMLElement | null>;
383
+ needYBar: import("vue").ComputedRef<boolean>;
384
+ needXBar: import("vue").ComputedRef<boolean>;
385
+ yBarSizePx: import("vue").ComputedRef<string>;
386
+ xBarSizePx: import("vue").ComputedRef<string>;
387
+ yBarTopPx: import("vue").ComputedRef<string>;
388
+ xBarLeftPx: import("vue").ComputedRef<string>;
389
+ isShowXBar: import("vue").ComputedRef<boolean>;
390
+ isShowYBar: import("vue").ComputedRef<boolean>;
391
+ isIos: boolean;
392
+ handleScroll: (e: Event) => void;
393
+ handleContentResize: () => void;
394
+ handleContainerResize: (e: ResizeObserverEntry) => void;
395
+ handleYScrollMouseDown: (e: MouseEvent) => void;
396
+ handleXScrollMouseDown: (e: MouseEvent) => void;
397
+ cssVars: import("vue").ComputedRef<{
398
+ '--u-scrollbar-bezier': string;
399
+ '--u-scrollbar-color': string;
400
+ '--u-scrollbar-color-hover': string;
401
+ '--u-scrollbar-border-radius': string;
402
+ '--u-scrollbar-width': string;
403
+ '--u-scrollbar-height': string;
404
+ '--u-scrollbar-rail-top-horizontal-top': string;
405
+ '--u-scrollbar-rail-right-horizontal-top': string;
406
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
407
+ '--u-scrollbar-rail-left-horizontal-top': string;
408
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
409
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
410
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
411
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
412
+ '--u-scrollbar-rail-top-vertical-right': string;
413
+ '--u-scrollbar-rail-right-vertical-right': string;
414
+ '--u-scrollbar-rail-bottom-vertical-right': string;
415
+ '--u-scrollbar-rail-left-vertical-right': string;
416
+ '--u-scrollbar-rail-top-vertical-left': string;
417
+ '--u-scrollbar-rail-right-vertical-left': string;
418
+ '--u-scrollbar-rail-bottom-vertical-left': string;
419
+ '--u-scrollbar-rail-left-vertical-left': string;
420
+ '--u-scrollbar-rail-color': string;
421
+ }> | undefined;
422
+ themeClass: import("vue").Ref<string> | undefined;
423
+ onRender: (() => void) | undefined;
424
+ syncUnifiedContainer: () => void;
425
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
426
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
427
+ sync: () => void;
428
+ handleMouseEnterWrapper: () => void;
429
+ handleMouseLeaveWrapper: () => void;
430
+ }> & {} & import("vue").ComponentCustomProperties & {}) | null>;
431
+ yearScrollbarRef: import("vue").Ref<({
432
+ $: import("vue").ComponentInternalInstance;
433
+ $data: {};
434
+ $props: {
435
+ readonly trigger?: "none" | "hover" | undefined;
436
+ readonly xScrollable?: boolean | undefined;
437
+ readonly duration?: number | undefined;
438
+ readonly scrollable?: boolean | undefined;
439
+ readonly useUnifiedContainer?: boolean | undefined;
440
+ readonly triggerDisplayManually?: boolean | undefined;
441
+ readonly internalHoistYRail?: boolean | undefined;
442
+ readonly yPlacement?: "left" | "right" | undefined;
443
+ readonly xPlacement?: "top" | "bottom" | undefined;
444
+ ref?: import("vue").VNodeRef | undefined;
445
+ readonly onScroll?: ((e: Event) => void) | undefined;
446
+ readonly onWheel?: ((e: WheelEvent) => void) | undefined;
447
+ readonly theme?: import("../../../_mixins").Theme<"Scrollbar", {
448
+ height: string;
449
+ width: string;
450
+ borderRadius: string;
451
+ color: string;
452
+ colorHover: string;
453
+ railInsetHorizontalBottom: string;
454
+ railInsetHorizontalTop: string;
455
+ railInsetVerticalRight: string;
456
+ railInsetVerticalLeft: string;
457
+ railColor: string;
458
+ }, any> | undefined;
459
+ readonly themeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
460
+ height: string;
461
+ width: string;
462
+ borderRadius: string;
463
+ color: string;
464
+ colorHover: string;
465
+ railInsetHorizontalBottom: string;
466
+ railInsetHorizontalTop: string;
467
+ railInsetVerticalRight: string;
468
+ railInsetVerticalLeft: string;
469
+ railColor: string;
470
+ }, any>> | undefined;
471
+ readonly builtinThemeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
472
+ height: string;
473
+ width: string;
474
+ borderRadius: string;
475
+ color: string;
476
+ colorHover: string;
477
+ railInsetHorizontalBottom: string;
478
+ railInsetHorizontalTop: string;
479
+ railInsetVerticalRight: string;
480
+ railInsetVerticalLeft: string;
481
+ railColor: string;
482
+ }, any>> | undefined;
483
+ class?: unknown;
484
+ style?: unknown;
485
+ readonly contentStyle?: string | import("vue").CSSProperties | undefined;
486
+ readonly content?: (() => HTMLElement | null | undefined) | undefined;
487
+ readonly container?: (() => HTMLElement | null | undefined) | undefined;
488
+ readonly containerClass?: string | undefined;
489
+ readonly containerStyle?: string | import("vue").CSSProperties | undefined;
490
+ readonly contentClass?: string | (string | undefined)[] | undefined;
491
+ readonly horizontalRailStyle?: string | import("vue").CSSProperties | undefined;
492
+ readonly verticalRailStyle?: string | import("vue").CSSProperties | undefined;
493
+ readonly onResize?: ((e: ResizeObserverEntry) => void) | undefined;
494
+ readonly internalOnUpdateScrollLeft?: ((scrollLeft: number) => void) | undefined;
495
+ key?: (string | number | symbol) | undefined;
496
+ ref_for?: boolean | undefined;
497
+ ref_key?: string | undefined;
498
+ onVnodeBeforeMount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
499
+ onVnodeMounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
500
+ onVnodeBeforeUpdate?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
501
+ onVnodeUpdated?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
502
+ onVnodeBeforeUnmount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
503
+ onVnodeUnmounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
504
+ };
505
+ $attrs: {
506
+ [x: string]: unknown;
507
+ };
508
+ $refs: {
509
+ [x: string]: unknown;
510
+ };
511
+ $slots: Readonly<{
512
+ [name: string]: import("vue").Slot<any> | undefined;
513
+ }>;
514
+ $root: import("vue").ComponentPublicInstance | null;
515
+ $parent: import("vue").ComponentPublicInstance | null;
516
+ $emit: (event: string, ...args: any[]) => void;
517
+ $el: any;
518
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
519
+ readonly duration: {
520
+ readonly type: NumberConstructor;
521
+ readonly default: 0;
522
+ };
523
+ readonly scrollable: {
524
+ readonly type: BooleanConstructor;
525
+ readonly default: true;
526
+ };
527
+ readonly xScrollable: BooleanConstructor;
528
+ readonly trigger: {
529
+ readonly type: PropType<"none" | "hover">;
530
+ readonly default: "hover";
531
+ };
532
+ readonly useUnifiedContainer: BooleanConstructor;
533
+ readonly triggerDisplayManually: BooleanConstructor;
534
+ readonly container: PropType<() => HTMLElement | null | undefined>;
535
+ readonly content: PropType<() => HTMLElement | null | undefined>;
536
+ readonly containerClass: StringConstructor;
537
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
538
+ readonly contentClass: PropType<string | Array<string | undefined>>;
539
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
540
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
541
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
542
+ readonly onScroll: PropType<(e: Event) => void>;
543
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
544
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
545
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
546
+ readonly internalHoistYRail: BooleanConstructor;
547
+ readonly yPlacement: {
548
+ readonly type: PropType<"left" | "right">;
549
+ readonly default: "right";
550
+ };
551
+ readonly xPlacement: {
552
+ readonly type: PropType<"top" | "bottom">;
553
+ readonly default: "bottom";
554
+ };
555
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
556
+ height: string;
557
+ width: string;
558
+ borderRadius: string;
559
+ color: string;
560
+ colorHover: string;
561
+ railInsetHorizontalBottom: string;
562
+ railInsetHorizontalTop: string;
563
+ railInsetVerticalRight: string;
564
+ railInsetVerticalLeft: string;
565
+ railColor: string;
566
+ }, any>>;
567
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
568
+ height: string;
569
+ width: string;
570
+ borderRadius: string;
571
+ color: string;
572
+ colorHover: string;
573
+ railInsetHorizontalBottom: string;
574
+ railInsetHorizontalTop: string;
575
+ railInsetVerticalRight: string;
576
+ railInsetVerticalLeft: string;
577
+ railColor: string;
578
+ }, any>>>;
579
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
580
+ height: string;
581
+ width: string;
582
+ borderRadius: string;
583
+ color: string;
584
+ colorHover: string;
585
+ railInsetHorizontalBottom: string;
586
+ railInsetHorizontalTop: string;
587
+ railInsetVerticalRight: string;
588
+ railInsetVerticalLeft: string;
589
+ railColor: string;
590
+ }, any>>>;
591
+ }>>, {
592
+ mergedClsPrefix: import("vue").Ref<string>;
593
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
594
+ containerScrollTop: import("vue").Ref<number>;
595
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
596
+ containerRef: import("vue").Ref<HTMLElement | null>;
597
+ contentRef: import("vue").Ref<HTMLElement | null>;
598
+ yRailRef: import("vue").Ref<HTMLElement | null>;
599
+ xRailRef: import("vue").Ref<HTMLElement | null>;
600
+ needYBar: import("vue").ComputedRef<boolean>;
601
+ needXBar: import("vue").ComputedRef<boolean>;
602
+ yBarSizePx: import("vue").ComputedRef<string>;
603
+ xBarSizePx: import("vue").ComputedRef<string>;
604
+ yBarTopPx: import("vue").ComputedRef<string>;
605
+ xBarLeftPx: import("vue").ComputedRef<string>;
606
+ isShowXBar: import("vue").ComputedRef<boolean>;
607
+ isShowYBar: import("vue").ComputedRef<boolean>;
608
+ isIos: boolean;
609
+ handleScroll: (e: Event) => void;
610
+ handleContentResize: () => void;
611
+ handleContainerResize: (e: ResizeObserverEntry) => void;
612
+ handleYScrollMouseDown: (e: MouseEvent) => void;
613
+ handleXScrollMouseDown: (e: MouseEvent) => void;
614
+ cssVars: import("vue").ComputedRef<{
615
+ '--u-scrollbar-bezier': string;
616
+ '--u-scrollbar-color': string;
617
+ '--u-scrollbar-color-hover': string;
618
+ '--u-scrollbar-border-radius': string;
619
+ '--u-scrollbar-width': string;
620
+ '--u-scrollbar-height': string;
621
+ '--u-scrollbar-rail-top-horizontal-top': string;
622
+ '--u-scrollbar-rail-right-horizontal-top': string;
623
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
624
+ '--u-scrollbar-rail-left-horizontal-top': string;
625
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
626
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
627
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
628
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
629
+ '--u-scrollbar-rail-top-vertical-right': string;
630
+ '--u-scrollbar-rail-right-vertical-right': string;
631
+ '--u-scrollbar-rail-bottom-vertical-right': string;
632
+ '--u-scrollbar-rail-left-vertical-right': string;
633
+ '--u-scrollbar-rail-top-vertical-left': string;
634
+ '--u-scrollbar-rail-right-vertical-left': string;
635
+ '--u-scrollbar-rail-bottom-vertical-left': string;
636
+ '--u-scrollbar-rail-left-vertical-left': string;
637
+ '--u-scrollbar-rail-color': string;
638
+ }> | undefined;
639
+ themeClass: import("vue").Ref<string> | undefined;
640
+ onRender: (() => void) | undefined;
641
+ syncUnifiedContainer: () => void;
642
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
643
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
644
+ sync: () => void;
645
+ handleMouseEnterWrapper: () => void;
646
+ handleMouseLeaveWrapper: () => void;
647
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
648
+ readonly trigger: "none" | "hover";
649
+ readonly xScrollable: boolean;
650
+ readonly duration: number;
651
+ readonly scrollable: boolean;
652
+ readonly useUnifiedContainer: boolean;
653
+ readonly triggerDisplayManually: boolean;
654
+ readonly internalHoistYRail: boolean;
655
+ readonly yPlacement: "left" | "right";
656
+ readonly xPlacement: "top" | "bottom";
657
+ }, {}, string, {}> & {
658
+ beforeCreate?: (() => void) | (() => void)[];
659
+ created?: (() => void) | (() => void)[];
660
+ beforeMount?: (() => void) | (() => void)[];
661
+ mounted?: (() => void) | (() => void)[];
662
+ beforeUpdate?: (() => void) | (() => void)[];
663
+ updated?: (() => void) | (() => void)[];
664
+ activated?: (() => void) | (() => void)[];
665
+ deactivated?: (() => void) | (() => void)[];
666
+ beforeDestroy?: (() => void) | (() => void)[];
667
+ beforeUnmount?: (() => void) | (() => void)[];
668
+ destroyed?: (() => void) | (() => void)[];
669
+ unmounted?: (() => void) | (() => void)[];
670
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
671
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
672
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
673
+ };
674
+ $forceUpdate: () => void;
675
+ $nextTick: typeof import("vue").nextTick;
676
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
677
+ } & Readonly<import("vue").ExtractPropTypes<{
678
+ readonly duration: {
679
+ readonly type: NumberConstructor;
680
+ readonly default: 0;
681
+ };
682
+ readonly scrollable: {
683
+ readonly type: BooleanConstructor;
684
+ readonly default: true;
685
+ };
686
+ readonly xScrollable: BooleanConstructor;
687
+ readonly trigger: {
688
+ readonly type: PropType<"none" | "hover">;
689
+ readonly default: "hover";
690
+ };
691
+ readonly useUnifiedContainer: BooleanConstructor;
692
+ readonly triggerDisplayManually: BooleanConstructor;
693
+ readonly container: PropType<() => HTMLElement | null | undefined>;
694
+ readonly content: PropType<() => HTMLElement | null | undefined>;
695
+ readonly containerClass: StringConstructor;
696
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
697
+ readonly contentClass: PropType<string | Array<string | undefined>>;
698
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
699
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
700
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
701
+ readonly onScroll: PropType<(e: Event) => void>;
702
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
703
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
704
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
705
+ readonly internalHoistYRail: BooleanConstructor;
706
+ readonly yPlacement: {
707
+ readonly type: PropType<"left" | "right">;
708
+ readonly default: "right";
709
+ };
710
+ readonly xPlacement: {
711
+ readonly type: PropType<"top" | "bottom">;
712
+ readonly default: "bottom";
713
+ };
714
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
715
+ height: string;
716
+ width: string;
717
+ borderRadius: string;
718
+ color: string;
719
+ colorHover: string;
720
+ railInsetHorizontalBottom: string;
721
+ railInsetHorizontalTop: string;
722
+ railInsetVerticalRight: string;
723
+ railInsetVerticalLeft: string;
724
+ railColor: string;
725
+ }, any>>;
726
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
727
+ height: string;
728
+ width: string;
729
+ borderRadius: string;
730
+ color: string;
731
+ colorHover: string;
732
+ railInsetHorizontalBottom: string;
733
+ railInsetHorizontalTop: string;
734
+ railInsetVerticalRight: string;
735
+ railInsetVerticalLeft: string;
736
+ railColor: string;
737
+ }, any>>>;
738
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
739
+ height: string;
740
+ width: string;
741
+ borderRadius: string;
742
+ color: string;
743
+ colorHover: string;
744
+ railInsetHorizontalBottom: string;
745
+ railInsetHorizontalTop: string;
746
+ railInsetVerticalRight: string;
747
+ railInsetVerticalLeft: string;
748
+ railColor: string;
749
+ }, any>>>;
750
+ }>> & import("vue").ShallowUnwrapRef<{
751
+ mergedClsPrefix: import("vue").Ref<string>;
752
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
753
+ containerScrollTop: import("vue").Ref<number>;
754
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
755
+ containerRef: import("vue").Ref<HTMLElement | null>;
756
+ contentRef: import("vue").Ref<HTMLElement | null>;
757
+ yRailRef: import("vue").Ref<HTMLElement | null>;
758
+ xRailRef: import("vue").Ref<HTMLElement | null>;
759
+ needYBar: import("vue").ComputedRef<boolean>;
760
+ needXBar: import("vue").ComputedRef<boolean>;
761
+ yBarSizePx: import("vue").ComputedRef<string>;
762
+ xBarSizePx: import("vue").ComputedRef<string>;
763
+ yBarTopPx: import("vue").ComputedRef<string>;
764
+ xBarLeftPx: import("vue").ComputedRef<string>;
765
+ isShowXBar: import("vue").ComputedRef<boolean>;
766
+ isShowYBar: import("vue").ComputedRef<boolean>;
767
+ isIos: boolean;
768
+ handleScroll: (e: Event) => void;
769
+ handleContentResize: () => void;
770
+ handleContainerResize: (e: ResizeObserverEntry) => void;
771
+ handleYScrollMouseDown: (e: MouseEvent) => void;
772
+ handleXScrollMouseDown: (e: MouseEvent) => void;
773
+ cssVars: import("vue").ComputedRef<{
774
+ '--u-scrollbar-bezier': string;
775
+ '--u-scrollbar-color': string;
776
+ '--u-scrollbar-color-hover': string;
777
+ '--u-scrollbar-border-radius': string;
778
+ '--u-scrollbar-width': string;
779
+ '--u-scrollbar-height': string;
780
+ '--u-scrollbar-rail-top-horizontal-top': string;
781
+ '--u-scrollbar-rail-right-horizontal-top': string;
782
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
783
+ '--u-scrollbar-rail-left-horizontal-top': string;
784
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
785
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
786
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
787
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
788
+ '--u-scrollbar-rail-top-vertical-right': string;
789
+ '--u-scrollbar-rail-right-vertical-right': string;
790
+ '--u-scrollbar-rail-bottom-vertical-right': string;
791
+ '--u-scrollbar-rail-left-vertical-right': string;
792
+ '--u-scrollbar-rail-top-vertical-left': string;
793
+ '--u-scrollbar-rail-right-vertical-left': string;
794
+ '--u-scrollbar-rail-bottom-vertical-left': string;
795
+ '--u-scrollbar-rail-left-vertical-left': string;
796
+ '--u-scrollbar-rail-color': string;
797
+ }> | undefined;
798
+ themeClass: import("vue").Ref<string> | undefined;
799
+ onRender: (() => void) | undefined;
800
+ syncUnifiedContainer: () => void;
801
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
802
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
803
+ sync: () => void;
804
+ handleMouseEnterWrapper: () => void;
805
+ handleMouseLeaveWrapper: () => void;
806
+ }> & {} & import("vue").ComponentCustomProperties & {}) | null>;
807
+ calendarScrollbarRef: import("vue").Ref<({
808
+ $: import("vue").ComponentInternalInstance;
809
+ $data: {};
810
+ $props: {
811
+ readonly trigger?: "none" | "hover" | undefined;
812
+ readonly xScrollable?: boolean | undefined;
813
+ readonly duration?: number | undefined;
814
+ readonly scrollable?: boolean | undefined;
815
+ readonly useUnifiedContainer?: boolean | undefined;
816
+ readonly triggerDisplayManually?: boolean | undefined;
817
+ readonly internalHoistYRail?: boolean | undefined;
818
+ readonly yPlacement?: "left" | "right" | undefined;
819
+ readonly xPlacement?: "top" | "bottom" | undefined;
820
+ ref?: import("vue").VNodeRef | undefined;
821
+ readonly onScroll?: ((e: Event) => void) | undefined;
822
+ readonly onWheel?: ((e: WheelEvent) => void) | undefined;
823
+ readonly theme?: import("../../../_mixins").Theme<"Scrollbar", {
824
+ height: string;
825
+ width: string;
826
+ borderRadius: string;
827
+ color: string;
828
+ colorHover: string;
829
+ railInsetHorizontalBottom: string;
830
+ railInsetHorizontalTop: string;
831
+ railInsetVerticalRight: string;
832
+ railInsetVerticalLeft: string;
833
+ railColor: string;
834
+ }, any> | undefined;
835
+ readonly themeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
836
+ height: string;
837
+ width: string;
838
+ borderRadius: string;
839
+ color: string;
840
+ colorHover: string;
841
+ railInsetHorizontalBottom: string;
842
+ railInsetHorizontalTop: string;
843
+ railInsetVerticalRight: string;
844
+ railInsetVerticalLeft: string;
845
+ railColor: string;
846
+ }, any>> | undefined;
847
+ readonly builtinThemeOverrides?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
848
+ height: string;
849
+ width: string;
850
+ borderRadius: string;
851
+ color: string;
852
+ colorHover: string;
853
+ railInsetHorizontalBottom: string;
854
+ railInsetHorizontalTop: string;
855
+ railInsetVerticalRight: string;
856
+ railInsetVerticalLeft: string;
857
+ railColor: string;
858
+ }, any>> | undefined;
859
+ class?: unknown;
860
+ style?: unknown;
861
+ readonly contentStyle?: string | import("vue").CSSProperties | undefined;
862
+ readonly content?: (() => HTMLElement | null | undefined) | undefined;
863
+ readonly container?: (() => HTMLElement | null | undefined) | undefined;
864
+ readonly containerClass?: string | undefined;
865
+ readonly containerStyle?: string | import("vue").CSSProperties | undefined;
866
+ readonly contentClass?: string | (string | undefined)[] | undefined;
867
+ readonly horizontalRailStyle?: string | import("vue").CSSProperties | undefined;
868
+ readonly verticalRailStyle?: string | import("vue").CSSProperties | undefined;
869
+ readonly onResize?: ((e: ResizeObserverEntry) => void) | undefined;
870
+ readonly internalOnUpdateScrollLeft?: ((scrollLeft: number) => void) | undefined;
871
+ key?: (string | number | symbol) | undefined;
872
+ ref_for?: boolean | undefined;
873
+ ref_key?: string | undefined;
874
+ onVnodeBeforeMount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
875
+ onVnodeMounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
876
+ onVnodeBeforeUpdate?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
877
+ onVnodeUpdated?: (((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void) | ((vnode: import("vue").VNode, oldVNode: import("vue").VNode) => void)[]) | undefined;
878
+ onVnodeBeforeUnmount?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
879
+ onVnodeUnmounted?: (((vnode: import("vue").VNode) => void) | ((vnode: import("vue").VNode) => void)[]) | undefined;
880
+ };
881
+ $attrs: {
882
+ [x: string]: unknown;
883
+ };
884
+ $refs: {
885
+ [x: string]: unknown;
886
+ };
887
+ $slots: Readonly<{
888
+ [name: string]: import("vue").Slot<any> | undefined;
889
+ }>;
890
+ $root: import("vue").ComponentPublicInstance | null;
891
+ $parent: import("vue").ComponentPublicInstance | null;
892
+ $emit: (event: string, ...args: any[]) => void;
893
+ $el: any;
894
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
895
+ readonly duration: {
896
+ readonly type: NumberConstructor;
897
+ readonly default: 0;
898
+ };
899
+ readonly scrollable: {
900
+ readonly type: BooleanConstructor;
901
+ readonly default: true;
902
+ };
903
+ readonly xScrollable: BooleanConstructor;
904
+ readonly trigger: {
905
+ readonly type: PropType<"none" | "hover">;
906
+ readonly default: "hover";
907
+ };
908
+ readonly useUnifiedContainer: BooleanConstructor;
909
+ readonly triggerDisplayManually: BooleanConstructor;
910
+ readonly container: PropType<() => HTMLElement | null | undefined>;
911
+ readonly content: PropType<() => HTMLElement | null | undefined>;
912
+ readonly containerClass: StringConstructor;
913
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
914
+ readonly contentClass: PropType<string | Array<string | undefined>>;
915
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
916
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
917
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
918
+ readonly onScroll: PropType<(e: Event) => void>;
919
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
920
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
921
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
922
+ readonly internalHoistYRail: BooleanConstructor;
923
+ readonly yPlacement: {
924
+ readonly type: PropType<"left" | "right">;
925
+ readonly default: "right";
926
+ };
927
+ readonly xPlacement: {
928
+ readonly type: PropType<"top" | "bottom">;
929
+ readonly default: "bottom";
930
+ };
931
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
932
+ height: string;
933
+ width: string;
934
+ borderRadius: string;
935
+ color: string;
936
+ colorHover: string;
937
+ railInsetHorizontalBottom: string;
938
+ railInsetHorizontalTop: string;
939
+ railInsetVerticalRight: string;
940
+ railInsetVerticalLeft: string;
941
+ railColor: string;
942
+ }, any>>;
943
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
944
+ height: string;
945
+ width: string;
946
+ borderRadius: string;
947
+ color: string;
948
+ colorHover: string;
949
+ railInsetHorizontalBottom: string;
950
+ railInsetHorizontalTop: string;
951
+ railInsetVerticalRight: string;
952
+ railInsetVerticalLeft: string;
953
+ railColor: string;
954
+ }, any>>>;
955
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
956
+ height: string;
957
+ width: string;
958
+ borderRadius: string;
959
+ color: string;
960
+ colorHover: string;
961
+ railInsetHorizontalBottom: string;
962
+ railInsetHorizontalTop: string;
963
+ railInsetVerticalRight: string;
964
+ railInsetVerticalLeft: string;
965
+ railColor: string;
966
+ }, any>>>;
967
+ }>>, {
968
+ mergedClsPrefix: import("vue").Ref<string>;
969
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
970
+ containerScrollTop: import("vue").Ref<number>;
971
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
972
+ containerRef: import("vue").Ref<HTMLElement | null>;
973
+ contentRef: import("vue").Ref<HTMLElement | null>;
974
+ yRailRef: import("vue").Ref<HTMLElement | null>;
975
+ xRailRef: import("vue").Ref<HTMLElement | null>;
976
+ needYBar: import("vue").ComputedRef<boolean>;
977
+ needXBar: import("vue").ComputedRef<boolean>;
978
+ yBarSizePx: import("vue").ComputedRef<string>;
979
+ xBarSizePx: import("vue").ComputedRef<string>;
980
+ yBarTopPx: import("vue").ComputedRef<string>;
981
+ xBarLeftPx: import("vue").ComputedRef<string>;
982
+ isShowXBar: import("vue").ComputedRef<boolean>;
983
+ isShowYBar: import("vue").ComputedRef<boolean>;
984
+ isIos: boolean;
985
+ handleScroll: (e: Event) => void;
986
+ handleContentResize: () => void;
987
+ handleContainerResize: (e: ResizeObserverEntry) => void;
988
+ handleYScrollMouseDown: (e: MouseEvent) => void;
989
+ handleXScrollMouseDown: (e: MouseEvent) => void;
990
+ cssVars: import("vue").ComputedRef<{
991
+ '--u-scrollbar-bezier': string;
992
+ '--u-scrollbar-color': string;
993
+ '--u-scrollbar-color-hover': string;
994
+ '--u-scrollbar-border-radius': string;
995
+ '--u-scrollbar-width': string;
996
+ '--u-scrollbar-height': string;
997
+ '--u-scrollbar-rail-top-horizontal-top': string;
998
+ '--u-scrollbar-rail-right-horizontal-top': string;
999
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
1000
+ '--u-scrollbar-rail-left-horizontal-top': string;
1001
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
1002
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
1003
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
1004
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
1005
+ '--u-scrollbar-rail-top-vertical-right': string;
1006
+ '--u-scrollbar-rail-right-vertical-right': string;
1007
+ '--u-scrollbar-rail-bottom-vertical-right': string;
1008
+ '--u-scrollbar-rail-left-vertical-right': string;
1009
+ '--u-scrollbar-rail-top-vertical-left': string;
1010
+ '--u-scrollbar-rail-right-vertical-left': string;
1011
+ '--u-scrollbar-rail-bottom-vertical-left': string;
1012
+ '--u-scrollbar-rail-left-vertical-left': string;
1013
+ '--u-scrollbar-rail-color': string;
1014
+ }> | undefined;
1015
+ themeClass: import("vue").Ref<string> | undefined;
1016
+ onRender: (() => void) | undefined;
1017
+ syncUnifiedContainer: () => void;
1018
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
1019
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
1020
+ sync: () => void;
1021
+ handleMouseEnterWrapper: () => void;
1022
+ handleMouseLeaveWrapper: () => void;
1023
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
1024
+ readonly trigger: "none" | "hover";
1025
+ readonly xScrollable: boolean;
1026
+ readonly duration: number;
1027
+ readonly scrollable: boolean;
1028
+ readonly useUnifiedContainer: boolean;
1029
+ readonly triggerDisplayManually: boolean;
1030
+ readonly internalHoistYRail: boolean;
1031
+ readonly yPlacement: "left" | "right";
1032
+ readonly xPlacement: "top" | "bottom";
1033
+ }, {}, string, {}> & {
1034
+ beforeCreate?: (() => void) | (() => void)[];
1035
+ created?: (() => void) | (() => void)[];
1036
+ beforeMount?: (() => void) | (() => void)[];
1037
+ mounted?: (() => void) | (() => void)[];
1038
+ beforeUpdate?: (() => void) | (() => void)[];
1039
+ updated?: (() => void) | (() => void)[];
1040
+ activated?: (() => void) | (() => void)[];
1041
+ deactivated?: (() => void) | (() => void)[];
1042
+ beforeDestroy?: (() => void) | (() => void)[];
1043
+ beforeUnmount?: (() => void) | (() => void)[];
1044
+ destroyed?: (() => void) | (() => void)[];
1045
+ unmounted?: (() => void) | (() => void)[];
1046
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1047
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
1048
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
1049
+ };
1050
+ $forceUpdate: () => void;
1051
+ $nextTick: typeof import("vue").nextTick;
1052
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R]) => any : (...args: any) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
1053
+ } & Readonly<import("vue").ExtractPropTypes<{
1054
+ readonly duration: {
1055
+ readonly type: NumberConstructor;
1056
+ readonly default: 0;
1057
+ };
1058
+ readonly scrollable: {
1059
+ readonly type: BooleanConstructor;
1060
+ readonly default: true;
1061
+ };
1062
+ readonly xScrollable: BooleanConstructor;
1063
+ readonly trigger: {
1064
+ readonly type: PropType<"none" | "hover">;
1065
+ readonly default: "hover";
1066
+ };
1067
+ readonly useUnifiedContainer: BooleanConstructor;
1068
+ readonly triggerDisplayManually: BooleanConstructor;
1069
+ readonly container: PropType<() => HTMLElement | null | undefined>;
1070
+ readonly content: PropType<() => HTMLElement | null | undefined>;
1071
+ readonly containerClass: StringConstructor;
1072
+ readonly containerStyle: PropType<string | import("vue").CSSProperties>;
1073
+ readonly contentClass: PropType<string | Array<string | undefined>>;
1074
+ readonly contentStyle: PropType<string | import("vue").CSSProperties>;
1075
+ readonly horizontalRailStyle: PropType<string | import("vue").CSSProperties>;
1076
+ readonly verticalRailStyle: PropType<string | import("vue").CSSProperties>;
1077
+ readonly onScroll: PropType<(e: Event) => void>;
1078
+ readonly onWheel: PropType<(e: WheelEvent) => void>;
1079
+ readonly onResize: PropType<(e: ResizeObserverEntry) => void>;
1080
+ readonly internalOnUpdateScrollLeft: PropType<(scrollLeft: number) => void>;
1081
+ readonly internalHoistYRail: BooleanConstructor;
1082
+ readonly yPlacement: {
1083
+ readonly type: PropType<"left" | "right">;
1084
+ readonly default: "right";
1085
+ };
1086
+ readonly xPlacement: {
1087
+ readonly type: PropType<"top" | "bottom">;
1088
+ readonly default: "bottom";
1089
+ };
1090
+ readonly theme: PropType<import("../../../_mixins").Theme<"Scrollbar", {
1091
+ height: string;
1092
+ width: string;
1093
+ borderRadius: string;
1094
+ color: string;
1095
+ colorHover: string;
1096
+ railInsetHorizontalBottom: string;
1097
+ railInsetHorizontalTop: string;
1098
+ railInsetVerticalRight: string;
1099
+ railInsetVerticalLeft: string;
1100
+ railColor: string;
1101
+ }, any>>;
1102
+ readonly themeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
1103
+ height: string;
1104
+ width: string;
1105
+ borderRadius: string;
1106
+ color: string;
1107
+ colorHover: string;
1108
+ railInsetHorizontalBottom: string;
1109
+ railInsetHorizontalTop: string;
1110
+ railInsetVerticalRight: string;
1111
+ railInsetVerticalLeft: string;
1112
+ railColor: string;
1113
+ }, any>>>;
1114
+ readonly builtinThemeOverrides: PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
1115
+ height: string;
1116
+ width: string;
1117
+ borderRadius: string;
1118
+ color: string;
1119
+ colorHover: string;
1120
+ railInsetHorizontalBottom: string;
1121
+ railInsetHorizontalTop: string;
1122
+ railInsetVerticalRight: string;
1123
+ railInsetVerticalLeft: string;
1124
+ railColor: string;
1125
+ }, any>>>;
1126
+ }>> & import("vue").ShallowUnwrapRef<{
1127
+ mergedClsPrefix: import("vue").Ref<string>;
1128
+ rtlEnabled: import("vue").Ref<import("../../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1129
+ containerScrollTop: import("vue").Ref<number>;
1130
+ wrapperRef: import("vue").Ref<HTMLElement | null>;
1131
+ containerRef: import("vue").Ref<HTMLElement | null>;
1132
+ contentRef: import("vue").Ref<HTMLElement | null>;
1133
+ yRailRef: import("vue").Ref<HTMLElement | null>;
1134
+ xRailRef: import("vue").Ref<HTMLElement | null>;
1135
+ needYBar: import("vue").ComputedRef<boolean>;
1136
+ needXBar: import("vue").ComputedRef<boolean>;
1137
+ yBarSizePx: import("vue").ComputedRef<string>;
1138
+ xBarSizePx: import("vue").ComputedRef<string>;
1139
+ yBarTopPx: import("vue").ComputedRef<string>;
1140
+ xBarLeftPx: import("vue").ComputedRef<string>;
1141
+ isShowXBar: import("vue").ComputedRef<boolean>;
1142
+ isShowYBar: import("vue").ComputedRef<boolean>;
1143
+ isIos: boolean;
1144
+ handleScroll: (e: Event) => void;
1145
+ handleContentResize: () => void;
1146
+ handleContainerResize: (e: ResizeObserverEntry) => void;
1147
+ handleYScrollMouseDown: (e: MouseEvent) => void;
1148
+ handleXScrollMouseDown: (e: MouseEvent) => void;
1149
+ cssVars: import("vue").ComputedRef<{
1150
+ '--u-scrollbar-bezier': string;
1151
+ '--u-scrollbar-color': string;
1152
+ '--u-scrollbar-color-hover': string;
1153
+ '--u-scrollbar-border-radius': string;
1154
+ '--u-scrollbar-width': string;
1155
+ '--u-scrollbar-height': string;
1156
+ '--u-scrollbar-rail-top-horizontal-top': string;
1157
+ '--u-scrollbar-rail-right-horizontal-top': string;
1158
+ '--u-scrollbar-rail-bottom-horizontal-top': string;
1159
+ '--u-scrollbar-rail-left-horizontal-top': string;
1160
+ '--u-scrollbar-rail-top-horizontal-bottom': string;
1161
+ '--u-scrollbar-rail-right-horizontal-bottom': string;
1162
+ '--u-scrollbar-rail-bottom-horizontal-bottom': string;
1163
+ '--u-scrollbar-rail-left-horizontal-bottom': string;
1164
+ '--u-scrollbar-rail-top-vertical-right': string;
1165
+ '--u-scrollbar-rail-right-vertical-right': string;
1166
+ '--u-scrollbar-rail-bottom-vertical-right': string;
1167
+ '--u-scrollbar-rail-left-vertical-right': string;
1168
+ '--u-scrollbar-rail-top-vertical-left': string;
1169
+ '--u-scrollbar-rail-right-vertical-left': string;
1170
+ '--u-scrollbar-rail-bottom-vertical-left': string;
1171
+ '--u-scrollbar-rail-left-vertical-left': string;
1172
+ '--u-scrollbar-rail-color': string;
1173
+ }> | undefined;
1174
+ themeClass: import("vue").Ref<string> | undefined;
1175
+ onRender: (() => void) | undefined;
1176
+ syncUnifiedContainer: () => void;
1177
+ scrollTo: import("../../../_internal/scrollbar/src/Scrollbar").ScrollTo;
1178
+ scrollBy: import("../../../_internal/scrollbar/src/Scrollbar").ScrollBy;
1179
+ sync: () => void;
1180
+ handleMouseEnterWrapper: () => void;
1181
+ handleMouseLeaveWrapper: () => void;
1182
+ }> & {} & import("vue").ComponentCustomProperties & {}) | null>;
1183
+ now: number;
1184
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1185
+ value: PropType<Value>;
1186
+ displayYear: {
1187
+ type: NumberConstructor;
1188
+ required: true;
1189
+ };
1190
+ displayMonth: {
1191
+ type: NumberConstructor;
1192
+ required: true;
1193
+ };
1194
+ showYearDropdown: {
1195
+ type: BooleanConstructor;
1196
+ required: true;
1197
+ };
1198
+ isDateDisabled: PropType<(ts: number) => boolean>;
1199
+ onDateClick: {
1200
+ type: PropType<(ts: number) => void>;
1201
+ required: true;
1202
+ };
1203
+ onMonthSelect: {
1204
+ type: PropType<(year: number, month: number) => void>;
1205
+ required: true;
1206
+ };
1207
+ onYearSelect: {
1208
+ type: PropType<(year: number) => void>;
1209
+ required: true;
1210
+ };
1211
+ onToggleYearDropdown: {
1212
+ type: PropType<() => void>;
1213
+ required: true;
1214
+ };
1215
+ onMonthScroll: {
1216
+ type: PropType<(year: number) => void>;
1217
+ required: true;
1218
+ };
1219
+ style: PropType<any>;
1220
+ themeClass: StringConstructor;
1221
+ }>>, {}, {}>;
1222
+ export default _default;