rapida-partner 1.14.0 → 1.15.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
|
@@ -36,6 +36,7 @@ export interface IList {
|
|
|
36
36
|
todo?: string;
|
|
37
37
|
}[]; // properties taken from dataSource
|
|
38
38
|
listFilters?: IFormElement[]; // filters to be applied on dataSource
|
|
39
|
+
listActions?: IFormElement[]; // actions that can be performed on the list
|
|
39
40
|
cardAsALink?: {
|
|
40
41
|
link: string; // e.g.: "/user"
|
|
41
42
|
propertiesAsQueryParam?: string[]; // if, for example, ["_id", "email"], then "/user?_id=value&email=value"
|
|
@@ -203,6 +203,12 @@
|
|
|
203
203
|
"required": ["icon", "label", "action"]
|
|
204
204
|
}
|
|
205
205
|
},
|
|
206
|
+
"listActions": {
|
|
207
|
+
"$ref": "form-one-of.ref.json"
|
|
208
|
+
},
|
|
209
|
+
"listFilters": {
|
|
210
|
+
"$ref": "form-one-of.ref.json"
|
|
211
|
+
},
|
|
206
212
|
"contracts": {
|
|
207
213
|
"type": "array",
|
|
208
214
|
"items": {
|
|
@@ -418,9 +424,6 @@
|
|
|
418
424
|
},
|
|
419
425
|
"required": ["id", "endpoint", "actions"]
|
|
420
426
|
}
|
|
421
|
-
},
|
|
422
|
-
"listFilters": {
|
|
423
|
-
"$ref": "form-one-of.ref.json"
|
|
424
427
|
}
|
|
425
428
|
},
|
|
426
429
|
"required": ["componentType", "id", "title", "dataSource", "contracts"]
|