@brightspace-ui/core 2.16.1 → 2.18.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.
- package/components/html-block/README.md +16 -20
- package/components/html-block/demo/html-block.html +12 -0
- package/components/html-block/html-block.js +10 -3
- package/components/tag-list/README.md +5 -5
- package/components/tag-list/tag-list-item-mixin.js +76 -9
- package/components/tag-list/tag-list.js +14 -2
- package/custom-elements.json +13 -0
- package/lang/ar.js +5 -0
- package/lang/cy.js +5 -0
- package/lang/da.js +5 -0
- package/lang/de.js +5 -0
- package/lang/en.js +5 -0
- package/lang/es-es.js +5 -0
- package/lang/es.js +5 -0
- package/lang/fr-fr.js +5 -0
- package/lang/fr.js +5 -0
- package/lang/hi.js +5 -0
- package/lang/ja.js +5 -0
- package/lang/ko.js +5 -0
- package/lang/nl.js +5 -0
- package/lang/pt.js +5 -0
- package/lang/sv.js +5 -0
- package/lang/tr.js +5 -0
- package/lang/zh-cn.js +5 -0
- package/lang/zh-tw.js +5 -0
- package/package.json +1 -1
|
@@ -79,25 +79,23 @@ Examples are provided to display how user-authored math can be embedded within y
|
|
|
79
79
|
import '@brightspace-ui/core/tools/mathjax-test-context.js';
|
|
80
80
|
</script>
|
|
81
81
|
<d2l-html-block>
|
|
82
|
-
<
|
|
83
|
-
<
|
|
84
|
-
<
|
|
85
|
-
<mn>3</mn>
|
|
86
|
-
<mi>x</mi>
|
|
87
|
-
<mo>−</mo>
|
|
88
|
-
<mn>1</mn>
|
|
89
|
-
</msqrt>
|
|
90
|
-
<mo>+</mo>
|
|
91
|
-
<mo stretchy="false">(</mo>
|
|
92
|
-
<mn>1</mn>
|
|
93
|
-
<mo>+</mo>
|
|
82
|
+
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
83
|
+
<msqrt>
|
|
84
|
+
<mn>3</mn>
|
|
94
85
|
<mi>x</mi>
|
|
95
|
-
<
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
</
|
|
100
|
-
|
|
86
|
+
<mo>−</mo>
|
|
87
|
+
<mn>1</mn>
|
|
88
|
+
</msqrt>
|
|
89
|
+
<mo>+</mo>
|
|
90
|
+
<mo stretchy="false">(</mo>
|
|
91
|
+
<mn>1</mn>
|
|
92
|
+
<mo>+</mo>
|
|
93
|
+
<mi>x</mi>
|
|
94
|
+
<msup>
|
|
95
|
+
<mo stretchy="false">)</mo>
|
|
96
|
+
<mn>2</mn>
|
|
97
|
+
</msup>
|
|
98
|
+
</math>
|
|
101
99
|
</d2l-html-block>
|
|
102
100
|
```
|
|
103
101
|
|
|
@@ -110,9 +108,7 @@ Examples are provided to display how user-authored math can be embedded within y
|
|
|
110
108
|
import '@brightspace-ui/core/tools/mathjax-test-context.js';
|
|
111
109
|
</script>
|
|
112
110
|
<d2l-html-block>
|
|
113
|
-
<div class="latex-container">
|
|
114
111
|
$$ f(x) = \int \mathrm{e}^{-x}\,\mathrm{d}x $$ $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
|
|
115
|
-
</div>
|
|
116
112
|
</d2l-html-block>
|
|
117
113
|
```
|
|
118
114
|
|
|
@@ -110,6 +110,18 @@
|
|
|
110
110
|
</template>
|
|
111
111
|
</d2l-demo-snippet>
|
|
112
112
|
|
|
113
|
+
<h2>HTML Block (inline)</h2>
|
|
114
|
+
|
|
115
|
+
<d2l-demo-snippet>
|
|
116
|
+
<template>
|
|
117
|
+
<span>Here's an inline html-block:</span>
|
|
118
|
+
<d2l-html-block inline>
|
|
119
|
+
I'm inline!
|
|
120
|
+
</d2l-html-block>
|
|
121
|
+
<span>Pretty cool!</span>
|
|
122
|
+
</template>
|
|
123
|
+
</d2l-demo-snippet>
|
|
124
|
+
|
|
113
125
|
<h2>HTML Block (large font)</h2>
|
|
114
126
|
|
|
115
127
|
<d2l-demo-snippet>
|
|
@@ -136,6 +136,10 @@ class HtmlBlock extends RtlMixin(LitElement) {
|
|
|
136
136
|
* @type {Boolean}
|
|
137
137
|
*/
|
|
138
138
|
compact: { type: Boolean },
|
|
139
|
+
/**
|
|
140
|
+
* Whether to display the HTML in inline mode
|
|
141
|
+
*/
|
|
142
|
+
inline: { type: Boolean },
|
|
139
143
|
/**
|
|
140
144
|
* Whether to disable deferred rendering of the user-authored HTML. Do *not* set this
|
|
141
145
|
* unless your HTML relies on script executions that may break upon stamping.
|
|
@@ -155,12 +159,14 @@ class HtmlBlock extends RtlMixin(LitElement) {
|
|
|
155
159
|
position: relative;
|
|
156
160
|
text-align: left;
|
|
157
161
|
}
|
|
158
|
-
:host([hidden])
|
|
159
|
-
display: none;
|
|
160
|
-
}
|
|
162
|
+
:host([hidden]),
|
|
161
163
|
:host([no-deferred-rendering]) div.d2l-html-block-rendered {
|
|
162
164
|
display: none;
|
|
163
165
|
}
|
|
166
|
+
:host([inline]),
|
|
167
|
+
:host([inline]) div.d2l-html-block-rendered {
|
|
168
|
+
display: inline;
|
|
169
|
+
}
|
|
164
170
|
:host([dir="rtl"]) {
|
|
165
171
|
text-align: right;
|
|
166
172
|
}
|
|
@@ -170,6 +176,7 @@ class HtmlBlock extends RtlMixin(LitElement) {
|
|
|
170
176
|
constructor() {
|
|
171
177
|
super();
|
|
172
178
|
this.compact = false;
|
|
179
|
+
this.inline = false;
|
|
173
180
|
this.noDeferredRendering = false;
|
|
174
181
|
|
|
175
182
|
const rendererContextAttributes = getRenderers().reduce((attrs, currentRenderer) => {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
Tag lists are used to present a list of compact, discrete pieces of information.
|
|
5
5
|
|
|
6
|
-
<!-- docs: demo display:block -->
|
|
6
|
+
<!-- docs: demo autoSize:false display:block size:small -->
|
|
7
7
|
```html
|
|
8
8
|
<script type="module">
|
|
9
9
|
import '@brightspace-ui/core/components/tag-list/tag-list.js';
|
|
@@ -12,7 +12,7 @@ Tag lists are used to present a list of compact, discrete pieces of information.
|
|
|
12
12
|
|
|
13
13
|
<d2l-tag-list description="Example Tags">
|
|
14
14
|
<d2l-tag-list-item text="Lorem ipsum dolor"></d2l-tag-list-item>
|
|
15
|
-
<d2l-tag-list-item text="Reprehenderit in voluptate velit esse"></d2l-tag-list-item>
|
|
15
|
+
<d2l-tag-list-item text="Reprehenderit in voluptate velit esse lorem ipsum dolor"></d2l-tag-list-item>
|
|
16
16
|
<d2l-tag-list-item text="Sit amet"></d2l-tag-list-item>
|
|
17
17
|
<d2l-tag-list-item text="Duis aute irure"></d2l-tag-list-item>
|
|
18
18
|
<d2l-tag-list-item text="Excepteur sint"></d2l-tag-list-item>
|
|
@@ -26,7 +26,7 @@ Tag lists are used to present a list of compact, discrete pieces of information.
|
|
|
26
26
|
|
|
27
27
|
The `d2l-tag-list` element can take a combination of any type of `d2l-tag-list-item` and adds the appropriate keyboard navigation, list semantics, clearing behaviour and responsive behaviour.
|
|
28
28
|
|
|
29
|
-
<!-- docs: demo live name:d2l-tag-list display:block -->
|
|
29
|
+
<!-- docs: demo live name:d2l-tag-list autoSize:false display:block size:small -->
|
|
30
30
|
```html
|
|
31
31
|
<script type="module">
|
|
32
32
|
import '@brightspace-ui/core/components/tag-list/tag-list.js';
|
|
@@ -39,7 +39,7 @@ The `d2l-tag-list` element can take a combination of any type of `d2l-tag-list-i
|
|
|
39
39
|
</script>
|
|
40
40
|
<d2l-tag-list description="Example Tags">
|
|
41
41
|
<d2l-tag-list-item text="Lorem ipsum dolor"></d2l-tag-list-item>
|
|
42
|
-
<d2l-tag-list-item text="Reprehenderit in voluptate velit esse"></d2l-tag-list-item>
|
|
42
|
+
<d2l-tag-list-item text="Reprehenderit in voluptate velit esse lorem ipsum dolor"></d2l-tag-list-item>
|
|
43
43
|
<d2l-tag-list-item text="Sit amet"></d2l-tag-list-item>
|
|
44
44
|
<d2l-tag-list-item text="Duis aute irure"></d2l-tag-list-item>
|
|
45
45
|
</d2l-tag-list>
|
|
@@ -48,7 +48,7 @@ The `d2l-tag-list` element can take a combination of any type of `d2l-tag-list-i
|
|
|
48
48
|
## Tag List Item [d2l-tag-list-item]
|
|
49
49
|
The `d2l-tag-list-item` provides the appropriate `listitem` semantics and styling for children within a tag list. Tag List items do not work outside of a Tag List and should not be used on their own.
|
|
50
50
|
|
|
51
|
-
<!-- docs: demo live name:d2l-tag-list-item display:block -->
|
|
51
|
+
<!-- docs: demo live name:d2l-tag-list-item autoSize:false display:block size:small -->
|
|
52
52
|
```html
|
|
53
53
|
<script type="module">
|
|
54
54
|
import '@brightspace-ui/core/components/tag-list/tag-list.js';
|
|
@@ -10,6 +10,13 @@ import { labelStyles } from '../typography/styles.js';
|
|
|
10
10
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
|
11
11
|
import { RtlMixin } from '../../mixins/rtl-mixin.js';
|
|
12
12
|
|
|
13
|
+
const keyCodes = {
|
|
14
|
+
BACKSPACE: 8,
|
|
15
|
+
DELETE: 46,
|
|
16
|
+
ENTER: 13,
|
|
17
|
+
SPACE: 32
|
|
18
|
+
};
|
|
19
|
+
|
|
13
20
|
export const TagListItemMixin = superclass => class extends LocalizeCoreElement(RtlMixin(superclass)) {
|
|
14
21
|
|
|
15
22
|
static get properties() {
|
|
@@ -22,7 +29,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
22
29
|
/**
|
|
23
30
|
* @ignore
|
|
24
31
|
*/
|
|
25
|
-
|
|
32
|
+
keyboardTooltipItem: { type: Boolean, attribute: 'keyboard-tooltip-item' },
|
|
33
|
+
/**
|
|
34
|
+
* @ignore
|
|
35
|
+
*/
|
|
36
|
+
role: { type: String, reflect: true },
|
|
37
|
+
_displayKeyboardTooltip: { type: Boolean }
|
|
26
38
|
};
|
|
27
39
|
}
|
|
28
40
|
|
|
@@ -48,7 +60,6 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
48
60
|
max-width: 320px;
|
|
49
61
|
min-width: 0;
|
|
50
62
|
outline: none;
|
|
51
|
-
padding: 0.25rem 0.6rem;
|
|
52
63
|
transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out;
|
|
53
64
|
white-space: nowrap;
|
|
54
65
|
}
|
|
@@ -57,11 +68,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
57
68
|
}
|
|
58
69
|
:host([dir="rtl"]) .tag-list-item-container.tag-list-item-container-clearable {
|
|
59
70
|
padding-left: 0.25rem;
|
|
60
|
-
padding-right: 0
|
|
71
|
+
padding-right: 0;
|
|
61
72
|
}
|
|
62
73
|
.tag-list-item-content {
|
|
63
74
|
outline: none;
|
|
64
75
|
overflow: hidden;
|
|
76
|
+
padding: 0.25rem 0.6rem;
|
|
65
77
|
text-overflow: ellipsis;
|
|
66
78
|
}
|
|
67
79
|
:host(:focus-visible) .tag-list-item-container,
|
|
@@ -82,9 +94,12 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
82
94
|
}
|
|
83
95
|
}
|
|
84
96
|
.d2l-tag-list-item-clear-button {
|
|
97
|
+
margin-left: -0.6rem;
|
|
85
98
|
padding-left: 3px;
|
|
86
99
|
}
|
|
87
100
|
:host([dir="rtl"]) .d2l-tag-list-item-clear-button {
|
|
101
|
+
margin-left: 0;
|
|
102
|
+
margin-right: -0.6rem;
|
|
88
103
|
padding-left: 0;
|
|
89
104
|
padding-right: 3px;
|
|
90
105
|
}
|
|
@@ -96,6 +111,15 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
96
111
|
d2l-button-icon:hover {
|
|
97
112
|
--d2l-button-icon-fill-color: var(--d2l-color-tungsten);
|
|
98
113
|
}
|
|
114
|
+
d2l-tooltip ul {
|
|
115
|
+
list-style: none;
|
|
116
|
+
margin-bottom: 0;
|
|
117
|
+
margin-top: 0.2rem;
|
|
118
|
+
padding: 0;
|
|
119
|
+
}
|
|
120
|
+
.d2l-tag-list-item-tooltip-title-key {
|
|
121
|
+
font-weight: 600;
|
|
122
|
+
}
|
|
99
123
|
`];
|
|
100
124
|
}
|
|
101
125
|
|
|
@@ -103,21 +127,30 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
103
127
|
super();
|
|
104
128
|
this.clearable = false;
|
|
105
129
|
/** @ignore */
|
|
130
|
+
this.keyboardTooltipItem = false;
|
|
131
|
+
/** @ignore */
|
|
106
132
|
this.role = 'listitem';
|
|
133
|
+
this._displayKeyboardTooltip = false;
|
|
107
134
|
this._id = getUniqueId();
|
|
135
|
+
this._tooltipShown = false;
|
|
108
136
|
}
|
|
109
137
|
|
|
110
138
|
firstUpdated(changedProperties) {
|
|
111
139
|
super.firstUpdated(changedProperties);
|
|
112
140
|
|
|
113
141
|
const container = this.shadowRoot.querySelector('.tag-list-item-content');
|
|
114
|
-
this.addEventListener('focus', (e) => {
|
|
142
|
+
this.addEventListener('focus', async(e) => {
|
|
115
143
|
// ignore focus events coming from inside the tag content
|
|
116
144
|
if (e.composedPath()[0] !== this) return;
|
|
145
|
+
|
|
146
|
+
this._displayKeyboardTooltip = (this.keyboardTooltipItem && !this._tooltipShown);
|
|
147
|
+
await this.updateComplete;
|
|
148
|
+
|
|
117
149
|
/** @ignore */
|
|
118
150
|
container.dispatchEvent(new FocusEvent('focus', { bubbles: false, cancelable: true }));
|
|
119
151
|
});
|
|
120
152
|
this.addEventListener('blur', () => {
|
|
153
|
+
this._displayKeyboardTooltip = false;
|
|
121
154
|
/** @ignore */
|
|
122
155
|
container.dispatchEvent(new FocusEvent('blur', { bubbles: false, cancelable: true }));
|
|
123
156
|
});
|
|
@@ -143,28 +176,52 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
143
176
|
}
|
|
144
177
|
|
|
145
178
|
_handleKeydown(e) {
|
|
146
|
-
const
|
|
147
|
-
if (
|
|
179
|
+
const openKeys = e.keyCode === keyCodes.SPACE || e.keyCode === keyCodes.ENTER;
|
|
180
|
+
if (this._displayKeyboardTooltip && openKeys) this._displayKeyboardTooltip = false;
|
|
181
|
+
|
|
182
|
+
const clearKeys = e.keyCode === keyCodes.BACKSPACE || e.keyCode === keyCodes.DELETE;
|
|
183
|
+
if (!this.clearable || !clearKeys) return;
|
|
148
184
|
e.preventDefault();
|
|
149
185
|
this.handleClearItem(e);
|
|
150
186
|
}
|
|
151
187
|
|
|
188
|
+
_handleTooltipHide() {
|
|
189
|
+
if (this._tooltipShown) this._displayKeyboardTooltip = false;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
_handleTooltipShow() {
|
|
193
|
+
this._tooltipShown = true;
|
|
194
|
+
/** @ignore */
|
|
195
|
+
this.dispatchEvent(new CustomEvent(
|
|
196
|
+
'd2l-tag-list-item-tooltip-show',
|
|
197
|
+
{ bubbles: true, composed: true }
|
|
198
|
+
));
|
|
199
|
+
}
|
|
200
|
+
|
|
152
201
|
_renderTag(tagContent, hasTruncationTooltip) {
|
|
153
202
|
const buttonText = typeof tagContent === 'object'
|
|
154
203
|
? this.localize('components.tag-list.clear', { value: '' })
|
|
155
204
|
: this.localize('components.tag-list.clear', { value: tagContent });
|
|
156
|
-
const
|
|
157
|
-
<d2l-tooltip for="${this._id}"
|
|
205
|
+
const tooltipTagOverflow = hasTruncationTooltip ? html`
|
|
206
|
+
<d2l-tooltip for="${this._id}" show-truncated-only>
|
|
158
207
|
${tagContent}
|
|
159
208
|
</d2l-tooltip>
|
|
160
209
|
` : null;
|
|
210
|
+
const tooltipKeyboardInstructions = this._displayKeyboardTooltip ? html`
|
|
211
|
+
<d2l-tooltip
|
|
212
|
+
align="start"
|
|
213
|
+
@d2l-tooltip-hide="${this._handleTooltipHide}"
|
|
214
|
+
@d2l-tooltip-show="${this._handleTooltipShow}"
|
|
215
|
+
for="${this._id}">
|
|
216
|
+
${this._renderTooltipContent()}
|
|
217
|
+
</d2l-tooltip>` : null;
|
|
161
218
|
const containerClasses = {
|
|
162
219
|
'd2l-label-text': true,
|
|
163
220
|
'tag-list-item-container': true,
|
|
164
221
|
'tag-list-item-container-clearable': this.clearable
|
|
165
222
|
};
|
|
166
223
|
return html`
|
|
167
|
-
${
|
|
224
|
+
${tooltipKeyboardInstructions || tooltipTagOverflow}
|
|
168
225
|
<div class="${classMap(containerClasses)}">
|
|
169
226
|
<div class="tag-list-item-content" id="${this._id}" tabindex="-1">${tagContent}</div>
|
|
170
227
|
${this.clearable ? html`
|
|
@@ -179,4 +236,14 @@ export const TagListItemMixin = superclass => class extends LocalizeCoreElement(
|
|
|
179
236
|
`;
|
|
180
237
|
}
|
|
181
238
|
|
|
239
|
+
_renderTooltipContent() {
|
|
240
|
+
return html`
|
|
241
|
+
<div class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-title')}</div>
|
|
242
|
+
<ul>
|
|
243
|
+
<li><span class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-arrow-keys')}</span> - ${this.localize('components.tag-list-item.tooltip-arrow-keys-desc')}</li>
|
|
244
|
+
<li><span class="d2l-tag-list-item-tooltip-title-key">${this.localize('components.tag-list-item.tooltip-delete-key')}</span> - ${this.localize('components.tag-list-item.tooltip-delete-key-desc')}</li>
|
|
245
|
+
</ul>
|
|
246
|
+
`;
|
|
247
|
+
}
|
|
248
|
+
|
|
182
249
|
};
|
|
@@ -93,6 +93,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
93
93
|
this._clearButtonWidth = 0;
|
|
94
94
|
this._contentReady = false;
|
|
95
95
|
this._hasResized = false;
|
|
96
|
+
this._hasShownKeyboardTooltip = false;
|
|
96
97
|
this._itemHeight = 0;
|
|
97
98
|
this._listContainerObserver = null;
|
|
98
99
|
this._resizeObserver = null;
|
|
@@ -177,7 +178,13 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
177
178
|
};
|
|
178
179
|
|
|
179
180
|
const list = html`
|
|
180
|
-
<div
|
|
181
|
+
<div
|
|
182
|
+
aria-label="${this.description}"
|
|
183
|
+
class="${classMap(containerClasses)}"
|
|
184
|
+
role="list"
|
|
185
|
+
@d2l-tag-list-item-clear="${this._handleItemDeleted}"
|
|
186
|
+
@d2l-tag-list-item-tooltip-show="${this._handleKeyboardTooltipShown}"
|
|
187
|
+
>
|
|
181
188
|
<slot @slotchange="${this._handleSlotChange}"></slot>
|
|
182
189
|
${overflowButton}
|
|
183
190
|
<d2l-button-subtle
|
|
@@ -206,7 +213,6 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
206
213
|
if (this._items && this._items.length > 0) this._items[0].focus();
|
|
207
214
|
}
|
|
208
215
|
);
|
|
209
|
-
|
|
210
216
|
}
|
|
211
217
|
|
|
212
218
|
async arrowKeysFocusablesProvider() {
|
|
@@ -299,6 +305,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
299
305
|
|
|
300
306
|
if (this.clearable) node.setAttribute('clearable', 'clearable');
|
|
301
307
|
node.removeAttribute('data-is-chomped');
|
|
308
|
+
node.removeAttribute('keyboard-tooltip-item');
|
|
302
309
|
|
|
303
310
|
return true;
|
|
304
311
|
});
|
|
@@ -339,6 +346,10 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
339
346
|
}
|
|
340
347
|
}
|
|
341
348
|
|
|
349
|
+
_handleKeyboardTooltipShown() {
|
|
350
|
+
this._hasShownKeyboardTooltip = true;
|
|
351
|
+
}
|
|
352
|
+
|
|
342
353
|
async _handleResize(entries) {
|
|
343
354
|
this._availableWidth = Math.floor(entries[0].contentRect.width);
|
|
344
355
|
if (this._availableWidth >= PAGE_SIZE.large) this._lines = PAGE_SIZE_LINES.large;
|
|
@@ -370,6 +381,7 @@ class TagList extends LocalizeCoreElement(InteractiveMixin(ArrowKeysMixin(LitEle
|
|
|
370
381
|
});
|
|
371
382
|
this._chomp();
|
|
372
383
|
this._contentReady = true;
|
|
384
|
+
if (!this._hasShownKeyboardTooltip) this._items[0].setAttribute('keyboard-tooltip-item', 'keyboard-tooltip-item');
|
|
373
385
|
}
|
|
374
386
|
|
|
375
387
|
async _toggleHiddenTagVisibility(e) {
|
package/custom-elements.json
CHANGED
|
@@ -3503,6 +3503,12 @@
|
|
|
3503
3503
|
"type": "Boolean",
|
|
3504
3504
|
"default": "false"
|
|
3505
3505
|
},
|
|
3506
|
+
{
|
|
3507
|
+
"name": "inline",
|
|
3508
|
+
"description": "Whether to display the HTML in inline mode",
|
|
3509
|
+
"type": "boolean",
|
|
3510
|
+
"default": "false"
|
|
3511
|
+
},
|
|
3506
3512
|
{
|
|
3507
3513
|
"name": "no-deferred-rendering",
|
|
3508
3514
|
"description": "Whether to disable deferred rendering of the user-authored HTML. Do *not* set this\nunless your HTML relies on script executions that may break upon stamping.",
|
|
@@ -3518,6 +3524,13 @@
|
|
|
3518
3524
|
"type": "Boolean",
|
|
3519
3525
|
"default": "false"
|
|
3520
3526
|
},
|
|
3527
|
+
{
|
|
3528
|
+
"name": "inline",
|
|
3529
|
+
"attribute": "inline",
|
|
3530
|
+
"description": "Whether to display the HTML in inline mode",
|
|
3531
|
+
"type": "boolean",
|
|
3532
|
+
"default": "false"
|
|
3533
|
+
},
|
|
3521
3534
|
{
|
|
3522
3535
|
"name": "noDeferredRendering",
|
|
3523
3536
|
"attribute": "no-deferred-rendering",
|
package/lang/ar.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "زيادة {count} إضافي",
|
|
105
105
|
"components.tag-list.show-less": "إظهار أقل",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "تقسيم العرض القابل للضبط",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "السهم المتّجه إلى اليسار أو إلى اليمين لضبط حجم لوحات العرض",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "السهم المتّجه إلى الأعلى أو إلى الأسفل لضبط حجم لوحات العرض"
|
package/lang/cy.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} yn rhagor",
|
|
105
105
|
"components.tag-list.show-less": "Dangos Llai",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Gwedd Hollt Addasadwy",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Saeth i'r chwith neu'r dde i addasu maint y paneli gweld",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Saeth i fyny neu i lawr i addasu maint y paneli gweld"
|
package/lang/da.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} mere",
|
|
105
105
|
"components.tag-list.show-less": "Vis færre",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Justerbar delt visning",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pil til venstre eller højre for at justere størrelsen på visningspaneler",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pil op eller ned for at justere størrelsen på visningspaneler"
|
package/lang/de.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} weitere",
|
|
105
105
|
"components.tag-list.show-less": "Weniger anzeigen",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Anpassbare geteilte Ansicht",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pfeil nach links oder rechts, um die Größe der Ansichtsbereiche anzupassen",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pfeil nach oben oder unten, um die Größe der Ansichtsbereiche anzupassen"
|
package/lang/en.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
105
105
|
"components.tag-list.show-less": "Show Less",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Adjustable Split View",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Arrow left or right to adjust the size of the view panels",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Arrow up or down to adjust the size of the view panels"
|
package/lang/es-es.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} más",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vista dividida ajustable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Flecha hacia la izquierda o la derecha para ajustar el tamaño de los paneles de visualización",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flecha hacia arriba o abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/es.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} más",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Pantalla dividida ajustable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Utilice la flecha izquierda o derecha para ajustar el tamaño de los paneles de visualización",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Utilice la flecha hacia arriba o hacia abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/fr-fr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "{count} de plus",
|
|
105
105
|
"components.tag-list.show-less": "Afficher moins",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vue fractionnée réglable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Flèche vers la gauche ou vers la droite pour régler la taille des panneaux d’affichage",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des panneaux d’affichage"
|
package/lang/fr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} de plus",
|
|
105
105
|
"components.tag-list.show-less": "Afficher moins",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Vue partagée réglable",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Utiliser la flèche vers la gauche ou vers la droite pour régler la taille des volets d'affichage",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des volets d'affichage"
|
package/lang/hi.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} और",
|
|
105
105
|
"components.tag-list.show-less": "कम दिखाएँ",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "समायोजन योग्य विभाजन दृश्य",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर बाएँ या दाएँ करें",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर ऊपर या नीचे करें"
|
package/lang/ja.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} 件追加",
|
|
105
105
|
"components.tag-list.show-less": "少なく表示",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "調整可能な分割ビュー",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "左矢印または右矢印を使用して、ビューパネルのサイズを調整します",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "上矢印または下矢印を使用して、ビューパネルのサイズを調整します"
|
package/lang/ko.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "{count}개 더",
|
|
105
105
|
"components.tag-list.show-less": "간단히 표시",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "조정 가능한 분할 보기",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "왼쪽 또는 오른쪽 화살표로 보기 패널의 크기 조정",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "위 또는 아래 화살표로 보기 패널의 크기 조정"
|
package/lang/nl.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} extra",
|
|
105
105
|
"components.tag-list.show-less": "Minder weergeven",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Instelbare gesplitste weergave",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pijl naar links of rechts om de grootte van de weergavevensters aan te passen",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pijl omhoog of omlaag om de grootte van de weergavevensters aan te passen"
|
package/lang/pt.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} mais",
|
|
105
105
|
"components.tag-list.show-less": "Mostrar menos",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Exibição dividida ajustável",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Use a seta para a esquerda ou para a direita para ajustar o tamanho dos painéis de exibição",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Use a seta para cima ou para baixo para ajustar o tamanho dos painéis de exibição"
|
package/lang/sv.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} till",
|
|
105
105
|
"components.tag-list.show-less": "Visa färre",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Justerbar delad vy",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Pil vänster eller höger för att justera storleken på vypaneler",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Pil upp eller ned för att justera storleken på vypaneler"
|
package/lang/tr.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+{count} tane daha",
|
|
105
105
|
"components.tag-list.show-less": "Daha Azını Göster",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "Ayarlanabilir Bölünmüş Görüntü",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "Görüntü panellerinin boyutunu ayarlamak için sol veya sağ okları kullanın",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "Görüntü panellerinin boyutunu ayarlamak için yukarı veya aşağı okları kullanın"
|
package/lang/zh-cn.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "+ {count} 个",
|
|
105
105
|
"components.tag-list.show-less": "显示更少",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "可调分屏视图",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "向左或向右箭头可调整视图面板的大小",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "向上或向下箭头可调整视图面板的大小"
|
package/lang/zh-tw.js
CHANGED
|
@@ -104,6 +104,11 @@ export default {
|
|
|
104
104
|
"components.tag-list.num-hidden": "還有 {count} 個",
|
|
105
105
|
"components.tag-list.show-less": "顯示更少",
|
|
106
106
|
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
107
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
108
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
109
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
110
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
111
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
107
112
|
"templates.primary-secondary.adjustableSplitView": "可調整的分割檢視",
|
|
108
113
|
"templates.primary-secondary.keyboardHorizontal": "向左或向右箭頭可調整檢視面板的大小",
|
|
109
114
|
"templates.primary-secondary.keyboardVertical": "向上或向下箭頭可調整檢視面板的大小"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.18.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",
|