@khanacademy/wonder-blocks-form 3.1.4 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +0 -3
- package/package.json +1 -1
- package/src/components/checkbox-group.js +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -123,19 +123,16 @@ function _extends() {
|
|
|
123
123
|
module.exports = _extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
124
124
|
for (var i = 1; i < arguments.length; i++) {
|
|
125
125
|
var source = arguments[i];
|
|
126
|
-
|
|
127
126
|
for (var key in source) {
|
|
128
127
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
129
128
|
target[key] = source[key];
|
|
130
129
|
}
|
|
131
130
|
}
|
|
132
131
|
}
|
|
133
|
-
|
|
134
132
|
return target;
|
|
135
133
|
}, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
136
134
|
return _extends.apply(this, arguments);
|
|
137
135
|
}
|
|
138
|
-
|
|
139
136
|
module.exports = _extends, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
140
137
|
|
|
141
138
|
/***/ }),
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@ type CheckboxGroupProps = {|
|
|
|
40
40
|
* error state, along with this error message. If no error state is desired,
|
|
41
41
|
* simply do not supply this prop, or pass along null.
|
|
42
42
|
*/
|
|
43
|
-
errorMessage?: string,
|
|
43
|
+
errorMessage?: ?string,
|
|
44
44
|
|
|
45
45
|
/**
|
|
46
46
|
* Custom styling for this group of checkboxes.
|