@wise/dynamic-flow-types 3.6.1 → 3.6.2
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/feature/Suggestions.d.ts +0 -1
- package/build/next/layout/AlertLayout.d.ts +0 -1
- package/build/next/layout/DecisionLayoutOption.d.ts +0 -4
- package/build/next/layout/InstructionsLayoutItem.d.ts +0 -1
- package/build/next/layout/ListLayout.d.ts +0 -1
- package/build/next/layout/ListLayoutItem.d.ts +0 -4
- package/build/next/layout/ModalLayout.d.ts +0 -1
- package/build/next/layout/ModalLayoutContent.d.ts +0 -1
- package/build/next/layout/ReviewLayoutField.d.ts +0 -6
- package/build/next/layout/StatusListLayoutItem.d.ts +0 -2
- package/build/next/responses/error/ErrorResponseBody.d.ts +0 -1
- package/build/next/schema/StringSchema.d.ts +0 -3
- package/build/next/step/Step.d.ts +0 -1
- package/package.json +1 -1
|
@@ -39,23 +39,19 @@ export type DecisionLayoutOption = {
|
|
|
39
39
|
behavior?: Behavior;
|
|
40
40
|
/**
|
|
41
41
|
* An optional identifier to be used in custom renderers.
|
|
42
|
-
* @experimental This feature may be changed in the future without notice.
|
|
43
42
|
*/
|
|
44
43
|
tag?: string;
|
|
45
44
|
/**
|
|
46
45
|
* Additional information to be displayed to the user.
|
|
47
|
-
* @experimental This feature may be changed in the future without notice.
|
|
48
46
|
*/
|
|
49
47
|
additionalText?: string;
|
|
50
48
|
/**
|
|
51
49
|
* An object containing two strings representing two user-facing values.
|
|
52
50
|
* One being clearly more important than the other.
|
|
53
|
-
* @experimental This feature may be changed in the future without notice.
|
|
54
51
|
*/
|
|
55
52
|
supportingValues?: SupportingValues;
|
|
56
53
|
/**
|
|
57
54
|
* An alert that will be displayed inline with the item.
|
|
58
|
-
* @experimental This feature may be changed in the future without notice.
|
|
59
55
|
*/
|
|
60
56
|
inlineAlert?: InlineAlert;
|
|
61
57
|
};
|
|
@@ -3,7 +3,6 @@ import type { ListLayoutItem } from './ListLayoutItem';
|
|
|
3
3
|
import type { Size } from '../misc/Size';
|
|
4
4
|
/**
|
|
5
5
|
* A list of read-only fields displaying information with optional images or icons for the user.
|
|
6
|
-
* @experimental This feature may be changed in the future without notice.
|
|
7
6
|
*/
|
|
8
7
|
export type ListLayout = {
|
|
9
8
|
/**
|
|
@@ -42,23 +42,19 @@ export type ListLayoutItem = {
|
|
|
42
42
|
subvalue?: string;
|
|
43
43
|
/**
|
|
44
44
|
* An optional identifier to be used in custom renderers.
|
|
45
|
-
* @experimental This feature may be changed in the future without notice.
|
|
46
45
|
*/
|
|
47
46
|
tag?: string;
|
|
48
47
|
/**
|
|
49
48
|
* Additional information to be displayed to the user, with optional interactivity.
|
|
50
|
-
* @experimental This feature may be changed in the future without notice.
|
|
51
49
|
*/
|
|
52
50
|
additionalInfo?: AdditionalInfo;
|
|
53
51
|
/**
|
|
54
52
|
* An object containing two strings representing two user-facing values.
|
|
55
53
|
* One being clearly more important than the other.
|
|
56
|
-
* @experimental This feature may be changed in the future without notice.
|
|
57
54
|
*/
|
|
58
55
|
supportingValues?: SupportingValues;
|
|
59
56
|
/**
|
|
60
57
|
* An alert that will be displayed inline with the item.
|
|
61
|
-
* @experimental This feature may be changed in the future without notice.
|
|
62
58
|
*/
|
|
63
59
|
inlineAlert?: InlineAlert;
|
|
64
60
|
/**
|
|
@@ -4,7 +4,6 @@ import type { ModalLayoutContent } from './ModalLayoutContent';
|
|
|
4
4
|
/**
|
|
5
5
|
* A button that triggers a modal with the specified layout components.
|
|
6
6
|
* **Note**: We do not support the use of forms inside a modal.
|
|
7
|
-
* @experimental This feature may be changed in the future without notice.
|
|
8
7
|
*/
|
|
9
8
|
export type ModalLayout = {
|
|
10
9
|
/**
|
|
@@ -29,32 +29,26 @@ export type ReviewLayoutField = {
|
|
|
29
29
|
help?: Help;
|
|
30
30
|
/**
|
|
31
31
|
* An optional identifier to be used in custom renderers.
|
|
32
|
-
* @experimental This feature may be changed in the future without notice.
|
|
33
32
|
*/
|
|
34
33
|
tag?: string;
|
|
35
34
|
/**
|
|
36
35
|
* An icon to represent the item.
|
|
37
|
-
* @experimental This feature may be changed in the future without notice.
|
|
38
36
|
*/
|
|
39
37
|
icon?: Icon;
|
|
40
38
|
/**
|
|
41
39
|
* An image to represent the option.
|
|
42
|
-
* @experimental This feature may be changed in the future without notice.
|
|
43
40
|
*/
|
|
44
41
|
image?: Image;
|
|
45
42
|
/**
|
|
46
43
|
* Additional information to be displayed to the user, with optional interactivity.
|
|
47
|
-
* @experimental This feature may be changed in the future without notice.
|
|
48
44
|
*/
|
|
49
45
|
additionalInfo?: AdditionalInfo;
|
|
50
46
|
/**
|
|
51
47
|
* An alert that will be displayed inline with the item.
|
|
52
|
-
* @experimental This feature may be changed in the future without notice.
|
|
53
48
|
*/
|
|
54
49
|
inlineAlert?: InlineAlert;
|
|
55
50
|
/**
|
|
56
51
|
* A titled [com.wise.dynamicflow.feature.Behavior], associated with a specific field, and which can be performed by the user
|
|
57
|
-
* @experimental This feature may be changed in the future without notice.
|
|
58
52
|
*/
|
|
59
53
|
callToAction?: ReviewLayoutCallToAction;
|
|
60
54
|
};
|
|
@@ -23,12 +23,10 @@ export type StatusListLayoutItem = {
|
|
|
23
23
|
status?: StatusListLayoutStatus;
|
|
24
24
|
/**
|
|
25
25
|
* A titled call to action which can be performed by the user.
|
|
26
|
-
* @experimental This feature may be changed in the future without notice.
|
|
27
26
|
*/
|
|
28
27
|
callToAction?: ItemCallToAction;
|
|
29
28
|
/**
|
|
30
29
|
* An optional identifier to be used in custom renderers.
|
|
31
|
-
* @experimental This feature may be changed in the future without notice.
|
|
32
30
|
*/
|
|
33
31
|
tag?: string;
|
|
34
32
|
};
|
|
@@ -10,7 +10,6 @@ export type ErrorResponseBody = {
|
|
|
10
10
|
refreshFormUrl?: string;
|
|
11
11
|
/**
|
|
12
12
|
* Additional data to be included in any analytics events generated by clients for this error.
|
|
13
|
-
* @experimental This feature may be changed in the future without notice.
|
|
14
13
|
*/
|
|
15
14
|
analytics?: Record<string, string>;
|
|
16
15
|
/**
|
|
@@ -80,12 +80,10 @@ export type StringSchema = {
|
|
|
80
80
|
pattern?: string;
|
|
81
81
|
/**
|
|
82
82
|
* Sets the default capitalization mode of the devices virtual keyboard
|
|
83
|
-
* @experimental This feature may be changed in the future without notice.
|
|
84
83
|
*/
|
|
85
84
|
autocapitalization?: AutocapitalizationType;
|
|
86
85
|
/**
|
|
87
86
|
* Whether the device should automatically correct the user's input. It defaults to false.
|
|
88
|
-
* @experimental This feature may be changed in the future without notice.
|
|
89
87
|
*/
|
|
90
88
|
autocorrect?: boolean;
|
|
91
89
|
/**
|
|
@@ -218,7 +216,6 @@ export type StringSchema = {
|
|
|
218
216
|
help?: Help;
|
|
219
217
|
/**
|
|
220
218
|
* Configure suggestions that the user can select to populate the schema
|
|
221
|
-
* @experimental This feature may be changed in the future without notice.
|
|
222
219
|
*/
|
|
223
220
|
suggestions?: Suggestions;
|
|
224
221
|
/**
|
|
@@ -96,7 +96,6 @@ export type Step = {
|
|
|
96
96
|
control?: string;
|
|
97
97
|
/**
|
|
98
98
|
* Must be an ISO 8601 formatted string. After this time has passed, the step will be refreshed. It should include date, time, and timezone.
|
|
99
|
-
* @experimental This feature may be changed in the future without notice.
|
|
100
99
|
*/
|
|
101
100
|
refreshAfter?: string;
|
|
102
101
|
};
|