@redseed/redseed-ui-vue3 8.2.0 → 8.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-vue3",
3
- "version": "8.2.0",
3
+ "version": "8.2.2",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -21,6 +21,10 @@ const props = defineProps({
21
21
  type: Boolean,
22
22
  default: false,
23
23
  },
24
+ showMoreActions: {
25
+ type: Boolean,
26
+ default: false,
27
+ },
24
28
  })
25
29
 
26
30
  const emit = defineEmits(['check', 'uncheck', 'change'])
@@ -57,13 +61,13 @@ function onFieldInput() {
57
61
  :clickable="false"
58
62
  :hoverable="false"
59
63
  :disabled="disabled"
60
-
64
+
61
65
  >
62
66
  <template #header>
63
67
  <CardHeader
64
68
  :showAvatar="false"
65
69
  :showActions="true"
66
- :showMoreActions="false"
70
+ :showMoreActions="showMoreActions"
67
71
  :showDivider="false"
68
72
  :singleLine="false"
69
73
  >
@@ -94,6 +98,10 @@ function onFieldInput() {
94
98
  <template #actions v-if="$slots.actions">
95
99
  <slot name="actions"></slot>
96
100
  </template>
101
+
102
+ <template #more-actions v-if="showMoreActions">
103
+ <slot name="more-actions"></slot>
104
+ </template>
97
105
  </CardHeader>
98
106
  </template>
99
107