@opendesign-plus/components 0.0.1-rc.28 → 0.0.1-rc.29
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 +152 -152
- package/dist/components/activity/OActivityApproval.vue.d.ts +8 -8
- package/dist/components/activity/OActivityForm.vue.d.ts +6 -6
- package/dist/components/activity/OActivityMyCalendar.vue.d.ts +8 -4
- package/dist/components/activity/index.d.ts +17 -15
- package/dist/components/config-provider/OPlusConfigProvider.vue.d.ts +24 -0
- package/dist/components/config-provider/index.d.ts +30 -0
- package/dist/components/cookie-notice/OCookieNotice.vue.d.ts +17 -0
- package/dist/components/cookie-notice/index.d.ts +53 -0
- package/dist/components/events/types.d.ts +4 -0
- package/dist/components/{OFooter.vue.d.ts → footer/OFooter.vue.d.ts} +2 -2
- package/dist/components/footer/index.d.ts +89 -0
- package/dist/components/header/index.d.ts +1 -0
- package/dist/components/header/types.d.ts +1 -0
- package/dist/components/{OLanguageSwitcher.vue.d.ts → header-language-switcher/OHeaderLanguageSwitcher.vue.d.ts} +5 -5
- package/dist/components/header-language-switcher/index.d.ts +90 -0
- package/dist/components/{OHeaderSearch.vue.d.ts → header-search/OHeaderSearch.vue.d.ts} +165 -145
- package/dist/components/header-search/index.d.ts +607 -0
- package/dist/components/header-source-code/OHeaderSourceCode.vue.d.ts +18 -0
- package/dist/components/header-source-code/index.d.ts +23 -0
- package/dist/components/header-theme/OHeaderTheme.vue.d.ts +25 -0
- package/dist/components/header-theme/index.d.ts +50 -0
- package/dist/components/{OHeaderUser.vue.d.ts → header-user/OHeaderUser.vue.d.ts} +7 -7
- package/dist/components/header-user/index.d.ts +53 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMeetingForm.vue.d.ts +4 -6
- package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +8 -4
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +4 -4
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -0
- package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +11 -15
- package/dist/components/meeting/types.d.ts +6 -4
- package/dist/components/meeting/utils.d.ts +2 -1
- package/dist/components/search/OSearchInput.vue.d.ts +54 -34
- package/dist/components/search/index.d.ts +32 -22
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +41 -21
- package/dist/components/search/internal/SearchPanel.vue.d.ts +1 -1
- package/dist/components/{OSection.vue.d.ts → section/OSection.vue.d.ts} +4 -4
- package/dist/components/section/index.d.ts +47 -0
- package/dist/components.cjs.js +40 -40
- package/dist/components.css +1 -1
- package/dist/components.es.js +16758 -16562
- package/dist/index.d.ts +9 -14
- package/docs/design.md +2 -2
- package/package.json +8 -8
- package/scripts/generate-components-index.js +2 -44
- package/src/assets/meeting/svg-icons/icon-all.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-event.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-meet.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-summit.svg +2 -1
- package/src/assets/styles/element-plus.scss +24 -0
- package/src/components/activity/OActivityMyCalendar.vue +19 -12
- package/src/components/common/ClientOnly.vue +13 -0
- package/src/components/{OPlusConfigProvider.vue → config-provider/OPlusConfigProvider.vue} +5 -5
- package/src/components/config-provider/index.ts +10 -0
- package/src/components/{OCookieNotice.vue → cookie-notice/OCookieNotice.vue} +1 -1
- package/src/components/cookie-notice/index.ts +10 -0
- package/src/components/element-plus/OElCookieNotice.vue +2 -2
- package/src/components/events/OEventsApply.vue +85 -1
- package/src/components/events/OEventsList.vue +112 -40
- package/src/components/events/types.ts +1 -0
- package/src/components/{OFooter.vue → footer/OFooter.vue} +4 -4
- package/src/components/footer/index.ts +10 -0
- package/src/components/header/index.ts +2 -0
- package/src/components/header/types.ts +1 -0
- package/src/components/header-language-switcher/index.ts +10 -0
- package/src/components/{OHeaderSearch.vue → header-search/OHeaderSearch.vue} +4 -4
- package/src/components/header-search/index.ts +10 -0
- package/src/components/{OSourceCode.vue → header-source-code/OHeaderSourceCode.vue} +2 -2
- package/src/components/header-source-code/index.ts +10 -0
- package/src/components/{OThemeSwitcher.vue → header-theme/OHeaderTheme.vue} +4 -4
- package/src/components/header-theme/index.ts +10 -0
- package/src/components/{OHeaderUser.vue → header-user/OHeaderUser.vue} +4 -4
- package/src/components/header-user/index.ts +10 -0
- package/src/components/meeting/OMeetingCalendar.vue +32 -21
- package/src/components/meeting/OMeetingForm.vue +44 -37
- package/src/components/meeting/OMeetingMyCalendar.vue +28 -38
- package/src/components/meeting/OMeetingSigCalendar.vue +43 -20
- package/src/components/meeting/components/OMeetingCalendarList.vue +80 -29
- package/src/components/meeting/components/OMeetingDetail.vue +29 -10
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingSigAside.vue +11 -6
- package/src/components/meeting/types.ts +7 -5
- package/src/components/meeting/utils.ts +4 -4
- package/src/components/{OSection.vue → section/OSection.vue} +1 -1
- package/src/components/section/index.ts +10 -0
- package/src/i18n/en.ts +2 -2
- package/src/i18n/zh.ts +4 -2
- package/src/index.ts +9 -38
- package/dist/components/OCookieNotice.vue.d.ts +0 -17
- package/dist/components/OPlusConfigProvider.vue.d.ts +0 -23
- package/dist/components/OSourceCode.vue.d.ts +0 -18
- package/dist/components/OThemeSwitcher.vue.d.ts +0 -25
- package/src/components/common/ClientOnlyWrapper.ts +0 -21
- /package/src/components/{OLanguageSwitcher.vue → header-language-switcher/OHeaderLanguageSwitcher.vue} +0 -0
|
@@ -45,6 +45,7 @@ declare function __VLS_template(): {
|
|
|
45
45
|
variant: "solid" | "outline" | "text";
|
|
46
46
|
clearable: boolean;
|
|
47
47
|
readonly: boolean;
|
|
48
|
+
noKeyboard: boolean;
|
|
48
49
|
showLength: "auto" | "always" | "never";
|
|
49
50
|
inputOnOutlimit: boolean;
|
|
50
51
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -52,22 +53,23 @@ declare function __VLS_template(): {
|
|
|
52
53
|
passwordPlaceholder: string;
|
|
53
54
|
onlyNumericInput: boolean;
|
|
54
55
|
}> & Omit<{
|
|
55
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
56
|
-
readonly variant: "text" | "solid" | "outline";
|
|
57
|
-
readonly disabled: boolean;
|
|
58
56
|
readonly type: "text" | "password";
|
|
59
|
-
readonly
|
|
57
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
58
|
+
readonly variant: "solid" | "outline" | "text";
|
|
59
|
+
readonly disabled: boolean;
|
|
60
60
|
readonly readonly: boolean;
|
|
61
|
+
readonly noKeyboard: boolean;
|
|
62
|
+
readonly clearable: boolean;
|
|
61
63
|
readonly showLength: "auto" | "always" | "never";
|
|
62
64
|
readonly inputOnOutlimit: boolean;
|
|
63
65
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
64
66
|
readonly autoWidth: boolean;
|
|
65
67
|
readonly passwordPlaceholder: string;
|
|
66
68
|
readonly onlyNumericInput: boolean;
|
|
67
|
-
readonly size?: "small" | "
|
|
68
|
-
readonly defaultValue?: string | number | undefined;
|
|
69
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
69
70
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
70
71
|
readonly modelValue?: string | number | undefined;
|
|
72
|
+
readonly defaultValue?: string | number | undefined;
|
|
71
73
|
readonly placeholder?: string | undefined;
|
|
72
74
|
readonly inputId?: string | undefined;
|
|
73
75
|
readonly minLength?: number | undefined;
|
|
@@ -83,7 +85,7 @@ declare function __VLS_template(): {
|
|
|
83
85
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
84
86
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
85
87
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
86
|
-
} & import('../../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "color" | "variant" | "disabled" | "
|
|
88
|
+
} & 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" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
87
89
|
$attrs: import('../../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
88
90
|
$refs: {
|
|
89
91
|
[x: string]: unknown;
|
|
@@ -94,7 +96,7 @@ declare function __VLS_template(): {
|
|
|
94
96
|
$root: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
95
97
|
$parent: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
96
98
|
$host: Element | null;
|
|
97
|
-
$emit: ((event: "
|
|
99
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
98
100
|
$el: any;
|
|
99
101
|
$options: import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
100
102
|
size: {
|
|
@@ -133,6 +135,9 @@ declare function __VLS_template(): {
|
|
|
133
135
|
readonly: {
|
|
134
136
|
type: BooleanConstructor;
|
|
135
137
|
};
|
|
138
|
+
noKeyboard: {
|
|
139
|
+
type: BooleanConstructor;
|
|
140
|
+
};
|
|
136
141
|
clearable: {
|
|
137
142
|
type: BooleanConstructor;
|
|
138
143
|
};
|
|
@@ -205,6 +210,7 @@ declare function __VLS_template(): {
|
|
|
205
210
|
variant: "solid" | "outline" | "text";
|
|
206
211
|
clearable: boolean;
|
|
207
212
|
readonly: boolean;
|
|
213
|
+
noKeyboard: boolean;
|
|
208
214
|
showLength: "auto" | "always" | "never";
|
|
209
215
|
inputOnOutlimit: boolean;
|
|
210
216
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -238,6 +244,7 @@ declare function __VLS_template(): {
|
|
|
238
244
|
variant: "solid" | "outline" | "text";
|
|
239
245
|
clearable: boolean;
|
|
240
246
|
readonly: boolean;
|
|
247
|
+
noKeyboard: boolean;
|
|
241
248
|
showLength: "auto" | "always" | "never";
|
|
242
249
|
inputOnOutlimit: boolean;
|
|
243
250
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -281,6 +288,9 @@ declare function __VLS_template(): {
|
|
|
281
288
|
readonly: {
|
|
282
289
|
type: BooleanConstructor;
|
|
283
290
|
};
|
|
291
|
+
noKeyboard: {
|
|
292
|
+
type: BooleanConstructor;
|
|
293
|
+
};
|
|
284
294
|
clearable: {
|
|
285
295
|
type: BooleanConstructor;
|
|
286
296
|
};
|
|
@@ -332,7 +342,7 @@ declare function __VLS_template(): {
|
|
|
332
342
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
333
343
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
334
344
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
335
|
-
}>, "
|
|
345
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
336
346
|
focus: () => void | undefined;
|
|
337
347
|
blur: () => void | undefined;
|
|
338
348
|
clear: () => void | undefined;
|
|
@@ -376,14 +386,14 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
376
386
|
size: "small" | "medium" | "large";
|
|
377
387
|
disabled: boolean;
|
|
378
388
|
modelValue: string;
|
|
389
|
+
clearable: boolean;
|
|
390
|
+
expanded: boolean;
|
|
391
|
+
preview: boolean;
|
|
379
392
|
imageUrl: string;
|
|
380
393
|
enableImageSearch: boolean;
|
|
381
394
|
maxImageSize: number;
|
|
382
|
-
expanded: boolean;
|
|
383
|
-
clearable: boolean;
|
|
384
395
|
showSuffix: boolean;
|
|
385
396
|
inlineThumbnail: boolean;
|
|
386
|
-
preview: boolean;
|
|
387
397
|
allowedImageTypes: string[];
|
|
388
398
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
389
399
|
inputRef: ({
|
|
@@ -396,6 +406,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
396
406
|
variant: "solid" | "outline" | "text";
|
|
397
407
|
clearable: boolean;
|
|
398
408
|
readonly: boolean;
|
|
409
|
+
noKeyboard: boolean;
|
|
399
410
|
showLength: "auto" | "always" | "never";
|
|
400
411
|
inputOnOutlimit: boolean;
|
|
401
412
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -403,22 +414,23 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
403
414
|
passwordPlaceholder: string;
|
|
404
415
|
onlyNumericInput: boolean;
|
|
405
416
|
}> & Omit<{
|
|
406
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
407
|
-
readonly variant: "text" | "solid" | "outline";
|
|
408
|
-
readonly disabled: boolean;
|
|
409
417
|
readonly type: "text" | "password";
|
|
410
|
-
readonly
|
|
418
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
419
|
+
readonly variant: "solid" | "outline" | "text";
|
|
420
|
+
readonly disabled: boolean;
|
|
411
421
|
readonly readonly: boolean;
|
|
422
|
+
readonly noKeyboard: boolean;
|
|
423
|
+
readonly clearable: boolean;
|
|
412
424
|
readonly showLength: "auto" | "always" | "never";
|
|
413
425
|
readonly inputOnOutlimit: boolean;
|
|
414
426
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
415
427
|
readonly autoWidth: boolean;
|
|
416
428
|
readonly passwordPlaceholder: string;
|
|
417
429
|
readonly onlyNumericInput: boolean;
|
|
418
|
-
readonly size?: "small" | "
|
|
419
|
-
readonly defaultValue?: string | number | undefined;
|
|
430
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
420
431
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
421
432
|
readonly modelValue?: string | number | undefined;
|
|
433
|
+
readonly defaultValue?: string | number | undefined;
|
|
422
434
|
readonly placeholder?: string | undefined;
|
|
423
435
|
readonly inputId?: string | undefined;
|
|
424
436
|
readonly minLength?: number | undefined;
|
|
@@ -434,7 +446,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
434
446
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
435
447
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
436
448
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
437
|
-
} & import('../../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "color" | "variant" | "disabled" | "
|
|
449
|
+
} & 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" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
438
450
|
$attrs: import('../../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
439
451
|
$refs: {
|
|
440
452
|
[x: string]: unknown;
|
|
@@ -445,7 +457,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
445
457
|
$root: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
446
458
|
$parent: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
447
459
|
$host: Element | null;
|
|
448
|
-
$emit: ((event: "
|
|
460
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
449
461
|
$el: any;
|
|
450
462
|
$options: import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
451
463
|
size: {
|
|
@@ -484,6 +496,9 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
484
496
|
readonly: {
|
|
485
497
|
type: BooleanConstructor;
|
|
486
498
|
};
|
|
499
|
+
noKeyboard: {
|
|
500
|
+
type: BooleanConstructor;
|
|
501
|
+
};
|
|
487
502
|
clearable: {
|
|
488
503
|
type: BooleanConstructor;
|
|
489
504
|
};
|
|
@@ -556,6 +571,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
556
571
|
variant: "solid" | "outline" | "text";
|
|
557
572
|
clearable: boolean;
|
|
558
573
|
readonly: boolean;
|
|
574
|
+
noKeyboard: boolean;
|
|
559
575
|
showLength: "auto" | "always" | "never";
|
|
560
576
|
inputOnOutlimit: boolean;
|
|
561
577
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -589,6 +605,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
589
605
|
variant: "solid" | "outline" | "text";
|
|
590
606
|
clearable: boolean;
|
|
591
607
|
readonly: boolean;
|
|
608
|
+
noKeyboard: boolean;
|
|
592
609
|
showLength: "auto" | "always" | "never";
|
|
593
610
|
inputOnOutlimit: boolean;
|
|
594
611
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -632,6 +649,9 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
632
649
|
readonly: {
|
|
633
650
|
type: BooleanConstructor;
|
|
634
651
|
};
|
|
652
|
+
noKeyboard: {
|
|
653
|
+
type: BooleanConstructor;
|
|
654
|
+
};
|
|
635
655
|
clearable: {
|
|
636
656
|
type: BooleanConstructor;
|
|
637
657
|
};
|
|
@@ -683,7 +703,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
683
703
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
684
704
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
685
705
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
686
|
-
}>, "
|
|
706
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
687
707
|
focus: () => void | undefined;
|
|
688
708
|
blur: () => void | undefined;
|
|
689
709
|
clear: () => void | undefined;
|
|
@@ -80,6 +80,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
80
80
|
"onHot-refresh"?: (() => any) | undefined;
|
|
81
81
|
}>, {
|
|
82
82
|
keyword: string;
|
|
83
|
+
isDark: boolean;
|
|
83
84
|
onestepItems: OSearchRecommendItem[];
|
|
84
85
|
suggestItems: OSearchRecommendItem[];
|
|
85
86
|
recommendItems: string[];
|
|
@@ -88,7 +89,6 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
88
89
|
highlightKeyword: boolean;
|
|
89
90
|
hideOnKeyword: boolean;
|
|
90
91
|
showSuggestEmpty: boolean;
|
|
91
|
-
isDark: boolean;
|
|
92
92
|
historyLayout: "chips" | "list";
|
|
93
93
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
94
94
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface SectionPropsT {
|
|
1
|
+
export interface SectionPropsT {
|
|
2
2
|
title?: string | Array<string>;
|
|
3
3
|
subtitle?: string;
|
|
4
4
|
full?: boolean;
|
|
@@ -20,14 +20,14 @@ declare function __VLS_template(): {
|
|
|
20
20
|
rootEl: HTMLDivElement;
|
|
21
21
|
};
|
|
22
22
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
|
-
declare const __VLS_component: import('
|
|
24
|
-
footer: string;
|
|
23
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<SectionPropsT, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<SectionPropsT> & Readonly<{}>, {
|
|
25
24
|
title: string | Array<string>;
|
|
25
|
+
footer: string;
|
|
26
26
|
subtitle: string;
|
|
27
27
|
full: boolean;
|
|
28
28
|
headerJustifyCenter: boolean;
|
|
29
29
|
footerHref: string;
|
|
30
|
-
}, {}, {}, {}, string, import('
|
|
30
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
32
32
|
export default _default;
|
|
33
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { App } from '../../../vue/dist/vue.esm-bundler.js';
|
|
2
|
+
declare const OSection: {
|
|
3
|
+
new (...args: any[]): import('../../../vue/dist/vue.esm-bundler.js').CreateComponentPublicInstanceWithMixins<Readonly<import('./OSection.vue').SectionPropsT> & Readonly<{}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
4
|
+
title: string | Array<string>;
|
|
5
|
+
footer: string;
|
|
6
|
+
subtitle: string;
|
|
7
|
+
full: boolean;
|
|
8
|
+
headerJustifyCenter: boolean;
|
|
9
|
+
footerHref: string;
|
|
10
|
+
}, false, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {}, HTMLDivElement, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
|
|
11
|
+
P: {};
|
|
12
|
+
B: {};
|
|
13
|
+
D: {};
|
|
14
|
+
C: {};
|
|
15
|
+
M: {};
|
|
16
|
+
Defaults: {};
|
|
17
|
+
}, Readonly<import('./OSection.vue').SectionPropsT> & Readonly<{}>, {}, {}, {}, {}, {
|
|
18
|
+
title: string | Array<string>;
|
|
19
|
+
footer: string;
|
|
20
|
+
subtitle: string;
|
|
21
|
+
full: boolean;
|
|
22
|
+
headerJustifyCenter: boolean;
|
|
23
|
+
footerHref: string;
|
|
24
|
+
}>;
|
|
25
|
+
__isFragment?: never;
|
|
26
|
+
__isTeleport?: never;
|
|
27
|
+
__isSuspense?: never;
|
|
28
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./OSection.vue').SectionPropsT> & Readonly<{}>, {}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, {
|
|
29
|
+
title: string | Array<string>;
|
|
30
|
+
footer: string;
|
|
31
|
+
subtitle: string;
|
|
32
|
+
full: boolean;
|
|
33
|
+
headerJustifyCenter: boolean;
|
|
34
|
+
footerHref: string;
|
|
35
|
+
}, {}, 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> & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps & (new () => {
|
|
36
|
+
$slots: {
|
|
37
|
+
main?(_: {}): any;
|
|
38
|
+
header?(_: {}): any;
|
|
39
|
+
title?(_: {}): any;
|
|
40
|
+
subtitle?(_: {}): any;
|
|
41
|
+
default?(_: {}): any;
|
|
42
|
+
footer?(_: {}): any;
|
|
43
|
+
};
|
|
44
|
+
}) & {
|
|
45
|
+
install(app: App): void;
|
|
46
|
+
};
|
|
47
|
+
export { OSection };
|