bkui-vue 0.0.1-beta.226 → 0.0.1-beta.228

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 (41) hide show
  1. package/dist/index.cjs.js +30 -30
  2. package/dist/index.esm.js +230 -137
  3. package/dist/index.umd.js +30 -30
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/color-picker/color-picker.d.ts +1 -1
  7. package/lib/color-picker/index.d.ts +4 -4
  8. package/lib/date-picker/date-picker.d.ts +1 -1
  9. package/lib/date-picker/index.d.ts +4 -4
  10. package/lib/date-picker/panel/time-range.d.ts +1 -1
  11. package/lib/date-picker/panel/time.d.ts +1 -1
  12. package/lib/date-picker/time-picker.d.ts +1 -1
  13. package/lib/dialog/dialog.d.ts +1 -1
  14. package/lib/dialog/index.d.ts +4 -4
  15. package/lib/icon/index.d.ts +1 -0
  16. package/lib/icon/index.js +1 -1
  17. package/lib/icon/transfer.d.ts +4 -0
  18. package/lib/icon/transfer.js +1 -0
  19. package/lib/modal/index.d.ts +4 -4
  20. package/lib/modal/modal.d.ts +1 -1
  21. package/lib/select/index.d.ts +3 -0
  22. package/lib/select/index.js +1 -1
  23. package/lib/select/select.d.ts +1 -0
  24. package/lib/sideslider/index.d.ts +4 -4
  25. package/lib/sideslider/sideslider.d.ts +1 -1
  26. package/lib/table/components/table-cell.d.ts +11 -0
  27. package/lib/table/const.d.ts +4 -0
  28. package/lib/table/index.d.ts +11 -11
  29. package/lib/table/index.js +1 -1
  30. package/lib/table/props.d.ts +2 -2
  31. package/lib/table/table.d.ts +5 -5
  32. package/lib/table/use-common.d.ts +1 -0
  33. package/lib/table-column/index.js +1 -1
  34. package/lib/time-picker/index.d.ts +4 -4
  35. package/lib/transfer/index.d.ts +3 -3
  36. package/lib/transfer/index.js +1 -1
  37. package/lib/transfer/transfer.css +54 -32
  38. package/lib/transfer/transfer.d.ts +1 -1
  39. package/lib/transfer/transfer.less +49 -42
  40. package/lib/transfer/transfer.variable.css +59 -37
  41. package/package.json +1 -1
@@ -133,11 +133,11 @@ declare const _default: import("vue").DefineComponent<{
133
133
  }, {
134
134
  extCls: string;
135
135
  disabled: boolean;
136
+ transfer: boolean;
136
137
  size: string;
137
138
  readonly: boolean;
138
139
  modelValue: string;
139
140
  withValidate: boolean;
140
- transfer: boolean;
141
141
  recommend: boolean | unknown[];
142
142
  showValue: boolean;
143
143
  }>;
@@ -5,11 +5,11 @@ declare const BkColorPicker: {
5
5
  $props: Partial<{
6
6
  extCls: string;
7
7
  disabled: boolean;
8
+ transfer: boolean;
8
9
  size: string;
9
10
  readonly: boolean;
10
11
  modelValue: string;
11
12
  withValidate: boolean;
12
- transfer: boolean;
13
13
  recommend: boolean | unknown[];
14
14
  showValue: boolean;
15
15
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -57,7 +57,7 @@ declare const BkColorPicker: {
57
57
  }>> & {
58
58
  onChange?: (...args: any[]) => any;
59
59
  "onUpdate:modelValue"?: (...args: any[]) => any;
60
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "disabled" | "size" | "readonly" | "modelValue" | "withValidate" | "transfer" | "recommend" | "showValue">;
60
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "disabled" | "transfer" | "size" | "readonly" | "modelValue" | "withValidate" | "recommend" | "showValue">;
61
61
  $attrs: {
62
62
  [x: string]: unknown;
63
63
  };
@@ -119,11 +119,11 @@ declare const BkColorPicker: {
119
119
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], string, {
120
120
  extCls: string;
121
121
  disabled: boolean;
122
+ transfer: boolean;
122
123
  size: string;
123
124
  readonly: boolean;
124
125
  modelValue: string;
125
126
  withValidate: boolean;
126
- transfer: boolean;
127
127
  recommend: boolean | unknown[];
128
128
  showValue: boolean;
129
129
  }> & {
@@ -243,11 +243,11 @@ declare const BkColorPicker: {
243
243
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", {
244
244
  extCls: string;
245
245
  disabled: boolean;
246
+ transfer: boolean;
246
247
  size: string;
247
248
  readonly: boolean;
248
249
  modelValue: string;
249
250
  withValidate: boolean;
250
- transfer: boolean;
251
251
  recommend: boolean | unknown[];
252
252
  showValue: boolean;
253
253
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
@@ -296,6 +296,7 @@ declare const _default: import("vue").DefineComponent<{
296
296
  type: import("./interface").PickerTypeType;
297
297
  disabled: boolean;
298
298
  placeholder: string;
299
+ transfer: boolean;
299
300
  fontSize: "large" | "normal" | "medium";
300
301
  open: boolean;
301
302
  multiple: boolean;
@@ -307,7 +308,6 @@ declare const _default: import("vue").DefineComponent<{
307
308
  editable: boolean;
308
309
  timePickerOptions: {};
309
310
  splitPanels: boolean;
310
- transfer: boolean;
311
311
  appendToBody: boolean;
312
312
  shortcuts: import("./interface").DatePickerShortcutsType;
313
313
  shortcutClose: boolean;
@@ -9,6 +9,7 @@ declare const BkDatePicker: {
9
9
  type: import("./interface").PickerTypeType;
10
10
  disabled: boolean;
11
11
  placeholder: string;
12
+ transfer: boolean;
12
13
  fontSize: "large" | "normal" | "medium";
13
14
  open: boolean;
14
15
  multiple: boolean;
@@ -20,7 +21,6 @@ declare const BkDatePicker: {
20
21
  editable: boolean;
21
22
  timePickerOptions: {};
22
23
  splitPanels: boolean;
23
- transfer: boolean;
24
24
  appendToBody: boolean;
25
25
  shortcuts: import("./interface").DatePickerShortcutsType;
26
26
  shortcutClose: boolean;
@@ -155,7 +155,7 @@ declare const BkDatePicker: {
155
155
  "onPick-success"?: (...args: any[]) => any;
156
156
  "onOpen-change"?: (...args: any[]) => any;
157
157
  "onShortcut-change"?: (...args: any[]) => any;
158
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "type" | "disabled" | "placeholder" | "fontSize" | "open" | "multiple" | "clearable" | "readonly" | "behavior" | "withValidate" | "extPopoverCls" | "editable" | "timePickerOptions" | "splitPanels" | "transfer" | "appendToBody" | "shortcuts" | "shortcutClose" | "upToNow" | "useShortcutText" | "shortcutSelectedIndex" | "headerSlotCls" | "footerSlotCls" | "allowCrossDay">;
158
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "options" | "type" | "disabled" | "placeholder" | "transfer" | "fontSize" | "open" | "multiple" | "clearable" | "readonly" | "behavior" | "withValidate" | "extPopoverCls" | "editable" | "timePickerOptions" | "splitPanels" | "appendToBody" | "shortcuts" | "shortcutClose" | "upToNow" | "useShortcutText" | "shortcutSelectedIndex" | "headerSlotCls" | "footerSlotCls" | "allowCrossDay">;
159
159
  $attrs: {
160
160
  [x: string]: unknown;
161
161
  };
@@ -349,6 +349,7 @@ declare const BkDatePicker: {
349
349
  type: import("./interface").PickerTypeType;
350
350
  disabled: boolean;
351
351
  placeholder: string;
352
+ transfer: boolean;
352
353
  fontSize: "large" | "normal" | "medium";
353
354
  open: boolean;
354
355
  multiple: boolean;
@@ -360,7 +361,6 @@ declare const BkDatePicker: {
360
361
  editable: boolean;
361
362
  timePickerOptions: {};
362
363
  splitPanels: boolean;
363
- transfer: boolean;
364
364
  appendToBody: boolean;
365
365
  shortcuts: import("./interface").DatePickerShortcutsType;
366
366
  shortcutClose: boolean;
@@ -748,6 +748,7 @@ declare const BkDatePicker: {
748
748
  type: import("./interface").PickerTypeType;
749
749
  disabled: boolean;
750
750
  placeholder: string;
751
+ transfer: boolean;
751
752
  fontSize: "large" | "normal" | "medium";
752
753
  open: boolean;
753
754
  multiple: boolean;
@@ -759,7 +760,6 @@ declare const BkDatePicker: {
759
760
  editable: boolean;
760
761
  timePickerOptions: {};
761
762
  splitPanels: boolean;
762
- transfer: boolean;
763
763
  appendToBody: boolean;
764
764
  shortcuts: import("./interface").DatePickerShortcutsType;
765
765
  shortcutClose: boolean;
@@ -457,6 +457,7 @@ declare const _default: import("vue").DefineComponent<{
457
457
  disabled: boolean;
458
458
  width: number;
459
459
  placeholder: string;
460
+ transfer: boolean;
460
461
  fontSize: "large" | "normal" | "medium";
461
462
  open: boolean;
462
463
  multiple: boolean;
@@ -469,7 +470,6 @@ declare const _default: import("vue").DefineComponent<{
469
470
  editable: boolean;
470
471
  timePickerOptions: {};
471
472
  splitPanels: boolean;
472
- transfer: boolean;
473
473
  appendToBody: boolean;
474
474
  shortcuts: import("../interface").DatePickerShortcutsType;
475
475
  shortcutClose: boolean;
@@ -414,6 +414,7 @@ declare const _default: import("vue").DefineComponent<{
414
414
  disabled: boolean;
415
415
  width: number;
416
416
  placeholder: string;
417
+ transfer: boolean;
417
418
  fontSize: "large" | "normal" | "medium";
418
419
  open: boolean;
419
420
  multiple: boolean;
@@ -426,7 +427,6 @@ declare const _default: import("vue").DefineComponent<{
426
427
  editable: boolean;
427
428
  timePickerOptions: {};
428
429
  splitPanels: boolean;
429
- transfer: boolean;
430
430
  appendToBody: boolean;
431
431
  shortcuts: import("../interface").DatePickerShortcutsType;
432
432
  shortcutClose: boolean;
@@ -351,6 +351,7 @@ declare const _default: import("vue").DefineComponent<{
351
351
  disabled: boolean;
352
352
  width: number;
353
353
  placeholder: string;
354
+ transfer: boolean;
354
355
  fontSize: "large" | "normal" | "medium";
355
356
  open: boolean;
356
357
  multiple: boolean;
@@ -362,7 +363,6 @@ declare const _default: import("vue").DefineComponent<{
362
363
  editable: boolean;
363
364
  timePickerOptions: {};
364
365
  splitPanels: boolean;
365
- transfer: boolean;
366
366
  appendToBody: boolean;
367
367
  shortcuts: import("./interface").DatePickerShortcutsType;
368
368
  shortcutClose: boolean;
@@ -303,11 +303,11 @@ declare const _default: import("vue").DefineComponent<{
303
303
  height: string | number;
304
304
  isShow: boolean;
305
305
  draggable: boolean;
306
+ transfer: boolean;
306
307
  size: string;
307
308
  direction: string;
308
309
  maxHeight: string;
309
310
  renderDirective: string;
310
- transfer: boolean;
311
311
  dialogType: string;
312
312
  infoType: string;
313
313
  quickClose: boolean;
@@ -13,11 +13,11 @@ declare const BkDialog: {
13
13
  height: string | number;
14
14
  isShow: boolean;
15
15
  draggable: boolean;
16
+ transfer: boolean;
16
17
  size: string;
17
18
  direction: string;
18
19
  maxHeight: string;
19
20
  renderDirective: string;
20
- transfer: boolean;
21
21
  dialogType: string;
22
22
  infoType: string;
23
23
  quickClose: boolean;
@@ -178,7 +178,7 @@ declare const BkDialog: {
178
178
  onNext?: (...args: any[]) => any;
179
179
  onClosed?: (...args: any[]) => any;
180
180
  "onValue-change"?: (...args: any[]) => any;
181
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "theme" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType" | "headerAlign" | "footerAlign" | "confirmText" | "cancelText" | "prevText" | "nextText" | "current" | "totalStep" | "isLoading">;
181
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "theme" | "extCls" | "width" | "height" | "isShow" | "draggable" | "transfer" | "size" | "direction" | "maxHeight" | "renderDirective" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType" | "headerAlign" | "footerAlign" | "confirmText" | "cancelText" | "prevText" | "nextText" | "current" | "totalStep" | "isLoading">;
182
182
  $attrs: {
183
183
  [x: string]: unknown;
184
184
  };
@@ -361,11 +361,11 @@ declare const BkDialog: {
361
361
  height: string | number;
362
362
  isShow: boolean;
363
363
  draggable: boolean;
364
+ transfer: boolean;
364
365
  size: string;
365
366
  direction: string;
366
367
  maxHeight: string;
367
368
  renderDirective: string;
368
- transfer: boolean;
369
369
  dialogType: string;
370
370
  infoType: string;
371
371
  quickClose: boolean;
@@ -734,11 +734,11 @@ declare const BkDialog: {
734
734
  height: string | number;
735
735
  isShow: boolean;
736
736
  draggable: boolean;
737
+ transfer: boolean;
737
738
  size: string;
738
739
  direction: string;
739
740
  maxHeight: string;
740
741
  renderDirective: string;
741
- transfer: boolean;
742
742
  dialogType: string;
743
743
  infoType: string;
744
744
  quickClose: boolean;
@@ -68,6 +68,7 @@ export { default as Success } from '../icons/success';
68
68
  export { default as SwitcherLoading } from '../icons/switcher-loading';
69
69
  export { default as TextFile } from '../icons/text-file';
70
70
  export { default as TextFill } from '../icons/text-fill';
71
+ export { default as Transfer } from '../icons/transfer';
71
72
  export { default as TreeApplicationShape } from '../icons/tree-application-shape';
72
73
  export { default as UnfullScreen } from '../icons/unfull-screen';
73
74
  export { default as Unvisible } from '../icons/unvisible';