umwd-components 0.1.78 → 0.1.79
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.
|
@@ -54,7 +54,7 @@ function FleetSection(_ref) {
|
|
|
54
54
|
}, /*#__PURE__*/React.createElement(material.Paper, {
|
|
55
55
|
sx: {
|
|
56
56
|
p: 1,
|
|
57
|
-
py: "
|
|
57
|
+
py: "4rem",
|
|
58
58
|
position: "relative",
|
|
59
59
|
display: "grid",
|
|
60
60
|
alignItems: "center",
|
|
@@ -86,7 +86,9 @@ function FleetSection(_ref) {
|
|
|
86
86
|
sx: {}
|
|
87
87
|
}, /*#__PURE__*/React.createElement(material.Stack, {
|
|
88
88
|
direction: "row",
|
|
89
|
-
spacing: 1
|
|
89
|
+
spacing: 1,
|
|
90
|
+
flexWrap: "wrap",
|
|
91
|
+
useFlexGap: true
|
|
90
92
|
}, /*#__PURE__*/React.createElement(material.Chip, {
|
|
91
93
|
label: "Range: ".concat(airplane.range, " km"),
|
|
92
94
|
variant: "filled",
|
|
@@ -52,7 +52,7 @@ function FleetSection(_ref) {
|
|
|
52
52
|
}, /*#__PURE__*/React.createElement(Paper, {
|
|
53
53
|
sx: {
|
|
54
54
|
p: 1,
|
|
55
|
-
py: "
|
|
55
|
+
py: "4rem",
|
|
56
56
|
position: "relative",
|
|
57
57
|
display: "grid",
|
|
58
58
|
alignItems: "center",
|
|
@@ -84,7 +84,9 @@ function FleetSection(_ref) {
|
|
|
84
84
|
sx: {}
|
|
85
85
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
86
86
|
direction: "row",
|
|
87
|
-
spacing: 1
|
|
87
|
+
spacing: 1,
|
|
88
|
+
flexWrap: "wrap",
|
|
89
|
+
useFlexGap: true
|
|
88
90
|
}, /*#__PURE__*/React.createElement(Chip, {
|
|
89
91
|
label: "Range: ".concat(airplane.range, " km"),
|
|
90
92
|
variant: "filled",
|
package/package.json
CHANGED
|
@@ -82,7 +82,7 @@ export function FleetSection({ data }: { readonly data: FleetSectionProps }) {
|
|
|
82
82
|
<Paper
|
|
83
83
|
sx={{
|
|
84
84
|
p: 1,
|
|
85
|
-
py: "
|
|
85
|
+
py: "4rem",
|
|
86
86
|
position: "relative",
|
|
87
87
|
display: "grid",
|
|
88
88
|
alignItems: "center",
|
|
@@ -121,7 +121,12 @@ export function FleetSection({ data }: { readonly data: FleetSectionProps }) {
|
|
|
121
121
|
</Paper>
|
|
122
122
|
</CardMedia>
|
|
123
123
|
<CardContent sx={{}}>
|
|
124
|
-
<Stack
|
|
124
|
+
<Stack
|
|
125
|
+
direction="row"
|
|
126
|
+
spacing={1}
|
|
127
|
+
flexWrap="wrap"
|
|
128
|
+
useFlexGap={true}
|
|
129
|
+
>
|
|
125
130
|
<Chip
|
|
126
131
|
label={`Range: ${airplane.range} km`}
|
|
127
132
|
variant="filled"
|