@brightspace-ui/core 3.271.0 → 3.271.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.
|
@@ -71,21 +71,17 @@ class LoadingBackdrop extends PropertyRequiredMixin(LocalizeCoreElement(LitEleme
|
|
|
71
71
|
:host([_state="shown"]) #visible,
|
|
72
72
|
:host([_state="hiding"]) #visible {
|
|
73
73
|
display: flex;
|
|
74
|
-
|
|
74
|
+
inset: 0;
|
|
75
75
|
justify-content: center;
|
|
76
76
|
position: absolute;
|
|
77
|
-
top: 0;
|
|
78
|
-
width: 100%;
|
|
79
77
|
z-index: 999;
|
|
80
78
|
}
|
|
81
79
|
|
|
82
80
|
.backdrop {
|
|
83
81
|
background-color: var(--d2l-theme-backdrop-background-color);
|
|
84
|
-
|
|
82
|
+
inset: 0;
|
|
85
83
|
opacity: 0;
|
|
86
84
|
position: absolute;
|
|
87
|
-
top: 0;
|
|
88
|
-
width: 100%;
|
|
89
85
|
}
|
|
90
86
|
:host([_state="shown"]) .backdrop {
|
|
91
87
|
opacity: var(--d2l-theme-backdrop-opacity);
|
|
@@ -66,6 +66,10 @@ class TestTable extends DemoPassthroughMixin(TableWrapper, 'd2l-table-wrapper')
|
|
|
66
66
|
.d2l-table > * > tr > :has(d2l-table-col-sort-button) d2l-dropdown-context-menu {
|
|
67
67
|
vertical-align: top;
|
|
68
68
|
}
|
|
69
|
+
d2l-table-controls > d2l-input-radio-group {
|
|
70
|
+
align-content: center;
|
|
71
|
+
max-height: 42px;
|
|
72
|
+
}
|
|
69
73
|
`];
|
|
70
74
|
|
|
71
75
|
constructor() {
|
|
@@ -89,14 +93,14 @@ class TestTable extends DemoPassthroughMixin(TableWrapper, 'd2l-table-wrapper')
|
|
|
89
93
|
<d2l-selection-action
|
|
90
94
|
text="Sticky controls"
|
|
91
95
|
icon="tier1:${this.stickyControls ? 'check' : 'close-default'}"
|
|
92
|
-
@d2l-selection-action-click="${this._toggleStickyControls}"
|
|
93
|
-
|
|
96
|
+
@d2l-selection-action-click="${this._toggleStickyControls}">
|
|
97
|
+
</d2l-selection-action>
|
|
94
98
|
<d2l-selection-action
|
|
95
99
|
text="Sticky headers"
|
|
96
100
|
icon="tier1:${this.stickyHeaders ? 'check' : 'close-default'}"
|
|
97
|
-
@d2l-selection-action-click="${this._toggleStickyHeaders}"
|
|
98
|
-
|
|
99
|
-
<d2l-input-radio-group
|
|
101
|
+
@d2l-selection-action-click="${this._toggleStickyHeaders}">
|
|
102
|
+
</d2l-selection-action>
|
|
103
|
+
<d2l-input-radio-group label="Date State" horizontal label-hidden name="dataState" @change=${this._handleDataStateChange}>
|
|
100
104
|
<d2l-input-radio label="Clean" value="clean" ?checked=${this.dataState === 'clean'}></d2l-input-radio>
|
|
101
105
|
<d2l-input-radio label="Dirty" value="dirty" ?checked=${this.dataState === 'dirty'}></d2l-input-radio>
|
|
102
106
|
<d2l-input-radio label="Loading" value="loading" ?checked=${this.dataState === 'loading'}></d2l-input-radio>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.271.
|
|
3
|
+
"version": "3.271.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",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@rollup/plugin-node-resolve": "^16",
|
|
57
57
|
"@rollup/plugin-replace": "^6",
|
|
58
58
|
"@stylistic/eslint-plugin": "^5",
|
|
59
|
-
"@web/dev-server": "^0
|
|
59
|
+
"@web/dev-server": "^1.0",
|
|
60
60
|
"chalk": "^5",
|
|
61
61
|
"eslint": "^9",
|
|
62
62
|
"eslint-config-brightspace": "^4",
|