@opendesign-plus-test/components 0.0.1-rc.43 → 0.0.1-rc.46
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/OHeaderSearch.vue.d.ts +58 -14
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +86 -24
- package/dist/components/activity/index.d.ts +43 -12
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +86 -24
- package/dist/components/meeting/index.d.ts +43 -12
- package/dist/components.cjs.js +1 -1
- package/dist/components.es.js +1 -1
- package/package.json +2 -2
- package/src/components/activity/config.ts +1 -1
|
@@ -65,10 +65,12 @@ declare function __VLS_template(): {
|
|
|
65
65
|
variant: "solid" | "outline" | "text";
|
|
66
66
|
clearable: boolean;
|
|
67
67
|
readonly: boolean;
|
|
68
|
+
showLength: "auto" | "always" | "never";
|
|
68
69
|
inputOnOutlimit: boolean;
|
|
69
70
|
showPasswordEvent: "click" | "pointerdown";
|
|
70
71
|
autoWidth: boolean;
|
|
71
72
|
passwordPlaceholder: string;
|
|
73
|
+
onlyNumericInput: boolean;
|
|
72
74
|
}> & Omit<{
|
|
73
75
|
readonly type: "text" | "password";
|
|
74
76
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
@@ -76,10 +78,12 @@ declare function __VLS_template(): {
|
|
|
76
78
|
readonly disabled: boolean;
|
|
77
79
|
readonly clearable: boolean;
|
|
78
80
|
readonly readonly: boolean;
|
|
81
|
+
readonly showLength: "never" | "always" | "auto";
|
|
79
82
|
readonly inputOnOutlimit: boolean;
|
|
80
83
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
81
84
|
readonly autoWidth: boolean;
|
|
82
85
|
readonly passwordPlaceholder: string;
|
|
86
|
+
readonly onlyNumericInput: boolean;
|
|
83
87
|
readonly size?: "small" | "large" | "medium" | undefined;
|
|
84
88
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
85
89
|
readonly placeholder?: string | undefined;
|
|
@@ -91,7 +95,7 @@ declare function __VLS_template(): {
|
|
|
91
95
|
readonly getLength?: ((val: string) => number) | undefined;
|
|
92
96
|
readonly format?: ((value: string) => string) | undefined;
|
|
93
97
|
readonly validate?: ((value: string) => boolean) | undefined;
|
|
94
|
-
readonly valueOnInvalidChange?: ((inputValue: string, lastValidInputValue: string) => string) | undefined;
|
|
98
|
+
readonly valueOnInvalidChange?: boolean | ((inputValue: string, lastValidInputValue: string) => string) | undefined;
|
|
95
99
|
readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
|
|
96
100
|
readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
|
|
97
101
|
readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
@@ -99,7 +103,7 @@ declare function __VLS_template(): {
|
|
|
99
103
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
100
104
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
101
105
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
102
|
-
} & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder">;
|
|
106
|
+
} & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
103
107
|
$attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
104
108
|
$refs: {
|
|
105
109
|
[x: string]: unknown;
|
|
@@ -158,6 +162,10 @@ declare function __VLS_template(): {
|
|
|
158
162
|
maxLength: {
|
|
159
163
|
type: NumberConstructor;
|
|
160
164
|
};
|
|
165
|
+
showLength: {
|
|
166
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
167
|
+
default: string;
|
|
168
|
+
};
|
|
161
169
|
getLength: {
|
|
162
170
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
163
171
|
};
|
|
@@ -172,7 +180,7 @@ declare function __VLS_template(): {
|
|
|
172
180
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
173
181
|
};
|
|
174
182
|
valueOnInvalidChange: {
|
|
175
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
183
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
176
184
|
};
|
|
177
185
|
showPasswordEvent: {
|
|
178
186
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
@@ -185,6 +193,9 @@ declare function __VLS_template(): {
|
|
|
185
193
|
type: StringConstructor;
|
|
186
194
|
default: string;
|
|
187
195
|
};
|
|
196
|
+
onlyNumericInput: {
|
|
197
|
+
type: BooleanConstructor;
|
|
198
|
+
};
|
|
188
199
|
}>> & Readonly<{
|
|
189
200
|
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
190
201
|
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
@@ -197,7 +208,7 @@ declare function __VLS_template(): {
|
|
|
197
208
|
focus: () => void | undefined;
|
|
198
209
|
blur: () => void | undefined;
|
|
199
210
|
clear: () => void | undefined;
|
|
200
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
211
|
+
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
201
212
|
togglePassword: () => void | undefined;
|
|
202
213
|
}, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
203
214
|
input: (evt: Event, value: string) => any;
|
|
@@ -214,10 +225,12 @@ declare function __VLS_template(): {
|
|
|
214
225
|
variant: "solid" | "outline" | "text";
|
|
215
226
|
clearable: boolean;
|
|
216
227
|
readonly: boolean;
|
|
228
|
+
showLength: "auto" | "always" | "never";
|
|
217
229
|
inputOnOutlimit: boolean;
|
|
218
230
|
showPasswordEvent: "click" | "pointerdown";
|
|
219
231
|
autoWidth: boolean;
|
|
220
232
|
passwordPlaceholder: string;
|
|
233
|
+
onlyNumericInput: boolean;
|
|
221
234
|
}, {}, string, {}, import('../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & {
|
|
222
235
|
beforeCreate?: (() => void) | (() => void)[];
|
|
223
236
|
created?: (() => void) | (() => void)[];
|
|
@@ -245,10 +258,12 @@ declare function __VLS_template(): {
|
|
|
245
258
|
variant: "solid" | "outline" | "text";
|
|
246
259
|
clearable: boolean;
|
|
247
260
|
readonly: boolean;
|
|
261
|
+
showLength: "auto" | "always" | "never";
|
|
248
262
|
inputOnOutlimit: boolean;
|
|
249
263
|
showPasswordEvent: "click" | "pointerdown";
|
|
250
264
|
autoWidth: boolean;
|
|
251
265
|
passwordPlaceholder: string;
|
|
266
|
+
onlyNumericInput: boolean;
|
|
252
267
|
}> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
253
268
|
size: {
|
|
254
269
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
@@ -295,6 +310,10 @@ declare function __VLS_template(): {
|
|
|
295
310
|
maxLength: {
|
|
296
311
|
type: NumberConstructor;
|
|
297
312
|
};
|
|
313
|
+
showLength: {
|
|
314
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
315
|
+
default: string;
|
|
316
|
+
};
|
|
298
317
|
getLength: {
|
|
299
318
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
300
319
|
};
|
|
@@ -309,7 +328,7 @@ declare function __VLS_template(): {
|
|
|
309
328
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
310
329
|
};
|
|
311
330
|
valueOnInvalidChange: {
|
|
312
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
331
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
313
332
|
};
|
|
314
333
|
showPasswordEvent: {
|
|
315
334
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
@@ -322,6 +341,9 @@ declare function __VLS_template(): {
|
|
|
322
341
|
type: StringConstructor;
|
|
323
342
|
default: string;
|
|
324
343
|
};
|
|
344
|
+
onlyNumericInput: {
|
|
345
|
+
type: BooleanConstructor;
|
|
346
|
+
};
|
|
325
347
|
}>> & Readonly<{
|
|
326
348
|
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
327
349
|
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
@@ -330,11 +352,11 @@ declare function __VLS_template(): {
|
|
|
330
352
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
331
353
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
332
354
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
333
|
-
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & {
|
|
355
|
+
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
334
356
|
focus: () => void | undefined;
|
|
335
357
|
blur: () => void | undefined;
|
|
336
358
|
clear: () => void | undefined;
|
|
337
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
359
|
+
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
338
360
|
togglePassword: () => void | undefined;
|
|
339
361
|
} & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
340
362
|
$slots: Readonly<{
|
|
@@ -392,10 +414,12 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
392
414
|
variant: "solid" | "outline" | "text";
|
|
393
415
|
clearable: boolean;
|
|
394
416
|
readonly: boolean;
|
|
417
|
+
showLength: "auto" | "always" | "never";
|
|
395
418
|
inputOnOutlimit: boolean;
|
|
396
419
|
showPasswordEvent: "click" | "pointerdown";
|
|
397
420
|
autoWidth: boolean;
|
|
398
421
|
passwordPlaceholder: string;
|
|
422
|
+
onlyNumericInput: boolean;
|
|
399
423
|
}> & Omit<{
|
|
400
424
|
readonly type: "text" | "password";
|
|
401
425
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
@@ -403,10 +427,12 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
403
427
|
readonly disabled: boolean;
|
|
404
428
|
readonly clearable: boolean;
|
|
405
429
|
readonly readonly: boolean;
|
|
430
|
+
readonly showLength: "never" | "always" | "auto";
|
|
406
431
|
readonly inputOnOutlimit: boolean;
|
|
407
432
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
408
433
|
readonly autoWidth: boolean;
|
|
409
434
|
readonly passwordPlaceholder: string;
|
|
435
|
+
readonly onlyNumericInput: boolean;
|
|
410
436
|
readonly size?: "small" | "large" | "medium" | undefined;
|
|
411
437
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
412
438
|
readonly placeholder?: string | undefined;
|
|
@@ -418,7 +444,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
418
444
|
readonly getLength?: ((val: string) => number) | undefined;
|
|
419
445
|
readonly format?: ((value: string) => string) | undefined;
|
|
420
446
|
readonly validate?: ((value: string) => boolean) | undefined;
|
|
421
|
-
readonly valueOnInvalidChange?: ((inputValue: string, lastValidInputValue: string) => string) | undefined;
|
|
447
|
+
readonly valueOnInvalidChange?: boolean | ((inputValue: string, lastValidInputValue: string) => string) | undefined;
|
|
422
448
|
readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
|
|
423
449
|
readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
|
|
424
450
|
readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
@@ -426,7 +452,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
426
452
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
427
453
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
428
454
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
429
|
-
} & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder">;
|
|
455
|
+
} & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
430
456
|
$attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
431
457
|
$refs: {
|
|
432
458
|
[x: string]: unknown;
|
|
@@ -485,6 +511,10 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
485
511
|
maxLength: {
|
|
486
512
|
type: NumberConstructor;
|
|
487
513
|
};
|
|
514
|
+
showLength: {
|
|
515
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
516
|
+
default: string;
|
|
517
|
+
};
|
|
488
518
|
getLength: {
|
|
489
519
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
490
520
|
};
|
|
@@ -499,7 +529,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
499
529
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
500
530
|
};
|
|
501
531
|
valueOnInvalidChange: {
|
|
502
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
532
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
503
533
|
};
|
|
504
534
|
showPasswordEvent: {
|
|
505
535
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
@@ -512,6 +542,9 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
512
542
|
type: StringConstructor;
|
|
513
543
|
default: string;
|
|
514
544
|
};
|
|
545
|
+
onlyNumericInput: {
|
|
546
|
+
type: BooleanConstructor;
|
|
547
|
+
};
|
|
515
548
|
}>> & Readonly<{
|
|
516
549
|
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
517
550
|
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
@@ -524,7 +557,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
524
557
|
focus: () => void | undefined;
|
|
525
558
|
blur: () => void | undefined;
|
|
526
559
|
clear: () => void | undefined;
|
|
527
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
560
|
+
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
528
561
|
togglePassword: () => void | undefined;
|
|
529
562
|
}, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
530
563
|
input: (evt: Event, value: string) => any;
|
|
@@ -541,10 +574,12 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
541
574
|
variant: "solid" | "outline" | "text";
|
|
542
575
|
clearable: boolean;
|
|
543
576
|
readonly: boolean;
|
|
577
|
+
showLength: "auto" | "always" | "never";
|
|
544
578
|
inputOnOutlimit: boolean;
|
|
545
579
|
showPasswordEvent: "click" | "pointerdown";
|
|
546
580
|
autoWidth: boolean;
|
|
547
581
|
passwordPlaceholder: string;
|
|
582
|
+
onlyNumericInput: boolean;
|
|
548
583
|
}, {}, string, {}, import('../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & {
|
|
549
584
|
beforeCreate?: (() => void) | (() => void)[];
|
|
550
585
|
created?: (() => void) | (() => void)[];
|
|
@@ -572,10 +607,12 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
572
607
|
variant: "solid" | "outline" | "text";
|
|
573
608
|
clearable: boolean;
|
|
574
609
|
readonly: boolean;
|
|
610
|
+
showLength: "auto" | "always" | "never";
|
|
575
611
|
inputOnOutlimit: boolean;
|
|
576
612
|
showPasswordEvent: "click" | "pointerdown";
|
|
577
613
|
autoWidth: boolean;
|
|
578
614
|
passwordPlaceholder: string;
|
|
615
|
+
onlyNumericInput: boolean;
|
|
579
616
|
}> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
580
617
|
size: {
|
|
581
618
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
@@ -622,6 +659,10 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
622
659
|
maxLength: {
|
|
623
660
|
type: NumberConstructor;
|
|
624
661
|
};
|
|
662
|
+
showLength: {
|
|
663
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
664
|
+
default: string;
|
|
665
|
+
};
|
|
625
666
|
getLength: {
|
|
626
667
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
627
668
|
};
|
|
@@ -636,7 +677,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
636
677
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
637
678
|
};
|
|
638
679
|
valueOnInvalidChange: {
|
|
639
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
680
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
640
681
|
};
|
|
641
682
|
showPasswordEvent: {
|
|
642
683
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
@@ -649,6 +690,9 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
649
690
|
type: StringConstructor;
|
|
650
691
|
default: string;
|
|
651
692
|
};
|
|
693
|
+
onlyNumericInput: {
|
|
694
|
+
type: BooleanConstructor;
|
|
695
|
+
};
|
|
652
696
|
}>> & Readonly<{
|
|
653
697
|
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
654
698
|
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
@@ -657,11 +701,11 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
657
701
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
658
702
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
659
703
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
660
|
-
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & {
|
|
704
|
+
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
661
705
|
focus: () => void | undefined;
|
|
662
706
|
blur: () => void | undefined;
|
|
663
707
|
clear: () => void | undefined;
|
|
664
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
708
|
+
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
665
709
|
togglePassword: () => void | undefined;
|
|
666
710
|
} & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
667
711
|
$slots: Readonly<{
|
|
@@ -157,8 +157,17 @@ declare function __VLS_template(): {
|
|
|
157
157
|
readonly disabledY: boolean;
|
|
158
158
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
159
159
|
readonly autoUpdateOnScrollSize: boolean;
|
|
160
|
-
readonly wrapClass?: string |
|
|
161
|
-
|
|
160
|
+
readonly wrapClass?: string | {
|
|
161
|
+
[k: string]: boolean;
|
|
162
|
+
} | (string | {
|
|
163
|
+
[k: string]: boolean;
|
|
164
|
+
})[] | undefined;
|
|
165
|
+
readonly barClass?: string | {
|
|
166
|
+
[k: string]: boolean;
|
|
167
|
+
} | (string | {
|
|
168
|
+
[k: string]: boolean;
|
|
169
|
+
})[] | undefined;
|
|
170
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
162
171
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
163
172
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
164
173
|
$refs: {
|
|
@@ -172,15 +181,19 @@ declare function __VLS_template(): {
|
|
|
172
181
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
173
182
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
174
183
|
$host: Element | null;
|
|
175
|
-
$emit: (event:
|
|
184
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
176
185
|
$el: HTMLDivElement;
|
|
177
186
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
178
187
|
wrapClass: {
|
|
179
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
188
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
189
|
+
[k: string]: boolean;
|
|
190
|
+
} | Array<{
|
|
191
|
+
[k: string]: boolean;
|
|
192
|
+
} | string>>;
|
|
180
193
|
};
|
|
181
194
|
disabledX: {
|
|
182
195
|
type: BooleanConstructor;
|
|
183
|
-
required:
|
|
196
|
+
required: false;
|
|
184
197
|
};
|
|
185
198
|
disabledY: {
|
|
186
199
|
type: BooleanConstructor;
|
|
@@ -201,12 +214,20 @@ declare function __VLS_template(): {
|
|
|
201
214
|
type: BooleanConstructor;
|
|
202
215
|
};
|
|
203
216
|
barClass: {
|
|
204
|
-
type:
|
|
217
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
218
|
+
[k: string]: boolean;
|
|
219
|
+
} | Array<{
|
|
220
|
+
[k: string]: boolean;
|
|
221
|
+
} | string>>;
|
|
205
222
|
};
|
|
206
|
-
}>> & Readonly<{
|
|
223
|
+
}>> & Readonly<{
|
|
224
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
225
|
+
}>, {
|
|
207
226
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
208
227
|
getContainerEl(): HTMLElement | null;
|
|
209
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
228
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
229
|
+
scroll: (event: Event) => any;
|
|
230
|
+
}, string, {
|
|
210
231
|
size: "medium" | "small";
|
|
211
232
|
duration: number;
|
|
212
233
|
disabledX: boolean;
|
|
@@ -242,11 +263,15 @@ declare function __VLS_template(): {
|
|
|
242
263
|
autoUpdateOnScrollSize: boolean;
|
|
243
264
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
244
265
|
wrapClass: {
|
|
245
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
266
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
267
|
+
[k: string]: boolean;
|
|
268
|
+
} | Array<{
|
|
269
|
+
[k: string]: boolean;
|
|
270
|
+
} | string>>;
|
|
246
271
|
};
|
|
247
272
|
disabledX: {
|
|
248
273
|
type: BooleanConstructor;
|
|
249
|
-
required:
|
|
274
|
+
required: false;
|
|
250
275
|
};
|
|
251
276
|
disabledY: {
|
|
252
277
|
type: BooleanConstructor;
|
|
@@ -267,9 +292,15 @@ declare function __VLS_template(): {
|
|
|
267
292
|
type: BooleanConstructor;
|
|
268
293
|
};
|
|
269
294
|
barClass: {
|
|
270
|
-
type:
|
|
295
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
296
|
+
[k: string]: boolean;
|
|
297
|
+
} | Array<{
|
|
298
|
+
[k: string]: boolean;
|
|
299
|
+
} | string>>;
|
|
271
300
|
};
|
|
272
|
-
}>> & Readonly<{
|
|
301
|
+
}>> & Readonly<{
|
|
302
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
303
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
273
304
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
274
305
|
getContainerEl: () => HTMLElement | null;
|
|
275
306
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -438,8 +469,17 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
438
469
|
readonly disabledY: boolean;
|
|
439
470
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
440
471
|
readonly autoUpdateOnScrollSize: boolean;
|
|
441
|
-
readonly wrapClass?: string |
|
|
442
|
-
|
|
472
|
+
readonly wrapClass?: string | {
|
|
473
|
+
[k: string]: boolean;
|
|
474
|
+
} | (string | {
|
|
475
|
+
[k: string]: boolean;
|
|
476
|
+
})[] | undefined;
|
|
477
|
+
readonly barClass?: string | {
|
|
478
|
+
[k: string]: boolean;
|
|
479
|
+
} | (string | {
|
|
480
|
+
[k: string]: boolean;
|
|
481
|
+
})[] | undefined;
|
|
482
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
443
483
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
444
484
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
445
485
|
$refs: {
|
|
@@ -453,15 +493,19 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
453
493
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
454
494
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
455
495
|
$host: Element | null;
|
|
456
|
-
$emit: (event:
|
|
496
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
457
497
|
$el: HTMLDivElement;
|
|
458
498
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
459
499
|
wrapClass: {
|
|
460
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
500
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
501
|
+
[k: string]: boolean;
|
|
502
|
+
} | Array<{
|
|
503
|
+
[k: string]: boolean;
|
|
504
|
+
} | string>>;
|
|
461
505
|
};
|
|
462
506
|
disabledX: {
|
|
463
507
|
type: BooleanConstructor;
|
|
464
|
-
required:
|
|
508
|
+
required: false;
|
|
465
509
|
};
|
|
466
510
|
disabledY: {
|
|
467
511
|
type: BooleanConstructor;
|
|
@@ -482,12 +526,20 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
482
526
|
type: BooleanConstructor;
|
|
483
527
|
};
|
|
484
528
|
barClass: {
|
|
485
|
-
type:
|
|
529
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
530
|
+
[k: string]: boolean;
|
|
531
|
+
} | Array<{
|
|
532
|
+
[k: string]: boolean;
|
|
533
|
+
} | string>>;
|
|
486
534
|
};
|
|
487
|
-
}>> & Readonly<{
|
|
535
|
+
}>> & Readonly<{
|
|
536
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
537
|
+
}>, {
|
|
488
538
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
489
539
|
getContainerEl(): HTMLElement | null;
|
|
490
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
540
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
541
|
+
scroll: (event: Event) => any;
|
|
542
|
+
}, string, {
|
|
491
543
|
size: "medium" | "small";
|
|
492
544
|
duration: number;
|
|
493
545
|
disabledX: boolean;
|
|
@@ -523,11 +575,15 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
523
575
|
autoUpdateOnScrollSize: boolean;
|
|
524
576
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
525
577
|
wrapClass: {
|
|
526
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
578
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
579
|
+
[k: string]: boolean;
|
|
580
|
+
} | Array<{
|
|
581
|
+
[k: string]: boolean;
|
|
582
|
+
} | string>>;
|
|
527
583
|
};
|
|
528
584
|
disabledX: {
|
|
529
585
|
type: BooleanConstructor;
|
|
530
|
-
required:
|
|
586
|
+
required: false;
|
|
531
587
|
};
|
|
532
588
|
disabledY: {
|
|
533
589
|
type: BooleanConstructor;
|
|
@@ -548,9 +604,15 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
548
604
|
type: BooleanConstructor;
|
|
549
605
|
};
|
|
550
606
|
barClass: {
|
|
551
|
-
type:
|
|
607
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
608
|
+
[k: string]: boolean;
|
|
609
|
+
} | Array<{
|
|
610
|
+
[k: string]: boolean;
|
|
611
|
+
} | string>>;
|
|
552
612
|
};
|
|
553
|
-
}>> & Readonly<{
|
|
613
|
+
}>> & Readonly<{
|
|
614
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
615
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
554
616
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
555
617
|
getContainerEl: () => HTMLElement | null;
|
|
556
618
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -465,8 +465,17 @@ declare const OMyActivityCalendar: {
|
|
|
465
465
|
readonly disabledY: boolean;
|
|
466
466
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
467
467
|
readonly autoUpdateOnScrollSize: boolean;
|
|
468
|
-
readonly wrapClass?: string |
|
|
469
|
-
|
|
468
|
+
readonly wrapClass?: string | {
|
|
469
|
+
[k: string]: boolean;
|
|
470
|
+
} | (string | {
|
|
471
|
+
[k: string]: boolean;
|
|
472
|
+
})[] | undefined;
|
|
473
|
+
readonly barClass?: string | {
|
|
474
|
+
[k: string]: boolean;
|
|
475
|
+
} | (string | {
|
|
476
|
+
[k: string]: boolean;
|
|
477
|
+
})[] | undefined;
|
|
478
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
470
479
|
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize">;
|
|
471
480
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
472
481
|
$refs: {
|
|
@@ -480,15 +489,19 @@ declare const OMyActivityCalendar: {
|
|
|
480
489
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
481
490
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
482
491
|
$host: Element | null;
|
|
483
|
-
$emit: (event:
|
|
492
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
484
493
|
$el: HTMLDivElement;
|
|
485
494
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
486
495
|
wrapClass: {
|
|
487
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
496
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
497
|
+
[k: string]: boolean;
|
|
498
|
+
} | Array<{
|
|
499
|
+
[k: string]: boolean;
|
|
500
|
+
} | string>>;
|
|
488
501
|
};
|
|
489
502
|
disabledX: {
|
|
490
503
|
type: BooleanConstructor;
|
|
491
|
-
required:
|
|
504
|
+
required: false;
|
|
492
505
|
};
|
|
493
506
|
disabledY: {
|
|
494
507
|
type: BooleanConstructor;
|
|
@@ -509,12 +522,20 @@ declare const OMyActivityCalendar: {
|
|
|
509
522
|
type: BooleanConstructor;
|
|
510
523
|
};
|
|
511
524
|
barClass: {
|
|
512
|
-
type:
|
|
525
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
526
|
+
[k: string]: boolean;
|
|
527
|
+
} | Array<{
|
|
528
|
+
[k: string]: boolean;
|
|
529
|
+
} | string>>;
|
|
513
530
|
};
|
|
514
|
-
}>> & Readonly<{
|
|
531
|
+
}>> & Readonly<{
|
|
532
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
533
|
+
}>, {
|
|
515
534
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
516
535
|
getContainerEl(): HTMLElement | null;
|
|
517
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
536
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
537
|
+
scroll: (event: Event) => any;
|
|
538
|
+
}, string, {
|
|
518
539
|
size: "medium" | "small";
|
|
519
540
|
duration: number;
|
|
520
541
|
disabledX: boolean;
|
|
@@ -550,11 +571,15 @@ declare const OMyActivityCalendar: {
|
|
|
550
571
|
autoUpdateOnScrollSize: boolean;
|
|
551
572
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
552
573
|
wrapClass: {
|
|
553
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
574
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
575
|
+
[k: string]: boolean;
|
|
576
|
+
} | Array<{
|
|
577
|
+
[k: string]: boolean;
|
|
578
|
+
} | string>>;
|
|
554
579
|
};
|
|
555
580
|
disabledX: {
|
|
556
581
|
type: BooleanConstructor;
|
|
557
|
-
required:
|
|
582
|
+
required: false;
|
|
558
583
|
};
|
|
559
584
|
disabledY: {
|
|
560
585
|
type: BooleanConstructor;
|
|
@@ -575,9 +600,15 @@ declare const OMyActivityCalendar: {
|
|
|
575
600
|
type: BooleanConstructor;
|
|
576
601
|
};
|
|
577
602
|
barClass: {
|
|
578
|
-
type:
|
|
603
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
604
|
+
[k: string]: boolean;
|
|
605
|
+
} | Array<{
|
|
606
|
+
[k: string]: boolean;
|
|
607
|
+
} | string>>;
|
|
579
608
|
};
|
|
580
|
-
}>> & Readonly<{
|
|
609
|
+
}>> & Readonly<{
|
|
610
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
611
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
581
612
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
582
613
|
getContainerEl: () => HTMLElement | null;
|
|
583
614
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|