@brightspace-ui/core 3.203.0 → 3.203.1

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.
@@ -1,6 +1,5 @@
1
1
 
2
2
  import { cssEscape } from '../../helpers/dom.js';
3
- import { getFlag } from '../../helpers/flags.js';
4
3
 
5
4
  const formElements = {
6
5
  button: true,
@@ -155,8 +154,7 @@ const _hasFormData = (node, submitter) => {
155
154
  }
156
155
  }
157
156
  if (tagName === 'd2l-input-checkbox') {
158
- const useFormElementMixin = getFlag('input-checkbox-form-element', true);
159
- if (!useFormElementMixin || !node.checked) {
157
+ if (!node.checked) {
160
158
  return false;
161
159
  }
162
160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.203.0",
3
+ "version": "3.203.1",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",