@brightspace-ui/core 2.178.2 → 2.179.0

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.
@@ -642,7 +642,7 @@ export const ListItemMixin = superclass => class extends composeMixins(
642
642
  const nestedList = this._getNestedList();
643
643
  if (this._hasNestedList !== !!nestedList) {
644
644
  this._hasNestedList = !!nestedList;
645
- this._hasNestedListAddButton = nestedList.hasAttribute('add-button');
645
+ this._hasNestedListAddButton = this._hasNestedList && nestedList.hasAttribute('add-button');
646
646
  /** @ignore */
647
647
  this.dispatchEvent(new CustomEvent('d2l-list-item-nested-change', { bubbles: true, composed: true }));
648
648
  }
@@ -17,7 +17,7 @@ export const skeletonStyles = css`
17
17
  100% { background-color: var(--d2l-color-sylvite); }
18
18
  }
19
19
  :host([skeleton]) {
20
- opacity: 0.999;
20
+ isolation: isolate;
21
21
  }
22
22
  :host([skeleton]) .d2l-skeletize::before {
23
23
  animation: ${animation};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.178.2",
3
+ "version": "2.179.0",
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",