@davincihealthcare/elty-design-system-vue 1.56.0 → 1.57.0

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.
@@ -5,11 +5,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
5
5
  matchAnchorWidth?: boolean;
6
6
  position: ElClipToAnchorPosition;
7
7
  minWidth?: number;
8
+ distanceFromAnchor?: number;
8
9
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
9
10
  anchor: HTMLElement;
10
11
  matchAnchorWidth?: boolean;
11
12
  position: ElClipToAnchorPosition;
12
13
  minWidth?: number;
14
+ distanceFromAnchor?: number;
13
15
  }>>>, {}, {}>, {
14
16
  default?(_: {
15
17
  isVisible: boolean;
@@ -1,10 +1,12 @@
1
1
  export declare const elTooltipPositions: readonly ["bottom-left", "bottom", "bottom-right", "top-left", "top", "top-right", "left-start", "left", "left-end", "right-start", "right", "right-end"];
2
2
  export type ElTooltipPosition = (typeof elTooltipPositions)[number];
3
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
- text: string;
4
+ title: string;
5
+ content?: string;
5
6
  position?: ElTooltipPosition;
6
7
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- text: string;
8
+ title: string;
9
+ content?: string;
8
10
  position?: ElTooltipPosition;
9
11
  }>>>, {}, {}>, {
10
12
  default?(_: {}): any;
package/dist/index.d.ts CHANGED
@@ -104,3 +104,7 @@ export * from './table/ElServerSideMobileTable.vue';
104
104
  export { default as ElServerSideMobileTable } from './table/ElServerSideMobileTable.vue';
105
105
  export * from './table/ElServerSideResponsiveTable.vue';
106
106
  export { default as ElServerSideResponsiveTable } from './table/ElServerSideResponsiveTable.vue';
107
+ export * from './ElTooltip.vue';
108
+ export { default as ElTooltip } from './ElTooltip.vue';
109
+ export type { DataRow } from './table/commonTypes';
110
+ export type { DataCell } from './table/ElTableCell.vue';