pillardash-ui-react 0.1.100 → 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 +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ interface FileViewProps {
|
|
|
116
116
|
}
|
|
117
117
|
declare const FileView: React$1.FC<FileViewProps>;
|
|
118
118
|
|
|
119
|
-
interface FileUploadProps {
|
|
119
|
+
interface FileUploadProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange"> {
|
|
120
120
|
onFileChange: (files: File[] | null) => void;
|
|
121
121
|
existingFiles?: FileItem[];
|
|
122
122
|
direction?: "row" | "col";
|
|
@@ -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;
|