Skip to content

Commit

Permalink
release(v0.0.6): chakra ui
Browse files Browse the repository at this point in the history
  • Loading branch information
igr-santos committed Sep 9, 2021
1 parent c217739 commit a598f5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/jsonforms/ChakraFieldTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const ChakraFieldTemplate = ({

if (options.cols) {
return (
<GridItem colSpan={options.cols}>
<GridItem colSpan={options.cols as any}>
{inside}
</GridItem>
)
Expand Down
2 changes: 1 addition & 1 deletion src/jsonforms/widgets/NormalizeInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const NormalizeInput: React.FC<NormalizeInputProps> = (props) => {
return (
<ChakraText
{...props}
onChange={(newValue) => {
onChange={(newValue: any) => {
let updated = newValue;
if (normalize) {
updated = normalize(newValue, value);
Expand Down

0 comments on commit a598f5b

Please sign in to comment.