@wise/dynamic-flow-types 2.6.6 → 2.7.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.
package/build/next/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ 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 { ValidateAsync } from './feature/ValidateAsync';
|
|
5
6
|
export type { Align } from './misc/Align';
|
|
6
7
|
export type { Context } from './misc/Context';
|
|
7
8
|
export type { Size } from './misc/Size';
|
|
@@ -29,6 +29,10 @@ export type Step = {
|
|
|
29
29
|
*/
|
|
30
30
|
type?: string;
|
|
31
31
|
/**
|
|
32
|
+
* @deprecated Please replace step description with a paragraph in your layout.
|
|
33
|
+
*/
|
|
34
|
+
description?: string;
|
|
35
|
+
/**
|
|
32
36
|
* @deprecated Please define actions inside Button components.
|
|
33
37
|
*/
|
|
34
38
|
actions?: Action[];
|