@asd20/ui-next 2.0.19 → 2.0.20

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.20](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.19...ui-next-v2.0.20) (2026-04-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove focus-trap styles that may be interfering with moble styles ([ad2be6c](https://github.com/academydistrict20/asd20-ui-next/commit/ad2be6cfd68277861a88d8ce143f53336bda4392))
9
+
3
10
  ## [2.0.19](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.18...ui-next-v2.0.19) (2026-04-02)
4
11
 
5
12
  ## [2.0.18](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.0.17...ui-next-v2.0.18) (2026-04-02)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library for Vue 3.",
6
6
  "license": "MIT",
@@ -13,8 +13,6 @@
13
13
  >
14
14
  <focus-trap
15
15
  :open="resolvedOpen"
16
- class="asd20-modal-focus-trap"
17
- :class="{ 'asd20-modal-focus-trap--windowed': windowed }"
18
16
  >
19
17
  <div class="asd20-modal">
20
18
  <div
@@ -141,20 +139,6 @@ export default {
141
139
  align-items: stretch;
142
140
  }
143
141
 
144
- .asd20-modal-focus-trap {
145
- display: flex;
146
- flex: 1 1 auto;
147
- width: 100%;
148
- max-width: 100%;
149
- max-height: 100%;
150
- justify-content: center;
151
- align-items: stretch;
152
- }
153
-
154
- .asd20-modal-focus-trap--windowed {
155
- align-items: center;
156
- }
157
-
158
142
  .asd20-modal {
159
143
  position: relative;
160
144
  flex-grow: 1;
@@ -1,13 +1,3 @@
1
- <template>
2
- <div
3
- ref="trapRoot"
4
- class="asd20-focus-trap"
5
- tabindex="-1"
6
- >
7
- <slot />
8
- </div>
9
- </template>
10
-
11
1
  <script>
12
2
  import { createFocusTrap } from 'focus-trap'
13
3
 
@@ -21,6 +11,7 @@ export default {
21
11
  },
22
12
  data: () => ({
23
13
  trap: null,
14
+ addedFallbackTabindex: false,
24
15
  }),
25
16
  computed: {
26
17
  enabled() {
@@ -32,7 +23,7 @@ export default {
32
23
  const options = {
33
24
  clickOutsideDeactivates: false,
34
25
  escapeDeactivates: false,
35
- fallbackFocus: () => this.$refs.trapRoot,
26
+ fallbackFocus: () => this.ensureFallbackFocusTarget(),
36
27
  }
37
28
 
38
29
  if (this.initialFocus !== undefined) {
@@ -53,7 +44,7 @@ export default {
53
44
  },
54
45
  mounted() {
55
46
  this.$nextTick(() => {
56
- this.trap = createFocusTrap(this.$refs.trapRoot, this.focusTrapOptions)
47
+ this.trap = createFocusTrap(this.$el, this.focusTrapOptions)
57
48
  this.syncTrapState()
58
49
  })
59
50
  },
@@ -61,6 +52,20 @@ export default {
61
52
  this.disposeTrap()
62
53
  },
63
54
  methods: {
55
+ ensureFallbackFocusTarget() {
56
+ const root = this.$el
57
+
58
+ if (!root || typeof root.hasAttribute !== 'function') {
59
+ return root
60
+ }
61
+
62
+ if (!root.hasAttribute('tabindex')) {
63
+ root.setAttribute('tabindex', '-1')
64
+ this.addedFallbackTabindex = true
65
+ }
66
+
67
+ return root
68
+ },
64
69
  syncTrapState() {
65
70
  if (!this.trap) return
66
71
 
@@ -76,22 +81,21 @@ export default {
76
81
 
77
82
  this.trap.deactivate()
78
83
  this.trap = null
84
+
85
+ if (this.addedFallbackTabindex && this.$el?.removeAttribute) {
86
+ this.$el.removeAttribute('tabindex')
87
+ this.addedFallbackTabindex = false
88
+ }
79
89
  },
80
90
  },
81
- }
82
- </script>
91
+ render() {
92
+ const content = this.$slots.default ? this.$slots.default() : []
83
93
 
84
- <style scoped>
85
- .asd20-focus-trap {
86
- display: flex;
87
- flex: 1 1 auto;
88
- align-items: stretch;
89
- min-width: 0;
90
- max-width: 100%;
91
- max-height: 100%;
94
+ if (content.length !== 1) {
95
+ throw new Error('FocusTrap requires exactly one child')
96
+ }
92
97
 
93
- &:focus {
94
- outline: none;
95
- }
98
+ return content[0]
99
+ },
96
100
  }
97
- </style>
101
+ </script>