@opendesign-plus-test/components 0.0.1-rc.42 → 0.0.1-rc.45

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 (109) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +132 -112
  3. package/dist/components/OHeaderSearch.vue.d.ts +824 -506
  4. package/dist/components/OSourceCode.vue.d.ts +4 -6
  5. package/dist/components/activity/OActivityApproval.vue.d.ts +6 -10
  6. package/dist/components/activity/OActivityForm.vue.d.ts +3 -5
  7. package/dist/components/activity/OMyActivityCalendar.vue.d.ts +100 -46
  8. package/dist/components/activity/index.d.ts +56 -33
  9. package/dist/components/activity/types.d.ts +8 -1
  10. package/dist/components/events/config.d.ts +5 -18
  11. package/dist/components/events/types.d.ts +4 -1
  12. package/dist/components/header/OHeaderMobile.vue.d.ts +18 -11
  13. package/dist/components/header/components/HeaderNavMobile.vue.d.ts +4 -1
  14. package/dist/components/header/index.d.ts +12 -5
  15. package/dist/components/header/types.d.ts +4 -0
  16. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +8 -12
  17. package/dist/components/meeting/OMeetingForm.vue.d.ts +3 -5
  18. package/dist/components/meeting/OMeetingPlayback.vue.d.ts +45 -0
  19. package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +100 -46
  20. package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -1
  21. package/dist/components/meeting/index.d.ts +817 -0
  22. package/dist/components/meeting/types.d.ts +82 -17
  23. package/dist/components/meeting/utils.d.ts +1 -1
  24. package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
  25. package/dist/components/search/composables/useImageSearch.d.ts +48 -0
  26. package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
  27. package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
  28. package/dist/components/search/index.d.ts +590 -0
  29. package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
  30. package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
  31. package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
  32. package/dist/components/search/types.d.ts +20 -0
  33. package/dist/components.cjs.js +43 -43
  34. package/dist/components.css +1 -1
  35. package/dist/components.es.js +11681 -10636
  36. package/dist/index.d.ts +1 -0
  37. package/package.json +3 -3
  38. package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
  39. package/src/assets/svg-icons/icon-delete.svg +5 -1
  40. package/src/assets/svg-icons/icon-image-close.svg +4 -0
  41. package/src/assets/svg-icons/icon-image-upload.svg +3 -0
  42. package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
  43. package/src/assets/svg-icons/icon-refresh.svg +3 -0
  44. package/src/components/OBanner.vue +18 -18
  45. package/src/components/OCookieNotice.vue +21 -21
  46. package/src/components/OFooter.vue +18 -17
  47. package/src/components/OHeaderSearch.vue +402 -420
  48. package/src/components/OHeaderUser.vue +3 -2
  49. package/src/components/OSection.vue +4 -4
  50. package/src/components/OSourceCode.vue +8 -10
  51. package/src/components/activity/OActivityApproval.vue +32 -32
  52. package/src/components/activity/OActivityForm.vue +5 -5
  53. package/src/components/activity/OMyActivityCalendar.vue +66 -50
  54. package/src/components/activity/config.ts +1 -1
  55. package/src/components/activity/types.ts +8 -1
  56. package/src/components/common/ContentWrapper.vue +3 -3
  57. package/src/components/common/MoreText.vue +1 -1
  58. package/src/components/common/ThFilter.vue +7 -7
  59. package/src/components/element-plus/OElCookieNotice.vue +27 -27
  60. package/src/components/events/OEventsApply.vue +44 -44
  61. package/src/components/events/OEventsCalendar.vue +14 -14
  62. package/src/components/events/OEventsList.vue +53 -26
  63. package/src/components/events/config.ts +1 -1
  64. package/src/components/events/types.ts +4 -1
  65. package/src/components/header/OHeader.vue +2 -2
  66. package/src/components/header/OHeaderMobile.vue +8 -1
  67. package/src/components/header/components/HeaderContent.vue +67 -63
  68. package/src/components/header/components/HeaderNav.vue +4 -4
  69. package/src/components/header/components/HeaderNavMobile.vue +8 -5
  70. package/src/components/header/types.ts +4 -0
  71. package/src/components/meeting/OMeetingCalendar.vue +66 -54
  72. package/src/components/meeting/OMeetingForm.vue +70 -51
  73. package/src/components/meeting/OMeetingPlayback.vue +8 -8
  74. package/src/components/meeting/OMyMeetingCalendar.vue +56 -45
  75. package/src/components/meeting/OSigMeetingCalendar.vue +31 -28
  76. package/src/components/meeting/components/OMeetingCalendarList.vue +31 -26
  77. package/src/components/meeting/components/OMeetingCalendarSelector.vue +10 -6
  78. package/src/components/meeting/components/OMeetingDetail.vue +32 -18
  79. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
  80. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +12 -12
  81. package/src/components/meeting/components/OSigMeetingAside.vue +8 -9
  82. package/src/components/meeting/types.ts +88 -17
  83. package/src/components/search/OSearchInput.vue +463 -0
  84. package/src/components/search/composables/useImageSearch.ts +157 -0
  85. package/src/components/search/composables/useKeywordHighlight.ts +30 -0
  86. package/src/components/search/composables/useSearchHistory.ts +75 -0
  87. package/src/components/search/index.ts +23 -0
  88. package/src/components/search/internal/HighlightText.vue +37 -0
  89. package/src/components/search/internal/SearchImageInput.vue +488 -0
  90. package/src/components/search/internal/SearchPanel.vue +430 -0
  91. package/src/components/search/types.ts +25 -0
  92. package/src/draft/Banner.vue +6 -6
  93. package/src/draft/ButtonCards.vue +1 -1
  94. package/src/draft/Feature.vue +6 -6
  95. package/src/draft/Footer.vue +29 -22
  96. package/src/draft/HorizontalAnchor.vue +4 -4
  97. package/src/draft/ItemSwiper.vue +2 -2
  98. package/src/draft/Logo.vue +3 -3
  99. package/src/draft/LogoCard.vue +2 -2
  100. package/src/draft/MultiCard.vue +1 -1
  101. package/src/draft/MultiIconCard.vue +1 -1
  102. package/src/draft/OInfoCard.vue +4 -4
  103. package/src/draft/Section.vue +4 -4
  104. package/src/draft/SingleTabCard.vue +1 -1
  105. package/src/draft/SliderCard.vue +4 -3
  106. package/src/i18n/en.ts +10 -0
  107. package/src/i18n/zh.ts +10 -0
  108. package/src/index.ts +1 -0
  109. package/vite.config.ts +4 -3
@@ -1,4 +1,6 @@
1
+ import { OSearchRecommendItem, OSearchUploadImageFn } from './search/types';
1
2
  export interface OHeaderSearchPropsT {
3
+ /** ---- Backward-compatible props ---- */
2
4
  modelValue?: string;
3
5
  placeholder?: string;
4
6
  expandedPlaceholder?: string;
@@ -11,100 +13,431 @@ export interface OHeaderSearchPropsT {
11
13
  storageKey?: string;
12
14
  hotItems?: string[];
13
15
  hotTitle?: string;
16
+ /** Legacy plain-string recommend list. Shown when input is empty. */
14
17
  recommendItems?: string[];
15
18
  searchUrl?: string;
16
19
  searchUrlOpenBlank?: boolean;
17
20
  searchTextMobile?: string;
18
- }
19
- export interface OHeaderSearchEmitsT {
20
- (e: 'update:modelValue', value: string): void;
21
- (e: 'update:historyItems', value: string[]): void;
22
- (e: 'clear'): void;
23
- (e: 'search', value: string): void;
24
- (e: 'delete-history', value: string[]): void;
25
- (e: 'delete-history-item', value: string): void;
21
+ imagePlaceholder?: string;
22
+ enableImageSearch?: boolean;
23
+ imageUrl?: string;
24
+ uploadImage?: OSearchUploadImageFn;
25
+ maxImageSize?: number;
26
+ imageUploadTooltip?: string;
27
+ suggestItems?: OSearchRecommendItem[];
28
+ onestepItems?: OSearchRecommendItem[];
29
+ suggestTitle?: string;
30
+ onestepTitle?: string;
31
+ noDataText?: string;
32
+ highlightKeyword?: boolean;
33
+ /** Debounce ms for the `input` event */
34
+ debounce?: number;
35
+ /** Auto-record history on search; default true */
36
+ autoSaveHistory?: boolean;
37
+ /** Show "no data" empty state in suggest section while typing */
38
+ showSuggestEmpty?: boolean;
39
+ allowedImageTypes?: string[];
26
40
  }
27
41
  declare function __VLS_template(): {
28
42
  attrs: Partial<{}>;
29
43
  slots: {
30
44
  'input-prefix'?(_: {}): any;
31
- 'input-suffix'?(_: {}): any;
45
+ 'input-suffix'?(_: {
46
+ hasValue: boolean;
47
+ }): any;
48
+ 'image-preview'?(_: {
49
+ previewUrl: string;
50
+ remove: () => void;
51
+ }): any;
32
52
  drawer?(_: {
33
53
  recommendItems: string[];
34
54
  historyItems: string[];
35
55
  hotItems: string[];
56
+ suggestItems: OSearchRecommendItem[];
57
+ onestepItems: OSearchRecommendItem[];
58
+ keyword: string;
36
59
  }): any;
37
60
  'recommend-header'?(_: {
38
- recommend: string[];
61
+ items: string[];
39
62
  }): any;
40
63
  'recommend-content'?(_: {
41
- recommend: string[];
64
+ items: string[];
65
+ }): any;
66
+ 'onestep-header'?(_: {
67
+ items: OSearchRecommendItem[];
68
+ }): any;
69
+ 'onestep-content'?(_: {
70
+ items: OSearchRecommendItem[];
71
+ keyword: string;
72
+ }): any;
73
+ 'suggest-header'?(_: {
74
+ items: OSearchRecommendItem[];
75
+ }): any;
76
+ 'suggest-content'?(_: {
77
+ items: OSearchRecommendItem[];
78
+ keyword: string;
42
79
  }): any;
43
80
  'history-header'?(_: {
44
- history: string[];
81
+ items: string[];
45
82
  }): any;
46
83
  'history-content'?(_: {
47
- history: string[];
84
+ items: string[];
48
85
  }): any;
49
86
  'hot-header'?(_: {
50
- hot: string[];
87
+ items: string[];
51
88
  }): any;
52
89
  'hot-content'?(_: {
53
- hot: string[];
90
+ items: string[];
54
91
  }): any;
55
92
  };
56
93
  refs: {
57
- posWrapper: HTMLDivElement;
94
+ wrapperRef: HTMLDivElement;
58
95
  inputRef: ({
59
96
  $: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
60
97
  $data: {};
61
- $props: Partial<{
62
- color: "normal" | "primary" | "success" | "warning" | "danger";
63
- type: "text" | "password";
64
- disabled: boolean;
65
- variant: "solid" | "outline" | "text";
66
- clearable: boolean;
67
- readonly: boolean;
68
- inputOnOutlimit: boolean;
69
- showPasswordEvent: "click" | "pointerdown";
70
- autoWidth: boolean;
71
- passwordPlaceholder: string;
72
- }> & Omit<{
73
- readonly type: "text" | "password";
74
- readonly color: "primary" | "normal" | "success" | "warning" | "danger";
75
- readonly variant: "text" | "solid" | "outline";
76
- readonly disabled: boolean;
77
- readonly clearable: boolean;
78
- readonly readonly: boolean;
79
- readonly inputOnOutlimit: boolean;
80
- readonly showPasswordEvent: "click" | "pointerdown";
81
- readonly autoWidth: boolean;
82
- readonly passwordPlaceholder: string;
83
- readonly size?: "small" | "large" | "medium" | undefined;
84
- readonly round?: import('@opensig/opendesign').RoundT | undefined;
98
+ $props: {
99
+ readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
100
+ readonly modelValue?: string | undefined;
101
+ readonly imageUrl?: string | undefined;
85
102
  readonly placeholder?: string | undefined;
86
- readonly defaultValue?: string | number | undefined;
87
- readonly modelValue?: string | number | undefined;
88
- readonly inputId?: string | undefined;
89
- readonly minLength?: number | undefined;
90
- readonly maxLength?: number | undefined;
91
- readonly getLength?: ((val: string) => number) | undefined;
92
- readonly format?: ((value: string) => string) | undefined;
93
- readonly validate?: ((value: string) => boolean) | undefined;
94
- readonly valueOnInvalidChange?: ((inputValue: string, lastValidInputValue: string) => string) | undefined;
95
- readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
96
- readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
97
- readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
98
- readonly onChange?: ((value: string) => any) | undefined | undefined;
99
- readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
100
- readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
101
- readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
102
- } & 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" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder">;
103
- $attrs: {
104
- [x: string]: unknown;
105
- };
103
+ readonly imagePlaceholder?: string | undefined;
104
+ readonly size?: "small" | "medium" | "large" | undefined;
105
+ readonly enableImageSearch?: boolean | undefined;
106
+ readonly uploadImage?: OSearchUploadImageFn | undefined;
107
+ readonly maxImageSize?: number | undefined;
108
+ readonly imageUploadTooltip?: string | undefined;
109
+ readonly expanded?: boolean | undefined;
110
+ readonly clearable?: boolean | undefined;
111
+ readonly showSuffix?: boolean | undefined;
112
+ readonly inlineThumbnail?: boolean | undefined;
113
+ readonly preview?: boolean | undefined;
114
+ readonly disabled?: boolean | undefined;
115
+ readonly allowedImageTypes?: string[] | undefined;
116
+ } & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
117
+ $attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
106
118
  $refs: {
107
119
  [x: string]: unknown;
120
+ } & {
121
+ inputRef: ({
122
+ $: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
123
+ $data: {};
124
+ $props: Partial<{
125
+ color: "normal" | "primary" | "success" | "warning" | "danger";
126
+ type: "text" | "password";
127
+ disabled: boolean;
128
+ variant: "solid" | "outline" | "text";
129
+ clearable: boolean;
130
+ readonly: boolean;
131
+ showLength: "auto" | "always" | "never";
132
+ inputOnOutlimit: boolean;
133
+ showPasswordEvent: "click" | "pointerdown";
134
+ autoWidth: boolean;
135
+ passwordPlaceholder: string;
136
+ onlyNumericInput: boolean;
137
+ }> & Omit<{
138
+ readonly type: "text" | "password";
139
+ readonly color: "primary" | "normal" | "success" | "warning" | "danger";
140
+ readonly variant: "text" | "solid" | "outline";
141
+ readonly disabled: boolean;
142
+ readonly clearable: boolean;
143
+ readonly readonly: boolean;
144
+ readonly showLength: "never" | "always" | "auto";
145
+ readonly inputOnOutlimit: boolean;
146
+ readonly showPasswordEvent: "click" | "pointerdown";
147
+ readonly autoWidth: boolean;
148
+ readonly passwordPlaceholder: string;
149
+ readonly onlyNumericInput: boolean;
150
+ readonly size?: "small" | "large" | "medium" | undefined;
151
+ readonly round?: import('@opensig/opendesign').RoundT | undefined;
152
+ readonly placeholder?: string | undefined;
153
+ readonly defaultValue?: string | number | undefined;
154
+ readonly modelValue?: string | number | undefined;
155
+ readonly inputId?: string | undefined;
156
+ readonly minLength?: number | undefined;
157
+ readonly maxLength?: number | undefined;
158
+ readonly getLength?: ((val: string) => number) | undefined;
159
+ readonly format?: ((value: string) => string) | undefined;
160
+ readonly validate?: ((value: string) => boolean) | undefined;
161
+ readonly valueOnInvalidChange?: boolean | ((inputValue: string, lastValidInputValue: string) => string) | undefined;
162
+ readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
163
+ readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
164
+ readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
165
+ readonly onChange?: ((value: string) => any) | undefined | undefined;
166
+ readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
167
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
168
+ readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
169
+ } & 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">;
170
+ $attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
171
+ $refs: {
172
+ [x: string]: unknown;
173
+ };
174
+ $slots: Readonly<{
175
+ [name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
176
+ }>;
177
+ $root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
178
+ $parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
179
+ $host: Element | null;
180
+ $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);
181
+ $el: any;
182
+ $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
183
+ size: {
184
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
185
+ };
186
+ round: {
187
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
188
+ };
189
+ color: {
190
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
191
+ default: string;
192
+ };
193
+ variant: {
194
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
195
+ default: string;
196
+ };
197
+ modelValue: {
198
+ type: (NumberConstructor | StringConstructor)[];
199
+ };
200
+ defaultValue: {
201
+ type: (NumberConstructor | StringConstructor)[];
202
+ };
203
+ type: {
204
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
205
+ default: string;
206
+ };
207
+ placeholder: {
208
+ type: StringConstructor;
209
+ };
210
+ inputId: {
211
+ type: StringConstructor;
212
+ };
213
+ disabled: {
214
+ type: BooleanConstructor;
215
+ };
216
+ readonly: {
217
+ type: BooleanConstructor;
218
+ };
219
+ clearable: {
220
+ type: BooleanConstructor;
221
+ };
222
+ minLength: {
223
+ type: NumberConstructor;
224
+ };
225
+ maxLength: {
226
+ type: NumberConstructor;
227
+ };
228
+ showLength: {
229
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
230
+ default: string;
231
+ };
232
+ getLength: {
233
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
234
+ };
235
+ inputOnOutlimit: {
236
+ type: BooleanConstructor;
237
+ default: boolean;
238
+ };
239
+ format: {
240
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
241
+ };
242
+ validate: {
243
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
244
+ };
245
+ valueOnInvalidChange: {
246
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
247
+ };
248
+ showPasswordEvent: {
249
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
250
+ default: string;
251
+ };
252
+ autoWidth: {
253
+ type: BooleanConstructor;
254
+ };
255
+ passwordPlaceholder: {
256
+ type: StringConstructor;
257
+ default: string;
258
+ };
259
+ onlyNumericInput: {
260
+ type: BooleanConstructor;
261
+ };
262
+ }>> & Readonly<{
263
+ onInput?: ((evt: Event, value: string) => any) | undefined;
264
+ onClear?: ((evt?: Event | undefined) => any) | undefined;
265
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
266
+ onChange?: ((value: string) => any) | undefined;
267
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
268
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
269
+ onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
270
+ }>, {
271
+ focus: () => void | undefined;
272
+ blur: () => void | undefined;
273
+ clear: () => void | undefined;
274
+ inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
275
+ togglePassword: () => void | undefined;
276
+ }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
277
+ input: (evt: Event, value: string) => any;
278
+ clear: (evt?: Event | undefined) => any;
279
+ blur: (evt: FocusEvent) => any;
280
+ change: (value: string) => any;
281
+ focus: (evt: FocusEvent) => any;
282
+ "update:modelValue": (value: string) => any;
283
+ pressEnter: (evt: KeyboardEvent) => any;
284
+ }, string, {
285
+ color: "normal" | "primary" | "success" | "warning" | "danger";
286
+ type: "text" | "password";
287
+ disabled: boolean;
288
+ variant: "solid" | "outline" | "text";
289
+ clearable: boolean;
290
+ readonly: boolean;
291
+ showLength: "auto" | "always" | "never";
292
+ inputOnOutlimit: boolean;
293
+ showPasswordEvent: "click" | "pointerdown";
294
+ autoWidth: boolean;
295
+ passwordPlaceholder: string;
296
+ onlyNumericInput: boolean;
297
+ }, {}, 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> & {
298
+ beforeCreate?: (() => void) | (() => void)[];
299
+ created?: (() => void) | (() => void)[];
300
+ beforeMount?: (() => void) | (() => void)[];
301
+ mounted?: (() => void) | (() => void)[];
302
+ beforeUpdate?: (() => void) | (() => void)[];
303
+ updated?: (() => void) | (() => void)[];
304
+ activated?: (() => void) | (() => void)[];
305
+ deactivated?: (() => void) | (() => void)[];
306
+ beforeDestroy?: (() => void) | (() => void)[];
307
+ beforeUnmount?: (() => void) | (() => void)[];
308
+ destroyed?: (() => void) | (() => void)[];
309
+ unmounted?: (() => void) | (() => void)[];
310
+ renderTracked?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
311
+ renderTriggered?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
312
+ errorCaptured?: ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
313
+ };
314
+ $forceUpdate: () => void;
315
+ $nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
316
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
317
+ } & Readonly<{
318
+ color: "normal" | "primary" | "success" | "warning" | "danger";
319
+ type: "text" | "password";
320
+ disabled: boolean;
321
+ variant: "solid" | "outline" | "text";
322
+ clearable: boolean;
323
+ readonly: boolean;
324
+ showLength: "auto" | "always" | "never";
325
+ inputOnOutlimit: boolean;
326
+ showPasswordEvent: "click" | "pointerdown";
327
+ autoWidth: boolean;
328
+ passwordPlaceholder: string;
329
+ onlyNumericInput: boolean;
330
+ }> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
331
+ size: {
332
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
333
+ };
334
+ round: {
335
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
336
+ };
337
+ color: {
338
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
339
+ default: string;
340
+ };
341
+ variant: {
342
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
343
+ default: string;
344
+ };
345
+ modelValue: {
346
+ type: (NumberConstructor | StringConstructor)[];
347
+ };
348
+ defaultValue: {
349
+ type: (NumberConstructor | StringConstructor)[];
350
+ };
351
+ type: {
352
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
353
+ default: string;
354
+ };
355
+ placeholder: {
356
+ type: StringConstructor;
357
+ };
358
+ inputId: {
359
+ type: StringConstructor;
360
+ };
361
+ disabled: {
362
+ type: BooleanConstructor;
363
+ };
364
+ readonly: {
365
+ type: BooleanConstructor;
366
+ };
367
+ clearable: {
368
+ type: BooleanConstructor;
369
+ };
370
+ minLength: {
371
+ type: NumberConstructor;
372
+ };
373
+ maxLength: {
374
+ type: NumberConstructor;
375
+ };
376
+ showLength: {
377
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
378
+ default: string;
379
+ };
380
+ getLength: {
381
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
382
+ };
383
+ inputOnOutlimit: {
384
+ type: BooleanConstructor;
385
+ default: boolean;
386
+ };
387
+ format: {
388
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
389
+ };
390
+ validate: {
391
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
392
+ };
393
+ valueOnInvalidChange: {
394
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
395
+ };
396
+ showPasswordEvent: {
397
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
398
+ default: string;
399
+ };
400
+ autoWidth: {
401
+ type: BooleanConstructor;
402
+ };
403
+ passwordPlaceholder: {
404
+ type: StringConstructor;
405
+ default: string;
406
+ };
407
+ onlyNumericInput: {
408
+ type: BooleanConstructor;
409
+ };
410
+ }>> & Readonly<{
411
+ onInput?: ((evt: Event, value: string) => any) | undefined;
412
+ onClear?: ((evt?: Event | undefined) => any) | undefined;
413
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
414
+ onChange?: ((value: string) => any) | undefined;
415
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
416
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
417
+ onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
418
+ }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
419
+ focus: () => void | undefined;
420
+ blur: () => void | undefined;
421
+ clear: () => void | undefined;
422
+ inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
423
+ togglePassword: () => void | undefined;
424
+ } & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
425
+ $slots: Readonly<{
426
+ default(): any;
427
+ prepend(): any;
428
+ append(): any;
429
+ prefix(): any;
430
+ suffix(): any;
431
+ }> & {
432
+ default(): any;
433
+ prepend(): any;
434
+ append(): any;
435
+ prefix(): any;
436
+ suffix(): any;
437
+ };
438
+ }) | null;
439
+ uploadBtnRef: HTMLSpanElement;
440
+ fileInputRef: HTMLInputElement;
108
441
  };
109
442
  $slots: Readonly<{
110
443
  [name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
@@ -112,9 +445,362 @@ declare function __VLS_template(): {
112
445
  $root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
113
446
  $parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
114
447
  $host: Element | null;
115
- $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);
116
- $el: any;
117
- $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
448
+ $emit: (event: string, ...args: any[]) => void;
449
+ $el: HTMLDivElement;
450
+ $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
451
+ [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
452
+ }>, {
453
+ focus: () => void | undefined;
454
+ blur: () => void | undefined;
455
+ awaitUpload: () => Promise<void>;
456
+ getUploadedUrl: () => string;
457
+ getIsUploading: () => boolean;
458
+ resetImage: () => void;
459
+ }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
460
+ [x: string]: any;
461
+ } & {
462
+ [x: string]: any;
463
+ }, string, {
464
+ size: "small" | "medium" | "large";
465
+ disabled: boolean;
466
+ preview: boolean;
467
+ modelValue: string;
468
+ imageUrl: string;
469
+ enableImageSearch: boolean;
470
+ maxImageSize: number;
471
+ expanded: boolean;
472
+ clearable: boolean;
473
+ showSuffix: boolean;
474
+ inlineThumbnail: boolean;
475
+ allowedImageTypes: string[];
476
+ }, {}, 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> & {
477
+ beforeCreate?: (() => void) | (() => void)[];
478
+ created?: (() => void) | (() => void)[];
479
+ beforeMount?: (() => void) | (() => void)[];
480
+ mounted?: (() => void) | (() => void)[];
481
+ beforeUpdate?: (() => void) | (() => void)[];
482
+ updated?: (() => void) | (() => void)[];
483
+ activated?: (() => void) | (() => void)[];
484
+ deactivated?: (() => void) | (() => void)[];
485
+ beforeDestroy?: (() => void) | (() => void)[];
486
+ beforeUnmount?: (() => void) | (() => void)[];
487
+ destroyed?: (() => void) | (() => void)[];
488
+ unmounted?: (() => void) | (() => void)[];
489
+ renderTracked?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
490
+ renderTriggered?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
491
+ errorCaptured?: ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
492
+ };
493
+ $forceUpdate: () => void;
494
+ $nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
495
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
496
+ } & Readonly<{
497
+ size: "small" | "medium" | "large";
498
+ disabled: boolean;
499
+ preview: boolean;
500
+ modelValue: string;
501
+ imageUrl: string;
502
+ enableImageSearch: boolean;
503
+ maxImageSize: number;
504
+ expanded: boolean;
505
+ clearable: boolean;
506
+ showSuffix: boolean;
507
+ inlineThumbnail: boolean;
508
+ allowedImageTypes: string[];
509
+ }> & Omit<Readonly<import('./search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
510
+ [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
511
+ }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "preview" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
512
+ focus: () => void | undefined;
513
+ blur: () => void | undefined;
514
+ awaitUpload: () => Promise<void>;
515
+ getUploadedUrl: () => string;
516
+ getIsUploading: () => boolean;
517
+ resetImage: () => void;
518
+ } & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
519
+ $slots: {
520
+ prefix?(_: {}): any;
521
+ suffix?(_: {
522
+ hasValue: boolean;
523
+ }): any;
524
+ preview?(_: {
525
+ previewUrl: string;
526
+ remove: () => void;
527
+ }): any;
528
+ };
529
+ }) | null;
530
+ };
531
+ rootEl: HTMLDivElement;
532
+ };
533
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
534
+ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<OHeaderSearchPropsT, {
535
+ focus: () => void | undefined;
536
+ blur: () => void | undefined;
537
+ open: () => void;
538
+ close: () => void;
539
+ search: () => Promise<void>;
540
+ }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
541
+ [x: string]: any;
542
+ } & {
543
+ [x: string]: any;
544
+ }, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<OHeaderSearchPropsT> & Readonly<{
545
+ [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
546
+ }>, {
547
+ modelValue: string;
548
+ imageUrl: string;
549
+ enableImageSearch: boolean;
550
+ maxImageSize: number;
551
+ clearable: boolean;
552
+ onestepItems: OSearchRecommendItem[];
553
+ suggestItems: OSearchRecommendItem[];
554
+ recommendItems: string[];
555
+ historyItems: string[];
556
+ hotItems: string[];
557
+ highlightKeyword: boolean;
558
+ showSuggestEmpty: boolean;
559
+ storageKey: string;
560
+ storeHistory: boolean;
561
+ maxHistoryCount: number;
562
+ expandDirection: "left" | "right";
563
+ searchUrlOpenBlank: boolean;
564
+ debounce: number;
565
+ autoSaveHistory: boolean;
566
+ }, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
567
+ wrapperRef: HTMLDivElement;
568
+ inputRef: ({
569
+ $: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
570
+ $data: {};
571
+ $props: {
572
+ readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
573
+ readonly modelValue?: string | undefined;
574
+ readonly imageUrl?: string | undefined;
575
+ readonly placeholder?: string | undefined;
576
+ readonly imagePlaceholder?: string | undefined;
577
+ readonly size?: "small" | "medium" | "large" | undefined;
578
+ readonly enableImageSearch?: boolean | undefined;
579
+ readonly uploadImage?: OSearchUploadImageFn | undefined;
580
+ readonly maxImageSize?: number | undefined;
581
+ readonly imageUploadTooltip?: string | undefined;
582
+ readonly expanded?: boolean | undefined;
583
+ readonly clearable?: boolean | undefined;
584
+ readonly showSuffix?: boolean | undefined;
585
+ readonly inlineThumbnail?: boolean | undefined;
586
+ readonly preview?: boolean | undefined;
587
+ readonly disabled?: boolean | undefined;
588
+ readonly allowedImageTypes?: string[] | undefined;
589
+ } & import('../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
590
+ $attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
591
+ $refs: {
592
+ [x: string]: unknown;
593
+ } & {
594
+ inputRef: ({
595
+ $: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
596
+ $data: {};
597
+ $props: Partial<{
598
+ color: "normal" | "primary" | "success" | "warning" | "danger";
599
+ type: "text" | "password";
600
+ disabled: boolean;
601
+ variant: "solid" | "outline" | "text";
602
+ clearable: boolean;
603
+ readonly: boolean;
604
+ showLength: "auto" | "always" | "never";
605
+ inputOnOutlimit: boolean;
606
+ showPasswordEvent: "click" | "pointerdown";
607
+ autoWidth: boolean;
608
+ passwordPlaceholder: string;
609
+ onlyNumericInput: boolean;
610
+ }> & Omit<{
611
+ readonly type: "text" | "password";
612
+ readonly color: "primary" | "normal" | "success" | "warning" | "danger";
613
+ readonly variant: "text" | "solid" | "outline";
614
+ readonly disabled: boolean;
615
+ readonly clearable: boolean;
616
+ readonly readonly: boolean;
617
+ readonly showLength: "never" | "always" | "auto";
618
+ readonly inputOnOutlimit: boolean;
619
+ readonly showPasswordEvent: "click" | "pointerdown";
620
+ readonly autoWidth: boolean;
621
+ readonly passwordPlaceholder: string;
622
+ readonly onlyNumericInput: boolean;
623
+ readonly size?: "small" | "large" | "medium" | undefined;
624
+ readonly round?: import('@opensig/opendesign').RoundT | undefined;
625
+ readonly placeholder?: string | undefined;
626
+ readonly defaultValue?: string | number | undefined;
627
+ readonly modelValue?: string | number | undefined;
628
+ readonly inputId?: string | undefined;
629
+ readonly minLength?: number | undefined;
630
+ readonly maxLength?: number | undefined;
631
+ readonly getLength?: ((val: string) => number) | undefined;
632
+ readonly format?: ((value: string) => string) | undefined;
633
+ readonly validate?: ((value: string) => boolean) | undefined;
634
+ readonly valueOnInvalidChange?: boolean | ((inputValue: string, lastValidInputValue: string) => string) | undefined;
635
+ readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
636
+ readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
637
+ readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
638
+ readonly onChange?: ((value: string) => any) | undefined | undefined;
639
+ readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
640
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
641
+ readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
642
+ } & 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">;
643
+ $attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
644
+ $refs: {
645
+ [x: string]: unknown;
646
+ };
647
+ $slots: Readonly<{
648
+ [name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
649
+ }>;
650
+ $root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
651
+ $parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
652
+ $host: Element | null;
653
+ $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);
654
+ $el: any;
655
+ $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
656
+ size: {
657
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
658
+ };
659
+ round: {
660
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
661
+ };
662
+ color: {
663
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
664
+ default: string;
665
+ };
666
+ variant: {
667
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
668
+ default: string;
669
+ };
670
+ modelValue: {
671
+ type: (NumberConstructor | StringConstructor)[];
672
+ };
673
+ defaultValue: {
674
+ type: (NumberConstructor | StringConstructor)[];
675
+ };
676
+ type: {
677
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
678
+ default: string;
679
+ };
680
+ placeholder: {
681
+ type: StringConstructor;
682
+ };
683
+ inputId: {
684
+ type: StringConstructor;
685
+ };
686
+ disabled: {
687
+ type: BooleanConstructor;
688
+ };
689
+ readonly: {
690
+ type: BooleanConstructor;
691
+ };
692
+ clearable: {
693
+ type: BooleanConstructor;
694
+ };
695
+ minLength: {
696
+ type: NumberConstructor;
697
+ };
698
+ maxLength: {
699
+ type: NumberConstructor;
700
+ };
701
+ showLength: {
702
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
703
+ default: string;
704
+ };
705
+ getLength: {
706
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
707
+ };
708
+ inputOnOutlimit: {
709
+ type: BooleanConstructor;
710
+ default: boolean;
711
+ };
712
+ format: {
713
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
714
+ };
715
+ validate: {
716
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
717
+ };
718
+ valueOnInvalidChange: {
719
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
720
+ };
721
+ showPasswordEvent: {
722
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
723
+ default: string;
724
+ };
725
+ autoWidth: {
726
+ type: BooleanConstructor;
727
+ };
728
+ passwordPlaceholder: {
729
+ type: StringConstructor;
730
+ default: string;
731
+ };
732
+ onlyNumericInput: {
733
+ type: BooleanConstructor;
734
+ };
735
+ }>> & Readonly<{
736
+ onInput?: ((evt: Event, value: string) => any) | undefined;
737
+ onClear?: ((evt?: Event | undefined) => any) | undefined;
738
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
739
+ onChange?: ((value: string) => any) | undefined;
740
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
741
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
742
+ onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
743
+ }>, {
744
+ focus: () => void | undefined;
745
+ blur: () => void | undefined;
746
+ clear: () => void | undefined;
747
+ inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
748
+ togglePassword: () => void | undefined;
749
+ }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
750
+ input: (evt: Event, value: string) => any;
751
+ clear: (evt?: Event | undefined) => any;
752
+ blur: (evt: FocusEvent) => any;
753
+ change: (value: string) => any;
754
+ focus: (evt: FocusEvent) => any;
755
+ "update:modelValue": (value: string) => any;
756
+ pressEnter: (evt: KeyboardEvent) => any;
757
+ }, string, {
758
+ color: "normal" | "primary" | "success" | "warning" | "danger";
759
+ type: "text" | "password";
760
+ disabled: boolean;
761
+ variant: "solid" | "outline" | "text";
762
+ clearable: boolean;
763
+ readonly: boolean;
764
+ showLength: "auto" | "always" | "never";
765
+ inputOnOutlimit: boolean;
766
+ showPasswordEvent: "click" | "pointerdown";
767
+ autoWidth: boolean;
768
+ passwordPlaceholder: string;
769
+ onlyNumericInput: boolean;
770
+ }, {}, 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> & {
771
+ beforeCreate?: (() => void) | (() => void)[];
772
+ created?: (() => void) | (() => void)[];
773
+ beforeMount?: (() => void) | (() => void)[];
774
+ mounted?: (() => void) | (() => void)[];
775
+ beforeUpdate?: (() => void) | (() => void)[];
776
+ updated?: (() => void) | (() => void)[];
777
+ activated?: (() => void) | (() => void)[];
778
+ deactivated?: (() => void) | (() => void)[];
779
+ beforeDestroy?: (() => void) | (() => void)[];
780
+ beforeUnmount?: (() => void) | (() => void)[];
781
+ destroyed?: (() => void) | (() => void)[];
782
+ unmounted?: (() => void) | (() => void)[];
783
+ renderTracked?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
784
+ renderTriggered?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
785
+ errorCaptured?: ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
786
+ };
787
+ $forceUpdate: () => void;
788
+ $nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
789
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
790
+ } & Readonly<{
791
+ color: "normal" | "primary" | "success" | "warning" | "danger";
792
+ type: "text" | "password";
793
+ disabled: boolean;
794
+ variant: "solid" | "outline" | "text";
795
+ clearable: boolean;
796
+ readonly: boolean;
797
+ showLength: "auto" | "always" | "never";
798
+ inputOnOutlimit: boolean;
799
+ showPasswordEvent: "click" | "pointerdown";
800
+ autoWidth: boolean;
801
+ passwordPlaceholder: string;
802
+ onlyNumericInput: boolean;
803
+ }> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
118
804
  size: {
119
805
  type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
120
806
  };
@@ -160,6 +846,10 @@ declare function __VLS_template(): {
160
846
  maxLength: {
161
847
  type: NumberConstructor;
162
848
  };
849
+ showLength: {
850
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
851
+ default: string;
852
+ };
163
853
  getLength: {
164
854
  type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
165
855
  };
@@ -174,7 +864,7 @@ declare function __VLS_template(): {
174
864
  type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
175
865
  };
176
866
  valueOnInvalidChange: {
177
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
867
+ type: import('../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
178
868
  };
179
869
  showPasswordEvent: {
180
870
  type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
@@ -187,6 +877,9 @@ declare function __VLS_template(): {
187
877
  type: StringConstructor;
188
878
  default: string;
189
879
  };
880
+ onlyNumericInput: {
881
+ type: BooleanConstructor;
882
+ };
190
883
  }>> & Readonly<{
191
884
  onInput?: ((evt: Event, value: string) => any) | undefined;
192
885
  onClear?: ((evt?: Event | undefined) => any) | undefined;
@@ -195,245 +888,29 @@ declare function __VLS_template(): {
195
888
  onFocus?: ((evt: FocusEvent) => any) | undefined;
196
889
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
197
890
  onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
198
- }>, {
891
+ }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
199
892
  focus: () => void | undefined;
200
893
  blur: () => void | undefined;
201
894
  clear: () => void | undefined;
202
- inputEl: () => HTMLInputElement | undefined;
895
+ inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
203
896
  togglePassword: () => void | undefined;
204
- }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
205
- input: (evt: Event, value: string) => any;
206
- clear: (evt?: Event | undefined) => any;
207
- blur: (evt: FocusEvent) => any;
208
- change: (value: string) => any;
209
- focus: (evt: FocusEvent) => any;
210
- "update:modelValue": (value: string) => any;
211
- pressEnter: (evt: KeyboardEvent) => any;
212
- }, string, {
213
- color: "normal" | "primary" | "success" | "warning" | "danger";
214
- type: "text" | "password";
215
- disabled: boolean;
216
- variant: "solid" | "outline" | "text";
217
- clearable: boolean;
218
- readonly: boolean;
219
- inputOnOutlimit: boolean;
220
- showPasswordEvent: "click" | "pointerdown";
221
- autoWidth: boolean;
222
- passwordPlaceholder: string;
223
- }, {}, 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> & {
224
- beforeCreate?: (() => void) | (() => void)[];
225
- created?: (() => void) | (() => void)[];
226
- beforeMount?: (() => void) | (() => void)[];
227
- mounted?: (() => void) | (() => void)[];
228
- beforeUpdate?: (() => void) | (() => void)[];
229
- updated?: (() => void) | (() => void)[];
230
- activated?: (() => void) | (() => void)[];
231
- deactivated?: (() => void) | (() => void)[];
232
- beforeDestroy?: (() => void) | (() => void)[];
233
- beforeUnmount?: (() => void) | (() => void)[];
234
- destroyed?: (() => void) | (() => void)[];
235
- unmounted?: (() => void) | (() => void)[];
236
- renderTracked?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
237
- renderTriggered?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
238
- errorCaptured?: ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null, info: string) => boolean | void)[];
239
- };
240
- $forceUpdate: () => void;
241
- $nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
242
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
243
- } & Readonly<{
244
- color: "normal" | "primary" | "success" | "warning" | "danger";
245
- type: "text" | "password";
246
- disabled: boolean;
247
- variant: "solid" | "outline" | "text";
248
- clearable: boolean;
249
- readonly: boolean;
250
- inputOnOutlimit: boolean;
251
- showPasswordEvent: "click" | "pointerdown";
252
- autoWidth: boolean;
253
- passwordPlaceholder: string;
254
- }> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
255
- size: {
256
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
257
- };
258
- round: {
259
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
260
- };
261
- color: {
262
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
263
- default: string;
264
- };
265
- variant: {
266
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
267
- default: string;
268
- };
269
- modelValue: {
270
- type: (NumberConstructor | StringConstructor)[];
271
- };
272
- defaultValue: {
273
- type: (NumberConstructor | StringConstructor)[];
274
- };
275
- type: {
276
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
277
- default: string;
278
- };
279
- placeholder: {
280
- type: StringConstructor;
281
- };
282
- inputId: {
283
- type: StringConstructor;
284
- };
285
- disabled: {
286
- type: BooleanConstructor;
287
- };
288
- readonly: {
289
- type: BooleanConstructor;
290
- };
291
- clearable: {
292
- type: BooleanConstructor;
293
- };
294
- minLength: {
295
- type: NumberConstructor;
296
- };
297
- maxLength: {
298
- type: NumberConstructor;
299
- };
300
- getLength: {
301
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
302
- };
303
- inputOnOutlimit: {
304
- type: BooleanConstructor;
305
- default: boolean;
306
- };
307
- format: {
308
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
309
- };
310
- validate: {
311
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
312
- };
313
- valueOnInvalidChange: {
314
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
315
- };
316
- showPasswordEvent: {
317
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
318
- default: string;
319
- };
320
- autoWidth: {
321
- type: BooleanConstructor;
322
- };
323
- passwordPlaceholder: {
324
- type: StringConstructor;
325
- default: string;
326
- };
327
- }>> & Readonly<{
328
- onInput?: ((evt: Event, value: string) => any) | undefined;
329
- onClear?: ((evt?: Event | undefined) => any) | undefined;
330
- onBlur?: ((evt: FocusEvent) => any) | undefined;
331
- onChange?: ((value: string) => any) | undefined;
332
- onFocus?: ((evt: FocusEvent) => any) | undefined;
333
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
334
- onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
335
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & import('../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
336
- focus: () => void | undefined;
337
- blur: () => void | undefined;
338
- clear: () => void | undefined;
339
- inputEl: () => HTMLInputElement | undefined;
340
- togglePassword: () => void | undefined;
341
- }> & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
342
- $slots: Readonly<{
343
- default(): any;
344
- prepend(): any;
345
- append(): any;
346
- prefix(): any;
347
- suffix(): any;
348
- }> & {
349
- default(): any;
350
- prepend(): any;
351
- append(): any;
352
- prefix(): any;
353
- suffix(): any;
354
- };
355
- }) | null;
356
- };
357
- rootEl: HTMLDivElement;
358
- };
359
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
360
- declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').DefineComponent<OHeaderSearchPropsT, {}, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {} & {
361
- search: (value: string) => any;
362
- clear: () => any;
363
- "update:modelValue": (value: string) => any;
364
- "update:historyItems": (value: string[]) => any;
365
- "delete-history": (value: string[]) => any;
366
- "delete-history-item": (value: string) => any;
367
- }, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<OHeaderSearchPropsT> & Readonly<{
368
- onSearch?: ((value: string) => any) | undefined;
369
- onClear?: (() => any) | undefined;
370
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
371
- "onUpdate:historyItems"?: ((value: string[]) => any) | undefined;
372
- "onDelete-history"?: ((value: string[]) => any) | undefined;
373
- "onDelete-history-item"?: ((value: string) => any) | undefined;
374
- }>, {
375
- modelValue: string;
376
- expandDirection: "left" | "right";
377
- clearable: boolean;
378
- historyItems: string[];
379
- maxHistoryCount: number;
380
- storeHistory: boolean;
381
- storageKey: string;
382
- hotItems: string[];
383
- recommendItems: string[];
384
- searchUrlOpenBlank: boolean;
385
- }, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
386
- posWrapper: HTMLDivElement;
387
- inputRef: ({
388
- $: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
389
- $data: {};
390
- $props: Partial<{
391
- color: "normal" | "primary" | "success" | "warning" | "danger";
392
- type: "text" | "password";
393
- disabled: boolean;
394
- variant: "solid" | "outline" | "text";
395
- clearable: boolean;
396
- readonly: boolean;
397
- inputOnOutlimit: boolean;
398
- showPasswordEvent: "click" | "pointerdown";
399
- autoWidth: boolean;
400
- passwordPlaceholder: string;
401
- }> & Omit<{
402
- readonly type: "text" | "password";
403
- readonly color: "primary" | "normal" | "success" | "warning" | "danger";
404
- readonly variant: "text" | "solid" | "outline";
405
- readonly disabled: boolean;
406
- readonly clearable: boolean;
407
- readonly readonly: boolean;
408
- readonly inputOnOutlimit: boolean;
409
- readonly showPasswordEvent: "click" | "pointerdown";
410
- readonly autoWidth: boolean;
411
- readonly passwordPlaceholder: string;
412
- readonly size?: "small" | "large" | "medium" | undefined;
413
- readonly round?: import('@opensig/opendesign').RoundT | undefined;
414
- readonly placeholder?: string | undefined;
415
- readonly defaultValue?: string | number | undefined;
416
- readonly modelValue?: string | number | undefined;
417
- readonly inputId?: string | undefined;
418
- readonly minLength?: number | undefined;
419
- readonly maxLength?: number | undefined;
420
- readonly getLength?: ((val: string) => number) | undefined;
421
- readonly format?: ((value: string) => string) | undefined;
422
- readonly validate?: ((value: string) => boolean) | undefined;
423
- readonly valueOnInvalidChange?: ((inputValue: string, lastValidInputValue: string) => string) | undefined;
424
- readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
425
- readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
426
- readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
427
- readonly onChange?: ((value: string) => any) | undefined | undefined;
428
- readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
429
- readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
430
- readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
431
- } & 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" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder">;
432
- $attrs: {
433
- [x: string]: unknown;
434
- };
435
- $refs: {
436
- [x: string]: unknown;
897
+ } & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
898
+ $slots: Readonly<{
899
+ default(): any;
900
+ prepend(): any;
901
+ append(): any;
902
+ prefix(): any;
903
+ suffix(): any;
904
+ }> & {
905
+ default(): any;
906
+ prepend(): any;
907
+ append(): any;
908
+ prefix(): any;
909
+ suffix(): any;
910
+ };
911
+ }) | null;
912
+ uploadBtnRef: HTMLSpanElement;
913
+ fileInputRef: HTMLInputElement;
437
914
  };
438
915
  $slots: Readonly<{
439
916
  [name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
@@ -441,114 +918,34 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
441
918
  $root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
442
919
  $parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
443
920
  $host: Element | null;
444
- $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);
445
- $el: any;
446
- $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
447
- size: {
448
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
449
- };
450
- round: {
451
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
452
- };
453
- color: {
454
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
455
- default: string;
456
- };
457
- variant: {
458
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
459
- default: string;
460
- };
461
- modelValue: {
462
- type: (NumberConstructor | StringConstructor)[];
463
- };
464
- defaultValue: {
465
- type: (NumberConstructor | StringConstructor)[];
466
- };
467
- type: {
468
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
469
- default: string;
470
- };
471
- placeholder: {
472
- type: StringConstructor;
473
- };
474
- inputId: {
475
- type: StringConstructor;
476
- };
477
- disabled: {
478
- type: BooleanConstructor;
479
- };
480
- readonly: {
481
- type: BooleanConstructor;
482
- };
483
- clearable: {
484
- type: BooleanConstructor;
485
- };
486
- minLength: {
487
- type: NumberConstructor;
488
- };
489
- maxLength: {
490
- type: NumberConstructor;
491
- };
492
- getLength: {
493
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
494
- };
495
- inputOnOutlimit: {
496
- type: BooleanConstructor;
497
- default: boolean;
498
- };
499
- format: {
500
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
501
- };
502
- validate: {
503
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
504
- };
505
- valueOnInvalidChange: {
506
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
507
- };
508
- showPasswordEvent: {
509
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
510
- default: string;
511
- };
512
- autoWidth: {
513
- type: BooleanConstructor;
514
- };
515
- passwordPlaceholder: {
516
- type: StringConstructor;
517
- default: string;
518
- };
519
- }>> & Readonly<{
520
- onInput?: ((evt: Event, value: string) => any) | undefined;
521
- onClear?: ((evt?: Event | undefined) => any) | undefined;
522
- onBlur?: ((evt: FocusEvent) => any) | undefined;
523
- onChange?: ((value: string) => any) | undefined;
524
- onFocus?: ((evt: FocusEvent) => any) | undefined;
525
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
526
- onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
921
+ $emit: (event: string, ...args: any[]) => void;
922
+ $el: HTMLDivElement;
923
+ $options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('./search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
924
+ [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
527
925
  }>, {
528
926
  focus: () => void | undefined;
529
927
  blur: () => void | undefined;
530
- clear: () => void | undefined;
531
- inputEl: () => HTMLInputElement | undefined;
532
- togglePassword: () => void | undefined;
928
+ awaitUpload: () => Promise<void>;
929
+ getUploadedUrl: () => string;
930
+ getIsUploading: () => boolean;
931
+ resetImage: () => void;
533
932
  }, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
534
- input: (evt: Event, value: string) => any;
535
- clear: (evt?: Event | undefined) => any;
536
- blur: (evt: FocusEvent) => any;
537
- change: (value: string) => any;
538
- focus: (evt: FocusEvent) => any;
539
- "update:modelValue": (value: string) => any;
540
- pressEnter: (evt: KeyboardEvent) => any;
933
+ [x: string]: any;
934
+ } & {
935
+ [x: string]: any;
541
936
  }, string, {
542
- color: "normal" | "primary" | "success" | "warning" | "danger";
543
- type: "text" | "password";
937
+ size: "small" | "medium" | "large";
544
938
  disabled: boolean;
545
- variant: "solid" | "outline" | "text";
939
+ preview: boolean;
940
+ modelValue: string;
941
+ imageUrl: string;
942
+ enableImageSearch: boolean;
943
+ maxImageSize: number;
944
+ expanded: boolean;
546
945
  clearable: boolean;
547
- readonly: boolean;
548
- inputOnOutlimit: boolean;
549
- showPasswordEvent: "click" | "pointerdown";
550
- autoWidth: boolean;
551
- passwordPlaceholder: string;
946
+ showSuffix: boolean;
947
+ inlineThumbnail: boolean;
948
+ allowedImageTypes: string[];
552
949
  }, {}, 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> & {
553
950
  beforeCreate?: (() => void) | (() => void)[];
554
951
  created?: (() => void) | (() => void)[];
@@ -570,116 +967,37 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
570
967
  $nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
571
968
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('../../vue/dist/vue.esm-bundler.js').WatchOptions): import('../../vue/dist/vue.esm-bundler.js').WatchStopHandle;
572
969
  } & Readonly<{
573
- color: "normal" | "primary" | "success" | "warning" | "danger";
574
- type: "text" | "password";
970
+ size: "small" | "medium" | "large";
575
971
  disabled: boolean;
576
- variant: "solid" | "outline" | "text";
972
+ preview: boolean;
973
+ modelValue: string;
974
+ imageUrl: string;
975
+ enableImageSearch: boolean;
976
+ maxImageSize: number;
977
+ expanded: boolean;
577
978
  clearable: boolean;
578
- readonly: boolean;
579
- inputOnOutlimit: boolean;
580
- showPasswordEvent: "click" | "pointerdown";
581
- autoWidth: boolean;
582
- passwordPlaceholder: string;
583
- }> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
584
- size: {
585
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
586
- };
587
- round: {
588
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
589
- };
590
- color: {
591
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
592
- default: string;
593
- };
594
- variant: {
595
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
596
- default: string;
597
- };
598
- modelValue: {
599
- type: (NumberConstructor | StringConstructor)[];
600
- };
601
- defaultValue: {
602
- type: (NumberConstructor | StringConstructor)[];
603
- };
604
- type: {
605
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
606
- default: string;
607
- };
608
- placeholder: {
609
- type: StringConstructor;
610
- };
611
- inputId: {
612
- type: StringConstructor;
613
- };
614
- disabled: {
615
- type: BooleanConstructor;
616
- };
617
- readonly: {
618
- type: BooleanConstructor;
619
- };
620
- clearable: {
621
- type: BooleanConstructor;
622
- };
623
- minLength: {
624
- type: NumberConstructor;
625
- };
626
- maxLength: {
627
- type: NumberConstructor;
628
- };
629
- getLength: {
630
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
631
- };
632
- inputOnOutlimit: {
633
- type: BooleanConstructor;
634
- default: boolean;
635
- };
636
- format: {
637
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
638
- };
639
- validate: {
640
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
641
- };
642
- valueOnInvalidChange: {
643
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
644
- };
645
- showPasswordEvent: {
646
- type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
647
- default: string;
648
- };
649
- autoWidth: {
650
- type: BooleanConstructor;
651
- };
652
- passwordPlaceholder: {
653
- type: StringConstructor;
654
- default: string;
655
- };
656
- }>> & Readonly<{
657
- onInput?: ((evt: Event, value: string) => any) | undefined;
658
- onClear?: ((evt?: Event | undefined) => any) | undefined;
659
- onBlur?: ((evt: FocusEvent) => any) | undefined;
660
- onChange?: ((value: string) => any) | undefined;
661
- onFocus?: ((evt: FocusEvent) => any) | undefined;
662
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
663
- onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
664
- }>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & import('../../vue/dist/vue.esm-bundler.js').ShallowUnwrapRef<{
979
+ showSuffix: boolean;
980
+ inlineThumbnail: boolean;
981
+ allowedImageTypes: string[];
982
+ }> & Omit<Readonly<import('./search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
983
+ [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
984
+ }>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "preview" | "modelValue" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "expanded" | "clearable" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
665
985
  focus: () => void | undefined;
666
986
  blur: () => void | undefined;
667
- clear: () => void | undefined;
668
- inputEl: () => HTMLInputElement | undefined;
669
- togglePassword: () => void | undefined;
670
- }> & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
671
- $slots: Readonly<{
672
- default(): any;
673
- prepend(): any;
674
- append(): any;
675
- prefix(): any;
676
- suffix(): any;
677
- }> & {
678
- default(): any;
679
- prepend(): any;
680
- append(): any;
681
- prefix(): any;
682
- suffix(): any;
987
+ awaitUpload: () => Promise<void>;
988
+ getUploadedUrl: () => string;
989
+ getIsUploading: () => boolean;
990
+ resetImage: () => void;
991
+ } & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
992
+ $slots: {
993
+ prefix?(_: {}): any;
994
+ suffix?(_: {
995
+ hasValue: boolean;
996
+ }): any;
997
+ preview?(_: {
998
+ previewUrl: string;
999
+ remove: () => void;
1000
+ }): any;
683
1001
  };
684
1002
  }) | null;
685
1003
  }, HTMLDivElement>;