@spark-web/columns 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 +15 -0
- package/README.md +1 -1
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @spark-web/columns
|
|
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/theme@2.0.2
|
|
16
|
+
- @spark-web/utils@1.1.1
|
|
17
|
+
|
|
3
18
|
## 1.0.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ Columns can be collapsed into a single vertical stack responsively using the
|
|
|
76
76
|
|
|
77
77
|
| Prop | Type | Default | Description |
|
|
78
78
|
| -------------- | ------------------------------------------------------- | ------- | -------------------------------------------------------------------------------------- |
|
|
79
|
-
| alignY? | [ResponsiveProp][responsive-prop]
|
|
79
|
+
| alignY? | [ResponsiveProp][responsive-prop]\<AlignY> | | Vertically align items within the container. |
|
|
80
80
|
| children | React.ReactNode | | Children elements to be rendered within the column component representing each column. |
|
|
81
81
|
| collapseBelow? | [ResponsiveRangeProps][responsive-range-props]('below') | | At which breakpoint, if amy, should the columns collapse. |
|
|
82
82
|
| gap? | [Gap][gap] | | The size of the gap between each column. |
|
package/package.json
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-web/columns",
|
|
3
|
+
"version": "1.0.3",
|
|
3
4
|
"license": "MIT",
|
|
4
|
-
"version": "1.0.2",
|
|
5
5
|
"main": "dist/spark-web-columns.cjs.js",
|
|
6
6
|
"module": "dist/spark-web-columns.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/theme": "^2.0.
|
|
15
|
-
"@spark-web/utils": "^1.
|
|
10
|
+
"@spark-web/box": "^1.0.3",
|
|
11
|
+
"@spark-web/theme": "^2.0.2",
|
|
12
|
+
"@spark-web/utils": "^1.1.1"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@types/react": "^17.0.12",
|
|
16
16
|
"react": "^17.0.2"
|
|
17
17
|
},
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"react": ">=17.0.2"
|
|
20
|
+
},
|
|
18
21
|
"engines": {
|
|
19
22
|
"node": ">= 14.13"
|
|
20
23
|
}
|