@lavalogic/scoria 0.0.33 → 0.0.34

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.
@@ -288,7 +288,6 @@
288
288
 
289
289
  <QuerySelect
290
290
  valueAsObject
291
- {label}
292
291
  clearable
293
292
  name={customFilter?.objectName ?? 'Item'}
294
293
  valueProp="value"
@@ -542,7 +542,7 @@ export class TableContext {
542
542
  }) ?? []);
543
543
  return data;
544
544
  }
545
- return this.dataRepo?.data ?? [];
545
+ return this.showSelectedOnly ? [...this.selectedItems.values()] : (this.dataRepo?.data ?? []);
546
546
  });
547
547
  sortedData = $derived.by(() => {
548
548
  if (this.paginationRepo?.paginationType == PaginationType.Local) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lavalogic/scoria",
3
3
  "description": "Svelte components used for the FloWMS Web Frontend",
4
- "version": "0.0.33",
4
+ "version": "0.0.34",
5
5
  "publishConfig": {
6
6
  "access": "restricted"
7
7
  },