braid-design-system 30.5.0 → 30.5.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
+
## 30.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Move `@types/react` to devDependencies ([#1023](https://github.com/seek-oss/braid-design-system/pull/1023))
|
|
8
|
+
|
|
9
|
+
Braid requires consumers to provide React, therefore they should also provide the appropriate version of `@types/react` rather than rely on the version installed in Braid.
|
|
10
|
+
|
|
3
11
|
## 30.5.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -251,7 +251,7 @@ const docs: ComponentDocs = {
|
|
|
251
251
|
label: 'Inserting an icon',
|
|
252
252
|
description: (
|
|
253
253
|
<Text>
|
|
254
|
-
For decoration and help
|
|
254
|
+
For decoration and help distinguishing fields an <Strong>icon</Strong>{' '}
|
|
255
255
|
can be provided. This will be placed in the left of the field and is
|
|
256
256
|
not interactive.
|
|
257
257
|
</Text>
|
|
@@ -209,7 +209,7 @@ const docs: ComponentDocs = {
|
|
|
209
209
|
label: 'Inserting an icon',
|
|
210
210
|
description: (
|
|
211
211
|
<Text>
|
|
212
|
-
For decoration and help
|
|
212
|
+
For decoration and help distinguishing fields an <Strong>icon</Strong>{' '}
|
|
213
213
|
can be provided. This will be placed in the left of the field and is
|
|
214
214
|
not interactive.
|
|
215
215
|
</Text>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "braid-design-system",
|
|
3
|
-
"version": "30.5.
|
|
3
|
+
"version": "30.5.1",
|
|
4
4
|
"description": "Themeable design system for the SEEK Group",
|
|
5
5
|
"main": "lib/components/index.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -54,7 +54,6 @@
|
|
|
54
54
|
"@types/classnames": "^2.2.11",
|
|
55
55
|
"@types/dedent": "^0.7.0",
|
|
56
56
|
"@types/lodash": "^4.14.168",
|
|
57
|
-
"@types/react": "^16.8.8",
|
|
58
57
|
"@types/uuid": "^8.3.0",
|
|
59
58
|
"@vanilla-extract/css": "^1.6.1",
|
|
60
59
|
"@vanilla-extract/css-utils": "^0.1.1",
|
|
@@ -97,7 +96,8 @@
|
|
|
97
96
|
"@types/babel-plugin-macros": "^2.8.4",
|
|
98
97
|
"@types/fs-extra": "^9.0.6",
|
|
99
98
|
"@types/prettier": "^2.1.6",
|
|
100
|
-
"@types/react
|
|
99
|
+
"@types/react": "^17.0.0",
|
|
100
|
+
"@types/react-dom": "^17.0.0",
|
|
101
101
|
"@types/react-router-dom": "^5.1.7",
|
|
102
102
|
"@types/sanitize-html": "^1.27.1",
|
|
103
103
|
"@types/webpack-env": "^1.16.0",
|