@awes-io/ui 2.127.0 → 2.127.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.127.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.1...@awes-io/ui@2.127.2) (2025-02-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * clear body scroll locks on route change ([51eef40](https://github.com/awes-io/client/commit/51eef403262cfa902a618eca9be18344f4c97294))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.127.1](https://github.com/awes-io/client/compare/@awes-io/ui@2.127.0...@awes-io/ui@2.127.1) (2025-01-30)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **aw-dock:** leave scroll on content ([b6d239e](https://github.com/awes-io/client/commit/b6d239e10795e63331dc1eb720c84cd42cfe6083))
23
+
24
+
25
+
26
+
27
+
6
28
  # [2.127.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.126.1...@awes-io/ui@2.127.0) (2025-01-16)
7
29
 
8
30
 
@@ -143,7 +143,7 @@ export default {
143
143
  open() {
144
144
  this.$emit('open')
145
145
 
146
- disableBodyScroll(this.$el, {
146
+ disableBodyScroll(this.$refs.content, {
147
147
  reserveScrollBarGap: true
148
148
  })
149
149
 
@@ -158,7 +158,7 @@ export default {
158
158
  close() {
159
159
  this.$emit('close')
160
160
 
161
- enableBodyScroll(this.$el)
161
+ enableBodyScroll(this.$refs.content)
162
162
 
163
163
  this._animate(
164
164
  [this.progress, 0],
@@ -0,0 +1,8 @@
1
+ import { clearAllBodyScrollLocks } from 'body-scroll-lock'
2
+
3
+ export default ({ app }) => {
4
+ app.router.afterEach(() => {
5
+ console.log('route changed')
6
+ clearAllBodyScrollLocks()
7
+ })
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.127.0",
3
+ "version": "2.127.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": "b9a6132fcaf91314242700794d2132e596c3ca7d"
117
+ "gitHead": "76d2ee7a4977ed536968a76b38b1e646201721c9"
118
118
  }