@tak-ps/vue-tabler 3.66.0 → 3.66.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 CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v3.66.1
14
+
15
+ - :bug: Fix props check
16
+
13
17
  ### v3.66.0
14
18
 
15
19
  - :rocket: Add `ButtonIcon` component
@@ -3,7 +3,7 @@
3
3
  :title='title'
4
4
  >
5
5
  <IconRefresh
6
- v-if='!props.refreshing'
6
+ v-if='!props.loading'
7
7
  :size='32'
8
8
  stroke='1'
9
9
  />
@@ -26,12 +26,12 @@
26
26
  import { defineProps } from 'vue'
27
27
  import IconButton from './IconButton.vue';
28
28
 
29
- defineProps({
29
+ const props = defineProps({
30
30
  title: {
31
31
  type: String,
32
32
  default: 'Refresh'
33
33
  },
34
- refreshing: {
34
+ loading: {
35
35
  type: Boolean,
36
36
  default: false
37
37
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "3.66.0",
4
+ "version": "3.66.1",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",