@budibase/frontend-core 2.29.20 → 2.29.22
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.
|
|
3
|
+
"version": "2.29.22",
|
|
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.
|
|
10
|
-
"@budibase/shared-core": "2.29.
|
|
11
|
-
"@budibase/types": "2.29.
|
|
9
|
+
"@budibase/bbui": "2.29.22",
|
|
10
|
+
"@budibase/shared-core": "2.29.22",
|
|
11
|
+
"@budibase/types": "2.29.22",
|
|
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": "
|
|
17
|
+
"gitHead": "a3f29a8a7a141fdf1a7539b8648c80340c9c4a5d"
|
|
18
18
|
}
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
export let behaviourFilters = false
|
|
27
27
|
export let allowBindings = false
|
|
28
28
|
export let filtersLabel = "Filters"
|
|
29
|
-
|
|
29
|
+
export let showFilterEmptyDropdown = true
|
|
30
30
|
$: {
|
|
31
31
|
if (
|
|
32
32
|
tables.find(
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
on:change={e => handleAllOr(e.detail)}
|
|
219
219
|
placeholder={null}
|
|
220
220
|
/>
|
|
221
|
-
{#if datasource?.type === "table"}
|
|
221
|
+
{#if datasource?.type === "table" && showFilterEmptyDropdown}
|
|
222
222
|
<Select
|
|
223
223
|
label="When filter empty"
|
|
224
224
|
value={onEmptyFilter}
|