@brightspace-ui/core 3.208.4 → 3.208.5

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.
@@ -208,7 +208,8 @@ class ButtonAddIconText extends VisibleOnAncestorMixin(LitElement) {
208
208
  --d2l-button-add-icon-text-color: var(--d2l-color-galena);
209
209
  align-items: center;
210
210
  display: flex;
211
- fill: var(--d2l-button-add-icon-text-color);
211
+ stroke: var(--d2l-button-add-icon-text-color);
212
+ stroke-width: 2;
212
213
  }
213
214
  :host([visible-on-ancestor]),
214
215
  :host([text]) {
@@ -241,9 +242,8 @@ class ButtonAddIconText extends VisibleOnAncestorMixin(LitElement) {
241
242
  return html`
242
243
  <svg width="18" height="18" viewBox="0 0 18 18" xmlns="http://www.w3.org/2000/svg">
243
244
  <g>
244
- <circle cx="9" cy="9" r="9" fill="#fff"/>
245
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9 2a7 7 0 1 1-7 7 7.008 7.008 0 0 1 7-7Zm0-2a9 9 0 1 0 0 18A9 9 0 0 0 9 0Z"/>
246
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 5a1 1 0 0 0-2 0v3H5a1 1 0 0 0 0 2h3v3a1 1 0 1 0 2 0v-3h3a1 1 0 1 0 0-2h-3V5Z"/>
245
+ <circle cx="9" cy="9" r="8" fill="#fff" />
246
+ <path stroke-linecap="round" d="M9 6v6M6 9h6"/>
247
247
  </g>
248
248
  </svg>
249
249
  ${this.text ? html`<span class="d2l-label-text">${this.text}</span>` : nothing}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.208.4",
3
+ "version": "3.208.5",
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",