@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/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/index.mjs +1 -1
- package/dist/es/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/components/Form/AutoCompleteMulti/AutoCompleteMulti.tsx +1 -2
- package/src/components/Form/AutoCompleteSingle/AutoCompleteSingle.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groupeactual/ui-kit",
|
|
3
|
-
"version": "1.1.
|
|
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.
|
|
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
|
-
|
|
107
|
+
|
|
109
108
|
return (
|
|
110
109
|
<Box sx={{ width }} ref={boxRef}>
|
|
111
110
|
<StyledAutoCompleteForm
|