@spark-web/stack 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 +1 -1
- package/package.json +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @spark-web/stack
|
|
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
|
@@ -105,7 +105,7 @@ Nest Stack components to create more complex white space rules.
|
|
|
105
105
|
|
|
106
106
|
| Prop | Type | Default | Description |
|
|
107
107
|
| --------- | ------------------------------- | --------- | ----------------------------------------------------- |
|
|
108
|
-
| align? | [ResponsiveProp
|
|
108
|
+
| align? | [ResponsiveProp\<Align>][align] | 'stretch' | Horizontally align items within the container. |
|
|
109
109
|
| dividers? | boolean | | Sets whether to place a divider between each element. |
|
|
110
110
|
|
|
111
111
|
`Stack` 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/stack",
|
|
3
|
+
"version": "1.0.3",
|
|
3
4
|
"license": "MIT",
|
|
4
|
-
"version": "1.0.2",
|
|
5
5
|
"main": "dist/spark-web-stack.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-stack.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
|
}
|