@vygruppen/spor-react 11.3.3 → 11.3.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vygruppen/spor-react",
3
- "version": "11.3.3",
3
+ "version": "11.3.5",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -31,9 +31,9 @@
31
31
  "react-aria": "^3.33.1",
32
32
  "react-stately": "^3.31.1",
33
33
  "react-swipeable": "^7.0.1",
34
- "@vygruppen/spor-design-tokens": "3.10.0",
35
34
  "@vygruppen/spor-icon-react": "3.13.0",
36
- "@vygruppen/spor-loader": "0.5.0"
35
+ "@vygruppen/spor-loader": "0.5.0",
36
+ "@vygruppen/spor-design-tokens": "3.10.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@react-types/datepicker": "^3.10.0",
@@ -1,11 +1,2 @@
1
- import {
2
- FormControl as ChakraFormControl,
3
- FormControlProps as ChakraFormControlProps,
4
- forwardRef,
5
- } from "@chakra-ui/react";
6
- import React from "react";
7
-
8
- export type FormControlProps = ChakraFormControlProps;
9
- export const FormControl = forwardRef<FormControlProps, "div">((props, ref) => {
10
- return <ChakraFormControl {...props} ref={ref} />;
11
- });
1
+ export { FormControl } from "@chakra-ui/react";
2
+ export type { FormControlProps } from "@chakra-ui/react";