@vygruppen/spor-react 12.24.4 → 12.24.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,7 +1,7 @@
1
1
  {
2
2
  "name": "@vygruppen/spor-react",
3
3
  "type": "module",
4
- "version": "12.24.4",
4
+ "version": "12.24.5",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -66,6 +66,7 @@ export const Select = React.forwardRef<HTMLDivElement, SelectProps>(
66
66
  errorText,
67
67
  invalid,
68
68
  helperText,
69
+ css,
69
70
  ...rest
70
71
  } = props;
71
72
  const recipe = useSlotRecipe({ key: "select" });
@@ -78,6 +79,7 @@ export const Select = React.forwardRef<HTMLDivElement, SelectProps>(
78
79
  helperText={helperText}
79
80
  required={props.required}
80
81
  id={rest.id}
82
+ css={css}
81
83
  >
82
84
  <ChakraSelect.Root
83
85
  {...rest}