@aitronos/freddy-plugins 0.4.73 → 0.4.74

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.
@@ -2,7 +2,7 @@ interface TooltipProps {
2
2
  /** The text content to display in the tooltip */
3
3
  text?: string;
4
4
  /** The placement of the tooltip relative to the trigger element */
5
- placement?: "top" | "bottom" | "left" | "right";
5
+ placement?: 'top' | 'bottom' | 'left' | 'right';
6
6
  /** Whether to render the text as HTML */
7
7
  html?: boolean;
8
8
  /** Custom CSS class to apply to the tooltip content */
@@ -16,12 +16,14 @@ declare function __VLS_template(): {
16
16
  };
17
17
  refs: {
18
18
  tooltipWrapper: HTMLDivElement;
19
+ tooltipContent: HTMLDivElement;
19
20
  };
20
21
  rootEl: HTMLDivElement;
21
22
  };
22
23
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
23
24
  declare const __VLS_component: import('vue').DefineComponent<TooltipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
24
25
  tooltipWrapper: HTMLDivElement;
26
+ tooltipContent: HTMLDivElement;
25
27
  }, HTMLDivElement>;
26
28
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
29
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aitronos/freddy-plugins",
3
- "version": "0.4.73",
3
+ "version": "0.4.74",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",