@visualizevalue/mint-app-base 0.1.52 → 0.1.54

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.
@@ -67,6 +67,7 @@ select {
67
67
 
68
68
  .form-item {
69
69
  border: var(--border);
70
+ border-radius: var(--border-radius);
70
71
  display: flex;
71
72
  align-items: center;
72
73
  background: var(--background);
@@ -19,8 +19,13 @@ const props = defineProps({
19
19
  src: String,
20
20
  })
21
21
 
22
+ // Update on input change
22
23
  const src = ref(props.src)
24
+ watch(props, () => {
25
+ src.value = props.src
26
+ })
23
27
 
28
+ // Force reload on resize
24
29
  const { width } = useWindowSize()
25
30
  watch(width, () => {
26
31
  src.value = ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.52",
3
+ "version": "0.1.54",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {