reshaped 3.6.0-canary.3 → 3.6.0-canary.4
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 +3 -0
- package/dist/bundle.css +1 -1
- package/dist/bundle.d.ts +1 -0
- package/dist/bundle.js +5 -5
- package/dist/components/Avatar/Avatar.module.css +1 -1
- package/dist/components/Reshaped/Reshaped.js +2 -2
- package/dist/components/Reshaped/Reshaped.types.d.ts +1 -0
- package/dist/components/Reshaped/tests/Reshaped.stories.d.ts +1 -0
- package/dist/components/Reshaped/tests/Reshaped.stories.js +20 -0
- package/dist/components/Theme/GlobalColorMode.js +6 -11
- package/dist/components/Theme/Theme.types.d.ts +1 -0
- package/dist/components/Theme/index.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
@@ -127,6 +127,7 @@ export type { ViewProps, ViewItemProps } from "./components/View";
|
|
127
127
|
*/
|
128
128
|
export { useFormControl } from "./components/FormControl";
|
129
129
|
export { default as Theme, useTheme, type ThemeProps } from "./components/Theme";
|
130
|
+
export type { ColorMode } from "./components/Theme";
|
130
131
|
export { default as useHandlerRef } from "./hooks/useHandlerRef";
|
131
132
|
export { default as useHotkeys } from "./hooks/useHotkeys";
|
132
133
|
export { default as useIsomorphicLayoutEffect } from "./hooks/useIsomorphicLayoutEffect";
|