@aitronos/freddy-plugins 0.1.39 → 0.1.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
@@ -35,9 +35,9 @@ isVisible: boolean;
35
35
  largeModel: boolean;
36
36
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
37
37
 
38
- declare const __VLS_component_3: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
38
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
39
39
  close: (...args: any[]) => void;
40
- }, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
40
+ }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
41
41
  onClose?: ((...args: any[]) => any) | undefined;
42
42
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
43
43
 
@@ -47,12 +47,20 @@ declare type __VLS_Props = {
47
47
  };
48
48
 
49
49
  declare type __VLS_Props_2 = {
50
+ isChecked: boolean;
51
+ isDashInput?: boolean;
52
+ blueCheckbox?: boolean;
53
+ disabled?: boolean;
54
+ ariaLabel?: string;
55
+ };
56
+
57
+ declare type __VLS_Props_3 = {
50
58
  modalTitle: string;
51
59
  headerClass: string;
52
60
  disableClickOutside?: boolean;
53
61
  };
54
62
 
55
- declare type __VLS_Props_3 = {
63
+ declare type __VLS_Props_4 = {
56
64
  customClass?: string;
57
65
  };
58
66
 
@@ -165,6 +173,12 @@ description: string;
165
173
  */
166
174
  export declare const copyToClipboard: (textToCopy: string) => Promise<void>;
167
175
 
176
+ export declare const CustomCheckbox: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
177
+ "update:isChecked": (value: boolean) => any;
178
+ }, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{
179
+ "onUpdate:isChecked"?: ((value: boolean) => any) | undefined;
180
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
181
+
168
182
  export declare const daysInMonth: number;
169
183
 
170
184
  /**
@@ -547,6 +561,10 @@ export declare const ModalBox: __VLS_WithTemplateSlots_2<typeof __VLS_component_
547
561
 
548
562
  export declare const ModalOverlay: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
549
563
 
564
+ export declare function openConfirmBoxModal(title: string, description: string): Promise<boolean>;
565
+
566
+ export declare function openDeleteConfirmModal(title: string, description: string): Promise<boolean>;
567
+
550
568
  export declare const Pagination: DefineComponent<ExtractPropTypes< {
551
569
  totalItems: {
552
570
  type: NumberConstructor;
@@ -627,11 +645,12 @@ export declare interface Snack {
627
645
  message: string;
628
646
  toastType: ToastType;
629
647
  duration?: number;
648
+ toastContainerSize?: "full" | "half" | "side70";
630
649
  }
631
650
 
632
651
  export declare const SnackBar: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
633
652
 
634
- export declare const Spinner: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
653
+ export declare const Spinner: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
635
654
 
636
655
  export declare const TabList: DefineComponent<ITabList, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
637
656
  tabSwitch: (...args: any[]) => void;
@@ -657,11 +676,13 @@ export declare const useSnackBar: () => {
657
676
  message: string;
658
677
  toastType: ToastType;
659
678
  duration?: number | undefined;
679
+ toastContainerSize?: "full" | "half" | "side70" | undefined;
660
680
  }[], Snack[] | {
661
681
  title: string;
662
682
  message: string;
663
683
  toastType: ToastType;
664
684
  duration?: number | undefined;
685
+ toastContainerSize?: "full" | "half" | "side70" | undefined;
665
686
  }[]>;
666
687
  addSnackBar: (snack: Snack) => void;
667
688
  removeSnackBar: (snack: Snack) => void;