@tak-ps/vue-tabler 3.66.4 → 3.67.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.67.0
14
+
15
+ - :tada: Dropdown Card
16
+
17
+ ### v3.66.5
18
+
19
+ - :tada: Make size configurable
20
+
13
21
  ### v3.66.4
14
22
 
15
23
  - :bug: Vertical Alignment
@@ -16,7 +16,7 @@
16
16
  </slot>
17
17
  </div>
18
18
  <ul
19
- class='dropdown-menu'
19
+ class='dropdown-menu dropdown-menu-arrow dropdown-menu-end dropdown-menu-card show'
20
20
  :style='{
21
21
  "width": width
22
22
  }'
@@ -4,15 +4,15 @@
4
4
  >
5
5
  <IconRefresh
6
6
  v-if='!props.loading'
7
- :size='32'
7
+ :size='props.size'
8
8
  stroke='1'
9
9
  />
10
10
  <div
11
11
  v-else
12
12
  class='d-flex align-items-center justify-content-center'
13
13
  :style='{
14
- height: 32px;
15
- width: 32px;
14
+ "height": `${props.size}px`,
15
+ "width": `${props.size}px`
16
16
  }'
17
17
  >
18
18
  <div
@@ -38,6 +38,10 @@ const props = defineProps({
38
38
  loading: {
39
39
  type: Boolean,
40
40
  default: false
41
+ },
42
+ size: {
43
+ type: Number,
44
+ default: 32
41
45
  }
42
46
  })
43
47
  </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.66.4",
4
+ "version": "3.67.0",
5
5
  "lib": "lib.js",
6
6
  "module": "lib.js",
7
7
  "description": "Tabler UI components for Vue3",