@wise/dynamic-flow-types 2.12.1 → 2.13.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.
@@ -2,6 +2,8 @@ import type { FormLayout as GeneratedFormLayout } from './layout/FormLayout';
2
2
  import type { JsonElement } from './JsonElement';
3
3
  export type { Action } from './feature/Action';
4
4
  export type { PersistAsync } from './feature/PersistAsync';
5
+ export type { Polling } from './feature/Polling';
6
+ export type { PollingOnError } from './feature/PollingOnError';
5
7
  export type { ValidateAsync } from './feature/ValidateAsync';
6
8
  export type { Align } from './misc/Align';
7
9
  export type { Context } from './misc/Context';
@@ -37,6 +39,7 @@ export type { ParagraphLayout } from './layout/ParagraphLayout';
37
39
  export type { ReviewLayout } from './layout/ReviewLayout';
38
40
  export type { ReviewLayoutCallToAction } from './layout/ReviewLayoutCallToAction';
39
41
  export type { ReviewLayoutField } from './layout/ReviewLayoutField';
42
+ export type { SearchLayout } from './layout/SearchLayout';
40
43
  export type { StatusListLayout } from './layout/StatusListLayout';
41
44
  export type { StatusListLayoutItem } from './layout/StatusListLayoutItem';
42
45
  export type { StatusListLayoutStatus } from './layout/StatusListLayoutStatus';
@@ -190,6 +190,7 @@ export type ReviewLayout = {
190
190
  export type SearchLayout = SearchConfig & {
191
191
  type: 'search';
192
192
  title: string;
193
+ control?: string;
193
194
  emptyMessage: string;
194
195
  margin?: Margin;
195
196
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wise/dynamic-flow-types",
3
- "version": "2.12.1",
3
+ "version": "2.13.0",
4
4
  "description": "Dynamic Flow TypeScript Types",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {