reshaped 2.10.5 → 2.10.7
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/CHANGELOG.md +8 -0
- package/bundle.css +1 -1
- package/bundle.d.ts +2 -2
- package/bundle.js +8 -8
- package/components/Actionable/Actionable.js +1 -12
- package/components/DropdownMenu/DropdownMenu.js +0 -5
- package/components/Toast/Toast.constants.d.ts +1 -0
- package/components/Toast/Toast.constants.js +1 -0
- package/components/Toast/Toast.module.css +1 -1
- package/components/Toast/Toast.types.d.ts +2 -0
- package/components/Toast/ToastProvider.js +6 -2
- package/components/Toast/ToastRegion.js +2 -2
- package/components/Toast/tests/Toast.stories.js +26 -9
- package/components/Toast/useToast.d.ts +1 -0
- package/components/Toast/useToast.js +2 -2
- package/components/View/tests/View.stories.js +11 -4
- package/hooks/_private/useSingletonHotkeys.js +3 -1
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
package/bundle.d.ts
CHANGED
@@ -99,8 +99,8 @@ export { default as TextField } from "./components/TextField";
|
|
99
99
|
export type { TextFieldProps } from "./components/TextField";
|
100
100
|
export { default as Timeline } from "./components/Timeline";
|
101
101
|
export type { TimelineProps, TimelineItemProps } from "./components/Timeline";
|
102
|
-
export { useToast } from "./components/Toast";
|
103
|
-
export type { ToastProps } from "./components/Toast";
|
102
|
+
export { useToast, ToastProvider } from "./components/Toast";
|
103
|
+
export type { ToastProps, ToastProviderProps } from "./components/Toast";
|
104
104
|
export { default as Tooltip } from "./components/Tooltip";
|
105
105
|
export type { TooltipProps } from "./components/Tooltip";
|
106
106
|
export { default as View } from "./components/View";
|