@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
|
@@ -163,8 +163,17 @@ declare function __VLS_template(): {
|
|
|
163
163
|
readonly disabledY: boolean;
|
|
164
164
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
165
165
|
readonly autoUpdateOnScrollSize: boolean;
|
|
166
|
-
readonly wrapClass?: string |
|
|
167
|
-
|
|
166
|
+
readonly wrapClass?: string | {
|
|
167
|
+
[k: string]: boolean;
|
|
168
|
+
} | (string | {
|
|
169
|
+
[k: string]: boolean;
|
|
170
|
+
})[] | undefined;
|
|
171
|
+
readonly barClass?: string | {
|
|
172
|
+
[k: string]: boolean;
|
|
173
|
+
} | (string | {
|
|
174
|
+
[k: string]: boolean;
|
|
175
|
+
})[] | undefined;
|
|
176
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
168
177
|
} & 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">;
|
|
169
178
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
170
179
|
$refs: {
|
|
@@ -178,15 +187,19 @@ declare function __VLS_template(): {
|
|
|
178
187
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
179
188
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
180
189
|
$host: Element | null;
|
|
181
|
-
$emit: (event:
|
|
190
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
182
191
|
$el: HTMLDivElement;
|
|
183
192
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
184
193
|
wrapClass: {
|
|
185
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
194
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
195
|
+
[k: string]: boolean;
|
|
196
|
+
} | Array<{
|
|
197
|
+
[k: string]: boolean;
|
|
198
|
+
} | string>>;
|
|
186
199
|
};
|
|
187
200
|
disabledX: {
|
|
188
201
|
type: BooleanConstructor;
|
|
189
|
-
required:
|
|
202
|
+
required: false;
|
|
190
203
|
};
|
|
191
204
|
disabledY: {
|
|
192
205
|
type: BooleanConstructor;
|
|
@@ -207,12 +220,20 @@ declare function __VLS_template(): {
|
|
|
207
220
|
type: BooleanConstructor;
|
|
208
221
|
};
|
|
209
222
|
barClass: {
|
|
210
|
-
type:
|
|
223
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
224
|
+
[k: string]: boolean;
|
|
225
|
+
} | Array<{
|
|
226
|
+
[k: string]: boolean;
|
|
227
|
+
} | string>>;
|
|
211
228
|
};
|
|
212
|
-
}>> & Readonly<{
|
|
229
|
+
}>> & Readonly<{
|
|
230
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
231
|
+
}>, {
|
|
213
232
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
214
233
|
getContainerEl(): HTMLElement | null;
|
|
215
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
234
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
235
|
+
scroll: (event: Event) => any;
|
|
236
|
+
}, string, {
|
|
216
237
|
size: "medium" | "small";
|
|
217
238
|
duration: number;
|
|
218
239
|
disabledX: boolean;
|
|
@@ -248,11 +269,15 @@ declare function __VLS_template(): {
|
|
|
248
269
|
autoUpdateOnScrollSize: boolean;
|
|
249
270
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
250
271
|
wrapClass: {
|
|
251
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
272
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
273
|
+
[k: string]: boolean;
|
|
274
|
+
} | Array<{
|
|
275
|
+
[k: string]: boolean;
|
|
276
|
+
} | string>>;
|
|
252
277
|
};
|
|
253
278
|
disabledX: {
|
|
254
279
|
type: BooleanConstructor;
|
|
255
|
-
required:
|
|
280
|
+
required: false;
|
|
256
281
|
};
|
|
257
282
|
disabledY: {
|
|
258
283
|
type: BooleanConstructor;
|
|
@@ -273,9 +298,15 @@ declare function __VLS_template(): {
|
|
|
273
298
|
type: BooleanConstructor;
|
|
274
299
|
};
|
|
275
300
|
barClass: {
|
|
276
|
-
type:
|
|
301
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
302
|
+
[k: string]: boolean;
|
|
303
|
+
} | Array<{
|
|
304
|
+
[k: string]: boolean;
|
|
305
|
+
} | string>>;
|
|
277
306
|
};
|
|
278
|
-
}>> & Readonly<{
|
|
307
|
+
}>> & Readonly<{
|
|
308
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
309
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
279
310
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
280
311
|
getContainerEl: () => HTMLElement | null;
|
|
281
312
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -446,8 +477,17 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
446
477
|
readonly disabledY: boolean;
|
|
447
478
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
448
479
|
readonly autoUpdateOnScrollSize: boolean;
|
|
449
|
-
readonly wrapClass?: string |
|
|
450
|
-
|
|
480
|
+
readonly wrapClass?: string | {
|
|
481
|
+
[k: string]: boolean;
|
|
482
|
+
} | (string | {
|
|
483
|
+
[k: string]: boolean;
|
|
484
|
+
})[] | undefined;
|
|
485
|
+
readonly barClass?: string | {
|
|
486
|
+
[k: string]: boolean;
|
|
487
|
+
} | (string | {
|
|
488
|
+
[k: string]: boolean;
|
|
489
|
+
})[] | undefined;
|
|
490
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
451
491
|
} & 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">;
|
|
452
492
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
453
493
|
$refs: {
|
|
@@ -461,15 +501,19 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
461
501
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
462
502
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
463
503
|
$host: Element | null;
|
|
464
|
-
$emit: (event:
|
|
504
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
465
505
|
$el: HTMLDivElement;
|
|
466
506
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
467
507
|
wrapClass: {
|
|
468
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
508
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
509
|
+
[k: string]: boolean;
|
|
510
|
+
} | Array<{
|
|
511
|
+
[k: string]: boolean;
|
|
512
|
+
} | string>>;
|
|
469
513
|
};
|
|
470
514
|
disabledX: {
|
|
471
515
|
type: BooleanConstructor;
|
|
472
|
-
required:
|
|
516
|
+
required: false;
|
|
473
517
|
};
|
|
474
518
|
disabledY: {
|
|
475
519
|
type: BooleanConstructor;
|
|
@@ -490,12 +534,20 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
490
534
|
type: BooleanConstructor;
|
|
491
535
|
};
|
|
492
536
|
barClass: {
|
|
493
|
-
type:
|
|
537
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
538
|
+
[k: string]: boolean;
|
|
539
|
+
} | Array<{
|
|
540
|
+
[k: string]: boolean;
|
|
541
|
+
} | string>>;
|
|
494
542
|
};
|
|
495
|
-
}>> & Readonly<{
|
|
543
|
+
}>> & Readonly<{
|
|
544
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
545
|
+
}>, {
|
|
496
546
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
497
547
|
getContainerEl(): HTMLElement | null;
|
|
498
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
548
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
549
|
+
scroll: (event: Event) => any;
|
|
550
|
+
}, string, {
|
|
499
551
|
size: "medium" | "small";
|
|
500
552
|
duration: number;
|
|
501
553
|
disabledX: boolean;
|
|
@@ -531,11 +583,15 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
531
583
|
autoUpdateOnScrollSize: boolean;
|
|
532
584
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
533
585
|
wrapClass: {
|
|
534
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
586
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
587
|
+
[k: string]: boolean;
|
|
588
|
+
} | Array<{
|
|
589
|
+
[k: string]: boolean;
|
|
590
|
+
} | string>>;
|
|
535
591
|
};
|
|
536
592
|
disabledX: {
|
|
537
593
|
type: BooleanConstructor;
|
|
538
|
-
required:
|
|
594
|
+
required: false;
|
|
539
595
|
};
|
|
540
596
|
disabledY: {
|
|
541
597
|
type: BooleanConstructor;
|
|
@@ -556,9 +612,15 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
556
612
|
type: BooleanConstructor;
|
|
557
613
|
};
|
|
558
614
|
barClass: {
|
|
559
|
-
type:
|
|
615
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
616
|
+
[k: string]: boolean;
|
|
617
|
+
} | Array<{
|
|
618
|
+
[k: string]: boolean;
|
|
619
|
+
} | string>>;
|
|
560
620
|
};
|
|
561
|
-
}>> & Readonly<{
|
|
621
|
+
}>> & Readonly<{
|
|
622
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
623
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
562
624
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
563
625
|
getContainerEl: () => HTMLElement | null;
|
|
564
626
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
@@ -622,8 +622,17 @@ declare const OMyMeetingCalendar: {
|
|
|
622
622
|
readonly disabledY: boolean;
|
|
623
623
|
readonly showType: "never" | "always" | "hover" | "auto";
|
|
624
624
|
readonly autoUpdateOnScrollSize: boolean;
|
|
625
|
-
readonly wrapClass?: string |
|
|
626
|
-
|
|
625
|
+
readonly wrapClass?: string | {
|
|
626
|
+
[k: string]: boolean;
|
|
627
|
+
} | (string | {
|
|
628
|
+
[k: string]: boolean;
|
|
629
|
+
})[] | undefined;
|
|
630
|
+
readonly barClass?: string | {
|
|
631
|
+
[k: string]: boolean;
|
|
632
|
+
} | (string | {
|
|
633
|
+
[k: string]: boolean;
|
|
634
|
+
})[] | undefined;
|
|
635
|
+
readonly onScroll?: ((event: Event) => any) | undefined | undefined;
|
|
627
636
|
} & 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">;
|
|
628
637
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
629
638
|
$refs: {
|
|
@@ -637,15 +646,19 @@ declare const OMyMeetingCalendar: {
|
|
|
637
646
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
638
647
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
639
648
|
$host: Element | null;
|
|
640
|
-
$emit: (event:
|
|
649
|
+
$emit: (event: "scroll", event: Event) => void;
|
|
641
650
|
$el: HTMLDivElement;
|
|
642
651
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
643
652
|
wrapClass: {
|
|
644
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
653
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
654
|
+
[k: string]: boolean;
|
|
655
|
+
} | Array<{
|
|
656
|
+
[k: string]: boolean;
|
|
657
|
+
} | string>>;
|
|
645
658
|
};
|
|
646
659
|
disabledX: {
|
|
647
660
|
type: BooleanConstructor;
|
|
648
|
-
required:
|
|
661
|
+
required: false;
|
|
649
662
|
};
|
|
650
663
|
disabledY: {
|
|
651
664
|
type: BooleanConstructor;
|
|
@@ -666,12 +679,20 @@ declare const OMyMeetingCalendar: {
|
|
|
666
679
|
type: BooleanConstructor;
|
|
667
680
|
};
|
|
668
681
|
barClass: {
|
|
669
|
-
type:
|
|
682
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
683
|
+
[k: string]: boolean;
|
|
684
|
+
} | Array<{
|
|
685
|
+
[k: string]: boolean;
|
|
686
|
+
} | string>>;
|
|
670
687
|
};
|
|
671
|
-
}>> & Readonly<{
|
|
688
|
+
}>> & Readonly<{
|
|
689
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
690
|
+
}>, {
|
|
672
691
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
673
692
|
getContainerEl(): HTMLElement | null;
|
|
674
|
-
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
693
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
694
|
+
scroll: (event: Event) => any;
|
|
695
|
+
}, string, {
|
|
675
696
|
size: "medium" | "small";
|
|
676
697
|
duration: number;
|
|
677
698
|
disabledX: boolean;
|
|
@@ -707,11 +728,15 @@ declare const OMyMeetingCalendar: {
|
|
|
707
728
|
autoUpdateOnScrollSize: boolean;
|
|
708
729
|
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
709
730
|
wrapClass: {
|
|
710
|
-
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string |
|
|
731
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
732
|
+
[k: string]: boolean;
|
|
733
|
+
} | Array<{
|
|
734
|
+
[k: string]: boolean;
|
|
735
|
+
} | string>>;
|
|
711
736
|
};
|
|
712
737
|
disabledX: {
|
|
713
738
|
type: BooleanConstructor;
|
|
714
|
-
required:
|
|
739
|
+
required: false;
|
|
715
740
|
};
|
|
716
741
|
disabledY: {
|
|
717
742
|
type: BooleanConstructor;
|
|
@@ -732,9 +757,15 @@ declare const OMyMeetingCalendar: {
|
|
|
732
757
|
type: BooleanConstructor;
|
|
733
758
|
};
|
|
734
759
|
barClass: {
|
|
735
|
-
type:
|
|
760
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<string | {
|
|
761
|
+
[k: string]: boolean;
|
|
762
|
+
} | Array<{
|
|
763
|
+
[k: string]: boolean;
|
|
764
|
+
} | string>>;
|
|
736
765
|
};
|
|
737
|
-
}>> & Readonly<{
|
|
766
|
+
}>> & Readonly<{
|
|
767
|
+
onScroll?: ((event: Event) => any) | undefined;
|
|
768
|
+
}>, "size" | "duration" | "disabledX" | "disabledY" | "showType" | "autoUpdateOnScrollSize" | "scrollTo" | "getContainerEl"> & {
|
|
738
769
|
scrollTo: (options?: ScrollToOptions | undefined) => void;
|
|
739
770
|
getContainerEl: () => HTMLElement | null;
|
|
740
771
|
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|