@mackin.com/styleguide 8.5.0 → 8.5.1
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/index.js +1 -1
- package/package.json +28 -28
package/index.js
CHANGED
|
@@ -4113,7 +4113,7 @@ const TextArea = React__namespace.forwardRef((props, ref) => {
|
|
|
4113
4113
|
const [localValue, setLocalValue] = React__namespace.useState(props.value);
|
|
4114
4114
|
const inputRef = (ref !== null && ref !== void 0 ? ref : React__namespace.useRef(null));
|
|
4115
4115
|
const [validationError, updateErrorMessage] = useInputValidationMessage(inputRef, props);
|
|
4116
|
-
const nativeProps = __rest(props, ["onValueChange", "customError", "reportValueOnError"]);
|
|
4116
|
+
const nativeProps = __rest(props, ["onValueChange", "customError", "reportValueOnError", "showErrorDisplay"]);
|
|
4117
4117
|
const theme = useThemeSafely();
|
|
4118
4118
|
React__namespace.useEffect(() => {
|
|
4119
4119
|
updateErrorMessage();
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@mackin.com/styleguide",
|
|
3
|
+
"version": "8.5.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./index.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
7
|
+
"scripts": {},
|
|
8
|
+
"author": "Mackin",
|
|
9
|
+
"license": "ISC",
|
|
10
|
+
"devDependencies": {},
|
|
11
|
+
"dependencies": {},
|
|
12
|
+
"optionalDependencies": {
|
|
13
|
+
"react-router-dom": "^5.3.0",
|
|
14
|
+
"react-tiny-popover": "^7.0.1",
|
|
15
|
+
"react-slider": "^1.3.1"
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"nanoid": "^3.1.23",
|
|
19
|
+
"date-fns": "^2.13.0",
|
|
20
|
+
"lodash": "^4.17.15",
|
|
21
|
+
"react": "^17.0.2",
|
|
22
|
+
"@emotion/css": "^11.1.3",
|
|
23
|
+
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
|
24
|
+
"@fortawesome/pro-light-svg-icons": "^5.15.3",
|
|
25
|
+
"@fortawesome/pro-regular-svg-icons": "^5.15.3",
|
|
26
|
+
"@fortawesome/pro-solid-svg-icons": "^5.15.3",
|
|
27
|
+
"@fortawesome/react-fontawesome": "^0.1.14"
|
|
28
|
+
}
|
|
29
29
|
}
|