@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  # @acusti/css-value-input
2
2
 
3
3
  [![latest version](https://img.shields.io/npm/v/@acusti/css-value-input?style=for-the-badge)](https://www.npmjs.com/package/@acusti/css-value-input)
4
- [![dependencies status](https://img.shields.io/librariesio/release/npm/@acusti/css-value-input?style=for-the-badge)](https://libraries.io/npm/@acusti%2Fcss-value-input/sourcerank)
4
+ [![maintenance status](https://img.shields.io/npms-io/maintenance-score/@acusti/css-value-input?style=for-the-badge)](https://npms.io/search?q=%40acusti%2Fcss-value-input)
5
5
  [![bundle size](https://img.shields.io/bundlephobia/minzip/@acusti/css-value-input?style=for-the-badge)](https://bundlephobia.com/package/@acusti/css-value-input)
6
6
  [![downloads per month](https://img.shields.io/npm/dm/@acusti/css-value-input?style=for-the-badge)](https://www.npmjs.com/package/@acusti/css-value-input)
7
7
 
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import type { CSSValueType } from '@acusti/css-values';
3
- export declare type Props = {
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;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Flowtype definitions for CSSValueInput
3
3
  * Generated by Flowgen from a Typescript Definition
4
- * Flowgen v1.20.0
4
+ * Flowgen v1.20.1
5
5
  * @flow
6
6
  */
7
7
 
package/package.json CHANGED
@@ -1,6 +1,20 @@
1
1
  {
2
2
  "name": "@acusti/css-value-input",
3
- "version": "0.21.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": "git+https://github.com/acusti/uikit.git"
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.15",
25
- "typescript": "^4.8.4"
39
+ "@types/react": "^18.0.25",
40
+ "typescript": "^4.9.3"
26
41
  },
27
42
  "dependencies": {
28
- "@acusti/css-values": "^0.18.0",
29
- "@acusti/input-text": "^0.12.0",
30
- "clsx": "^1.1.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",