@brightspace-ui/core 3.262.5 → 3.262.6
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.
|
@@ -50,7 +50,7 @@ function _getRadioStyleSelectors(inputSelectors) {
|
|
|
50
50
|
* A private helper method that should not be used by general consumers
|
|
51
51
|
*/
|
|
52
52
|
export function _generateRadioStyles(selector, containerSelector) {
|
|
53
|
-
if (!_isValidCssSelector(selector) || !_isValidCssSelector(containerSelector)) return '';
|
|
53
|
+
if (!_isValidCssSelector(selector) || (containerSelector && !_isValidCssSelector(containerSelector))) return '';
|
|
54
54
|
const inputSelectors = [selector];
|
|
55
55
|
if (containerSelector) {
|
|
56
56
|
inputSelectors.push(`${containerSelector} > input[type="radio"]`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.262.
|
|
3
|
+
"version": "3.262.6",
|
|
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",
|