@evoke-platform/context 1.0.0-dev.124 → 1.0.0-dev.126

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.
@@ -19,8 +19,13 @@ export type ViewLayout = {
19
19
  table?: TableViewLayout;
20
20
  dropdown?: DropdownViewLayout;
21
21
  };
22
+ export type DropdownViewLayoutSort = {
23
+ propertyId: string;
24
+ direction?: 'asc' | 'desc';
25
+ };
22
26
  export type DropdownViewLayout = {
23
27
  secondaryTextExpression: string;
28
+ sort?: DropdownViewLayoutSort;
24
29
  };
25
30
  export type TableViewLayout = {
26
31
  properties: PropertyReference[];
@@ -229,7 +234,7 @@ export type ActionInput = {
229
234
  inputMaskPlaceholderChar?: string;
230
235
  tableView?: boolean;
231
236
  mode?: 'default' | 'existingOnly';
232
- displayOption?: 'dropdown' | 'dialogBox';
237
+ displayOption?: 'dropdown' | 'dialogBox' | 'radioButton';
233
238
  rows?: number;
234
239
  showCharCount?: boolean;
235
240
  readOnly?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.0.0-dev.124",
3
+ "version": "1.0.0-dev.126",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",