andoncloud-sdk 1.2.1 → 1.2.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/dist/andoncloud-sdk.js +4 -1
- package/dist/andoncloud-sdk.js.map +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -0
package/dist/andoncloud-sdk.js
CHANGED
|
@@ -3104,10 +3104,12 @@ var Header$1 = mobxReactLite.observer(Header);
|
|
|
3104
3104
|
var Container = function Container(_ref) {
|
|
3105
3105
|
var children = _ref.children,
|
|
3106
3106
|
headerProps = _ref.headerProps,
|
|
3107
|
+
styles = _ref.styles,
|
|
3107
3108
|
dataTestID = _ref["data-testid"];
|
|
3108
3109
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
3109
3110
|
display: "flex",
|
|
3110
3111
|
flexDirection: "column",
|
|
3112
|
+
sx: styles,
|
|
3111
3113
|
"data-testid": dataTestID || "ac-sdk-container"
|
|
3112
3114
|
}, /*#__PURE__*/React__default.createElement(Header$1, headerProps), children);
|
|
3113
3115
|
};
|
|
@@ -3133,7 +3135,8 @@ Container.propTypes = {
|
|
|
3133
3135
|
styles: propTypes.PropTypes.any
|
|
3134
3136
|
}),
|
|
3135
3137
|
styles: propTypes.PropTypes.any
|
|
3136
|
-
})
|
|
3138
|
+
}),
|
|
3139
|
+
styles: propTypes.PropTypes.any
|
|
3137
3140
|
};
|
|
3138
3141
|
Container.defaultProps = {
|
|
3139
3142
|
headerProps: {}
|