bkui-vue 0.0.1-beta.379 → 0.0.1-beta.380

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 (89) hide show
  1. package/dist/index.cjs.js +33 -30
  2. package/dist/index.esm.js +211 -52
  3. package/dist/index.umd.js +37 -34
  4. package/dist/style.css +1 -1
  5. package/lib/alert/alert.d.ts +1 -1
  6. package/lib/alert/index.d.ts +4 -4
  7. package/lib/badge/badge.d.ts +2 -2
  8. package/lib/badge/index.d.ts +7 -7
  9. package/lib/breadcrumb/breadcrumb.d.ts +1 -1
  10. package/lib/breadcrumb/index.d.ts +4 -4
  11. package/lib/button/button.d.ts +1 -1
  12. package/lib/button/index.d.ts +4 -4
  13. package/lib/card/card.d.ts +1 -1
  14. package/lib/card/index.d.ts +4 -4
  15. package/lib/cascader/cascader-panel.d.ts +1 -1
  16. package/lib/cascader/cascader.d.ts +3 -3
  17. package/lib/cascader/index.d.ts +11 -11
  18. package/lib/checkbox/checkbox.d.ts +1 -1
  19. package/lib/checkbox/index.d.ts +4 -4
  20. package/lib/color-picker/color-picker.d.ts +2 -2
  21. package/lib/color-picker/index.d.ts +7 -7
  22. package/lib/components.d.ts +1 -0
  23. package/lib/components.js +1 -1
  24. package/lib/container/container.d.ts +1 -1
  25. package/lib/container/index.d.ts +4 -4
  26. package/lib/date-picker/date-picker.d.ts +3 -3
  27. package/lib/date-picker/index.d.ts +10 -10
  28. package/lib/date-picker/panel/time-range.d.ts +3 -3
  29. package/lib/date-picker/panel/time.d.ts +3 -3
  30. package/lib/date-picker/time-picker.d.ts +3 -3
  31. package/lib/directives/index.d.ts +1 -0
  32. package/lib/directives/index.js +1 -1
  33. package/lib/divider/divider.d.ts +1 -1
  34. package/lib/divider/index.d.ts +4 -4
  35. package/lib/dropdown/dropdown.d.ts +1 -1
  36. package/lib/dropdown/index.d.ts +4 -4
  37. package/lib/icon/image-fill.js +1 -0
  38. package/lib/icon/index.js +1 -1
  39. package/lib/link/index.d.ts +7 -7
  40. package/lib/link/link.d.ts +2 -2
  41. package/lib/loading/index.d.ts +7 -7
  42. package/lib/loading/loading.d.ts +2 -2
  43. package/lib/menu/index.d.ts +4 -4
  44. package/lib/menu/menu.d.ts +1 -1
  45. package/lib/overflow-title/components/OverflowTitle.d.ts +38 -0
  46. package/lib/overflow-title/directive/overflowTitle.d.ts +3 -0
  47. package/lib/overflow-title/index.d.ts +129 -0
  48. package/lib/overflow-title/index.js +1 -0
  49. package/lib/overflow-title/overflow.css +11 -0
  50. package/lib/overflow-title/overflow.less +13 -0
  51. package/lib/overflow-title/overflow.variable.css +11 -0
  52. package/lib/overflow-title/props.d.ts +16 -0
  53. package/lib/overflow-title/utils/getActualWidthByCanvas.d.ts +3 -0
  54. package/lib/overflow-title/utils/getActualWidthByDom.d.ts +3 -0
  55. package/lib/pagination/index.d.ts +4 -4
  56. package/lib/pagination/pagination.d.ts +1 -1
  57. package/lib/popover/index.d.ts +10 -10
  58. package/lib/popover/popover.d.ts +3 -3
  59. package/lib/progress/index.d.ts +4 -4
  60. package/lib/progress/progress.d.ts +1 -1
  61. package/lib/resize-layout/index.d.ts +4 -4
  62. package/lib/resize-layout/resize-layout.d.ts +1 -1
  63. package/lib/select/index.d.ts +11 -11
  64. package/lib/select/optionGroup.d.ts +1 -1
  65. package/lib/select/select.d.ts +3 -3
  66. package/lib/slider/index.d.ts +4 -4
  67. package/lib/slider/slider.d.ts +1 -1
  68. package/lib/switcher/index.d.ts +4 -4
  69. package/lib/switcher/switcher.d.ts +1 -1
  70. package/lib/tab/index.d.ts +5 -5
  71. package/lib/tab/tab-panel.d.ts +1 -1
  72. package/lib/tab/tab.d.ts +1 -1
  73. package/lib/table/const.d.ts +11 -1
  74. package/lib/table/index.d.ts +28 -16
  75. package/lib/table/index.js +1 -1
  76. package/lib/table/plugins/head-filter.d.ts +1 -1
  77. package/lib/table/props.d.ts +2 -2
  78. package/lib/table/table.d.ts +10 -6
  79. package/lib/table/utils.d.ts +2 -0
  80. package/lib/table-column/index.js +1 -1
  81. package/lib/tag-input/index.d.ts +4 -4
  82. package/lib/tag-input/tag-input.d.ts +1 -1
  83. package/lib/time-picker/index.d.ts +10 -10
  84. package/lib/upload/index.d.ts +10 -10
  85. package/lib/upload/upload-list.d.ts +2 -2
  86. package/lib/upload/upload-trigger.d.ts +2 -2
  87. package/lib/upload/upload.d.ts +3 -3
  88. package/package.json +1 -1
  89. package/lib/icon/img-error.js +0 -1
@@ -4,8 +4,8 @@ declare const BkResizeLayout: {
4
4
  $data: {};
5
5
  $props: Partial<{
6
6
  placement: "top" | "bottom" | "right" | "left";
7
- disabled: boolean;
8
7
  border: boolean;
8
+ disabled: boolean;
9
9
  max: number;
10
10
  min: number;
11
11
  collapsible: boolean;
@@ -63,7 +63,7 @@ declare const BkResizeLayout: {
63
63
  onResizing?: (...args: any[]) => any;
64
64
  "onAfter-resize"?: (...args: any[]) => any;
65
65
  "onCollapse-change"?: (...args: any[]) => any;
66
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "disabled" | "border" | "max" | "min" | "collapsible" | "immediate" | "triggerWidth" | "triggerOffset" | "initialDivide" | "autoMinimize">;
66
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "placement" | "border" | "disabled" | "max" | "min" | "collapsible" | "immediate" | "triggerWidth" | "triggerOffset" | "initialDivide" | "autoMinimize">;
67
67
  $attrs: {
68
68
  [x: string]: unknown;
69
69
  };
@@ -148,8 +148,8 @@ declare const BkResizeLayout: {
148
148
  setCollapse: (collapse: any) => void;
149
149
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("before-resize" | "resizing" | "after-resize" | "collapse-change")[], string, {
150
150
  placement: "top" | "bottom" | "right" | "left";
151
- disabled: boolean;
152
151
  border: boolean;
152
+ disabled: boolean;
153
153
  max: number;
154
154
  min: number;
155
155
  collapsible: boolean;
@@ -322,8 +322,8 @@ declare const BkResizeLayout: {
322
322
  setCollapse: (collapse: any) => void;
323
323
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("before-resize" | "resizing" | "after-resize" | "collapse-change")[], "before-resize" | "resizing" | "after-resize" | "collapse-change", {
324
324
  placement: "top" | "bottom" | "right" | "left";
325
- disabled: boolean;
326
325
  border: boolean;
326
+ disabled: boolean;
327
327
  max: number;
328
328
  min: number;
329
329
  collapsible: boolean;
@@ -113,8 +113,8 @@ declare const _default: import("vue").DefineComponent<{
113
113
  "onCollapse-change"?: (...args: any[]) => any;
114
114
  }, {
115
115
  placement: "top" | "bottom" | "right" | "left";
116
- disabled: boolean;
117
116
  border: boolean;
117
+ disabled: boolean;
118
118
  max: number;
119
119
  min: number;
120
120
  collapsible: boolean;
@@ -7,12 +7,12 @@ declare const BkSelect: {
7
7
  $props: Partial<{
8
8
  tagTheme: "success" | "info" | "warning" | "danger";
9
9
  behavior: "simplicity" | "normal";
10
- showOnInit: boolean;
10
+ size: "small" | "default" | "large";
11
+ multiple: boolean;
11
12
  disabled: boolean;
13
+ showOnInit: boolean;
12
14
  placeholder: string;
13
15
  list: unknown[];
14
- size: "small" | "default" | "large";
15
- multiple: boolean;
16
16
  loading: boolean;
17
17
  clearable: boolean;
18
18
  withValidate: boolean;
@@ -229,7 +229,7 @@ declare const BkSelect: {
229
229
  onClear?: (...args: any[]) => any;
230
230
  onToggle?: (...args: any[]) => any;
231
231
  "onScroll-end"?: (...args: any[]) => any;
232
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tagTheme" | "behavior" | "showOnInit" | "disabled" | "placeholder" | "list" | "size" | "multiple" | "loading" | "clearable" | "withValidate" | "showSelectedIcon" | "filterable" | "allowCreate" | "collapseTags" | "popoverMinWidth" | "idKey" | "remoteMethod" | "scrollHeight" | "popoverOptions" | "showSelectAll" | "multipleMode" | "autoHeight" | "noDataText" | "noMatchText" | "loadingText" | "searchPlaceholder" | "selectAllText" | "scrollLoading" | "customContent" | "displayKey" | "inputSearch" | "enableVirtualRender" | "allowEmptyValues" | "autoFocus" | "keepSearchValue">;
232
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tagTheme" | "behavior" | "size" | "multiple" | "disabled" | "showOnInit" | "placeholder" | "list" | "loading" | "clearable" | "withValidate" | "showSelectedIcon" | "filterable" | "allowCreate" | "collapseTags" | "popoverMinWidth" | "idKey" | "remoteMethod" | "scrollHeight" | "popoverOptions" | "showSelectAll" | "multipleMode" | "autoHeight" | "noDataText" | "noMatchText" | "loadingText" | "searchPlaceholder" | "selectAllText" | "scrollLoading" | "customContent" | "displayKey" | "inputSearch" | "enableVirtualRender" | "allowEmptyValues" | "autoFocus" | "keepSearchValue">;
233
233
  $attrs: {
234
234
  [x: string]: unknown;
235
235
  };
@@ -779,12 +779,12 @@ declare const BkSelect: {
779
779
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end")[], string, {
780
780
  tagTheme: "success" | "info" | "warning" | "danger";
781
781
  behavior: "simplicity" | "normal";
782
- showOnInit: boolean;
782
+ size: "small" | "default" | "large";
783
+ multiple: boolean;
783
784
  disabled: boolean;
785
+ showOnInit: boolean;
784
786
  placeholder: string;
785
787
  list: unknown[];
786
- size: "small" | "default" | "large";
787
- multiple: boolean;
788
788
  loading: boolean;
789
789
  clearable: boolean;
790
790
  withValidate: boolean;
@@ -1908,12 +1908,12 @@ declare const BkSelect: {
1908
1908
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end")[], "focus" | "blur" | "change" | "toggle" | "clear" | "update:modelValue" | "scroll-end", {
1909
1909
  tagTheme: "success" | "info" | "warning" | "danger";
1910
1910
  behavior: "simplicity" | "normal";
1911
- showOnInit: boolean;
1911
+ size: "small" | "default" | "large";
1912
+ multiple: boolean;
1912
1913
  disabled: boolean;
1914
+ showOnInit: boolean;
1913
1915
  placeholder: string;
1914
1916
  list: unknown[];
1915
- size: "small" | "default" | "large";
1916
- multiple: boolean;
1917
1917
  loading: boolean;
1918
1918
  clearable: boolean;
1919
1919
  withValidate: boolean;
@@ -2030,8 +2030,8 @@ declare const BkSelect: {
2030
2030
  };
2031
2031
  }>>, {
2032
2032
  label: string;
2033
- disabled: boolean;
2034
2033
  collapse: boolean;
2034
+ disabled: boolean;
2035
2035
  collapsible: boolean;
2036
2036
  }>;
2037
2037
  }>;
@@ -47,8 +47,8 @@ declare const _default: import("vue").DefineComponent<{
47
47
  };
48
48
  }>>, {
49
49
  label: string;
50
- disabled: boolean;
51
50
  collapse: boolean;
51
+ disabled: boolean;
52
52
  collapsible: boolean;
53
53
  }>;
54
54
  export default _default;
@@ -713,12 +713,12 @@ declare const _default: import("vue").DefineComponent<{
713
713
  }, {
714
714
  tagTheme: "success" | "info" | "warning" | "danger";
715
715
  behavior: "simplicity" | "normal";
716
- showOnInit: boolean;
716
+ size: "small" | "default" | "large";
717
+ multiple: boolean;
717
718
  disabled: boolean;
719
+ showOnInit: boolean;
718
720
  placeholder: string;
719
721
  list: unknown[];
720
- size: "small" | "default" | "large";
721
- multiple: boolean;
722
722
  loading: boolean;
723
723
  clearable: boolean;
724
724
  withValidate: boolean;
@@ -29,10 +29,10 @@ declare const Slider: {
29
29
  $data: {};
30
30
  $props: Partial<{
31
31
  vertical: boolean;
32
+ range: boolean;
32
33
  extCls: string;
33
34
  height: string;
34
35
  step: number;
35
- range: boolean;
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" | "range" | "extCls" | "height" | "step" | "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
+ range: boolean;
221
222
  extCls: string;
222
223
  height: string;
223
224
  step: number;
224
- range: boolean;
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
+ range: boolean;
422
423
  extCls: string;
423
424
  height: string;
424
425
  step: number;
425
- range: boolean;
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
+ range: boolean;
183
184
  extCls: string;
184
185
  height: string;
185
186
  step: number;
186
- range: boolean;
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";
@@ -424,8 +424,8 @@ declare const BkTab: {
424
424
  }>>, {
425
425
  label: string | ((...args: any[]) => any);
426
426
  name: string | number;
427
- disabled: boolean;
428
427
  visible: boolean;
428
+ disabled: boolean;
429
429
  closable: boolean;
430
430
  panel: string | ((...args: any[]) => any);
431
431
  sortable: boolean;
@@ -59,8 +59,8 @@ declare const _default: import("vue").DefineComponent<{
59
59
  }>>, {
60
60
  label: string | ((...args: any[]) => any);
61
61
  name: string | number;
62
- disabled: boolean;
63
62
  visible: boolean;
63
+ disabled: boolean;
64
64
  closable: boolean;
65
65
  panel: string | ((...args: any[]) => any);
66
66
  sortable: boolean;
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";
@@ -39,7 +39,11 @@ export declare const enum EMIT_EVENTS {
39
39
  SCROLL_BOTTOM = "scrollBottom",
40
40
  ROW_SELECT = "select",
41
41
  ROW_SELECT_ALL = "selectAll",
42
- ROW_SELECT_CHANGE = "selectionChange"
42
+ ROW_SELECT_CHANGE = "selectionChange",
43
+ CELL_CLICK = "cellClick",
44
+ CELL_DBL_CLICK = "cellDblclick",
45
+ NATIVE_CLICK = "click",
46
+ NATIVE_DBL_CLICK = "dblclick"
43
47
  }
44
48
  export declare const EMIT_EVENT_TYPES: {
45
49
  columnPick: (..._args: any[]) => boolean;
@@ -56,6 +60,12 @@ export declare const EMIT_EVENT_TYPES: {
56
60
  pageValueChange: (..._args: any[]) => boolean;
57
61
  settingChange: (..._args: any[]) => boolean;
58
62
  scrollBottom: (..._args: any[]) => boolean;
63
+ cellClick: (..._args: any[]) => boolean;
64
+ cellDblclick: (..._args: any[]) => boolean;
65
+ };
66
+ export declare const CELL_EVENT_TYPES: {
67
+ click: (..._args: any[]) => boolean;
68
+ dblclick: (..._args: any[]) => boolean;
59
69
  };
60
70
  /**
61
71
  * Table Row Attributes
@@ -4,9 +4,9 @@ declare const BkTable: {
4
4
  $data: {};
5
5
  $props: Partial<{
6
6
  data: any[];
7
+ border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
7
8
  height: string | number;
8
9
  maxHeight: string | number;
9
- border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
10
10
  minHeight: string | number;
11
11
  columns: import("./props").Column[];
12
12
  headHeight: number;
@@ -18,7 +18,7 @@ declare const BkTable: {
18
18
  [key: string]: any;
19
19
  };
20
20
  showOverflowTooltip: boolean | import("./props").IOverflowTooltip;
21
- columnPick: "disabled" | "single" | "multi";
21
+ columnPick: "single" | "disabled" | "multi";
22
22
  rowHeight: any;
23
23
  showHead: boolean;
24
24
  virtualEnabled: boolean;
@@ -52,8 +52,8 @@ declare const BkTable: {
52
52
  default: () => import("./props").Column[];
53
53
  };
54
54
  activeColumn: import("vue-types").VueTypeDef<number | number[]>;
55
- columnPick: import("vue-types").VueTypeDef<"disabled" | "single" | "multi"> & {
56
- default: "disabled" | "single" | "multi";
55
+ columnPick: import("vue-types").VueTypeDef<"single" | "disabled" | "multi"> & {
56
+ default: "single" | "disabled" | "multi";
57
57
  };
58
58
  height: import("vue-types").VueTypeDef<string | number> & {
59
59
  default: string | number;
@@ -195,7 +195,9 @@ declare const BkTable: {
195
195
  onScrollBottom?: (...args: any[]) => any;
196
196
  onSelectAll?: (...args: any[]) => any;
197
197
  onSelectionChange?: (...args: any[]) => any;
198
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "height" | "maxHeight" | "border" | "minHeight" | "columns" | "headHeight" | "rowKey" | "pagination" | "scrollLoading" | "showOverflowTooltip" | "columnPick" | "rowHeight" | "showHead" | "virtualEnabled" | "paginationHeihgt" | "remotePagination" | "emptyText" | "settings" | "rowClass" | "rowStyle" | "cellStyle" | "cellClass" | "reserveExpand" | "selectionKey" | "isSelectedFn" | "asyncData" | "rowHover" | "defaultSort" | "isRowSelectEnable">;
198
+ onCellClick?: (...args: any[]) => any;
199
+ onCellDblclick?: (...args: any[]) => any;
200
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "border" | "height" | "maxHeight" | "minHeight" | "columns" | "headHeight" | "rowKey" | "pagination" | "scrollLoading" | "showOverflowTooltip" | "columnPick" | "rowHeight" | "showHead" | "virtualEnabled" | "paginationHeihgt" | "remotePagination" | "emptyText" | "settings" | "rowClass" | "rowStyle" | "cellStyle" | "cellClass" | "reserveExpand" | "selectionKey" | "isSelectedFn" | "asyncData" | "rowHover" | "defaultSort" | "isRowSelectEnable">;
199
201
  $attrs: {
200
202
  [x: string]: unknown;
201
203
  };
@@ -207,7 +209,7 @@ declare const BkTable: {
207
209
  }>;
208
210
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
209
211
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
210
- $emit: ((event: import("./const").EMIT_EVENTS.COLUMN_PICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_SORT, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_FILTER, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_FILTER_SAVE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_DBL_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_EXPAND_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.PAGE_LIMIT_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.PAGE_VALUE_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.SETTING_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.SCROLL_BOTTOM, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT_ALL, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT_CHANGE, ...args: any[]) => void);
212
+ $emit: ((event: import("./const").EMIT_EVENTS.COLUMN_PICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_SORT, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_FILTER, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.COLUMN_FILTER_SAVE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_DBL_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_EXPAND_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.PAGE_LIMIT_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.PAGE_VALUE_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.SETTING_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.SCROLL_BOTTOM, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT_ALL, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.ROW_SELECT_CHANGE, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.CELL_CLICK, ...args: any[]) => void) & ((event: import("./const").EMIT_EVENTS.CELL_DBL_CLICK, ...args: any[]) => void);
211
213
  $el: any;
212
214
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
213
215
  data: import("vue-types").VueTypeDef<any[]> & {
@@ -217,8 +219,8 @@ declare const BkTable: {
217
219
  default: () => import("./props").Column[];
218
220
  };
219
221
  activeColumn: import("vue-types").VueTypeDef<number | number[]>;
220
- columnPick: import("vue-types").VueTypeDef<"disabled" | "single" | "multi"> & {
221
- default: "disabled" | "single" | "multi";
222
+ columnPick: import("vue-types").VueTypeDef<"single" | "disabled" | "multi"> & {
223
+ default: "single" | "disabled" | "multi";
222
224
  };
223
225
  height: import("vue-types").VueTypeDef<string | number> & {
224
226
  default: string | number;
@@ -360,6 +362,8 @@ declare const BkTable: {
360
362
  onScrollBottom?: (...args: any[]) => any;
361
363
  onSelectAll?: (...args: any[]) => any;
362
364
  onSelectionChange?: (...args: any[]) => any;
365
+ onCellClick?: (...args: any[]) => any;
366
+ onCellDblclick?: (...args: any[]) => any;
363
367
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
364
368
  columnPick: (..._args: any[]) => boolean;
365
369
  columnFilter: (..._args: any[]) => boolean;
@@ -375,11 +379,13 @@ declare const BkTable: {
375
379
  pageValueChange: (..._args: any[]) => boolean;
376
380
  settingChange: (..._args: any[]) => boolean;
377
381
  scrollBottom: (..._args: any[]) => boolean;
382
+ cellClick: (..._args: any[]) => boolean;
383
+ cellDblclick: (..._args: any[]) => boolean;
378
384
  }, string, {
379
385
  data: any[];
386
+ border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
380
387
  height: string | number;
381
388
  maxHeight: string | number;
382
- border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
383
389
  minHeight: string | number;
384
390
  columns: import("./props").Column[];
385
391
  headHeight: number;
@@ -391,7 +397,7 @@ declare const BkTable: {
391
397
  [key: string]: any;
392
398
  };
393
399
  showOverflowTooltip: boolean | import("./props").IOverflowTooltip;
394
- columnPick: "disabled" | "single" | "multi";
400
+ columnPick: "single" | "disabled" | "multi";
395
401
  rowHeight: any;
396
402
  showHead: boolean;
397
403
  virtualEnabled: boolean;
@@ -445,8 +451,8 @@ declare const BkTable: {
445
451
  default: () => import("./props").Column[];
446
452
  };
447
453
  activeColumn: import("vue-types").VueTypeDef<number | number[]>;
448
- columnPick: import("vue-types").VueTypeDef<"disabled" | "single" | "multi"> & {
449
- default: "disabled" | "single" | "multi";
454
+ columnPick: import("vue-types").VueTypeDef<"single" | "disabled" | "multi"> & {
455
+ default: "single" | "disabled" | "multi";
450
456
  };
451
457
  height: import("vue-types").VueTypeDef<string | number> & {
452
458
  default: string | number;
@@ -588,6 +594,8 @@ declare const BkTable: {
588
594
  onScrollBottom?: (...args: any[]) => any;
589
595
  onSelectAll?: (...args: any[]) => any;
590
596
  onSelectionChange?: (...args: any[]) => any;
597
+ onCellClick?: (...args: any[]) => any;
598
+ onCellDblclick?: (...args: any[]) => any;
591
599
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & {} & import("vue").ComponentCustomProperties;
592
600
  __isFragment?: never;
593
601
  __isTeleport?: never;
@@ -600,8 +608,8 @@ declare const BkTable: {
600
608
  default: () => import("./props").Column[];
601
609
  };
602
610
  activeColumn: import("vue-types").VueTypeDef<number | number[]>;
603
- columnPick: import("vue-types").VueTypeDef<"disabled" | "single" | "multi"> & {
604
- default: "disabled" | "single" | "multi";
611
+ columnPick: import("vue-types").VueTypeDef<"single" | "disabled" | "multi"> & {
612
+ default: "single" | "disabled" | "multi";
605
613
  };
606
614
  height: import("vue-types").VueTypeDef<string | number> & {
607
615
  default: string | number;
@@ -743,6 +751,8 @@ declare const BkTable: {
743
751
  onScrollBottom?: (...args: any[]) => any;
744
752
  onSelectAll?: (...args: any[]) => any;
745
753
  onSelectionChange?: (...args: any[]) => any;
754
+ onCellClick?: (...args: any[]) => any;
755
+ onCellDblclick?: (...args: any[]) => any;
746
756
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
747
757
  columnPick: (..._args: any[]) => boolean;
748
758
  columnFilter: (..._args: any[]) => boolean;
@@ -758,11 +768,13 @@ declare const BkTable: {
758
768
  pageValueChange: (..._args: any[]) => boolean;
759
769
  settingChange: (..._args: any[]) => boolean;
760
770
  scrollBottom: (..._args: any[]) => boolean;
771
+ cellClick: (..._args: any[]) => boolean;
772
+ cellDblclick: (..._args: any[]) => boolean;
761
773
  }, string, {
762
774
  data: any[];
775
+ border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
763
776
  height: string | number;
764
777
  maxHeight: string | number;
765
- border: string | ("col" | "none" | "horizontal" | "row" | "outer")[];
766
778
  minHeight: string | number;
767
779
  columns: import("./props").Column[];
768
780
  headHeight: number;
@@ -774,7 +786,7 @@ declare const BkTable: {
774
786
  [key: string]: any;
775
787
  };
776
788
  showOverflowTooltip: boolean | import("./props").IOverflowTooltip;
777
- columnPick: "disabled" | "single" | "multi";
789
+ columnPick: "single" | "disabled" | "multi";
778
790
  rowHeight: any;
779
791
  showHead: boolean;
780
792
  virtualEnabled: boolean;