@wise/dynamic-flow-client 3.15.0 → 3.15.1
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/main.mjs
CHANGED
|
@@ -1528,10 +1528,11 @@ var dateInputComponentToProps = (component) => __spreadProps(__spreadValues({},
|
|
|
1528
1528
|
|
|
1529
1529
|
// src/revamp/renderers/mappers/decisionComponentToProps.ts
|
|
1530
1530
|
var decisionComponentToProps = ({
|
|
1531
|
+
control,
|
|
1531
1532
|
options,
|
|
1532
1533
|
margin,
|
|
1533
1534
|
title
|
|
1534
|
-
}) => ({ type: "decision", options, margin, title });
|
|
1535
|
+
}) => ({ type: "decision", control, options, margin, title });
|
|
1535
1536
|
|
|
1536
1537
|
// src/revamp/renderers/mappers/dividerComponentToProps.ts
|
|
1537
1538
|
var dividerComponentToProps = ({
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { DecisionComponent } from '../../domain/components/DecisionComponent';
|
|
2
2
|
import type { DecisionRendererProps } from '@wise/dynamic-flow-renderers';
|
|
3
|
-
export declare const decisionComponentToProps: ({ options, margin, title, }: DecisionComponent) => DecisionRendererProps;
|
|
3
|
+
export declare const decisionComponentToProps: ({ control, options, margin, title, }: DecisionComponent) => DecisionRendererProps;
|