@brightspace-ui/core 3.119.0 → 3.119.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.
@@ -5,9 +5,14 @@ Radio Buttons are used in forms to offer a single choice among mutually exclusiv
5
5
  <!-- docs: demo display:block -->
6
6
  ```html
7
7
  <script type="module">
8
- import '@brightspace-ui/core/components/inputs/demo/input-radio-label-simple-test.js';
8
+ import '@brightspace-ui/core/components/inputs/input-radio-group.js';
9
+ import '@brightspace-ui/core/components/inputs/input-radio.js';
9
10
  </script>
10
- <d2l-test-input-radio-label-simple></d2l-test-input-radio-label-simple>
11
+ <d2l-input-radio-group label="Bread">
12
+ <d2l-input-radio label="Whole wheat" checked></d2l-input-radio>
13
+ <d2l-input-radio label="Baguette"></d2l-input-radio>
14
+ <d2l-input-radio label="Marble Rye"></d2l-input-radio>
15
+ </d2l-input-radio-group>
11
16
  ```
12
17
 
13
18
  Unlike checkboxes, individual radio buttons cannot be placed in a custom element. Items belonging to a radio group cannot span across different shadow roots -- all radios in the same group must be in the same shadow root.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.119.0",
3
+ "version": "3.119.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",