@budibase/frontend-core 2.29.15 → 2.29.16

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,18 +1,18 @@
1
1
  {
2
2
  "name": "@budibase/frontend-core",
3
- "version": "2.29.15",
3
+ "version": "2.29.16",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
7
7
  "svelte": "src/index.js",
8
8
  "dependencies": {
9
- "@budibase/bbui": "2.29.15",
10
- "@budibase/shared-core": "2.29.15",
11
- "@budibase/types": "2.29.15",
9
+ "@budibase/bbui": "2.29.16",
10
+ "@budibase/shared-core": "2.29.16",
11
+ "@budibase/types": "2.29.16",
12
12
  "dayjs": "^1.10.8",
13
13
  "lodash": "4.17.21",
14
14
  "shortid": "2.2.15",
15
15
  "socket.io-client": "^4.7.5"
16
16
  },
17
- "gitHead": "2bee50a1bc2e123a66a33c781826c020da1d6ea6"
17
+ "gitHead": "a8ca596197724f9d91d065bb12d71418e1eebe3b"
18
18
  }
@@ -11,7 +11,7 @@
11
11
  Label,
12
12
  Multiselect,
13
13
  } from "@budibase/bbui"
14
- import { FieldType, SearchFilterOperator } from "@budibase/types"
14
+ import { ArrayOperator, FieldType } from "@budibase/types"
15
15
  import { generate } from "shortid"
16
16
  import { QueryUtils, Constants } from "@budibase/frontend-core"
17
17
  import { getContext } from "svelte"
@@ -268,7 +268,7 @@
268
268
  <slot name="binding" {filter} />
269
269
  {:else if [FieldType.STRING, FieldType.LONGFORM, FieldType.NUMBER, FieldType.BIGINT, FieldType.FORMULA].includes(filter.type)}
270
270
  <Input disabled={filter.noValue} bind:value={filter.value} />
271
- {:else if filter.type === FieldType.ARRAY || (filter.type === FieldType.OPTIONS && filter.operator === SearchFilterOperator.ONE_OF)}
271
+ {:else if filter.type === FieldType.ARRAY || (filter.type === FieldType.OPTIONS && filter.operator === ArrayOperator.ONE_OF)}
272
272
  <Multiselect
273
273
  disabled={filter.noValue}
274
274
  options={getFieldOptions(filter.field)}