@matteoaliano/forest-ui 0.5.1 → 0.5.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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/skills/forest-agency/SKILL.md +1 -1
- package/skills/forest-agency/references/components.md +1 -1
- package/skills/forest-agency/references/patterns.md +79 -0
- package/skills/forest-alkemy-plus/SKILL.md +1 -1
- package/skills/forest-alkemy-plus/references/components.md +1 -1
- package/skills/forest-alkemy-plus/references/patterns.md +79 -0
- package/skills/forest-external/SKILL.md +1 -1
- package/skills/forest-external/references/components.md +1 -1
- package/skills/forest-external/references/patterns.md +79 -0
- package/skills/forest-internal/SKILL.md +1 -1
- package/skills/forest-internal/references/components.md +1 -1
- package/skills/forest-internal/references/patterns.md +79 -0
package/dist/index.mjs
CHANGED
|
@@ -798,8 +798,8 @@ function CardActionArea(props) {
|
|
|
798
798
|
import MuiDrawer from "@mui/material/Drawer";
|
|
799
799
|
import MuiSwipeableDrawer from "@mui/material/SwipeableDrawer";
|
|
800
800
|
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
801
|
-
function Drawer(props) {
|
|
802
|
-
return /* @__PURE__ */ jsx38(MuiDrawer, { ...props });
|
|
801
|
+
function Drawer({ anchor = "right", hideBackdrop = true, ...props }) {
|
|
802
|
+
return /* @__PURE__ */ jsx38(MuiDrawer, { anchor, hideBackdrop, ...props });
|
|
803
803
|
}
|
|
804
804
|
function SwipeableDrawer(props) {
|
|
805
805
|
return /* @__PURE__ */ jsx38(MuiSwipeableDrawer, { ...props });
|