@transferwise/components 43.13.31 → 43.13.32-beta-4289998fce.8
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/es/no-polyfill/checkbox/Checkbox.js +1 -1
- package/build/es/no-polyfill/decision/Decision.js +5 -5
- package/build/es/no-polyfill/radio/Radio.js +1 -1
- package/build/es/no-polyfill/tabs/Tabs.js +1 -1
- package/build/es/polyfill/checkbox/Checkbox.js +1 -1
- package/build/es/polyfill/decision/Decision.js +5 -5
- package/build/es/polyfill/radio/Radio.js +1 -1
- package/build/es/polyfill/tabs/Tabs.js +1 -1
- package/build/main.css +1 -1
- package/build/styles/card/Card.css +1 -1
- package/build/styles/lab/pagination/Pagination.css +1 -1
- package/build/styles/main.css +1 -1
- package/build/types/decision/Decision.d.ts +4 -0
- package/build/umd/no-polyfill/main.js +1 -1
- package/build/umd/polyfill/main.js +1 -1
- package/package.json +4 -4
|
@@ -40,6 +40,10 @@ export interface DecisionProps {
|
|
|
40
40
|
* Display media in a circle in list presentation
|
|
41
41
|
*/
|
|
42
42
|
showMediaCircleInList?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* Sets navigation options to be aligned with the parent container
|
|
45
|
+
*/
|
|
46
|
+
isContainerAligned?: boolean;
|
|
43
47
|
}
|
|
44
48
|
|
|
45
49
|
declare const Decision: React.FC<DecisionProps>;
|