bkui-vue 2.0.1-beta.93 → 2.0.1-beta.94

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.
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.93";
7
+ export const version = "2.0.1-beta.94";
8
8
  window.__bkui_vue_version__ = version;
@@ -0,0 +1,11 @@
1
+ import { Ref } from 'vue';
2
+ declare const useCheckboxToolTip: () => {
3
+ renderDomStyles: (el: HTMLElement) => {
4
+ paddingSize: number;
5
+ borderSize: number;
6
+ marginSize: number;
7
+ };
8
+ resolveOverflowTips: (field: string, itemRef: Ref, listRef: Ref) => boolean;
9
+ };
10
+ export type UseCheckboxToolTip = ReturnType<typeof useCheckboxToolTip>;
11
+ export default useCheckboxToolTip;
@@ -37,6 +37,7 @@ declare const useSettings: (props: TablePropTypes, ctx: SetupContext, columns: U
37
37
  text?: string;
38
38
  value: string;
39
39
  tipKey?: string;
40
+ showOverflowTooltip?: boolean;
40
41
  }[];
41
42
  filterFn?: (...args: any[]) => boolean;
42
43
  match?: import("../props").FullEnum;
@@ -91,6 +92,7 @@ declare const useSettings: (props: TablePropTypes, ctx: SetupContext, columns: U
91
92
  text?: string;
92
93
  value: string;
93
94
  tipKey?: string;
95
+ showOverflowTooltip?: boolean;
94
96
  }[];
95
97
  filterFn?: (...args: any[]) => boolean;
96
98
  match?: import("../props").FullEnum;