@brightspace-ui/core 3.156.2 → 3.156.3
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.
@@ -1,9 +1,8 @@
|
|
1
1
|
import '../scroll-wrapper.js';
|
2
2
|
import { css, html, LitElement } from 'lit';
|
3
|
-
import { RtlMixin } from '../../../mixins/rtl/rtl-mixin.js';
|
4
3
|
import { styleMap } from 'lit/directives/style-map.js';
|
5
4
|
|
6
|
-
class TestScrollWrapper extends
|
5
|
+
class TestScrollWrapper extends LitElement {
|
7
6
|
|
8
7
|
static get properties() {
|
9
8
|
return {
|
@@ -19,7 +19,6 @@ import { css, html, nothing } from 'lit';
|
|
19
19
|
import { tableStyles, TableWrapper } from '../table-wrapper.js';
|
20
20
|
import { DemoPassthroughMixin } from '../../demo/demo-passthrough-mixin.js';
|
21
21
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
22
|
-
import { RtlMixin } from '../../../mixins/rtl/rtl-mixin.js';
|
23
22
|
|
24
23
|
const columns = ['Population', 'Size', 'Elevation'];
|
25
24
|
const thText = ['Additional', 'Placeholder', 'Header', 'Row', 'Cells'];
|
@@ -36,7 +35,7 @@ const data = () => [
|
|
36
35
|
|
37
36
|
const formatter = new Intl.NumberFormat('en-US');
|
38
37
|
|
39
|
-
class TestTable extends
|
38
|
+
class TestTable extends DemoPassthroughMixin(TableWrapper, 'd2l-table-wrapper') {
|
40
39
|
|
41
40
|
static get properties() {
|
42
41
|
return {
|
package/helpers/demo/prism.html
CHANGED
@@ -615,7 +615,6 @@ import { getComposedActiveElement, getFirstFocusableDescendant, getPreviousFocus
|
|
615
615
|
import { classMap } from 'lit/directives/class-map.js';
|
616
616
|
import { html } from 'lit';
|
617
617
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
618
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
619
618
|
import { styleMap } from 'lit/directives/style-map.js';
|
620
619
|
import { tryGetIfrauBackdropService } from '../../helpers/ifrauBackdropService.js';
|
621
620
|
|
@@ -625,7 +624,7 @@ const minBackdropWidthMobile = 30;
|
|
625
624
|
const outerMarginTopBottom = 18;
|
626
625
|
const defaultVerticalOffset = 16;
|
627
626
|
|
628
|
-
export const DropdownContentMixin = superclass => class extends LocalizeCoreElement(
|
627
|
+
export const DropdownContentMixin = superclass => class extends LocalizeCoreElement(superclass) {
|
629
628
|
|
630
629
|
static get properties() {
|
631
630
|
return {
|
@@ -1772,7 +1771,6 @@ import { FocusMixin } from '../../mixins/focus/focus-mixin.js';
|
|
1772
1771
|
import { ifDefined } from 'lit/directives/if-defined.js';
|
1773
1772
|
import { offscreenStyles } from '../offscreen/offscreen.js';
|
1774
1773
|
import ResizeObserver from 'resize-observer-polyfill/dist/ResizeObserver.es.js';
|
1775
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
1776
1774
|
import { styleMap } from 'lit/directives/style-map.js';
|
1777
1775
|
|
1778
1776
|
/**
|
@@ -1783,7 +1781,7 @@ import { styleMap } from 'lit/directives/style-map.js';
|
|
1783
1781
|
* @slot footer - Slot for footer content, such secondary actions
|
1784
1782
|
* @slot header - Slot for header content, such as course image (no actionable elements)
|
1785
1783
|
*/
|
1786
|
-
class Card extends FocusMixin(
|
1784
|
+
class Card extends FocusMixin(LitElement) {
|
1787
1785
|
|
1788
1786
|
static get properties() {
|
1789
1787
|
return {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.156.
|
3
|
+
"version": "3.156.3",
|
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",
|