sapo-components-ui-rn 1.0.0

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 (215) hide show
  1. package/README.md +69 -0
  2. package/dist/assets/error.png +0 -0
  3. package/dist/assets/icon-checkbox-active.svg +4 -0
  4. package/dist/assets/icon-checkbox.svg +3 -0
  5. package/dist/assets/image_default.png +0 -0
  6. package/dist/assets/images/error.png +0 -0
  7. package/dist/assets/images/image_default.png +0 -0
  8. package/dist/assets/images/info.png +0 -0
  9. package/dist/assets/images/success.png +0 -0
  10. package/dist/assets/images/warning.png +0 -0
  11. package/dist/assets/info.png +0 -0
  12. package/dist/assets/success.png +0 -0
  13. package/dist/assets/svg/icon-checkbox-active.svg +4 -0
  14. package/dist/assets/svg/icon-checkbox.svg +3 -0
  15. package/dist/assets/warning.png +0 -0
  16. package/dist/components/ActivityIndicator.d.ts +28 -0
  17. package/dist/components/Avatar/index.d.ts +17 -0
  18. package/dist/components/Badge/index.d.ts +13 -0
  19. package/dist/components/Button/index.d.ts +23 -0
  20. package/dist/components/ButtonIcon/index.d.ts +18 -0
  21. package/dist/components/Checkbox/index.d.ts +14 -0
  22. package/dist/components/ChipBar/index.d.ts +16 -0
  23. package/dist/components/CountingDot/index.d.ts +13 -0
  24. package/dist/components/FloatingButton/index.d.ts +17 -0
  25. package/dist/components/Icon/index.d.ts +17 -0
  26. package/dist/components/IconSvg/index.d.ts +12 -0
  27. package/dist/components/Image/index.d.ts +14 -0
  28. package/dist/components/ProgressBar.d.ts +42 -0
  29. package/dist/components/RadioButton/index.d.ts +13 -0
  30. package/dist/components/ScaleButton/index.d.ts +4 -0
  31. package/dist/components/SelectionField/index.d.ts +24 -0
  32. package/dist/components/Spacer/index.d.ts +9 -0
  33. package/dist/components/Switch/Switch.d.ts +47 -0
  34. package/dist/components/Switch/utils.d.ts +14 -0
  35. package/dist/components/Text/index.d.ts +14 -0
  36. package/dist/components/TextInput/Addons/Outline.d.ts +15 -0
  37. package/dist/components/TextInput/Addons/Underline.d.ts +19 -0
  38. package/dist/components/TextInput/Adornment/TextInputAdornment.d.ts +43 -0
  39. package/dist/components/TextInput/Adornment/TextInputAffix.d.ts +72 -0
  40. package/dist/components/TextInput/Adornment/enums.d.ts +12 -0
  41. package/dist/components/TextInput/Adornment/types.d.ts +11 -0
  42. package/dist/components/TextInput/Adornment/utils.d.ts +11 -0
  43. package/dist/components/TextInput/Label/InputLabel.d.ts +4 -0
  44. package/dist/components/TextInput/Label/LabelBackground.d.ts +4 -0
  45. package/dist/components/TextInput/TextInput.d.ts +171 -0
  46. package/dist/components/TextInput/TextInputDefault.d.ts +4 -0
  47. package/dist/components/TextInput/TextInputFlat.d.ts +4 -0
  48. package/dist/components/TextInput/constants.d.ts +31 -0
  49. package/dist/components/TextInput/helpers.d.ts +95 -0
  50. package/dist/components/TextInput/types.d.ts +154 -0
  51. package/dist/components/Toast/ToastProvider.d.ts +21 -0
  52. package/dist/components/Toast/index.d.ts +3 -0
  53. package/dist/components/Typography/AnimatedText.d.ts +34 -0
  54. package/dist/components/Typography/StyledText.d.ts +12 -0
  55. package/dist/components/Typography/Text.d.ts +35 -0
  56. package/dist/components/Typography/types.d.ts +2 -0
  57. package/dist/components/View/index.d.ts +38 -0
  58. package/dist/components/ViewVisibleAnimated/index.d.ts +25 -0
  59. package/dist/constants.d.ts +1 -0
  60. package/dist/core/theming.d.ts +43 -0
  61. package/dist/icons/IconArrowDown.d.ts +4 -0
  62. package/dist/icons/IconCheckbox.d.ts +4 -0
  63. package/dist/icons/IconCheckboxActive.d.ts +4 -0
  64. package/dist/icons/IconClearText.d.ts +4 -0
  65. package/dist/icons/IconRadio.d.ts +4 -0
  66. package/dist/icons/IconRadioActive.d.ts +4 -0
  67. package/dist/icons/IconRadioDisable.d.ts +4 -0
  68. package/dist/index.d.ts +33 -0
  69. package/dist/index.esm.js +6758 -0
  70. package/dist/index.esm.js.map +1 -0
  71. package/dist/index.js +6823 -0
  72. package/dist/index.js.map +1 -0
  73. package/dist/styles/fonts.d.ts +78 -0
  74. package/dist/styles/overlay.d.ts +3 -0
  75. package/dist/styles/shadow.d.ts +18 -0
  76. package/dist/styles/themes/DarkTheme.d.ts +2 -0
  77. package/dist/styles/themes/LightTheme.d.ts +2 -0
  78. package/dist/styles/themes/index.d.ts +2 -0
  79. package/dist/styles/themes/tokens.d.ts +830 -0
  80. package/dist/theme/blue.d.ts +14 -0
  81. package/dist/theme/colors.d.ts +99 -0
  82. package/dist/theme/container-styles.d.ts +124 -0
  83. package/dist/theme/dimensions.d.ts +36 -0
  84. package/dist/theme/green.d.ts +15 -0
  85. package/dist/theme/icon.d.ts +5 -0
  86. package/dist/theme/ink.d.ts +11 -0
  87. package/dist/theme/orange.d.ts +14 -0
  88. package/dist/theme/purple.d.ts +6 -0
  89. package/dist/theme/red.d.ts +15 -0
  90. package/dist/theme/themes.d.ts +277 -0
  91. package/dist/theme/white.d.ts +10 -0
  92. package/dist/theme/yellow.d.ts +15 -0
  93. package/dist/types/index.d.ts +65 -0
  94. package/dist/types.d.ts +220 -0
  95. package/dist/utils/BackHandler/BackHandler.d.ts +9 -0
  96. package/dist/utils/BackHandler/BackHandler.native.d.ts +2 -0
  97. package/dist/utils/addEventListener.d.ts +12 -0
  98. package/dist/utils/forwardRef.d.ts +11 -0
  99. package/dist/utils/function-utils.d.ts +12 -0
  100. package/dist/utils/getContrastingColor.d.ts +2 -0
  101. package/dist/utils/hasTouchHandler.d.ts +5 -0
  102. package/dist/utils/roundLayoutSize.d.ts +1 -0
  103. package/dist/utils/splitStyles.d.ts +19 -0
  104. package/dist/utils/toast-manager.d.ts +21 -0
  105. package/dist/utils/useAnimatedValue.d.ts +2 -0
  106. package/dist/utils/useAnimatedValueArray.d.ts +2 -0
  107. package/dist/utils/useIsKeyboardShown.d.ts +6 -0
  108. package/dist/utils/useLayout.d.ts +6 -0
  109. package/dist/utils/useLazyRef.d.ts +2 -0
  110. package/package.json +104 -0
  111. package/src/.DS_Store +0 -0
  112. package/src/assets/images/error.png +0 -0
  113. package/src/assets/images/image_default.png +0 -0
  114. package/src/assets/images/info.png +0 -0
  115. package/src/assets/images/success.png +0 -0
  116. package/src/assets/images/warning.png +0 -0
  117. package/src/assets/svg/icon-checkbox-active.svg +4 -0
  118. package/src/assets/svg/icon-checkbox.svg +3 -0
  119. package/src/babel/.eslintrc +7 -0
  120. package/src/babel/index.js +63 -0
  121. package/src/components/.DS_Store +0 -0
  122. package/src/components/ActivityIndicator.tsx +238 -0
  123. package/src/components/Avatar/index.tsx +102 -0
  124. package/src/components/Badge/index.tsx +55 -0
  125. package/src/components/Button/index.tsx +162 -0
  126. package/src/components/ButtonIcon/index.tsx +98 -0
  127. package/src/components/Checkbox/index.tsx +107 -0
  128. package/src/components/ChipBar/index.tsx +112 -0
  129. package/src/components/CountingDot/index.tsx +63 -0
  130. package/src/components/FloatingButton/index.tsx +99 -0
  131. package/src/components/Icon/index.tsx +135 -0
  132. package/src/components/IconSvg/index.tsx +42 -0
  133. package/src/components/Image/index.tsx +127 -0
  134. package/src/components/ProgressBar.tsx +272 -0
  135. package/src/components/RadioButton/index.tsx +105 -0
  136. package/src/components/ScaleButton/index.tsx +17 -0
  137. package/src/components/SelectionField/index.tsx +166 -0
  138. package/src/components/Spacer/index.tsx +19 -0
  139. package/src/components/Switch/Switch.tsx +110 -0
  140. package/src/components/Switch/utils.ts +96 -0
  141. package/src/components/Text/index.tsx +69 -0
  142. package/src/components/TextInput/.DS_Store +0 -0
  143. package/src/components/TextInput/Addons/Outline.tsx +62 -0
  144. package/src/components/TextInput/Addons/Underline.tsx +71 -0
  145. package/src/components/TextInput/Adornment/TextInputAdornment.tsx +191 -0
  146. package/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
  147. package/src/components/TextInput/Adornment/enums.tsx +12 -0
  148. package/src/components/TextInput/Adornment/types.tsx +11 -0
  149. package/src/components/TextInput/Adornment/utils.ts +39 -0
  150. package/src/components/TextInput/Label/InputLabel.tsx +216 -0
  151. package/src/components/TextInput/Label/LabelBackground.tsx +100 -0
  152. package/src/components/TextInput/TextInput.tsx +564 -0
  153. package/src/components/TextInput/TextInputDefault.tsx +187 -0
  154. package/src/components/TextInput/TextInputFlat.tsx +452 -0
  155. package/src/components/TextInput/constants.tsx +48 -0
  156. package/src/components/TextInput/helpers.tsx +546 -0
  157. package/src/components/TextInput/types.tsx +155 -0
  158. package/src/components/Toast/ToastProvider.tsx +69 -0
  159. package/src/components/Toast/index.tsx +239 -0
  160. package/src/components/Typography/AnimatedText.tsx +84 -0
  161. package/src/components/Typography/StyledText.tsx +53 -0
  162. package/src/components/Typography/Text.tsx +189 -0
  163. package/src/components/Typography/types.tsx +5 -0
  164. package/src/components/View/index.tsx +175 -0
  165. package/src/components/ViewVisibleAnimated/index.tsx +199 -0
  166. package/src/constants.tsx +16 -0
  167. package/src/core/theming.tsx +144 -0
  168. package/src/icons/IconArrowDown.tsx +14 -0
  169. package/src/icons/IconCheckbox.tsx +20 -0
  170. package/src/icons/IconCheckboxActive.tsx +18 -0
  171. package/src/icons/IconClearText.tsx +14 -0
  172. package/src/icons/IconRadio.tsx +11 -0
  173. package/src/icons/IconRadioActive.tsx +12 -0
  174. package/src/icons/IconRadioDisable.tsx +12 -0
  175. package/src/index.ts +51 -0
  176. package/src/index.tsx +50 -0
  177. package/src/styles/fonts.tsx +89 -0
  178. package/src/styles/overlay.tsx +69 -0
  179. package/src/styles/shadow.tsx +47 -0
  180. package/src/styles/themes/DarkTheme.tsx +157 -0
  181. package/src/styles/themes/LightTheme.tsx +160 -0
  182. package/src/styles/themes/index.ts +3 -0
  183. package/src/styles/themes/tokens.tsx +481 -0
  184. package/src/theme/blue.ts +25 -0
  185. package/src/theme/colors.ts +21 -0
  186. package/src/theme/container-styles.tsx +126 -0
  187. package/src/theme/dimensions.ts +44 -0
  188. package/src/theme/green.ts +27 -0
  189. package/src/theme/icon.ts +7 -0
  190. package/src/theme/ink.ts +18 -0
  191. package/src/theme/orange.ts +24 -0
  192. package/src/theme/purple.ts +8 -0
  193. package/src/theme/red.ts +26 -0
  194. package/src/theme/themes.tsx +287 -0
  195. package/src/theme/white.ts +16 -0
  196. package/src/theme/yellow.ts +26 -0
  197. package/src/types/index.ts +71 -0
  198. package/src/types/svg.d.ts +5 -0
  199. package/src/types.ts +259 -0
  200. package/src/types.tsx +284 -0
  201. package/src/utils/BackHandler/BackHandler.native.tsx +3 -0
  202. package/src/utils/BackHandler/BackHandler.tsx +11 -0
  203. package/src/utils/addEventListener.tsx +56 -0
  204. package/src/utils/forwardRef.tsx +23 -0
  205. package/src/utils/function-utils.tsx +108 -0
  206. package/src/utils/getContrastingColor.tsx +15 -0
  207. package/src/utils/hasTouchHandler.tsx +23 -0
  208. package/src/utils/roundLayoutSize.ts +2 -0
  209. package/src/utils/splitStyles.ts +60 -0
  210. package/src/utils/toast-manager.tsx +46 -0
  211. package/src/utils/useAnimatedValue.tsx +9 -0
  212. package/src/utils/useAnimatedValueArray.tsx +13 -0
  213. package/src/utils/useIsKeyboardShown.tsx +55 -0
  214. package/src/utils/useLayout.tsx +29 -0
  215. package/src/utils/useLazyRef.tsx +11 -0
@@ -0,0 +1,35 @@
1
+ import * as React from "react";
2
+ import { StyleProp, Text as NativeText, TextStyle } from "react-native";
3
+ import type { VariantProp } from "./types";
4
+ import type { ThemeProp } from "../../types";
5
+ export type Props<T> = React.ComponentProps<typeof NativeText> & {
6
+ /**
7
+ * @supported Available in v5.x with theme version 3
8
+ *
9
+ * Variant defines appropriate text styles for type role and its size.
10
+ * Available variants:
11
+ *
12
+ * Display: `displayLarge`, `displayMedium`, `displaySmall`
13
+ *
14
+ * Headline: `headlineLarge`, `headlineMedium`, `headlineSmall`
15
+ *
16
+ * Title: `titleLarge`, `titleMedium`, `titleSmall`
17
+ *
18
+ * Label: `labelLarge`, `labelMedium`, `labelSmall`
19
+ *
20
+ * Body: `bodyLarge`, `bodyMedium`, `bodySmall`
21
+ */
22
+ variant?: VariantProp<T>;
23
+ children: React.ReactNode;
24
+ theme?: ThemeProp;
25
+ style?: StyleProp<TextStyle>;
26
+ };
27
+ export type TextRef = React.ForwardedRef<{
28
+ setNativeProps(args: Object): void;
29
+ }>;
30
+ type TextComponent<T> = (props: Props<T> & {
31
+ ref?: React.RefObject<TextRef>;
32
+ }) => JSX.Element;
33
+ declare const Component: TextComponent<never>;
34
+ export declare const customText: <T>() => TextComponent<T>;
35
+ export default Component;
@@ -0,0 +1,2 @@
1
+ import type { MD3TypescaleKey } from '../../types';
2
+ export type VariantProp<T> = (T extends string ? (string extends T ? never : T) : never) | keyof typeof MD3TypescaleKey;
@@ -0,0 +1,38 @@
1
+ import React from "react";
2
+ import { StyleProp, ViewStyle } from "react-native";
3
+ interface ViewProps {
4
+ row?: boolean;
5
+ full?: boolean;
6
+ justifyCenter?: boolean;
7
+ justifyBetween?: boolean;
8
+ alignCenter?: boolean;
9
+ center?: boolean;
10
+ gap?: number;
11
+ color?: any;
12
+ backgroundColor?: any;
13
+ width?: number | `${number}%`;
14
+ height?: number | `${number}%`;
15
+ onPress?: () => void;
16
+ padding?: number;
17
+ paddingHorizontal?: number;
18
+ paddingVertical?: number;
19
+ disabled?: boolean;
20
+ activeOpacity?: number;
21
+ paddingBottom?: number;
22
+ marginHorizontal?: number;
23
+ marginVertical?: number;
24
+ paddingLeft?: number;
25
+ paddingRight?: number;
26
+ paddingTop?: number;
27
+ style?: StyleProp<ViewStyle>;
28
+ children?: React.ReactNode;
29
+ alignEnd?: boolean;
30
+ wrap?: boolean;
31
+ borderBottomWidth?: number;
32
+ borderBottomColor?: string;
33
+ borderRadius?: number;
34
+ borderWidth?: number;
35
+ borderColor?: string;
36
+ }
37
+ declare const _default: React.MemoExoticComponent<({ row, full, justifyCenter, justifyBetween, alignCenter, center, color, backgroundColor, width, height, padding, paddingHorizontal, paddingVertical, marginHorizontal, marginVertical, paddingLeft, paddingRight, paddingTop, alignEnd, wrap, borderBottomWidth, borderBottomColor, borderRadius, borderWidth, borderColor, style, onPress, activeOpacity, children, }: ViewProps) => React.JSX.Element>;
38
+ export default _default;
@@ -0,0 +1,25 @@
1
+ import React from "react";
2
+ import { ViewStyle, StyleProp } from "react-native";
3
+ export type ViewVisibleAnimatedProps = {
4
+ scaleEnable?: boolean;
5
+ translateEnable?: boolean;
6
+ autoHide?: boolean;
7
+ onShowDone?: () => void;
8
+ onDone?: () => void;
9
+ onShowStart?: () => void;
10
+ style?: StyleProp<ViewStyle>;
11
+ delay?: number;
12
+ duration?: number;
13
+ timeout?: number;
14
+ autoShow?: boolean;
15
+ pointerEvents?: "box-none" | "none" | "box-only" | "auto";
16
+ scaleType?: "in" | "out";
17
+ renderHiddenContent?: React.ReactNode;
18
+ children?: React.ReactNode;
19
+ disableHiddenContent?: boolean;
20
+ };
21
+ declare const ViewVisibleAnimated: React.NamedExoticComponent<ViewVisibleAnimatedProps & React.RefAttributes<{
22
+ show: () => void;
23
+ hide: () => void;
24
+ }>>;
25
+ export default ViewVisibleAnimated;
@@ -0,0 +1 @@
1
+ export declare const APPROX_STATUSBAR_HEIGHT: any;
@@ -0,0 +1,43 @@
1
+ import type { ComponentType } from "react";
2
+ import React from "react";
3
+ import { $DeepPartial } from "@callstack/react-theme-provider";
4
+ import type { InternalTheme, AppTheme, NavigationTheme } from "../types";
5
+ export declare const DefaultTheme: AppTheme;
6
+ export declare const ThemeProvider: ({ children }: {
7
+ children: React.ReactNode;
8
+ }) => React.JSX.Element;
9
+ export declare function useTheme<T = AppTheme>(overrides?: $DeepPartial<T>): T;
10
+ export declare const useInternalTheme: () => AppTheme;
11
+ export declare const withInternalTheme: <Props extends {
12
+ theme: InternalTheme;
13
+ }, C>(WrappedComponent: ComponentType<Props & {
14
+ theme: InternalTheme;
15
+ }> & C) => ComponentType<import("@callstack/react-theme-provider").$Without<Props, "theme"> & {
16
+ theme?: $DeepPartial<unknown> | undefined;
17
+ }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<ComponentType<Props> & C, {}>;
18
+ export declare const defaultThemesByVersion: {
19
+ light: AppTheme;
20
+ dark: AppTheme;
21
+ };
22
+ export declare const getTheme: <Scheme extends boolean = false>(isDark?: Scheme) => (typeof defaultThemesByVersion)[Scheme extends true ? "dark" : "light"];
23
+ export declare function adaptNavigationTheme(themes: {
24
+ reactNavigationLight: NavigationTheme;
25
+ materialLight?: AppTheme;
26
+ }): {
27
+ LightTheme: NavigationTheme;
28
+ };
29
+ export declare function adaptNavigationTheme(themes: {
30
+ reactNavigationDark: NavigationTheme;
31
+ materialDark?: AppTheme;
32
+ }): {
33
+ DarkTheme: NavigationTheme;
34
+ };
35
+ export declare function adaptNavigationTheme(themes: {
36
+ reactNavigationLight: NavigationTheme;
37
+ reactNavigationDark: NavigationTheme;
38
+ materialLight?: AppTheme;
39
+ materialDark?: AppTheme;
40
+ }): {
41
+ LightTheme: NavigationTheme;
42
+ DarkTheme: NavigationTheme;
43
+ };
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconArrowDown: (props: SvgProps) => React.JSX.Element;
4
+ export default IconArrowDown;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconCheckbox: (props: SvgProps) => React.JSX.Element;
4
+ export default IconCheckbox;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconCheckboxActive: (props: SvgProps) => React.JSX.Element;
4
+ export default IconCheckboxActive;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconClearText: (props: SvgProps) => React.JSX.Element;
4
+ export default IconClearText;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconRadio: (props: SvgProps) => React.JSX.Element;
4
+ export default IconRadio;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconRadioActive: (props: SvgProps) => React.JSX.Element;
4
+ export default IconRadioActive;
@@ -0,0 +1,4 @@
1
+ import * as React from "react";
2
+ import { SvgProps } from "react-native-svg";
3
+ declare const IconRadioDisable: (props: SvgProps) => React.JSX.Element;
4
+ export default IconRadioDisable;
@@ -0,0 +1,33 @@
1
+ export { ThemeColors } from "./styles/themes/tokens";
2
+ export { CONSTANTS } from "./styles/themes/tokens";
3
+ export { useTheme, ThemeProvider, DefaultTheme, adaptNavigationTheme, } from "./core/theming";
4
+ export * from "./styles/themes";
5
+ export { default as shadow } from "./styles/shadow";
6
+ export { default as overlay } from "./styles/overlay";
7
+ export { default as configureFonts } from "./styles/fonts";
8
+ export { default as ActivityIndicator } from "./components/ActivityIndicator";
9
+ export { default as ProgressBar } from "./components/ProgressBar";
10
+ export { default as Switch } from "./components/Switch/Switch";
11
+ export { default as TextInput } from "./components/TextInput/TextInput";
12
+ export { default as Button } from "./components/Button";
13
+ export { default as ButtonIcon } from "./components/ButtonIcon";
14
+ export { default as FloatingButton } from "./components/FloatingButton";
15
+ export { default as Text } from "./components/Text";
16
+ export { default as Toast } from "./components/Toast";
17
+ export { default as View } from "./components/View";
18
+ export { default as Spacer } from "./components/Spacer";
19
+ export { default as Image } from "./components/Image";
20
+ export { default as Badge } from "./components/Badge";
21
+ export { default as CountingDot } from "./components/CountingDot";
22
+ export { default as ChipBar } from "./components/ChipBar";
23
+ export { default as Checkbox } from "./components/Checkbox";
24
+ export { default as RadioButton } from "./components/RadioButton";
25
+ export { default as Avatar } from "./components/Avatar";
26
+ export { default as SelectionField } from "./components/SelectionField";
27
+ export type { Props as ActivityIndicatorProps } from "./components/ActivityIndicator";
28
+ export type { Props as SwitchProps } from "./components/Switch/Switch";
29
+ export type { Props as TextInputProps } from "./components/TextInput/TextInput";
30
+ export type { Props as TextInputAffixProps } from "./components/TextInput/Adornment/TextInputAffix";
31
+ export type { AppTheme, ThemeBase, MD3Elevation, MD3TypescaleKey, } from "./types";
32
+ export * from "./utils/toast-manager";
33
+ export { default as ToastProvider } from "./components/Toast/ToastProvider";