@redseed/redseed-ui-vue3 5.3.0 → 5.3.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": "5.3.0",
3
+ "version": "5.3.2",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -21,7 +21,7 @@ const props = defineProps({
21
21
 
22
22
  <style lang="scss" scoped>
23
23
  .rsui-activity-feed {
24
- @apply flex flex-col gap-8 max-w-xs;
24
+ @apply flex flex-col gap-8 max-w-sm;
25
25
 
26
26
  &--line {
27
27
  & > *:not(:last-child) {
@@ -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) {