bkui-vue 1.0.3-beta.58 → 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 +35 -35
- package/dist/index.esm.js +7918 -7901
- package/dist/index.umd.js +35 -35
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/search-select/index.d.ts +18 -6
- package/lib/search-select/index.js +334 -238
- package/lib/search-select/input.d.ts +3 -1
- package/lib/search-select/search-select.css +1 -0
- package/lib/search-select/search-select.d.ts +6 -2
- package/lib/search-select/search-select.less +1 -0
- package/lib/search-select/search-select.variable.css +1 -0
- package/lib/search-select/selected.d.ts +6 -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,7 +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
|
+
inputClearForWrapper: () => void;
|
116
|
+
deleteInputTextNode: () => void;
|
115
117
|
t: import("vue").ComputedRef<{
|
116
118
|
pleaseSelect: string;
|
117
119
|
loading: string;
|
@@ -226,7 +228,9 @@ declare const BkSearchSelect: {
|
|
226
228
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
227
229
|
resolveClassName: (cls: string) => string;
|
228
230
|
inputFocusForWrapper: () => void;
|
229
|
-
inputEnterForWrapper: () => void
|
231
|
+
inputEnterForWrapper: () => Promise<void>;
|
232
|
+
inputClearForWrapper: () => void;
|
233
|
+
deleteInputTextNode: () => void;
|
230
234
|
t: import("vue").ComputedRef<{
|
231
235
|
pleaseSelect: string;
|
232
236
|
loading: string;
|
@@ -540,7 +544,9 @@ declare const BkSearchSelect: {
|
|
540
544
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
541
545
|
resolveClassName: (cls: string) => string;
|
542
546
|
inputFocusForWrapper: () => void;
|
543
|
-
inputEnterForWrapper: () => void
|
547
|
+
inputEnterForWrapper: () => Promise<void>;
|
548
|
+
inputClearForWrapper: () => void;
|
549
|
+
deleteInputTextNode: () => void;
|
544
550
|
t: import("vue").ComputedRef<{
|
545
551
|
pleaseSelect: string;
|
546
552
|
loading: string;
|
@@ -655,7 +661,9 @@ declare const BkSearchSelect: {
|
|
655
661
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
656
662
|
resolveClassName: (cls: string) => string;
|
657
663
|
inputFocusForWrapper: () => void;
|
658
|
-
inputEnterForWrapper: () => void
|
664
|
+
inputEnterForWrapper: () => Promise<void>;
|
665
|
+
inputClearForWrapper: () => void;
|
666
|
+
deleteInputTextNode: () => void;
|
659
667
|
t: import("vue").ComputedRef<{
|
660
668
|
pleaseSelect: string;
|
661
669
|
loading: string;
|
@@ -922,7 +930,9 @@ declare const BkSearchSelect: {
|
|
922
930
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
923
931
|
resolveClassName: (cls: string) => string;
|
924
932
|
inputFocusForWrapper: () => void;
|
925
|
-
inputEnterForWrapper: () => void
|
933
|
+
inputEnterForWrapper: () => Promise<void>;
|
934
|
+
inputClearForWrapper: () => void;
|
935
|
+
deleteInputTextNode: () => void;
|
926
936
|
t: import("vue").ComputedRef<{
|
927
937
|
pleaseSelect: string;
|
928
938
|
loading: string;
|
@@ -1037,7 +1047,9 @@ declare const BkSearchSelect: {
|
|
1037
1047
|
handleMenuFooterClick: (item: import("./utils").IMenuFooterItem) => void;
|
1038
1048
|
resolveClassName: (cls: string) => string;
|
1039
1049
|
inputFocusForWrapper: () => void;
|
1040
|
-
inputEnterForWrapper: () => void
|
1050
|
+
inputEnterForWrapper: () => Promise<void>;
|
1051
|
+
inputClearForWrapper: () => void;
|
1052
|
+
deleteInputTextNode: () => void;
|
1041
1053
|
t: import("vue").ComputedRef<{
|
1042
1054
|
pleaseSelect: string;
|
1043
1055
|
loading: string;
|