@synerise/ds-layout 0.8.2 → 0.8.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 +13 -0
- package/dist/Layout.styles.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.8.3](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.8.2...@synerise/ds-layout@0.8.3) (2021-12-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **layout:** fixes LayoutHeader height ([53c7bc3](https://github.com/synerise/synerise-design/commit/53c7bc3cf8cb72b2da5d370948a36e1d97cb751f))
|
|
12
|
+
* **layout:** removes unnecessary overflow: hidden from LayoutHeader; ([ce69de1](https://github.com/synerise/synerise-design/commit/ce69de1aebc8298496abb4057e4746a73b1cdd44))
|
|
13
|
+
* **table:** fixes returned data by on change selection function ([151e195](https://github.com/synerise/synerise-design/commit/151e195b8bb6d37f9fdede12aaa569b56ba97e82))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## [0.8.2](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.8.1...@synerise/ds-layout@0.8.2) (2021-11-22)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @synerise/ds-layout
|
package/dist/Layout.styles.js
CHANGED
|
@@ -25,7 +25,7 @@ export var LayoutContent = styled.div.withConfig({
|
|
|
25
25
|
export var LayoutHeader = styled.div.withConfig({
|
|
26
26
|
displayName: "Layoutstyles__LayoutHeader",
|
|
27
27
|
componentId: "i053aj-4"
|
|
28
|
-
})(["&&&{margin:0;display:block;width:100%;}
|
|
28
|
+
})(["&&&{margin:0;display:block;width:100%;}z-index:1;box-shadow:0 2px 6px ", ";border-bottom:1px solid ", ";"], function (props) {
|
|
29
29
|
return hexToRgba(props.theme.palette['grey-400'], 0.12);
|
|
30
30
|
}, function (props) {
|
|
31
31
|
return props.theme.palette['grey-200'];
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-layout",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "Layout UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "synerise/synerise-design",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"@synerise/ds-core": "*",
|
|
40
40
|
"react": ">=16.9.0 < 17.0.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "dd78d8abea639d2d77cf841f8b41a1382cf8d827"
|
|
43
43
|
}
|