@evoke-platform/context 1.0.0-dev.123 → 1.0.0-dev.125

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.
@@ -158,6 +158,10 @@ export type DisplayConfiguration = {
158
158
  relatedObjectDisplay?: 'dropdown' | 'dialogBox';
159
159
  visibility?: VisibilityConfiguration | string;
160
160
  viewLayout?: ViewLayoutEntityReference;
161
+ choicesDisplay?: {
162
+ type: 'dropdown' | 'radioButton';
163
+ sortBy?: 'ASC' | 'DESC' | 'NONE';
164
+ };
161
165
  };
162
166
  export type InputParameterReference = {
163
167
  type: 'input';
@@ -225,7 +229,7 @@ export type ActionInput = {
225
229
  inputMaskPlaceholderChar?: string;
226
230
  tableView?: boolean;
227
231
  mode?: 'default' | 'existingOnly';
228
- displayOption?: 'dropdown' | 'dialogBox';
232
+ displayOption?: 'dropdown' | 'dialogBox' | 'radioButton';
229
233
  rows?: number;
230
234
  showCharCount?: boolean;
231
235
  readOnly?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.0.0-dev.123",
3
+ "version": "1.0.0-dev.125",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",