@awes-io/ui 2.124.0 → 2.124.1

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,17 @@
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
+ ## [2.124.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.124.0...@awes-io/ui@2.124.1) (2024-12-18)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * fix page header style ([7733119](https://github.com/awes-io/client/commit/77331192886622bd9477910c72ab54d6722f1496))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.124.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.123.0...@awes-io/ui@2.124.0) (2024-12-17)
7
18
 
8
19
 
@@ -136,10 +136,13 @@
136
136
  var(--header-container-width) +
137
137
  ((2 * 80px) - (2 * var(--header-padding-horizontal)))
138
138
  );
139
- padding-left: 80px;
139
+ padding-left: min(
140
+ 80px,
141
+ max(var(--default-container-left-padding), calc((100% - (var(--container-width) - 48px)) / 2 ))
142
+ );
140
143
  padding-right: min(
141
144
  80px,
142
- max(24px, calc(100% - var(--container-width)))
145
+ max(24px, calc((100% - (var(--container-width) - 48px)) / 2 ))
143
146
  );
144
147
  }
145
148
 
@@ -10,7 +10,10 @@
10
10
  'aw-page-header--container-default':
11
11
  isContainer && container === 'default'
12
12
  }"
13
- :style="{ '--header-container-width': headerContainerWidth }"
13
+ :style="{
14
+ '--header-container-width': headerContainerWidth,
15
+ '--default-container-left-padding': hideBreadcrumb ? '24px' : '80px'
16
+ }"
14
17
  >
15
18
  <div v-if="!hideBreadcrumb" class="aw-page-header__breadcrumbs">
16
19
  <slot name="breadcrumbs"> </slot>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.124.0",
3
+ "version": "2.124.1",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -114,5 +114,5 @@
114
114
  "rollup-plugin-visualizer": "^2.6.0",
115
115
  "rollup-plugin-vue": "^5.0.1"
116
116
  },
117
- "gitHead": "def894ee9eee53ca104a3c00dd3651db4c69f336"
117
+ "gitHead": "dd44909275415692ccba08bd0a2bda6b6153e95b"
118
118
  }