mountain-ui 1.0.113 → 1.0.114

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,7 +1,7 @@
1
1
  {
2
2
  "name": "mountain-ui",
3
3
  "private": false,
4
- "version": "1.0.113",
4
+ "version": "1.0.114",
5
5
  "description": "A comprehensive UI component library for ERP systems with field types, entities, and registry management built with Svelte",
6
6
  "type": "module",
7
7
  "module": "index.js",
@@ -99,7 +99,7 @@
99
99
  style="grid-template-columns:repeat({numberOfColumn}, minmax(0, 1fr));"
100
100
  >
101
101
  {#each Array.from({ length: numberOfColumn }) as column, index}
102
- {const child = group.getChild(index + 1)}
102
+ {@const child = group.getChild(index + 1)}
103
103
  {#if child}
104
104
  <WidgetPreview
105
105
  onDelete={() => {
@@ -15,7 +15,7 @@
15
15
  {#if group && group.children && group.children.length > 0}
16
16
  <div class="group-container" style="grid-template-columns:repeat({numberOfColumn}, minmax(0, 1fr));">
17
17
  {#each Array.from({ length: numberOfColumn }) as column, index}
18
- {const child = group.getChild(index + 1)}
18
+ {@const child = group.getChild(index + 1)}
19
19
  {#if child}
20
20
  <Widget type={child.type} {...child.props}></Widget>
21
21
  {:else}