@humandialog/forms.svelte 1.8.3 → 1.8.5

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.
@@ -253,7 +253,12 @@ async function dblclick(e) {
253
253
  <div class="w-full flex flex-row justify-between">
254
254
  <span></span>
255
255
  <span></span>
256
- <div class="flex flex-row text-orange-800 dark:text-orange-200"><span><Icon icon="barcode" s/></span><span>4.32</span></div>
256
+ <div class="flex flex-row text-orange-800 dark:text-orange-200">
257
+ {#if columnDef.state >= 0}
258
+ <span><Icon icon="barcode" s/></span>
259
+ <span>{Number(columnDef.state/1000)}</span>
260
+ {/if}
261
+ </div>
257
262
 
258
263
  </div>
259
264
  </figcaption>
@@ -332,7 +332,7 @@ async function onDownloadFile(e) {
332
332
 
333
333
  {#if summary && (item[summary] || placeholder=='Summary')}
334
334
  <figcaption>
335
- {item[summary]}
335
+ {ext(item[summary])}
336
336
  </figcaption>
337
337
  {/if}
338
338
  </figure>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@humandialog/forms.svelte",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "Basic Svelte UI components for Object Reef applications",
5
5
  "devDependencies": {
6
6
  "@playwright/test": "^1.28.1",