@brightspace-ui/core 3.241.1 → 3.242.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.
@@ -86,17 +86,17 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
86
86
  .tag-list-item-container {
87
87
  --d2l-focus-ring-offset: -2px;
88
88
  align-items: center;
89
- background-color: var(--d2l-color-regolith);
89
+ background-color: var(--d2l-theme-background-color-interactive-faint-default);
90
90
  border-radius: 6px;
91
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
91
+ box-shadow: var(--d2l-theme-shadow-attached);
92
92
  box-sizing: border-box;
93
- color: var(--d2l-color-ferrite);
93
+ color: var(--d2l-theme-text-color-static-standard);
94
94
  cursor: pointer;
95
95
  display: flex;
96
96
  line-height: 1rem;
97
97
  max-width: 320px;
98
98
  min-width: 0;
99
- outline: 1px solid var(--d2l-color-gypsum);
99
+ outline: 1px solid var(--d2l-theme-border-color-subtle);
100
100
  outline-offset: -1px;
101
101
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out;
102
102
  white-space: nowrap;
@@ -113,10 +113,10 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
113
113
  ${getFocusRingStyles(() => focusSelector)}
114
114
  :host(:hover) .tag-list-item-container,
115
115
  ${unsafeCSS(focusSelector)} {
116
- background-color: var(--d2l-color-sylvite);
116
+ background-color: var(--d2l-theme-background-color-interactive-faint-hover);
117
117
  }
118
118
  :host(:hover) .tag-list-item-container:not(${unsafeCSS(focusSelector)}) {
119
- outline-color: var(--d2l-color-mica);
119
+ outline-color: var(--d2l-theme-border-color-standard);
120
120
  }
121
121
 
122
122
  @media (prefers-reduced-motion: reduce) {
@@ -133,7 +133,7 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
133
133
  --d2l-button-icon-min-width: 1.2rem;
134
134
  }
135
135
  d2l-button-icon:hover {
136
- --d2l-button-icon-fill-color: var(--d2l-color-tungsten);
136
+ --d2l-button-icon-fill-color: var(--d2l-theme-icon-color-standard);
137
137
  }
138
138
  d2l-tooltip ul {
139
139
  list-style: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.241.1",
3
+ "version": "3.242.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",