@wise/dynamic-flow-types 3.1.4 → 3.3.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 { Action } from '../feature/Action';
2
2
  import type { Icon } from '../misc/Icon';
3
3
  import type { Image } from '../misc/Image';
4
4
  import type { Behavior } from '../feature/Behavior';
5
+ import type { SupportingValues } from '../misc/SupportingValues';
6
+ import type { InlineAlert } from '../misc/InlineAlert';
5
7
  /**
6
8
  * An option is a single entry in the decision that the user can choose.
7
9
  */
@@ -40,4 +42,20 @@ export type DecisionLayoutOption = {
40
42
  * @experimental This feature may be changed in the future without notice.
41
43
  */
42
44
  tag?: string;
45
+ /**
46
+ * Additional information to be displayed to the user.
47
+ * @experimental This feature may be changed in the future without notice.
48
+ */
49
+ additionalText?: string;
50
+ /**
51
+ * An object containing two strings representing two user-facing values.
52
+ * One being clearly more important than the other.
53
+ * @experimental This feature may be changed in the future without notice.
54
+ */
55
+ supportingValues?: SupportingValues;
56
+ /**
57
+ * An alert that will be displayed inline with the item.
58
+ * @experimental This feature may be changed in the future without notice.
59
+ */
60
+ inlineAlert?: InlineAlert;
43
61
  };
@@ -1,15 +1,13 @@
1
1
  import type { ListLayoutStatus } from './ListLayoutStatus';
2
2
  import type { Icon } from '../misc/Icon';
3
3
  import type { Image } from '../misc/Image';
4
+ import type { AdditionalInfo } from '../misc/AdditionalInfo';
5
+ import type { SupportingValues } from '../misc/SupportingValues';
6
+ import type { InlineAlert } from '../misc/InlineAlert';
4
7
  /**
5
8
  * A single entry in a [ListLayout].
6
9
  */
7
10
  export type ListLayoutItem = {
8
- /**
9
- * A user-facing description.
10
- * @deprecated Please use 'StatusListLayout' instead
11
- */
12
- description?: string;
13
11
  /**
14
12
  * The status of the item, if it has one.
15
13
  * @deprecated Please use 'StatusListLayout' instead
@@ -29,14 +27,17 @@ export type ListLayoutItem = {
29
27
  title?: string;
30
28
  /**
31
29
  * A user-facing subtitle.
30
+ * @deprecated Please use 'description' instead
32
31
  */
33
32
  subtitle?: string;
34
33
  /**
35
34
  * A user-facing value.
35
+ * @deprecated Please use 'supportingValues' instead
36
36
  */
37
37
  value?: string;
38
38
  /**
39
39
  * A user-facing subvalue.
40
+ * @deprecated Please use 'supportingValues' instead
40
41
  */
41
42
  subvalue?: string;
42
43
  /**
@@ -44,4 +45,24 @@ export type ListLayoutItem = {
44
45
  * @experimental This feature may be changed in the future without notice.
45
46
  */
46
47
  tag?: string;
48
+ /**
49
+ * Additional information to be displayed to the user, with optional interactivity.
50
+ * @experimental This feature may be changed in the future without notice.
51
+ */
52
+ additionalInfo?: AdditionalInfo;
53
+ /**
54
+ * An object containing two strings representing two user-facing values.
55
+ * One being clearly more important than the other.
56
+ * @experimental This feature may be changed in the future without notice.
57
+ */
58
+ supportingValues?: SupportingValues;
59
+ /**
60
+ * An alert that will be displayed inline with the item.
61
+ * @experimental This feature may be changed in the future without notice.
62
+ */
63
+ inlineAlert?: InlineAlert;
64
+ /**
65
+ * A user-facing description.
66
+ */
67
+ description?: string;
47
68
  };
@@ -1,4 +1,9 @@
1
1
  import type { Help } from '../feature/Help';
2
+ import type { Icon } from '../misc/Icon';
3
+ import type { Image } from '../misc/Image';
4
+ import type { AdditionalInfo } from '../misc/AdditionalInfo';
5
+ import type { InlineAlert } from '../misc/InlineAlert';
6
+ import type { ReviewLayoutCallToAction } from './ReviewLayoutCallToAction';
2
7
  /**
3
8
  * A single field in a [ReviewLayout]
4
9
  */
@@ -27,4 +32,29 @@ export type ReviewLayoutField = {
27
32
  * @experimental This feature may be changed in the future without notice.
28
33
  */
29
34
  tag?: string;
35
+ /**
36
+ * An icon to represent the item.
37
+ * @experimental This feature may be changed in the future without notice.
38
+ */
39
+ icon?: Icon;
40
+ /**
41
+ * An image to represent the option.
42
+ * @experimental This feature may be changed in the future without notice.
43
+ */
44
+ image?: Image;
45
+ /**
46
+ * Additional information to be displayed to the user, with optional interactivity.
47
+ * @experimental This feature may be changed in the future without notice.
48
+ */
49
+ additionalInfo?: AdditionalInfo;
50
+ /**
51
+ * An alert that will be displayed inline with the item.
52
+ * @experimental This feature may be changed in the future without notice.
53
+ */
54
+ inlineAlert?: InlineAlert;
55
+ /**
56
+ * 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
+ */
59
+ callToAction?: ReviewLayoutCallToAction;
30
60
  };
@@ -0,0 +1,18 @@
1
+ import type { Behavior } from '../feature/Behavior';
2
+ /**
3
+ * Additional information to be displayed to the user, with optional interactivity.
4
+ */
5
+ export type AdditionalInfo = {
6
+ /**
7
+ * Additional information to be displayed to the user.
8
+ */
9
+ text: string;
10
+ /**
11
+ * An optional behavior to be triggered when interacting with the text.
12
+ */
13
+ behavior?: Behavior;
14
+ /**
15
+ * A description of the behavior to be used by screen readers.
16
+ */
17
+ accessibilityDescription?: string;
18
+ };
@@ -0,0 +1,14 @@
1
+ import type { Context } from './Context';
2
+ /**
3
+ * An alert that will be displayed inline with the item that contains it.
4
+ */
5
+ export type InlineAlert = {
6
+ /**
7
+ * The content of the alert as string.
8
+ */
9
+ content: string;
10
+ /**
11
+ * The semantics of the alert. Defaults to `neutral`.
12
+ */
13
+ context?: Context;
14
+ };
@@ -0,0 +1,14 @@
1
+ /**
2
+ * An object containing two strings representing two user-facing values.
3
+ * One being clearly more important than the other.
4
+ */
5
+ export type SupportingValues = {
6
+ /**
7
+ * The more important value of the two.
8
+ */
9
+ value?: string;
10
+ /**
11
+ * The less important value of the two.
12
+ */
13
+ subvalue?: string;
14
+ };
@@ -0,0 +1,18 @@
1
+ import type { Layout } from '../../layout/Layout';
2
+ /**
3
+ * Represents a Modal response body.
4
+ * A response is determined to be a Modal when the status code is in the 200-299 range,
5
+ * and the `X-DF-Response-Type: modal` header is provided.
6
+ * When this response is received, the client opens the provided modal as if it was included as
7
+ * a ModalBehavior on the Step being presented.
8
+ */
9
+ export type ModalResponseBody = {
10
+ /**
11
+ * A user-facing title for the modal content block
12
+ */
13
+ title?: string;
14
+ /**
15
+ * The layout components to appear inside the modal when presented
16
+ */
17
+ content: Layout[];
18
+ };
@@ -6,17 +6,15 @@ export type AlertRendererProps = BaseRendererProps & {
6
6
  context: Context;
7
7
  margin: Margin;
8
8
  markdown: string;
9
- callToAction?: AlertCallToAction | AlertCallToActionLink;
10
- };
11
- export type AlertCallToActionLink = {
12
- type: 'link';
13
- title: string;
14
- accessibilityDescription?: string;
15
- href: string;
9
+ callToAction?: AlertCallToAction;
16
10
  };
17
11
  export type AlertCallToAction = {
18
- type: 'action';
19
12
  title: string;
20
13
  accessibilityDescription?: string;
14
+ } & ({
15
+ type: 'link';
16
+ href: string;
17
+ } | {
18
+ type: 'action' | 'dismiss' | 'modal';
21
19
  onClick: () => void;
22
- };
20
+ });
@@ -1,7 +1,7 @@
1
1
  import { Icon } from './Icon';
2
2
  import { Image } from './Image';
3
3
  import { BaseRendererProps } from './RendererProps';
4
- import { Margin } from './constants';
4
+ import { InlineAlert, Margin, SupportingValues } from './constants';
5
5
  export type DecisionRendererProps = BaseRendererProps & {
6
6
  type: 'decision';
7
7
  control?: string;
@@ -17,5 +17,11 @@ export type DecisionOption = {
17
17
  image?: Image;
18
18
  title: string;
19
19
  tag?: string;
20
+ /** @experimental This feature may be changed in the future without notice. */
21
+ additionalText?: string;
22
+ /** @experimental This feature may be changed in the future without notice. */
23
+ supportingValues?: SupportingValues;
24
+ /** @experimental This feature may be changed in the future without notice. */
25
+ inlineAlert?: InlineAlert;
20
26
  onClick: () => void;
21
27
  };
@@ -0,0 +1,9 @@
1
+ import { BaseRendererProps } from './RendererProps';
2
+ export type ExternalConfirmationRendererProps = BaseRendererProps & {
3
+ type: 'external-confirmation';
4
+ url: string;
5
+ status: 'initial' | 'success' | 'failure' | 'dismissed';
6
+ onSuccess: () => void;
7
+ onFailure: () => void;
8
+ onCancel: () => void;
9
+ };
@@ -1,7 +1,8 @@
1
+ import { SupportingValues } from '../next';
1
2
  import { Icon } from './Icon';
2
3
  import { Image } from './Image';
3
4
  import { BaseRendererProps } from './RendererProps';
4
- import { Margin } from './constants';
5
+ import { AdditionalInfo, InlineAlert, Margin } from './constants';
5
6
  export type ListRendererProps = BaseRendererProps & {
6
7
  type: 'list';
7
8
  callToAction?: ListCallToAction;
@@ -14,22 +15,28 @@ export type ListItem = {
14
15
  icon?: Icon;
15
16
  image?: Image;
16
17
  title?: string;
18
+ /** @deprecated Use `description` instead. */
17
19
  subtitle?: string;
20
+ description?: string;
21
+ /** @deprecated Use `supportedValues` instead. */
18
22
  value?: string;
23
+ /** @deprecated Use `supportedValues` instead. */
19
24
  subvalue?: string;
20
25
  tag?: string;
26
+ /** @experimental This feature may be changed in the future without notice. */
27
+ supportingValues?: SupportingValues;
28
+ /** @experimental This feature may be changed in the future without notice. */
29
+ additionalInfo?: AdditionalInfo;
30
+ /** @experimental This feature may be changed in the future without notice. */
31
+ inlineAlert?: InlineAlert;
21
32
  };
22
- export type ListCallToAction = ListCallToActionLink | ListCallToActionAction;
23
- export type ListCallToActionLink = {
24
- type: 'link';
25
- title: string;
33
+ export type ListCallToAction = {
26
34
  accessibilityDescription?: string;
27
- href: string;
28
- onClick: () => void;
29
- };
30
- export type ListCallToActionAction = {
31
- type: 'action';
32
35
  title: string;
33
- accessibilityDescription?: string;
34
36
  onClick: () => void;
35
- };
37
+ } & ({
38
+ type: 'action' | 'modal' | 'dismiss';
39
+ } | {
40
+ type: 'link';
41
+ href: string;
42
+ });
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from 'react';
2
+ import { BaseRendererProps, RendererProps } from './RendererProps';
3
+ export type ModalContentRendererProps = BaseRendererProps & {
4
+ type: 'modal-content';
5
+ children: ReactNode;
6
+ childrenProps: RendererProps[];
7
+ open: boolean;
8
+ title?: string;
9
+ onClose: () => void;
10
+ };
@@ -7,6 +7,7 @@ import { CoreContainerRendererProps } from './CoreContainerRendererProps';
7
7
  import { DateInputRendererProps } from './DateInputRendererProps';
8
8
  import { DecisionRendererProps } from './DecisionRendererProps';
9
9
  import { DividerRendererProps } from './DividerRendererProps';
10
+ import { ExternalConfirmationRendererProps } from './ExternalConfirmationRendererProps';
10
11
  import { FormRendererProps } from './FormRendererProps';
11
12
  import { HeadingRendererProps } from './HeadingRendererProps';
12
13
  import { HiddenRendererProps } from './HiddenRendererProps';
@@ -16,6 +17,7 @@ import { IntegerInputRendererProps } from './IntegerInputRendererProps';
16
17
  import { ListRendererProps } from './ListRendererProps';
17
18
  import { LoadingIndicatorRendererProps } from './LoadingIndicatorRendererProps';
18
19
  import { MarkdownRendererProps } from './MarkdownRendererProps';
20
+ import { ModalContentRendererProps } from './ModalContentRendererProps';
19
21
  import { ModalRendererProps } from './ModalRendererProps';
20
22
  import { MultiSelectInputRendererProps } from './MultiSelectInputRendererProps';
21
23
  import { MultiUploadInputRendererProps } from './MultiUploadInputRendererProps';
@@ -31,7 +33,7 @@ import { StatusListRendererProps } from './StatusListRendererProps';
31
33
  import { AnalyticsEventDispatcher, LoadingState, StepRendererProps } from './StepRendererProps';
32
34
  import { TextInputRendererProps } from './TextInputRendererProps';
33
35
  import { UploadInputRendererProps } from './UploadInputRendererProps';
34
- export type RendererProps = AlertRendererProps | CheckboxInputRendererProps | BoxRendererProps | ButtonRendererProps | ColumnsRendererProps | CoreContainerRendererProps | DateInputRendererProps | DecisionRendererProps | DividerRendererProps | FormRendererProps | HeadingRendererProps | HiddenRendererProps | ImageRendererProps | InstructionsRendererProps | IntegerInputRendererProps | ListRendererProps | LoadingIndicatorRendererProps | MarkdownRendererProps | ModalRendererProps | MultiSelectInputRendererProps | MultiUploadInputRendererProps | NumberInputRendererProps | ParagraphRendererProps | RepeatableRendererProps | ReviewRendererProps | RootRendererProps | SearchRendererProps | SectionRendererProps | SelectInputRendererProps | StatusListRendererProps | StepRendererProps | TextInputRendererProps | UploadInputRendererProps;
36
+ export type RendererProps = AlertRendererProps | CheckboxInputRendererProps | BoxRendererProps | ButtonRendererProps | ColumnsRendererProps | CoreContainerRendererProps | DateInputRendererProps | DecisionRendererProps | DividerRendererProps | ExternalConfirmationRendererProps | FormRendererProps | HeadingRendererProps | HiddenRendererProps | ImageRendererProps | InstructionsRendererProps | IntegerInputRendererProps | ListRendererProps | LoadingIndicatorRendererProps | MarkdownRendererProps | ModalRendererProps | ModalContentRendererProps | MultiSelectInputRendererProps | MultiUploadInputRendererProps | NumberInputRendererProps | ParagraphRendererProps | RepeatableRendererProps | ReviewRendererProps | RootRendererProps | SearchRendererProps | SectionRendererProps | SelectInputRendererProps | StatusListRendererProps | StepRendererProps | TextInputRendererProps | UploadInputRendererProps;
35
37
  export type Renderer<P extends RendererProps> = {
36
38
  canRenderType: P['type'];
37
39
  canRender?: (props: P) => boolean;
@@ -41,7 +43,7 @@ export type RendererContext = {
41
43
  render: RenderFunction;
42
44
  };
43
45
  export type RenderFunction = (props: RendererProps | null) => JSX.Element | null;
44
- export type Renderers = readonly (Renderer<StepRendererProps> | Renderer<CoreContainerRendererProps> | Renderer<AlertRendererProps> | Renderer<BoxRendererProps> | Renderer<ColumnsRendererProps> | Renderer<DecisionRendererProps> | Renderer<DividerRendererProps> | Renderer<FormRendererProps> | Renderer<HeadingRendererProps> | Renderer<InstructionsRendererProps> | Renderer<ListRendererProps> | Renderer<LoadingIndicatorRendererProps> | Renderer<MarkdownRendererProps> | Renderer<ImageRendererProps> | Renderer<ModalRendererProps> | Renderer<ParagraphRendererProps> | Renderer<ReviewRendererProps> | Renderer<SearchRendererProps> | Renderer<StatusListRendererProps> | Renderer<CheckboxInputRendererProps> | Renderer<ButtonRendererProps> | Renderer<DateInputRendererProps> | Renderer<HiddenRendererProps> | Renderer<IntegerInputRendererProps> | Renderer<NumberInputRendererProps> | Renderer<RepeatableRendererProps> | Renderer<RootRendererProps> | Renderer<SectionRendererProps> | Renderer<SelectInputRendererProps> | Renderer<MultiSelectInputRendererProps> | Renderer<TextInputRendererProps> | Renderer<UploadInputRendererProps> | Renderer<MultiUploadInputRendererProps>)[];
46
+ export type Renderers = readonly (Renderer<StepRendererProps> | Renderer<CoreContainerRendererProps> | Renderer<AlertRendererProps> | Renderer<BoxRendererProps> | Renderer<ColumnsRendererProps> | Renderer<DecisionRendererProps> | Renderer<DividerRendererProps> | Renderer<ExternalConfirmationRendererProps> | Renderer<FormRendererProps> | Renderer<HeadingRendererProps> | Renderer<InstructionsRendererProps> | Renderer<ListRendererProps> | Renderer<LoadingIndicatorRendererProps> | Renderer<MarkdownRendererProps> | Renderer<ImageRendererProps> | Renderer<ModalRendererProps> | Renderer<ModalContentRendererProps> | Renderer<ParagraphRendererProps> | Renderer<ReviewRendererProps> | Renderer<SearchRendererProps> | Renderer<StatusListRendererProps> | Renderer<CheckboxInputRendererProps> | Renderer<ButtonRendererProps> | Renderer<DateInputRendererProps> | Renderer<HiddenRendererProps> | Renderer<IntegerInputRendererProps> | Renderer<NumberInputRendererProps> | Renderer<RepeatableRendererProps> | Renderer<RootRendererProps> | Renderer<SectionRendererProps> | Renderer<SelectInputRendererProps> | Renderer<MultiSelectInputRendererProps> | Renderer<TextInputRendererProps> | Renderer<UploadInputRendererProps> | Renderer<MultiUploadInputRendererProps>)[];
45
47
  export type BaseRendererProps = {
46
48
  uid: string;
47
49
  render: RenderFunction;
@@ -1,4 +1,6 @@
1
- import { Margin } from './constants';
1
+ import { AdditionalInfo, InlineAlert, Margin } from './constants';
2
+ import { Icon } from './Icon';
3
+ import { Image } from './Image';
2
4
  import { BaseRendererProps } from './RendererProps';
3
5
  export type ReviewRendererProps = BaseRendererProps & {
4
6
  type: 'review';
@@ -14,6 +16,16 @@ export type ReviewField = {
14
16
  value: string;
15
17
  rawValue?: string;
16
18
  tag?: string;
19
+ /** @experimental This feature may be changed in the future without notice. */
20
+ additionalInfo?: AdditionalInfo;
21
+ /** @experimental This feature may be changed in the future without notice. */
22
+ inlineAlert?: InlineAlert;
23
+ /** @experimental This feature may be changed in the future without notice. */
24
+ callToAction?: ReviewCallToAction;
25
+ /** @experimental This feature may be changed in the future without notice. */
26
+ icon?: Icon;
27
+ /** @experimental This feature may be changed in the future without notice. */
28
+ image?: Image;
17
29
  };
18
30
  export type ReviewCallToAction = {
19
31
  accessibilityDescription?: string;
@@ -1,6 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
- import { RendererProps } from './RendererProps';
3
- export type RootRendererProps = {
2
+ import { BaseRendererProps, RendererProps } from './RendererProps';
3
+ export type RootRendererProps = BaseRendererProps & {
4
4
  type: 'root';
5
5
  uid: string;
6
6
  children: ReactNode;
@@ -2,3 +2,16 @@ export type Align = 'start' | 'center' | 'end';
2
2
  export type Autocapitalization = 'none' | 'sentences' | 'words' | 'characters';
3
3
  export type Context = 'positive' | 'negative' | 'warning' | 'neutral';
4
4
  export type { Margin, Size } from '../next';
5
+ export type AdditionalInfo = {
6
+ text: string;
7
+ accessibilityDescription?: string;
8
+ onClick?: () => void;
9
+ };
10
+ export type InlineAlert = {
11
+ content: string;
12
+ context?: Context;
13
+ };
14
+ export type SupportingValues = {
15
+ value?: string;
16
+ subvalue?: string;
17
+ };
@@ -1,38 +1,40 @@
1
- export type { AlertRendererProps, AlertCallToAction, AlertCallToActionLink, } from './AlertRendererProps';
2
- export type { CheckboxInputRendererProps } from './CheckboxInputRendererProps';
1
+ export type { AlertCallToAction, AlertRendererProps } from './AlertRendererProps';
3
2
  export type { BoxRendererProps } from './BoxRendererProps';
4
3
  export type { ButtonRendererProps } from './ButtonRendererProps';
4
+ export type { CheckboxInputRendererProps } from './CheckboxInputRendererProps';
5
5
  export type { ColumnsRendererProps } from './ColumnsRendererProps';
6
6
  export type { CoreContainerRendererProps } from './CoreContainerRendererProps';
7
7
  export type { DateInputRendererProps } from './DateInputRendererProps';
8
- export type { DecisionRendererProps, DecisionOption } from './DecisionRendererProps';
8
+ export type { DecisionOption, DecisionRendererProps } from './DecisionRendererProps';
9
9
  export type { DividerRendererProps } from './DividerRendererProps';
10
+ export type { ExternalConfirmationRendererProps } from './ExternalConfirmationRendererProps';
10
11
  export type { FormRendererProps } from './FormRendererProps';
11
- export type { SectionRendererProps } from './SectionRendererProps';
12
12
  export type { HeadingRendererProps } from './HeadingRendererProps';
13
13
  export type { HiddenRendererProps } from './HiddenRendererProps';
14
14
  export type { ImageRendererProps } from './ImageRendererProps';
15
- export type { InstructionsRendererProps, InstructionItem } from './InstructionsRendererProps';
15
+ export type { InstructionItem, InstructionsRendererProps } from './InstructionsRendererProps';
16
16
  export type { IntegerInputRendererProps } from './IntegerInputRendererProps';
17
17
  export type { ListRendererProps } from './ListRendererProps';
18
18
  export type { LoadingIndicatorRendererProps } from './LoadingIndicatorRendererProps';
19
19
  export type { MarkdownRendererProps } from './MarkdownRendererProps';
20
+ export type { ModalContentRendererProps } from './ModalContentRendererProps';
20
21
  export type { ModalRendererProps } from './ModalRendererProps';
21
22
  export type { MultiSelectInputRendererProps } from './MultiSelectInputRendererProps';
22
23
  export type { MultiUploadInputRendererProps } from './MultiUploadInputRendererProps';
23
24
  export type { NumberInputRendererProps } from './NumberInputRendererProps';
24
25
  export type { ParagraphRendererProps } from './ParagraphRendererProps';
25
- export type { RepeatableRendererProps, RepeatableItemRendererProps, } from './RepeatableRendererProps';
26
- export type { ReviewRendererProps, ReviewField, ReviewCallToAction } from './ReviewRendererProps';
26
+ export type { RepeatableItemRendererProps, RepeatableRendererProps } from './RepeatableRendererProps';
27
+ export type { ReviewCallToAction, ReviewField, ReviewRendererProps } from './ReviewRendererProps';
27
28
  export type { RootRendererProps } from './RootRendererProps';
28
- export type { SearchRendererProps, SearchResult, SearchState, ErrorSearchState, PendingSearchState, NoResultsSearchState, ResultsSearchState, } from './SearchRendererProps';
29
- export type { SelectInputRendererProps, SelectInputRendererOption, } from './SelectInputRendererProps';
30
- export type { StatusListRendererProps, StatusListItem, StatusListItemCallToAction, StatusListItemStatus, } from './StatusListRendererProps';
31
- export type { StepRendererProps, AnalyticsEventDispatcher, LoadingState, } from './StepRendererProps';
29
+ export type { ErrorSearchState, NoResultsSearchState, PendingSearchState, ResultsSearchState, SearchRendererProps, SearchResult, SearchState } from './SearchRendererProps';
30
+ export type { SectionRendererProps } from './SectionRendererProps';
31
+ export type { SelectInputRendererOption, SelectInputRendererProps } from './SelectInputRendererProps';
32
+ export type { StatusListItem, StatusListItemCallToAction, StatusListItemStatus, StatusListRendererProps } from './StatusListRendererProps';
33
+ export type { AnalyticsEventDispatcher, LoadingState, StepRendererProps } from './StepRendererProps';
32
34
  export type { TextInputRendererProps } from './TextInputRendererProps';
33
35
  export type { UploadInputRendererProps } from './UploadInputRendererProps';
34
36
  export type { ValidationResult } from './BaseInputRendererProps';
35
37
  export type { Align, Context, Margin, Size } from './constants';
36
38
  export type { Icon } from './Icon';
37
39
  export type { Image } from './Image';
38
- export type { RenderFunction, RendererProps, Renderers, Renderer } from './RendererProps';
40
+ export type { Renderer, RendererProps, Renderers, RenderFunction } from './RendererProps';