@brightspace-ui/core 3.60.0 → 3.60.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -262,8 +262,6 @@ To make your usage of `d2l-dropdown-more` accessible, use the following property
262
262
  import '@brightspace-ui/core/components/dropdown/dropdown-menu.js';
263
263
  import '@brightspace-ui/core/components/menu/menu.js';
264
264
  import '@brightspace-ui/core/components/menu/menu-item.js';
265
- import '@brightspace-ui/core/components/tabs/tabs.js';
266
- import '@brightspace-ui/core/components/tabs/tab-panel.js';
267
265
  </script>
268
266
  <d2l-dropdown-button text="Open!" primary>
269
267
  <d2l-dropdown-menu opened>
@@ -599,7 +599,7 @@ export class TableWrapper extends RtlMixin(PageableMixin(SelectionMixin(LitEleme
599
599
  const affectedNodes = [...removedNodes, ...addedNodes];
600
600
  for (const node of affectedNodes) {
601
601
  if (!(node instanceof Element)) continue;
602
- updates.classNames ||= node.matches('tr');
602
+ updates.classNames ||= node.matches('tr, td, th');
603
603
  updates.syncWidths ||= node.matches('tr');
604
604
  updates.sticky ||= node.matches(SELECTORS.headers);
605
605
  updates.count ||= node.matches(SELECTORS.items);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.60.0",
3
+ "version": "3.60.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",