@tak-ps/vue-tabler 3.66.0 → 3.66.2

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.66.2
14
+
15
+ - :bug: Refresh Icon
16
+
17
+ ### v3.66.1
18
+
19
+ - :bug: Fix props check
20
+
13
21
  ### v3.66.0
14
22
 
15
23
  - :rocket: Add `ButtonIcon` component
@@ -3,11 +3,11 @@
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
  />
10
- <div
10
+ <div
11
11
  v-else
12
12
  style='{
13
13
  height: 32px;
@@ -24,14 +24,17 @@
24
24
 
25
25
  <script setup>
26
26
  import { defineProps } from 'vue'
27
+ import {
28
+ IconRefresh
29
+ } from '@tabler/icons-vue';
27
30
  import IconButton from './IconButton.vue';
28
31
 
29
- defineProps({
32
+ const props = defineProps({
30
33
  title: {
31
34
  type: String,
32
35
  default: 'Refresh'
33
36
  },
34
- refreshing: {
37
+ loading: {
35
38
  type: Boolean,
36
39
  default: false
37
40
  }
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.2",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",