@rebilly/revel 4.21.3 → 5.0.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 (77) hide show
  1. package/CHANGELOG.md +22 -47
  2. package/README.md +23 -14
  3. package/dist/common/date-picker-compat.d.ts +1 -0
  4. package/dist/common/datetime-formats.d.ts +28 -0
  5. package/dist/common/helpers/debounce.d.ts +2 -0
  6. package/dist/common/helpers/deep-clone.d.ts +2 -0
  7. package/dist/common/helpers/format-date.d.ts +4 -0
  8. package/dist/common/helpers/index.d.ts +6 -0
  9. package/dist/common/helpers/is-object.d.ts +2 -0
  10. package/dist/common/helpers/kebab-case.d.ts +2 -0
  11. package/dist/components/index.d.ts +27 -0
  12. package/dist/components/r-avatar/r-avatar.vue.d.ts +86 -0
  13. package/dist/components/r-badge/r-badge.vue.d.ts +40 -0
  14. package/dist/components/r-button/r-button.vue.d.ts +195 -0
  15. package/dist/components/r-button-group/r-button-group.vue.d.ts +18 -0
  16. package/dist/components/r-checkbox/r-checkbox.vue.d.ts +148 -0
  17. package/dist/components/r-date-input/calendar-presets.d.ts +36 -0
  18. package/dist/components/r-date-input/r-calendar.vue.d.ts +159 -0
  19. package/dist/components/r-date-input/r-date-input.vue.d.ts +297 -0
  20. package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +167 -0
  21. package/dist/components/r-date-input/r-range-calendar.vue.d.ts +211 -0
  22. package/dist/components/r-date-input/shared-calendar-options.d.ts +64 -0
  23. package/dist/components/r-date-input/types.d.ts +8 -0
  24. package/dist/components/r-date-input/v-calendar.es.d.ts +459 -0
  25. package/dist/components/r-file-upload/r-file-upload.vue.d.ts +68 -0
  26. package/dist/components/r-grid/columnTypes/badge.vue.d.ts +42 -0
  27. package/dist/components/r-grid/columnTypes/date.vue.d.ts +25 -0
  28. package/dist/components/r-grid/columnTypes/index.d.ts +93 -0
  29. package/dist/components/r-grid/columnTypes/numeric.vue.d.ts +24 -0
  30. package/dist/components/r-grid/columnTypes/text.vue.d.ts +26 -0
  31. package/dist/components/r-grid/columnTypes/types.d.ts +24 -0
  32. package/dist/components/r-grid/helpers/color-generator.d.ts +4 -0
  33. package/dist/components/r-grid/r-grid.vue.d.ts +196 -0
  34. package/dist/components/r-icon/r-icon-sprites.d.ts +128 -0
  35. package/dist/components/r-icon/r-icon.vue.d.ts +61 -0
  36. package/dist/components/r-icon-button/r-icon-button.vue.d.ts +133 -0
  37. package/dist/components/r-img/r-img.vue.d.ts +96 -0
  38. package/dist/components/r-input/r-input.vue.d.ts +411 -0
  39. package/dist/components/r-loader/r-loader.vue.d.ts +55 -0
  40. package/dist/components/r-modal/r-modal.vue.d.ts +132 -0
  41. package/dist/components/r-month-picker/months.d.ts +1 -0
  42. package/dist/components/r-month-picker/r-month-picker.vue.d.ts +122 -0
  43. package/dist/components/r-pagination/r-pagination.vue.d.ts +97 -0
  44. package/dist/components/r-pagination/types.d.ts +8 -0
  45. package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +33 -0
  46. package/dist/components/r-popper/r-popper.vue.d.ts +275 -0
  47. package/dist/components/r-radio/r-radio.vue.d.ts +132 -0
  48. package/dist/components/r-repeater/r-repeater.vue.d.ts +58 -0
  49. package/dist/components/r-select/async-extension.d.ts +91 -0
  50. package/dist/components/r-select/r-select.vue.d.ts +733 -0
  51. package/dist/components/r-select/types.d.ts +29 -0
  52. package/dist/components/r-tabs/r-tab.vue.d.ts +70 -0
  53. package/dist/components/r-tabs/r-tabs.vue.d.ts +6983 -0
  54. package/dist/components/r-tabs/types.d.ts +23 -0
  55. package/dist/components/r-tile/r-tile.vue.d.ts +2 -0
  56. package/dist/components/r-toast/default-error-handler.d.ts +4 -0
  57. package/dist/components/r-toast/r-toast-manager.d.ts +17 -0
  58. package/dist/components/r-toast/r-toast.vue.d.ts +141 -0
  59. package/dist/components/r-toast/types.d.ts +19 -0
  60. package/dist/components/r-toggle/r-toggle.vue.d.ts +69 -0
  61. package/dist/directives/index.d.ts +8 -0
  62. package/dist/directives/r-click-outside/r-click-outside.d.ts +10 -0
  63. package/dist/directives/r-content/r-content.d.ts +9 -0
  64. package/dist/directives/r-fs-exclude.d.ts +7 -0
  65. package/dist/directives/r-lazy.d.ts +5 -0
  66. package/dist/directives/r-tooltip/r-tooltip.d.ts +12 -0
  67. package/dist/index.d.ts +20 -0
  68. package/dist/playground/Playground-copyme.vue.d.ts +2 -0
  69. package/dist/playground/main.d.ts +1 -0
  70. package/dist/revel.mjs +5577 -4744
  71. package/dist/revel.umd.js +115 -115
  72. package/dist/style.css +1 -1
  73. package/dist/styles/config.d.ts +32 -0
  74. package/dist/styles/index.d.ts +5 -0
  75. package/dist/styles/tokens.d.ts +130 -0
  76. package/dist/types.d.ts +24 -0
  77. package/package.json +107 -85
@@ -0,0 +1,96 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Input the source URL
4
+ */
5
+ src: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ /**
10
+ * Input the alternative text for the image
11
+ */
12
+ alt: {
13
+ type: StringConstructor;
14
+ default: string;
15
+ };
16
+ /**
17
+ * Make the image lazy loaded
18
+ */
19
+ lazy: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ /**
24
+ * Specify image width
25
+ */
26
+ width: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ /**
31
+ * Specify image height
32
+ */
33
+ height: {
34
+ type: StringConstructor;
35
+ default: string;
36
+ };
37
+ }, unknown, {
38
+ loading: boolean;
39
+ }, {
40
+ imgStyle(): {
41
+ height: string;
42
+ width: string;
43
+ };
44
+ wrapperStyle(): {
45
+ height: string;
46
+ width: string;
47
+ };
48
+ }, {
49
+ onload(): void;
50
+ onerror(): void;
51
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onload" | "onerror")[], "onload" | "onerror", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
52
+ /**
53
+ * Input the source URL
54
+ */
55
+ src: {
56
+ type: StringConstructor;
57
+ required: true;
58
+ };
59
+ /**
60
+ * Input the alternative text for the image
61
+ */
62
+ alt: {
63
+ type: StringConstructor;
64
+ default: string;
65
+ };
66
+ /**
67
+ * Make the image lazy loaded
68
+ */
69
+ lazy: {
70
+ type: BooleanConstructor;
71
+ default: boolean;
72
+ };
73
+ /**
74
+ * Specify image width
75
+ */
76
+ width: {
77
+ type: StringConstructor;
78
+ default: string;
79
+ };
80
+ /**
81
+ * Specify image height
82
+ */
83
+ height: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ }>> & {
88
+ onOnload?: ((...args: any[]) => any) | undefined;
89
+ onOnerror?: ((...args: any[]) => any) | undefined;
90
+ }, {
91
+ height: string;
92
+ width: string;
93
+ lazy: boolean;
94
+ alt: string;
95
+ }>;
96
+ export default _default;
@@ -0,0 +1,411 @@
1
+ import { type PropType } from 'vue';
2
+ import type { Nullable } from '../../types';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * TBD
6
+ */
7
+ label: {
8
+ type: StringConstructor;
9
+ default: null;
10
+ };
11
+ /**
12
+ * TBD
13
+ */
14
+ modelValue: {
15
+ type: PropType<Nullable<string | number | boolean>>;
16
+ default: null;
17
+ };
18
+ /**
19
+ * TBD
20
+ */
21
+ validate: {
22
+ type: ObjectConstructor;
23
+ default: null;
24
+ };
25
+ /**
26
+ * TBD
27
+ */
28
+ helpText: {
29
+ type: StringConstructor;
30
+ default: null;
31
+ };
32
+ /**
33
+ * TBD
34
+ */
35
+ multiline: {
36
+ type: BooleanConstructor;
37
+ default: boolean;
38
+ };
39
+ /**
40
+ * TBD
41
+ */
42
+ submitOnEnter: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ /**
47
+ * Define input events
48
+ */
49
+ inputEvents: {
50
+ type: ObjectConstructor;
51
+ default: () => {};
52
+ };
53
+ /**
54
+ * TBD
55
+ */
56
+ leftIcon: {
57
+ type: StringConstructor;
58
+ default: null;
59
+ };
60
+ /**
61
+ * TBD
62
+ */
63
+ leftIconClickPointer: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ /**
68
+ * TBD
69
+ */
70
+ rightIcon: {
71
+ type: StringConstructor;
72
+ default: null;
73
+ };
74
+ /**
75
+ * TBD
76
+ */
77
+ rightIconClickPointer: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ /**
82
+ * TBD
83
+ */
84
+ leftIconSpinning: {
85
+ type: BooleanConstructor;
86
+ default: boolean;
87
+ };
88
+ /**
89
+ * TBD
90
+ */
91
+ rightIconSpinning: {
92
+ type: BooleanConstructor;
93
+ default: boolean;
94
+ };
95
+ /**
96
+ * TBD
97
+ */
98
+ leftLabel: {
99
+ type: StringConstructor;
100
+ default: null;
101
+ };
102
+ /**
103
+ * TBD
104
+ */
105
+ rightLabel: {
106
+ type: StringConstructor;
107
+ default: null;
108
+ };
109
+ /**
110
+ * TBD
111
+ */
112
+ password: {
113
+ type: BooleanConstructor;
114
+ default: boolean;
115
+ };
116
+ /**
117
+ * TBD
118
+ */
119
+ numeric: {
120
+ type: BooleanConstructor;
121
+ default: boolean;
122
+ };
123
+ /**
124
+ * TBD
125
+ */
126
+ name: {
127
+ type: StringConstructor;
128
+ default: () => string;
129
+ };
130
+ /**
131
+ * TBD
132
+ */
133
+ rows: {
134
+ type: (StringConstructor | NumberConstructor)[];
135
+ default: string;
136
+ };
137
+ /**
138
+ * TBD
139
+ */
140
+ autoFocus: {
141
+ type: BooleanConstructor;
142
+ default: boolean;
143
+ };
144
+ /**
145
+ * TBD
146
+ */
147
+ autoHighlight: {
148
+ type: BooleanConstructor;
149
+ default: boolean;
150
+ };
151
+ /**
152
+ * TBD
153
+ */
154
+ autoHighlightOnFocus: {
155
+ type: BooleanConstructor;
156
+ default: boolean;
157
+ };
158
+ /**
159
+ * TBD
160
+ */
161
+ maxLength: {
162
+ type: (StringConstructor | NumberConstructor)[];
163
+ default: null;
164
+ };
165
+ /**
166
+ * TBD
167
+ */
168
+ autoResize: {
169
+ type: BooleanConstructor;
170
+ default: boolean;
171
+ };
172
+ /**
173
+ * TBD
174
+ */
175
+ autoComplete: {
176
+ type: StringConstructor;
177
+ default: string;
178
+ };
179
+ }, unknown, unknown, {
180
+ isInvalid(): any;
181
+ isGroupedInput(): string | false | import("vue").Slot | undefined;
182
+ fieldStyles(): Record<string, boolean>;
183
+ type(): "number" | "text" | "password";
184
+ autocompleteFlag(): string;
185
+ charactersLeft(): string;
186
+ }, {
187
+ update(event: Event): void;
188
+ onInput(event: Event): void;
189
+ keySubmit(): void;
190
+ keyPress(event: KeyboardEvent): void;
191
+ keyDown(event: KeyboardEvent): void;
192
+ getFocus(): void;
193
+ blur(): void;
194
+ focus(): void;
195
+ click(): void;
196
+ autoResizeTextArea(element: HTMLElement): void;
197
+ highlight(): void;
198
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "blur" | "focus" | "update:modelValue" | "key-press" | "key-down" | "key-submit" | "left-icon-click" | "right-icon-click")[], "click" | "blur" | "focus" | "update:modelValue" | "key-press" | "key-down" | "key-submit" | "left-icon-click" | "right-icon-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
199
+ /**
200
+ * TBD
201
+ */
202
+ label: {
203
+ type: StringConstructor;
204
+ default: null;
205
+ };
206
+ /**
207
+ * TBD
208
+ */
209
+ modelValue: {
210
+ type: PropType<Nullable<string | number | boolean>>;
211
+ default: null;
212
+ };
213
+ /**
214
+ * TBD
215
+ */
216
+ validate: {
217
+ type: ObjectConstructor;
218
+ default: null;
219
+ };
220
+ /**
221
+ * TBD
222
+ */
223
+ helpText: {
224
+ type: StringConstructor;
225
+ default: null;
226
+ };
227
+ /**
228
+ * TBD
229
+ */
230
+ multiline: {
231
+ type: BooleanConstructor;
232
+ default: boolean;
233
+ };
234
+ /**
235
+ * TBD
236
+ */
237
+ submitOnEnter: {
238
+ type: BooleanConstructor;
239
+ default: boolean;
240
+ };
241
+ /**
242
+ * Define input events
243
+ */
244
+ inputEvents: {
245
+ type: ObjectConstructor;
246
+ default: () => {};
247
+ };
248
+ /**
249
+ * TBD
250
+ */
251
+ leftIcon: {
252
+ type: StringConstructor;
253
+ default: null;
254
+ };
255
+ /**
256
+ * TBD
257
+ */
258
+ leftIconClickPointer: {
259
+ type: BooleanConstructor;
260
+ default: boolean;
261
+ };
262
+ /**
263
+ * TBD
264
+ */
265
+ rightIcon: {
266
+ type: StringConstructor;
267
+ default: null;
268
+ };
269
+ /**
270
+ * TBD
271
+ */
272
+ rightIconClickPointer: {
273
+ type: BooleanConstructor;
274
+ default: boolean;
275
+ };
276
+ /**
277
+ * TBD
278
+ */
279
+ leftIconSpinning: {
280
+ type: BooleanConstructor;
281
+ default: boolean;
282
+ };
283
+ /**
284
+ * TBD
285
+ */
286
+ rightIconSpinning: {
287
+ type: BooleanConstructor;
288
+ default: boolean;
289
+ };
290
+ /**
291
+ * TBD
292
+ */
293
+ leftLabel: {
294
+ type: StringConstructor;
295
+ default: null;
296
+ };
297
+ /**
298
+ * TBD
299
+ */
300
+ rightLabel: {
301
+ type: StringConstructor;
302
+ default: null;
303
+ };
304
+ /**
305
+ * TBD
306
+ */
307
+ password: {
308
+ type: BooleanConstructor;
309
+ default: boolean;
310
+ };
311
+ /**
312
+ * TBD
313
+ */
314
+ numeric: {
315
+ type: BooleanConstructor;
316
+ default: boolean;
317
+ };
318
+ /**
319
+ * TBD
320
+ */
321
+ name: {
322
+ type: StringConstructor;
323
+ default: () => string;
324
+ };
325
+ /**
326
+ * TBD
327
+ */
328
+ rows: {
329
+ type: (StringConstructor | NumberConstructor)[];
330
+ default: string;
331
+ };
332
+ /**
333
+ * TBD
334
+ */
335
+ autoFocus: {
336
+ type: BooleanConstructor;
337
+ default: boolean;
338
+ };
339
+ /**
340
+ * TBD
341
+ */
342
+ autoHighlight: {
343
+ type: BooleanConstructor;
344
+ default: boolean;
345
+ };
346
+ /**
347
+ * TBD
348
+ */
349
+ autoHighlightOnFocus: {
350
+ type: BooleanConstructor;
351
+ default: boolean;
352
+ };
353
+ /**
354
+ * TBD
355
+ */
356
+ maxLength: {
357
+ type: (StringConstructor | NumberConstructor)[];
358
+ default: null;
359
+ };
360
+ /**
361
+ * TBD
362
+ */
363
+ autoResize: {
364
+ type: BooleanConstructor;
365
+ default: boolean;
366
+ };
367
+ /**
368
+ * TBD
369
+ */
370
+ autoComplete: {
371
+ type: StringConstructor;
372
+ default: string;
373
+ };
374
+ }>> & {
375
+ onClick?: ((...args: any[]) => any) | undefined;
376
+ onFocus?: ((...args: any[]) => any) | undefined;
377
+ onBlur?: ((...args: any[]) => any) | undefined;
378
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
379
+ "onKey-press"?: ((...args: any[]) => any) | undefined;
380
+ "onKey-down"?: ((...args: any[]) => any) | undefined;
381
+ "onKey-submit"?: ((...args: any[]) => any) | undefined;
382
+ "onLeft-icon-click"?: ((...args: any[]) => any) | undefined;
383
+ "onRight-icon-click"?: ((...args: any[]) => any) | undefined;
384
+ }, {
385
+ name: string;
386
+ label: string;
387
+ modelValue: Nullable<string | number | boolean>;
388
+ validate: Record<string, any>;
389
+ rightIcon: string;
390
+ inputEvents: Record<string, any>;
391
+ rows: string | number;
392
+ numeric: boolean;
393
+ helpText: string;
394
+ multiline: boolean;
395
+ submitOnEnter: boolean;
396
+ leftIcon: string;
397
+ leftIconClickPointer: boolean;
398
+ rightIconClickPointer: boolean;
399
+ leftIconSpinning: boolean;
400
+ rightIconSpinning: boolean;
401
+ leftLabel: string;
402
+ rightLabel: string;
403
+ password: boolean;
404
+ autoFocus: boolean;
405
+ autoHighlight: boolean;
406
+ autoHighlightOnFocus: boolean;
407
+ maxLength: string | number;
408
+ autoResize: boolean;
409
+ autoComplete: string;
410
+ }>;
411
+ export default _default;
@@ -0,0 +1,55 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Boolean value to show or hide component
4
+ */
5
+ show: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ /**
10
+ * Flag to start / stop animation
11
+ */
12
+ loading: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ /**
17
+ * Fill parent component or entire application
18
+ */
19
+ fullscreen: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ }, unknown, unknown, {
24
+ classes(): {
25
+ 'r-is-loading': boolean;
26
+ 'r-is-fullscreen': boolean;
27
+ };
28
+ }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
29
+ /**
30
+ * Boolean value to show or hide component
31
+ */
32
+ show: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ /**
37
+ * Flag to start / stop animation
38
+ */
39
+ loading: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ /**
44
+ * Fill parent component or entire application
45
+ */
46
+ fullscreen: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ }>>, {
51
+ loading: boolean;
52
+ show: boolean;
53
+ fullscreen: boolean;
54
+ }>;
55
+ export default _default;
@@ -0,0 +1,132 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ /**
3
+ * Use this prop to conditionally show the modal from the outside (BREAKING CHANGE)
4
+ */
5
+ show: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ /**
10
+ * TBD
11
+ */
12
+ title: {
13
+ type: StringConstructor;
14
+ default: null;
15
+ };
16
+ /**
17
+ * TBD
18
+ */
19
+ cancelLabel: {
20
+ type: StringConstructor;
21
+ default: string;
22
+ };
23
+ /**
24
+ * large, extra-large or fluid
25
+ */
26
+ size: {
27
+ type: StringConstructor;
28
+ default: null;
29
+ };
30
+ /**
31
+ * TBD
32
+ */
33
+ scroll: {
34
+ type: BooleanConstructor;
35
+ default: boolean;
36
+ };
37
+ /**
38
+ * TBD
39
+ */
40
+ scrollContent: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
44
+ /**
45
+ * Transition duration
46
+ */
47
+ duration: {
48
+ type: NumberConstructor;
49
+ default: number;
50
+ };
51
+ }, unknown, unknown, {
52
+ transitionDuration(): {
53
+ 'transition-duration': string;
54
+ };
55
+ classes(): Record<string, boolean>;
56
+ }, {
57
+ submit(): void;
58
+ close(): void;
59
+ /**
60
+ * Assures that the modal container is focused Or at least
61
+ * an element inside it. So key events can be captured.
62
+ * The focus works on the DIV because tabindex attribute see:
63
+ * https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex
64
+ */
65
+ focus(): void;
66
+ enter(): void;
67
+ leave(): void;
68
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "submit" | "leave" | "enter")[], "close" | "submit" | "leave" | "enter", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
69
+ /**
70
+ * Use this prop to conditionally show the modal from the outside (BREAKING CHANGE)
71
+ */
72
+ show: {
73
+ type: BooleanConstructor;
74
+ default: boolean;
75
+ };
76
+ /**
77
+ * TBD
78
+ */
79
+ title: {
80
+ type: StringConstructor;
81
+ default: null;
82
+ };
83
+ /**
84
+ * TBD
85
+ */
86
+ cancelLabel: {
87
+ type: StringConstructor;
88
+ default: string;
89
+ };
90
+ /**
91
+ * large, extra-large or fluid
92
+ */
93
+ size: {
94
+ type: StringConstructor;
95
+ default: null;
96
+ };
97
+ /**
98
+ * TBD
99
+ */
100
+ scroll: {
101
+ type: BooleanConstructor;
102
+ default: boolean;
103
+ };
104
+ /**
105
+ * TBD
106
+ */
107
+ scrollContent: {
108
+ type: BooleanConstructor;
109
+ default: boolean;
110
+ };
111
+ /**
112
+ * Transition duration
113
+ */
114
+ duration: {
115
+ type: NumberConstructor;
116
+ default: number;
117
+ };
118
+ }>> & {
119
+ onSubmit?: ((...args: any[]) => any) | undefined;
120
+ onClose?: ((...args: any[]) => any) | undefined;
121
+ onLeave?: ((...args: any[]) => any) | undefined;
122
+ onEnter?: ((...args: any[]) => any) | undefined;
123
+ }, {
124
+ title: string;
125
+ scroll: boolean;
126
+ size: string;
127
+ show: boolean;
128
+ duration: number;
129
+ cancelLabel: string;
130
+ scrollContent: boolean;
131
+ }>;
132
+ export default _default;
@@ -0,0 +1 @@
1
+ export declare const months: string[];