@brightspace-ui/core 3.79.3 → 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(
|
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
|
|
@@ -72,7 +72,6 @@ class ListItemDragHandle extends LocalizeCoreElement(FocusMixin(RtlMixin(LitElem
|
|
72
72
|
:host {
|
73
73
|
display: flex;
|
74
74
|
margin: 0.25rem;
|
75
|
-
pointer-events: auto; /* required since its parent may set point-events: none; (see generic layout) */
|
76
75
|
}
|
77
76
|
:host([hidden]) {
|
78
77
|
display: none;
|
@@ -116,6 +115,9 @@ class ListItemDragHandle extends LocalizeCoreElement(FocusMixin(RtlMixin(LitElem
|
|
116
115
|
.d2l-list-item-drag-handle-tooltip-key {
|
117
116
|
font-weight: 700;
|
118
117
|
}
|
118
|
+
d2l-button-move {
|
119
|
+
pointer-events: auto; /* required since ancestors may set point-events: none; (see generic layout) */
|
120
|
+
}
|
119
121
|
`];
|
120
122
|
}
|
121
123
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.79.
|
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",
|