@budibase/frontend-core 3.36.4 → 3.37.0
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.0",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"vitest": "^3.2.4"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "2b6fff45694d41568ff0cd26f1130cf98f946684"
|
|
27
27
|
}
|
|
@@ -304,6 +304,7 @@
|
|
|
304
304
|
})
|
|
305
305
|
}}
|
|
306
306
|
placeholder={false}
|
|
307
|
+
popoverAutoWidth
|
|
307
308
|
/>
|
|
308
309
|
</span>
|
|
309
310
|
<span>of the following {builderType} groups:</span>
|
|
@@ -333,6 +334,7 @@
|
|
|
333
334
|
})
|
|
334
335
|
}}
|
|
335
336
|
placeholder={false}
|
|
337
|
+
popoverAutoWidth
|
|
336
338
|
/>
|
|
337
339
|
</span>
|
|
338
340
|
<span>of the following {builderType}s are matched:</span>
|
|
@@ -376,6 +378,7 @@
|
|
|
376
378
|
onFilterFieldUpdate(updated, groupIdx, filterIdx)
|
|
377
379
|
}}
|
|
378
380
|
placeholder="Column"
|
|
381
|
+
popoverAutoWidth
|
|
379
382
|
/>
|
|
380
383
|
{:else}
|
|
381
384
|
<ConditionField
|
|
@@ -406,6 +409,7 @@
|
|
|
406
409
|
onFilterFieldUpdate(updated, groupIdx, filterIdx)
|
|
407
410
|
}}
|
|
408
411
|
placeholder={false}
|
|
412
|
+
popoverAutoWidth
|
|
409
413
|
/>
|
|
410
414
|
<FilterField
|
|
411
415
|
placeholder="Value"
|
|
@@ -471,6 +475,7 @@
|
|
|
471
475
|
})
|
|
472
476
|
}}
|
|
473
477
|
placeholder={false}
|
|
478
|
+
popoverAutoWidth
|
|
474
479
|
/>
|
|
475
480
|
</span>
|
|
476
481
|
<span>when all {builderType}s are empty</span>
|
|
@@ -188,6 +188,7 @@
|
|
|
188
188
|
disabled={filter.noValue}
|
|
189
189
|
options={getFieldOptions(filter.field)}
|
|
190
190
|
value={readableValue}
|
|
191
|
+
popoverAutoWidth
|
|
191
192
|
on:change={onChange}
|
|
192
193
|
/>
|
|
193
194
|
{:else if filter.type === FieldType.OPTIONS}
|
|
@@ -195,6 +196,8 @@
|
|
|
195
196
|
disabled={filter.noValue}
|
|
196
197
|
options={getFieldOptions(filter.field)}
|
|
197
198
|
value={readableValue}
|
|
199
|
+
popoverAutoWidth
|
|
200
|
+
wrapText
|
|
198
201
|
on:change={onChange}
|
|
199
202
|
/>
|
|
200
203
|
{:else if filter.type === FieldType.BOOLEAN}
|
|
@@ -205,6 +208,7 @@
|
|
|
205
208
|
{ label: "False", value: "false" },
|
|
206
209
|
]}
|
|
207
210
|
value={readableValue}
|
|
211
|
+
popoverAutoWidth
|
|
208
212
|
on:change={onChange}
|
|
209
213
|
/>
|
|
210
214
|
{:else if filter.type === FieldType.DATETIME}
|
|
@@ -223,6 +223,7 @@ export const createActions = (context: StoreContext): RowActionStore => {
|
|
|
223
223
|
fetch.set(null)
|
|
224
224
|
instanceLoaded.set(false)
|
|
225
225
|
loading.set(true)
|
|
226
|
+
rowChangeCache.set({})
|
|
226
227
|
|
|
227
228
|
// Abandon if we don't have a valid datasource
|
|
228
229
|
if (!datasource.actions.isDatasourceValid($datasource)) {
|