bkui-vue 0.0.1-beta.390 → 0.0.1-beta.391

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.
Files changed (66) hide show
  1. package/dist/index.cjs.js +22 -22
  2. package/dist/index.esm.js +0 -1
  3. package/dist/index.umd.js +23 -23
  4. package/lib/badge/badge.d.ts +1 -1
  5. package/lib/badge/index.d.ts +4 -4
  6. package/lib/breadcrumb/breadcrumb-item.d.ts +1 -1
  7. package/lib/breadcrumb/breadcrumb.d.ts +1 -1
  8. package/lib/breadcrumb/index.d.ts +5 -5
  9. package/lib/cascader/cascader.d.ts +3 -3
  10. package/lib/cascader/index.d.ts +10 -10
  11. package/lib/color-picker/color-picker.d.ts +1 -1
  12. package/lib/color-picker/index.d.ts +4 -4
  13. package/lib/container/container.d.ts +1 -1
  14. package/lib/container/index.d.ts +4 -4
  15. package/lib/date-picker/date-picker.d.ts +2 -2
  16. package/lib/date-picker/index.d.ts +7 -7
  17. package/lib/date-picker/panel/time-range.d.ts +3 -3
  18. package/lib/date-picker/panel/time.d.ts +3 -3
  19. package/lib/date-picker/time-picker.d.ts +3 -3
  20. package/lib/dialog/dialog.d.ts +2 -2
  21. package/lib/dialog/index.d.ts +7 -7
  22. package/lib/directives/index.d.ts +1 -0
  23. package/lib/directives/index.js +13 -6
  24. package/lib/dropdown/dropdown.d.ts +2 -2
  25. package/lib/dropdown/index.d.ts +7 -7
  26. package/lib/fixed-navbar/fixed-navbar.d.ts +1 -1
  27. package/lib/fixed-navbar/index.d.ts +4 -4
  28. package/lib/form/form-item.d.ts +1 -1
  29. package/lib/form/index.d.ts +1 -1
  30. package/lib/input/index.d.ts +4 -4
  31. package/lib/input/input.d.ts +1 -1
  32. package/lib/link/index.d.ts +4 -4
  33. package/lib/link/link.d.ts +1 -1
  34. package/lib/loading/index.d.ts +4 -4
  35. package/lib/loading/loading.d.ts +1 -1
  36. package/lib/modal/index.d.ts +4 -4
  37. package/lib/modal/modal.d.ts +1 -1
  38. package/lib/notify/notifyConstructor.d.ts +1 -1
  39. package/lib/pagination/index.d.ts +4 -4
  40. package/lib/pagination/pagination.d.ts +1 -1
  41. package/lib/popover/index.d.ts +10 -10
  42. package/lib/popover/popover.d.ts +3 -3
  43. package/lib/process/index.d.ts +4 -4
  44. package/lib/process/process.d.ts +1 -1
  45. package/lib/progress/index.d.ts +7 -7
  46. package/lib/progress/progress.d.ts +2 -2
  47. package/lib/select/index.d.ts +10 -10
  48. package/lib/select/select.d.ts +3 -3
  49. package/lib/sideslider/index.d.ts +4 -4
  50. package/lib/sideslider/sideslider.d.ts +1 -1
  51. package/lib/slider/index.d.ts +7 -7
  52. package/lib/slider/slider.d.ts +2 -2
  53. package/lib/switcher/index.d.ts +4 -4
  54. package/lib/switcher/switcher.d.ts +1 -1
  55. package/lib/tab/index.d.ts +4 -4
  56. package/lib/tab/tab.d.ts +1 -1
  57. package/lib/tag-input/index.d.ts +7 -7
  58. package/lib/tag-input/tag-input.d.ts +2 -2
  59. package/lib/time-picker/index.d.ts +10 -10
  60. package/lib/timeline/index.d.ts +4 -4
  61. package/lib/timeline/timeline.d.ts +1 -1
  62. package/lib/upload/index.d.ts +7 -7
  63. package/lib/upload/upload-list.d.ts +1 -1
  64. package/lib/upload/upload-trigger.d.ts +1 -1
  65. package/lib/upload/upload.d.ts +2 -2
  66. package/package.json +1 -1
@@ -8,11 +8,11 @@ declare const BkSideslider: {
8
8
  zIndex: string | number;
9
9
  showMask: boolean;
10
10
  direction: string;
11
- extCls: string | unknown[];
12
11
  width: string | number;
13
12
  height: string | number;
14
13
  maxHeight: string;
15
14
  isShow: boolean;
15
+ extCls: string | unknown[];
16
16
  draggable: boolean;
17
17
  transfer: boolean;
18
18
  quickClose: boolean;
@@ -115,7 +115,7 @@ declare const BkSideslider: {
115
115
  onClosed?: (...args: any[]) => any;
116
116
  "onUpdate:isShow"?: (...args: any[]) => any;
117
117
  "onAnimation-end"?: (...args: any[]) => any;
118
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "extCls" | "width" | "height" | "maxHeight" | "isShow" | "draggable" | "transfer" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
118
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "direction" | "width" | "height" | "maxHeight" | "isShow" | "extCls" | "draggable" | "transfer" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
119
119
  $attrs: {
120
120
  [x: string]: unknown;
121
121
  };
@@ -229,11 +229,11 @@ declare const BkSideslider: {
229
229
  zIndex: string | number;
230
230
  showMask: boolean;
231
231
  direction: string;
232
- extCls: string | unknown[];
233
232
  width: string | number;
234
233
  height: string | number;
235
234
  maxHeight: string;
236
235
  isShow: boolean;
236
+ extCls: string | unknown[];
237
237
  draggable: boolean;
238
238
  transfer: boolean;
239
239
  quickClose: boolean;
@@ -460,11 +460,11 @@ declare const BkSideslider: {
460
460
  zIndex: string | number;
461
461
  showMask: boolean;
462
462
  direction: string;
463
- extCls: string | unknown[];
464
463
  width: string | number;
465
464
  height: string | number;
466
465
  maxHeight: string;
467
466
  isShow: boolean;
467
+ extCls: string | unknown[];
468
468
  draggable: boolean;
469
469
  transfer: boolean;
470
470
  quickClose: boolean;
@@ -186,11 +186,11 @@ declare const _default: import("vue").DefineComponent<{
186
186
  zIndex: string | number;
187
187
  showMask: boolean;
188
188
  direction: string;
189
- extCls: string | unknown[];
190
189
  width: string | number;
191
190
  height: string | number;
192
191
  maxHeight: string;
193
192
  isShow: boolean;
193
+ extCls: string | unknown[];
194
194
  draggable: boolean;
195
195
  transfer: boolean;
196
196
  quickClose: boolean;
@@ -29,10 +29,10 @@ declare const Slider: {
29
29
  $data: {};
30
30
  $props: Partial<{
31
31
  vertical: boolean;
32
- extCls: string;
33
32
  height: string;
34
- step: number;
35
33
  range: boolean;
34
+ step: number;
35
+ extCls: string;
36
36
  showInput: boolean;
37
37
  customContent: Record<string, any>;
38
38
  disable: boolean;
@@ -123,7 +123,7 @@ declare const Slider: {
123
123
  }>> & {
124
124
  onChange?: (...args: any[]) => any;
125
125
  "onUpdate:modelValue"?: (...args: any[]) => any;
126
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "vertical" | "extCls" | "height" | "step" | "range" | "showInput" | "customContent" | "disable" | "showTip" | "maxValue" | "minValue" | "showInterval" | "showIntervalLabel" | "showButtonLabel" | "showBetweenLabel" | "formatterLabel" | "formatterButtonLabel" | "formatterTipLabel">;
126
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "vertical" | "height" | "range" | "step" | "extCls" | "showInput" | "customContent" | "disable" | "showTip" | "maxValue" | "minValue" | "showInterval" | "showIntervalLabel" | "showButtonLabel" | "showBetweenLabel" | "formatterLabel" | "formatterButtonLabel" | "formatterTipLabel">;
127
127
  $attrs: {
128
128
  [x: string]: unknown;
129
129
  };
@@ -218,10 +218,10 @@ declare const Slider: {
218
218
  renderDom: () => JSX.Element;
219
219
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
220
220
  vertical: boolean;
221
- extCls: string;
222
221
  height: string;
223
- step: number;
224
222
  range: boolean;
223
+ step: number;
224
+ extCls: string;
225
225
  showInput: boolean;
226
226
  customContent: Record<string, any>;
227
227
  disable: boolean;
@@ -419,10 +419,10 @@ declare const Slider: {
419
419
  renderDom: () => JSX.Element;
420
420
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
421
421
  vertical: boolean;
422
- extCls: string;
423
422
  height: string;
424
- step: number;
425
423
  range: boolean;
424
+ step: number;
425
+ extCls: string;
426
426
  showInput: boolean;
427
427
  customContent: Record<string, any>;
428
428
  disable: boolean;
@@ -180,10 +180,10 @@ declare const _default: import("vue").DefineComponent<{
180
180
  "onUpdate:modelValue"?: (...args: any[]) => any;
181
181
  }, {
182
182
  vertical: boolean;
183
- extCls: string;
184
183
  height: string;
185
- step: number;
186
184
  range: boolean;
185
+ step: number;
186
+ extCls: string;
187
187
  showInput: boolean;
188
188
  customContent: Record<string, any>;
189
189
  disable: boolean;
@@ -3,9 +3,9 @@ declare const BkSwitcher: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- extCls: string;
7
6
  disabled: boolean;
8
7
  value: string | number | boolean;
8
+ extCls: string;
9
9
  modelValue: string | number | boolean;
10
10
  withValidate: boolean;
11
11
  beforeChange: (...args: any[]) => any;
@@ -69,7 +69,7 @@ declare const BkSwitcher: {
69
69
  }>> & {
70
70
  onChange?: (...args: any[]) => any;
71
71
  "onUpdate:modelValue"?: (...args: any[]) => any;
72
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "disabled" | "value" | "modelValue" | "withValidate" | "beforeChange" | "showText" | "isOutline" | "onText" | "offText" | "isSquare" | "trueValue" | "falseValue">;
72
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "value" | "extCls" | "modelValue" | "withValidate" | "beforeChange" | "showText" | "isOutline" | "onText" | "offText" | "isSquare" | "trueValue" | "falseValue">;
73
73
  $attrs: {
74
74
  [x: string]: unknown;
75
75
  };
@@ -137,9 +137,9 @@ declare const BkSwitcher: {
137
137
  onChange?: (...args: any[]) => any;
138
138
  "onUpdate:modelValue"?: (...args: any[]) => any;
139
139
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
140
- extCls: string;
141
140
  disabled: boolean;
142
141
  value: string | number | boolean;
142
+ extCls: string;
143
143
  modelValue: string | number | boolean;
144
144
  withValidate: boolean;
145
145
  beforeChange: (...args: any[]) => any;
@@ -281,9 +281,9 @@ declare const BkSwitcher: {
281
281
  onChange?: (...args: any[]) => any;
282
282
  "onUpdate:modelValue"?: (...args: any[]) => any;
283
283
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
284
- extCls: string;
285
284
  disabled: boolean;
286
285
  value: string | number | boolean;
286
+ extCls: string;
287
287
  modelValue: string | number | boolean;
288
288
  withValidate: boolean;
289
289
  beforeChange: (...args: any[]) => any;
@@ -102,9 +102,9 @@ declare const _default: import("vue").DefineComponent<{
102
102
  onChange?: (...args: any[]) => any;
103
103
  "onUpdate:modelValue"?: (...args: any[]) => any;
104
104
  }, {
105
- extCls: string;
106
105
  disabled: boolean;
107
106
  value: string | number | boolean;
107
+ extCls: string;
108
108
  modelValue: string | number | boolean;
109
109
  withValidate: boolean;
110
110
  beforeChange: (...args: any[]) => any;
@@ -5,8 +5,8 @@ declare const BkTab: {
5
5
  $data: {};
6
6
  $props: Partial<{
7
7
  type: "card" | "border-card" | "unborder-card" | "card-tab";
8
- extCls: string;
9
8
  active: string | number;
9
+ extCls: string;
10
10
  closable: boolean;
11
11
  showHeader: boolean;
12
12
  sortType: "replace" | "insert";
@@ -81,7 +81,7 @@ declare const BkTab: {
81
81
  "onOn-drag-tab"?: (...args: any[]) => any;
82
82
  "onUpdate:active"?: (...args: any[]) => any;
83
83
  onSort?: (...args: any[]) => any;
84
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "extCls" | "active" | "closable" | "showHeader" | "sortType" | "tabPosition" | "addable" | "sortable" | "labelHeight" | "scrollStep" | "validateActive" | "changeOnHover" | "changeOnHoverDelay">;
84
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "active" | "extCls" | "closable" | "showHeader" | "sortType" | "tabPosition" | "addable" | "sortable" | "labelHeight" | "scrollStep" | "validateActive" | "changeOnHover" | "changeOnHoverDelay">;
85
85
  $attrs: {
86
86
  [x: string]: unknown;
87
87
  };
@@ -168,8 +168,8 @@ declare const BkTab: {
168
168
  tabDrag(dragTabIndex: number, dragEvent: DragEvent): void;
169
169
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "drag" | "add" | "remove" | "add-panel" | "tab-change" | "remove-panel" | "sort-change" | "on-drag-tab" | "update:active" | "sort")[], string, {
170
170
  type: "card" | "border-card" | "unborder-card" | "card-tab";
171
- extCls: string;
172
171
  active: string | number;
172
+ extCls: string;
173
173
  closable: boolean;
174
174
  showHeader: boolean;
175
175
  sortType: "replace" | "insert";
@@ -349,8 +349,8 @@ declare const BkTab: {
349
349
  tabDrag(dragTabIndex: number, dragEvent: DragEvent): void;
350
350
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "drag" | "add" | "remove" | "add-panel" | "tab-change" | "remove-panel" | "sort-change" | "on-drag-tab" | "update:active" | "sort")[], "change" | "drag" | "sort" | "add" | "remove" | "add-panel" | "tab-change" | "remove-panel" | "sort-change" | "on-drag-tab" | "update:active", {
351
351
  type: "card" | "border-card" | "unborder-card" | "card-tab";
352
- extCls: string;
353
352
  active: string | number;
353
+ extCls: string;
354
354
  closable: boolean;
355
355
  showHeader: boolean;
356
356
  sortType: "replace" | "insert";
package/lib/tab/tab.d.ts CHANGED
@@ -122,8 +122,8 @@ declare const _default: import("vue").DefineComponent<{
122
122
  onSort?: (...args: any[]) => any;
123
123
  }, {
124
124
  type: "card" | "border-card" | "unborder-card" | "card-tab";
125
- extCls: string;
126
125
  active: string | number;
126
+ extCls: string;
127
127
  closable: boolean;
128
128
  showHeader: boolean;
129
129
  sortType: "replace" | "insert";
@@ -5,11 +5,11 @@ declare const TagInput: {
5
5
  $props: Partial<{
6
6
  trigger: "focus" | "search";
7
7
  disabled: boolean;
8
- placeholder: string;
8
+ separator: string;
9
9
  list: {
10
10
  [key: string]: any;
11
11
  }[];
12
- separator: string;
12
+ placeholder: string;
13
13
  clearable: boolean;
14
14
  showClearOnlyHover: boolean;
15
15
  modelValue: string[];
@@ -295,7 +295,7 @@ declare const TagInput: {
295
295
  "onUpdate:modelValue"?: (...args: any[]) => any;
296
296
  onRemove?: (...args: any[]) => any;
297
297
  onRemoveAll?: (...args: any[]) => any;
298
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "trigger" | "disabled" | "placeholder" | "list" | "separator" | "clearable" | "showClearOnlyHover" | "modelValue" | "withValidate" | "searchKey" | "allowCreate" | "collapseTags" | "displayKey" | "tooltipKey" | "saveKey" | "hasDeleteIcon" | "useGroup" | "maxData" | "maxResult" | "contentMaxHeight" | "contentWidth" | "allowNextFocus" | "allowAutoMatch" | "leftSpace" | "popoverProps" | "tagOverflowTips">;
298
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "trigger" | "disabled" | "separator" | "list" | "placeholder" | "clearable" | "showClearOnlyHover" | "modelValue" | "withValidate" | "searchKey" | "allowCreate" | "collapseTags" | "displayKey" | "tooltipKey" | "saveKey" | "hasDeleteIcon" | "useGroup" | "maxData" | "maxResult" | "contentMaxHeight" | "contentWidth" | "allowNextFocus" | "allowAutoMatch" | "leftSpace" | "popoverProps" | "tagOverflowTips">;
299
299
  $attrs: {
300
300
  [x: string]: unknown;
301
301
  };
@@ -630,11 +630,11 @@ declare const TagInput: {
630
630
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "select" | "focus" | "blur" | "change" | "update:modelValue" | "remove" | "removeAll")[], string, {
631
631
  trigger: "focus" | "search";
632
632
  disabled: boolean;
633
- placeholder: string;
633
+ separator: string;
634
634
  list: {
635
635
  [key: string]: any;
636
636
  }[];
637
- separator: string;
637
+ placeholder: string;
638
638
  clearable: boolean;
639
639
  showClearOnlyHover: boolean;
640
640
  modelValue: string[];
@@ -1319,11 +1319,11 @@ declare const TagInput: {
1319
1319
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("input" | "select" | "focus" | "blur" | "change" | "update:modelValue" | "remove" | "removeAll")[], "input" | "select" | "focus" | "blur" | "change" | "update:modelValue" | "remove" | "removeAll", {
1320
1320
  trigger: "focus" | "search";
1321
1321
  disabled: boolean;
1322
- placeholder: string;
1322
+ separator: string;
1323
1323
  list: {
1324
1324
  [key: string]: any;
1325
1325
  }[];
1326
- separator: string;
1326
+ placeholder: string;
1327
1327
  clearable: boolean;
1328
1328
  showClearOnlyHover: boolean;
1329
1329
  modelValue: string[];
@@ -601,11 +601,11 @@ declare const _default: import("vue").DefineComponent<{
601
601
  }, {
602
602
  trigger: "focus" | "search";
603
603
  disabled: boolean;
604
- placeholder: string;
604
+ separator: string;
605
605
  list: {
606
606
  [key: string]: any;
607
607
  }[];
608
- separator: string;
608
+ placeholder: string;
609
609
  clearable: boolean;
610
610
  showClearOnlyHover: boolean;
611
611
  modelValue: string[];
@@ -7,13 +7,13 @@ declare const BkTimePicker: {
7
7
  options: Record<string, any>;
8
8
  behavior: "simplicity" | "normal";
9
9
  type: import("../../date-picker/src/interface").PickerTypeType;
10
- disabled: boolean;
11
10
  width: number;
12
- placeholder: string;
11
+ disabled: boolean;
12
+ fontSize: "normal" | "large" | "medium";
13
13
  open: boolean;
14
14
  multiple: boolean;
15
+ placeholder: string;
15
16
  transfer: boolean;
16
- fontSize: "normal" | "large" | "medium";
17
17
  clearable: boolean;
18
18
  readonly: boolean;
19
19
  withValidate: boolean;
@@ -184,7 +184,7 @@ declare const BkTimePicker: {
184
184
  "onPick-success"?: (...args: any[]) => any;
185
185
  "onOpen-change"?: (...args: any[]) => any;
186
186
  "onShortcut-change"?: (...args: any[]) => any;
187
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "behavior" | "type" | "disabled" | "width" | "placeholder" | "open" | "multiple" | "transfer" | "fontSize" | "clearable" | "readonly" | "withValidate" | "extPopoverCls" | "editable" | "timePickerOptions" | "splitPanels" | "appendToBody" | "shortcuts" | "shortcutClose" | "upToNow" | "useShortcutText" | "shortcutSelectedIndex" | "headerSlotCls" | "footerSlotCls" | "allowCrossDay" | "disabledHours" | "disabledMinutes" | "disabledSeconds" | "hideDisabledOptions" | "enterMode">;
187
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "behavior" | "type" | "width" | "disabled" | "fontSize" | "open" | "multiple" | "placeholder" | "transfer" | "clearable" | "readonly" | "withValidate" | "extPopoverCls" | "editable" | "timePickerOptions" | "splitPanels" | "appendToBody" | "shortcuts" | "shortcutClose" | "upToNow" | "useShortcutText" | "shortcutSelectedIndex" | "headerSlotCls" | "footerSlotCls" | "allowCrossDay" | "disabledHours" | "disabledMinutes" | "disabledSeconds" | "hideDisabledOptions" | "enterMode">;
188
188
  $attrs: {
189
189
  [x: string]: unknown;
190
190
  };
@@ -407,13 +407,13 @@ declare const BkTimePicker: {
407
407
  options: Record<string, any>;
408
408
  behavior: "simplicity" | "normal";
409
409
  type: import("../../date-picker/src/interface").PickerTypeType;
410
- disabled: boolean;
411
410
  width: number;
412
- placeholder: string;
411
+ disabled: boolean;
412
+ fontSize: "normal" | "large" | "medium";
413
413
  open: boolean;
414
414
  multiple: boolean;
415
+ placeholder: string;
415
416
  transfer: boolean;
416
- fontSize: "normal" | "large" | "medium";
417
417
  clearable: boolean;
418
418
  readonly: boolean;
419
419
  withValidate: boolean;
@@ -872,13 +872,13 @@ declare const BkTimePicker: {
872
872
  options: Record<string, any>;
873
873
  behavior: "simplicity" | "normal";
874
874
  type: import("../../date-picker/src/interface").PickerTypeType;
875
- disabled: boolean;
876
875
  width: number;
877
- placeholder: string;
876
+ disabled: boolean;
877
+ fontSize: "normal" | "large" | "medium";
878
878
  open: boolean;
879
879
  multiple: boolean;
880
+ placeholder: string;
880
881
  transfer: boolean;
881
- fontSize: "normal" | "large" | "medium";
882
882
  clearable: boolean;
883
883
  readonly: boolean;
884
884
  withValidate: boolean;
@@ -3,8 +3,8 @@ declare const BkTimeline: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- extCls: string;
7
6
  list: unknown[];
7
+ extCls: string;
8
8
  titleAble: boolean;
9
9
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
10
  list: import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -22,7 +22,7 @@ declare const BkTimeline: {
22
22
  };
23
23
  }>> & {
24
24
  onSelect?: (...args: any[]) => any;
25
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "list" | "titleAble">;
25
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "list" | "extCls" | "titleAble">;
26
26
  $attrs: {
27
27
  [x: string]: unknown;
28
28
  };
@@ -56,8 +56,8 @@ declare const BkTimeline: {
56
56
  defaultTimelines: import("vue").Ref<any[]>;
57
57
  titleSelect: (item: any) => void;
58
58
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], string, {
59
- extCls: string;
60
59
  list: unknown[];
60
+ extCls: string;
61
61
  titleAble: boolean;
62
62
  }> & {
63
63
  beforeCreate?: (() => void) | (() => void)[];
@@ -122,8 +122,8 @@ declare const BkTimeline: {
122
122
  defaultTimelines: import("vue").Ref<any[]>;
123
123
  titleSelect: (item: any) => void;
124
124
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", {
125
- extCls: string;
126
125
  list: unknown[];
126
+ extCls: string;
127
127
  titleAble: boolean;
128
128
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
129
129
  export default BkTimeline;
@@ -74,8 +74,8 @@ declare const _default: import("vue").DefineComponent<{
74
74
  }>> & {
75
75
  onSelect?: (...args: any[]) => any;
76
76
  }, {
77
- extCls: string;
78
77
  list: unknown[];
78
+ extCls: string;
79
79
  titleAble: boolean;
80
80
  }>;
81
81
  export default _default;
@@ -6,11 +6,11 @@ declare const Upload: {
6
6
  data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
7
7
  header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
8
8
  name: string;
9
- theme: "button" | "picture" | "draggable";
10
- extCls: string;
11
9
  disabled: boolean;
10
+ theme: "button" | "picture" | "draggable";
12
11
  size: number | import("./upload.type").MaxSize;
13
12
  multiple: boolean;
13
+ extCls: string;
14
14
  tip: string;
15
15
  files: import("./upload.type").UploadFile[];
16
16
  autoUpload: boolean;
@@ -138,7 +138,7 @@ declare const Upload: {
138
138
  onSuccess?: (...args: any[]) => any;
139
139
  onDone?: (...args: any[]) => any;
140
140
  onExceed?: (...args: any[]) => any;
141
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "header" | "name" | "theme" | "extCls" | "disabled" | "size" | "multiple" | "tip" | "files" | "autoUpload" | "delayTime" | "method" | "handleResCode" | "headers" | "withCredentials" | "formDataAttributes" | "sliceUpload" | "sliceUrl" | "mergeUrl" | "chunkSize">;
141
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "header" | "name" | "disabled" | "theme" | "size" | "multiple" | "extCls" | "tip" | "files" | "autoUpload" | "delayTime" | "method" | "handleResCode" | "headers" | "withCredentials" | "formDataAttributes" | "sliceUpload" | "sliceUrl" | "mergeUrl" | "chunkSize">;
142
142
  $attrs: {
143
143
  [x: string]: unknown;
144
144
  };
@@ -270,11 +270,11 @@ declare const Upload: {
270
270
  data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
271
271
  header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
272
272
  name: string;
273
- theme: "button" | "picture" | "draggable";
274
- extCls: string;
275
273
  disabled: boolean;
274
+ theme: "button" | "picture" | "draggable";
276
275
  size: number | import("./upload.type").MaxSize;
277
276
  multiple: boolean;
277
+ extCls: string;
278
278
  tip: string;
279
279
  files: import("./upload.type").UploadFile[];
280
280
  autoUpload: boolean;
@@ -544,11 +544,11 @@ declare const Upload: {
544
544
  data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
545
545
  header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
546
546
  name: string;
547
- theme: "button" | "picture" | "draggable";
548
- extCls: string;
549
547
  disabled: boolean;
548
+ theme: "button" | "picture" | "draggable";
550
549
  size: number | import("./upload.type").MaxSize;
551
550
  multiple: boolean;
551
+ extCls: string;
552
552
  tip: string;
553
553
  files: import("./upload.type").UploadFile[];
554
554
  autoUpload: boolean;
@@ -39,8 +39,8 @@ declare const _default: import("vue").DefineComponent<{
39
39
  onRemove?: (...args: any[]) => any;
40
40
  onRetry?: (...args: any[]) => any;
41
41
  }, {
42
- theme: "button" | "picture" | "draggable";
43
42
  disabled: boolean;
43
+ theme: "button" | "picture" | "draggable";
44
44
  multiple: boolean;
45
45
  files: UploadFile[];
46
46
  }>;
@@ -44,8 +44,8 @@ declare const _default: import("vue").DefineComponent<{
44
44
  onChange?: (...args: any[]) => any;
45
45
  onRemove?: (...args: any[]) => any;
46
46
  }, {
47
- theme: "button" | "picture" | "draggable";
48
47
  disabled: boolean;
48
+ theme: "button" | "picture" | "draggable";
49
49
  multiple: boolean;
50
50
  }>;
51
51
  export default _default;
@@ -224,11 +224,11 @@ declare const _default: import("vue").DefineComponent<{
224
224
  data: import("./upload.type").ExtraFormData | import("./upload.type").ExtraFormData[];
225
225
  header: import("./upload.type").HeaderDataAttr | import("./upload.type").HeaderDataAttr[];
226
226
  name: string;
227
- theme: "button" | "picture" | "draggable";
228
- extCls: string;
229
227
  disabled: boolean;
228
+ theme: "button" | "picture" | "draggable";
230
229
  size: number | import("./upload.type").MaxSize;
231
230
  multiple: boolean;
231
+ extCls: string;
232
232
  tip: string;
233
233
  files: UploadFile[];
234
234
  autoUpload: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.1-beta.390",
3
+ "version": "0.0.1-beta.391",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",