@adiba-banking-cloud/backoffice 0.0.53 → 0.0.54

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.
@@ -13122,15 +13122,15 @@ const SimpleModal = _ref => {
13122
13122
  } = _ref;
13123
13123
  _objectWithoutProperties(_ref, _excluded$1);
13124
13124
  return /*#__PURE__*/React.createElement(core.Stack, {
13125
- pt: "md",
13126
- gap: "lg"
13125
+ pt: "lg",
13126
+ gap: "xl"
13127
13127
  }, /*#__PURE__*/React.createElement(core.Stack, {
13128
13128
  align: "center",
13129
13129
  gap: "lg"
13130
13130
  }, /*#__PURE__*/React.createElement(core.Title, {
13131
13131
  order: 3,
13132
13132
  fw: 500,
13133
- h: 40
13133
+ lh: 40
13134
13134
  }, innerProps.title), /*#__PURE__*/React.createElement(React.Fragment, null, innerProps.modalBody)), /*#__PURE__*/React.createElement(core.Group, _extends({
13135
13135
  gap: "sm"
13136
13136
  }, innerProps === null || innerProps === void 0 ? void 0 : innerProps.groupProps, {
@@ -13101,15 +13101,15 @@ const SimpleModal = _ref => {
13101
13101
  } = _ref;
13102
13102
  _objectWithoutProperties(_ref, _excluded$1);
13103
13103
  return /*#__PURE__*/React.createElement(Stack, {
13104
- pt: "md",
13105
- gap: "lg"
13104
+ pt: "lg",
13105
+ gap: "xl"
13106
13106
  }, /*#__PURE__*/React.createElement(Stack, {
13107
13107
  align: "center",
13108
13108
  gap: "lg"
13109
13109
  }, /*#__PURE__*/React.createElement(Title, {
13110
13110
  order: 3,
13111
13111
  fw: 500,
13112
- h: 40
13112
+ lh: 40
13113
13113
  }, innerProps.title), /*#__PURE__*/React.createElement(React.Fragment, null, innerProps.modalBody)), /*#__PURE__*/React.createElement(Group, _extends({
13114
13114
  gap: "sm"
13115
13115
  }, innerProps === null || innerProps === void 0 ? void 0 : innerProps.groupProps, {
@@ -0,0 +1,2 @@
1
+ import { DrawerProps } from "./Drawer.types";
2
+ export declare const Drawer: ({ opened, onClose, position, size, title, page, }: DrawerProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ export interface DrawerProps {
2
+ opened: boolean;
3
+ onClose: () => void;
4
+ position: "left" | "right" | "top" | "bottom";
5
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | number;
6
+ title?: string;
7
+ page: React.ReactNode;
8
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adiba-banking-cloud/backoffice",
3
3
  "author": "TUROG Technologies",
4
- "version": "0.0.53",
4
+ "version": "0.0.54",
5
5
  "description": "An ADIBA component library for backoffice and dashboard applications",
6
6
  "license": "ISC",
7
7
  "main": "build/index.cjs.js",