diff --git a/.vscode/settings.json b/.vscode/settings.json index 80336f9..0eb8fc3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -10,6 +10,7 @@ "npmlist", "Parens", "postbody", + "previewable", "tsbuildinfo", "vbscript" ], diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8b0a938 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +## Chores + +- **release:** + - 0.1.2 ([768f840f](https://github.com/shu-vro/CrudMan/commit/768f840f60b4d96de5bfbb23061a9dcb102f266a)) + - 0.1.1 ([9ad5a29d](https://github.com/shu-vro/CrudMan/commit/9ad5a29d4f1d622067761085a8ad36cfabb46e6b)) + +### v0.1.1 + +## What's Changed + +- Fixed #12 by @shu-vro in https://github.com/shu-vro/CrudMan/pull/13 +- Issue fixer#14 by @shu-vro in https://github.com/shu-vro/CrudMan/pull/15 +- Issue fixer#14 by @shu-vro in https://github.com/shu-vro/CrudMan/pull/16 +- Merge by @shu-vro in https://github.com/shu-vro/CrudMan/pull/17 +- Merge pull request #17 from shu-vro/main by @shu-vro in https://github.com/shu-vro/CrudMan/pull/18 +- Updated `authslide` pane view by @shu-vro in https://github.com/shu-vro/CrudMan/pull/19 +- Merging changes to issueixer#14 by @shu-vro in https://github.com/shu-vro/CrudMan/pull/20 +- fixed #21 by @shu-vro in https://github.com/shu-vro/CrudMan/pull/22 +- Issue Fixed #14. by @shu-vro in https://github.com/shu-vro/CrudMan/pull/24 + +**Full Changelog**: https://github.com/shu-vro/CrudMan/compare/v0.1.0...v0.1.1 + +### v0.1.0 (2022-07-18) + +## What's Changed + +- Create CODE_OF_CONDUCT.md by @shu-vro in https://github.com/shu-vro/CrudMan/pull/6 +- Create LICENSE by @shu-vro in https://github.com/shu-vro/CrudMan/pull/10 + +## New Contributors + +- @shu-vro made their first contribution in https://github.com/shu-vro/CrudMan/pull/6 + +**Full Changelog**: https://github.com/shu-vro/CrudMan/commits/v0.1.0 diff --git a/components/Checkbox.tsx b/components/Checkbox.tsx index c4d02d9..e5bcd8f 100644 --- a/components/Checkbox.tsx +++ b/components/Checkbox.tsx @@ -2,7 +2,12 @@ import { useEffect, useState } from "react"; import { v4 } from "uuid"; import styles from "@styles/Checkbox.module.scss"; -export default function Checkbox({ label = "", ...rest }) { +export default function Checkbox({ + label = "", + type = "checkbox", + Ref = null, + ...rest +}) { const [id, setId] = useState(v4()); useEffect(() => { setId(prev => prev); @@ -11,7 +16,7 @@ export default function Checkbox({ label = "", ...rest }) { return ( <>