@budibase/shared-core 2.32.17 → 2.33.1
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/dist/index.js +3 -3
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -17657,7 +17657,7 @@ var processSearchFilters = (filters) => {
|
|
|
17657
17657
|
return filters.reduce((acc, filter) => {
|
|
17658
17658
|
const filterPropertyKeys = Object.keys(filter).sort((a, b) => {
|
|
17659
17659
|
return a.localeCompare(b);
|
|
17660
|
-
}).filter((key) => key
|
|
17660
|
+
}).filter((key) => filter[key]);
|
|
17661
17661
|
if (filterPropertyKeys.length == 1) {
|
|
17662
17662
|
const key = filterPropertyKeys[0], value = filter[key];
|
|
17663
17663
|
if (key === "onEmptyFilter") {
|
|
@@ -18895,8 +18895,8 @@ var allowDefaultColumnByType = {
|
|
|
18895
18895
|
["attachment_single" /* ATTACHMENT_SINGLE */]: false,
|
|
18896
18896
|
["signature_single" /* SIGNATURE_SINGLE */]: false,
|
|
18897
18897
|
["link" /* LINK */]: false,
|
|
18898
|
-
["bb_reference" /* BB_REFERENCE */]:
|
|
18899
|
-
["bb_reference_single" /* BB_REFERENCE_SINGLE */]:
|
|
18898
|
+
["bb_reference" /* BB_REFERENCE */]: true,
|
|
18899
|
+
["bb_reference_single" /* BB_REFERENCE_SINGLE */]: true
|
|
18900
18900
|
};
|
|
18901
18901
|
function canBeDisplayColumn(type) {
|
|
18902
18902
|
return !!allowDisplayColumnByType[type];
|