@brightspace-ui/core 3.102.2 → 3.102.3

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.
@@ -10,7 +10,6 @@ import { getUniqueId } from '../../helpers/uniqueId.js';
10
10
  import { ifDefined } from 'lit/directives/if-defined.js';
11
11
  import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
12
12
  import { PropertyRequiredMixin } from '../../mixins/property-required/property-required-mixin.js';
13
- import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
14
13
 
15
14
  const keyCodes = {
16
15
  BACKSPACE: 8,
@@ -38,7 +37,7 @@ export function resetHasDisplayedKeyboardTooltip() {
38
37
  hasDisplayedKeyboardTooltip = false;
39
38
  }
40
39
 
41
- export const TagListItemMixin = superclass => class extends LocalizeCoreElement(PropertyRequiredMixin(RtlMixin(superclass))) {
40
+ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(PropertyRequiredMixin(superclass)) {
42
41
 
43
42
  static get properties() {
44
43
  return {
@@ -95,11 +94,7 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
95
94
  white-space: nowrap;
96
95
  }
97
96
  .tag-list-item-container.tag-list-item-container-clearable {
98
- padding-right: 0.2rem;
99
- }
100
- :host([dir="rtl"]) .tag-list-item-container.tag-list-item-container-clearable {
101
- padding-left: 0.2rem;
102
- padding-right: 0;
97
+ padding-inline-end: 0.2rem;
103
98
  }
104
99
  .tag-list-item-content {
105
100
  outline: none;
@@ -135,11 +130,7 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
135
130
  }
136
131
  }
137
132
  .d2l-tag-list-item-clear-button {
138
- margin-left: calc(-0.6rem + 3px);
139
- }
140
- :host([dir="rtl"]) .d2l-tag-list-item-clear-button {
141
- margin-left: 0;
142
- margin-right: calc(-0.6rem + 3px);
133
+ margin-inline-start: calc(-0.6rem + 3px);
143
134
  }
144
135
  d2l-button-icon {
145
136
  --d2l-button-icon-fill-color: var(--d2l-color-chromite);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.102.2",
3
+ "version": "3.102.3",
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",