Skip to content

Commit

Permalink
chore: little polish and continue work on pr
Browse files Browse the repository at this point in the history
  • Loading branch information
YuJianghao committed Jun 7, 2024
1 parent 8ecad07 commit a563d8c
Show file tree
Hide file tree
Showing 5 changed files with 210 additions and 119 deletions.
283 changes: 192 additions & 91 deletions package-lock.json

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

13 changes: 3 additions & 10 deletions packages/carbon/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
{
"extends": [
"../../.eslintrc-typescript"
],
"plugins": [
"@typescript-eslint",
"jsx-a11y",
"react",
"import"
]
}
"extends": ["../../.eslintrc"],
"plugins": ["@typescript-eslint", "jsx-a11y", "react", "import"]
}
4 changes: 2 additions & 2 deletions packages/carbon/src/CheckboxWidget/CheckboxWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function CheckboxWidget<
const _onFocus = ({ target: { value } }: FocusEvent<HTMLInputElement | any>) => onFocus(id, value);

return (
<div>
<>
<style>
{`
.checkbox.cds--checkbox-wrapper--invalid>.cds--checkbox__validation-msg {
Expand Down Expand Up @@ -83,6 +83,6 @@ export default function CheckboxWidget<
registry={registry}
/>
)}
</div>
</>
);
}
Loading

0 comments on commit a563d8c

Please sign in to comment.