Skip to content

Commit

Permalink
πŸš€ release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rouftom committed Jan 8, 2023
1 parent 113c473 commit 738da25
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
8 changes: 4 additions & 4 deletions dist/index.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.esm.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/index.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.umd.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/types/FileAttachment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import { FileAttachmentProps } from "./index.types";
declare function FileAttachment(props: FileAttachmentProps): JSX.Element;
declare namespace FileAttachment {
var propTypes: {
size: PropTypes.Validator<string>;
size: PropTypes.Requireable<string>;
file: PropTypes.Requireable<object>;
index: PropTypes.Validator<number>;
disabled: PropTypes.Requireable<boolean>;
index: PropTypes.Validator<number>;
handleRemoveFile: PropTypes.Validator<(...args: any[]) => any>;
};
}
Expand Down
2 changes: 1 addition & 1 deletion dist/types/index.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { OverridableComponent } from "@mui/material/OverridableComponent";
import { PaperTypeMap } from "@mui/material/Paper/Paper";
export interface FileAttachmentProps {
/** size of the attachment */
size: string | object;
size: string;
/** file content of the attachment */
file: FileProps;
/** index of the attachment */
Expand Down
1 change: 1 addition & 0 deletions dist/types/react-app-env.in.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"isolatedModules": true, // Unconditionally emit imports for unresolved files
//"resolveJsonModule": true, // Include modules imported with .json extension
"noEmit": true, // Do not emit output (meaning do not compile code, only perform type checking)
"jsx": "react-jsx", // Support JSX in .tsx files
"jsx": "react", // Support JSX in .tsx files
"rootDir": "./src",
"sourceMap": true, // Generate corrresponding .map file
"declaration": true, // Generate corresponding .d.ts file
Expand Down

0 comments on commit 738da25

Please sign in to comment.