@aitronos/freddy-plugins 0.2.0 → 0.2.3

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
@@ -94,7 +94,7 @@ close: (...args: any[]) => void;
94
94
  onClose?: ((...args: any[]) => any) | undefined;
95
95
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
96
96
 
97
- declare const __VLS_component_6: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
97
+ declare const __VLS_component_6: DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
98
98
  tooltipWrapper: HTMLDivElement;
99
99
  }, HTMLDivElement>;
100
100
 
@@ -139,12 +139,6 @@ declare type __VLS_Props_7 = {
139
139
  size?: 's' | 'sm' | 'md' | 'lg' | 'xl';
140
140
  };
141
141
 
142
- declare type __VLS_Props_8 = {
143
- text?: string;
144
- placement?: 'top' | 'bottom' | 'left' | 'right';
145
- html?: boolean;
146
- };
147
-
148
142
  declare function __VLS_template(): {
149
143
  attrs: Partial<{}>;
150
144
  slots: {
@@ -473,6 +467,8 @@ export declare const IconBuildings: DefineComponent< {}, {}, {}, {}, {}, Comp
473
467
 
474
468
  export declare const IconCalendarWithTickInside: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
475
469
 
470
+ export declare const IconCallNotAllowed: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
471
+
476
472
  export declare const IconCardPay: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
477
473
 
478
474
  export declare const IconCaution: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
@@ -595,6 +591,10 @@ export declare const IconLocationWithCircleIn: DefineComponent< {}, {}, {}, {
595
591
 
596
592
  export declare const IconMarketPlace: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
597
593
 
594
+ export declare const IconMicrophone: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
595
+
596
+ export declare const IconMutedMicrophone: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
597
+
598
598
  export declare const IconNewNotification: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
599
599
 
600
600
  export declare const IconNotification: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
@@ -687,6 +687,8 @@ export declare const IconUser: DefineComponent< {}, {}, {}, {}, {}, Component
687
687
 
688
688
  export declare const IconVerticalDots: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
689
689
 
690
+ export declare const IconVideoCamera: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
691
+
690
692
  export declare const IconWarningOctal: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
691
693
 
692
694
  export declare const IconZip: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
@@ -973,6 +975,17 @@ declare type ToastType = "success" | "danger" | "info";
973
975
 
974
976
  export declare const Tooltip: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
975
977
 
978
+ declare interface TooltipProps {
979
+ /** The text content to display in the tooltip */
980
+ text?: string;
981
+ /** The placement of the tooltip relative to the trigger element */
982
+ placement?: "top" | "bottom" | "left" | "right";
983
+ /** Whether to render the text as HTML */
984
+ html?: boolean;
985
+ /** Custom CSS class to apply to the tooltip content */
986
+ contentClass?: string;
987
+ }
988
+
976
989
  export declare const useSnackBar: () => {
977
990
  snackQueue: Ref< {
978
991
  title: string;