@spark-web/row 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.
- package/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/package.json +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @spark-web/row
|
|
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/box@1.0.3
|
|
15
|
+
- @spark-web/divider@1.0.3
|
|
16
|
+
- @spark-web/theme@2.0.2
|
|
17
|
+
- @spark-web/utils@1.1.1
|
|
18
|
+
|
|
3
19
|
## 1.0.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -114,8 +114,8 @@ element in the Row.
|
|
|
114
114
|
|
|
115
115
|
| Prop | Type | Default | Description |
|
|
116
116
|
| --------- | ---------------------------------- | --------- | ----------------------------------------------------- |
|
|
117
|
-
| align? | [ResponsiveProp
|
|
118
|
-
| alignY? | [ResponsiveProp
|
|
117
|
+
| align? | [ResponsiveProp\<Align>][align] | 'left' | Horizontally align items within the container. |
|
|
118
|
+
| alignY? | [ResponsiveProp\<AlignY>][align-y] | 'stretch' | Vertically align items within the container. |
|
|
119
119
|
| dividers? | boolean | | Sets whether to place a divider between each element. |
|
|
120
120
|
|
|
121
121
|
`Row` props also include [`Box`](/package/box) props and are not listed here
|
package/package.json
CHANGED
|
@@ -1,21 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/row",
|
|
3
|
+
"version": "1.0.3",
|
|
3
4
|
"license": "MIT",
|
|
4
|
-
"version": "1.0.2",
|
|
5
5
|
"main": "dist/spark-web-row.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-row.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/box": "^1.0.
|
|
14
|
-
"@spark-web/divider": "^1.0.
|
|
15
|
-
"@spark-web/theme": "^2.0.
|
|
16
|
-
"@spark-web/utils": "^1.
|
|
10
|
+
"@spark-web/box": "^1.0.3",
|
|
11
|
+
"@spark-web/divider": "^1.0.3",
|
|
12
|
+
"@spark-web/theme": "^2.0.2",
|
|
13
|
+
"@spark-web/utils": "^1.1.1"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@types/react": "^17.0.12",
|
|
17
17
|
"react": "^17.0.2"
|
|
18
18
|
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": ">=17.0.2"
|
|
21
|
+
},
|
|
19
22
|
"engines": {
|
|
20
23
|
"node": ">= 14.13"
|
|
21
24
|
}
|