@opendesign-plus-test/components 0.0.1-rc.43 → 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.
- package/dist/chunk-OElCookieNotice.cjs.js +1 -1
- package/dist/chunk-OElCookieNotice.es.js +67 -47
- package/dist/components/OHeaderSearch.vue.d.ts +822 -500
- package/dist/components/activity/OMyActivityCalendar.vue.d.ts +86 -24
- package/dist/components/activity/index.d.ts +43 -12
- package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +86 -24
- package/dist/components/meeting/index.d.ts +43 -12
- package/dist/components/search/OSearchInput.vue.d.ts +1003 -0
- package/dist/components/search/composables/useImageSearch.d.ts +48 -0
- package/dist/components/search/composables/useKeywordHighlight.d.ts +2 -0
- package/dist/components/search/composables/useSearchHistory.d.ts +14 -0
- package/dist/components/search/index.d.ts +590 -0
- package/dist/components/search/internal/HighlightText.vue.d.ts +9 -0
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +716 -0
- package/dist/components/search/internal/SearchPanel.vue.d.ts +100 -0
- package/dist/components/search/types.d.ts +20 -0
- package/dist/components.cjs.js +41 -41
- package/dist/components.css +1 -1
- package/dist/components.es.js +11228 -10253
- package/dist/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/assets/svg-icons/icon-delete-hover.svg +4 -0
- package/src/assets/svg-icons/icon-delete.svg +5 -1
- package/src/assets/svg-icons/icon-image-close.svg +4 -0
- package/src/assets/svg-icons/icon-image-upload.svg +3 -0
- package/src/assets/svg-icons/icon-image-zoomin.svg +3 -0
- package/src/assets/svg-icons/icon-refresh.svg +3 -0
- package/src/components/OBanner.vue +18 -18
- package/src/components/OCookieNotice.vue +21 -21
- package/src/components/OFooter.vue +18 -17
- package/src/components/OHeaderSearch.vue +402 -420
- package/src/components/OHeaderUser.vue +3 -2
- package/src/components/OSection.vue +4 -4
- package/src/components/activity/OActivityApproval.vue +4 -4
- package/src/components/activity/OActivityForm.vue +2 -2
- package/src/components/activity/OMyActivityCalendar.vue +26 -26
- package/src/components/activity/config.ts +1 -1
- package/src/components/common/ContentWrapper.vue +3 -3
- package/src/components/element-plus/OElCookieNotice.vue +26 -26
- package/src/components/events/OEventsApply.vue +44 -44
- package/src/components/events/OEventsCalendar.vue +14 -14
- package/src/components/events/OEventsList.vue +16 -16
- package/src/components/header/OHeader.vue +2 -2
- package/src/components/header/components/HeaderContent.vue +60 -60
- package/src/components/header/components/HeaderNav.vue +4 -4
- package/src/components/header/components/HeaderNavMobile.vue +3 -3
- package/src/components/meeting/OMeetingCalendar.vue +27 -27
- package/src/components/meeting/OMeetingForm.vue +16 -16
- package/src/components/meeting/OMeetingPlayback.vue +4 -4
- package/src/components/meeting/OMyMeetingCalendar.vue +25 -25
- package/src/components/meeting/OSigMeetingCalendar.vue +3 -3
- package/src/components/meeting/components/OMeetingCalendarList.vue +9 -9
- package/src/components/meeting/components/OMeetingDetail.vue +2 -2
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingPlaybackVideo.vue +5 -5
- package/src/components/meeting/components/OSigMeetingAside.vue +6 -6
- package/src/components/search/OSearchInput.vue +463 -0
- package/src/components/search/composables/useImageSearch.ts +157 -0
- package/src/components/search/composables/useKeywordHighlight.ts +30 -0
- package/src/components/search/composables/useSearchHistory.ts +75 -0
- package/src/components/search/index.ts +23 -0
- package/src/components/search/internal/HighlightText.vue +37 -0
- package/src/components/search/internal/SearchImageInput.vue +488 -0
- package/src/components/search/internal/SearchPanel.vue +430 -0
- package/src/components/search/types.ts +25 -0
- package/src/draft/Banner.vue +6 -6
- package/src/draft/ButtonCards.vue +1 -1
- package/src/draft/Feature.vue +6 -6
- package/src/draft/Footer.vue +29 -22
- package/src/draft/HorizontalAnchor.vue +4 -4
- package/src/draft/ItemSwiper.vue +2 -2
- package/src/draft/Logo.vue +3 -3
- package/src/draft/LogoCard.vue +2 -2
- package/src/draft/MultiCard.vue +1 -1
- package/src/draft/MultiIconCard.vue +1 -1
- package/src/draft/OInfoCard.vue +4 -4
- package/src/draft/Section.vue +4 -4
- package/src/draft/SingleTabCard.vue +1 -1
- package/src/draft/SliderCard.vue +4 -3
- package/src/i18n/en.ts +10 -0
- package/src/i18n/zh.ts +10 -0
- package/src/index.ts +1 -0
- package/vite.config.ts +1 -1
|
@@ -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,98 +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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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'?(_: {
|
|
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
|
-
|
|
61
|
+
items: string[];
|
|
39
62
|
}): any;
|
|
40
63
|
'recommend-content'?(_: {
|
|
41
|
-
|
|
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
|
-
|
|
81
|
+
items: string[];
|
|
45
82
|
}): any;
|
|
46
83
|
'history-content'?(_: {
|
|
47
|
-
|
|
84
|
+
items: string[];
|
|
48
85
|
}): any;
|
|
49
86
|
'hot-header'?(_: {
|
|
50
|
-
|
|
87
|
+
items: string[];
|
|
51
88
|
}): any;
|
|
52
89
|
'hot-content'?(_: {
|
|
53
|
-
|
|
90
|
+
items: string[];
|
|
54
91
|
}): any;
|
|
55
92
|
};
|
|
56
93
|
refs: {
|
|
57
|
-
|
|
94
|
+
wrapperRef: HTMLDivElement;
|
|
58
95
|
inputRef: ({
|
|
59
96
|
$: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
60
97
|
$data: {};
|
|
61
|
-
$props:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
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
|
|
87
|
-
readonly
|
|
88
|
-
readonly
|
|
89
|
-
readonly
|
|
90
|
-
readonly
|
|
91
|
-
readonly
|
|
92
|
-
readonly
|
|
93
|
-
readonly
|
|
94
|
-
readonly
|
|
95
|
-
readonly
|
|
96
|
-
readonly
|
|
97
|
-
readonly
|
|
98
|
-
readonly
|
|
99
|
-
|
|
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
|
+
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;
|
|
103
117
|
$attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
104
118
|
$refs: {
|
|
105
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;
|
|
106
441
|
};
|
|
107
442
|
$slots: Readonly<{
|
|
108
443
|
[name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
@@ -110,9 +445,362 @@ declare function __VLS_template(): {
|
|
|
110
445
|
$root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
111
446
|
$parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
112
447
|
$host: Element | null;
|
|
113
|
-
$emit: (
|
|
114
|
-
$el:
|
|
115
|
-
$options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('
|
|
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<{
|
|
116
804
|
size: {
|
|
117
805
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
118
806
|
};
|
|
@@ -158,6 +846,10 @@ declare function __VLS_template(): {
|
|
|
158
846
|
maxLength: {
|
|
159
847
|
type: NumberConstructor;
|
|
160
848
|
};
|
|
849
|
+
showLength: {
|
|
850
|
+
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
851
|
+
default: string;
|
|
852
|
+
};
|
|
161
853
|
getLength: {
|
|
162
854
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
163
855
|
};
|
|
@@ -172,7 +864,7 @@ declare function __VLS_template(): {
|
|
|
172
864
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
173
865
|
};
|
|
174
866
|
valueOnInvalidChange: {
|
|
175
|
-
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)>;
|
|
176
868
|
};
|
|
177
869
|
showPasswordEvent: {
|
|
178
870
|
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
@@ -185,6 +877,9 @@ declare function __VLS_template(): {
|
|
|
185
877
|
type: StringConstructor;
|
|
186
878
|
default: string;
|
|
187
879
|
};
|
|
880
|
+
onlyNumericInput: {
|
|
881
|
+
type: BooleanConstructor;
|
|
882
|
+
};
|
|
188
883
|
}>> & Readonly<{
|
|
189
884
|
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
190
885
|
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
@@ -193,243 +888,29 @@ declare function __VLS_template(): {
|
|
|
193
888
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
194
889
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
195
890
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
196
|
-
}>, {
|
|
891
|
+
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
197
892
|
focus: () => void | undefined;
|
|
198
893
|
blur: () => void | undefined;
|
|
199
894
|
clear: () => void | undefined;
|
|
200
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
895
|
+
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
201
896
|
togglePassword: () => void | undefined;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
autoWidth: boolean;
|
|
220
|
-
passwordPlaceholder: string;
|
|
221
|
-
}, {}, 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> & {
|
|
222
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
223
|
-
created?: (() => void) | (() => void)[];
|
|
224
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
225
|
-
mounted?: (() => void) | (() => void)[];
|
|
226
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
227
|
-
updated?: (() => void) | (() => void)[];
|
|
228
|
-
activated?: (() => void) | (() => void)[];
|
|
229
|
-
deactivated?: (() => void) | (() => void)[];
|
|
230
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
231
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
232
|
-
destroyed?: (() => void) | (() => void)[];
|
|
233
|
-
unmounted?: (() => void) | (() => void)[];
|
|
234
|
-
renderTracked?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
235
|
-
renderTriggered?: ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
236
|
-
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)[];
|
|
237
|
-
};
|
|
238
|
-
$forceUpdate: () => void;
|
|
239
|
-
$nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
240
|
-
$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;
|
|
241
|
-
} & Readonly<{
|
|
242
|
-
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
243
|
-
type: "text" | "password";
|
|
244
|
-
disabled: boolean;
|
|
245
|
-
variant: "solid" | "outline" | "text";
|
|
246
|
-
clearable: boolean;
|
|
247
|
-
readonly: boolean;
|
|
248
|
-
inputOnOutlimit: boolean;
|
|
249
|
-
showPasswordEvent: "click" | "pointerdown";
|
|
250
|
-
autoWidth: boolean;
|
|
251
|
-
passwordPlaceholder: string;
|
|
252
|
-
}> & Omit<Readonly<import('../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
253
|
-
size: {
|
|
254
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
255
|
-
};
|
|
256
|
-
round: {
|
|
257
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
258
|
-
};
|
|
259
|
-
color: {
|
|
260
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
261
|
-
default: string;
|
|
262
|
-
};
|
|
263
|
-
variant: {
|
|
264
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
265
|
-
default: string;
|
|
266
|
-
};
|
|
267
|
-
modelValue: {
|
|
268
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
269
|
-
};
|
|
270
|
-
defaultValue: {
|
|
271
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
272
|
-
};
|
|
273
|
-
type: {
|
|
274
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
275
|
-
default: string;
|
|
276
|
-
};
|
|
277
|
-
placeholder: {
|
|
278
|
-
type: StringConstructor;
|
|
279
|
-
};
|
|
280
|
-
inputId: {
|
|
281
|
-
type: StringConstructor;
|
|
282
|
-
};
|
|
283
|
-
disabled: {
|
|
284
|
-
type: BooleanConstructor;
|
|
285
|
-
};
|
|
286
|
-
readonly: {
|
|
287
|
-
type: BooleanConstructor;
|
|
288
|
-
};
|
|
289
|
-
clearable: {
|
|
290
|
-
type: BooleanConstructor;
|
|
291
|
-
};
|
|
292
|
-
minLength: {
|
|
293
|
-
type: NumberConstructor;
|
|
294
|
-
};
|
|
295
|
-
maxLength: {
|
|
296
|
-
type: NumberConstructor;
|
|
297
|
-
};
|
|
298
|
-
getLength: {
|
|
299
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
300
|
-
};
|
|
301
|
-
inputOnOutlimit: {
|
|
302
|
-
type: BooleanConstructor;
|
|
303
|
-
default: boolean;
|
|
304
|
-
};
|
|
305
|
-
format: {
|
|
306
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
307
|
-
};
|
|
308
|
-
validate: {
|
|
309
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
310
|
-
};
|
|
311
|
-
valueOnInvalidChange: {
|
|
312
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
313
|
-
};
|
|
314
|
-
showPasswordEvent: {
|
|
315
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
316
|
-
default: string;
|
|
317
|
-
};
|
|
318
|
-
autoWidth: {
|
|
319
|
-
type: BooleanConstructor;
|
|
320
|
-
};
|
|
321
|
-
passwordPlaceholder: {
|
|
322
|
-
type: StringConstructor;
|
|
323
|
-
default: string;
|
|
324
|
-
};
|
|
325
|
-
}>> & Readonly<{
|
|
326
|
-
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
327
|
-
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
328
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
329
|
-
onChange?: ((value: string) => any) | undefined;
|
|
330
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
331
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
332
|
-
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
333
|
-
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & {
|
|
334
|
-
focus: () => void | undefined;
|
|
335
|
-
blur: () => void | undefined;
|
|
336
|
-
clear: () => void | undefined;
|
|
337
|
-
inputEl: () => HTMLInputElement | undefined;
|
|
338
|
-
togglePassword: () => void | undefined;
|
|
339
|
-
} & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
340
|
-
$slots: Readonly<{
|
|
341
|
-
default(): any;
|
|
342
|
-
prepend(): any;
|
|
343
|
-
append(): any;
|
|
344
|
-
prefix(): any;
|
|
345
|
-
suffix(): any;
|
|
346
|
-
}> & {
|
|
347
|
-
default(): any;
|
|
348
|
-
prepend(): any;
|
|
349
|
-
append(): any;
|
|
350
|
-
prefix(): any;
|
|
351
|
-
suffix(): any;
|
|
352
|
-
};
|
|
353
|
-
}) | null;
|
|
354
|
-
};
|
|
355
|
-
rootEl: HTMLDivElement;
|
|
356
|
-
};
|
|
357
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
358
|
-
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, {} & {
|
|
359
|
-
search: (value: string) => any;
|
|
360
|
-
clear: () => any;
|
|
361
|
-
"update:modelValue": (value: string) => any;
|
|
362
|
-
"update:historyItems": (value: string[]) => any;
|
|
363
|
-
"delete-history": (value: string[]) => any;
|
|
364
|
-
"delete-history-item": (value: string) => any;
|
|
365
|
-
}, string, import('../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<OHeaderSearchPropsT> & Readonly<{
|
|
366
|
-
onSearch?: ((value: string) => any) | undefined;
|
|
367
|
-
onClear?: (() => any) | undefined;
|
|
368
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
369
|
-
"onUpdate:historyItems"?: ((value: string[]) => any) | undefined;
|
|
370
|
-
"onDelete-history"?: ((value: string[]) => any) | undefined;
|
|
371
|
-
"onDelete-history-item"?: ((value: string) => any) | undefined;
|
|
372
|
-
}>, {
|
|
373
|
-
modelValue: string;
|
|
374
|
-
expandDirection: "left" | "right";
|
|
375
|
-
clearable: boolean;
|
|
376
|
-
historyItems: string[];
|
|
377
|
-
maxHistoryCount: number;
|
|
378
|
-
storeHistory: boolean;
|
|
379
|
-
storageKey: string;
|
|
380
|
-
hotItems: string[];
|
|
381
|
-
recommendItems: string[];
|
|
382
|
-
searchUrlOpenBlank: boolean;
|
|
383
|
-
}, {}, {}, {}, string, import('../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
384
|
-
posWrapper: HTMLDivElement;
|
|
385
|
-
inputRef: ({
|
|
386
|
-
$: import('../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
387
|
-
$data: {};
|
|
388
|
-
$props: Partial<{
|
|
389
|
-
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
390
|
-
type: "text" | "password";
|
|
391
|
-
disabled: boolean;
|
|
392
|
-
variant: "solid" | "outline" | "text";
|
|
393
|
-
clearable: boolean;
|
|
394
|
-
readonly: boolean;
|
|
395
|
-
inputOnOutlimit: boolean;
|
|
396
|
-
showPasswordEvent: "click" | "pointerdown";
|
|
397
|
-
autoWidth: boolean;
|
|
398
|
-
passwordPlaceholder: string;
|
|
399
|
-
}> & Omit<{
|
|
400
|
-
readonly type: "text" | "password";
|
|
401
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
402
|
-
readonly variant: "text" | "solid" | "outline";
|
|
403
|
-
readonly disabled: boolean;
|
|
404
|
-
readonly clearable: boolean;
|
|
405
|
-
readonly readonly: boolean;
|
|
406
|
-
readonly inputOnOutlimit: boolean;
|
|
407
|
-
readonly showPasswordEvent: "click" | "pointerdown";
|
|
408
|
-
readonly autoWidth: boolean;
|
|
409
|
-
readonly passwordPlaceholder: string;
|
|
410
|
-
readonly size?: "small" | "large" | "medium" | undefined;
|
|
411
|
-
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
412
|
-
readonly placeholder?: string | undefined;
|
|
413
|
-
readonly defaultValue?: string | number | undefined;
|
|
414
|
-
readonly modelValue?: string | number | undefined;
|
|
415
|
-
readonly inputId?: string | undefined;
|
|
416
|
-
readonly minLength?: number | undefined;
|
|
417
|
-
readonly maxLength?: number | undefined;
|
|
418
|
-
readonly getLength?: ((val: string) => number) | undefined;
|
|
419
|
-
readonly format?: ((value: string) => string) | undefined;
|
|
420
|
-
readonly validate?: ((value: string) => boolean) | undefined;
|
|
421
|
-
readonly valueOnInvalidChange?: ((inputValue: string, lastValidInputValue: string) => string) | undefined;
|
|
422
|
-
readonly onInput?: ((evt: Event, value: string) => any) | undefined | undefined;
|
|
423
|
-
readonly onClear?: ((evt?: Event | undefined) => any) | undefined | undefined;
|
|
424
|
-
readonly onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
425
|
-
readonly onChange?: ((value: string) => any) | undefined | undefined;
|
|
426
|
-
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
427
|
-
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
428
|
-
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
429
|
-
} & 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">;
|
|
430
|
-
$attrs: import('../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
431
|
-
$refs: {
|
|
432
|
-
[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;
|
|
433
914
|
};
|
|
434
915
|
$slots: Readonly<{
|
|
435
916
|
[name: string]: import('../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
@@ -437,114 +918,34 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
437
918
|
$root: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
438
919
|
$parent: import('../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
439
920
|
$host: Element | null;
|
|
440
|
-
$emit: (
|
|
441
|
-
$el:
|
|
442
|
-
$options: import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('
|
|
443
|
-
|
|
444
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
445
|
-
};
|
|
446
|
-
round: {
|
|
447
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
448
|
-
};
|
|
449
|
-
color: {
|
|
450
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
451
|
-
default: string;
|
|
452
|
-
};
|
|
453
|
-
variant: {
|
|
454
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
455
|
-
default: string;
|
|
456
|
-
};
|
|
457
|
-
modelValue: {
|
|
458
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
459
|
-
};
|
|
460
|
-
defaultValue: {
|
|
461
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
462
|
-
};
|
|
463
|
-
type: {
|
|
464
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
465
|
-
default: string;
|
|
466
|
-
};
|
|
467
|
-
placeholder: {
|
|
468
|
-
type: StringConstructor;
|
|
469
|
-
};
|
|
470
|
-
inputId: {
|
|
471
|
-
type: StringConstructor;
|
|
472
|
-
};
|
|
473
|
-
disabled: {
|
|
474
|
-
type: BooleanConstructor;
|
|
475
|
-
};
|
|
476
|
-
readonly: {
|
|
477
|
-
type: BooleanConstructor;
|
|
478
|
-
};
|
|
479
|
-
clearable: {
|
|
480
|
-
type: BooleanConstructor;
|
|
481
|
-
};
|
|
482
|
-
minLength: {
|
|
483
|
-
type: NumberConstructor;
|
|
484
|
-
};
|
|
485
|
-
maxLength: {
|
|
486
|
-
type: NumberConstructor;
|
|
487
|
-
};
|
|
488
|
-
getLength: {
|
|
489
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
490
|
-
};
|
|
491
|
-
inputOnOutlimit: {
|
|
492
|
-
type: BooleanConstructor;
|
|
493
|
-
default: boolean;
|
|
494
|
-
};
|
|
495
|
-
format: {
|
|
496
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
497
|
-
};
|
|
498
|
-
validate: {
|
|
499
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
500
|
-
};
|
|
501
|
-
valueOnInvalidChange: {
|
|
502
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
503
|
-
};
|
|
504
|
-
showPasswordEvent: {
|
|
505
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
506
|
-
default: string;
|
|
507
|
-
};
|
|
508
|
-
autoWidth: {
|
|
509
|
-
type: BooleanConstructor;
|
|
510
|
-
};
|
|
511
|
-
passwordPlaceholder: {
|
|
512
|
-
type: StringConstructor;
|
|
513
|
-
default: string;
|
|
514
|
-
};
|
|
515
|
-
}>> & Readonly<{
|
|
516
|
-
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
517
|
-
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
518
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
519
|
-
onChange?: ((value: string) => any) | undefined;
|
|
520
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
521
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
522
|
-
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;
|
|
523
925
|
}>, {
|
|
524
926
|
focus: () => void | undefined;
|
|
525
927
|
blur: () => void | undefined;
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
928
|
+
awaitUpload: () => Promise<void>;
|
|
929
|
+
getUploadedUrl: () => string;
|
|
930
|
+
getIsUploading: () => boolean;
|
|
931
|
+
resetImage: () => void;
|
|
529
932
|
}, {}, {}, {}, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
change: (value: string) => any;
|
|
534
|
-
focus: (evt: FocusEvent) => any;
|
|
535
|
-
"update:modelValue": (value: string) => any;
|
|
536
|
-
pressEnter: (evt: KeyboardEvent) => any;
|
|
933
|
+
[x: string]: any;
|
|
934
|
+
} & {
|
|
935
|
+
[x: string]: any;
|
|
537
936
|
}, string, {
|
|
538
|
-
|
|
539
|
-
type: "text" | "password";
|
|
937
|
+
size: "small" | "medium" | "large";
|
|
540
938
|
disabled: boolean;
|
|
541
|
-
|
|
939
|
+
preview: boolean;
|
|
940
|
+
modelValue: string;
|
|
941
|
+
imageUrl: string;
|
|
942
|
+
enableImageSearch: boolean;
|
|
943
|
+
maxImageSize: number;
|
|
944
|
+
expanded: boolean;
|
|
542
945
|
clearable: boolean;
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
autoWidth: boolean;
|
|
547
|
-
passwordPlaceholder: string;
|
|
946
|
+
showSuffix: boolean;
|
|
947
|
+
inlineThumbnail: boolean;
|
|
948
|
+
allowedImageTypes: string[];
|
|
548
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> & {
|
|
549
950
|
beforeCreate?: (() => void) | (() => void)[];
|
|
550
951
|
created?: (() => void) | (() => void)[];
|
|
@@ -566,116 +967,37 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
566
967
|
$nextTick: typeof import('../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
567
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;
|
|
568
969
|
} & Readonly<{
|
|
569
|
-
|
|
570
|
-
type: "text" | "password";
|
|
970
|
+
size: "small" | "medium" | "large";
|
|
571
971
|
disabled: boolean;
|
|
572
|
-
|
|
972
|
+
preview: boolean;
|
|
973
|
+
modelValue: string;
|
|
974
|
+
imageUrl: string;
|
|
975
|
+
enableImageSearch: boolean;
|
|
976
|
+
maxImageSize: number;
|
|
977
|
+
expanded: boolean;
|
|
573
978
|
clearable: boolean;
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
}> &
|
|
580
|
-
size: {
|
|
581
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
582
|
-
};
|
|
583
|
-
round: {
|
|
584
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
585
|
-
};
|
|
586
|
-
color: {
|
|
587
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
588
|
-
default: string;
|
|
589
|
-
};
|
|
590
|
-
variant: {
|
|
591
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
592
|
-
default: string;
|
|
593
|
-
};
|
|
594
|
-
modelValue: {
|
|
595
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
596
|
-
};
|
|
597
|
-
defaultValue: {
|
|
598
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
599
|
-
};
|
|
600
|
-
type: {
|
|
601
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
602
|
-
default: string;
|
|
603
|
-
};
|
|
604
|
-
placeholder: {
|
|
605
|
-
type: StringConstructor;
|
|
606
|
-
};
|
|
607
|
-
inputId: {
|
|
608
|
-
type: StringConstructor;
|
|
609
|
-
};
|
|
610
|
-
disabled: {
|
|
611
|
-
type: BooleanConstructor;
|
|
612
|
-
};
|
|
613
|
-
readonly: {
|
|
614
|
-
type: BooleanConstructor;
|
|
615
|
-
};
|
|
616
|
-
clearable: {
|
|
617
|
-
type: BooleanConstructor;
|
|
618
|
-
};
|
|
619
|
-
minLength: {
|
|
620
|
-
type: NumberConstructor;
|
|
621
|
-
};
|
|
622
|
-
maxLength: {
|
|
623
|
-
type: NumberConstructor;
|
|
624
|
-
};
|
|
625
|
-
getLength: {
|
|
626
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
627
|
-
};
|
|
628
|
-
inputOnOutlimit: {
|
|
629
|
-
type: BooleanConstructor;
|
|
630
|
-
default: boolean;
|
|
631
|
-
};
|
|
632
|
-
format: {
|
|
633
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
634
|
-
};
|
|
635
|
-
validate: {
|
|
636
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
637
|
-
};
|
|
638
|
-
valueOnInvalidChange: {
|
|
639
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<(inputValue: string, lastValidInputValue: string) => string>;
|
|
640
|
-
};
|
|
641
|
-
showPasswordEvent: {
|
|
642
|
-
type: import('../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
643
|
-
default: string;
|
|
644
|
-
};
|
|
645
|
-
autoWidth: {
|
|
646
|
-
type: BooleanConstructor;
|
|
647
|
-
};
|
|
648
|
-
passwordPlaceholder: {
|
|
649
|
-
type: StringConstructor;
|
|
650
|
-
default: string;
|
|
651
|
-
};
|
|
652
|
-
}>> & Readonly<{
|
|
653
|
-
onInput?: ((evt: Event, value: string) => any) | undefined;
|
|
654
|
-
onClear?: ((evt?: Event | undefined) => any) | undefined;
|
|
655
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
656
|
-
onChange?: ((value: string) => any) | undefined;
|
|
657
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
658
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
659
|
-
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
660
|
-
}>, "type" | "color" | "variant" | "disabled" | "clear" | "blur" | "focus" | "clearable" | "readonly" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "inputEl" | "togglePassword"> & {
|
|
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")> & {
|
|
661
985
|
focus: () => void | undefined;
|
|
662
986
|
blur: () => void | undefined;
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
987
|
+
awaitUpload: () => Promise<void>;
|
|
988
|
+
getUploadedUrl: () => string;
|
|
989
|
+
getIsUploading: () => boolean;
|
|
990
|
+
resetImage: () => void;
|
|
666
991
|
} & {} & import('../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
667
|
-
$slots:
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
append(): any;
|
|
677
|
-
prefix(): any;
|
|
678
|
-
suffix(): any;
|
|
992
|
+
$slots: {
|
|
993
|
+
prefix?(_: {}): any;
|
|
994
|
+
suffix?(_: {
|
|
995
|
+
hasValue: boolean;
|
|
996
|
+
}): any;
|
|
997
|
+
preview?(_: {
|
|
998
|
+
previewUrl: string;
|
|
999
|
+
remove: () => void;
|
|
1000
|
+
}): any;
|
|
679
1001
|
};
|
|
680
1002
|
}) | null;
|
|
681
1003
|
}, HTMLDivElement>;
|