@brightspace-ui/core 1.222.1 → 1.224.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.
@@ -4,7 +4,7 @@ export const RtlMixin = dedupeMixin(superclass => class extends superclass {
4
4
 
5
5
  static get properties() {
6
6
  return {
7
- _dir: { type: String, reflect: true, attribute: 'dir' }
7
+ dir: { type: String, reflect: true }
8
8
  };
9
9
  }
10
10
 
@@ -13,7 +13,7 @@ export const RtlMixin = dedupeMixin(superclass => class extends superclass {
13
13
  const dir = document.documentElement.getAttribute('dir');
14
14
  // avoid reflecting "ltr" for better performance
15
15
  if (dir && dir !== 'ltr') {
16
- this._dir = dir;
16
+ this.dir = dir;
17
17
  }
18
18
  }
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "1.222.1",
3
+ "version": "1.224.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",