@spark-web/field 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +14 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @spark-web/field
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#42](https://github.com/brighte-labs/spark-web/pull/42)
8
+ [`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)
9
+ Thanks [@lukebennett88](https://github.com/lukebennett88)! - Prevent multiple
10
+ versions of React
11
+
12
+ - Updated dependencies
13
+ [[`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)]:
14
+ - @spark-web/a11y@1.0.3
15
+ - @spark-web/box@1.0.3
16
+ - @spark-web/icon@1.1.1
17
+ - @spark-web/stack@1.0.3
18
+ - @spark-web/text@1.0.3
19
+ - @spark-web/theme@2.0.2
20
+ - @spark-web/utils@1.1.1
21
+
3
22
  ## 1.0.2
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,24 +1,27 @@
1
1
  {
2
2
  "name": "@spark-web/field",
3
+ "version": "1.0.3",
3
4
  "license": "MIT",
4
- "version": "1.0.2",
5
5
  "main": "dist/spark-web-field.cjs.js",
6
6
  "module": "dist/spark-web-field.esm.js",
7
- "devDependencies": {
8
- "@types/react": "^17.0.12"
9
- },
10
7
  "dependencies": {
11
8
  "@babel/runtime": "^7.14.6",
12
9
  "@emotion/css": "^11.7.1",
13
- "@spark-web/a11y": "^1.0.2",
14
- "@spark-web/box": "^1.0.2",
15
- "@spark-web/icon": "^1.0.2",
16
- "@spark-web/stack": "^1.0.2",
17
- "@spark-web/text": "^1.0.2",
18
- "@spark-web/theme": "^2.0.1",
19
- "@spark-web/utils": "^1.0.2",
10
+ "@spark-web/a11y": "^1.0.3",
11
+ "@spark-web/box": "^1.0.3",
12
+ "@spark-web/icon": "^1.1.1",
13
+ "@spark-web/stack": "^1.0.3",
14
+ "@spark-web/text": "^1.0.3",
15
+ "@spark-web/theme": "^2.0.2",
16
+ "@spark-web/utils": "^1.1.1"
17
+ },
18
+ "devDependencies": {
19
+ "@types/react": "^17.0.12",
20
20
  "react": "^17.0.2"
21
21
  },
22
+ "peerDependencies": {
23
+ "react": ">=17.0.2"
24
+ },
22
25
  "engines": {
23
26
  "node": ">= 14.13"
24
27
  }