bkui-vue 0.0.1-beta.151 → 0.0.1-beta.152
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 +17 -17
- package/dist/index.esm.js +14 -6
- package/dist/index.umd.js +17 -17
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/input/index.d.ts +24 -1
- package/lib/input/index.js +1 -1
- package/lib/input/input.d.ts +16 -0
- package/lib/process/index.d.ts +4 -4
- package/lib/process/process.d.ts +1 -1
- package/lib/select/index.d.ts +70 -1
- package/lib/select/index.js +1 -1
- package/lib/select/select.css +0 -4
- package/lib/select/select.d.ts +33 -0
- package/lib/select/select.less +0 -3
- package/lib/select/select.variable.css +0 -4
- package/lib/tag-input/index.d.ts +4 -4
- package/lib/tag-input/tag-input.d.ts +1 -1
- package/package.json +1 -1
package/lib/tag-input/index.d.ts
CHANGED
@@ -14,8 +14,8 @@ declare const TagInput: {
|
|
14
14
|
showClearOnlyHover: boolean;
|
15
15
|
modelValue: string[];
|
16
16
|
allowCreate: boolean;
|
17
|
-
searchKey: string | string[];
|
18
17
|
displayKey: string;
|
18
|
+
searchKey: string | string[];
|
19
19
|
tooltipKey: string;
|
20
20
|
saveKey: string;
|
21
21
|
hasDeleteIcon: boolean;
|
@@ -182,7 +182,7 @@ declare const TagInput: {
|
|
182
182
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
183
183
|
onRemove?: (...args: any[]) => any;
|
184
184
|
onRemoveAll?: (...args: any[]) => any;
|
185
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "trigger" | "placeholder" | "list" | "separator" | "clearable" | "showClearOnlyHover" | "modelValue" | "allowCreate" | "
|
185
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "trigger" | "placeholder" | "list" | "separator" | "clearable" | "showClearOnlyHover" | "modelValue" | "allowCreate" | "displayKey" | "searchKey" | "tooltipKey" | "saveKey" | "hasDeleteIcon" | "useGroup" | "maxData" | "maxResult" | "contentMaxHeight" | "contentWidth" | "allowNextFocus" | "allowAutoMatch" | "leftSpace" | "createTagValidator" | "filterCallback" | "tagTpl" | "tpl" | "pasteFn">;
|
186
186
|
$attrs: {
|
187
187
|
[x: string]: unknown;
|
188
188
|
};
|
@@ -406,8 +406,8 @@ declare const TagInput: {
|
|
406
406
|
showClearOnlyHover: boolean;
|
407
407
|
modelValue: string[];
|
408
408
|
allowCreate: boolean;
|
409
|
-
searchKey: string | string[];
|
410
409
|
displayKey: string;
|
410
|
+
searchKey: string | string[];
|
411
411
|
tooltipKey: string;
|
412
412
|
saveKey: string;
|
413
413
|
hasDeleteIcon: boolean;
|
@@ -864,8 +864,8 @@ declare const TagInput: {
|
|
864
864
|
showClearOnlyHover: boolean;
|
865
865
|
modelValue: string[];
|
866
866
|
allowCreate: boolean;
|
867
|
-
searchKey: string | string[];
|
868
867
|
displayKey: string;
|
868
|
+
searchKey: string | string[];
|
869
869
|
tooltipKey: string;
|
870
870
|
saveKey: string;
|
871
871
|
hasDeleteIcon: boolean;
|
@@ -344,8 +344,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
344
344
|
showClearOnlyHover: boolean;
|
345
345
|
modelValue: string[];
|
346
346
|
allowCreate: boolean;
|
347
|
-
searchKey: string | string[];
|
348
347
|
displayKey: string;
|
348
|
+
searchKey: string | string[];
|
349
349
|
tooltipKey: string;
|
350
350
|
saveKey: string;
|
351
351
|
hasDeleteIcon: boolean;
|