@aitronos/freddy-plugins 0.4.43 → 0.4.45

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
@@ -3111,8 +3111,6 @@ export declare const IconWarningOctal: DefineComponent< {}, {}, {}, {}, {}, C
3111
3111
 
3112
3112
  export declare const IconX: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3113
3113
 
3114
- export declare const IconZip: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
3115
-
3116
3114
  export declare interface ICoordinates {
3117
3115
  x: number;
3118
3116
  y: number;
@@ -5018,6 +5016,14 @@ export declare type TabButtonSize = 'sm';
5018
5016
  */
5019
5017
  export declare type TabButtonType = 'underline' | 'line' | 'button';
5020
5018
 
5019
+ export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
5020
+ tabSwitch: (...args: any[]) => void;
5021
+ }, string, PublicProps, Readonly<ITabList> & Readonly<{
5022
+ onTabSwitch?: ((...args: any[]) => any) | undefined;
5023
+ }>, {
5024
+ currentTab: number;
5025
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
5026
+
5021
5027
  export declare interface TagsInputEvents extends InputFieldEvents {
5022
5028
  'update:tags': [tags: string[]];
5023
5029
  'tag-added': [tag: string];