@scania/tegel 0.0.1-beta.3 → 0.0.1-beta.5
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/dist/cjs/index-e1c79686.js +1912 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/cjs/popper-11d5f714.js +1801 -0
- package/dist/cjs/sdds-accordion-item.cjs.entry.js +34 -0
- package/dist/cjs/sdds-accordion.cjs.entry.js +21 -0
- package/dist/cjs/sdds-badges.cjs.entry.js +55 -0
- package/dist/cjs/sdds-body-cell_2.cjs.entry.js +173 -0
- package/dist/cjs/sdds-button.cjs.entry.js +36 -0
- package/dist/cjs/sdds-datetime.cjs.entry.js +66 -0
- package/dist/cjs/sdds-dropdown-filter.cjs.entry.js +92 -0
- package/dist/cjs/sdds-dropdown_2.cjs.entry.js +335 -0
- package/dist/cjs/sdds-header-cell.cjs.entry.js +141 -0
- package/dist/cjs/sdds-icon.cjs.entry.js +42 -0
- package/dist/cjs/sdds-inline-tabs-fullbleed.cjs.entry.js +96 -0
- package/dist/cjs/sdds-inline-tabs.cjs.entry.js +211 -0
- package/dist/cjs/sdds-modal.cjs.entry.js +49 -0
- package/dist/cjs/sdds-navigation-tabs.cjs.entry.js +95 -0
- package/dist/cjs/sdds-popover-canvas.cjs.entry.js +76 -0
- package/dist/cjs/sdds-popover-menu.cjs.entry.js +75 -0
- package/dist/cjs/sdds-slider.cjs.entry.js +336 -0
- package/dist/cjs/sdds-spinner.cjs.entry.js +21 -0
- package/dist/cjs/sdds-table-body-row-expandable.cjs.entry.js +81 -0
- package/dist/cjs/sdds-table-body.cjs.entry.js +289 -0
- package/dist/cjs/sdds-table-footer.cjs.entry.js +165 -0
- package/dist/cjs/sdds-table-header.cjs.entry.js +100 -0
- package/dist/cjs/sdds-table-toolbar.cjs.entry.js +66 -0
- package/dist/cjs/sdds-table.cjs.entry.js +69 -0
- package/dist/cjs/sdds-textarea.cjs.entry.js +61 -0
- package/dist/cjs/sdds-textfield.cjs.entry.js +82 -0
- package/dist/cjs/sdds-tooltip.cjs.entry.js +95 -0
- package/dist/cjs/tegel.cjs.js +19 -0
- package/dist/collection/collection-manifest.json +40 -0
- package/dist/collection/components/accordion/accordion-item/accordion-item.css +134 -0
- package/dist/collection/components/accordion/accordion-item/accordion-item.js +146 -0
- package/dist/collection/components/accordion/accordion.css +77 -0
- package/dist/collection/components/accordion/accordion.js +62 -0
- package/dist/collection/components/accordion/accordion.stories.js +91 -0
- package/dist/collection/components/badge/badge.stories.js +101 -0
- package/dist/collection/components/badge/badges.css +42 -0
- package/dist/collection/components/badge/badges.js +150 -0
- package/dist/collection/components/banner/banner.stories.js +93 -0
- package/dist/collection/components/block/block.stories.js +46 -0
- package/dist/collection/components/breadcrumb/breadcrumb.stories.js +26 -0
- package/dist/collection/components/button/button-component.js +154 -0
- package/dist/collection/components/button/button-native.stories.js +183 -0
- package/dist/collection/components/button/button-webcomponent.stories.js +182 -0
- package/dist/collection/components/button/button.css +658 -0
- package/dist/collection/components/card/card.stories.js +181 -0
- package/dist/collection/components/checkbox/checkbox.stories.js +54 -0
- package/dist/collection/components/chips/chips.stories.js +124 -0
- package/dist/collection/components/data-table/native-table.stories.js +182 -0
- package/dist/collection/components/data-table/table/table.css +15 -0
- package/dist/collection/components/data-table/table/table.js +253 -0
- package/dist/collection/components/data-table/table-body/table-body.css +22 -0
- package/dist/collection/components/data-table/table-body/table-body.js +425 -0
- package/dist/collection/components/data-table/table-body-cell/table-body-cell.css +40 -0
- package/dist/collection/components/data-table/table-body-cell/table-body-cell.js +169 -0
- package/dist/collection/components/data-table/table-body-row/table-body-row.css +196 -0
- package/dist/collection/components/data-table/table-body-row/table-body-row.js +164 -0
- package/dist/collection/components/data-table/table-body-row-expandable/table-body-row-expandable.css +79 -0
- package/dist/collection/components/data-table/table-body-row-expandable/table-body-row-expandable.js +155 -0
- package/dist/collection/components/data-table/table-component-basic.stories.js +163 -0
- package/dist/collection/components/data-table/table-component-batch-actions.stories.js +129 -0
- package/dist/collection/components/data-table/table-component-bodydata.stories.js +58 -0
- package/dist/collection/components/data-table/table-component-custom-width.stories.js +198 -0
- package/dist/collection/components/data-table/table-component-event-listeners.stories.js +153 -0
- package/dist/collection/components/data-table/table-component-expandable-rows.stories.js +137 -0
- package/dist/collection/components/data-table/table-component-filtering.stories.js +139 -0
- package/dist/collection/components/data-table/table-component-multiselect.stories.js +160 -0
- package/dist/collection/components/data-table/table-component-pagination.stories.js +129 -0
- package/dist/collection/components/data-table/table-component-sorting.stories.js +107 -0
- package/dist/collection/components/data-table/table-footer/table-footer.css +93 -0
- package/dist/collection/components/data-table/table-footer/table-footer.js +355 -0
- package/dist/collection/components/data-table/table-header/table-header.css +204 -0
- package/dist/collection/components/data-table/table-header/table-header.js +153 -0
- package/dist/collection/components/data-table/table-header-cell/table-header-cell.css +126 -0
- package/dist/collection/components/data-table/table-header-cell/table-header-cell.js +320 -0
- package/dist/collection/components/data-table/table-toolbar/table-toolbar.css +92 -0
- package/dist/collection/components/data-table/table-toolbar/table-toolbar.js +142 -0
- package/dist/collection/components/datetime/datetime.css +375 -0
- package/dist/collection/components/datetime/datetime.js +251 -0
- package/dist/collection/components/datetime/datetime.stories.js +149 -0
- package/dist/collection/components/divider/divider.stories.js +116 -0
- package/dist/collection/components/dropdown/dropdown-filter/dropdown-filter.js +339 -0
- package/dist/collection/components/dropdown/dropdown-filter/dropdown-filter.stories.js +130 -0
- package/dist/collection/components/dropdown/dropdown-native.stories.js +90 -0
- package/dist/collection/components/dropdown/dropdown-option/dropdown-option.js +185 -0
- package/dist/collection/components/dropdown/dropdown-wc-default.stories.js +151 -0
- package/dist/collection/components/dropdown/dropdown-wc-multiselect.stories.js +146 -0
- package/dist/collection/components/dropdown/dropdown.css +891 -0
- package/dist/collection/components/dropdown/dropdown.js +554 -0
- package/dist/collection/components/footer/footer.stories.js +100 -0
- package/dist/collection/components/header/header-all.stories.js +217 -0
- package/dist/collection/components/header/header-default.stories.js +47 -0
- package/dist/collection/components/header/header-inline.stories.js +113 -0
- package/dist/collection/components/header/header-search.stories.js +263 -0
- package/dist/collection/components/header/header-toolbar.stories.js +204 -0
- package/dist/collection/components/icon/icon-font.stories.js +57 -0
- package/dist/collection/components/icon/icon-web-component.stories.js +51 -0
- package/dist/collection/components/icon/icon.css +16 -0
- package/dist/collection/components/icon/icon.js +89 -0
- package/dist/collection/components/icon/iconsArray.js +2 -0
- package/dist/collection/components/link/link.stories.js +45 -0
- package/dist/collection/components/message/message.stories.js +117 -0
- package/dist/collection/components/modal/modal-native.stories.js +121 -0
- package/dist/collection/components/modal/modal-webcomponent.stories.js +78 -0
- package/dist/collection/components/modal/modal.css +324 -0
- package/dist/collection/components/modal/modal.js +146 -0
- package/dist/collection/components/popover-canvas/popover-canvas.css +20 -0
- package/dist/collection/components/popover-canvas/popover-canvas.js +190 -0
- package/dist/collection/components/popover-canvas/popover-canvas.stories.js +87 -0
- package/dist/collection/components/popover-menu/popover-menu-icons.stories.js +132 -0
- package/dist/collection/components/popover-menu/popover-menu.css +19 -0
- package/dist/collection/components/popover-menu/popover-menu.js +189 -0
- package/dist/collection/components/popover-menu/popover-menu.stories.js +109 -0
- package/dist/collection/components/radio-button/radio-button.stories.js +68 -0
- package/dist/collection/components/side-menu/side-menu.stories.js +182 -0
- package/dist/collection/components/slider/slider.css +260 -0
- package/dist/collection/components/slider/slider.js +682 -0
- package/dist/collection/components/slider/slider.stories.js +251 -0
- package/dist/collection/components/spinner/spinner.css +79 -0
- package/dist/collection/components/spinner/spinner.js +61 -0
- package/dist/collection/components/spinner/spinner.stories.js +59 -0
- package/dist/collection/components/stepper/stepper.stories.js +139 -0
- package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.css +159 -0
- package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.js +302 -0
- package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.stories.js +65 -0
- package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.css +172 -0
- package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.js +126 -0
- package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.stories.js +43 -0
- package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.css +153 -0
- package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.js +103 -0
- package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.stories.js +32 -0
- package/dist/collection/components/textarea/textarea.css +283 -0
- package/dist/collection/components/textarea/textarea.js +336 -0
- package/dist/collection/components/textarea/textarea.stories.js +149 -0
- package/dist/collection/components/textfield/textfield.css +494 -0
- package/dist/collection/components/textfield/textfield.js +359 -0
- package/dist/collection/components/textfield/textfield.stories.js +222 -0
- package/dist/collection/components/toast/toast.stories.js +119 -0
- package/dist/collection/components/toggle/toggle.stories.js +62 -0
- package/dist/collection/components/tooltip/tooltip.css +46 -0
- package/dist/collection/components/tooltip/tooltip.js +200 -0
- package/dist/collection/components/tooltip/tooltip.stories.js +113 -0
- package/dist/collection/components/utility/colour/background-color.stories.js +96 -0
- package/dist/collection/components/utility/colour/text-color.stories.js +94 -0
- package/dist/collection/foundations-stories/colour/colour-brand.stories.js +38 -0
- package/dist/collection/foundations-stories/colour/colour-scales.stories.js +71 -0
- package/dist/collection/foundations-stories/colour/colour-semantic.stories.js +40 -0
- package/dist/collection/foundations-stories/grid/grid.stories.js +386 -0
- package/dist/collection/foundations-stories/spacing/spacing-element.stories.js +100 -0
- package/dist/collection/foundations-stories/spacing/spacing-layout.stories.js +94 -0
- package/dist/collection/foundations-stories/typography/typography-body.stories.js +16 -0
- package/dist/collection/foundations-stories/typography/typography-detail.stories.js +17 -0
- package/dist/collection/foundations-stories/typography/typography-headline.stories.js +39 -0
- package/dist/collection/foundations-stories/typography/typography-paragraph.stories.js +12 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/stories/assets/code-brackets.svg +1 -0
- package/dist/collection/stories/assets/colors.svg +1 -0
- package/dist/collection/stories/assets/comments.svg +1 -0
- package/dist/collection/stories/assets/direction.svg +1 -0
- package/dist/collection/stories/assets/flow.svg +1 -0
- package/dist/collection/stories/assets/plugin.svg +1 -0
- package/dist/collection/stories/assets/repo.svg +1 -0
- package/dist/collection/stories/assets/stackalt.svg +1 -0
- package/dist/collection/utils/utils.js +12 -0
- package/dist/components/dropdown-option.js +0 -1
- package/dist/components/dropdown.js +0 -1
- package/dist/components/icon.js +0 -1
- package/dist/components/sdds-accordion-item.js +0 -1
- package/dist/components/sdds-accordion.js +0 -1
- package/dist/components/sdds-badges.js +0 -1
- package/dist/components/sdds-button.js +0 -1
- package/dist/components/sdds-datetime.js +0 -1
- package/dist/components/sdds-dropdown-filter.js +0 -1
- package/dist/components/sdds-header-cell.js +0 -1
- package/dist/components/sdds-inline-tabs-fullbleed.js +0 -1
- package/dist/components/sdds-inline-tabs.js +0 -1
- package/dist/components/sdds-modal.js +0 -1
- package/dist/components/sdds-navigation-tabs.js +0 -1
- package/dist/components/sdds-popover-canvas.js +0 -1
- package/dist/components/sdds-popover-menu.js +0 -1
- package/dist/components/sdds-slider.js +0 -1
- package/dist/components/sdds-spinner.js +0 -1
- package/dist/components/sdds-table-body-row-expandable.js +0 -1
- package/dist/components/sdds-table-body.js +0 -1
- package/dist/components/sdds-table-footer.js +0 -1
- package/dist/components/sdds-table-header.js +0 -1
- package/dist/components/sdds-table-toolbar.js +0 -1
- package/dist/components/sdds-table.js +0 -1
- package/dist/components/sdds-textarea.js +0 -1
- package/dist/components/sdds-textfield.js +0 -1
- package/dist/components/sdds-tooltip.js +0 -1
- package/dist/components/table-body-cell.js +0 -1
- package/dist/components/table-body-row.js +0 -1
- package/dist/esm/index-b67b15a6.js +1884 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/popper-f860750c.js +1799 -0
- package/dist/esm/sdds-accordion-item.entry.js +30 -0
- package/dist/esm/sdds-accordion.entry.js +17 -0
- package/dist/esm/sdds-badges.entry.js +51 -0
- package/dist/esm/sdds-body-cell_2.entry.js +168 -0
- package/dist/esm/sdds-button.entry.js +32 -0
- package/dist/esm/sdds-datetime.entry.js +62 -0
- package/dist/esm/sdds-dropdown-filter.entry.js +88 -0
- package/dist/esm/sdds-dropdown_2.entry.js +330 -0
- package/dist/esm/sdds-header-cell.entry.js +137 -0
- package/dist/esm/sdds-icon.entry.js +38 -0
- package/dist/esm/sdds-inline-tabs-fullbleed.entry.js +92 -0
- package/dist/esm/sdds-inline-tabs.entry.js +207 -0
- package/dist/esm/sdds-modal.entry.js +45 -0
- package/dist/esm/sdds-navigation-tabs.entry.js +91 -0
- package/dist/esm/sdds-popover-canvas.entry.js +72 -0
- package/dist/esm/sdds-popover-menu.entry.js +71 -0
- package/dist/esm/sdds-slider.entry.js +332 -0
- package/dist/esm/sdds-spinner.entry.js +17 -0
- package/dist/esm/sdds-table-body-row-expandable.entry.js +77 -0
- package/dist/esm/sdds-table-body.entry.js +285 -0
- package/dist/esm/sdds-table-footer.entry.js +161 -0
- package/dist/esm/sdds-table-header.entry.js +96 -0
- package/dist/esm/sdds-table-toolbar.entry.js +62 -0
- package/dist/esm/sdds-table.entry.js +65 -0
- package/dist/esm/sdds-textarea.entry.js +57 -0
- package/dist/esm/sdds-textfield.entry.js +78 -0
- package/dist/esm/sdds-tooltip.entry.js +91 -0
- package/dist/esm/tegel.js +17 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/tegel/index.esm.js +0 -0
- package/dist/tegel/p-040efb32.entry.js +1 -0
- package/dist/tegel/p-12ca5cfa.entry.js +1 -0
- package/dist/tegel/p-157e1618.js +2 -0
- package/dist/tegel/p-1fe61cf6.entry.js +1 -0
- package/dist/tegel/p-2f376504.entry.js +1 -0
- package/dist/tegel/p-44ced895.entry.js +1 -0
- package/dist/tegel/p-4880f03d.entry.js +1 -0
- package/dist/tegel/p-4aba73a3.entry.js +1 -0
- package/dist/tegel/p-4b58a02c.entry.js +1 -0
- package/dist/tegel/p-4cb85347.entry.js +1 -0
- package/dist/tegel/p-52031b5a.entry.js +1 -0
- package/dist/tegel/p-677baf7f.entry.js +1 -0
- package/dist/tegel/p-71797eaf.entry.js +1 -0
- package/dist/tegel/p-7373284c.entry.js +1 -0
- package/dist/tegel/p-7451779b.entry.js +1 -0
- package/dist/tegel/p-77aeea3b.entry.js +1 -0
- package/dist/tegel/p-8582d6a7.entry.js +1 -0
- package/dist/tegel/p-96021bd0.entry.js +1 -0
- package/dist/tegel/p-9d8caf51.entry.js +1 -0
- package/dist/tegel/p-a5919930.entry.js +1 -0
- package/dist/tegel/p-b01cface.entry.js +1 -0
- package/dist/tegel/p-bf896643.entry.js +1 -0
- package/dist/tegel/p-c311725c.entry.js +1 -0
- package/dist/tegel/p-cf72dfd9.entry.js +1 -0
- package/dist/tegel/p-d91caec6.entry.js +1 -0
- package/dist/tegel/p-e10eec33.entry.js +1 -0
- package/dist/tegel/p-ec26fc38.js +1 -0
- package/dist/tegel/p-f2262a69.entry.js +1 -0
- package/dist/tegel/p-f2f7aa45.entry.js +1 -0
- package/dist/tegel/tegel.css +101 -0
- package/dist/tegel/tegel.esm.js +1 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +11 -0
- package/package.json +4 -4
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { Host, h } from '@stencil/core';
|
|
2
|
+
export class InlineTabsFullbleed {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.navWrapperElement = null; // reference to container with nav buttons
|
|
5
|
+
this.componentWidth = 0; // visible width of this component
|
|
6
|
+
this.buttonsWidth = 0; // total width of all nav items combined
|
|
7
|
+
this.scrollWidth = 0; // total amount that is possible to scroll in the nav wrapper
|
|
8
|
+
this.buttonWidth = 0; // current calculated width of the largest nav button
|
|
9
|
+
this.modeVariant = 'primary';
|
|
10
|
+
this.tabs = [];
|
|
11
|
+
this.showLeftScroll = false;
|
|
12
|
+
this.showRightScroll = false;
|
|
13
|
+
}
|
|
14
|
+
componentDidRender() {
|
|
15
|
+
this._calculateButtonWidth();
|
|
16
|
+
}
|
|
17
|
+
componentDidLoad() {
|
|
18
|
+
const resizeObserver = new ResizeObserver((entries) => {
|
|
19
|
+
for (const entry of entries) {
|
|
20
|
+
const componentWidth = entry.contentRect.width;
|
|
21
|
+
let buttonsWidth = 0;
|
|
22
|
+
const navButtons = Array.from(this.host.children);
|
|
23
|
+
navButtons.forEach((navButton) => {
|
|
24
|
+
const style = window.getComputedStyle(navButton);
|
|
25
|
+
buttonsWidth +=
|
|
26
|
+
navButton.clientWidth + parseFloat(style.marginLeft) + parseFloat(style.marginRight);
|
|
27
|
+
navButton.classList.add('sdds-inline-tabs-fullbleed--tab');
|
|
28
|
+
});
|
|
29
|
+
this.componentWidth = componentWidth;
|
|
30
|
+
this.buttonsWidth = buttonsWidth;
|
|
31
|
+
this.scrollWidth = buttonsWidth - componentWidth;
|
|
32
|
+
if (this.buttonsWidth > this.componentWidth) {
|
|
33
|
+
this._evaluateScrollButtons();
|
|
34
|
+
}
|
|
35
|
+
else {
|
|
36
|
+
this.showLeftScroll = false;
|
|
37
|
+
this.showRightScroll = false;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
resizeObserver.observe(this.navWrapperElement);
|
|
42
|
+
this._calculateButtonWidth();
|
|
43
|
+
}
|
|
44
|
+
_calculateButtonWidth() {
|
|
45
|
+
let best = 0;
|
|
46
|
+
const navButtons = Array.from(this.host.children);
|
|
47
|
+
navButtons.forEach((navButton) => {
|
|
48
|
+
const style = window.getComputedStyle(navButton);
|
|
49
|
+
const width = navButton.clientWidth + parseFloat(style.marginLeft) + parseFloat(style.marginRight);
|
|
50
|
+
if (width > best) {
|
|
51
|
+
best = width;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
this.buttonWidth = best;
|
|
55
|
+
}
|
|
56
|
+
_scrollRight() {
|
|
57
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
58
|
+
this.navWrapperElement.scrollLeft = scroll + this.buttonWidth;
|
|
59
|
+
this._evaluateScrollButtons();
|
|
60
|
+
}
|
|
61
|
+
_scrollLeft() {
|
|
62
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
63
|
+
this.navWrapperElement.scrollLeft = scroll - this.buttonWidth;
|
|
64
|
+
this._evaluateScrollButtons();
|
|
65
|
+
}
|
|
66
|
+
_evaluateScrollButtons() {
|
|
67
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
68
|
+
if (scroll >= this.scrollWidth) {
|
|
69
|
+
this.showRightScroll = false;
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
this.showRightScroll = true;
|
|
73
|
+
}
|
|
74
|
+
if (scroll <= 0) {
|
|
75
|
+
this.showLeftScroll = false;
|
|
76
|
+
}
|
|
77
|
+
else {
|
|
78
|
+
this.showLeftScroll = true;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
render() {
|
|
82
|
+
return (h(Host, null, h("div", { class: `sdds-inline-tabs-fullbleed sdds-inline-tabs-fullbleed-${this.modeVariant}` }, h("div", { class: "sdds-inline-tabs-fullbleed-wrapper", ref: (el) => (this.navWrapperElement = el) }, h("slot", null)), h("div", { class: "sdds-inline-tabs-fullbleed-navigation" }, h("button", { class: `sdds-inline-tabs-fullbleed--forward ${this.showRightScroll ? 'sdds-inline-tabs-fullbleed--back__show' : ''}`, onClick: () => this._scrollRight() }, h("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.1147 17.3291C5.87062 17.0851 5.87062 16.6893 6.1147 16.4453L12.2948 10.2652C12.4412 10.1187 12.4412 9.8813 12.2948 9.73485L6.1147 3.55476C5.87062 3.31068 5.87062 2.91496 6.1147 2.67088C6.35878 2.4268 6.75451 2.4268 6.99858 2.67088L13.1787 8.85097C13.8133 9.48557 13.8133 10.5145 13.1787 11.1491L6.99858 17.3291C6.75451 17.5732 6.35878 17.5732 6.1147 17.3291Z", fill: "#0D0F13" }))), h("button", { class: `sdds-inline-tabs-fullbleed--back ${this.showLeftScroll ? 'sdds-inline-tabs-fullbleed--back__show' : ''}`, onClick: () => this._scrollLeft() }, h("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.8853 2.67085C14.1294 2.91493 14.1294 3.31066 13.8853 3.55473L7.70522 9.73482C7.55878 9.88127 7.55878 10.1187 7.70522 10.2652L13.8853 16.4452C14.1294 16.6893 14.1294 17.085 13.8853 17.3291C13.6412 17.5732 13.2455 17.5732 13.0014 17.3291L6.82134 11.149C6.18674 10.5144 6.18674 9.48554 6.82134 8.85094L13.0014 2.67085C13.2455 2.42677 13.6412 2.42677 13.8853 2.67085Z", fill: "#0D0F13" })))))));
|
|
83
|
+
}
|
|
84
|
+
static get is() { return "sdds-inline-tabs-fullbleed"; }
|
|
85
|
+
static get encapsulation() { return "shadow"; }
|
|
86
|
+
static get originalStyleUrls() {
|
|
87
|
+
return {
|
|
88
|
+
"$": ["inline-tabs-fullbleed.scss"]
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
static get styleUrls() {
|
|
92
|
+
return {
|
|
93
|
+
"$": ["inline-tabs-fullbleed.css"]
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
static get properties() {
|
|
97
|
+
return {
|
|
98
|
+
"modeVariant": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"mutable": false,
|
|
101
|
+
"complexType": {
|
|
102
|
+
"original": "'primary' | 'secondary'",
|
|
103
|
+
"resolved": "\"primary\" | \"secondary\"",
|
|
104
|
+
"references": {}
|
|
105
|
+
},
|
|
106
|
+
"required": false,
|
|
107
|
+
"optional": false,
|
|
108
|
+
"docs": {
|
|
109
|
+
"tags": [],
|
|
110
|
+
"text": "Variant of the tabs, primary= on white, secondary= on grey50"
|
|
111
|
+
},
|
|
112
|
+
"attribute": "mode-variant",
|
|
113
|
+
"reflect": false,
|
|
114
|
+
"defaultValue": "'primary'"
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
}
|
|
118
|
+
static get states() {
|
|
119
|
+
return {
|
|
120
|
+
"tabs": {},
|
|
121
|
+
"showLeftScroll": {},
|
|
122
|
+
"showRightScroll": {}
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
static get elementRef() { return "host"; }
|
|
126
|
+
}
|
package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.stories.js
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { formatHtmlPreview } from '../../../utils/utils';
|
|
2
|
+
import readme from './readme.md';
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Components/Tabs',
|
|
5
|
+
parameters: {
|
|
6
|
+
notes: readme,
|
|
7
|
+
design: [
|
|
8
|
+
{
|
|
9
|
+
name: 'Figma',
|
|
10
|
+
type: 'figma',
|
|
11
|
+
url: 'https://www.figma.com/file/d8bTgEx7h694MSesi2CTLF/Tegel-UI-Library?node-id=10544%3A32834&t=Ne6myqwca5m00de7-1',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Link',
|
|
15
|
+
type: 'link',
|
|
16
|
+
url: 'https://www.figma.com/file/d8bTgEx7h694MSesi2CTLF/Tegel-UI-Library?node-id=10544%3A32834&t=Ne6myqwca5m00de7-1',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
argTypes: {
|
|
21
|
+
modeVariant: {
|
|
22
|
+
name: "Variant",
|
|
23
|
+
control: {
|
|
24
|
+
type: 'radio'
|
|
25
|
+
},
|
|
26
|
+
options: ['Primary', 'Secondary'],
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
args: {
|
|
30
|
+
modeVariant: 'Primary'
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
const Template = ({ modeVariant }) => formatHtmlPreview(`
|
|
34
|
+
<sdds-inline-tabs-fullbleed id="inline-tabs-fullbleed-example" mode-variant="${modeVariant.toLowerCase()}">
|
|
35
|
+
<a href="#">Tab name</a>
|
|
36
|
+
<a href="#" class="sdds-inline-tabs-fullbleed--tab__active">Active tab</a>
|
|
37
|
+
<a href="#">Tab name</a>
|
|
38
|
+
<a href="#">Tab name</a>
|
|
39
|
+
<a href="#" class="sdds-inline-tabs-fullbleed--tab__disabled">Disabled tab</a>
|
|
40
|
+
</sdds-inline-tabs-fullbleed>
|
|
41
|
+
`);
|
|
42
|
+
export const InlineTabsFullbleed = Template.bind({});
|
|
43
|
+
InlineTabsFullbleed.args = {};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
.sdds-navigation-tabs {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
background-color: var(--sdds-navigation-tabs-bg);
|
|
4
|
+
position: relative;
|
|
5
|
+
display: flex;
|
|
6
|
+
/* tab */
|
|
7
|
+
/* tab states */
|
|
8
|
+
}
|
|
9
|
+
.sdds-navigation-tabs * {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
}
|
|
12
|
+
.sdds-navigation-tabs::after {
|
|
13
|
+
content: " ";
|
|
14
|
+
display: block;
|
|
15
|
+
border-bottom: 1px solid var(--sdds-navigation-tabs-horizontal-divider-bg);
|
|
16
|
+
left: 0;
|
|
17
|
+
right: 0;
|
|
18
|
+
bottom: 0;
|
|
19
|
+
position: absolute;
|
|
20
|
+
}
|
|
21
|
+
.sdds-navigation-tabs-wrapper {
|
|
22
|
+
display: flex;
|
|
23
|
+
flex-wrap: nowrap;
|
|
24
|
+
width: 100%;
|
|
25
|
+
overflow-x: scroll;
|
|
26
|
+
scrollbar-width: none;
|
|
27
|
+
}
|
|
28
|
+
.sdds-navigation-tabs-wrapper::-webkit-scrollbar {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
.sdds-navigation-tabs-forward {
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
width: 48px;
|
|
34
|
+
height: 100%;
|
|
35
|
+
border: 0;
|
|
36
|
+
position: absolute;
|
|
37
|
+
right: 0;
|
|
38
|
+
top: 0;
|
|
39
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-bg);
|
|
40
|
+
display: flex;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
align-items: center;
|
|
43
|
+
opacity: 0;
|
|
44
|
+
pointer-events: none;
|
|
45
|
+
}
|
|
46
|
+
.sdds-navigation-tabs-forward__show {
|
|
47
|
+
opacity: 1;
|
|
48
|
+
pointer-events: all;
|
|
49
|
+
}
|
|
50
|
+
.sdds-navigation-tabs-forward:hover {
|
|
51
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-hover-bg);
|
|
52
|
+
text-decoration: none;
|
|
53
|
+
}
|
|
54
|
+
.sdds-navigation-tabs-forward:active {
|
|
55
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-active-bg);
|
|
56
|
+
}
|
|
57
|
+
.sdds-navigation-tabs-forward:focus {
|
|
58
|
+
outline: 2px solid var(--sdds-blue-400);
|
|
59
|
+
outline-offset: -2px;
|
|
60
|
+
}
|
|
61
|
+
.sdds-navigation-tabs-back {
|
|
62
|
+
cursor: pointer;
|
|
63
|
+
width: 48px;
|
|
64
|
+
height: 100%;
|
|
65
|
+
border: 0;
|
|
66
|
+
position: absolute;
|
|
67
|
+
left: 0;
|
|
68
|
+
top: 0;
|
|
69
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-bg);
|
|
70
|
+
display: flex;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
align-items: center;
|
|
73
|
+
opacity: 0;
|
|
74
|
+
pointer-events: none;
|
|
75
|
+
}
|
|
76
|
+
.sdds-navigation-tabs-back__show {
|
|
77
|
+
opacity: 1;
|
|
78
|
+
pointer-events: all;
|
|
79
|
+
}
|
|
80
|
+
.sdds-navigation-tabs-back:hover {
|
|
81
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-hover-bg);
|
|
82
|
+
}
|
|
83
|
+
.sdds-navigation-tabs-back:active {
|
|
84
|
+
background-color: var(--sdds-navigation-tabs-scroll-btn-active-bg);
|
|
85
|
+
}
|
|
86
|
+
.sdds-navigation-tabs-back:focus {
|
|
87
|
+
outline: 2px solid var(--sdds-blue-400);
|
|
88
|
+
outline-offset: -2px;
|
|
89
|
+
}
|
|
90
|
+
::slotted(.sdds-navigation-tabs-tab) {
|
|
91
|
+
font: var(--sdds-headline-07);
|
|
92
|
+
letter-spacing: var(--sdds-headline-07-ls);
|
|
93
|
+
color: rgba(0, 21, 51, 0.6);
|
|
94
|
+
padding: 26px 0;
|
|
95
|
+
margin-right: 32px;
|
|
96
|
+
text-decoration: none;
|
|
97
|
+
display: block;
|
|
98
|
+
position: relative;
|
|
99
|
+
transition: color 0.15s ease-in-out;
|
|
100
|
+
white-space: nowrap;
|
|
101
|
+
background-color: transparent;
|
|
102
|
+
border: 0;
|
|
103
|
+
}
|
|
104
|
+
::slotted(.sdds-navigation-tabs-tab)::after {
|
|
105
|
+
content: " ";
|
|
106
|
+
position: absolute;
|
|
107
|
+
bottom: 0;
|
|
108
|
+
right: 0;
|
|
109
|
+
left: 0;
|
|
110
|
+
margin-left: auto;
|
|
111
|
+
width: 0;
|
|
112
|
+
margin-right: auto;
|
|
113
|
+
height: 2px;
|
|
114
|
+
background-color: var(--sdds-navigation-tabs-tab-hover-indicator-bg);
|
|
115
|
+
transition: width 0.15s ease-in-out;
|
|
116
|
+
z-index: 10;
|
|
117
|
+
}
|
|
118
|
+
::slotted(.sdds-navigation-tabs-tab:first-child) {
|
|
119
|
+
margin-left: 32px;
|
|
120
|
+
}
|
|
121
|
+
::slotted(.sdds-navigation-tabs-tab:last-child) {
|
|
122
|
+
margin-right: 32px;
|
|
123
|
+
}
|
|
124
|
+
::slotted(.sdds-navigation-tabs-tab:hover) {
|
|
125
|
+
color: var(--sdds-navigation-tabs-tab-hover-color);
|
|
126
|
+
}
|
|
127
|
+
::slotted(.sdds-navigation-tabs-tab:hover)::after {
|
|
128
|
+
width: 100%;
|
|
129
|
+
}
|
|
130
|
+
::slotted(.sdds-navigation-tabs-tab:focus) {
|
|
131
|
+
outline: 2px solid var(--sdds-blue-400);
|
|
132
|
+
outline-offset: -2px;
|
|
133
|
+
color: var(--sdds-navigation-tabs-tab-focus-color);
|
|
134
|
+
}
|
|
135
|
+
::slotted(.sdds-navigation-tabs-tab:focus)::after {
|
|
136
|
+
width: 0;
|
|
137
|
+
}
|
|
138
|
+
::slotted(.sdds-navigation-tabs-tab-active) {
|
|
139
|
+
color: var(--sdds-navigation-tabs-tab-active-color);
|
|
140
|
+
}
|
|
141
|
+
::slotted(.sdds-navigation-tabs-tab-active)::after {
|
|
142
|
+
width: 100%;
|
|
143
|
+
--sdds-navigation-tabs-tab-active-indicator-bg: var(--sdds-blue-400);
|
|
144
|
+
background-color: var(--sdds-navigation-tabs-tab-active-indicator-bg);
|
|
145
|
+
}
|
|
146
|
+
::slotted(.sdds-navigation-tabs-tab-active:focus)::after {
|
|
147
|
+
width: 100%;
|
|
148
|
+
}
|
|
149
|
+
::slotted(.sdds-navigation-tabs-tab-disabled) {
|
|
150
|
+
color: var(--sdds-navigation-tabs-tab-active-color);
|
|
151
|
+
opacity: 0.16;
|
|
152
|
+
pointer-events: none;
|
|
153
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Host, h } from '@stencil/core';
|
|
2
|
+
export class NavigationTabs {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.navWrapperElement = null; // reference to container with nav buttons
|
|
5
|
+
this.componentWidth = 0; // visible width of this component
|
|
6
|
+
this.buttonsWidth = 0; // total width of all nav items combined
|
|
7
|
+
this.scrollWidth = 0; // total amount that is possible to scroll in the nav wrapper
|
|
8
|
+
this.buttonWidth = 0; // current calculated width of the largest nav button
|
|
9
|
+
this.tabs = [];
|
|
10
|
+
this.showLeftScroll = false;
|
|
11
|
+
this.showRightScroll = false;
|
|
12
|
+
}
|
|
13
|
+
componentDidRender() {
|
|
14
|
+
this._calculateButtonWidth();
|
|
15
|
+
}
|
|
16
|
+
componentDidLoad() {
|
|
17
|
+
const resizeObserver = new ResizeObserver((entries) => {
|
|
18
|
+
for (const entry of entries) {
|
|
19
|
+
const componentWidth = entry.contentRect.width;
|
|
20
|
+
let buttonsWidth = 0;
|
|
21
|
+
const navButtons = Array.from(this.host.children);
|
|
22
|
+
navButtons.forEach((navButton) => {
|
|
23
|
+
const style = window.getComputedStyle(navButton);
|
|
24
|
+
buttonsWidth +=
|
|
25
|
+
navButton.clientWidth + parseFloat(style.marginLeft) + parseFloat(style.marginRight);
|
|
26
|
+
navButton.classList.add('sdds-navigation-tabs-tab');
|
|
27
|
+
});
|
|
28
|
+
this.componentWidth = componentWidth;
|
|
29
|
+
this.buttonsWidth = buttonsWidth;
|
|
30
|
+
this.scrollWidth = buttonsWidth - componentWidth;
|
|
31
|
+
if (this.buttonsWidth > this.componentWidth) {
|
|
32
|
+
this._evaluateScrollButtons();
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
this.showLeftScroll = false;
|
|
36
|
+
this.showRightScroll = false;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
resizeObserver.observe(this.navWrapperElement);
|
|
41
|
+
this._calculateButtonWidth();
|
|
42
|
+
}
|
|
43
|
+
_calculateButtonWidth() {
|
|
44
|
+
let best = 0;
|
|
45
|
+
const navButtons = Array.from(this.host.children);
|
|
46
|
+
navButtons.forEach((navButton) => {
|
|
47
|
+
const style = window.getComputedStyle(navButton);
|
|
48
|
+
const width = navButton.clientWidth + parseFloat(style.marginLeft) + parseFloat(style.marginRight);
|
|
49
|
+
if (width > best) {
|
|
50
|
+
best = width;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
this.buttonWidth = best;
|
|
54
|
+
}
|
|
55
|
+
_scrollRight() {
|
|
56
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
57
|
+
this.navWrapperElement.scrollLeft = scroll + this.buttonWidth;
|
|
58
|
+
this._evaluateScrollButtons();
|
|
59
|
+
}
|
|
60
|
+
_scrollLeft() {
|
|
61
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
62
|
+
this.navWrapperElement.scrollLeft = scroll - this.buttonWidth;
|
|
63
|
+
this._evaluateScrollButtons();
|
|
64
|
+
}
|
|
65
|
+
_evaluateScrollButtons() {
|
|
66
|
+
const scroll = this.navWrapperElement.scrollLeft;
|
|
67
|
+
if (scroll >= this.scrollWidth) {
|
|
68
|
+
this.showRightScroll = false;
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
this.showRightScroll = true;
|
|
72
|
+
}
|
|
73
|
+
if (scroll <= 0) {
|
|
74
|
+
this.showLeftScroll = false;
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
this.showLeftScroll = true;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
render() {
|
|
81
|
+
return (h(Host, null, h("div", { class: "sdds-navigation-tabs" }, h("div", { class: "sdds-navigation-tabs-wrapper", ref: (el) => (this.navWrapperElement = el) }, h("slot", null)), h("div", { class: "sdds-navigation-tabs-navigation" }, h("button", { class: `sdds-navigation-tabs-forward ${this.showRightScroll ? 'sdds-navigation-tabs-forward-show' : ''}`, onClick: () => this._scrollRight() }, h("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M6.1147 17.3291C5.87062 17.0851 5.87062 16.6893 6.1147 16.4453L12.2948 10.2652C12.4412 10.1187 12.4412 9.8813 12.2948 9.73485L6.1147 3.55476C5.87062 3.31068 5.87062 2.91496 6.1147 2.67088C6.35878 2.4268 6.75451 2.4268 6.99858 2.67088L13.1787 8.85097C13.8133 9.48557 13.8133 10.5145 13.1787 11.1491L6.99858 17.3291C6.75451 17.5732 6.35878 17.5732 6.1147 17.3291Z", fill: "#0D0F13" }))), h("button", { class: `sdds-navigation-tabs-back ${this.showLeftScroll ? 'sdds-navigation-tabs-back-show' : ''}`, onClick: () => this._scrollLeft() }, h("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M13.8853 2.67085C14.1294 2.91493 14.1294 3.31066 13.8853 3.55473L7.70522 9.73482C7.55878 9.88127 7.55878 10.1187 7.70522 10.2652L13.8853 16.4452C14.1294 16.6893 14.1294 17.085 13.8853 17.3291C13.6412 17.5732 13.2455 17.5732 13.0014 17.3291L6.82134 11.149C6.18674 10.5144 6.18674 9.48554 6.82134 8.85094L13.0014 2.67085C13.2455 2.42677 13.6412 2.42677 13.8853 2.67085Z", fill: "#0D0F13" })))))));
|
|
82
|
+
}
|
|
83
|
+
static get is() { return "sdds-navigation-tabs"; }
|
|
84
|
+
static get encapsulation() { return "shadow"; }
|
|
85
|
+
static get originalStyleUrls() {
|
|
86
|
+
return {
|
|
87
|
+
"$": ["navigation-tabs.scss"]
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
static get styleUrls() {
|
|
91
|
+
return {
|
|
92
|
+
"$": ["navigation-tabs.css"]
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
static get states() {
|
|
96
|
+
return {
|
|
97
|
+
"tabs": {},
|
|
98
|
+
"showLeftScroll": {},
|
|
99
|
+
"showRightScroll": {}
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
static get elementRef() { return "host"; }
|
|
103
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { formatHtmlPreview } from '../../../utils/utils';
|
|
2
|
+
import readme from './readme.md';
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Components/Tabs',
|
|
5
|
+
parameters: {
|
|
6
|
+
notes: readme,
|
|
7
|
+
design: [
|
|
8
|
+
{
|
|
9
|
+
name: 'Figma',
|
|
10
|
+
type: 'figma',
|
|
11
|
+
url: 'https://www.figma.com/file/d8bTgEx7h694MSesi2CTLF/Tegel-UI-Library?node-id=10544%3A31546&t=Ne6myqwca5m00de7-1',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Link',
|
|
15
|
+
type: 'link',
|
|
16
|
+
url: 'https://www.figma.com/file/d8bTgEx7h694MSesi2CTLF/Tegel-UI-Library?node-id=10544%3A31546&t=Ne6myqwca5m00de7-1',
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
// Why role="link" on a disabled link: https://www.scottohara.me/blog/2021/05/28/disabled-links.html
|
|
22
|
+
const Template = () => formatHtmlPreview(`
|
|
23
|
+
<sdds-navigation-tabs>
|
|
24
|
+
<a href="#" class="sdds-navigation-tabs-tab-active">Active tab</a>
|
|
25
|
+
<a href="#">Tab name</a>
|
|
26
|
+
<a href="#">Tab name</a>
|
|
27
|
+
<a href="#">Tab name</a>
|
|
28
|
+
<a role="link" aria-disabled="true" class="sdds-navigation-tabs-tab-disabled">Disabled tab</a>
|
|
29
|
+
</sdds-navigation-tabs>
|
|
30
|
+
`);
|
|
31
|
+
export const NavigationTabs = Template.bind({});
|
|
32
|
+
NavigationTabs.args = {};
|