@tak-ps/vue-tabler 3.57.0 → 3.58.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 +8 -0
- package/components/Dropdown.vue +1 -0
- package/components/Modal.vue +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v3.58.0
|
|
14
|
+
|
|
15
|
+
- :rocket: Call focus on Modal when created to allow immediate keyup intercepts
|
|
16
|
+
|
|
17
|
+
### v3.57.1
|
|
18
|
+
|
|
19
|
+
- :bug: Ensure parent click is ignored on Dropdown
|
|
20
|
+
|
|
13
21
|
### v3.57.0
|
|
14
22
|
|
|
15
23
|
- :tada: Add `TablerButton` with accessibility tags
|
package/components/Dropdown.vue
CHANGED
package/components/Modal.vue
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
+
ref='modal'
|
|
3
4
|
class='modal modal-blur fade show'
|
|
4
5
|
tabindex='-1'
|
|
5
6
|
style='display: block;'
|
|
@@ -32,6 +33,11 @@ export default {
|
|
|
32
33
|
type: String,
|
|
33
34
|
default: 'sm'
|
|
34
35
|
}
|
|
36
|
+
},
|
|
37
|
+
mounted: function() {
|
|
38
|
+
this.$nextTick(() => {
|
|
39
|
+
this.$refs.modal.focus();
|
|
40
|
+
})
|
|
35
41
|
}
|
|
36
42
|
}
|
|
37
43
|
</script>
|