We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec73097 commit 7ec5dacCopy full SHA for 7ec5dac
.jest.js
@@ -2,7 +2,7 @@ const libDir = process.env.LIB_DIR;
2
3
const transformIgnorePatterns = [
4
'/dist/',
5
- 'node_modules/[^/]+?/(?!(es|node_modules)/)', // Ignore modules without es dir
+ // 'node_modules/[^/]+?/(?!(es|node_modules)/)', // Ignore modules without es dir
6
];
7
8
module.exports = {
components/checkbox/Checkbox.jsx
@@ -23,6 +23,8 @@ export default {
23
indeterminate: PropTypes.bool,
24
type: PropTypes.string.def('checkbox'),
25
autofocus: PropTypes.bool,
26
+ onChange: PropTypes.func,
27
+ 'onUpdate:checked': PropTypes.func,
28
},
29
30
setup() {
0 commit comments