@selfdecode/sd-component-library 4.0.71 → 4.0.72-es

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.
Files changed (43) hide show
  1. package/lib/components/complex/index.d.ts +0 -1
  2. package/lib/components/feedback/multiple-options-feedback/index.d.ts +1 -1
  3. package/lib/components/feedback/multiple-options-feedback/multiple-options-feedback.d.ts +0 -1
  4. package/lib/components/feedback/yes-no-feedback-block/index.d.ts +1 -1
  5. package/lib/core/custom-hooks.d.ts +0 -8
  6. package/lib/index.d.ts +0 -1
  7. package/lib/index.js +1 -1
  8. package/package.json +13 -8
  9. package/lib/02db83b5e22f52e82765429b20693529.svg +0 -3
  10. package/lib/1466cc434ae48bd9e2be60af284743f7.svg +0 -3
  11. package/lib/components/complex/footer/index.d.ts +0 -1
  12. package/lib/components/complex/footer/partials/footer-link/footer-link.d.ts +0 -3
  13. package/lib/components/complex/footer/partials/footer-link/index.d.ts +0 -3
  14. package/lib/components/complex/footer/partials/footer-link/interfaces.d.ts +0 -10
  15. package/lib/components/complex/footer/partials/footer-section/footer-section.d.ts +0 -3
  16. package/lib/components/complex/footer/partials/footer-section/index.d.ts +0 -1
  17. package/lib/components/complex/footer/partials/footer-section/interfaces.d.ts +0 -11
  18. package/lib/components/complex/footer/partials/footer-social/assets/facebook.svg +0 -3
  19. package/lib/components/complex/footer/partials/footer-social/assets/index.d.ts +0 -3
  20. package/lib/components/complex/footer/partials/footer-social/assets/instagram.svg +0 -3
  21. package/lib/components/complex/footer/partials/footer-social/assets/linkedin.svg +0 -3
  22. package/lib/components/complex/footer/partials/footer-social/footer-social.d.ts +0 -2
  23. package/lib/components/complex/footer/partials/footer-social/index.d.ts +0 -1
  24. package/lib/components/complex/footer/presentational/footer-presentational.d.ts +0 -3
  25. package/lib/components/complex/footer/presentational/index.d.ts +0 -1
  26. package/lib/components/complex/footer/presentational/interfaces.d.ts +0 -8
  27. package/lib/components/complex/footer/utils.d.ts +0 -7
  28. package/lib/components/toast/index.d.ts +0 -2
  29. package/lib/components/toast/interfaces.d.ts +0 -16
  30. package/lib/components/toast/partials/error-toast/error-toast.d.ts +0 -2
  31. package/lib/components/toast/partials/error-toast/index.d.ts +0 -1
  32. package/lib/components/toast/partials/general-toast/general-toast.d.ts +0 -2
  33. package/lib/components/toast/partials/general-toast/index.d.ts +0 -1
  34. package/lib/components/toast/partials/index.d.ts +0 -3
  35. package/lib/components/toast/partials/loading-toast/index.d.ts +0 -1
  36. package/lib/components/toast/partials/loading-toast/loading-toast.d.ts +0 -2
  37. package/lib/components/toast/partials/toast-container/index.d.ts +0 -1
  38. package/lib/components/toast/partials/toast-container/interfaces.d.ts +0 -6
  39. package/lib/components/toast/partials/toast-container/toast-container.d.ts +0 -5
  40. package/lib/components/toast/toast-provider.d.ts +0 -4
  41. package/lib/components/toast/use-toast.d.ts +0 -1
  42. package/lib/core/routes.d.ts +0 -4
  43. package/lib/e5cf7cfa02465901d0b9fb5adf3130df.svg +0 -3
@@ -1,2 +1 @@
1
- export * from "./footer";
2
1
  export * from "./navbar";
@@ -1,2 +1,2 @@
1
1
  export { MultipleOptionsFeedback } from "./multiple-options-feedback";
2
- export type { FeedbackOption } from "./interfaces";
2
+ export * from "./interfaces";
@@ -1,4 +1,3 @@
1
1
  import React from "react";
2
2
  import { MultipleOptionsFeedbackProps as Props } from "./interfaces";
3
- export declare const MultipleOptionsFeedbackToast: React.FC<Props>;
4
3
  export declare const MultipleOptionsFeedback: React.FC<Props>;
@@ -1,2 +1,2 @@
1
1
  export { YesNoFeedbackBlock } from "./yes-no-feedback-block";
2
- export type { YesNoOption } from "./interfaces";
2
+ export * from "./interfaces";
@@ -82,11 +82,3 @@ export declare function useBoundingClientRect<T extends Element = HTMLElement>(s
82
82
  rect: DOMRect | undefined;
83
83
  };
84
84
  export declare const useBodyScrollLock: <T extends HTMLElement = HTMLElement>(target: T | null, shouldEnable?: boolean) => void;
85
- /**
86
- * Calls the callback periodically, using the delay parameter as
87
- * a waiting period between one call and another
88
- *
89
- * @param callback
90
- * @param delay time to wait between one call and another, in milliseconds
91
- */
92
- export declare const useInterval: (callback: () => void, delay: number | null) => void;
package/lib/index.d.ts CHANGED
@@ -28,7 +28,6 @@ export * from "./components/selectors";
28
28
  export * from "./components/switches";
29
29
  export * from "./components/tabs";
30
30
  export * from "./components/texts";
31
- export * from "./components/toast";
32
31
  export * from "./components/tooltips";
33
32
  export * from "./components/complex";
34
33
  export * from "./components/utils";