@aitronos/freddy-plugins 0.4.39 → 0.4.41

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/dist/index.d.ts CHANGED
@@ -20,6 +20,15 @@ declare const __VLS_component_10: DefineComponent<TooltipProps, {}, {}, {}, {},
20
20
  tooltipWrapper: HTMLDivElement;
21
21
  }, HTMLDivElement>;
22
22
 
23
+ declare const __VLS_component_11: DefineComponent<TooltipV2Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipV2Props> & Readonly<{}>, {
24
+ html: boolean;
25
+ placement: "top" | "bottom" | "left" | "right";
26
+ delay: number;
27
+ hideDelay: number;
28
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
29
+ tooltipWrapper: HTMLDivElement;
30
+ }, HTMLDivElement>;
31
+
23
32
  declare const __VLS_component_2: DefineComponent<Props, {
24
33
  execute: (customData?: any) => Promise<void>;
25
34
  retry: () => void;
@@ -244,6 +253,18 @@ declare function __VLS_template_10(): {
244
253
  rootEl: HTMLDivElement;
245
254
  };
246
255
 
256
+ declare function __VLS_template_11(): {
257
+ attrs: Partial<{}>;
258
+ slots: {
259
+ default?(_: {}): any;
260
+ content?(_: {}): any;
261
+ };
262
+ refs: {
263
+ tooltipWrapper: HTMLDivElement;
264
+ };
265
+ rootEl: HTMLDivElement;
266
+ };
267
+
247
268
  declare function __VLS_template_2(): {
248
269
  attrs: Partial<{}>;
249
270
  slots: {
@@ -321,6 +342,8 @@ declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
321
342
 
322
343
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
323
344
 
345
+ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
346
+
324
347
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
325
348
 
326
349
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -349,6 +372,12 @@ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
349
372
  };
350
373
  };
351
374
 
375
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
376
+ new (): {
377
+ $slots: S;
378
+ };
379
+ };
380
+
352
381
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
353
382
  new (): {
354
383
  $slots: S;
@@ -5294,6 +5323,23 @@ declare interface TooltipProps {
5294
5323
  contentClass?: string;
5295
5324
  }
5296
5325
 
5326
+ export declare const TooltipV2: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
5327
+
5328
+ declare interface TooltipV2Props {
5329
+ /** The text content to display in the tooltip */
5330
+ text?: string;
5331
+ /** The placement of the tooltip relative to the trigger element */
5332
+ placement?: 'top' | 'bottom' | 'left' | 'right';
5333
+ /** Whether to render the text as HTML */
5334
+ html?: boolean;
5335
+ /** Custom CSS class to apply to the tooltip content */
5336
+ contentClass?: string;
5337
+ /** Delay before showing the tooltip (in milliseconds) */
5338
+ delay?: number;
5339
+ /** Delay before hiding the tooltip (in milliseconds) */
5340
+ hideDelay?: number;
5341
+ }
5342
+
5297
5343
  export declare interface UnifiedInputFieldEvents {
5298
5344
  'update:modelValue': [value: string];
5299
5345
  input: [value: string];