@superdispatch/ui 0.27.0 → 0.29.0
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-node/index.js +28 -18
- package/dist-node/index.js.map +1 -1
- package/dist-src/drawer/DrawerTitle.js +28 -18
- package/dist-web/index.js +28 -18
- package/dist-web/index.js.map +1 -1
- package/package.json +3 -3
package/dist-node/index.js
CHANGED
|
@@ -1467,30 +1467,40 @@ var DrawerTitle = /*#__PURE__*/React.forwardRef((_ref, appBarRef) => {
|
|
|
1467
1467
|
className: styles.toolbar,
|
|
1468
1468
|
children: /*#__PURE__*/jsxRuntime.jsxs(core.Grid, {
|
|
1469
1469
|
container: true,
|
|
1470
|
-
|
|
1471
|
-
children: [
|
|
1470
|
+
direction: "column",
|
|
1471
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1472
1472
|
item: true,
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1473
|
+
children: /*#__PURE__*/jsxRuntime.jsxs(core.Grid, {
|
|
1474
|
+
container: true,
|
|
1475
|
+
alignItems: "center",
|
|
1476
|
+
children: [!!startAction && /*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1477
|
+
item: true,
|
|
1478
|
+
className: styles.startAction,
|
|
1479
|
+
children: startAction
|
|
1480
|
+
}), /*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1481
|
+
item: true,
|
|
1482
|
+
xs: true,
|
|
1483
|
+
zeroMinWidth: true,
|
|
1484
|
+
children: /*#__PURE__*/jsxRuntime.jsx(core.Typography, _objectSpread(_objectSpread({
|
|
1485
|
+
variant: "h3",
|
|
1486
|
+
noWrap: true
|
|
1487
|
+
}, titleTypographyProps), {}, {
|
|
1488
|
+
children: title
|
|
1489
|
+
}))
|
|
1490
|
+
}), !!endAction && /*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1491
|
+
item: true,
|
|
1492
|
+
className: styles.endAction,
|
|
1493
|
+
children: endAction
|
|
1494
|
+
})]
|
|
1495
|
+
})
|
|
1496
|
+
}), /*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1476
1497
|
item: true,
|
|
1477
|
-
|
|
1478
|
-
zeroMinWidth: true,
|
|
1479
|
-
children: [/*#__PURE__*/jsxRuntime.jsx(core.Typography, _objectSpread(_objectSpread({
|
|
1480
|
-
variant: "h3",
|
|
1481
|
-
noWrap: true
|
|
1482
|
-
}, titleTypographyProps), {}, {
|
|
1483
|
-
children: title
|
|
1484
|
-
})), !!subtitle && /*#__PURE__*/jsxRuntime.jsx(core.Typography, _objectSpread(_objectSpread({
|
|
1498
|
+
children: !!subtitle && /*#__PURE__*/jsxRuntime.jsx(core.Typography, _objectSpread(_objectSpread({
|
|
1485
1499
|
variant: "body2",
|
|
1486
1500
|
noWrap: true
|
|
1487
1501
|
}, subtitleTypographyProps), {}, {
|
|
1488
1502
|
children: subtitle
|
|
1489
|
-
}))
|
|
1490
|
-
}), !!endAction && /*#__PURE__*/jsxRuntime.jsx(core.Grid, {
|
|
1491
|
-
item: true,
|
|
1492
|
-
className: styles.endAction,
|
|
1493
|
-
children: endAction
|
|
1503
|
+
}))
|
|
1494
1504
|
})]
|
|
1495
1505
|
})
|
|
1496
1506
|
})
|