@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @khanacademy/wonder-blocks-form
2
2
 
3
+ ## 3.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - be4e4cd2: Allow maybe values for `errorMessage` prop on `CheckboxGroup`
8
+
3
9
  ## 3.1.4
4
10
 
5
11
  ### Patch Changes
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khanacademy/wonder-blocks-form",
3
- "version": "3.1.4",
3
+ "version": "3.1.5",
4
4
  "design": "v1",
5
5
  "description": "Form components for Wonder Blocks.",
6
6
  "main": "dist/index.js",
@@ -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.