@opendesign-plus-test/components 0.0.1-rc.59 → 0.0.1-rc.60
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/OBanner.vue.d.ts +11 -0
- package/dist/components/OHeaderSearch.vue.d.ts +22 -22
- package/dist/components/OHeaderUser.vue.d.ts +1 -1
- 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/header/types.d.ts +0 -1
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMeetingForm.vue.d.ts +2 -0
- 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 +9 -3
- package/dist/components/meeting/types.d.ts +4 -2
- 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 +8558 -8725
- package/dist/index.d.ts +2 -3
- package/package.json +3 -3
- package/scripts/generate-components-index.js +1 -1
- package/src/components/OBanner.vue +398 -0
- package/src/components/OHeaderSearch.vue +1 -1
- package/src/components/activity/OActivityMyCalendar.vue +1 -1
- package/src/components/header/types.ts +0 -1
- package/src/components/meeting/OMeetingCalendar.vue +4 -4
- package/src/components/meeting/OMeetingForm.vue +13 -21
- package/src/components/meeting/components/OMeetingCalendarList.vue +2 -6
- package/src/components/meeting/components/OMeetingDetail.vue +3 -17
- package/src/components/meeting/types.ts +4 -2
- package/src/components/search/OSearchInput.vue +2 -2
- package/src/i18n/en.ts +1 -1
- package/src/i18n/zh.ts +1 -1
- package/src/index.ts +3 -4
- package/dist/components/OLanguageSwitcher.vue.d.ts +0 -49
- package/dist/components/banner/OBanner.vue.d.ts +0 -13
- package/dist/components/banner/OBannerContent.vue.d.ts +0 -7
- package/dist/components/banner/index.d.ts +0 -68
- package/dist/components/banner/types.d.ts +0 -31
- package/src/components/OLanguageSwitcher.vue +0 -211
- package/src/components/banner/OBanner.vue +0 -288
- package/src/components/banner/OBannerContent.vue +0 -175
- package/src/components/banner/index.ts +0 -18
- package/src/components/banner/types.ts +0 -39
|
@@ -52,23 +52,23 @@ declare function __VLS_template(): {
|
|
|
52
52
|
passwordPlaceholder: string;
|
|
53
53
|
onlyNumericInput: boolean;
|
|
54
54
|
}> & Omit<{
|
|
55
|
+
readonly type: "text" | "password";
|
|
55
56
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
56
57
|
readonly variant: "text" | "solid" | "outline";
|
|
57
58
|
readonly disabled: boolean;
|
|
58
|
-
readonly type: "text" | "password";
|
|
59
59
|
readonly clearable: boolean;
|
|
60
60
|
readonly readonly: boolean;
|
|
61
|
-
readonly showLength: "
|
|
61
|
+
readonly showLength: "never" | "always" | "auto";
|
|
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 defaultValue?: string | number | undefined;
|
|
67
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
69
68
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
70
|
-
readonly modelValue?: string | number | undefined;
|
|
71
69
|
readonly placeholder?: string | undefined;
|
|
70
|
+
readonly defaultValue?: string | number | undefined;
|
|
71
|
+
readonly modelValue?: string | number | 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, "type" | "color" | "variant" | "disabled" | "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: "input", evt: Event, value: string) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => 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
|
+
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "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,6 +375,7 @@ 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;
|
|
378
379
|
modelValue: string;
|
|
379
380
|
imageUrl: string;
|
|
380
381
|
enableImageSearch: boolean;
|
|
@@ -383,7 +384,6 @@ declare const __VLS_component: import('../../../../vue/dist/vue.esm-bundler.js')
|
|
|
383
384
|
clearable: boolean;
|
|
384
385
|
showSuffix: boolean;
|
|
385
386
|
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";
|
|
406
407
|
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
407
408
|
readonly variant: "text" | "solid" | "outline";
|
|
408
409
|
readonly disabled: boolean;
|
|
409
|
-
readonly type: "text" | "password";
|
|
410
410
|
readonly clearable: boolean;
|
|
411
411
|
readonly readonly: boolean;
|
|
412
|
-
readonly showLength: "
|
|
412
|
+
readonly showLength: "never" | "always" | "auto";
|
|
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 defaultValue?: string | number | undefined;
|
|
418
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
420
419
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
421
|
-
readonly modelValue?: string | number | undefined;
|
|
422
420
|
readonly placeholder?: string | undefined;
|
|
421
|
+
readonly defaultValue?: string | number | undefined;
|
|
422
|
+
readonly modelValue?: string | number | 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, "type" | "color" | "variant" | "disabled" | "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: "input", evt: Event, value: string) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => 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
|
+
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "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;
|