@brightspace-ui/core 3.167.0 → 3.167.1
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.
@@ -37,9 +37,6 @@ export const ListItemExpandCollapseMixin = superclass => class extends SkeletonM
|
|
37
37
|
line-height: 0;
|
38
38
|
width: 0;
|
39
39
|
}
|
40
|
-
:host([dir="rtl"][_render-expand-collapse-slot]) .d2l-list-expand-collapse {
|
41
|
-
padding: 0.55rem 0 0 0.3rem;
|
42
|
-
}
|
43
40
|
.d2l-list-expand-collapse d2l-button-icon {
|
44
41
|
--d2l-button-icon-min-height: 1.2rem;
|
45
42
|
--d2l-button-icon-min-width: 1.2rem;
|
@@ -49,7 +46,8 @@ export const ListItemExpandCollapseMixin = superclass => class extends SkeletonM
|
|
49
46
|
border-radius: var(--d2l-button-icon-border-radius);
|
50
47
|
}
|
51
48
|
:host([_render-expand-collapse-slot]) .d2l-list-expand-collapse {
|
52
|
-
padding: 0.55rem
|
49
|
+
padding-block-start: 0.55rem;
|
50
|
+
padding-inline-end: 0.3rem;
|
53
51
|
width: 1.2rem;
|
54
52
|
}
|
55
53
|
.d2l-list-expand-collapse-action {
|
@@ -20,7 +20,6 @@ import { ListItemDragDropMixin } from './list-item-drag-drop-mixin.js';
|
|
20
20
|
import { ListItemExpandCollapseMixin } from './list-item-expand-collapse-mixin.js';
|
21
21
|
import { ListItemRoleMixin } from './list-item-role-mixin.js';
|
22
22
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
23
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
24
23
|
import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
|
25
24
|
import { styleMap } from 'lit/directives/style-map.js';
|
26
25
|
import { waitForElem } from '../../helpers/internal/waitForElem.js';
|
@@ -62,7 +61,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
62
61
|
ListItemDragDropMixin,
|
63
62
|
ListItemCheckboxMixin,
|
64
63
|
ListItemRoleMixin,
|
65
|
-
RtlMixin,
|
66
64
|
SkeletonMixin) {
|
67
65
|
|
68
66
|
static get properties() {
|
@@ -293,7 +291,8 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
293
291
|
}
|
294
292
|
|
295
293
|
d2l-selection-input {
|
296
|
-
margin: 0.55rem
|
294
|
+
margin-block: 0.55rem;
|
295
|
+
margin-inline-end: 0.55rem;
|
297
296
|
}
|
298
297
|
:host(:not([_render-expand-collapse-slot])) .d2l-list-item-content-extend-separators d2l-selection-input {
|
299
298
|
margin-inline-start: 0.9rem;
|
@@ -305,10 +304,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
305
304
|
d2l-list-item-drag-handle {
|
306
305
|
margin: 0.25rem 0.3rem;
|
307
306
|
}
|
308
|
-
:host([dir="rtl"]) d2l-selection-input {
|
309
|
-
margin-left: 0.9rem;
|
310
|
-
margin-right: 0;
|
311
|
-
}
|
312
307
|
|
313
308
|
[slot="outside-control-container"] {
|
314
309
|
border: 1px solid transparent;
|
@@ -328,18 +323,13 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
328
323
|
margin-inline-end: -12px;
|
329
324
|
}
|
330
325
|
|
331
|
-
:host([_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"]
|
332
|
-
:host([dir="rtl"][_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"] {
|
326
|
+
:host([_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"] {
|
333
327
|
margin-inline-end: 0 !important;
|
334
328
|
margin-inline-start: 0 !important;
|
335
329
|
}
|
336
330
|
|
337
331
|
:host(:not([draggable])[_has-color-slot]) [slot="outside-control-container"] {
|
338
|
-
margin-
|
339
|
-
}
|
340
|
-
:host(:not([draggable])[dir="rtl"][_has-color-slot]) [slot="outside-control-container"] {
|
341
|
-
margin-left: 0;
|
342
|
-
margin-right: -6px;
|
332
|
+
margin-inline-start: -6px;
|
343
333
|
}
|
344
334
|
|
345
335
|
:host([_hovering-control]) [slot="outside-control-container"],
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.167.
|
3
|
+
"version": "3.167.1",
|
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",
|