@opendesign-plus-test/components 0.0.1-rc.56 → 0.0.1-rc.58

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.
Files changed (47) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +72 -69
  3. package/dist/components/OHeaderSearch.vue.d.ts +22 -22
  4. package/dist/components/OHeaderUser.vue.d.ts +1 -1
  5. package/dist/components/OLanguageSwitcher.vue.d.ts +49 -0
  6. package/dist/components/OThemeSwitcher.vue.d.ts +1 -1
  7. package/dist/components/activity/OActivityMyCalendar.vue.d.ts +4 -4
  8. package/dist/components/activity/index.d.ts +2 -2
  9. package/dist/components/banner/OBanner.vue.d.ts +13 -0
  10. package/dist/components/banner/OBannerContent.vue.d.ts +7 -0
  11. package/dist/components/banner/index.d.ts +68 -0
  12. package/dist/components/banner/types.d.ts +31 -0
  13. package/dist/components/header/types.d.ts +1 -0
  14. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
  15. package/dist/components/meeting/OMeetingForm.vue.d.ts +0 -2
  16. package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +4 -4
  17. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +1 -1
  18. package/dist/components/meeting/index.d.ts +3 -9
  19. package/dist/components/meeting/types.d.ts +0 -2
  20. package/dist/components/search/OSearchInput.vue.d.ts +22 -22
  21. package/dist/components/search/index.d.ts +11 -11
  22. package/dist/components/search/internal/SearchImageInput.vue.d.ts +17 -17
  23. package/dist/components.cjs.js +39 -39
  24. package/dist/components.css +1 -1
  25. package/dist/components.es.js +8470 -8296
  26. package/dist/index.d.ts +3 -2
  27. package/package.json +1 -1
  28. package/scripts/generate-components-index.js +1 -1
  29. package/src/components/OLanguageSwitcher.vue +211 -0
  30. package/src/components/OPlusConfigProvider.vue +2 -2
  31. package/src/components/activity/OActivityMyCalendar.vue +1 -1
  32. package/src/components/banner/OBanner.vue +288 -0
  33. package/src/components/banner/OBannerContent.vue +175 -0
  34. package/src/components/banner/index.ts +18 -0
  35. package/src/components/banner/types.ts +39 -0
  36. package/src/components/header/OHeader.vue +1 -1
  37. package/src/components/header/types.ts +1 -0
  38. package/src/components/meeting/OMeetingCalendar.vue +4 -4
  39. package/src/components/meeting/OMeetingForm.vue +30 -14
  40. package/src/components/meeting/components/OMeetingCalendarList.vue +6 -2
  41. package/src/components/meeting/components/OMeetingDetail.vue +17 -3
  42. package/src/components/meeting/types.ts +0 -2
  43. package/src/i18n/en.ts +4 -2
  44. package/src/i18n/zh.ts +4 -3
  45. package/src/index.ts +4 -3
  46. package/dist/components/OBanner.vue.d.ts +0 -11
  47. package/src/components/OBanner.vue +0 -398
@@ -128,23 +128,23 @@ declare function __VLS_template(): {
128
128
  passwordPlaceholder: string;
129
129
  onlyNumericInput: boolean;
130
130
  }> & Omit<{
131
- readonly type: "text" | "password";
132
131
  readonly color: "primary" | "normal" | "success" | "warning" | "danger";
133
132
  readonly variant: "text" | "solid" | "outline";
134
133
  readonly disabled: boolean;
134
+ readonly type: "text" | "password";
135
135
  readonly clearable: boolean;
136
136
  readonly readonly: boolean;
137
- readonly showLength: "never" | "always" | "auto";
137
+ readonly showLength: "auto" | "always" | "never";
138
138
  readonly inputOnOutlimit: boolean;
139
139
  readonly showPasswordEvent: "click" | "pointerdown";
140
140
  readonly autoWidth: boolean;
141
141
  readonly passwordPlaceholder: string;
142
142
  readonly onlyNumericInput: boolean;
143
- readonly size?: "small" | "large" | "medium" | undefined;
144
- readonly round?: import('@opensig/opendesign').RoundT | undefined;
145
- readonly placeholder?: string | undefined;
143
+ readonly size?: "small" | "medium" | "large" | undefined;
146
144
  readonly defaultValue?: string | number | undefined;
145
+ readonly round?: import('@opensig/opendesign').RoundT | undefined;
147
146
  readonly modelValue?: string | number | undefined;
147
+ readonly placeholder?: string | undefined;
148
148
  readonly inputId?: string | undefined;
149
149
  readonly minLength?: number | undefined;
150
150
  readonly maxLength?: number | undefined;
@@ -159,7 +159,7 @@ declare function __VLS_template(): {
159
159
  readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
160
160
  readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
161
161
  readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
162
- } & 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">;
162
+ } & 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">;
163
163
  $attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
164
164
  $refs: {
165
165
  [x: string]: unknown;
@@ -170,7 +170,7 @@ declare function __VLS_template(): {
170
170
  $root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
171
171
  $parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
172
172
  $host: Element | null;
173
- $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);
173
+ $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);
174
174
  $el: any;
175
175
  $options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
176
176
  size: {
@@ -408,7 +408,7 @@ declare function __VLS_template(): {
408
408
  onFocus?: ((evt: FocusEvent) => any) | undefined;
409
409
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
410
410
  onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
411
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
411
+ }>, "clear" | "blur" | "focus" | "color" | "variant" | "disabled" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
412
412
  focus: () => void | undefined;
413
413
  blur: () => void | undefined;
414
414
  clear: () => void | undefined;
@@ -456,7 +456,6 @@ declare function __VLS_template(): {
456
456
  }, string, {
457
457
  size: "small" | "medium" | "large";
458
458
  disabled: boolean;
459
- preview: boolean;
460
459
  modelValue: string;
461
460
  imageUrl: string;
462
461
  enableImageSearch: boolean;
@@ -465,6 +464,7 @@ declare function __VLS_template(): {
465
464
  clearable: boolean;
466
465
  showSuffix: boolean;
467
466
  inlineThumbnail: boolean;
467
+ preview: boolean;
468
468
  allowedImageTypes: string[];
469
469
  }, {}, 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> & {
470
470
  beforeCreate?: (() => void) | (() => void)[];
@@ -489,7 +489,6 @@ declare function __VLS_template(): {
489
489
  } & Readonly<{
490
490
  size: "small" | "medium" | "large";
491
491
  disabled: boolean;
492
- preview: boolean;
493
492
  modelValue: string;
494
493
  imageUrl: string;
495
494
  enableImageSearch: boolean;
@@ -498,10 +497,11 @@ declare function __VLS_template(): {
498
497
  clearable: boolean;
499
498
  showSuffix: boolean;
500
499
  inlineThumbnail: boolean;
500
+ preview: boolean;
501
501
  allowedImageTypes: string[];
502
502
  }> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
503
503
  [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
504
- }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "preview" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
504
+ }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "preview" | "allowedImageTypes")> & {
505
505
  focus: () => void | undefined;
506
506
  blur: () => void | undefined;
507
507
  awaitUpload: () => Promise<void>;
@@ -603,23 +603,23 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
603
603
  passwordPlaceholder: string;
604
604
  onlyNumericInput: boolean;
605
605
  }> & Omit<{
606
- readonly type: "text" | "password";
607
606
  readonly color: "primary" | "normal" | "success" | "warning" | "danger";
608
607
  readonly variant: "text" | "solid" | "outline";
609
608
  readonly disabled: boolean;
609
+ readonly type: "text" | "password";
610
610
  readonly clearable: boolean;
611
611
  readonly readonly: boolean;
612
- readonly showLength: "never" | "always" | "auto";
612
+ readonly showLength: "auto" | "always" | "never";
613
613
  readonly inputOnOutlimit: boolean;
614
614
  readonly showPasswordEvent: "click" | "pointerdown";
615
615
  readonly autoWidth: boolean;
616
616
  readonly passwordPlaceholder: string;
617
617
  readonly onlyNumericInput: boolean;
618
- readonly size?: "small" | "large" | "medium" | undefined;
619
- readonly round?: import('@opensig/opendesign').RoundT | undefined;
620
- readonly placeholder?: string | undefined;
618
+ readonly size?: "small" | "medium" | "large" | undefined;
621
619
  readonly defaultValue?: string | number | undefined;
620
+ readonly round?: import('@opensig/opendesign').RoundT | undefined;
622
621
  readonly modelValue?: string | number | undefined;
622
+ readonly placeholder?: string | undefined;
623
623
  readonly inputId?: string | undefined;
624
624
  readonly minLength?: number | undefined;
625
625
  readonly maxLength?: number | undefined;
@@ -634,7 +634,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
634
634
  readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
635
635
  readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
636
636
  readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
637
- } & 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">;
637
+ } & 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">;
638
638
  $attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
639
639
  $refs: {
640
640
  [x: string]: unknown;
@@ -645,7 +645,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
645
645
  $root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
646
646
  $parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
647
647
  $host: Element | null;
648
- $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);
648
+ $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);
649
649
  $el: any;
650
650
  $options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
651
651
  size: {
@@ -883,7 +883,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
883
883
  onFocus?: ((evt: FocusEvent) => any) | undefined;
884
884
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
885
885
  onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
886
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
886
+ }>, "clear" | "blur" | "focus" | "color" | "variant" | "disabled" | "type" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
887
887
  focus: () => void | undefined;
888
888
  blur: () => void | undefined;
889
889
  clear: () => void | undefined;
@@ -931,7 +931,6 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
931
931
  }, string, {
932
932
  size: "small" | "medium" | "large";
933
933
  disabled: boolean;
934
- preview: boolean;
935
934
  modelValue: string;
936
935
  imageUrl: string;
937
936
  enableImageSearch: boolean;
@@ -940,6 +939,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
940
939
  clearable: boolean;
941
940
  showSuffix: boolean;
942
941
  inlineThumbnail: boolean;
942
+ preview: boolean;
943
943
  allowedImageTypes: string[];
944
944
  }, {}, 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> & {
945
945
  beforeCreate?: (() => void) | (() => void)[];
@@ -964,7 +964,6 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
964
964
  } & Readonly<{
965
965
  size: "small" | "medium" | "large";
966
966
  disabled: boolean;
967
- preview: boolean;
968
967
  modelValue: string;
969
968
  imageUrl: string;
970
969
  enableImageSearch: boolean;
@@ -973,10 +972,11 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
973
972
  clearable: boolean;
974
973
  showSuffix: boolean;
975
974
  inlineThumbnail: boolean;
975
+ preview: boolean;
976
976
  allowedImageTypes: string[];
977
977
  }> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
978
978
  [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
979
- }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "preview" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
979
+ }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "preview" | "allowedImageTypes")> & {
980
980
  focus: () => void | undefined;
981
981
  blur: () => void | undefined;
982
982
  awaitUpload: () => Promise<void>;
@@ -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: "never" | "always" | "auto";
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" | "large" | "medium" | undefined;
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, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
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: "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);
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
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
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" | "preview" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
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: "never" | "always" | "auto";
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" | "large" | "medium" | undefined;
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, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
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: "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);
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
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
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: "never" | "always" | "auto";
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" | "large" | "medium" | undefined;
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, "type" | "color" | "variant" | "disabled" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
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: "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);
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
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
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;