@acusti/css-value-input 0.21.0 → 0.22.0
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/README.md +1 -1
- package/dist/CSSValueInput.d.ts +1 -1
- package/dist/CSSValueInput.js.flow +1 -1
- package/package.json +22 -7
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @acusti/css-value-input
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@acusti/css-value-input)
|
|
4
|
-
[](https://npms.io/search?q=%40acusti%2Fcss-value-input)
|
|
5
5
|
[](https://bundlephobia.com/package/@acusti/css-value-input)
|
|
6
6
|
[](https://www.npmjs.com/package/@acusti/css-value-input)
|
|
7
7
|
|
package/dist/CSSValueInput.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import type { CSSValueType } from '@acusti/css-values';
|
|
3
|
-
export
|
|
3
|
+
export type Props = {
|
|
4
4
|
/** Boolean indicating if the user can submit an empty value (i.e. clear the value); defaults to true */
|
|
5
5
|
allowEmpty?: boolean;
|
|
6
6
|
className?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acusti/css-value-input",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
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
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"react-component",
|
|
8
|
+
"css",
|
|
9
|
+
"css-value",
|
|
10
|
+
"form",
|
|
11
|
+
"input",
|
|
12
|
+
"input-text",
|
|
13
|
+
"ssr",
|
|
14
|
+
"typescript",
|
|
15
|
+
"ts",
|
|
16
|
+
"flow"
|
|
17
|
+
],
|
|
4
18
|
"type": "module",
|
|
5
19
|
"sideEffects": false,
|
|
6
20
|
"exports": "./dist/CSSValueInput.js",
|
|
@@ -12,7 +26,8 @@
|
|
|
12
26
|
],
|
|
13
27
|
"repository": {
|
|
14
28
|
"type": "git",
|
|
15
|
-
"url": "
|
|
29
|
+
"url": "https://github.com/acusti/uikit.git",
|
|
30
|
+
"directory": "packages/css-value-input"
|
|
16
31
|
},
|
|
17
32
|
"author": "andrew patton <andrew@acusti.ca> (https://www.acusti.ca)",
|
|
18
33
|
"license": "Unlicense",
|
|
@@ -21,13 +36,13 @@
|
|
|
21
36
|
},
|
|
22
37
|
"homepage": "https://github.com/acusti/uikit/tree/main/packages/css-value-input#readme",
|
|
23
38
|
"devDependencies": {
|
|
24
|
-
"@types/react": "^18.0.
|
|
25
|
-
"typescript": "^4.
|
|
39
|
+
"@types/react": "^18.0.25",
|
|
40
|
+
"typescript": "^4.9.3"
|
|
26
41
|
},
|
|
27
42
|
"dependencies": {
|
|
28
|
-
"@acusti/css-values": "^0.
|
|
29
|
-
"@acusti/input-text": "^0.
|
|
30
|
-
"clsx": "^1.
|
|
43
|
+
"@acusti/css-values": "^0.19.0",
|
|
44
|
+
"@acusti/input-text": "^1.0.0",
|
|
45
|
+
"clsx": "^1.2.1"
|
|
31
46
|
},
|
|
32
47
|
"peerDependencies": {
|
|
33
48
|
"react": "^16.8 || ^17 || ^18",
|