@brightspace-ui/core 3.137.1 → 3.137.2
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.
@@ -41,9 +41,9 @@ When provided with a `name`, the group will participate in forms with the `value
|
|
41
41
|
import '@brightspace-ui/core/components/inputs/input-radio-group.js';
|
42
42
|
</script>
|
43
43
|
<d2l-input-radio-group label="Bread" name="bread">
|
44
|
-
<d2l-input-radio label="Whole wheat"
|
45
|
-
<d2l-input-radio label="Baguette"
|
46
|
-
<d2l-input-radio label="Marble Rye"
|
44
|
+
<d2l-input-radio label="Whole wheat" value="whole-wheat" checked></d2l-input-radio>
|
45
|
+
<d2l-input-radio label="Baguette" value="baguette"></d2l-input-radio>
|
46
|
+
<d2l-input-radio label="Marble Rye" value="marble-rye"></d2l-input-radio>
|
47
47
|
</d2l-input-radio-group>
|
48
48
|
```
|
49
49
|
|
@@ -80,9 +80,9 @@ The `<d2l-input-radio>` element represents an option within its parent `<d2l-inp
|
|
80
80
|
import '@brightspace-ui/core/components/inputs/input-radio-group.js';
|
81
81
|
</script>
|
82
82
|
<d2l-input-radio-group label="Bread" name="bread">
|
83
|
-
<d2l-input-radio label="Whole wheat"
|
84
|
-
<d2l-input-radio label="Baguette"
|
85
|
-
<d2l-input-radio label="Marble Rye"
|
83
|
+
<d2l-input-radio label="Whole wheat" value="whole-wheat" checked></d2l-input-radio>
|
84
|
+
<d2l-input-radio label="Baguette" value="baguette"></d2l-input-radio>
|
85
|
+
<d2l-input-radio label="Marble Rye" value="marble-rye"></d2l-input-radio>
|
86
86
|
</d2l-input-radio-group>
|
87
87
|
```
|
88
88
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.137.
|
3
|
+
"version": "3.137.2",
|
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",
|