@opendesign-plus-test/components 0.0.1-rc.43 → 0.0.1-rc.45
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/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +67 -47
- package/dist/components/OHeaderSearch.vue.d.ts +822 -500
- 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/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +41 -41
- package/dist/components.css +1 -1
- package/dist/components.es.js +11228 -10253
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/activity/OActivityApproval.vue +4 -4
- package/src/components/activity/OActivityForm.vue +2 -2
- package/src/components/activity/OMyActivityCalendar.vue +26 -26
- package/src/components/activity/config.ts +1 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/element-plus/OElCookieNotice.vue +26 -26
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +16 -16
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/components/HeaderContent.vue +60 -60
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +3 -3
- package/src/components/meeting/OMeetingCalendar.vue +27 -27
- package/src/components/meeting/OMeetingForm.vue +16 -16
- package/src/components/meeting/OMeetingPlayback.vue +4 -4
- package/src/components/meeting/OMyMeetingCalendar.vue +25 -25
- package/src/components/meeting/OSigMeetingCalendar.vue +3 -3
- package/src/components/meeting/components/OMeetingCalendarList.vue +9 -9
- package/src/components/meeting/components/OMeetingDetail.vue +2 -2
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +5 -5
- package/src/components/meeting/components/OSigMeetingAside.vue +6 -6
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +1 -1
|
@@ -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 & {} & {
|
|
@@ -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 & {} & {
|