@eide/foir-cli 0.45.0 → 0.46.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/dist/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1347,6 +1347,9 @@ function jsFieldToProto(f) {
|
|
|
1347
1347
|
label: f.label,
|
|
1348
1348
|
type: f.type,
|
|
1349
1349
|
required: f.required,
|
|
1350
|
+
// Declares the field for the typed-filter side table so it can be used
|
|
1351
|
+
// in where/orderBy. Without it the platform rejects sort by this field.
|
|
1352
|
+
queryable: f.queryable,
|
|
1350
1353
|
helpText: f.helpText,
|
|
1351
1354
|
placeholder: f.placeholder,
|
|
1352
1355
|
defaultValue: f.defaultValue !== void 0 ? fromJson(ValueSchema, f.defaultValue) : void 0,
|