@aitronos/freddy-plugins 0.1.51 → 0.1.52

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
@@ -41,6 +41,46 @@ close: (...args: any[]) => void;
41
41
  onClose?: ((...args: any[]) => any) | undefined;
42
42
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
43
43
 
44
+ declare const __VLS_component_4: DefineComponent<ExtractPropTypes< {
45
+ text: StringConstructor;
46
+ placement: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ showDelay: {
51
+ type: NumberConstructor;
52
+ default: number;
53
+ };
54
+ hideDelay: {
55
+ type: NumberConstructor;
56
+ default: number;
57
+ };
58
+ custom: BooleanConstructor;
59
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
60
+ text: StringConstructor;
61
+ placement: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ showDelay: {
66
+ type: NumberConstructor;
67
+ default: number;
68
+ };
69
+ hideDelay: {
70
+ type: NumberConstructor;
71
+ default: number;
72
+ };
73
+ custom: BooleanConstructor;
74
+ }>> & Readonly<{}>, {
75
+ placement: string;
76
+ showDelay: number;
77
+ hideDelay: number;
78
+ custom: boolean;
79
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {
80
+ trigger: HTMLSpanElement;
81
+ tooltip: HTMLDivElement;
82
+ }, any>;
83
+
44
84
  declare type __VLS_Props = {
45
85
  isVisible: boolean;
46
86
  largeModel: boolean;
@@ -95,12 +135,27 @@ declare function __VLS_template_3(): {
95
135
  rootEl: HTMLDivElement;
96
136
  };
97
137
 
138
+ declare function __VLS_template_4(): {
139
+ attrs: Partial<{}>;
140
+ slots: {
141
+ default?(_: {}): any;
142
+ tooltip?(_: {}): any;
143
+ };
144
+ refs: {
145
+ trigger: HTMLSpanElement;
146
+ tooltip: HTMLDivElement;
147
+ };
148
+ rootEl: any;
149
+ };
150
+
98
151
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
99
152
 
100
153
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
101
154
 
102
155
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
103
156
 
157
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
158
+
104
159
  declare type __VLS_WithTemplateSlots<T, S> = T & {
105
160
  new (): {
106
161
  $slots: S;
@@ -119,6 +174,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
119
174
  };
120
175
  };
121
176
 
177
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
178
+ new (): {
179
+ $slots: S;
180
+ };
181
+ };
182
+
122
183
  export declare const AdvancedModal: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
123
184
 
124
185
  /**
@@ -672,6 +733,8 @@ export declare const ToastMessage: DefineComponent< {}, {}, {}, {}, {}, Compo
672
733
 
673
734
  declare type ToastType = "success" | "danger" | "info";
674
735
 
736
+ export declare const Tooltip: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
737
+
675
738
  export declare const useSnackBar: () => {
676
739
  snackQueue: Ref< {
677
740
  title: string;