@synerise/ds-layout 0.14.8 → 0.14.10

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,25 @@
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.14.10](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.14.9...@synerise/ds-layout@0.14.10) (2024-05-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **layout:** fixed flex on small screens with native scroll ([2847d12](https://github.com/synerise/synerise-design/commit/2847d12bdcb66226ba23c5f173ed31892338dfce))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.14.9](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.14.8...@synerise/ds-layout@0.14.9) (2024-04-15)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-layout
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.14.8](https://github.com/synerise/synerise-design/compare/@synerise/ds-layout@0.14.7...@synerise/ds-layout@0.14.8) (2024-04-05)
7
26
 
8
27
 
@@ -44,7 +44,7 @@ export var LayoutMain = styled.div.withConfig({
44
44
  export var LayoutMainInner = styled.div.withConfig({
45
45
  displayName: "Layoutstyles__LayoutMainInner",
46
46
  componentId: "i053aj-7"
47
- })(["", ";", ";&&{padding:", ";}"], mediaQuery.to.medium(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["flex: 0 0 auto;"]))), mediaQuery.from.medium(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose(["padding: 24px;"]))), function (props) {
47
+ })(["", ";&&{padding:", ";}"], mediaQuery.from.medium(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["padding: 24px;"]))), function (props) {
48
48
  return props.fullPage ? '0' : '24px';
49
49
  });
50
50
  export var LayoutContainer = styled.div.withConfig({
@@ -57,7 +57,7 @@ export var LayoutContainer = styled.div.withConfig({
57
57
  }, LayoutMainInner, function (props) {
58
58
  return props.nativeScroll ? 'auto' : 'hidden';
59
59
  }, function (props) {
60
- return props.nativeScroll && "\n flex-grow: 1;\n position: relative;\n ";
60
+ return props.nativeScroll ? "\n flex-grow: 1;\n position: relative;\n " : mediaQuery.to.medium(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose(["flex: 0 0 auto;"]))) + ";";
61
61
  });
62
62
  export var SidebarButton = styled.button.withConfig({
63
63
  displayName: "Layoutstyles__SidebarButton",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-layout",
3
- "version": "0.14.8",
3
+ "version": "0.14.10",
4
4
  "description": "Layout UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "synerise/synerise-design",
@@ -33,14 +33,14 @@
33
33
  ],
34
34
  "types": "dist/index.d.ts",
35
35
  "dependencies": {
36
- "@synerise/ds-icon": "^0.60.6",
37
- "@synerise/ds-scrollbar": "^0.10.1",
38
- "@synerise/ds-utils": "^0.26.2"
36
+ "@synerise/ds-icon": "^0.60.7",
37
+ "@synerise/ds-scrollbar": "^0.10.2",
38
+ "@synerise/ds-utils": "^0.26.3"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "@synerise/ds-core": "*",
42
42
  "react": ">=16.9.0 < 17.0.0",
43
43
  "styled-components": "5.0.1"
44
44
  },
45
- "gitHead": "84c9ff34c60369cc819ab1d4307373fafaf06462"
45
+ "gitHead": "700312e731dcbedacd206fd1d3389e5725c80d24"
46
46
  }