@redseed/redseed-ui-vue3 5.3.1 → 5.3.3

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": "5.3.1",
3
+ "version": "5.3.3",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -116,7 +116,7 @@ const buttonSlotClass = computed(() => [
116
116
 
117
117
  // modifier full width
118
118
  &--full {
119
- @apply w-full;
119
+ @apply flex-1 w-full;
120
120
  }
121
121
 
122
122
  // modifier sm size
@@ -1,5 +1,5 @@
1
1
  <script setup>
2
- import { ref } from 'vue'
2
+ import { ref, watch } from 'vue'
3
3
  import FormFieldSlot from './FormFieldSlot.vue'
4
4
  import { CheckIcon } from '@heroicons/vue/24/outline'
5
5
 
@@ -13,6 +13,8 @@ const checked = ref(false)
13
13
 
14
14
  checked.value = model.value
15
15
 
16
+ watch(() => model.value, () => checked.value = model.value)
17
+
16
18
  const emit = defineEmits(['input'])
17
19
 
18
20
  function check(event) {