@codezee/sixtify-brahma 0.2.315 → 0.2.316
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/package.json +1 -1
- package/packages/shared-components/dist/Drawer/SideDrawer/SideDrawer.d.ts +15 -0
- package/packages/shared-components/dist/Drawer/SideDrawer/SideDrawer.d.ts.map +1 -0
- package/packages/shared-components/dist/Drawer/SideDrawer/index.d.ts +2 -0
- package/packages/shared-components/dist/Drawer/SideDrawer/index.d.ts.map +1 -0
- package/packages/shared-components/dist/Drawer/index.d.ts +1 -0
- package/packages/shared-components/dist/Drawer/index.d.ts.map +1 -1
- package/packages/shared-components/dist/index.cjs.js +1 -1
- package/packages/shared-components/dist/index.cjs.js.map +1 -1
- package/packages/shared-components/dist/index.esm.js +1 -1
- package/packages/shared-components/dist/index.esm.js.map +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { DrawerProps as MuiDrawerProps } from "@mui/material/Drawer";
|
|
2
|
+
import type { PropsWithChildren, ReactNode } from "react";
|
|
3
|
+
export type SideDrawerProps = PropsWithChildren<Omit<MuiDrawerProps, "title" | "anchor"> & {
|
|
4
|
+
title?: string;
|
|
5
|
+
actions?: ReactNode;
|
|
6
|
+
headerSlot?: ReactNode;
|
|
7
|
+
isHideHeader?: boolean;
|
|
8
|
+
isHideFooter?: boolean;
|
|
9
|
+
isHideCloseIcon?: boolean;
|
|
10
|
+
isHideDividers?: boolean;
|
|
11
|
+
disableEscapeKeyDown?: boolean;
|
|
12
|
+
anchor?: "left" | "right";
|
|
13
|
+
}>;
|
|
14
|
+
export declare const SideDrawer: ({ title, children, onClose, actions, headerSlot, isHideHeader, isHideFooter, isHideCloseIcon, isHideDividers, disableEscapeKeyDown, anchor, sx, ModalProps, ...props }: SideDrawerProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
//# sourceMappingURL=SideDrawer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SideDrawer.d.ts","sourceRoot":"","sources":["../../../src/Drawer/SideDrawer/SideDrawer.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,WAAW,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAC1E,OAAO,KAAK,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE1D,MAAM,MAAM,eAAe,GAAG,iBAAiB,CAC7C,IAAI,CAAC,cAAc,EAAE,OAAO,GAAG,QAAQ,CAAC,GAAG;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CAC3B,CACF,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,wKAexB,eAAe,4CA0EjB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Drawer/SideDrawer/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Drawer/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Drawer/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC"}
|