@lobb-js/studio 0.37.0 → 0.37.1

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.
@@ -223,8 +223,8 @@
223
223
  {:else}
224
224
  <ColumnIcon size="12.5" class="text-muted-foreground" />
225
225
  {/if}
226
- <div class="font-bold">{column.id}</div>
227
- <div class="text-muted-foreground text-[0.7rem]">
226
+ <div class="font-bold whitespace-nowrap">{column.id}</div>
227
+ <div class="text-muted-foreground text-[0.7rem] whitespace-nowrap">
228
228
  {column.subtext}
229
229
  </div>
230
230
  </button>
@@ -60,9 +60,7 @@
60
60
  relation.to.collection === parentRecord?.collectionName,
61
61
  )?.from.field;
62
62
  const createValues = {
63
- [refrenceFieldName]: {
64
- id: 0,
65
- },
63
+ [refrenceFieldName]: 0,
66
64
  };
67
65
  let selectedRecordsIds: string[] = $derived(
68
66
  entries.filter((entry) => entry.id).map((entry) => entry.id),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lobb-js/studio",
3
3
  "license": "UNLICENSED",
4
- "version": "0.37.0",
4
+ "version": "0.37.1",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -223,8 +223,8 @@
223
223
  {:else}
224
224
  <ColumnIcon size="12.5" class="text-muted-foreground" />
225
225
  {/if}
226
- <div class="font-bold">{column.id}</div>
227
- <div class="text-muted-foreground text-[0.7rem]">
226
+ <div class="font-bold whitespace-nowrap">{column.id}</div>
227
+ <div class="text-muted-foreground text-[0.7rem] whitespace-nowrap">
228
228
  {column.subtext}
229
229
  </div>
230
230
  </button>
@@ -60,9 +60,7 @@
60
60
  relation.to.collection === parentRecord?.collectionName,
61
61
  )?.from.field;
62
62
  const createValues = {
63
- [refrenceFieldName]: {
64
- id: 0,
65
- },
63
+ [refrenceFieldName]: 0,
66
64
  };
67
65
  let selectedRecordsIds: string[] = $derived(
68
66
  entries.filter((entry) => entry.id).map((entry) => entry.id),