@brightspace-ui/core 3.262.6 → 3.262.8
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.
|
@@ -26,8 +26,9 @@ class Breadcrumbs extends LocalizeCoreElement(LitElement) {
|
|
|
26
26
|
display: block;
|
|
27
27
|
font-size: 0.7rem;
|
|
28
28
|
line-height: 1.05rem;
|
|
29
|
-
position: relative;
|
|
30
29
|
${overflowEllipsisDeclarations}
|
|
30
|
+
overflow-y: clip;
|
|
31
|
+
position: relative;
|
|
31
32
|
}
|
|
32
33
|
:host([hidden]) {
|
|
33
34
|
display: none;
|
|
@@ -298,25 +298,32 @@ To make your usage of `d2l-dropdown-more` accessible, use the following property
|
|
|
298
298
|
import '@brightspace-ui/core/components/dropdown/dropdown-tabs.js';
|
|
299
299
|
import '@brightspace-ui/core/components/menu/menu.js';
|
|
300
300
|
import '@brightspace-ui/core/components/menu/menu-item.js';
|
|
301
|
+
import '@brightspace-ui/core/components/tabs/tab.js';
|
|
301
302
|
import '@brightspace-ui/core/components/tabs/tabs.js';
|
|
302
303
|
import '@brightspace-ui/core/components/tabs/tab-panel.js';
|
|
303
304
|
</script>
|
|
304
305
|
<d2l-dropdown-button text="Open!" primary>
|
|
305
306
|
<d2l-dropdown-tabs min-width="175" max-width="300">
|
|
306
|
-
<d2l-tabs>
|
|
307
|
-
<d2l-tab
|
|
308
|
-
<d2l-tab-panel
|
|
307
|
+
<d2l-tabs text="Example">
|
|
308
|
+
<d2l-tab id="first" text="first" slot="tabs"></d2l-tab>
|
|
309
|
+
<d2l-tab-panel labelled-by="first" slot="panels">first content</d2l-tab-panel>
|
|
310
|
+
<d2l-tab id="second" text="second" slot="tabs"></d2l-tab>
|
|
311
|
+
<d2l-tab-panel labelled-by="second" slot="panels">
|
|
309
312
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
|
|
310
313
|
</d2l-tab-panel>
|
|
311
|
-
<d2l-tab
|
|
314
|
+
<d2l-tab id="third" text="third" slot="tabs"></d2l-tab>
|
|
315
|
+
<d2l-tab-panel labelled-by="third" slot="panels">
|
|
312
316
|
<d2l-menu label="Astronomy">
|
|
313
317
|
<d2l-menu-item text="Searching for the Heavens "></d2l-menu-item>
|
|
314
318
|
<d2l-menu-item text="The Universe"></d2l-menu-item>
|
|
315
319
|
</d2l-menu>
|
|
316
320
|
</d2l-tab-panel>
|
|
317
|
-
<d2l-tab
|
|
318
|
-
<d2l-tab-panel
|
|
319
|
-
<d2l-tab
|
|
321
|
+
<d2l-tab id="fourth" text="fourth" slot="tabs"></d2l-tab>
|
|
322
|
+
<d2l-tab-panel labelled-by="fourth" slot="panels">fourth content</d2l-tab-panel>
|
|
323
|
+
<d2l-tab id="fifth" text="fifth" slot="tabs"></d2l-tab>
|
|
324
|
+
<d2l-tab-panel labelled-by="fifth" slot="panels">fifth content</d2l-tab-panel>
|
|
325
|
+
<d2l-tab id="sixth" text="sixth" slot="tabs"></d2l-tab>
|
|
326
|
+
<d2l-tab-panel labelled-by="sixth" slot="panels">sixth content</d2l-tab-panel>
|
|
320
327
|
</d2l-tabs>
|
|
321
328
|
</d2l-dropdown-tabs>
|
|
322
329
|
</d2l-dropdown>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "3.262.
|
|
3
|
+
"version": "3.262.8",
|
|
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",
|