bkui-vue 1.0.3-beta.59 → 1.0.3-beta.60
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/index.cjs.js +34 -34
- package/dist/index.esm.js +7745 -7733
- package/dist/index.umd.js +34 -34
- package/lib/search-select/index.d.ts +12 -6
- package/lib/search-select/index.js +320 -237
- package/lib/search-select/input.d.ts +2 -1
- package/lib/search-select/search-select.d.ts +4 -2
- package/lib/search-select/selected.d.ts +4 -2
- package/lib/search-select/utils.d.ts +6 -0
- package/lib/upload/index.d.ts +12 -0
- package/lib/upload/index.js +21 -30
- package/lib/upload/props.d.ts +3 -0
- package/lib/upload/upload-trigger.d.ts +6 -0
- package/lib/upload/upload.d.ts +6 -0
- package/package.json +1 -1
@@ -111,8 +111,9 @@ declare const BkSearchSelect: {
|
|
111
111
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
112
112
|
resolveClassName: (cls: string) => string;
|
113
113
|
inputFocusForWrapper: () => void;
|
114
|
-
inputEnterForWrapper: () => void
|
114
|
+
inputEnterForWrapper: () => Promise<void>;
|
115
115
|
inputClearForWrapper: () => void;
|
116
|
+
deleteInputTextNode: () => void;
|
116
117
|
t: import("vue").ComputedRef<{
|
117
118
|
pleaseSelect: string;
|
118
119
|
loading: string;
|
@@ -227,8 +228,9 @@ declare const BkSearchSelect: {
|
|
227
228
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
228
229
|
resolveClassName: (cls: string) => string;
|
229
230
|
inputFocusForWrapper: () => void;
|
230
|
-
inputEnterForWrapper: () => void
|
231
|
+
inputEnterForWrapper: () => Promise<void>;
|
231
232
|
inputClearForWrapper: () => void;
|
233
|
+
deleteInputTextNode: () => void;
|
232
234
|
t: import("vue").ComputedRef<{
|
233
235
|
pleaseSelect: string;
|
234
236
|
loading: string;
|
@@ -542,8 +544,9 @@ declare const BkSearchSelect: {
|
|
542
544
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
543
545
|
resolveClassName: (cls: string) => string;
|
544
546
|
inputFocusForWrapper: () => void;
|
545
|
-
inputEnterForWrapper: () => void
|
547
|
+
inputEnterForWrapper: () => Promise<void>;
|
546
548
|
inputClearForWrapper: () => void;
|
549
|
+
deleteInputTextNode: () => void;
|
547
550
|
t: import("vue").ComputedRef<{
|
548
551
|
pleaseSelect: string;
|
549
552
|
loading: string;
|
@@ -658,8 +661,9 @@ declare const BkSearchSelect: {
|
|
658
661
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
659
662
|
resolveClassName: (cls: string) => string;
|
660
663
|
inputFocusForWrapper: () => void;
|
661
|
-
inputEnterForWrapper: () => void
|
664
|
+
inputEnterForWrapper: () => Promise<void>;
|
662
665
|
inputClearForWrapper: () => void;
|
666
|
+
deleteInputTextNode: () => void;
|
663
667
|
t: import("vue").ComputedRef<{
|
664
668
|
pleaseSelect: string;
|
665
669
|
loading: string;
|
@@ -926,8 +930,9 @@ declare const BkSearchSelect: {
|
|
926
930
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
927
931
|
resolveClassName: (cls: string) => string;
|
928
932
|
inputFocusForWrapper: () => void;
|
929
|
-
inputEnterForWrapper: () => void
|
933
|
+
inputEnterForWrapper: () => Promise<void>;
|
930
934
|
inputClearForWrapper: () => void;
|
935
|
+
deleteInputTextNode: () => void;
|
931
936
|
t: import("vue").ComputedRef<{
|
932
937
|
pleaseSelect: string;
|
933
938
|
loading: string;
|
@@ -1042,8 +1047,9 @@ declare const BkSearchSelect: {
|
|
1042
1047
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
1043
1048
|
resolveClassName: (cls: string) => string;
|
1044
1049
|
inputFocusForWrapper: () => void;
|
1045
|
-
inputEnterForWrapper: () => void
|
1050
|
+
inputEnterForWrapper: () => Promise<void>;
|
1046
1051
|
inputClearForWrapper: () => void;
|
1052
|
+
deleteInputTextNode: () => void;
|
1047
1053
|
t: import("vue").ComputedRef<{
|
1048
1054
|
pleaseSelect: string;
|
1049
1055
|
loading: string;
|