@humandialog/forms.svelte 0.5.3 → 0.5.4

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.
@@ -55,7 +55,9 @@ function onNewElement(text) {
55
55
  </script>
56
56
 
57
57
  {#each objects as item (item.Id)}
58
- <slot {item}/>
58
+ {#key item} <!-- Forces to fully rerender when item changed to fire use: callbacks again -->
59
+ <slot {item}/>
60
+ {/key}
59
61
  {/each }
60
62
 
61
63
  {#if inserter}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@humandialog/forms.svelte",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Basic Svelte UI components for Object Reef applications",
5
5
  "devDependencies": {
6
6
  "@playwright/test": "^1.28.1",