@tak-ps/vue-tabler 3.68.3 → 3.68.4

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,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v3.68.4
14
+
15
+ - :bug: Fix autoclose case
16
+
13
17
  ### v3.68.3
14
18
 
15
19
  - :rocket: Add Bootstrap Dropdown Data
@@ -2,11 +2,11 @@
2
2
  <div class='dropdown'>
3
3
  <div
4
4
  :id='id'
5
- data-bs-toggle="dropdown"
6
- :data-bs-auto-close="autoclose"
7
- aria-expanded="false"
5
+ data-bs-toggle='dropdown'
6
+ :data-bs-auto-close='props.autoclose'
7
+ aria-expanded='false'
8
8
  @click.stop.prevent=''
9
- >
9
+ >
10
10
  <slot>
11
11
  <IconSettings
12
12
  :size='32'
@@ -44,7 +44,7 @@ export default {
44
44
  type: Number,
45
45
  default: 200
46
46
  },
47
- autoClose: {
47
+ autoclose: {
48
48
  type: String,
49
49
  default: 'true'
50
50
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.68.3",
4
+ "version": "3.68.4",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",