@acusti/css-value-input 1.0.0-rc.2 → 1.0.0-rc.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.
|
@@ -39,8 +39,8 @@ export type Props = {|
|
|
|
39
39
|
validator?: RegExp | ((value: string) => boolean),
|
|
40
40
|
value?: string,
|
|
41
41
|
|};
|
|
42
|
-
declare var CSSValueInput: React.
|
|
42
|
+
declare var CSSValueInput: React.StatelessFunctionalComponent<{|
|
|
43
43
|
...Props,
|
|
44
|
-
...
|
|
44
|
+
...{| ref?: HTMLInputElement |},
|
|
45
45
|
|}>;
|
|
46
46
|
declare export default typeof CSSValueInput;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acusti/css-value-input",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "React component that renders a text input that can take and update a CSS value of a particular type with a default unit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@acusti/css-values": "^1.0.0",
|
|
50
|
-
"@acusti/input-text": "^1.2.
|
|
50
|
+
"@acusti/input-text": "^1.2.1",
|
|
51
51
|
"clsx": "^2"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|