@saas-ui/modals 0.5.11 → 0.6.0-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @saas-ui/modals
2
2
 
3
+ ## 0.6.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - React 18 support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @saas-ui/forms@0.8.0-next.0
13
+ - @saas-ui/menu@0.6.0-next.0
14
+ - @saas-ui/button@0.5.0-next.0
15
+
3
16
  ## 0.5.11
4
17
 
5
18
  ### Patch Changes
package/dist/form.d.ts CHANGED
@@ -27,6 +27,6 @@ export interface FormDialogProps<TFieldValues extends FieldValues = FieldValues>
27
27
  fieldResolver?: FieldResolver;
28
28
  }
29
29
  export declare const FormDialog: <TFieldValues extends FieldValues>(props: FormDialogProps<TFieldValues> & {
30
- ref?: React.ForwardedRef<UseFormReturn<TFieldValues, object>> | undefined;
30
+ ref?: React.ForwardedRef<UseFormReturn<TFieldValues, any>> | undefined;
31
31
  }) => React.ReactElement;
32
32
  //# sourceMappingURL=form.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saas-ui/modals",
3
- "version": "0.5.11",
3
+ "version": "0.6.0-next.0",
4
4
  "description": "A modal manager for Chakra UI",
5
5
  "source": "src/index.ts",
6
6
  "exports": {
@@ -56,14 +56,14 @@
56
56
  "url": "https://storybook.saas-ui.dev"
57
57
  },
58
58
  "dependencies": {
59
- "@saas-ui/button": "0.4.0",
60
- "@saas-ui/forms": "0.7.8",
61
- "@saas-ui/menu": "0.5.4"
59
+ "@saas-ui/button": "0.5.0-next.0",
60
+ "@saas-ui/forms": "0.8.0-next.0",
61
+ "@saas-ui/menu": "0.6.0-next.0"
62
62
  },
63
63
  "peerDependencies": {
64
- "@chakra-ui/react": ">=1.8.0",
65
- "@chakra-ui/system": ">=1.0.0",
66
- "framer-motion": ">=5.5.0",
67
- "react": ">=16.8.6"
64
+ "@chakra-ui/react": ">=2.0.0-next.3",
65
+ "@chakra-ui/system": ">=2.0.0-next.1",
66
+ "framer-motion": ">=6",
67
+ "react": ">=18.0.0"
68
68
  }
69
69
  }