@awes-io/ui 2.114.0 → 2.114.2

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,28 @@
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.114.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.114.1...@awes-io/ui@2.114.2) (2024-11-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * layout menu safe offsets added ([ffa0110](https://github.com/awes-io/client/commit/ffa011090dad734e465b869ea50dae413d66c443))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.114.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.114.0...@awes-io/ui@2.114.1) (2024-10-30)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * dynamic max height in modal ([e510e0f](https://github.com/awes-io/client/commit/e510e0fc5b491347d6904d9aa2675d42ccea9584))
23
+
24
+
25
+
26
+
27
+
6
28
  # [2.114.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.113.0...@awes-io/ui@2.114.0) (2024-10-25)
7
29
 
8
30
 
@@ -5,6 +5,8 @@
5
5
  grid-template-columns: 5rem auto;
6
6
  grid-template-rows: 78px minmax(0, 2fr) minmax(0, 1fr) 60px minmax(0, auto);
7
7
 
8
+ padding-top: max(0px, calc(env(safe-area-inset-top) - 16px));
9
+
8
10
  z-index: 21;
9
11
 
10
12
  &__logo,
@@ -15,7 +15,9 @@ $modal-aside-width-large: 75vw;
15
15
  max-width: 100%;
16
16
 
17
17
  &__container {
18
- @apply relative flex w-full min-h-screen justify-center items-start p-0;
18
+ @apply relative flex w-full justify-center items-start p-0;
19
+ min-height: 100vh;
20
+ min-height: 100dvh;
19
21
  height: max-content;
20
22
  }
21
23
 
@@ -1,5 +1,6 @@
1
1
  .aw-nav {
2
- @apply pt-8;
2
+ padding-top: 1.5rem;
3
+ padding-top: calc(0.5rem + max(16px, calc(env(safe-area-inset-top) - 16px)));
3
4
 
4
5
  &__wrapper {
5
6
  overflow-y: auto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.114.0",
3
+ "version": "2.114.2",
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": "0a4c0d289e77bc8a4cfef99d42bc62cc4735bb0e"
117
+ "gitHead": "48217f0639aabe19ba1044e7cb7b3bf2307b5f35"
118
118
  }