@opendesign-plus-test/components 0.0.1-rc.60 → 0.0.1-rc.62

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 (83) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +150 -150
  3. package/dist/components/activity/OActivityApproval.vue.d.ts +8 -8
  4. package/dist/components/activity/OActivityForm.vue.d.ts +6 -6
  5. package/dist/components/activity/OActivityMyCalendar.vue.d.ts +2 -2
  6. package/dist/components/activity/index.d.ts +14 -14
  7. package/dist/components/banner/OBanner.vue.d.ts +13 -0
  8. package/dist/components/banner/OBannerContent.vue.d.ts +7 -0
  9. package/dist/components/banner/index.d.ts +68 -0
  10. package/dist/components/banner/types.d.ts +31 -0
  11. package/dist/components/{OPlusConfigProvider.vue.d.ts → config-provider/OPlusConfigProvider.vue.d.ts} +2 -2
  12. package/dist/components/config-provider/index.d.ts +27 -0
  13. package/dist/components/cookie-notice/OCookieNotice.vue.d.ts +17 -0
  14. package/dist/components/cookie-notice/index.d.ts +53 -0
  15. package/dist/components/{OFooter.vue.d.ts → footer/OFooter.vue.d.ts} +3 -3
  16. package/dist/components/footer/index.d.ts +89 -0
  17. package/dist/components/header/OHeaderLanguageSwitcher.vue.d.ts +49 -0
  18. package/dist/components/{OHeaderSearch.vue.d.ts → header/OHeaderSearch.vue.d.ts} +145 -145
  19. package/dist/components/header/OHeaderSourceCode.vue.d.ts +18 -0
  20. package/dist/components/header/OHeaderTheme.vue.d.ts +25 -0
  21. package/dist/components/{OHeaderUser.vue.d.ts → header/OHeaderUser.vue.d.ts} +6 -6
  22. package/dist/components/header/index.d.ts +805 -1
  23. package/dist/components/header/types.d.ts +1 -0
  24. package/dist/components/meeting/OMeetingForm.vue.d.ts +4 -6
  25. package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +2 -2
  26. package/dist/components/meeting/OMeetingPlayback.vue.d.ts +4 -4
  27. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +1 -1
  28. package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
  29. package/dist/components/meeting/index.d.ts +7 -13
  30. package/dist/components/meeting/types.d.ts +2 -4
  31. package/dist/components/search/OSearchInput.vue.d.ts +34 -34
  32. package/dist/components/search/index.d.ts +22 -22
  33. package/dist/components/search/internal/SearchImageInput.vue.d.ts +21 -21
  34. package/dist/components/search/internal/SearchPanel.vue.d.ts +1 -1
  35. package/dist/components/{OSection.vue.d.ts → section/OSection.vue.d.ts} +4 -4
  36. package/dist/components/section/index.d.ts +47 -0
  37. package/dist/components.cjs.js +38 -38
  38. package/dist/components.css +1 -1
  39. package/dist/components.es.js +16822 -16615
  40. package/dist/index.d.ts +5 -14
  41. package/docs/design.md +2 -2
  42. package/package.json +3 -3
  43. package/scripts/generate-components-index.js +2 -44
  44. package/src/components/activity/OActivityMyCalendar.vue +1 -1
  45. package/src/components/banner/OBanner.vue +288 -0
  46. package/src/components/banner/OBannerContent.vue +175 -0
  47. package/src/components/banner/index.ts +18 -0
  48. package/src/components/banner/types.ts +39 -0
  49. package/src/components/common/ClientOnly.vue +13 -0
  50. package/src/components/{OPlusConfigProvider.vue → config-provider/OPlusConfigProvider.vue} +2 -2
  51. package/src/components/config-provider/index.ts +10 -0
  52. package/src/components/{OCookieNotice.vue → cookie-notice/OCookieNotice.vue} +1 -1
  53. package/src/components/cookie-notice/index.ts +10 -0
  54. package/src/components/element-plus/OElCookieNotice.vue +1 -1
  55. package/src/components/events/OEventsApply.vue +87 -1
  56. package/src/components/events/OEventsList.vue +47 -2
  57. package/src/components/{OFooter.vue → footer/OFooter.vue} +4 -4
  58. package/src/components/footer/index.ts +10 -0
  59. package/src/components/header/OHeaderLanguageSwitcher.vue +211 -0
  60. package/src/components/{OHeaderSearch.vue → header/OHeaderSearch.vue} +5 -5
  61. package/src/components/{OSourceCode.vue → header/OHeaderSourceCode.vue} +2 -2
  62. package/src/components/{OThemeSwitcher.vue → header/OHeaderTheme.vue} +4 -4
  63. package/src/components/{OHeaderUser.vue → header/OHeaderUser.vue} +4 -4
  64. package/src/components/header/index.ts +38 -1
  65. package/src/components/header/types.ts +1 -0
  66. package/src/components/meeting/OMeetingCalendar.vue +23 -4
  67. package/src/components/meeting/OMeetingForm.vue +21 -13
  68. package/src/components/meeting/OMeetingMyCalendar.vue +3 -9
  69. package/src/components/meeting/components/OMeetingCalendarList.vue +7 -2
  70. package/src/components/meeting/components/OMeetingDetail.vue +17 -3
  71. package/src/components/meeting/types.ts +2 -4
  72. package/src/components/search/OSearchInput.vue +1 -1
  73. package/src/components/{OSection.vue → section/OSection.vue} +1 -1
  74. package/src/components/section/index.ts +10 -0
  75. package/src/i18n/en.ts +1 -1
  76. package/src/i18n/zh.ts +3 -1
  77. package/src/index.ts +5 -38
  78. package/dist/components/OBanner.vue.d.ts +0 -11
  79. package/dist/components/OCookieNotice.vue.d.ts +0 -17
  80. package/dist/components/OSourceCode.vue.d.ts +0 -18
  81. package/dist/components/OThemeSwitcher.vue.d.ts +0 -25
  82. package/src/components/OBanner.vue +0 -398
  83. package/src/components/common/ClientOnlyWrapper.ts +0 -21
@@ -31,6 +31,7 @@ export interface NavItemT {
31
31
  withPicture: boolean;
32
32
  children: ChildrenItemT[];
33
33
  shortcut: ShortcutItemT[];
34
+ tag?: string;
34
35
  }
35
36
  export interface CodeItemT {
36
37
  label: string;
@@ -8,9 +8,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
8
8
  onCancel?: ((...args: any[]) => any) | undefined;
9
9
  onConfirm?: ((...args: any[]) => any) | undefined;
10
10
  }>, {
11
- isEdit: boolean;
12
11
  groupType: MeetingGroupType;
13
- isSub: boolean;
14
12
  showBtns: boolean;
15
13
  }, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
16
14
  formRef: ({
@@ -23,8 +21,8 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
23
21
  readonly hasRequired: boolean;
24
22
  readonly layout: "v" | "h" | "inline";
25
23
  readonly model?: Record<string, any> | undefined;
26
- readonly labelAlign?: "bottom" | "top" | "center" | undefined;
27
- readonly labelJustify?: "left" | "right" | "center" | undefined;
24
+ readonly labelAlign?: "top" | "center" | "bottom" | undefined;
25
+ readonly labelJustify?: "center" | "left" | "right" | undefined;
28
26
  readonly labelWidth?: string | undefined;
29
27
  readonly onClear?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
30
28
  readonly onReset?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
@@ -41,7 +39,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
41
39
  $root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
42
40
  $parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
43
41
  $host: Element | null;
44
- $emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void);
42
+ $emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void);
45
43
  $el: HTMLFormElement;
46
44
  $options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
47
45
  model: {
@@ -130,7 +128,7 @@ declare const _default: import('../../../vue/dist/vue.esm-bundler.js').DefineCom
130
128
  onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
131
129
  onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
132
130
  onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
133
- }>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
131
+ }>, "hasRequired" | "layout" | "validate" | "resetFields" | "clearValidate"> & {
134
132
  validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
135
133
  resetFields: (filed?: string | string[]) => void;
136
134
  clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
@@ -161,7 +161,7 @@ declare function __VLS_template(): {
161
161
  readonly duration: number;
162
162
  readonly disabledX: boolean;
163
163
  readonly disabledY: boolean;
164
- readonly showType: "never" | "always" | "hover" | "auto";
164
+ readonly showType: "auto" | "hover" | "always" | "never";
165
165
  readonly autoUpdateOnScrollSize: boolean;
166
166
  readonly wrapClass?: string | {
167
167
  [k: string]: boolean;
@@ -475,7 +475,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
475
475
  readonly duration: number;
476
476
  readonly disabledX: boolean;
477
477
  readonly disabledY: boolean;
478
- readonly showType: "never" | "always" | "hover" | "auto";
478
+ readonly showType: "auto" | "hover" | "always" | "never";
479
479
  readonly autoUpdateOnScrollSize: boolean;
480
480
  readonly wrapClass?: string | {
481
481
  [k: string]: boolean;
@@ -17,8 +17,8 @@ declare function __VLS_template(): {
17
17
  getInstance: (...args: any[]) => void;
18
18
  setTrackIdx: (...args: any[]) => void;
19
19
  }, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
20
- src: string;
21
20
  captions: CaptionItemT[];
21
+ src: string;
22
22
  vtt: string;
23
23
  }, 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, {
24
24
  P: {};
@@ -34,8 +34,8 @@ declare function __VLS_template(): {
34
34
  }>, {
35
35
  changeTime: (time: number) => void;
36
36
  }, {}, {}, {}, {
37
- src: string;
38
37
  captions: CaptionItemT[];
38
+ src: string;
39
39
  vtt: string;
40
40
  }> | null;
41
41
  };
@@ -63,8 +63,8 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
63
63
  getInstance: (...args: any[]) => void;
64
64
  setTrackIdx: (...args: any[]) => void;
65
65
  }, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
66
- src: string;
67
66
  captions: CaptionItemT[];
67
+ src: string;
68
68
  vtt: string;
69
69
  }, 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, {
70
70
  P: {};
@@ -80,8 +80,8 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
80
80
  }>, {
81
81
  changeTime: (time: number) => void;
82
82
  }, {}, {}, {}, {
83
- src: string;
84
83
  captions: CaptionItemT[];
84
+ src: string;
85
85
  vtt: string;
86
86
  }> | null;
87
87
  }, HTMLDivElement>;
@@ -295,7 +295,7 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
295
295
  menuRef: import('../../../../vue/dist/vue.esm-bundler.js').Ref<HTMLElement | undefined>;
296
296
  tagMenuRef: import('../../../../vue/dist/vue.esm-bundler.js').Ref<HTMLElement | undefined>;
297
297
  collapseItemRef: import('../../../../vue/dist/vue.esm-bundler.js').Ref<HTMLElement | undefined>;
298
- }, unknown, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("clear" | "change" | "blur" | "focus" | "update:modelValue" | "visible-change" | "remove-tag" | "popup-scroll")[], import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, {
298
+ }, unknown, {}, {}, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, ("change" | "blur" | "focus" | "clear" | "update:modelValue" | "visible-change" | "remove-tag" | "popup-scroll")[], import('../../../../vue/dist/vue.esm-bundler.js').PublicProps, {
299
299
  disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
300
300
  tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(NumberConstructor | StringConstructor)[], unknown, unknown>;
301
301
  offset: number;
@@ -10,8 +10,8 @@ declare const _default: import('../../../../vue/dist/vue.esm-bundler.js').Define
10
10
  onGetInstance?: ((...args: any[]) => any) | undefined;
11
11
  onSetTrackIdx?: ((...args: any[]) => any) | undefined;
12
12
  }>, {
13
- src: string;
14
13
  captions: import('..').CaptionItemT[];
14
+ src: string;
15
15
  vtt: string;
16
16
  }, {}, {}, {}, string, import('../../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
17
  export default _default;
@@ -189,9 +189,7 @@ declare const OMeetingForm: {
189
189
  cancel: (...args: any[]) => void;
190
190
  confirm: (...args: any[]) => void;
191
191
  }, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
192
- isEdit: boolean;
193
192
  groupType: import('./types').MeetingGroupType;
194
- isSub: boolean;
195
193
  showBtns: boolean;
196
194
  }, false, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, {
197
195
  formRef: ({
@@ -204,8 +202,8 @@ declare const OMeetingForm: {
204
202
  readonly hasRequired: boolean;
205
203
  readonly layout: "v" | "h" | "inline";
206
204
  readonly model?: Record<string, any> | undefined;
207
- readonly labelAlign?: "bottom" | "top" | "center" | undefined;
208
- readonly labelJustify?: "left" | "right" | "center" | undefined;
205
+ readonly labelAlign?: "top" | "center" | "bottom" | undefined;
206
+ readonly labelJustify?: "center" | "left" | "right" | undefined;
209
207
  readonly labelWidth?: string | undefined;
210
208
  readonly onClear?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
211
209
  readonly onReset?: ((filed?: string | string[] | undefined) => any) | undefined | undefined;
@@ -222,7 +220,7 @@ declare const OMeetingForm: {
222
220
  $root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
223
221
  $parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
224
222
  $host: Element | null;
225
- $emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void);
223
+ $emit: ((event: "clear", filed?: string | string[] | undefined) => void) & ((event: "validate", results: import('@opensig/opendesign').FieldResultT[]) => void) & ((event: "reset", filed?: string | string[] | undefined) => void) & ((event: "submit", results: import('@opensig/opendesign').FieldResultT[]) => void);
226
224
  $el: HTMLFormElement;
227
225
  $options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
228
226
  model: {
@@ -311,7 +309,7 @@ declare const OMeetingForm: {
311
309
  onReset?: ((filed?: string | string[] | undefined) => any) | undefined;
312
310
  onSubmit?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
313
311
  onValidate?: ((results: import('@opensig/opendesign').FieldResultT[]) => any) | undefined;
314
- }>, "validate" | "hasRequired" | "layout" | "resetFields" | "clearValidate"> & {
312
+ }>, "hasRequired" | "layout" | "validate" | "resetFields" | "clearValidate"> & {
315
313
  validate: (filed?: string | string[]) => Promise<import('@opensig/opendesign').FieldResultT[]>;
316
314
  resetFields: (filed?: string | string[]) => void;
317
315
  clearValidate: (filed?: string | string[], onClear?: (filed: import('@opensig/opendesign').FiledInfoT) => void) => void;
@@ -333,9 +331,7 @@ declare const OMeetingForm: {
333
331
  }>, {
334
332
  confirm: () => Promise<void>;
335
333
  }, {}, {}, {}, {
336
- isEdit: boolean;
337
334
  groupType: import('./types').MeetingGroupType;
338
- isSub: boolean;
339
335
  showBtns: boolean;
340
336
  }>;
341
337
  __isFragment?: never;
@@ -350,9 +346,7 @@ declare const OMeetingForm: {
350
346
  cancel: (...args: any[]) => void;
351
347
  confirm: (...args: any[]) => void;
352
348
  }, string, {
353
- isEdit: boolean;
354
349
  groupType: import('./types').MeetingGroupType;
355
- isSub: boolean;
356
350
  showBtns: boolean;
357
351
  }, {}, 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 & {
358
352
  install(app: App): void;
@@ -379,8 +373,8 @@ declare const OMeetingPlayback: {
379
373
  getInstance: (...args: any[]) => void;
380
374
  setTrackIdx: (...args: any[]) => void;
381
375
  }, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
382
- src: string;
383
376
  captions: import('./types').CaptionItemT[];
377
+ src: string;
384
378
  vtt: string;
385
379
  }, 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, {
386
380
  P: {};
@@ -396,8 +390,8 @@ declare const OMeetingPlayback: {
396
390
  }>, {
397
391
  changeTime: (time: number) => void;
398
392
  }, {}, {}, {}, {
399
- src: string;
400
393
  captions: import('./types').CaptionItemT[];
394
+ src: string;
401
395
  vtt: string;
402
396
  }> | null;
403
397
  }, HTMLDivElement, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, {
@@ -630,7 +624,7 @@ declare const OMeetingMyCalendar: {
630
624
  readonly duration: number;
631
625
  readonly disabledX: boolean;
632
626
  readonly disabledY: boolean;
633
- readonly showType: "never" | "always" | "hover" | "auto";
627
+ readonly showType: "auto" | "hover" | "always" | "never";
634
628
  readonly autoUpdateOnScrollSize: boolean;
635
629
  readonly wrapClass?: string | {
636
630
  [k: string]: boolean;
@@ -28,7 +28,7 @@ export interface OptionItemT {
28
28
  value: string | number;
29
29
  [key: string]: any;
30
30
  }
31
- export type PlatformT = 'welink' | 'tencent' | 'zoom' | 'WELINK' | 'TENCENT' | 'ZOOM';
31
+ export type PlatformT = 'welink' | 'tencent' | 'zoom' | 'WELINK' | 'TENCENT' | 'ZOOM' | 'WeLink' | 'Tencent';
32
32
  export declare enum MeetingGroupType {
33
33
  SIG = "sig",
34
34
  GROUP = "group"
@@ -50,7 +50,7 @@ export interface MeetingPostT {
50
50
  topic: string;
51
51
  sponsor?: string;
52
52
  group_name: string;
53
- platform: PlatformT;
53
+ platform: PlatformT | string;
54
54
  date: string;
55
55
  date_range?: string[];
56
56
  time: string;
@@ -74,8 +74,6 @@ export interface MeetingPostT {
74
74
  }
75
75
  export interface MeetingFormPropsT {
76
76
  data?: MeetingItemT;
77
- isSub?: boolean;
78
- isEdit?: boolean;
79
77
  subId?: string;
80
78
  createMeetingRequest: any;
81
79
  editMeetingRequest: any;
@@ -129,12 +129,12 @@ declare function __VLS_template(): {
129
129
  onlyNumericInput: boolean;
130
130
  }> & Omit<{
131
131
  readonly type: "text" | "password";
132
- readonly color: "primary" | "normal" | "success" | "warning" | "danger";
133
- readonly variant: "text" | "solid" | "outline";
132
+ readonly color: "danger" | "warning" | "success" | "primary" | "normal";
133
+ readonly variant: "solid" | "outline" | "text";
134
134
  readonly disabled: boolean;
135
- readonly clearable: boolean;
136
135
  readonly readonly: boolean;
137
- readonly showLength: "never" | "always" | "auto";
136
+ readonly clearable: boolean;
137
+ readonly showLength: "auto" | "always" | "never";
138
138
  readonly inputOnOutlimit: boolean;
139
139
  readonly showPasswordEvent: "click" | "pointerdown";
140
140
  readonly autoWidth: boolean;
@@ -142,9 +142,9 @@ declare function __VLS_template(): {
142
142
  readonly onlyNumericInput: boolean;
143
143
  readonly size?: "small" | "large" | "medium" | undefined;
144
144
  readonly round?: import('@opensig/opendesign').RoundT | undefined;
145
- readonly placeholder?: string | undefined;
146
- readonly defaultValue?: string | number | undefined;
147
145
  readonly modelValue?: string | number | undefined;
146
+ readonly defaultValue?: 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, "type" | "color" | "variant" | "disabled" | "readonly" | "clearable" | "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: "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);
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
+ }>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
412
412
  focus: () => void | undefined;
413
413
  blur: () => void | undefined;
414
414
  clear: () => void | undefined;
@@ -456,13 +456,13 @@ declare function __VLS_template(): {
456
456
  }, string, {
457
457
  size: "small" | "medium" | "large";
458
458
  disabled: boolean;
459
- preview: boolean;
460
459
  modelValue: string;
460
+ clearable: boolean;
461
+ expanded: boolean;
462
+ preview: boolean;
461
463
  imageUrl: string;
462
464
  enableImageSearch: boolean;
463
465
  maxImageSize: number;
464
- expanded: boolean;
465
- clearable: boolean;
466
466
  showSuffix: boolean;
467
467
  inlineThumbnail: boolean;
468
468
  allowedImageTypes: string[];
@@ -489,19 +489,19 @@ declare function __VLS_template(): {
489
489
  } & Readonly<{
490
490
  size: "small" | "medium" | "large";
491
491
  disabled: boolean;
492
- preview: boolean;
493
492
  modelValue: string;
493
+ clearable: boolean;
494
+ expanded: boolean;
495
+ preview: boolean;
494
496
  imageUrl: string;
495
497
  enableImageSearch: boolean;
496
498
  maxImageSize: number;
497
- expanded: boolean;
498
- clearable: boolean;
499
499
  showSuffix: boolean;
500
500
  inlineThumbnail: 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" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
505
505
  focus: () => void | undefined;
506
506
  blur: () => void | undefined;
507
507
  awaitUpload: () => Promise<void>;
@@ -538,10 +538,11 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
538
538
  }>, {
539
539
  size: "small" | "medium" | "large";
540
540
  modelValue: string;
541
+ clearable: boolean;
542
+ debounce: number;
541
543
  imageUrl: string;
542
544
  enableImageSearch: boolean;
543
545
  maxImageSize: number;
544
- clearable: boolean;
545
546
  onestepItems: OSearchRecommendItem[];
546
547
  suggestItems: OSearchRecommendItem[];
547
548
  historyItems: string[];
@@ -551,7 +552,6 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
551
552
  storageKey: string;
552
553
  storeHistory: boolean;
553
554
  maxHistoryCount: number;
554
- debounce: number;
555
555
  autoSaveHistory: boolean;
556
556
  enableHistory: boolean;
557
557
  suggestList: string[];
@@ -604,12 +604,12 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
604
604
  onlyNumericInput: boolean;
605
605
  }> & Omit<{
606
606
  readonly type: "text" | "password";
607
- readonly color: "primary" | "normal" | "success" | "warning" | "danger";
608
- readonly variant: "text" | "solid" | "outline";
607
+ readonly color: "danger" | "warning" | "success" | "primary" | "normal";
608
+ readonly variant: "solid" | "outline" | "text";
609
609
  readonly disabled: boolean;
610
- readonly clearable: boolean;
611
610
  readonly readonly: boolean;
612
- readonly showLength: "never" | "always" | "auto";
611
+ readonly clearable: boolean;
612
+ readonly showLength: "auto" | "always" | "never";
613
613
  readonly inputOnOutlimit: boolean;
614
614
  readonly showPasswordEvent: "click" | "pointerdown";
615
615
  readonly autoWidth: boolean;
@@ -617,9 +617,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
617
617
  readonly onlyNumericInput: boolean;
618
618
  readonly size?: "small" | "large" | "medium" | undefined;
619
619
  readonly round?: import('@opensig/opendesign').RoundT | undefined;
620
- readonly placeholder?: string | undefined;
621
- readonly defaultValue?: string | number | undefined;
622
620
  readonly modelValue?: string | number | undefined;
621
+ readonly defaultValue?: 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, "type" | "color" | "variant" | "disabled" | "readonly" | "clearable" | "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: "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);
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
+ }>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
887
887
  focus: () => void | undefined;
888
888
  blur: () => void | undefined;
889
889
  clear: () => void | undefined;
@@ -931,13 +931,13 @@ 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;
935
+ clearable: boolean;
936
+ expanded: boolean;
937
+ preview: boolean;
936
938
  imageUrl: string;
937
939
  enableImageSearch: boolean;
938
940
  maxImageSize: number;
939
- expanded: boolean;
940
- clearable: boolean;
941
941
  showSuffix: boolean;
942
942
  inlineThumbnail: boolean;
943
943
  allowedImageTypes: string[];
@@ -964,19 +964,19 @@ 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;
968
+ clearable: boolean;
969
+ expanded: boolean;
970
+ preview: boolean;
969
971
  imageUrl: string;
970
972
  enableImageSearch: boolean;
971
973
  maxImageSize: number;
972
- expanded: boolean;
973
- clearable: boolean;
974
974
  showSuffix: boolean;
975
975
  inlineThumbnail: 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" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
980
980
  focus: () => void | undefined;
981
981
  blur: () => void | undefined;
982
982
  awaitUpload: () => Promise<void>;
@@ -14,10 +14,11 @@ declare const OSearchInput: {
14
14
  }, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
15
15
  size: "small" | "medium" | "large";
16
16
  modelValue: string;
17
+ clearable: boolean;
18
+ debounce: number;
17
19
  imageUrl: string;
18
20
  enableImageSearch: boolean;
19
21
  maxImageSize: number;
20
- clearable: boolean;
21
22
  onestepItems: import('./types').OSearchRecommendItem[];
22
23
  suggestItems: import('./types').OSearchRecommendItem[];
23
24
  historyItems: string[];
@@ -27,7 +28,6 @@ declare const OSearchInput: {
27
28
  storageKey: string;
28
29
  storeHistory: boolean;
29
30
  maxHistoryCount: number;
30
- debounce: number;
31
31
  autoSaveHistory: boolean;
32
32
  enableHistory: boolean;
33
33
  suggestList: string[];
@@ -80,12 +80,12 @@ declare const OSearchInput: {
80
80
  onlyNumericInput: boolean;
81
81
  }> & Omit<{
82
82
  readonly type: "text" | "password";
83
- readonly color: "primary" | "normal" | "success" | "warning" | "danger";
84
- readonly variant: "text" | "solid" | "outline";
83
+ readonly color: "danger" | "warning" | "success" | "primary" | "normal";
84
+ readonly variant: "solid" | "outline" | "text";
85
85
  readonly disabled: boolean;
86
- readonly clearable: boolean;
87
86
  readonly readonly: boolean;
88
- readonly showLength: "never" | "always" | "auto";
87
+ readonly clearable: boolean;
88
+ readonly showLength: "auto" | "always" | "never";
89
89
  readonly inputOnOutlimit: boolean;
90
90
  readonly showPasswordEvent: "click" | "pointerdown";
91
91
  readonly autoWidth: boolean;
@@ -93,9 +93,9 @@ declare const OSearchInput: {
93
93
  readonly onlyNumericInput: boolean;
94
94
  readonly size?: "small" | "large" | "medium" | undefined;
95
95
  readonly round?: import('@opensig/opendesign').RoundT | undefined;
96
- readonly placeholder?: string | undefined;
97
- readonly defaultValue?: string | number | undefined;
98
96
  readonly modelValue?: string | number | undefined;
97
+ readonly defaultValue?: 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, "type" | "color" | "variant" | "disabled" | "readonly" | "clearable" | "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: "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);
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
+ }>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
363
363
  focus: () => void | undefined;
364
364
  blur: () => void | undefined;
365
365
  clear: () => void | undefined;
@@ -407,13 +407,13 @@ declare const OSearchInput: {
407
407
  }, string, {
408
408
  size: "small" | "medium" | "large";
409
409
  disabled: boolean;
410
- preview: boolean;
411
410
  modelValue: string;
411
+ clearable: boolean;
412
+ expanded: boolean;
413
+ preview: boolean;
412
414
  imageUrl: string;
413
415
  enableImageSearch: boolean;
414
416
  maxImageSize: number;
415
- expanded: boolean;
416
- clearable: boolean;
417
417
  showSuffix: boolean;
418
418
  inlineThumbnail: boolean;
419
419
  allowedImageTypes: string[];
@@ -440,19 +440,19 @@ declare const OSearchInput: {
440
440
  } & Readonly<{
441
441
  size: "small" | "medium" | "large";
442
442
  disabled: boolean;
443
- preview: boolean;
444
443
  modelValue: string;
444
+ clearable: boolean;
445
+ expanded: boolean;
446
+ preview: boolean;
445
447
  imageUrl: string;
446
448
  enableImageSearch: boolean;
447
449
  maxImageSize: number;
448
- expanded: boolean;
449
- clearable: boolean;
450
450
  showSuffix: boolean;
451
451
  inlineThumbnail: 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" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
456
456
  focus: () => void | undefined;
457
457
  blur: () => void | undefined;
458
458
  awaitUpload: () => Promise<void>;
@@ -488,10 +488,11 @@ declare const OSearchInput: {
488
488
  }, {}, {}, {}, {
489
489
  size: "small" | "medium" | "large";
490
490
  modelValue: string;
491
+ clearable: boolean;
492
+ debounce: number;
491
493
  imageUrl: string;
492
494
  enableImageSearch: boolean;
493
495
  maxImageSize: number;
494
- clearable: boolean;
495
496
  onestepItems: import('./types').OSearchRecommendItem[];
496
497
  suggestItems: import('./types').OSearchRecommendItem[];
497
498
  historyItems: string[];
@@ -501,7 +502,6 @@ declare const OSearchInput: {
501
502
  storageKey: string;
502
503
  storeHistory: boolean;
503
504
  maxHistoryCount: number;
504
- debounce: number;
505
505
  autoSaveHistory: boolean;
506
506
  enableHistory: boolean;
507
507
  suggestList: string[];
@@ -526,10 +526,11 @@ declare const OSearchInput: {
526
526
  }, string, {
527
527
  size: "small" | "medium" | "large";
528
528
  modelValue: string;
529
+ clearable: boolean;
530
+ debounce: number;
529
531
  imageUrl: string;
530
532
  enableImageSearch: boolean;
531
533
  maxImageSize: number;
532
- clearable: boolean;
533
534
  onestepItems: import('./types').OSearchRecommendItem[];
534
535
  suggestItems: import('./types').OSearchRecommendItem[];
535
536
  historyItems: string[];
@@ -539,7 +540,6 @@ declare const OSearchInput: {
539
540
  storageKey: string;
540
541
  storeHistory: boolean;
541
542
  maxHistoryCount: number;
542
- debounce: number;
543
543
  autoSaveHistory: boolean;
544
544
  enableHistory: boolean;
545
545
  suggestList: string[];