@rolster/react-components 18.25.2 → 18.25.3
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/index.js +2 -2
- package/dist/es/index.js.map +1 -1
- package/dist/esm/components/organisms/BottomSheet/BottomSheet.d.ts +2 -2
- package/dist/esm/components/organisms/BottomSheet/BottomSheet.js +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -2443,7 +2443,7 @@ function RlsToolbar({ actions, children, subtitle }) {
|
|
|
2443
2443
|
return (jsxRuntimeExports.jsxs("div", { className: "rls-toolbar", children: [jsxRuntimeExports.jsxs("div", { className: "rls-toolbar__description", children: [children && jsxRuntimeExports.jsx("label", { className: "rls-toolbar__title", children: children }), subtitle && (jsxRuntimeExports.jsx("label", { className: "rls-toolbar__subtitle smalltext-semibold", children: subtitle }))] }), actions && (jsxRuntimeExports.jsx("div", { className: "rls-toolbar__actions", children: actions.map((action, index) => (jsxRuntimeExports.jsx("div", { children: action }, index))) }))] }));
|
|
2444
2444
|
}
|
|
2445
2445
|
|
|
2446
|
-
function
|
|
2446
|
+
function RlsBottomSheet({ children, className, onAutoClose, visible, rlsTheme }) {
|
|
2447
2447
|
const classNameSheet = require$$0.useMemo(() => {
|
|
2448
2448
|
return renderClassStatus('rls-bottom-sheet', { visible }, className);
|
|
2449
2449
|
}, [className, visible]);
|
|
@@ -3870,7 +3870,7 @@ exports.RlsApplication = RlsApplication;
|
|
|
3870
3870
|
exports.RlsAvatar = RlsAvatar;
|
|
3871
3871
|
exports.RlsBadge = RlsBadge;
|
|
3872
3872
|
exports.RlsBallot = RlsBallot;
|
|
3873
|
-
exports.
|
|
3873
|
+
exports.RlsBottomSheet = RlsBottomSheet;
|
|
3874
3874
|
exports.RlsBreadcrumb = RlsBreadcrumb;
|
|
3875
3875
|
exports.RlsButton = RlsButton;
|
|
3876
3876
|
exports.RlsButtonAction = RlsButtonAction;
|