@selfdecode/sd-component-library 4.0.71 → 4.0.72
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/lib/components/complex/index.d.ts +0 -1
- package/lib/components/feedback/multiple-options-feedback/index.d.ts +1 -1
- package/lib/components/feedback/multiple-options-feedback/multiple-options-feedback.d.ts +0 -1
- package/lib/components/feedback/yes-no-feedback-block/index.d.ts +1 -1
- package/lib/core/custom-hooks.d.ts +0 -8
- package/lib/index.d.ts +0 -1
- package/lib/index.js +1 -1
- package/package.json +1 -2
- package/lib/02db83b5e22f52e82765429b20693529.svg +0 -3
- package/lib/1466cc434ae48bd9e2be60af284743f7.svg +0 -3
- package/lib/components/complex/footer/index.d.ts +0 -1
- package/lib/components/complex/footer/partials/footer-link/footer-link.d.ts +0 -3
- package/lib/components/complex/footer/partials/footer-link/index.d.ts +0 -3
- package/lib/components/complex/footer/partials/footer-link/interfaces.d.ts +0 -10
- package/lib/components/complex/footer/partials/footer-section/footer-section.d.ts +0 -3
- package/lib/components/complex/footer/partials/footer-section/index.d.ts +0 -1
- package/lib/components/complex/footer/partials/footer-section/interfaces.d.ts +0 -11
- package/lib/components/complex/footer/partials/footer-social/assets/facebook.svg +0 -3
- package/lib/components/complex/footer/partials/footer-social/assets/index.d.ts +0 -3
- package/lib/components/complex/footer/partials/footer-social/assets/instagram.svg +0 -3
- package/lib/components/complex/footer/partials/footer-social/assets/linkedin.svg +0 -3
- package/lib/components/complex/footer/partials/footer-social/footer-social.d.ts +0 -2
- package/lib/components/complex/footer/partials/footer-social/index.d.ts +0 -1
- package/lib/components/complex/footer/presentational/footer-presentational.d.ts +0 -3
- package/lib/components/complex/footer/presentational/index.d.ts +0 -1
- package/lib/components/complex/footer/presentational/interfaces.d.ts +0 -8
- package/lib/components/complex/footer/utils.d.ts +0 -7
- package/lib/components/toast/index.d.ts +0 -2
- package/lib/components/toast/interfaces.d.ts +0 -16
- package/lib/components/toast/partials/error-toast/error-toast.d.ts +0 -2
- package/lib/components/toast/partials/error-toast/index.d.ts +0 -1
- package/lib/components/toast/partials/general-toast/general-toast.d.ts +0 -2
- package/lib/components/toast/partials/general-toast/index.d.ts +0 -1
- package/lib/components/toast/partials/index.d.ts +0 -3
- package/lib/components/toast/partials/loading-toast/index.d.ts +0 -1
- package/lib/components/toast/partials/loading-toast/loading-toast.d.ts +0 -2
- package/lib/components/toast/partials/toast-container/index.d.ts +0 -1
- package/lib/components/toast/partials/toast-container/interfaces.d.ts +0 -6
- package/lib/components/toast/partials/toast-container/toast-container.d.ts +0 -5
- package/lib/components/toast/toast-provider.d.ts +0 -4
- package/lib/components/toast/use-toast.d.ts +0 -1
- package/lib/core/routes.d.ts +0 -4
- package/lib/e5cf7cfa02465901d0b9fb5adf3130df.svg +0 -3
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { MultipleOptionsFeedback } from "./multiple-options-feedback";
|
|
2
|
-
export
|
|
2
|
+
export * from "./interfaces";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { YesNoFeedbackBlock } from "./yes-no-feedback-block";
|
|
2
|
-
export
|
|
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";
|