@tak-ps/vue-tabler 3.55.3 → 3.56.1
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/Alert.vue +5 -1
- package/components/IconButton.vue +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
## Version History
|
|
12
12
|
|
|
13
|
+
### v3.56.1
|
|
14
|
+
|
|
15
|
+
- :rocket: Remove Hover On TablerIconButton
|
|
16
|
+
|
|
17
|
+
### v3.56.0
|
|
18
|
+
|
|
19
|
+
- :rocket: Add ability to hide advanced
|
|
20
|
+
|
|
13
21
|
### v3.55.3
|
|
14
22
|
|
|
15
23
|
- :bug: Dynamic loading causes vite to load all in production mode
|
package/components/Alert.vue
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<div><span v-text='err.message' /></div>
|
|
32
32
|
</div>
|
|
33
33
|
|
|
34
|
-
<template v-if='err.body || err.stack'>
|
|
34
|
+
<template v-if='advanced && (err.body || err.stack)'>
|
|
35
35
|
<div class='py-2 px-3'>
|
|
36
36
|
<div
|
|
37
37
|
class='subheader d-flex align-items-center cursor-pointer'
|
|
@@ -83,6 +83,10 @@ export default {
|
|
|
83
83
|
type: Boolean,
|
|
84
84
|
default: false
|
|
85
85
|
},
|
|
86
|
+
advanced: {
|
|
87
|
+
type: Boolean,
|
|
88
|
+
default: true
|
|
89
|
+
},
|
|
86
90
|
},
|
|
87
91
|
data: function() {
|
|
88
92
|
return {
|