@groupeactual/ui-kit 1.6.5-beta.1 → 1.6.6

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": "@groupeactual/ui-kit",
3
- "version": "1.6.5-beta.1",
3
+ "version": "1.6.6",
4
4
  "type": "module",
5
5
  "description": "A simple template for a custom React component library",
6
6
  "devDependencies": {
@@ -57,7 +57,7 @@
57
57
  "notistack": "^3.0.1",
58
58
  "react": "^18.3.1",
59
59
  "react-dom": "^18.3.1",
60
- "@groupeactual/design-tokens": "1.6.5-beta.1"
60
+ "@groupeactual/design-tokens": "1.6.6"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "react": "^18.3.1",
@@ -98,7 +98,7 @@ const MultiSelect = <T,>({
98
98
  ];
99
99
 
100
100
  return classNames.filter(Boolean).join(' ');
101
- }, [value]);
101
+ }, [value, error, placeholder]);
102
102
 
103
103
  const boxRef = useRef<HTMLHeadingElement>(null);
104
104
 
@@ -76,7 +76,7 @@ const Select = <T,>({
76
76
  ];
77
77
 
78
78
  return classNames.filter(Boolean).join(' ');
79
- }, [value]);
79
+ }, [value, error, placeholder]);
80
80
 
81
81
  return (
82
82
  <Box sx={{ width }}>