@opendesign-plus-test/components 0.0.1-rc.60 → 0.0.1-rc.61
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 +28 -28
- package/dist/components/OHeaderSearch.vue.d.ts +22 -22
- package/dist/components/OHeaderUser.vue.d.ts +1 -1
- package/dist/components/OLanguageSwitcher.vue.d.ts +49 -0
- package/dist/components/OThemeSwitcher.vue.d.ts +1 -1
- package/dist/components/activity/OActivityMyCalendar.vue.d.ts +4 -4
- package/dist/components/activity/index.d.ts +2 -2
- package/dist/components/banner/OBanner.vue.d.ts +13 -0
- package/dist/components/banner/OBannerContent.vue.d.ts +7 -0
- package/dist/components/banner/index.d.ts +68 -0
- package/dist/components/banner/types.d.ts +31 -0
- package/dist/components/header/types.d.ts +1 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMeetingForm.vue.d.ts +0 -2
- package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +4 -4
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +3 -9
- package/dist/components/meeting/types.d.ts +2 -4
- package/dist/components/search/OSearchInput.vue.d.ts +22 -22
- package/dist/components/search/index.d.ts +11 -11
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +17 -17
- package/dist/components.cjs.js +39 -39
- package/dist/components.css +1 -1
- package/dist/components.es.js +8780 -8594
- package/dist/index.d.ts +3 -2
- package/package.json +3 -3
- package/scripts/generate-components-index.js +1 -1
- package/src/components/OHeaderSearch.vue +1 -1
- package/src/components/OLanguageSwitcher.vue +211 -0
- package/src/components/activity/OActivityMyCalendar.vue +1 -1
- package/src/components/banner/OBanner.vue +288 -0
- package/src/components/banner/OBannerContent.vue +175 -0
- package/src/components/banner/index.ts +18 -0
- package/src/components/banner/types.ts +39 -0
- package/src/components/header/types.ts +1 -0
- package/src/components/meeting/OMeetingCalendar.vue +23 -4
- package/src/components/meeting/OMeetingForm.vue +21 -13
- package/src/components/meeting/components/OMeetingCalendarList.vue +6 -2
- package/src/components/meeting/components/OMeetingDetail.vue +17 -3
- package/src/components/meeting/types.ts +2 -4
- package/src/components/search/OSearchInput.vue +1 -1
- package/src/i18n/en.ts +1 -1
- package/src/i18n/zh.ts +1 -1
- package/src/index.ts +4 -3
- package/dist/components/OBanner.vue.d.ts +0 -11
- package/src/components/OBanner.vue +0 -398
|
@@ -79,23 +79,23 @@ declare const OSearchInput: {
|
|
|
79
79
|
passwordPlaceholder: string;
|
|
80
80
|
onlyNumericInput: boolean;
|
|
81
81
|
}> & Omit<{
|
|
82
|
-
readonly type: "text" | "password";
|
|
83
82
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
84
83
|
readonly variant: "text" | "solid" | "outline";
|
|
85
84
|
readonly disabled: boolean;
|
|
85
|
+
readonly type: "text" | "password";
|
|
86
86
|
readonly clearable: boolean;
|
|
87
87
|
readonly readonly: boolean;
|
|
88
|
-
readonly showLength: "
|
|
88
|
+
readonly showLength: "auto" | "always" | "never";
|
|
89
89
|
readonly inputOnOutlimit: boolean;
|
|
90
90
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
91
91
|
readonly autoWidth: boolean;
|
|
92
92
|
readonly passwordPlaceholder: string;
|
|
93
93
|
readonly onlyNumericInput: boolean;
|
|
94
|
-
readonly size?: "small" | "
|
|
95
|
-
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
96
|
-
readonly placeholder?: string | undefined;
|
|
94
|
+
readonly size?: "small" | "medium" | "large" | undefined;
|
|
97
95
|
readonly defaultValue?: string | number | undefined;
|
|
96
|
+
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
98
97
|
readonly modelValue?: string | number | undefined;
|
|
98
|
+
readonly placeholder?: string | undefined;
|
|
99
99
|
readonly inputId?: string | undefined;
|
|
100
100
|
readonly minLength?: number | undefined;
|
|
101
101
|
readonly maxLength?: number | undefined;
|
|
@@ -110,7 +110,7 @@ declare const OSearchInput: {
|
|
|
110
110
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
111
111
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
112
112
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
113
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "
|
|
113
|
+
} & 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" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
114
114
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
115
115
|
$refs: {
|
|
116
116
|
[x: string]: unknown;
|
|
@@ -121,7 +121,7 @@ declare const OSearchInput: {
|
|
|
121
121
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
122
122
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
123
123
|
$host: Element | null;
|
|
124
|
-
$emit: ((event: "
|
|
124
|
+
$emit: ((event: "clear", evt?: Event | undefined) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
125
125
|
$el: any;
|
|
126
126
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
127
127
|
size: {
|
|
@@ -359,7 +359,7 @@ declare const OSearchInput: {
|
|
|
359
359
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
360
360
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
361
361
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
362
|
-
}>, "
|
|
362
|
+
}>, "clear" | "blur" | "focus" | "color" | "variant" | "disabled" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
363
363
|
focus: () => void | undefined;
|
|
364
364
|
blur: () => void | undefined;
|
|
365
365
|
clear: () => void | undefined;
|
|
@@ -407,7 +407,6 @@ declare const OSearchInput: {
|
|
|
407
407
|
}, string, {
|
|
408
408
|
size: "small" | "medium" | "large";
|
|
409
409
|
disabled: boolean;
|
|
410
|
-
preview: boolean;
|
|
411
410
|
modelValue: string;
|
|
412
411
|
imageUrl: string;
|
|
413
412
|
enableImageSearch: boolean;
|
|
@@ -416,6 +415,7 @@ declare const OSearchInput: {
|
|
|
416
415
|
clearable: boolean;
|
|
417
416
|
showSuffix: boolean;
|
|
418
417
|
inlineThumbnail: boolean;
|
|
418
|
+
preview: boolean;
|
|
419
419
|
allowedImageTypes: string[];
|
|
420
420
|
}, {}, 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> & {
|
|
421
421
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -440,7 +440,6 @@ declare const OSearchInput: {
|
|
|
440
440
|
} & Readonly<{
|
|
441
441
|
size: "small" | "medium" | "large";
|
|
442
442
|
disabled: boolean;
|
|
443
|
-
preview: boolean;
|
|
444
443
|
modelValue: string;
|
|
445
444
|
imageUrl: string;
|
|
446
445
|
enableImageSearch: boolean;
|
|
@@ -449,10 +448,11 @@ declare const OSearchInput: {
|
|
|
449
448
|
clearable: boolean;
|
|
450
449
|
showSuffix: boolean;
|
|
451
450
|
inlineThumbnail: boolean;
|
|
451
|
+
preview: boolean;
|
|
452
452
|
allowedImageTypes: string[];
|
|
453
453
|
}> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
454
454
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
455
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "
|
|
455
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "preview" | "allowedImageTypes")> & {
|
|
456
456
|
focus: () => void | undefined;
|
|
457
457
|
blur: () => void | undefined;
|
|
458
458
|
awaitUpload: () => Promise<void>;
|
|
@@ -52,23 +52,23 @@ declare function __VLS_template(): {
|
|
|
52
52
|
passwordPlaceholder: string;
|
|
53
53
|
onlyNumericInput: boolean;
|
|
54
54
|
}> & Omit<{
|
|
55
|
-
readonly type: "text" | "password";
|
|
56
55
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
57
56
|
readonly variant: "text" | "solid" | "outline";
|
|
58
57
|
readonly disabled: boolean;
|
|
58
|
+
readonly type: "text" | "password";
|
|
59
59
|
readonly clearable: boolean;
|
|
60
60
|
readonly readonly: boolean;
|
|
61
|
-
readonly showLength: "
|
|
61
|
+
readonly showLength: "auto" | "always" | "never";
|
|
62
62
|
readonly inputOnOutlimit: boolean;
|
|
63
63
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
64
64
|
readonly autoWidth: boolean;
|
|
65
65
|
readonly passwordPlaceholder: string;
|
|
66
66
|
readonly onlyNumericInput: boolean;
|
|
67
|
-
readonly size?: "small" | "
|
|
68
|
-
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
69
|
-
readonly placeholder?: string | undefined;
|
|
67
|
+
readonly size?: "small" | "medium" | "large" | undefined;
|
|
70
68
|
readonly defaultValue?: string | number | undefined;
|
|
69
|
+
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
71
70
|
readonly modelValue?: string | number | undefined;
|
|
71
|
+
readonly placeholder?: string | undefined;
|
|
72
72
|
readonly inputId?: string | undefined;
|
|
73
73
|
readonly minLength?: number | undefined;
|
|
74
74
|
readonly maxLength?: number | undefined;
|
|
@@ -83,7 +83,7 @@ declare function __VLS_template(): {
|
|
|
83
83
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
84
84
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
85
85
|
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, "
|
|
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" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
87
87
|
$attrs: import('../../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
88
88
|
$refs: {
|
|
89
89
|
[x: string]: unknown;
|
|
@@ -94,7 +94,7 @@ declare function __VLS_template(): {
|
|
|
94
94
|
$root: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
95
95
|
$parent: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
96
96
|
$host: Element | null;
|
|
97
|
-
$emit: ((event: "
|
|
97
|
+
$emit: ((event: "clear", evt?: Event | undefined) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
98
98
|
$el: any;
|
|
99
99
|
$options: import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
100
100
|
size: {
|
|
@@ -332,7 +332,7 @@ declare function __VLS_template(): {
|
|
|
332
332
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
333
333
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
334
334
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
335
|
-
}>, "
|
|
335
|
+
}>, "clear" | "blur" | "focus" | "color" | "variant" | "disabled" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
336
336
|
focus: () => void | undefined;
|
|
337
337
|
blur: () => void | undefined;
|
|
338
338
|
clear: () => void | undefined;
|
|
@@ -375,7 +375,6 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
375
375
|
}>, {
|
|
376
376
|
size: "small" | "medium" | "large";
|
|
377
377
|
disabled: boolean;
|
|
378
|
-
preview: boolean;
|
|
379
378
|
modelValue: string;
|
|
380
379
|
imageUrl: string;
|
|
381
380
|
enableImageSearch: boolean;
|
|
@@ -384,6 +383,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
384
383
|
clearable: boolean;
|
|
385
384
|
showSuffix: boolean;
|
|
386
385
|
inlineThumbnail: boolean;
|
|
386
|
+
preview: boolean;
|
|
387
387
|
allowedImageTypes: string[];
|
|
388
388
|
}, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
389
389
|
inputRef: ({
|
|
@@ -403,23 +403,23 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
403
403
|
passwordPlaceholder: string;
|
|
404
404
|
onlyNumericInput: boolean;
|
|
405
405
|
}> & Omit<{
|
|
406
|
-
readonly type: "text" | "password";
|
|
407
406
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
408
407
|
readonly variant: "text" | "solid" | "outline";
|
|
409
408
|
readonly disabled: boolean;
|
|
409
|
+
readonly type: "text" | "password";
|
|
410
410
|
readonly clearable: boolean;
|
|
411
411
|
readonly readonly: boolean;
|
|
412
|
-
readonly showLength: "
|
|
412
|
+
readonly showLength: "auto" | "always" | "never";
|
|
413
413
|
readonly inputOnOutlimit: boolean;
|
|
414
414
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
415
415
|
readonly autoWidth: boolean;
|
|
416
416
|
readonly passwordPlaceholder: string;
|
|
417
417
|
readonly onlyNumericInput: boolean;
|
|
418
|
-
readonly size?: "small" | "
|
|
419
|
-
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
420
|
-
readonly placeholder?: string | undefined;
|
|
418
|
+
readonly size?: "small" | "medium" | "large" | undefined;
|
|
421
419
|
readonly defaultValue?: string | number | undefined;
|
|
420
|
+
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
422
421
|
readonly modelValue?: string | number | undefined;
|
|
422
|
+
readonly placeholder?: string | undefined;
|
|
423
423
|
readonly inputId?: string | undefined;
|
|
424
424
|
readonly minLength?: number | undefined;
|
|
425
425
|
readonly maxLength?: number | undefined;
|
|
@@ -434,7 +434,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
434
434
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
435
435
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
436
436
|
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, "
|
|
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" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
438
438
|
$attrs: import('../../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
439
439
|
$refs: {
|
|
440
440
|
[x: string]: unknown;
|
|
@@ -445,7 +445,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
445
445
|
$root: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
446
446
|
$parent: import('../../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
447
447
|
$host: Element | null;
|
|
448
|
-
$emit: ((event: "
|
|
448
|
+
$emit: ((event: "clear", evt?: Event | undefined) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
449
449
|
$el: any;
|
|
450
450
|
$options: import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
451
451
|
size: {
|
|
@@ -683,7 +683,7 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
683
683
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
684
684
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
685
685
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
686
|
-
}>, "
|
|
686
|
+
}>, "clear" | "blur" | "focus" | "color" | "variant" | "disabled" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
687
687
|
focus: () => void | undefined;
|
|
688
688
|
blur: () => void | undefined;
|
|
689
689
|
clear: () => void | undefined;
|