@brightspace-ui/core 3.79.4 → 3.79.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.
@@ -211,7 +211,7 @@ class DemoSnippet extends LitElement {
211
211
 
212
212
  return lines.join('\n')
213
213
  .replace(/ class=""/g, '') // replace empty class attributes (class="")
214
- .replace(/_[^=]*="[^"]*"/, '') // replace private reflected properties (_attr="value")
214
+ .replace(/\s+_[^\s/>"'=]*(=(?<q>['"]).*?(?<!\\)\k<q>)?/g, '') // replace private reflected properties (_attr, _attr="value", but not target="_blank")
215
215
  .replace(/=""/g, ''); // replace empty strings for boolean attributes (="")
216
216
  }
217
217
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.79.4",
3
+ "version": "3.79.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",