pillardash-ui-react 0.1.101 → 0.1.102
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 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -344,8 +344,8 @@ interface ConfirmationPopupProps {
|
|
|
344
344
|
}
|
|
345
345
|
declare const ConfirmationAlert: React$1.FC<ConfirmationPopupProps>;
|
|
346
346
|
|
|
347
|
-
type ModalSize =
|
|
348
|
-
type ModalPosition =
|
|
347
|
+
type ModalSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "full";
|
|
348
|
+
type ModalPosition = "left" | "right" | "center";
|
|
349
349
|
interface ModalProps {
|
|
350
350
|
isOpen: boolean;
|
|
351
351
|
onClose: () => void;
|