@groupeactual/ui-kit 1.1.3 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groupeactual/ui-kit",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "type": "module",
5
5
  "description": "A simple template for a custom React component library",
6
6
  "devDependencies": {
@@ -54,7 +54,7 @@
54
54
  "notistack": "^3.0.1",
55
55
  "react": "^18.2.0",
56
56
  "react-dom": "^18.2.0",
57
- "@groupeactual/design-tokens": "1.1.3"
57
+ "@groupeactual/design-tokens": "1.1.4"
58
58
  },
59
59
  "peerDependencies": {
60
60
  "react": "^18.2.0",
@@ -103,9 +103,8 @@ const AutocompleteMultipleSelect = <T,>({
103
103
  }, [error, color, value]);
104
104
 
105
105
  const withPlaceholder = !value?.length && !!placeholder;
106
-
107
106
  const boxRef = useRef<HTMLHeadingElement>(null);
108
- console.log(boxRef?.current?.offsetWidth);
107
+
109
108
  return (
110
109
  <Box sx={{ width }} ref={boxRef}>
111
110
  <StyledAutoCompleteForm
@@ -175,6 +175,6 @@ const AutoCompleteSingle = <T,>({
175
175
  );
176
176
  };
177
177
 
178
- AutoCompleteSingle.displayName = 'AutocompleteSignle';
178
+ AutoCompleteSingle.displayName = 'AutocompleteSingle';
179
179
 
180
180
  export default AutoCompleteSingle;