@synerise/ds-page-header 1.0.60 → 1.0.61

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
@@ -3,6 +3,12 @@
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
+ ## [1.0.61](https://github.com/synerise/synerise-design/compare/@synerise/ds-page-header@1.0.60...@synerise/ds-page-header@1.0.61) (2026-02-26)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **page-header:** add box-shadow and border-bottom ([10823ff](https://github.com/synerise/synerise-design/commit/10823ffea9bf1af305783d092c451a77f4a82569))
11
+
6
12
  ## [1.0.60](https://github.com/synerise/synerise-design/compare/@synerise/ds-page-header@1.0.59...@synerise/ds-page-header@1.0.60) (2026-02-23)
7
13
 
8
14
  **Note:** Version bump only for package @synerise/ds-page-header
@@ -2,7 +2,11 @@ import styled from 'styled-components';
2
2
  export var MainContainer = styled.div.withConfig({
3
3
  displayName: "PageHeaderstyles__MainContainer",
4
4
  componentId: "sc-1a87wfx-0"
5
- })(["background-color:#fff;position:relative;&::before{content:'';position:absolute;bottom:0;width:100%;height:1px;", ";z-index:0;}"], function (props) {
5
+ })(["background-color:#fff;position:relative;border-bottom:1px solid ", ";box-shadow:", ";&::before{content:'';position:absolute;bottom:0;width:100%;height:1px;", ";z-index:0;}"], function (props) {
6
+ return props.theme.palette['grey-200'];
7
+ }, function (props) {
8
+ return props.theme.variables['box-shadow-1'];
9
+ }, function (props) {
6
10
  return props.isolated ? "background-color: " + props.theme.palette['grey-100'] : '';
7
11
  });
8
12
  export var PageHeaderContainer = styled.div.withConfig({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-page-header",
3
- "version": "1.0.60",
3
+ "version": "1.0.61",
4
4
  "description": "Page-Header UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -47,5 +47,5 @@
47
47
  "react": ">=16.9.0 <= 18.3.1",
48
48
  "styled-components": "^5.3.3"
49
49
  },
50
- "gitHead": "2997f77d657c1aed2fc39901d3e0b8f88b05cc53"
50
+ "gitHead": "4ffbd56e9bf6277c4507efeaf000b66b9bb09781"
51
51
  }