@onesy/ui-react 1.0.10 → 1.0.11
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.
@@ -29,7 +29,9 @@ const useStyle = (0, style_react_1.style)(theme => ({
|
|
29
29
|
overflow: 'auto hidden',
|
30
30
|
padding: '0px 16px 24px',
|
31
31
|
},
|
32
|
-
reviews: {
|
32
|
+
reviews: {
|
33
|
+
maxWidth: '100%'
|
34
|
+
},
|
33
35
|
review: {
|
34
36
|
background: theme.palette.background.primary.secondary,
|
35
37
|
boxShadow: '0px 4px 32px 0px rgba(0, 0, 0, 0.024)'
|
@@ -71,14 +73,14 @@ const Element = react_1.default.forwardRef((props_, ref) => {
|
|
71
73
|
ref.current = item;
|
72
74
|
}
|
73
75
|
refs.root.current = item;
|
74
|
-
}, align: '
|
76
|
+
}, align: 'center', fullWidth: true, className: (0, style_react_1.classNames)([
|
75
77
|
(0, utils_2.staticClassName)('SectionReviews', theme) && [
|
76
78
|
'onesy-SectionReviews-root',
|
77
79
|
`onesy-SectionReviews-size-${size}`
|
78
80
|
],
|
79
81
|
className,
|
80
82
|
classes.root
|
81
|
-
]) }, other, { children: (0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 2, direction: 'row', justify: '
|
83
|
+
]) }, other, { children: (0, jsx_runtime_1.jsx)(Line, Object.assign({ gap: 2, direction: 'row', justify: 'flex-start', align: 'flex-start' }, ReviewsProps, { className: (0, style_react_1.classNames)([
|
82
84
|
(0, utils_2.staticClassName)('SectionReviews', theme) && [
|
83
85
|
'onesy-SectionReviews-reviews'
|
84
86
|
],
|
@@ -18,7 +18,9 @@ const useStyle = styleMethod(theme => ({
|
|
18
18
|
overflow: 'auto hidden',
|
19
19
|
padding: '0px 16px 24px'
|
20
20
|
},
|
21
|
-
reviews: {
|
21
|
+
reviews: {
|
22
|
+
maxWidth: '100%'
|
23
|
+
},
|
22
24
|
review: {
|
23
25
|
background: theme.palette.background.primary.secondary,
|
24
26
|
boxShadow: '0px 4px 32px 0px rgba(0, 0, 0, 0.024)'
|
@@ -76,13 +78,13 @@ const Element = /*#__PURE__*/React.forwardRef((props_, ref) => {
|
|
76
78
|
}
|
77
79
|
refs.root.current = item;
|
78
80
|
},
|
79
|
-
align: "
|
81
|
+
align: "center",
|
80
82
|
fullWidth: true,
|
81
83
|
className: classNames([staticClassName('SectionReviews', theme) && ['onesy-SectionReviews-root', `onesy-SectionReviews-size-${size}`], className, classes.root])
|
82
84
|
}, other), /*#__PURE__*/React.createElement(Line, _extends({
|
83
85
|
gap: 2,
|
84
86
|
direction: "row",
|
85
|
-
justify: "
|
87
|
+
justify: "flex-start",
|
86
88
|
align: "flex-start"
|
87
89
|
}, ReviewsProps, {
|
88
90
|
className: classNames([staticClassName('SectionReviews', theme) && ['onesy-SectionReviews-reviews'], ReviewsProps?.className, classes.reviews])
|
package/esm/index.js
CHANGED