@evoke-platform/context 1.0.1-dev.0 → 1.1.0-dev.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.
@@ -146,12 +146,13 @@ export type RelatedObjectDefaultValue = {
146
146
  sortBy?: string;
147
147
  orderBy?: 'asc' | 'desc' | 'ASC' | 'DESC';
148
148
  };
149
+ export type CriteriaDefaultValue = Record<string, unknown>;
149
150
  export type DisplayConfiguration = {
150
151
  label?: string;
151
152
  placeholder?: string;
152
153
  required?: boolean;
153
154
  description?: string;
154
- defaultValue?: string | number | string[] | RelatedObjectDefaultValue;
155
+ defaultValue?: string | number | string[] | RelatedObjectDefaultValue | CriteriaDefaultValue;
155
156
  readOnly?: boolean;
156
157
  tooltip?: string;
157
158
  prefix?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.0.1-dev.0",
3
+ "version": "1.1.0-dev.0",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",