@opendesign-plus/components 0.0.1-rc.28 → 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 +2 -2
- 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/src/components/common/ClientOnlyWrapper.ts +0 -21
- /package/src/components/{OLanguageSwitcher.vue → header-language-switcher/OHeaderLanguageSwitcher.vue} +0 -0
|
@@ -121,6 +121,7 @@ declare function __VLS_template(): {
|
|
|
121
121
|
variant: "solid" | "outline" | "text";
|
|
122
122
|
clearable: boolean;
|
|
123
123
|
readonly: boolean;
|
|
124
|
+
noKeyboard: boolean;
|
|
124
125
|
showLength: "auto" | "always" | "never";
|
|
125
126
|
inputOnOutlimit: boolean;
|
|
126
127
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -128,22 +129,23 @@ declare function __VLS_template(): {
|
|
|
128
129
|
passwordPlaceholder: string;
|
|
129
130
|
onlyNumericInput: boolean;
|
|
130
131
|
}> & Omit<{
|
|
131
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
132
|
-
readonly variant: "text" | "solid" | "outline";
|
|
133
|
-
readonly disabled: boolean;
|
|
134
132
|
readonly type: "text" | "password";
|
|
135
|
-
readonly
|
|
133
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
134
|
+
readonly variant: "solid" | "outline" | "text";
|
|
135
|
+
readonly disabled: boolean;
|
|
136
136
|
readonly readonly: boolean;
|
|
137
|
+
readonly noKeyboard: boolean;
|
|
138
|
+
readonly clearable: boolean;
|
|
137
139
|
readonly showLength: "auto" | "always" | "never";
|
|
138
140
|
readonly inputOnOutlimit: boolean;
|
|
139
141
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
140
142
|
readonly autoWidth: boolean;
|
|
141
143
|
readonly passwordPlaceholder: string;
|
|
142
144
|
readonly onlyNumericInput: boolean;
|
|
143
|
-
readonly size?: "small" | "
|
|
144
|
-
readonly defaultValue?: string | number | undefined;
|
|
145
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
145
146
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
146
147
|
readonly modelValue?: string | number | undefined;
|
|
148
|
+
readonly defaultValue?: string | number | undefined;
|
|
147
149
|
readonly placeholder?: string | undefined;
|
|
148
150
|
readonly inputId?: string | undefined;
|
|
149
151
|
readonly minLength?: number | undefined;
|
|
@@ -159,7 +161,7 @@ declare function __VLS_template(): {
|
|
|
159
161
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
160
162
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
161
163
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
162
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "color" | "variant" | "disabled" | "
|
|
164
|
+
} & 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">;
|
|
163
165
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
164
166
|
$refs: {
|
|
165
167
|
[x: string]: unknown;
|
|
@@ -170,7 +172,7 @@ declare function __VLS_template(): {
|
|
|
170
172
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
171
173
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
172
174
|
$host: Element | null;
|
|
173
|
-
$emit: ((event: "
|
|
175
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
174
176
|
$el: any;
|
|
175
177
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
176
178
|
size: {
|
|
@@ -209,6 +211,9 @@ declare function __VLS_template(): {
|
|
|
209
211
|
readonly: {
|
|
210
212
|
type: BooleanConstructor;
|
|
211
213
|
};
|
|
214
|
+
noKeyboard: {
|
|
215
|
+
type: BooleanConstructor;
|
|
216
|
+
};
|
|
212
217
|
clearable: {
|
|
213
218
|
type: BooleanConstructor;
|
|
214
219
|
};
|
|
@@ -281,6 +286,7 @@ declare function __VLS_template(): {
|
|
|
281
286
|
variant: "solid" | "outline" | "text";
|
|
282
287
|
clearable: boolean;
|
|
283
288
|
readonly: boolean;
|
|
289
|
+
noKeyboard: boolean;
|
|
284
290
|
showLength: "auto" | "always" | "never";
|
|
285
291
|
inputOnOutlimit: boolean;
|
|
286
292
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -314,6 +320,7 @@ declare function __VLS_template(): {
|
|
|
314
320
|
variant: "solid" | "outline" | "text";
|
|
315
321
|
clearable: boolean;
|
|
316
322
|
readonly: boolean;
|
|
323
|
+
noKeyboard: boolean;
|
|
317
324
|
showLength: "auto" | "always" | "never";
|
|
318
325
|
inputOnOutlimit: boolean;
|
|
319
326
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -357,6 +364,9 @@ declare function __VLS_template(): {
|
|
|
357
364
|
readonly: {
|
|
358
365
|
type: BooleanConstructor;
|
|
359
366
|
};
|
|
367
|
+
noKeyboard: {
|
|
368
|
+
type: BooleanConstructor;
|
|
369
|
+
};
|
|
360
370
|
clearable: {
|
|
361
371
|
type: BooleanConstructor;
|
|
362
372
|
};
|
|
@@ -408,7 +418,7 @@ declare function __VLS_template(): {
|
|
|
408
418
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
409
419
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
410
420
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
411
|
-
}>, "
|
|
421
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
412
422
|
focus: () => void | undefined;
|
|
413
423
|
blur: () => void | undefined;
|
|
414
424
|
clear: () => void | undefined;
|
|
@@ -457,14 +467,14 @@ declare function __VLS_template(): {
|
|
|
457
467
|
size: "small" | "medium" | "large";
|
|
458
468
|
disabled: boolean;
|
|
459
469
|
modelValue: string;
|
|
470
|
+
clearable: boolean;
|
|
471
|
+
expanded: boolean;
|
|
472
|
+
preview: boolean;
|
|
460
473
|
imageUrl: string;
|
|
461
474
|
enableImageSearch: boolean;
|
|
462
475
|
maxImageSize: number;
|
|
463
|
-
expanded: boolean;
|
|
464
|
-
clearable: boolean;
|
|
465
476
|
showSuffix: boolean;
|
|
466
477
|
inlineThumbnail: boolean;
|
|
467
|
-
preview: boolean;
|
|
468
478
|
allowedImageTypes: string[];
|
|
469
479
|
}, {}, string, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & {
|
|
470
480
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -490,18 +500,18 @@ declare function __VLS_template(): {
|
|
|
490
500
|
size: "small" | "medium" | "large";
|
|
491
501
|
disabled: boolean;
|
|
492
502
|
modelValue: string;
|
|
503
|
+
clearable: boolean;
|
|
504
|
+
expanded: boolean;
|
|
505
|
+
preview: boolean;
|
|
493
506
|
imageUrl: string;
|
|
494
507
|
enableImageSearch: boolean;
|
|
495
508
|
maxImageSize: number;
|
|
496
|
-
expanded: boolean;
|
|
497
|
-
clearable: boolean;
|
|
498
509
|
showSuffix: boolean;
|
|
499
510
|
inlineThumbnail: boolean;
|
|
500
|
-
preview: boolean;
|
|
501
511
|
allowedImageTypes: string[];
|
|
502
512
|
}> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
503
513
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
504
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "
|
|
514
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
|
|
505
515
|
focus: () => void | undefined;
|
|
506
516
|
blur: () => void | undefined;
|
|
507
517
|
awaitUpload: () => Promise<void>;
|
|
@@ -538,10 +548,11 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
538
548
|
}>, {
|
|
539
549
|
size: "small" | "medium" | "large";
|
|
540
550
|
modelValue: string;
|
|
551
|
+
clearable: boolean;
|
|
552
|
+
debounce: number;
|
|
541
553
|
imageUrl: string;
|
|
542
554
|
enableImageSearch: boolean;
|
|
543
555
|
maxImageSize: number;
|
|
544
|
-
clearable: boolean;
|
|
545
556
|
onestepItems: OSearchRecommendItem[];
|
|
546
557
|
suggestItems: OSearchRecommendItem[];
|
|
547
558
|
historyItems: string[];
|
|
@@ -551,7 +562,6 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
551
562
|
storageKey: string;
|
|
552
563
|
storeHistory: boolean;
|
|
553
564
|
maxHistoryCount: number;
|
|
554
|
-
debounce: number;
|
|
555
565
|
autoSaveHistory: boolean;
|
|
556
566
|
enableHistory: boolean;
|
|
557
567
|
suggestList: string[];
|
|
@@ -596,6 +606,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
596
606
|
variant: "solid" | "outline" | "text";
|
|
597
607
|
clearable: boolean;
|
|
598
608
|
readonly: boolean;
|
|
609
|
+
noKeyboard: boolean;
|
|
599
610
|
showLength: "auto" | "always" | "never";
|
|
600
611
|
inputOnOutlimit: boolean;
|
|
601
612
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -603,22 +614,23 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
603
614
|
passwordPlaceholder: string;
|
|
604
615
|
onlyNumericInput: boolean;
|
|
605
616
|
}> & Omit<{
|
|
606
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
607
|
-
readonly variant: "text" | "solid" | "outline";
|
|
608
|
-
readonly disabled: boolean;
|
|
609
617
|
readonly type: "text" | "password";
|
|
610
|
-
readonly
|
|
618
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
619
|
+
readonly variant: "solid" | "outline" | "text";
|
|
620
|
+
readonly disabled: boolean;
|
|
611
621
|
readonly readonly: boolean;
|
|
622
|
+
readonly noKeyboard: boolean;
|
|
623
|
+
readonly clearable: boolean;
|
|
612
624
|
readonly showLength: "auto" | "always" | "never";
|
|
613
625
|
readonly inputOnOutlimit: boolean;
|
|
614
626
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
615
627
|
readonly autoWidth: boolean;
|
|
616
628
|
readonly passwordPlaceholder: string;
|
|
617
629
|
readonly onlyNumericInput: boolean;
|
|
618
|
-
readonly size?: "small" | "
|
|
619
|
-
readonly defaultValue?: string | number | undefined;
|
|
630
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
620
631
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
621
632
|
readonly modelValue?: string | number | undefined;
|
|
633
|
+
readonly defaultValue?: string | number | undefined;
|
|
622
634
|
readonly placeholder?: string | undefined;
|
|
623
635
|
readonly inputId?: string | undefined;
|
|
624
636
|
readonly minLength?: number | undefined;
|
|
@@ -634,7 +646,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
634
646
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
635
647
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
636
648
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
637
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "color" | "variant" | "disabled" | "
|
|
649
|
+
} & 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">;
|
|
638
650
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
639
651
|
$refs: {
|
|
640
652
|
[x: string]: unknown;
|
|
@@ -645,7 +657,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
645
657
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
646
658
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
647
659
|
$host: Element | null;
|
|
648
|
-
$emit: ((event: "
|
|
660
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
649
661
|
$el: any;
|
|
650
662
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
651
663
|
size: {
|
|
@@ -684,6 +696,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
684
696
|
readonly: {
|
|
685
697
|
type: BooleanConstructor;
|
|
686
698
|
};
|
|
699
|
+
noKeyboard: {
|
|
700
|
+
type: BooleanConstructor;
|
|
701
|
+
};
|
|
687
702
|
clearable: {
|
|
688
703
|
type: BooleanConstructor;
|
|
689
704
|
};
|
|
@@ -756,6 +771,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
756
771
|
variant: "solid" | "outline" | "text";
|
|
757
772
|
clearable: boolean;
|
|
758
773
|
readonly: boolean;
|
|
774
|
+
noKeyboard: boolean;
|
|
759
775
|
showLength: "auto" | "always" | "never";
|
|
760
776
|
inputOnOutlimit: boolean;
|
|
761
777
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -789,6 +805,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
789
805
|
variant: "solid" | "outline" | "text";
|
|
790
806
|
clearable: boolean;
|
|
791
807
|
readonly: boolean;
|
|
808
|
+
noKeyboard: boolean;
|
|
792
809
|
showLength: "auto" | "always" | "never";
|
|
793
810
|
inputOnOutlimit: boolean;
|
|
794
811
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -832,6 +849,9 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
832
849
|
readonly: {
|
|
833
850
|
type: BooleanConstructor;
|
|
834
851
|
};
|
|
852
|
+
noKeyboard: {
|
|
853
|
+
type: BooleanConstructor;
|
|
854
|
+
};
|
|
835
855
|
clearable: {
|
|
836
856
|
type: BooleanConstructor;
|
|
837
857
|
};
|
|
@@ -883,7 +903,7 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
883
903
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
884
904
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
885
905
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
886
|
-
}>, "
|
|
906
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
887
907
|
focus: () => void | undefined;
|
|
888
908
|
blur: () => void | undefined;
|
|
889
909
|
clear: () => void | undefined;
|
|
@@ -932,14 +952,14 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
932
952
|
size: "small" | "medium" | "large";
|
|
933
953
|
disabled: boolean;
|
|
934
954
|
modelValue: string;
|
|
955
|
+
clearable: boolean;
|
|
956
|
+
expanded: boolean;
|
|
957
|
+
preview: boolean;
|
|
935
958
|
imageUrl: string;
|
|
936
959
|
enableImageSearch: boolean;
|
|
937
960
|
maxImageSize: number;
|
|
938
|
-
expanded: boolean;
|
|
939
|
-
clearable: boolean;
|
|
940
961
|
showSuffix: boolean;
|
|
941
962
|
inlineThumbnail: boolean;
|
|
942
|
-
preview: boolean;
|
|
943
963
|
allowedImageTypes: string[];
|
|
944
964
|
}, {}, string, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & {
|
|
945
965
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -965,18 +985,18 @@ declare const __VLS_component: import('../../../vue/dist/vue.esm-bundler.js').De
|
|
|
965
985
|
size: "small" | "medium" | "large";
|
|
966
986
|
disabled: boolean;
|
|
967
987
|
modelValue: string;
|
|
988
|
+
clearable: boolean;
|
|
989
|
+
expanded: boolean;
|
|
990
|
+
preview: boolean;
|
|
968
991
|
imageUrl: string;
|
|
969
992
|
enableImageSearch: boolean;
|
|
970
993
|
maxImageSize: number;
|
|
971
|
-
expanded: boolean;
|
|
972
|
-
clearable: boolean;
|
|
973
994
|
showSuffix: boolean;
|
|
974
995
|
inlineThumbnail: boolean;
|
|
975
|
-
preview: boolean;
|
|
976
996
|
allowedImageTypes: string[];
|
|
977
997
|
}> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
978
998
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
979
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "
|
|
999
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
|
|
980
1000
|
focus: () => void | undefined;
|
|
981
1001
|
blur: () => void | undefined;
|
|
982
1002
|
awaitUpload: () => Promise<void>;
|
|
@@ -14,10 +14,11 @@ declare const OSearchInput: {
|
|
|
14
14
|
}, import('../../../vue/dist/vue.esm-bundler.js').PublicProps, {
|
|
15
15
|
size: "small" | "medium" | "large";
|
|
16
16
|
modelValue: string;
|
|
17
|
+
clearable: boolean;
|
|
18
|
+
debounce: number;
|
|
17
19
|
imageUrl: string;
|
|
18
20
|
enableImageSearch: boolean;
|
|
19
21
|
maxImageSize: number;
|
|
20
|
-
clearable: boolean;
|
|
21
22
|
onestepItems: import('./types').OSearchRecommendItem[];
|
|
22
23
|
suggestItems: import('./types').OSearchRecommendItem[];
|
|
23
24
|
historyItems: string[];
|
|
@@ -27,7 +28,6 @@ declare const OSearchInput: {
|
|
|
27
28
|
storageKey: string;
|
|
28
29
|
storeHistory: boolean;
|
|
29
30
|
maxHistoryCount: number;
|
|
30
|
-
debounce: number;
|
|
31
31
|
autoSaveHistory: boolean;
|
|
32
32
|
enableHistory: boolean;
|
|
33
33
|
suggestList: string[];
|
|
@@ -72,6 +72,7 @@ declare const OSearchInput: {
|
|
|
72
72
|
variant: "solid" | "outline" | "text";
|
|
73
73
|
clearable: boolean;
|
|
74
74
|
readonly: boolean;
|
|
75
|
+
noKeyboard: boolean;
|
|
75
76
|
showLength: "auto" | "always" | "never";
|
|
76
77
|
inputOnOutlimit: boolean;
|
|
77
78
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -79,22 +80,23 @@ declare const OSearchInput: {
|
|
|
79
80
|
passwordPlaceholder: string;
|
|
80
81
|
onlyNumericInput: boolean;
|
|
81
82
|
}> & Omit<{
|
|
82
|
-
readonly color: "primary" | "normal" | "success" | "warning" | "danger";
|
|
83
|
-
readonly variant: "text" | "solid" | "outline";
|
|
84
|
-
readonly disabled: boolean;
|
|
85
83
|
readonly type: "text" | "password";
|
|
86
|
-
readonly
|
|
84
|
+
readonly color: "danger" | "warning" | "success" | "primary" | "normal";
|
|
85
|
+
readonly variant: "solid" | "outline" | "text";
|
|
86
|
+
readonly disabled: boolean;
|
|
87
87
|
readonly readonly: boolean;
|
|
88
|
+
readonly noKeyboard: boolean;
|
|
89
|
+
readonly clearable: boolean;
|
|
88
90
|
readonly showLength: "auto" | "always" | "never";
|
|
89
91
|
readonly inputOnOutlimit: boolean;
|
|
90
92
|
readonly showPasswordEvent: "click" | "pointerdown";
|
|
91
93
|
readonly autoWidth: boolean;
|
|
92
94
|
readonly passwordPlaceholder: string;
|
|
93
95
|
readonly onlyNumericInput: boolean;
|
|
94
|
-
readonly size?: "small" | "
|
|
95
|
-
readonly defaultValue?: string | number | undefined;
|
|
96
|
+
readonly size?: "small" | "large" | "medium" | undefined;
|
|
96
97
|
readonly round?: import('@opensig/opendesign').RoundT | undefined;
|
|
97
98
|
readonly modelValue?: string | number | undefined;
|
|
99
|
+
readonly defaultValue?: string | number | undefined;
|
|
98
100
|
readonly placeholder?: string | undefined;
|
|
99
101
|
readonly inputId?: string | undefined;
|
|
100
102
|
readonly minLength?: number | undefined;
|
|
@@ -110,7 +112,7 @@ declare const OSearchInput: {
|
|
|
110
112
|
readonly onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
111
113
|
readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
112
114
|
readonly onPressEnter?: ((evt: KeyboardEvent) => any) | undefined | undefined;
|
|
113
|
-
} & import('../../../vue/dist/vue.esm-bundler.js').VNodeProps & import('../../../vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('../../../vue/dist/vue.esm-bundler.js').ComponentCustomProps, "color" | "variant" | "disabled" | "
|
|
115
|
+
} & 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">;
|
|
114
116
|
$attrs: import('../../../vue/dist/vue.esm-bundler.js').Attrs;
|
|
115
117
|
$refs: {
|
|
116
118
|
[x: string]: unknown;
|
|
@@ -121,7 +123,7 @@ declare const OSearchInput: {
|
|
|
121
123
|
$root: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
122
124
|
$parent: import('../../../vue/dist/vue.esm-bundler.js').ComponentPublicInstance | null;
|
|
123
125
|
$host: Element | null;
|
|
124
|
-
$emit: ((event: "
|
|
126
|
+
$emit: ((event: "change", value: string) => void) & ((event: "input", evt: Event, value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear", evt?: Event | undefined) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "pressEnter", evt: KeyboardEvent) => void);
|
|
125
127
|
$el: any;
|
|
126
128
|
$options: import('../../../vue/dist/vue.esm-bundler.js').ComponentOptionsBase<Readonly<import('../../../vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
|
|
127
129
|
size: {
|
|
@@ -160,6 +162,9 @@ declare const OSearchInput: {
|
|
|
160
162
|
readonly: {
|
|
161
163
|
type: BooleanConstructor;
|
|
162
164
|
};
|
|
165
|
+
noKeyboard: {
|
|
166
|
+
type: BooleanConstructor;
|
|
167
|
+
};
|
|
163
168
|
clearable: {
|
|
164
169
|
type: BooleanConstructor;
|
|
165
170
|
};
|
|
@@ -232,6 +237,7 @@ declare const OSearchInput: {
|
|
|
232
237
|
variant: "solid" | "outline" | "text";
|
|
233
238
|
clearable: boolean;
|
|
234
239
|
readonly: boolean;
|
|
240
|
+
noKeyboard: boolean;
|
|
235
241
|
showLength: "auto" | "always" | "never";
|
|
236
242
|
inputOnOutlimit: boolean;
|
|
237
243
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -265,6 +271,7 @@ declare const OSearchInput: {
|
|
|
265
271
|
variant: "solid" | "outline" | "text";
|
|
266
272
|
clearable: boolean;
|
|
267
273
|
readonly: boolean;
|
|
274
|
+
noKeyboard: boolean;
|
|
268
275
|
showLength: "auto" | "always" | "never";
|
|
269
276
|
inputOnOutlimit: boolean;
|
|
270
277
|
showPasswordEvent: "click" | "pointerdown";
|
|
@@ -308,6 +315,9 @@ declare const OSearchInput: {
|
|
|
308
315
|
readonly: {
|
|
309
316
|
type: BooleanConstructor;
|
|
310
317
|
};
|
|
318
|
+
noKeyboard: {
|
|
319
|
+
type: BooleanConstructor;
|
|
320
|
+
};
|
|
311
321
|
clearable: {
|
|
312
322
|
type: BooleanConstructor;
|
|
313
323
|
};
|
|
@@ -359,7 +369,7 @@ declare const OSearchInput: {
|
|
|
359
369
|
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
360
370
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
361
371
|
onPressEnter?: ((evt: KeyboardEvent) => any) | undefined;
|
|
362
|
-
}>, "
|
|
372
|
+
}>, "blur" | "focus" | "type" | "color" | "variant" | "disabled" | "clear" | "readonly" | "noKeyboard" | "clearable" | "showLength" | "inputOnOutlimit" | "showPasswordEvent" | "autoWidth" | "passwordPlaceholder" | "onlyNumericInput" | "inputEl" | "togglePassword"> & {
|
|
363
373
|
focus: () => void | undefined;
|
|
364
374
|
blur: () => void | undefined;
|
|
365
375
|
clear: () => void | undefined;
|
|
@@ -408,14 +418,14 @@ declare const OSearchInput: {
|
|
|
408
418
|
size: "small" | "medium" | "large";
|
|
409
419
|
disabled: boolean;
|
|
410
420
|
modelValue: string;
|
|
421
|
+
clearable: boolean;
|
|
422
|
+
expanded: boolean;
|
|
423
|
+
preview: boolean;
|
|
411
424
|
imageUrl: string;
|
|
412
425
|
enableImageSearch: boolean;
|
|
413
426
|
maxImageSize: number;
|
|
414
|
-
expanded: boolean;
|
|
415
|
-
clearable: boolean;
|
|
416
427
|
showSuffix: boolean;
|
|
417
428
|
inlineThumbnail: boolean;
|
|
418
|
-
preview: boolean;
|
|
419
429
|
allowedImageTypes: string[];
|
|
420
430
|
}, {}, string, {}, import('../../../vue/dist/vue.esm-bundler.js').GlobalComponents, import('../../../vue/dist/vue.esm-bundler.js').GlobalDirectives, string, import('../../../vue/dist/vue.esm-bundler.js').ComponentProvideOptions> & {
|
|
421
431
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -441,18 +451,18 @@ declare const OSearchInput: {
|
|
|
441
451
|
size: "small" | "medium" | "large";
|
|
442
452
|
disabled: boolean;
|
|
443
453
|
modelValue: string;
|
|
454
|
+
clearable: boolean;
|
|
455
|
+
expanded: boolean;
|
|
456
|
+
preview: boolean;
|
|
444
457
|
imageUrl: string;
|
|
445
458
|
enableImageSearch: boolean;
|
|
446
459
|
maxImageSize: number;
|
|
447
|
-
expanded: boolean;
|
|
448
|
-
clearable: boolean;
|
|
449
460
|
showSuffix: boolean;
|
|
450
461
|
inlineThumbnail: boolean;
|
|
451
|
-
preview: boolean;
|
|
452
462
|
allowedImageTypes: string[];
|
|
453
463
|
}> & Omit<Readonly<import('./internal/SearchImageInput.vue').SearchImageInputPropsT> & Readonly<{
|
|
454
464
|
[x: `on${Capitalize<any>}`]: ((...args: any) => any) | undefined;
|
|
455
|
-
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "
|
|
465
|
+
}>, "blur" | "focus" | "awaitUpload" | "getUploadedUrl" | "getIsUploading" | "resetImage" | ("size" | "disabled" | "modelValue" | "clearable" | "expanded" | "preview" | "imageUrl" | "enableImageSearch" | "maxImageSize" | "showSuffix" | "inlineThumbnail" | "allowedImageTypes")> & {
|
|
456
466
|
focus: () => void | undefined;
|
|
457
467
|
blur: () => void | undefined;
|
|
458
468
|
awaitUpload: () => Promise<void>;
|
|
@@ -488,10 +498,11 @@ declare const OSearchInput: {
|
|
|
488
498
|
}, {}, {}, {}, {
|
|
489
499
|
size: "small" | "medium" | "large";
|
|
490
500
|
modelValue: string;
|
|
501
|
+
clearable: boolean;
|
|
502
|
+
debounce: number;
|
|
491
503
|
imageUrl: string;
|
|
492
504
|
enableImageSearch: boolean;
|
|
493
505
|
maxImageSize: number;
|
|
494
|
-
clearable: boolean;
|
|
495
506
|
onestepItems: import('./types').OSearchRecommendItem[];
|
|
496
507
|
suggestItems: import('./types').OSearchRecommendItem[];
|
|
497
508
|
historyItems: string[];
|
|
@@ -501,7 +512,6 @@ declare const OSearchInput: {
|
|
|
501
512
|
storageKey: string;
|
|
502
513
|
storeHistory: boolean;
|
|
503
514
|
maxHistoryCount: number;
|
|
504
|
-
debounce: number;
|
|
505
515
|
autoSaveHistory: boolean;
|
|
506
516
|
enableHistory: boolean;
|
|
507
517
|
suggestList: string[];
|
|
@@ -526,10 +536,11 @@ declare const OSearchInput: {
|
|
|
526
536
|
}, string, {
|
|
527
537
|
size: "small" | "medium" | "large";
|
|
528
538
|
modelValue: string;
|
|
539
|
+
clearable: boolean;
|
|
540
|
+
debounce: number;
|
|
529
541
|
imageUrl: string;
|
|
530
542
|
enableImageSearch: boolean;
|
|
531
543
|
maxImageSize: number;
|
|
532
|
-
clearable: boolean;
|
|
533
544
|
onestepItems: import('./types').OSearchRecommendItem[];
|
|
534
545
|
suggestItems: import('./types').OSearchRecommendItem[];
|
|
535
546
|
historyItems: string[];
|
|
@@ -539,7 +550,6 @@ declare const OSearchInput: {
|
|
|
539
550
|
storageKey: string;
|
|
540
551
|
storeHistory: boolean;
|
|
541
552
|
maxHistoryCount: number;
|
|
542
|
-
debounce: number;
|
|
543
553
|
autoSaveHistory: boolean;
|
|
544
554
|
enableHistory: boolean;
|
|
545
555
|
suggestList: string[];
|