@opendesign-plus/components 0.0.1-rc.27 → 0.0.1-rc.29
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 +152 -152
- package/dist/components/activity/OActivityApproval.vue.d.ts +8 -8
- package/dist/components/activity/OActivityForm.vue.d.ts +6 -6
- package/dist/components/activity/OActivityMyCalendar.vue.d.ts +8 -4
- package/dist/components/activity/index.d.ts +17 -15
- package/dist/components/config-provider/OPlusConfigProvider.vue.d.ts +24 -0
- package/dist/components/config-provider/index.d.ts +30 -0
- package/dist/components/cookie-notice/OCookieNotice.vue.d.ts +17 -0
- package/dist/components/cookie-notice/index.d.ts +53 -0
- package/dist/components/events/types.d.ts +4 -0
- package/dist/components/{OFooter.vue.d.ts → footer/OFooter.vue.d.ts} +2 -2
- package/dist/components/footer/index.d.ts +89 -0
- package/dist/components/header/index.d.ts +1 -0
- package/dist/components/header/types.d.ts +1 -0
- package/dist/components/{OLanguageSwitcher.vue.d.ts → header-language-switcher/OHeaderLanguageSwitcher.vue.d.ts} +5 -5
- package/dist/components/header-language-switcher/index.d.ts +90 -0
- package/dist/components/{OHeaderSearch.vue.d.ts → header-search/OHeaderSearch.vue.d.ts} +165 -145
- package/dist/components/header-search/index.d.ts +607 -0
- package/dist/components/header-source-code/OHeaderSourceCode.vue.d.ts +18 -0
- package/dist/components/header-source-code/index.d.ts +23 -0
- package/dist/components/header-theme/OHeaderTheme.vue.d.ts +25 -0
- package/dist/components/header-theme/index.d.ts +50 -0
- package/dist/components/{OHeaderUser.vue.d.ts → header-user/OHeaderUser.vue.d.ts} +7 -7
- package/dist/components/header-user/index.d.ts +53 -0
- package/dist/components/meeting/OMeetingCalendar.vue.d.ts +2 -2
- package/dist/components/meeting/OMeetingForm.vue.d.ts +4 -6
- package/dist/components/meeting/OMeetingMyCalendar.vue.d.ts +8 -4
- package/dist/components/meeting/OMeetingPlayback.vue.d.ts +4 -4
- package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +1 -0
- package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +1 -1
- package/dist/components/meeting/index.d.ts +11 -15
- package/dist/components/meeting/types.d.ts +6 -4
- package/dist/components/meeting/utils.d.ts +2 -1
- package/dist/components/search/OSearchInput.vue.d.ts +54 -34
- package/dist/components/search/index.d.ts +32 -22
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +41 -21
- package/dist/components/search/internal/SearchPanel.vue.d.ts +1 -1
- package/dist/components/{OSection.vue.d.ts → section/OSection.vue.d.ts} +4 -4
- package/dist/components/section/index.d.ts +47 -0
- package/dist/components.cjs.js +40 -40
- package/dist/components.css +1 -1
- package/dist/components.es.js +16758 -16562
- package/dist/index.d.ts +9 -14
- package/docs/design.md +2 -2
- package/package.json +8 -8
- package/scripts/generate-components-index.js +2 -44
- package/src/assets/meeting/svg-icons/icon-all.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-event.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-meet.svg +2 -1
- package/src/assets/meeting/svg-icons/icon-summit.svg +2 -1
- package/src/assets/styles/element-plus.scss +24 -0
- package/src/components/activity/OActivityMyCalendar.vue +19 -12
- package/src/components/common/ClientOnly.vue +13 -0
- package/src/components/{OPlusConfigProvider.vue → config-provider/OPlusConfigProvider.vue} +5 -5
- package/src/components/config-provider/index.ts +10 -0
- package/src/components/{OCookieNotice.vue → cookie-notice/OCookieNotice.vue} +1 -1
- package/src/components/cookie-notice/index.ts +10 -0
- package/src/components/element-plus/OElCookieNotice.vue +1 -1
- package/src/components/events/OEventsApply.vue +85 -1
- package/src/components/events/OEventsList.vue +112 -40
- package/src/components/events/types.ts +1 -0
- package/src/components/{OFooter.vue → footer/OFooter.vue} +4 -4
- package/src/components/footer/index.ts +10 -0
- package/src/components/header/index.ts +2 -0
- package/src/components/header/types.ts +1 -0
- package/src/components/header-language-switcher/index.ts +10 -0
- package/src/components/{OHeaderSearch.vue → header-search/OHeaderSearch.vue} +4 -4
- package/src/components/header-search/index.ts +10 -0
- package/src/components/{OSourceCode.vue → header-source-code/OHeaderSourceCode.vue} +2 -2
- package/src/components/header-source-code/index.ts +10 -0
- package/src/components/{OThemeSwitcher.vue → header-theme/OHeaderTheme.vue} +4 -4
- package/src/components/header-theme/index.ts +10 -0
- package/src/components/{OHeaderUser.vue → header-user/OHeaderUser.vue} +4 -4
- package/src/components/header-user/index.ts +10 -0
- package/src/components/meeting/OMeetingCalendar.vue +32 -21
- package/src/components/meeting/OMeetingForm.vue +44 -37
- package/src/components/meeting/OMeetingMyCalendar.vue +28 -38
- package/src/components/meeting/OMeetingSigCalendar.vue +43 -20
- package/src/components/meeting/components/OMeetingCalendarList.vue +80 -29
- package/src/components/meeting/components/OMeetingDetail.vue +29 -10
- package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +1 -1
- package/src/components/meeting/components/OMeetingSigAside.vue +11 -6
- package/src/components/meeting/types.ts +7 -5
- package/src/components/meeting/utils.ts +4 -4
- package/src/components/{OSection.vue → section/OSection.vue} +1 -1
- package/src/components/section/index.ts +10 -0
- package/src/i18n/en.ts +2 -2
- package/src/i18n/zh.ts +4 -2
- package/src/index.ts +9 -38
- package/dist/components/OCookieNotice.vue.d.ts +0 -17
- package/dist/components/OPlusConfigProvider.vue.d.ts +0 -23
- package/dist/components/OSourceCode.vue.d.ts +0 -18
- package/dist/components/OThemeSwitcher.vue.d.ts +0 -25
- package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +0 -664
- package/src/components/common/ClientOnlyWrapper.ts +0 -21
- /package/src/components/{OLanguageSwitcher.vue → header-language-switcher/OHeaderLanguageSwitcher.vue} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OSearchRecommendItem, OSearchUploadImageFn } from '
|
|
1
|
+
import { OSearchRecommendItem, OSearchUploadImageFn } from '../search/types';
|
|
2
2
|
export interface OHeaderSearchPropsT {
|
|
3
3
|
/** ---- Backward-compatible props ---- */
|
|
4
4
|
modelValue?: string;
|
|
@@ -95,7 +95,7 @@ declare function __VLS_template(): {
|
|
|
95
95
|
refs: {
|
|
96
96
|
wrapperRef: HTMLDivElement;
|
|
97
97
|
inputRef: ({
|
|
98
|
-
$: import('
|
|
98
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
99
99
|
$data: {};
|
|
100
100
|
$props: {
|
|
101
101
|
readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
@@ -115,13 +115,13 @@ declare function __VLS_template(): {
|
|
|
115
115
|
readonly preview?: boolean | undefined;
|
|
116
116
|
readonly disabled?: boolean | undefined;
|
|
117
117
|
readonly allowedImageTypes?: string[] | undefined;
|
|
118
|
-
} & import('
|
|
119
|
-
$attrs: import('
|
|
118
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
|
|
119
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
120
120
|
$refs: {
|
|
121
121
|
[x: string]: unknown;
|
|
122
122
|
} & {
|
|
123
123
|
inputRef: ({
|
|
124
|
-
$: import('
|
|
124
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
125
125
|
$data: {};
|
|
126
126
|
$props: Partial<{
|
|
127
127
|
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
@@ -130,6 +130,7 @@ declare function __VLS_template(): {
|
|
|
130
130
|
variant: "solid" | "outline" | "text";
|
|
131
131
|
clearable: boolean;
|
|
132
132
|
readonly: boolean;
|
|
133
|
+
noKeyboard: boolean;
|
|
133
134
|
showLength: "auto" | "always" | "never";
|
|
134
135
|
inputOnOutlimit: boolean;
|
|
135
136
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -137,22 +138,23 @@ declare function __VLS_template(): {
|
|
|
137
138
|
passwordPlaceholder: string;
|
|
138
139
|
onlyNumericInput: boolean;
|
|
139
140
|
}> & Omit<{
|
|
140
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
141
|
-
readonly variant: "text" | "solid" | "outline";
|
|
142
|
-
readonly disabled: boolean;
|
|
143
141
|
readonly type: "text" | "password";
|
|
144
|
-
readonly
|
|
142
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
143
|
+
readonly variant: "solid" | "outline" | "text";
|
|
144
|
+
readonly disabled: boolean;
|
|
145
145
|
readonly readonly: boolean;
|
|
146
|
+
readonly noKeyboard: boolean;
|
|
147
|
+
readonly clearable: boolean;
|
|
146
148
|
readonly showLength: "auto" | "always" | "never";
|
|
147
149
|
readonly inputOnOutlimit: boolean;
|
|
148
150
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
149
151
|
readonly autoWidth: boolean;
|
|
150
152
|
readonly passwordPlaceholder: string;
|
|
151
153
|
readonly onlyNumericInput: boolean;
|
|
152
|
-
readonly size?: "small" | "
|
|
153
|
-
readonly defaultValue?: string | number | undefined;
|
|
154
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
154
155
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
155
156
|
readonly modelValue?: string | number | undefined;
|
|
157
|
+
readonly defaultValue?: string | number | undefined;
|
|
156
158
|
readonly placeholder?: string | undefined;
|
|
157
159
|
readonly inputId?: string | undefined;
|
|
158
160
|
readonly minLength?: number | undefined;
|
|
@@ -168,32 +170,32 @@ declare function __VLS_template(): {
|
|
|
168
170
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
169
171
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
170
172
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
171
|
-
} & import('
|
|
172
|
-
$attrs: import('
|
|
173
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
174
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
173
175
|
$refs: {
|
|
174
176
|
[x: string]: unknown;
|
|
175
177
|
};
|
|
176
178
|
$slots: Readonly<{
|
|
177
|
-
[name: string]: import('
|
|
179
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
178
180
|
}>;
|
|
179
|
-
$root: import('
|
|
180
|
-
$parent: import('
|
|
181
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
182
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
181
183
|
$host: Element | null;
|
|
182
|
-
$emit: ((event: "
|
|
184
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
183
185
|
$el: any;
|
|
184
|
-
$options: import('
|
|
186
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
185
187
|
size: {
|
|
186
|
-
type: import('
|
|
188
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
187
189
|
};
|
|
188
190
|
round: {
|
|
189
|
-
type: import('
|
|
191
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
190
192
|
};
|
|
191
193
|
color: {
|
|
192
|
-
type: import('
|
|
194
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
193
195
|
default: string;
|
|
194
196
|
};
|
|
195
197
|
variant: {
|
|
196
|
-
type: import('
|
|
198
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
197
199
|
default: string;
|
|
198
200
|
};
|
|
199
201
|
modelValue: {
|
|
@@ -203,7 +205,7 @@ declare function __VLS_template(): {
|
|
|
203
205
|
type: (NumberConstructor | StringConstructor)[];
|
|
204
206
|
};
|
|
205
207
|
type: {
|
|
206
|
-
type: import('
|
|
208
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
207
209
|
default: string;
|
|
208
210
|
};
|
|
209
211
|
placeholder: {
|
|
@@ -218,6 +220,9 @@ declare function __VLS_template(): {
|
|
|
218
220
|
readonly: {
|
|
219
221
|
type: BooleanConstructor;
|
|
220
222
|
};
|
|
223
|
+
noKeyboard: {
|
|
224
|
+
type: BooleanConstructor;
|
|
225
|
+
};
|
|
221
226
|
clearable: {
|
|
222
227
|
type: BooleanConstructor;
|
|
223
228
|
};
|
|
@@ -228,27 +233,27 @@ declare function __VLS_template(): {
|
|
|
228
233
|
type: NumberConstructor;
|
|
229
234
|
};
|
|
230
235
|
showLength: {
|
|
231
|
-
type: import('
|
|
236
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
232
237
|
default: string;
|
|
233
238
|
};
|
|
234
239
|
getLength: {
|
|
235
|
-
type: import('
|
|
240
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
236
241
|
};
|
|
237
242
|
inputOnOutlimit: {
|
|
238
243
|
type: BooleanConstructor;
|
|
239
244
|
default: boolean;
|
|
240
245
|
};
|
|
241
246
|
format: {
|
|
242
|
-
type: import('
|
|
247
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
243
248
|
};
|
|
244
249
|
validate: {
|
|
245
|
-
type: import('
|
|
250
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
246
251
|
};
|
|
247
252
|
valueOnInvalidChange: {
|
|
248
|
-
type: import('
|
|
253
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
249
254
|
};
|
|
250
255
|
showPasswordEvent: {
|
|
251
|
-
type: import('
|
|
256
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
252
257
|
default: string;
|
|
253
258
|
};
|
|
254
259
|
autoWidth: {
|
|
@@ -275,7 +280,7 @@ declare function __VLS_template(): {
|
|
|
275
280
|
clear: () => void | undefined;
|
|
276
281
|
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
277
282
|
togglePassword: () => void | undefined;
|
|
278
|
-
}, {}, {}, {}, import('
|
|
283
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
279
284
|
input: (evt: Event, value: string) => any;
|
|
280
285
|
clear: (evt?: Event | undefined) => any;
|
|
281
286
|
blur: (evt: FocusEvent) => any;
|
|
@@ -290,13 +295,14 @@ declare function __VLS_template(): {
|
|
|
290
295
|
variant: "solid" | "outline" | "text";
|
|
291
296
|
clearable: boolean;
|
|
292
297
|
readonly: boolean;
|
|
298
|
+
noKeyboard: boolean;
|
|
293
299
|
showLength: "auto" | "always" | "never";
|
|
294
300
|
inputOnOutlimit: boolean;
|
|
295
301
|
showPasswordEvent: "click" | "pointerdown";
|
|
296
302
|
autoWidth: boolean;
|
|
297
303
|
passwordPlaceholder: string;
|
|
298
304
|
onlyNumericInput: boolean;
|
|
299
|
-
}, {}, string, {}, import('
|
|
305
|
+
}, {}, 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> & {
|
|
300
306
|
beforeCreate?: (() => void) | (() => void)[];
|
|
301
307
|
created?: (() => void) | (() => void)[];
|
|
302
308
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -309,13 +315,13 @@ declare function __VLS_template(): {
|
|
|
309
315
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
310
316
|
destroyed?: (() => void) | (() => void)[];
|
|
311
317
|
unmounted?: (() => void) | (() => void)[];
|
|
312
|
-
renderTracked?: ((e: import('
|
|
313
|
-
renderTriggered?: ((e: import('
|
|
314
|
-
errorCaptured?: ((err: unknown, instance: import('
|
|
318
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
319
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
320
|
+
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)[];
|
|
315
321
|
};
|
|
316
322
|
$forceUpdate: () => void;
|
|
317
|
-
$nextTick: typeof import('
|
|
318
|
-
$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('
|
|
323
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
324
|
+
$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;
|
|
319
325
|
} & Readonly<{
|
|
320
326
|
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
321
327
|
type: "text" | "password";
|
|
@@ -323,25 +329,26 @@ declare function __VLS_template(): {
|
|
|
323
329
|
variant: "solid" | "outline" | "text";
|
|
324
330
|
clearable: boolean;
|
|
325
331
|
readonly: boolean;
|
|
332
|
+
noKeyboard: boolean;
|
|
326
333
|
showLength: "auto" | "always" | "never";
|
|
327
334
|
inputOnOutlimit: boolean;
|
|
328
335
|
showPasswordEvent: "click" | "pointerdown";
|
|
329
336
|
autoWidth: boolean;
|
|
330
337
|
passwordPlaceholder: string;
|
|
331
338
|
onlyNumericInput: boolean;
|
|
332
|
-
}> & Omit<Readonly<import('
|
|
339
|
+
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
333
340
|
size: {
|
|
334
|
-
type: import('
|
|
341
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
335
342
|
};
|
|
336
343
|
round: {
|
|
337
|
-
type: import('
|
|
344
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
338
345
|
};
|
|
339
346
|
color: {
|
|
340
|
-
type: import('
|
|
347
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
341
348
|
default: string;
|
|
342
349
|
};
|
|
343
350
|
variant: {
|
|
344
|
-
type: import('
|
|
351
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
345
352
|
default: string;
|
|
346
353
|
};
|
|
347
354
|
modelValue: {
|
|
@@ -351,7 +358,7 @@ declare function __VLS_template(): {
|
|
|
351
358
|
type: (NumberConstructor | StringConstructor)[];
|
|
352
359
|
};
|
|
353
360
|
type: {
|
|
354
|
-
type: import('
|
|
361
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
355
362
|
default: string;
|
|
356
363
|
};
|
|
357
364
|
placeholder: {
|
|
@@ -366,6 +373,9 @@ declare function __VLS_template(): {
|
|
|
366
373
|
readonly: {
|
|
367
374
|
type: BooleanConstructor;
|
|
368
375
|
};
|
|
376
|
+
noKeyboard: {
|
|
377
|
+
type: BooleanConstructor;
|
|
378
|
+
};
|
|
369
379
|
clearable: {
|
|
370
380
|
type: BooleanConstructor;
|
|
371
381
|
};
|
|
@@ -376,27 +386,27 @@ declare function __VLS_template(): {
|
|
|
376
386
|
type: NumberConstructor;
|
|
377
387
|
};
|
|
378
388
|
showLength: {
|
|
379
|
-
type: import('
|
|
389
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
380
390
|
default: string;
|
|
381
391
|
};
|
|
382
392
|
getLength: {
|
|
383
|
-
type: import('
|
|
393
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
384
394
|
};
|
|
385
395
|
inputOnOutlimit: {
|
|
386
396
|
type: BooleanConstructor;
|
|
387
397
|
default: boolean;
|
|
388
398
|
};
|
|
389
399
|
format: {
|
|
390
|
-
type: import('
|
|
400
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
391
401
|
};
|
|
392
402
|
validate: {
|
|
393
|
-
type: import('
|
|
403
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
394
404
|
};
|
|
395
405
|
valueOnInvalidChange: {
|
|
396
|
-
type: import('
|
|
406
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
397
407
|
};
|
|
398
408
|
showPasswordEvent: {
|
|
399
|
-
type: import('
|
|
409
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
400
410
|
default: string;
|
|
401
411
|
};
|
|
402
412
|
autoWidth: {
|
|
@@ -417,13 +427,13 @@ declare function __VLS_template(): {
|
|
|
417
427
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
418
428
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
419
429
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
420
|
-
}>, "
|
|
430
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
421
431
|
focus: () => void | undefined;
|
|
422
432
|
blur: () => void | undefined;
|
|
423
433
|
clear: () => void | undefined;
|
|
424
434
|
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
425
435
|
togglePassword: () => void | undefined;
|
|
426
|
-
} & {} & import('
|
|
436
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
427
437
|
$slots: Readonly<{
|
|
428
438
|
default(): any;
|
|
429
439
|
prepend(): any;
|
|
@@ -442,14 +452,14 @@ declare function __VLS_template(): {
|
|
|
442
452
|
fileInputRef: HTMLInputElement;
|
|
443
453
|
};
|
|
444
454
|
$slots: Readonly<{
|
|
445
|
-
[name: string]: import('
|
|
455
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
446
456
|
}>;
|
|
447
|
-
$root: import('
|
|
448
|
-
$parent: import('
|
|
457
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
458
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
449
459
|
$host: Element | null;
|
|
450
460
|
$emit: (event: string, ...args: any[]) => void;
|
|
451
461
|
$el: HTMLDivElement;
|
|
452
|
-
$options: import('
|
|
462
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
453
463
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
454
464
|
}>, {
|
|
455
465
|
focus: () => void | undefined;
|
|
@@ -458,7 +468,7 @@ declare function __VLS_template(): {
|
|
|
458
468
|
getUploadedUrl: () => string;
|
|
459
469
|
getIsUploading: () => boolean;
|
|
460
470
|
resetImage: () => void;
|
|
461
|
-
}, {}, {}, {}, import('
|
|
471
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
462
472
|
[x: string]: any;
|
|
463
473
|
} & {
|
|
464
474
|
[x: string]: any;
|
|
@@ -466,16 +476,16 @@ declare function __VLS_template(): {
|
|
|
466
476
|
size: "small" | "medium" | "large";
|
|
467
477
|
disabled: boolean;
|
|
468
478
|
modelValue: string;
|
|
479
|
+
clearable: boolean;
|
|
480
|
+
expanded: boolean;
|
|
481
|
+
preview: boolean;
|
|
469
482
|
imageUrl: string;
|
|
470
483
|
enableImageSearch: boolean;
|
|
471
484
|
maxImageSize: number;
|
|
472
|
-
expanded: boolean;
|
|
473
|
-
clearable: boolean;
|
|
474
485
|
showSuffix: boolean;
|
|
475
486
|
inlineThumbnail: boolean;
|
|
476
|
-
preview: boolean;
|
|
477
487
|
allowedImageTypes: string[];
|
|
478
|
-
}, {}, string, {}, import('
|
|
488
|
+
}, {}, 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> & {
|
|
479
489
|
beforeCreate?: (() => void) | (() => void)[];
|
|
480
490
|
created?: (() => void) | (() => void)[];
|
|
481
491
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -488,36 +498,36 @@ declare function __VLS_template(): {
|
|
|
488
498
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
489
499
|
destroyed?: (() => void) | (() => void)[];
|
|
490
500
|
unmounted?: (() => void) | (() => void)[];
|
|
491
|
-
renderTracked?: ((e: import('
|
|
492
|
-
renderTriggered?: ((e: import('
|
|
493
|
-
errorCaptured?: ((err: unknown, instance: import('
|
|
501
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
502
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
503
|
+
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)[];
|
|
494
504
|
};
|
|
495
505
|
$forceUpdate: () => void;
|
|
496
|
-
$nextTick: typeof import('
|
|
497
|
-
$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('
|
|
506
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
507
|
+
$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;
|
|
498
508
|
} & Readonly<{
|
|
499
509
|
size: "small" | "medium" | "large";
|
|
500
510
|
disabled: boolean;
|
|
501
511
|
modelValue: string;
|
|
512
|
+
clearable: boolean;
|
|
513
|
+
expanded: boolean;
|
|
514
|
+
preview: boolean;
|
|
502
515
|
imageUrl: string;
|
|
503
516
|
enableImageSearch: boolean;
|
|
504
517
|
maxImageSize: number;
|
|
505
|
-
expanded: boolean;
|
|
506
|
-
clearable: boolean;
|
|
507
518
|
showSuffix: boolean;
|
|
508
519
|
inlineThumbnail: boolean;
|
|
509
|
-
preview: boolean;
|
|
510
520
|
allowedImageTypes: string[];
|
|
511
|
-
}> & Omit<Readonly<import('
|
|
521
|
+
}> & Omit<Readonly<import('../search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
512
522
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
513
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "
|
|
523
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
|
|
514
524
|
focus: () => void | undefined;
|
|
515
525
|
blur: () => void | undefined;
|
|
516
526
|
awaitUpload: () => Promise<void>;
|
|
517
527
|
getUploadedUrl: () => string;
|
|
518
528
|
getIsUploading: () => boolean;
|
|
519
529
|
resetImage: () => void;
|
|
520
|
-
} & {} & import('
|
|
530
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
521
531
|
$slots: {
|
|
522
532
|
prefix?(_: {}): any;
|
|
523
533
|
suffix?(_: {
|
|
@@ -533,24 +543,25 @@ declare function __VLS_template(): {
|
|
|
533
543
|
rootEl: HTMLDivElement;
|
|
534
544
|
};
|
|
535
545
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
536
|
-
declare const __VLS_component: import('
|
|
546
|
+
declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').DefineComponent<OHeaderSearchPropsT, {
|
|
537
547
|
focus: () => void | undefined;
|
|
538
548
|
blur: () => void | undefined;
|
|
539
549
|
open: () => void;
|
|
540
550
|
close: () => void;
|
|
541
551
|
search: (overrideKeyword?: string) => Promise<void>;
|
|
542
|
-
}, {}, {}, {}, import('
|
|
552
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
543
553
|
[x: string]: any;
|
|
544
554
|
} & {
|
|
545
555
|
[x: string]: any;
|
|
546
|
-
}, string, import('
|
|
556
|
+
}, string, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, Readonly<OHeaderSearchPropsT> & Readonly<{
|
|
547
557
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
548
558
|
}>, {
|
|
549
559
|
modelValue: string;
|
|
560
|
+
clearable: boolean;
|
|
561
|
+
debounce: number;
|
|
550
562
|
imageUrl: string;
|
|
551
563
|
enableImageSearch: boolean;
|
|
552
564
|
maxImageSize: number;
|
|
553
|
-
clearable: boolean;
|
|
554
565
|
onestepItems: OSearchRecommendItem[];
|
|
555
566
|
suggestItems: OSearchRecommendItem[];
|
|
556
567
|
recommendItems: string[];
|
|
@@ -563,12 +574,11 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
563
574
|
maxHistoryCount: number;
|
|
564
575
|
expandDirection: "left" | "right";
|
|
565
576
|
searchUrlOpenBlank: boolean;
|
|
566
|
-
debounce: number;
|
|
567
577
|
autoSaveHistory: boolean;
|
|
568
|
-
}, {}, {}, {}, string, import('
|
|
578
|
+
}, {}, {}, {}, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions, false, {
|
|
569
579
|
wrapperRef: HTMLDivElement;
|
|
570
580
|
inputRef: ({
|
|
571
|
-
$: import('
|
|
581
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
572
582
|
$data: {};
|
|
573
583
|
$props: {
|
|
574
584
|
readonly [x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
@@ -588,13 +598,13 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
588
598
|
readonly preview?: boolean | undefined;
|
|
589
599
|
readonly disabled?: boolean | undefined;
|
|
590
600
|
readonly allowedImageTypes?: string[] | undefined;
|
|
591
|
-
} & import('
|
|
592
|
-
$attrs: import('
|
|
601
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps;
|
|
602
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
593
603
|
$refs: {
|
|
594
604
|
[x: string]: unknown;
|
|
595
605
|
} & {
|
|
596
606
|
inputRef: ({
|
|
597
|
-
$: import('
|
|
607
|
+
$: import('../../../vue/dist/vue.esm-bundler.js').ComponentInternalInstance;
|
|
598
608
|
$data: {};
|
|
599
609
|
$props: Partial<{
|
|
600
610
|
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
@@ -603,6 +613,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
603
613
|
variant: "solid" | "outline" | "text";
|
|
604
614
|
clearable: boolean;
|
|
605
615
|
readonly: boolean;
|
|
616
|
+
noKeyboard: boolean;
|
|
606
617
|
showLength: "auto" | "always" | "never";
|
|
607
618
|
inputOnOutlimit: boolean;
|
|
608
619
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -610,22 +621,23 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
610
621
|
passwordPlaceholder: string;
|
|
611
622
|
onlyNumericInput: boolean;
|
|
612
623
|
}> & Omit<{
|
|
613
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
614
|
-
readonly variant: "text" | "solid" | "outline";
|
|
615
|
-
readonly disabled: boolean;
|
|
616
624
|
readonly type: "text" | "password";
|
|
617
|
-
readonly
|
|
625
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
626
|
+
readonly variant: "solid" | "outline" | "text";
|
|
627
|
+
readonly disabled: boolean;
|
|
618
628
|
readonly readonly: boolean;
|
|
629
|
+
readonly noKeyboard: boolean;
|
|
630
|
+
readonly clearable: boolean;
|
|
619
631
|
readonly showLength: "auto" | "always" | "never";
|
|
620
632
|
readonly inputOnOutlimit: boolean;
|
|
621
633
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
622
634
|
readonly autoWidth: boolean;
|
|
623
635
|
readonly passwordPlaceholder: string;
|
|
624
636
|
readonly onlyNumericInput: boolean;
|
|
625
|
-
readonly size?: "small" | "
|
|
626
|
-
readonly defaultValue?: string | number | undefined;
|
|
637
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
627
638
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
628
639
|
readonly modelValue?: string | number | undefined;
|
|
640
|
+
readonly defaultValue?: string | number | undefined;
|
|
629
641
|
readonly placeholder?: string | undefined;
|
|
630
642
|
readonly inputId?: string | undefined;
|
|
631
643
|
readonly minLength?: number | undefined;
|
|
@@ -641,32 +653,32 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
641
653
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
642
654
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
643
655
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
644
|
-
} & import('
|
|
645
|
-
$attrs: import('
|
|
656
|
+
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "type" | "color" | "variant" | "disabled" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput">;
|
|
657
|
+
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
646
658
|
$refs: {
|
|
647
659
|
[x: string]: unknown;
|
|
648
660
|
};
|
|
649
661
|
$slots: Readonly<{
|
|
650
|
-
[name: string]: import('
|
|
662
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
651
663
|
}>;
|
|
652
|
-
$root: import('
|
|
653
|
-
$parent: import('
|
|
664
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
665
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
654
666
|
$host: Element | null;
|
|
655
|
-
$emit: ((event: "
|
|
667
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
656
668
|
$el: any;
|
|
657
|
-
$options: import('
|
|
669
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
658
670
|
size: {
|
|
659
|
-
type: import('
|
|
671
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
660
672
|
};
|
|
661
673
|
round: {
|
|
662
|
-
type: import('
|
|
674
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
663
675
|
};
|
|
664
676
|
color: {
|
|
665
|
-
type: import('
|
|
677
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
666
678
|
default: string;
|
|
667
679
|
};
|
|
668
680
|
variant: {
|
|
669
|
-
type: import('
|
|
681
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
670
682
|
default: string;
|
|
671
683
|
};
|
|
672
684
|
modelValue: {
|
|
@@ -676,7 +688,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
676
688
|
type: (NumberConstructor | StringConstructor)[];
|
|
677
689
|
};
|
|
678
690
|
type: {
|
|
679
|
-
type: import('
|
|
691
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
680
692
|
default: string;
|
|
681
693
|
};
|
|
682
694
|
placeholder: {
|
|
@@ -691,6 +703,9 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
691
703
|
readonly: {
|
|
692
704
|
type: BooleanConstructor;
|
|
693
705
|
};
|
|
706
|
+
noKeyboard: {
|
|
707
|
+
type: BooleanConstructor;
|
|
708
|
+
};
|
|
694
709
|
clearable: {
|
|
695
710
|
type: BooleanConstructor;
|
|
696
711
|
};
|
|
@@ -701,27 +716,27 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
701
716
|
type: NumberConstructor;
|
|
702
717
|
};
|
|
703
718
|
showLength: {
|
|
704
|
-
type: import('
|
|
719
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
705
720
|
default: string;
|
|
706
721
|
};
|
|
707
722
|
getLength: {
|
|
708
|
-
type: import('
|
|
723
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
709
724
|
};
|
|
710
725
|
inputOnOutlimit: {
|
|
711
726
|
type: BooleanConstructor;
|
|
712
727
|
default: boolean;
|
|
713
728
|
};
|
|
714
729
|
format: {
|
|
715
|
-
type: import('
|
|
730
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
716
731
|
};
|
|
717
732
|
validate: {
|
|
718
|
-
type: import('
|
|
733
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
719
734
|
};
|
|
720
735
|
valueOnInvalidChange: {
|
|
721
|
-
type: import('
|
|
736
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
722
737
|
};
|
|
723
738
|
showPasswordEvent: {
|
|
724
|
-
type: import('
|
|
739
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
725
740
|
default: string;
|
|
726
741
|
};
|
|
727
742
|
autoWidth: {
|
|
@@ -748,7 +763,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
748
763
|
clear: () => void | undefined;
|
|
749
764
|
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
750
765
|
togglePassword: () => void | undefined;
|
|
751
|
-
}, {}, {}, {}, import('
|
|
766
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
752
767
|
input: (evt: Event, value: string) => any;
|
|
753
768
|
clear: (evt?: Event | undefined) => any;
|
|
754
769
|
blur: (evt: FocusEvent) => any;
|
|
@@ -763,13 +778,14 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
763
778
|
variant: "solid" | "outline" | "text";
|
|
764
779
|
clearable: boolean;
|
|
765
780
|
readonly: boolean;
|
|
781
|
+
noKeyboard: boolean;
|
|
766
782
|
showLength: "auto" | "always" | "never";
|
|
767
783
|
inputOnOutlimit: boolean;
|
|
768
784
|
showPasswordEvent: "click" | "pointerdown";
|
|
769
785
|
autoWidth: boolean;
|
|
770
786
|
passwordPlaceholder: string;
|
|
771
787
|
onlyNumericInput: boolean;
|
|
772
|
-
}, {}, string, {}, import('
|
|
788
|
+
}, {}, 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> & {
|
|
773
789
|
beforeCreate?: (() => void) | (() => void)[];
|
|
774
790
|
created?: (() => void) | (() => void)[];
|
|
775
791
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -782,13 +798,13 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
782
798
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
783
799
|
destroyed?: (() => void) | (() => void)[];
|
|
784
800
|
unmounted?: (() => void) | (() => void)[];
|
|
785
|
-
renderTracked?: ((e: import('
|
|
786
|
-
renderTriggered?: ((e: import('
|
|
787
|
-
errorCaptured?: ((err: unknown, instance: import('
|
|
801
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
802
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
803
|
+
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)[];
|
|
788
804
|
};
|
|
789
805
|
$forceUpdate: () => void;
|
|
790
|
-
$nextTick: typeof import('
|
|
791
|
-
$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('
|
|
806
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
807
|
+
$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;
|
|
792
808
|
} & Readonly<{
|
|
793
809
|
color: "normal" | "primary" | "success" | "warning" | "danger";
|
|
794
810
|
type: "text" | "password";
|
|
@@ -796,25 +812,26 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
796
812
|
variant: "solid" | "outline" | "text";
|
|
797
813
|
clearable: boolean;
|
|
798
814
|
readonly: boolean;
|
|
815
|
+
noKeyboard: boolean;
|
|
799
816
|
showLength: "auto" | "always" | "never";
|
|
800
817
|
inputOnOutlimit: boolean;
|
|
801
818
|
showPasswordEvent: "click" | "pointerdown";
|
|
802
819
|
autoWidth: boolean;
|
|
803
820
|
passwordPlaceholder: string;
|
|
804
821
|
onlyNumericInput: boolean;
|
|
805
|
-
}> & Omit<Readonly<import('
|
|
822
|
+
}> & Omit<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
806
823
|
size: {
|
|
807
|
-
type: import('
|
|
824
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').SizeT>;
|
|
808
825
|
};
|
|
809
826
|
round: {
|
|
810
|
-
type: import('
|
|
827
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').RoundT>;
|
|
811
828
|
};
|
|
812
829
|
color: {
|
|
813
|
-
type: import('
|
|
830
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').Color2T>;
|
|
814
831
|
default: string;
|
|
815
832
|
};
|
|
816
833
|
variant: {
|
|
817
|
-
type: import('
|
|
834
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<import('@opensig/opendesign').VariantT>;
|
|
818
835
|
default: string;
|
|
819
836
|
};
|
|
820
837
|
modelValue: {
|
|
@@ -824,7 +841,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
824
841
|
type: (NumberConstructor | StringConstructor)[];
|
|
825
842
|
};
|
|
826
843
|
type: {
|
|
827
|
-
type: import('
|
|
844
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"text" | "password">;
|
|
828
845
|
default: string;
|
|
829
846
|
};
|
|
830
847
|
placeholder: {
|
|
@@ -839,6 +856,9 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
839
856
|
readonly: {
|
|
840
857
|
type: BooleanConstructor;
|
|
841
858
|
};
|
|
859
|
+
noKeyboard: {
|
|
860
|
+
type: BooleanConstructor;
|
|
861
|
+
};
|
|
842
862
|
clearable: {
|
|
843
863
|
type: BooleanConstructor;
|
|
844
864
|
};
|
|
@@ -849,27 +869,27 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
849
869
|
type: NumberConstructor;
|
|
850
870
|
};
|
|
851
871
|
showLength: {
|
|
852
|
-
type: import('
|
|
872
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"always" | "auto" | "never">;
|
|
853
873
|
default: string;
|
|
854
874
|
};
|
|
855
875
|
getLength: {
|
|
856
|
-
type: import('
|
|
876
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(val: string) => number>;
|
|
857
877
|
};
|
|
858
878
|
inputOnOutlimit: {
|
|
859
879
|
type: BooleanConstructor;
|
|
860
880
|
default: boolean;
|
|
861
881
|
};
|
|
862
882
|
format: {
|
|
863
|
-
type: import('
|
|
883
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => string>;
|
|
864
884
|
};
|
|
865
885
|
validate: {
|
|
866
|
-
type: import('
|
|
886
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<(value: string) => boolean>;
|
|
867
887
|
};
|
|
868
888
|
valueOnInvalidChange: {
|
|
869
|
-
type: import('
|
|
889
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<boolean | ((inputValue: string, lastValidInputValue: string) => string)>;
|
|
870
890
|
};
|
|
871
891
|
showPasswordEvent: {
|
|
872
|
-
type: import('
|
|
892
|
+
type: import('../../../vue/dist/vue.esm-bundler.js').PropType<"click" | "pointerdown">;
|
|
873
893
|
default: string;
|
|
874
894
|
};
|
|
875
895
|
autoWidth: {
|
|
@@ -890,13 +910,13 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
890
910
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
891
911
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
892
912
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
893
|
-
}>, "
|
|
913
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
894
914
|
focus: () => void | undefined;
|
|
895
915
|
blur: () => void | undefined;
|
|
896
916
|
clear: () => void | undefined;
|
|
897
917
|
inputEl: () => HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
898
918
|
togglePassword: () => void | undefined;
|
|
899
|
-
} & {} & import('
|
|
919
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
900
920
|
$slots: Readonly<{
|
|
901
921
|
default(): any;
|
|
902
922
|
prepend(): any;
|
|
@@ -915,14 +935,14 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
915
935
|
fileInputRef: HTMLInputElement;
|
|
916
936
|
};
|
|
917
937
|
$slots: Readonly<{
|
|
918
|
-
[name: string]: import('
|
|
938
|
+
[name: string]: import('../../../vue/dist/vue.esm-bundler.js').Slot<any> | undefined;
|
|
919
939
|
}>;
|
|
920
|
-
$root: import('
|
|
921
|
-
$parent: import('
|
|
940
|
+
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
941
|
+
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
922
942
|
$host: Element | null;
|
|
923
943
|
$emit: (event: string, ...args: any[]) => void;
|
|
924
944
|
$el: HTMLDivElement;
|
|
925
|
-
$options: import('
|
|
945
|
+
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
926
946
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
927
947
|
}>, {
|
|
928
948
|
focus: () => void | undefined;
|
|
@@ -931,7 +951,7 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
931
951
|
getUploadedUrl: () => string;
|
|
932
952
|
getIsUploading: () => boolean;
|
|
933
953
|
resetImage: () => void;
|
|
934
|
-
}, {}, {}, {}, import('
|
|
954
|
+
}, {}, {}, {}, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {
|
|
935
955
|
[x: string]: any;
|
|
936
956
|
} & {
|
|
937
957
|
[x: string]: any;
|
|
@@ -939,16 +959,16 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
939
959
|
size: "small" | "medium" | "large";
|
|
940
960
|
disabled: boolean;
|
|
941
961
|
modelValue: string;
|
|
962
|
+
clearable: boolean;
|
|
963
|
+
expanded: boolean;
|
|
964
|
+
preview: boolean;
|
|
942
965
|
imageUrl: string;
|
|
943
966
|
enableImageSearch: boolean;
|
|
944
967
|
maxImageSize: number;
|
|
945
|
-
expanded: boolean;
|
|
946
|
-
clearable: boolean;
|
|
947
968
|
showSuffix: boolean;
|
|
948
969
|
inlineThumbnail: boolean;
|
|
949
|
-
preview: boolean;
|
|
950
970
|
allowedImageTypes: string[];
|
|
951
|
-
}, {}, string, {}, import('
|
|
971
|
+
}, {}, 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> & {
|
|
952
972
|
beforeCreate?: (() => void) | (() => void)[];
|
|
953
973
|
created?: (() => void) | (() => void)[];
|
|
954
974
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -961,36 +981,36 @@ declare const __VLS_component: import('../../vue/dist/vue.esm-bundler.js').Defin
|
|
|
961
981
|
beforeUnmount?: (() => void) | (() => void)[];
|
|
962
982
|
destroyed?: (() => void) | (() => void)[];
|
|
963
983
|
unmounted?: (() => void) | (() => void)[];
|
|
964
|
-
renderTracked?: ((e: import('
|
|
965
|
-
renderTriggered?: ((e: import('
|
|
966
|
-
errorCaptured?: ((err: unknown, instance: import('
|
|
984
|
+
renderTracked?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
985
|
+
renderTriggered?: ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void) | ((e: import('../../../vue/dist/vue.esm-bundler.js').DebuggerEvent) => void)[];
|
|
986
|
+
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)[];
|
|
967
987
|
};
|
|
968
988
|
$forceUpdate: () => void;
|
|
969
|
-
$nextTick: typeof import('
|
|
970
|
-
$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('
|
|
989
|
+
$nextTick: typeof import('../../../vue/dist/vue.esm-bundler.js').nextTick;
|
|
990
|
+
$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;
|
|
971
991
|
} & Readonly<{
|
|
972
992
|
size: "small" | "medium" | "large";
|
|
973
993
|
disabled: boolean;
|
|
974
994
|
modelValue: string;
|
|
995
|
+
clearable: boolean;
|
|
996
|
+
expanded: boolean;
|
|
997
|
+
preview: boolean;
|
|
975
998
|
imageUrl: string;
|
|
976
999
|
enableImageSearch: boolean;
|
|
977
1000
|
maxImageSize: number;
|
|
978
|
-
expanded: boolean;
|
|
979
|
-
clearable: boolean;
|
|
980
1001
|
showSuffix: boolean;
|
|
981
1002
|
inlineThumbnail: boolean;
|
|
982
|
-
preview: boolean;
|
|
983
1003
|
allowedImageTypes: string[];
|
|
984
|
-
}> & Omit<Readonly<import('
|
|
1004
|
+
}> & Omit<Readonly<import('../search/internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
985
1005
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
986
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "
|
|
1006
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
|
|
987
1007
|
focus: () => void | undefined;
|
|
988
1008
|
blur: () => void | undefined;
|
|
989
1009
|
awaitUpload: () => Promise<void>;
|
|
990
1010
|
getUploadedUrl: () => string;
|
|
991
1011
|
getIsUploading: () => boolean;
|
|
992
1012
|
resetImage: () => void;
|
|
993
|
-
} & {} & import('
|
|
1013
|
+
} & {} & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProperties & {} & {
|
|
994
1014
|
$slots: {
|
|
995
1015
|
prefix?(_: {}): any;
|
|
996
1016
|
suffix?(_: {
|