bkui-vue 0.0.2-beta.70 → 0.0.2-beta.71

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.
@@ -287,6 +287,10 @@ declare const _default: import("vue").DefineComponent<{
287
287
  selectedStyle: import("vue-types").VueTypeDef<"checkbox" | "check"> & {
288
288
  default: "checkbox" | "check";
289
289
  };
290
+ filterOption: {
291
+ type: (BooleanConstructor | FunctionConstructor)[];
292
+ default: boolean;
293
+ };
290
294
  }, {
291
295
  selected: import("vue").Ref<{
292
296
  value: string;
@@ -677,7 +681,7 @@ declare const _default: import("vue").DefineComponent<{
677
681
  localSelectAllText: import("vue").ComputedRef<string>;
678
682
  resolveClassName: (cls: string) => string;
679
683
  handleCreateCustomOption: (val: string | number) => void;
680
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "toggle" | "clear" | "update:modelValue" | "scroll-end" | "tag-remove")[], "blur" | "change" | "focus" | "toggle" | "clear" | "update:modelValue" | "scroll-end" | "tag-remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
684
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "select" | "toggle" | "clear" | "update:modelValue" | "scroll-end" | "tag-remove" | "deselect")[], "blur" | "change" | "focus" | "select" | "toggle" | "clear" | "update:modelValue" | "scroll-end" | "tag-remove" | "deselect", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
681
685
  modelValue: import("vue-types").VueTypeValidableDef<any>;
682
686
  multiple: import("vue-types").VueTypeValidableDef<boolean> & {
683
687
  default: boolean;
@@ -964,15 +968,21 @@ declare const _default: import("vue").DefineComponent<{
964
968
  selectedStyle: import("vue-types").VueTypeDef<"checkbox" | "check"> & {
965
969
  default: "checkbox" | "check";
966
970
  };
971
+ filterOption: {
972
+ type: (BooleanConstructor | FunctionConstructor)[];
973
+ default: boolean;
974
+ };
967
975
  }>> & {
968
976
  onFocus?: (...args: any[]) => any;
969
977
  onBlur?: (...args: any[]) => any;
970
978
  onChange?: (...args: any[]) => any;
979
+ onSelect?: (...args: any[]) => any;
971
980
  onClear?: (...args: any[]) => any;
972
981
  "onUpdate:modelValue"?: (...args: any[]) => any;
973
982
  onToggle?: (...args: any[]) => any;
974
983
  "onScroll-end"?: (...args: any[]) => any;
975
984
  "onTag-remove"?: (...args: any[]) => any;
985
+ onDeselect?: (...args: any[]) => any;
976
986
  }, {
977
987
  prefix: string;
978
988
  disabled: boolean;
@@ -1011,5 +1021,6 @@ declare const _default: import("vue").DefineComponent<{
1011
1021
  allowEmptyValues: unknown[];
1012
1022
  autoFocus: boolean;
1013
1023
  keepSearchValue: boolean;
1024
+ filterOption: boolean | Function;
1014
1025
  }, {}>;
1015
1026
  export default _default;
@@ -69,6 +69,9 @@
69
69
  border-radius: 2px;
70
70
  box-sizing: border-box;
71
71
  }
72
+ .bk-tag-input .bk-tag-input-trigger .tag-list .text:hover {
73
+ background-color: #dcdee5;
74
+ }
72
75
  .bk-tag-input .bk-tag-input-trigger .tag-list .tag-input {
73
76
  width: 10px;
74
77
  height: 22px;
@@ -79,6 +79,10 @@
79
79
  background-color: #f0f1f5;
80
80
  border-radius: 2px;
81
81
  box-sizing: border-box;
82
+
83
+ &:hover {
84
+ background-color: #dcdee5;;
85
+ }
82
86
  }
83
87
 
84
88
  .tag-input {
@@ -191,6 +191,9 @@
191
191
  border-radius: 2px;
192
192
  box-sizing: border-box;
193
193
  }
194
+ .bk-tag-input .bk-tag-input-trigger .tag-list .text:hover {
195
+ background-color: #dcdee5;
196
+ }
194
197
  .bk-tag-input .bk-tag-input-trigger .tag-list .tag-input {
195
198
  width: 10px;
196
199
  height: 22px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.2-beta.70",
3
+ "version": "0.0.2-beta.71",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",