@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 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
@@ -5,6 +5,7 @@
5
5
  type='button'
6
6
  data-bs-toggle='dropdown'
7
7
  aria-expanded='false'
8
+ @click.stop.prevent=''
8
9
  >
9
10
  <slot>
10
11
  <IconSettings
@@ -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>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.57.0",
4
+ "version": "3.58.0",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",