@brightspace-ui/core 2.80.0 → 2.80.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.
@@ -52,7 +52,7 @@ class CollapsiblePanel extends RtlMixin(LitElement) {
52
52
  */
53
53
  expanded: { type: Boolean, reflect: true },
54
54
  /**
55
- * REQUIRED: Label describing the contents of the header.
55
+ * Optional label describing the contents of the header.
56
56
  * Used for screen readers.
57
57
  * @type {string}
58
58
  */
@@ -42,7 +42,7 @@ export const checkboxStyles = css`
42
42
  input[type="checkbox"].d2l-input-checkbox:hover,
43
43
  input[type="checkbox"].d2l-input-checkbox:focus,
44
44
  input[type="checkbox"].d2l-input-checkbox.d2l-input-checkbox-focus,
45
- :host(.d2l-hovering) input[type="checkbox"].d2l-input-checkbox {
45
+ :host(.d2l-hovering) input[type="checkbox"]:not(:disabled).d2l-input-checkbox {
46
46
  border-color: var(--d2l-color-celestine);
47
47
  border-width: 2px;
48
48
  outline-width: 0;
@@ -147,8 +147,8 @@ export const ListItemMixin = superclass => class extends composeMixins(
147
147
  :host(:last-of-type[_separators="between"]) [slot="control-container"]::after,
148
148
  :host([_separators="none"]) [slot="control-container"]::before,
149
149
  :host([_separators="none"]) [slot="control-container"]::after,
150
- :host([selectable][_hovering]) [slot="control-container"]::before,
151
- :host([selectable][_hovering]) [slot="control-container"]::after,
150
+ :host([selectable][_hovering]:not([disabled])) [slot="control-container"]::before,
151
+ :host([selectable][_hovering]:not([disabled])) [slot="control-container"]::after,
152
152
  :host([selectable][_focusing]) [slot="control-container"]::before,
153
153
  :host([selectable][_focusing]) [slot="control-container"]::after,
154
154
  :host([selected]) [slot="control-container"]::before,
@@ -1078,7 +1078,7 @@
1078
1078
  },
1079
1079
  {
1080
1080
  "name": "expand-collapse-label",
1081
- "description": "REQUIRED: Label describing the contents of the header.\nUsed for screen readers.",
1081
+ "description": "Optional label describing the contents of the header.\nUsed for screen readers.",
1082
1082
  "type": "string"
1083
1083
  },
1084
1084
  {
@@ -1128,7 +1128,7 @@
1128
1128
  {
1129
1129
  "name": "expandCollapseLabel",
1130
1130
  "attribute": "expand-collapse-label",
1131
- "description": "REQUIRED: Label describing the contents of the header.\nUsed for screen readers.",
1131
+ "description": "Optional label describing the contents of the header.\nUsed for screen readers.",
1132
1132
  "type": "string"
1133
1133
  },
1134
1134
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.80.0",
3
+ "version": "2.80.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",