@brightspace-ui/core 2.54.3 → 2.54.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.
|
@@ -183,10 +183,9 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
|
183
183
|
--d2l-tooltip-outline-color: rgba(255, 255, 255, 0.32);
|
|
184
184
|
box-sizing: border-box;
|
|
185
185
|
color: white;
|
|
186
|
-
display:
|
|
186
|
+
display: none;
|
|
187
187
|
position: absolute;
|
|
188
188
|
text-align: left;
|
|
189
|
-
visibility: hidden;
|
|
190
189
|
white-space: normal;
|
|
191
190
|
z-index: 1001; /* position on top of floating buttons */
|
|
192
191
|
}
|
|
@@ -201,7 +200,7 @@ class Tooltip extends RtlMixin(LitElement) {
|
|
|
201
200
|
}
|
|
202
201
|
|
|
203
202
|
:host([showing]) {
|
|
204
|
-
|
|
203
|
+
display: inline-block;
|
|
205
204
|
}
|
|
206
205
|
|
|
207
206
|
.d2l-tooltip-pointer {
|
package/helpers/uniqueId.js
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
window.D2L.UniqueId = window.D2L.UniqueId || {};
|
|
1
|
+
let uniqueIndex = 0;
|
|
3
2
|
|
|
4
3
|
export function getUniqueId() {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
window.D2L.UniqueId._unique_index = 0;
|
|
8
|
-
}
|
|
9
|
-
window.D2L.UniqueId._unique_index++;
|
|
10
|
-
return `d2l-uid-${window.D2L.UniqueId._unique_index}`;
|
|
11
|
-
|
|
4
|
+
uniqueIndex++;
|
|
5
|
+
return `d2l-uid-${uniqueIndex}`;
|
|
12
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.54.
|
|
3
|
+
"version": "2.54.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",
|