@aitronos/freddy-plugins 0.1.72 → 0.1.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.
package/dist/index.d.ts CHANGED
@@ -102,6 +102,11 @@ declare type __VLS_Props_3 = {
102
102
  };
103
103
 
104
104
  declare type __VLS_Props_4 = {
105
+ type: SkeletonType;
106
+ hasHeader?: boolean;
107
+ };
108
+
109
+ declare type __VLS_Props_5 = {
105
110
  customClass?: string;
106
111
  };
107
112
 
@@ -704,6 +709,8 @@ default: () => boolean;
704
709
  };
705
710
  }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
706
711
  "update:searchInput": (inputValue: string | null) => any;
712
+ searchValue: (inputValue: string | null) => any;
713
+ clearSearch: () => any;
707
714
  }, string, PublicProps, Readonly<ExtractPropTypes< {
708
715
  placeholder: {
709
716
  type: StringConstructor;
@@ -715,6 +722,8 @@ default: () => boolean;
715
722
  };
716
723
  }>> & Readonly<{
717
724
  "onUpdate:searchInput"?: ((inputValue: string | null) => any) | undefined;
725
+ onSearchValue?: ((inputValue: string | null) => any) | undefined;
726
+ onClearSearch?: (() => any) | undefined;
718
727
  }>, {
719
728
  placeholder: string;
720
729
  showLoaderForSearch: boolean;
@@ -723,6 +732,10 @@ dropdownRef: HTMLDivElement;
723
732
  searchInput: HTMLInputElement;
724
733
  }, any>;
725
734
 
735
+ export declare const SkeletonLoader: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
736
+
737
+ declare type SkeletonType = "card" | "paragraph" | "table" | "single-box";
738
+
726
739
  export declare interface Snack {
727
740
  title: string;
728
741
  message: string;
@@ -733,7 +746,7 @@ export declare interface Snack {
733
746
 
734
747
  export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
735
748
 
736
- export declare const Spinner: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
749
+ export declare const Spinner: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
737
750
 
738
751
  export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
739
752
  tabSwitch: (...args: any[]) => void;