@paprika/tokens 2.0.0-next.1 → 2.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @paprika/tokens
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - d60fb99: peerDependencies now include react@17 and react@18
8
+
9
+ ## 2.0.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - d60fb99: peerDependencies now include react@17 and react@18
14
+
15
+ ## 2.0.0
16
+
17
+ ### Major Changes
18
+
19
+ - 9ac6aca: Removed `Pill` related tokens
20
+
21
+ #### why the change was made:
22
+
23
+ Removing the tokens related to `Pill` as the component was deprecated.
24
+
25
+ #### 👷 Moving from 1.x.x to 2.x.x:
26
+
27
+ `$pill--small-radius` and `$pill--medium-radius` are removed.
28
+
29
+ ### Patch Changes
30
+
31
+ - 0bf34d9: panel and modal footer background color changes to #f0f0f0
32
+
3
33
  ## 2.0.0-next.1
4
34
 
5
35
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paprika/tokens",
3
- "version": "2.0.0-next.1",
3
+ "version": "2.0.1",
4
4
  "description": "Design tokens generated as scss + js",
5
5
  "author": "@paprika",
6
6
  "main": "lib/index.js",
@@ -27,7 +27,7 @@
27
27
  "yamljs": "^0.3.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "react": "^16.8.4",
31
- "react-dom": "^16.8.4"
30
+ "react": "^16.8.4 || ^17.0.2 || ^18.0.0",
31
+ "react-dom": "^16.8.4 || ^17.0.2 || ^18.0.0"
32
32
  }
33
33
  }