@lavalogic/scoria 0.9.2 → 0.9.3

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.
@@ -347,7 +347,7 @@
347
347
  {/if}
348
348
  {:else if isSelect}
349
349
  {#if hasQuery}
350
- {#if customFilter!.valueAsObject == false}
350
+ {#if customFilter!.valueAsObject !== true}
351
351
  {@const label =
352
352
  customFilter?.id ??
353
353
  customFilter?.label ??
@@ -400,7 +400,7 @@
400
400
  <div class="contents">
401
401
  {#await options then options}
402
402
  {#if hasQuery}
403
- {#if customFilter!.valueAsObject == false}
403
+ {#if customFilter!.valueAsObject !== true}
404
404
  {@const label =
405
405
  customFilter?.id ??
406
406
  customFilter?.label ??
@@ -8,6 +8,6 @@ export interface CustomFilter {
8
8
  multiSelect?: boolean;
9
9
  objectName?: string;
10
10
  label?: string;
11
- valueAsObject: boolean;
11
+ valueAsObject?: boolean;
12
12
  query?: (value: unknown) => Promise<Array<SelectOption<number>>>;
13
13
  }
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.9.2",
4
+ "version": "0.9.3",
5
5
  "publishConfig": {
6
6
  "access": "restricted"
7
7
  },