react-frontend-common-components 0.0.44 → 0.0.46
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.ts +2 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/app-image-box/app-image-box.css +1 -2
- package/src/components/app-input/app-input.css +2 -2
- package/src/components/app-modal/app-modal.tsx +3 -0
- package/src/components/app-password-input/app-password-input.css +2 -2
- package/src/components/app-select/app-select.css +2 -2
- package/src/components/over-view-card/over-view-card.css +1 -2
package/dist/index.d.ts
CHANGED
@@ -191,8 +191,9 @@ interface AppModalProps {
|
|
191
191
|
alignTitleLeft?: boolean;
|
192
192
|
className?: string;
|
193
193
|
closeIcon?: React$1.ReactNode;
|
194
|
+
width?: number;
|
194
195
|
}
|
195
|
-
declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, }: AppModalProps) => react_jsx_runtime.JSX.Element;
|
196
|
+
declare const AppModal: ({ visible, onClose, title, description, children, footerButtons, alignTitleLeft, className, closeIcon, width, }: AppModalProps) => react_jsx_runtime.JSX.Element;
|
196
197
|
|
197
198
|
interface AppOtpFieldProps {
|
198
199
|
otp: string;
|