react-frontend-common-components 0.0.95 → 0.0.96

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.
@@ -11,6 +11,7 @@ interface AppModalProps {
11
11
  className?: string;
12
12
  closeIcon?: React.ReactNode;
13
13
  width?: number;
14
+ centered?: boolean;
14
15
  }
15
- declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, width, }: AppModalProps) => import("react/jsx-runtime").JSX.Element;
16
+ declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, width, centered }: AppModalProps) => import("react/jsx-runtime").JSX.Element;
16
17
  export default AppModal;
package/dist/index.d.ts CHANGED
@@ -203,8 +203,9 @@ interface AppModalProps {
203
203
  className?: string;
204
204
  closeIcon?: React$1.ReactNode;
205
205
  width?: number;
206
+ centered?: boolean;
206
207
  }
207
- declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, width, }: AppModalProps) => react_jsx_runtime.JSX.Element;
208
+ declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, width, centered }: AppModalProps) => react_jsx_runtime.JSX.Element;
208
209
 
209
210
  interface AppOtpFieldProps {
210
211
  otp: string;