bkui-vue 2.0.1-beta.82 → 2.0.1-beta.84

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.
@@ -293,6 +293,8 @@ function _isSlot(s) {
293
293
  (0,external_vue_namespaceObject.watch)(localActiveItems, function (newVal) {
294
294
  if (newVal !== null && newVal !== void 0 && newVal.length) {
295
295
  isActive.value = newVal.includes(props.name);
296
+ } else {
297
+ isActive.value = false;
296
298
  }
297
299
  }, {
298
300
  immediate: true
@@ -14,7 +14,6 @@ export { default as Collapse } from './collapse';
14
14
  export { default as ColorPicker } from './color-picker';
15
15
  export { default as ConfigProvider } from './config-provider';
16
16
  export { default as Container } from './container';
17
- export { default as containerProps } from './container';
18
17
  export { default as DatePicker } from './date-picker';
19
18
  export { default as Dialog } from './dialog';
20
19
  export { default as Divider } from './divider';
@@ -57,7 +56,6 @@ export { default as Table } from './table';
57
56
  export { default as Tag } from './tag';
58
57
  export { default as TagInput } from './tag-input';
59
58
  export { default as TimePicker } from './time-picker';
60
- export { default as TimeLine } from './timeline';
61
59
  export { default as Timeline } from './timeline';
62
60
  export { default as Transfer } from './transfer';
63
61
  export { default as Tree } from './tree';
package/lib/components.js CHANGED
@@ -38,7 +38,6 @@ export { default as Collapse } from './collapse';
38
38
  export { default as ColorPicker } from './color-picker';
39
39
  export { default as ConfigProvider } from './config-provider';
40
40
  export { default as Container } from './container';
41
- export { default as containerProps } from './container';
42
41
  export { default as DatePicker } from './date-picker';
43
42
  export { default as Dialog } from './dialog';
44
43
  export { default as Divider } from './divider';
@@ -79,7 +78,6 @@ export { default as Table } from './table';
79
78
  export { default as Tag } from './tag';
80
79
  export { default as TagInput } from './tag-input';
81
80
  export { default as TimePicker } from './time-picker';
82
- export { default as TimeLine } from './timeline'; // 兼容以往版本
83
81
  export { default as Timeline } from './timeline';
84
82
  export { default as Transfer } from './transfer';
85
83
  export { default as Tree } from './tree';
@@ -168,7 +168,7 @@ declare const _default: import("vue").DefineComponent<{
168
168
  shortcut: import("vue").Ref<any>;
169
169
  onSelectionModeChange: import("vue").Ref<(_type: any) => SelectionModeType>;
170
170
  tmpValue: import("vue").Ref<any>;
171
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], "change" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
171
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], "blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
172
172
  readonly type: {
173
173
  readonly type: import("vue").PropType<import("./interface").PickerTypeType>;
174
174
  readonly default: "date";
@@ -282,6 +282,8 @@ declare const _default: import("vue").DefineComponent<{
282
282
  readonly default: true;
283
283
  };
284
284
  }>> & {
285
+ onFocus?: (...args: any[]) => any;
286
+ onBlur?: (...args: any[]) => any;
285
287
  onChange?: (...args: any[]) => any;
286
288
  onInput?: (...args: any[]) => any;
287
289
  onClear?: (...args: any[]) => any;
@@ -114,6 +114,8 @@ declare const BkDatePicker: {
114
114
  readonly default: true;
115
115
  };
116
116
  }>> & {
117
+ onFocus?: (...args: any[]) => any;
118
+ onBlur?: (...args: any[]) => any;
117
119
  onChange?: (...args: any[]) => any;
118
120
  onInput?: (...args: any[]) => any;
119
121
  onClear?: (...args: any[]) => any;
@@ -177,7 +179,7 @@ declare const BkDatePicker: {
177
179
  shortcut: import("vue").Ref<any>;
178
180
  onSelectionModeChange: import("vue").Ref<(_type: any) => import("./interface").SelectionModeType>;
179
181
  tmpValue: import("vue").Ref<any>;
180
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
182
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
181
183
  readonly type: {
182
184
  readonly type: import("vue").PropType<import("./interface").PickerTypeType>;
183
185
  readonly default: "date";
@@ -291,6 +293,8 @@ declare const BkDatePicker: {
291
293
  readonly default: true;
292
294
  };
293
295
  }>> & {
296
+ onFocus?: (...args: any[]) => any;
297
+ onBlur?: (...args: any[]) => any;
294
298
  onChange?: (...args: any[]) => any;
295
299
  onInput?: (...args: any[]) => any;
296
300
  onClear?: (...args: any[]) => any;
@@ -454,6 +458,8 @@ declare const BkDatePicker: {
454
458
  readonly default: true;
455
459
  };
456
460
  }>> & {
461
+ onFocus?: (...args: any[]) => any;
462
+ onBlur?: (...args: any[]) => any;
457
463
  onChange?: (...args: any[]) => any;
458
464
  onInput?: (...args: any[]) => any;
459
465
  onClear?: (...args: any[]) => any;
@@ -661,6 +667,8 @@ declare const BkDatePicker: {
661
667
  readonly default: true;
662
668
  };
663
669
  }>> & {
670
+ onFocus?: (...args: any[]) => any;
671
+ onBlur?: (...args: any[]) => any;
664
672
  onChange?: (...args: any[]) => any;
665
673
  onInput?: (...args: any[]) => any;
666
674
  onClear?: (...args: any[]) => any;
@@ -724,7 +732,7 @@ declare const BkDatePicker: {
724
732
  shortcut: import("vue").Ref<any>;
725
733
  onSelectionModeChange: import("vue").Ref<(_type: any) => import("./interface").SelectionModeType>;
726
734
  tmpValue: import("vue").Ref<any>;
727
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], "change" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change", {
735
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change")[], "blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "pick-first" | "open-change" | "shortcut-change", {
728
736
  readonly type: import("./interface").PickerTypeType;
729
737
  readonly disabled: boolean;
730
738
  readonly placement: import("@popperjs/core").ComputedPlacement;
@@ -4362,7 +4362,7 @@ function date_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
4362
4362
  clickoutside: directives_namespaceObject.clickoutside
4363
4363
  },
4364
4364
  props: datePickerProps,
4365
- emits: ['open-change', 'input', 'change', 'update:modelValue', 'clear', 'shortcut-change', 'pick-success', 'pick-first'],
4365
+ emits: ['open-change', 'input', 'change', 'update:modelValue', 'clear', 'shortcut-change', 'pick-success', 'pick-first', 'blur', 'focus'],
4366
4366
  // slots: ['header'],
4367
4367
  slots: Object,
4368
4368
  setup: function setup(props, _ref) {
@@ -4707,6 +4707,7 @@ function date_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
4707
4707
  }
4708
4708
  teleportTo.value = (0,shared_namespaceObject.getFullscreenRoot)();
4709
4709
  state.isFocused = true;
4710
+ emit('focus');
4710
4711
  if (e && e.type === 'focus') {
4711
4712
  return;
4712
4713
  }
@@ -4735,6 +4736,7 @@ function date_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
4735
4736
  reset();
4736
4737
  pickerPanelRef === null || pickerPanelRef === void 0 || (_pickerPanelRef$value3 = pickerPanelRef.value) === null || _pickerPanelRef$value3 === void 0 || _pickerPanelRef$value3.onToggleVisibility(false);
4737
4738
  formItem === null || formItem === void 0 || (_formItem$validate2 = formItem.validate) === null || _formItem$validate2 === void 0 || _formItem$validate2.call(formItem, 'blur');
4739
+ emit('blur');
4738
4740
  };
4739
4741
  var handleKeydown = function handleKeydown(e) {
4740
4742
  var keyCode = e.keyCode;
@@ -5085,7 +5087,7 @@ function time_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
5085
5087
  clickoutside: directives_namespaceObject.clickoutside
5086
5088
  },
5087
5089
  props: time_picker_objectSpread(time_picker_objectSpread(time_picker_objectSpread({}, datePickerProps), timePickerProps), timePanelProps),
5088
- emits: ['open-change', 'input', 'change', 'update:modelValue', 'clear', 'shortcut-change', 'pick-success'],
5090
+ emits: ['open-change', 'input', 'change', 'update:modelValue', 'clear', 'shortcut-change', 'pick-success', 'blur', 'focus'],
5089
5091
  // slots: ['header'],
5090
5092
  slots: Object,
5091
5093
  setup: function setup(props, _ref) {
@@ -5422,6 +5424,7 @@ function time_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
5422
5424
  }
5423
5425
  teleportTo.value = (0,shared_namespaceObject.getFullscreenRoot)();
5424
5426
  state.isFocused = true;
5427
+ emit('focus');
5425
5428
  if (e && e.type === 'focus') {
5426
5429
  return;
5427
5430
  }
@@ -5450,6 +5453,7 @@ function time_picker_objectSpread(e) { for (var r = 1; r < arguments.length; r++
5450
5453
  reset();
5451
5454
  pickerPanelRef === null || pickerPanelRef === void 0 || (_pickerPanelRef$value5 = pickerPanelRef.value) === null || _pickerPanelRef$value5 === void 0 || _pickerPanelRef$value5.onToggleVisibility(false);
5452
5455
  formItem === null || formItem === void 0 || (_formItem$validate2 = formItem.validate) === null || _formItem$validate2 === void 0 || _formItem$validate2.call(formItem, 'blur');
5456
+ emit('blur');
5453
5457
  };
5454
5458
  var handleKeydown = function handleKeydown(e) {
5455
5459
  var keyCode = e.keyCode;
@@ -196,7 +196,7 @@ declare const _default: import("vue").DefineComponent<{
196
196
  shortcut: import("vue").Ref<any>;
197
197
  onSelectionModeChange: import("vue").Ref<(_type: any) => SelectionModeType>;
198
198
  tmpValue: import("vue").Ref<any>;
199
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
199
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
200
200
  disabledHours: {
201
201
  readonly type: ArrayConstructor;
202
202
  readonly default: () => any[];
@@ -334,6 +334,8 @@ declare const _default: import("vue").DefineComponent<{
334
334
  readonly default: true;
335
335
  };
336
336
  }>> & {
337
+ onFocus?: (...args: any[]) => any;
338
+ onBlur?: (...args: any[]) => any;
337
339
  onChange?: (...args: any[]) => any;
338
340
  onInput?: (...args: any[]) => any;
339
341
  onClear?: (...args: any[]) => any;
package/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.82";
7
+ export const version = "2.0.1-beta.84";
8
8
  window.__bkui_vue_version__ = version;
@@ -61,6 +61,11 @@ declare const TagInput: {
61
61
  } & {
62
62
  default: boolean;
63
63
  };
64
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
65
+ default: boolean;
66
+ } & {
67
+ default: boolean;
68
+ };
64
69
  maxData: import("vue-types").VueTypeValidableDef<number> & {
65
70
  default: number;
66
71
  } & {
@@ -405,6 +410,11 @@ declare const TagInput: {
405
410
  } & {
406
411
  default: boolean;
407
412
  };
413
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
414
+ default: boolean;
415
+ } & {
416
+ default: boolean;
417
+ };
408
418
  maxData: import("vue-types").VueTypeValidableDef<number> & {
409
419
  default: number;
410
420
  } & {
@@ -650,6 +660,7 @@ declare const TagInput: {
650
660
  displayKey: string;
651
661
  hasDeleteIcon: boolean;
652
662
  useGroup: boolean;
663
+ clearTextSpace: boolean;
653
664
  maxData: number;
654
665
  maxResult: number;
655
666
  contentMaxHeight: number;
@@ -729,6 +740,11 @@ declare const TagInput: {
729
740
  } & {
730
741
  default: boolean;
731
742
  };
743
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
744
+ default: boolean;
745
+ } & {
746
+ default: boolean;
747
+ };
732
748
  maxData: import("vue-types").VueTypeValidableDef<number> & {
733
749
  default: number;
734
750
  } & {
@@ -1031,6 +1047,7 @@ declare const TagInput: {
1031
1047
  displayKey: string;
1032
1048
  hasDeleteIcon: boolean;
1033
1049
  useGroup: boolean;
1050
+ clearTextSpace: boolean;
1034
1051
  maxData: number;
1035
1052
  maxResult: number;
1036
1053
  contentMaxHeight: number;
@@ -1107,6 +1124,11 @@ declare const TagInput: {
1107
1124
  } & {
1108
1125
  default: boolean;
1109
1126
  };
1127
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
1128
+ default: boolean;
1129
+ } & {
1130
+ default: boolean;
1131
+ };
1110
1132
  maxData: import("vue-types").VueTypeValidableDef<number> & {
1111
1133
  default: number;
1112
1134
  } & {
@@ -1409,6 +1431,7 @@ declare const TagInput: {
1409
1431
  displayKey: string;
1410
1432
  hasDeleteIcon: boolean;
1411
1433
  useGroup: boolean;
1434
+ clearTextSpace: boolean;
1412
1435
  maxData: number;
1413
1436
  maxResult: number;
1414
1437
  contentMaxHeight: number;
@@ -17781,6 +17781,7 @@ var tagProps = function tagProps() {
17781
17781
  searchKey: shared_namespaceObject.PropTypes.oneOfType([shared_namespaceObject.PropTypes.string, shared_namespaceObject.PropTypes.arrayOf(shared_namespaceObject.PropTypes.string)]).def('name'),
17782
17782
  useGroup: shared_namespaceObject.PropTypes.bool.def(false),
17783
17783
  allowCreate: shared_namespaceObject.PropTypes.bool.def(false),
17784
+ clearTextSpace: shared_namespaceObject.PropTypes.bool.def(true),
17784
17785
  maxData: shared_namespaceObject.PropTypes.number.def(-1),
17785
17786
  maxResult: shared_namespaceObject.PropTypes.number.def(10),
17786
17787
  contentMaxHeight: shared_namespaceObject.PropTypes.number.def(300),
@@ -18673,7 +18674,8 @@ function tag_input_objectSpread(e) { for (var r = 1; r < arguments.length; r++)
18673
18674
  var separator = props.separator,
18674
18675
  saveKey = props.saveKey,
18675
18676
  displayKey = props.displayKey,
18676
- createTagValidator = props.createTagValidator;
18677
+ createTagValidator = props.createTagValidator,
18678
+ clearTextSpace = props.clearTextSpace;
18677
18679
  var targetIndex = getTagInputItemSite();
18678
18680
  var moveCount = 1;
18679
18681
  var isSelected = false;
@@ -18704,7 +18706,9 @@ function tag_input_objectSpread(e) { for (var r = 1; r < arguments.length; r++)
18704
18706
  } else {
18705
18707
  var isObject = _typeof(item) === 'object';
18706
18708
  newValue = isObject ? item[saveKey] : item.trim();
18707
- newValue = newValue.replace(/\s+/g, '');
18709
+ if (clearTextSpace) {
18710
+ newValue = newValue.replace(/\s+/g, '');
18711
+ }
18708
18712
  if (newValue !== undefined && !tagList.value.includes(newValue) && validateTag(newValue)) {
18709
18713
  var localItem = saveKeyMap.value[newValue] || (isObject ? item : _defineProperty(_defineProperty({}, saveKey, newValue), displayKey, newValue));
18710
18714
  listState.selectedTagList.splice(targetIndex, 0, localItem);
@@ -61,6 +61,11 @@ declare const _default: import("vue").DefineComponent<{
61
61
  } & {
62
62
  default: boolean;
63
63
  };
64
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
65
+ default: boolean;
66
+ } & {
67
+ default: boolean;
68
+ };
64
69
  maxData: import("vue-types").VueTypeValidableDef<number> & {
65
70
  default: number;
66
71
  } & {
@@ -396,6 +401,11 @@ declare const _default: import("vue").DefineComponent<{
396
401
  } & {
397
402
  default: boolean;
398
403
  };
404
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
405
+ default: boolean;
406
+ } & {
407
+ default: boolean;
408
+ };
399
409
  maxData: import("vue-types").VueTypeValidableDef<number> & {
400
410
  default: number;
401
411
  } & {
@@ -641,6 +651,7 @@ declare const _default: import("vue").DefineComponent<{
641
651
  displayKey: string;
642
652
  hasDeleteIcon: boolean;
643
653
  useGroup: boolean;
654
+ clearTextSpace: boolean;
644
655
  maxData: number;
645
656
  maxResult: number;
646
657
  contentMaxHeight: number;
@@ -62,6 +62,11 @@ declare const tagProps: () => {
62
62
  } & {
63
63
  default: boolean;
64
64
  };
65
+ clearTextSpace: import("vue-types").VueTypeValidableDef<boolean> & {
66
+ default: boolean;
67
+ } & {
68
+ default: boolean;
69
+ };
65
70
  maxData: import("vue-types").VueTypeValidableDef<number> & {
66
71
  default: number;
67
72
  } & {
@@ -137,6 +137,8 @@ declare const BkTimePicker: {
137
137
  readonly default: true;
138
138
  };
139
139
  }>> & {
140
+ onFocus?: (...args: any[]) => any;
141
+ onBlur?: (...args: any[]) => any;
140
142
  onChange?: (...args: any[]) => any;
141
143
  onInput?: (...args: any[]) => any;
142
144
  onClear?: (...args: any[]) => any;
@@ -203,7 +205,7 @@ declare const BkTimePicker: {
203
205
  shortcut: import("vue").Ref<any>;
204
206
  onSelectionModeChange: import("vue").Ref<(_type: any) => import("../date-picker/interface").SelectionModeType>;
205
207
  tmpValue: import("vue").Ref<any>;
206
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
208
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
207
209
  disabledHours: {
208
210
  readonly type: ArrayConstructor;
209
211
  readonly default: () => any[];
@@ -341,6 +343,8 @@ declare const BkTimePicker: {
341
343
  readonly default: true;
342
344
  };
343
345
  }>> & {
346
+ onFocus?: (...args: any[]) => any;
347
+ onBlur?: (...args: any[]) => any;
344
348
  onChange?: (...args: any[]) => any;
345
349
  onInput?: (...args: any[]) => any;
346
350
  onClear?: (...args: any[]) => any;
@@ -533,6 +537,8 @@ declare const BkTimePicker: {
533
537
  readonly default: true;
534
538
  };
535
539
  }>> & {
540
+ onFocus?: (...args: any[]) => any;
541
+ onBlur?: (...args: any[]) => any;
536
542
  onChange?: (...args: any[]) => any;
537
543
  onInput?: (...args: any[]) => any;
538
544
  onClear?: (...args: any[]) => any;
@@ -773,6 +779,8 @@ declare const BkTimePicker: {
773
779
  readonly default: true;
774
780
  };
775
781
  }>> & {
782
+ onFocus?: (...args: any[]) => any;
783
+ onBlur?: (...args: any[]) => any;
776
784
  onChange?: (...args: any[]) => any;
777
785
  onInput?: (...args: any[]) => any;
778
786
  onClear?: (...args: any[]) => any;
@@ -839,7 +847,7 @@ declare const BkTimePicker: {
839
847
  shortcut: import("vue").Ref<any>;
840
848
  onSelectionModeChange: import("vue").Ref<(_type: any) => import("../date-picker/interface").SelectionModeType>;
841
849
  tmpValue: import("vue").Ref<any>;
842
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "change" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", {
850
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change")[], "blur" | "change" | "focus" | "input" | "clear" | "update:modelValue" | "pick-success" | "open-change" | "shortcut-change", {
843
851
  type: import("../date-picker/interface").PickerTypeType;
844
852
  width: number;
845
853
  disabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.82",
3
+ "version": "2.0.1-beta.84",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",