@brightspace-ui/core 3.270.1 → 3.270.2
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.
|
@@ -9,12 +9,12 @@ const HAS_DOCUMENT = globalThis.document !== undefined;
|
|
|
9
9
|
*/
|
|
10
10
|
export const _offscreenStyleDeclarations = css`
|
|
11
11
|
direction: var(--d2l-document-direction, ${ !HAS_DOCUMENT ? css`unset` : (document.dir === 'rtl' ? css`rtl` : css`ltr`)}); /* stylelint-disable-line @stylistic/string-quotes */
|
|
12
|
-
height: ${HAS_DOCUMENT && OffSCREEN_SIZELESS ? 0 : 1}px;
|
|
12
|
+
height: ${HAS_DOCUMENT && OffSCREEN_SIZELESS ? 0 : 1}px; /* The HAS_DOCUMENT check can be removed once the d2l-offscreen-sizeless flag is removed and set to 0px */
|
|
13
13
|
inset-inline-start: -10000px;
|
|
14
14
|
overflow: hidden;
|
|
15
15
|
position: absolute !important;
|
|
16
16
|
white-space: nowrap;
|
|
17
|
-
width: ${HAS_DOCUMENT && OffSCREEN_SIZELESS ? 0 : 1}px;
|
|
17
|
+
width: ${HAS_DOCUMENT && OffSCREEN_SIZELESS ? 0 : 1}px; /* The HAS_DOCUMENT check can be removed once the d2l-offscreen-sizeless flag is removed and set to 0px */
|
|
18
18
|
`;
|
|
19
19
|
|
|
20
20
|
export const offscreenStyles = css`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.270.
|
|
3
|
+
"version": "3.270.2",
|
|
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",
|