@stack-spot/portal-layout 2.19.4 → 2.20.0

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
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.20.0](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.19.4...portal-layout@v2.20.0) (2024-12-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * update libs banner ([#604](https://github.com/stack-spot/portal-commons/issues/604)) ([f2bc440](https://github.com/stack-spot/portal-commons/commit/f2bc440db6c65461a2b1228d0efc08ed3d883d67))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Bump lib ([#612](https://github.com/stack-spot/portal-commons/issues/612)) ([2aca501](https://github.com/stack-spot/portal-commons/commit/2aca501e9d117c149e72acd8786a8de95dafabb1))
14
+
3
15
  ## [2.19.4](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.19.3...portal-layout@v2.19.4) (2024-12-20)
4
16
 
5
17
 
package/dist/layout.css CHANGED
@@ -94,6 +94,16 @@ body {
94
94
  transition: left ease-in-out var(--menu-animation-duration);
95
95
  }
96
96
 
97
+ #page.home-banner-visible {
98
+ padding: 0 !important;
99
+ }
100
+
101
+ #banner-warning {
102
+ width: 90.7vw;
103
+ margin-left: calc(-0.6 * var(--menu-sections-width));
104
+ margin-right: 0;
105
+ }
106
+
97
107
  #layout.menu-content-visible #page {
98
108
  left: calc(var(--menu-sections-width) + var(--menu-content-width));
99
109
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stack-spot/portal-layout",
3
- "version": "2.19.4",
3
+ "version": "2.20.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,8 +14,8 @@
14
14
  "@citric/icons": "^5.9.0",
15
15
  "@citric/ui": "^6.1.1",
16
16
  "@stack-spot/portal-theme": "^1.0.0",
17
- "@stack-spot/portal-translate": "^1.0.0",
18
- "@stack-spot/portal-components": "^2.3.4",
17
+ "@stack-spot/portal-translate": "^1.1.0",
18
+ "@stack-spot/portal-components": "^2.11.0",
19
19
  "react": "^18.2.0",
20
20
  "react-dom": "^18.2.0",
21
21
  "styled-components": "^6.1.10"
package/src/layout.css CHANGED
@@ -94,6 +94,16 @@ body {
94
94
  transition: left ease-in-out var(--menu-animation-duration);
95
95
  }
96
96
 
97
+ #page.home-banner-visible {
98
+ padding: 0 !important;
99
+ }
100
+
101
+ #banner-warning {
102
+ width: 90.7vw;
103
+ margin-left: calc(-0.6 * var(--menu-sections-width));
104
+ margin-right: 0;
105
+ }
106
+
97
107
  #layout.menu-content-visible #page {
98
108
  left: calc(var(--menu-sections-width) + var(--menu-content-width));
99
109
  }