@declarion/react 0.1.56 → 0.1.58
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-lib/components/layout/Rail.d.ts +8 -1
- package/dist-lib/declarion-react.css +1 -1
- package/dist-lib/index.js +1331 -1287
- package/dist-lib/index.js.map +1 -1
- package/dist-lib/types/api.d.ts +7 -0
- package/package.json +1 -1
package/dist-lib/types/api.d.ts
CHANGED
|
@@ -126,6 +126,13 @@ export interface ListParams {
|
|
|
126
126
|
include_deleted?: boolean;
|
|
127
127
|
expand?: string[];
|
|
128
128
|
screen?: string;
|
|
129
|
+
/**
|
|
130
|
+
* Field whitelist. When set, the server returns only these columns plus
|
|
131
|
+
* primary-key field(s) (auto-injected server-side). Filters/search/sort
|
|
132
|
+
* still operate against all fields regardless of select. Omit to fetch
|
|
133
|
+
* every column (default, backwards-compatible).
|
|
134
|
+
*/
|
|
135
|
+
select?: string[];
|
|
129
136
|
}
|
|
130
137
|
/** Minimal filter node type for API params (matches backend FilterNode). */
|
|
131
138
|
export interface FilterNodeParam {
|