@scania/tegel 0.0.1-beta.3 → 0.0.1-beta.4

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.
Files changed (246) hide show
  1. package/dist/cjs/index-e1c79686.js +1912 -0
  2. package/dist/cjs/index.cjs.js +2 -0
  3. package/dist/cjs/loader.cjs.js +21 -0
  4. package/dist/cjs/popper-11d5f714.js +1801 -0
  5. package/dist/cjs/sdds-accordion-item.cjs.entry.js +34 -0
  6. package/dist/cjs/sdds-accordion.cjs.entry.js +21 -0
  7. package/dist/cjs/sdds-badges.cjs.entry.js +55 -0
  8. package/dist/cjs/sdds-body-cell_2.cjs.entry.js +173 -0
  9. package/dist/cjs/sdds-button.cjs.entry.js +36 -0
  10. package/dist/cjs/sdds-datetime.cjs.entry.js +66 -0
  11. package/dist/cjs/sdds-dropdown-filter.cjs.entry.js +92 -0
  12. package/dist/cjs/sdds-dropdown_2.cjs.entry.js +335 -0
  13. package/dist/cjs/sdds-header-cell.cjs.entry.js +141 -0
  14. package/dist/cjs/sdds-icon.cjs.entry.js +42 -0
  15. package/dist/cjs/sdds-inline-tabs-fullbleed.cjs.entry.js +96 -0
  16. package/dist/cjs/sdds-inline-tabs.cjs.entry.js +211 -0
  17. package/dist/cjs/sdds-modal.cjs.entry.js +49 -0
  18. package/dist/cjs/sdds-navigation-tabs.cjs.entry.js +95 -0
  19. package/dist/cjs/sdds-popover-canvas.cjs.entry.js +76 -0
  20. package/dist/cjs/sdds-popover-menu.cjs.entry.js +75 -0
  21. package/dist/cjs/sdds-slider.cjs.entry.js +336 -0
  22. package/dist/cjs/sdds-spinner.cjs.entry.js +21 -0
  23. package/dist/cjs/sdds-table-body-row-expandable.cjs.entry.js +81 -0
  24. package/dist/cjs/sdds-table-body.cjs.entry.js +289 -0
  25. package/dist/cjs/sdds-table-footer.cjs.entry.js +165 -0
  26. package/dist/cjs/sdds-table-header.cjs.entry.js +100 -0
  27. package/dist/cjs/sdds-table-toolbar.cjs.entry.js +66 -0
  28. package/dist/cjs/sdds-table.cjs.entry.js +69 -0
  29. package/dist/cjs/sdds-textarea.cjs.entry.js +61 -0
  30. package/dist/cjs/sdds-textfield.cjs.entry.js +82 -0
  31. package/dist/cjs/sdds-tooltip.cjs.entry.js +95 -0
  32. package/dist/cjs/tegel.cjs.js +19 -0
  33. package/dist/collection/collection-manifest.json +40 -0
  34. package/dist/collection/components/accordion/accordion-item/accordion-item.css +134 -0
  35. package/dist/collection/components/accordion/accordion-item/accordion-item.js +146 -0
  36. package/dist/collection/components/accordion/accordion.css +77 -0
  37. package/dist/collection/components/accordion/accordion.js +62 -0
  38. package/dist/collection/components/accordion/accordion.stories.js +91 -0
  39. package/dist/collection/components/badge/badge.stories.js +101 -0
  40. package/dist/collection/components/badge/badges.css +42 -0
  41. package/dist/collection/components/badge/badges.js +150 -0
  42. package/dist/collection/components/banner/banner.stories.js +93 -0
  43. package/dist/collection/components/block/block.stories.js +46 -0
  44. package/dist/collection/components/breadcrumb/breadcrumb.stories.js +26 -0
  45. package/dist/collection/components/button/button-component.js +154 -0
  46. package/dist/collection/components/button/button-native.stories.js +183 -0
  47. package/dist/collection/components/button/button-webcomponent.stories.js +182 -0
  48. package/dist/collection/components/button/button.css +658 -0
  49. package/dist/collection/components/card/card.stories.js +181 -0
  50. package/dist/collection/components/checkbox/checkbox.stories.js +54 -0
  51. package/dist/collection/components/chips/chips.stories.js +124 -0
  52. package/dist/collection/components/data-table/native-table.stories.js +182 -0
  53. package/dist/collection/components/data-table/table/table.css +15 -0
  54. package/dist/collection/components/data-table/table/table.js +253 -0
  55. package/dist/collection/components/data-table/table-body/table-body.css +22 -0
  56. package/dist/collection/components/data-table/table-body/table-body.js +425 -0
  57. package/dist/collection/components/data-table/table-body-cell/table-body-cell.css +40 -0
  58. package/dist/collection/components/data-table/table-body-cell/table-body-cell.js +169 -0
  59. package/dist/collection/components/data-table/table-body-row/table-body-row.css +196 -0
  60. package/dist/collection/components/data-table/table-body-row/table-body-row.js +164 -0
  61. package/dist/collection/components/data-table/table-body-row-expandable/table-body-row-expandable.css +79 -0
  62. package/dist/collection/components/data-table/table-body-row-expandable/table-body-row-expandable.js +155 -0
  63. package/dist/collection/components/data-table/table-component-basic.stories.js +163 -0
  64. package/dist/collection/components/data-table/table-component-batch-actions.stories.js +129 -0
  65. package/dist/collection/components/data-table/table-component-bodydata.stories.js +58 -0
  66. package/dist/collection/components/data-table/table-component-custom-width.stories.js +198 -0
  67. package/dist/collection/components/data-table/table-component-event-listeners.stories.js +153 -0
  68. package/dist/collection/components/data-table/table-component-expandable-rows.stories.js +137 -0
  69. package/dist/collection/components/data-table/table-component-filtering.stories.js +139 -0
  70. package/dist/collection/components/data-table/table-component-multiselect.stories.js +160 -0
  71. package/dist/collection/components/data-table/table-component-pagination.stories.js +129 -0
  72. package/dist/collection/components/data-table/table-component-sorting.stories.js +107 -0
  73. package/dist/collection/components/data-table/table-footer/table-footer.css +93 -0
  74. package/dist/collection/components/data-table/table-footer/table-footer.js +355 -0
  75. package/dist/collection/components/data-table/table-header/table-header.css +204 -0
  76. package/dist/collection/components/data-table/table-header/table-header.js +153 -0
  77. package/dist/collection/components/data-table/table-header-cell/table-header-cell.css +126 -0
  78. package/dist/collection/components/data-table/table-header-cell/table-header-cell.js +320 -0
  79. package/dist/collection/components/data-table/table-toolbar/table-toolbar.css +92 -0
  80. package/dist/collection/components/data-table/table-toolbar/table-toolbar.js +142 -0
  81. package/dist/collection/components/datetime/datetime.css +375 -0
  82. package/dist/collection/components/datetime/datetime.js +251 -0
  83. package/dist/collection/components/datetime/datetime.stories.js +149 -0
  84. package/dist/collection/components/divider/divider.stories.js +116 -0
  85. package/dist/collection/components/dropdown/dropdown-filter/dropdown-filter.js +339 -0
  86. package/dist/collection/components/dropdown/dropdown-filter/dropdown-filter.stories.js +130 -0
  87. package/dist/collection/components/dropdown/dropdown-native.stories.js +90 -0
  88. package/dist/collection/components/dropdown/dropdown-option/dropdown-option.js +185 -0
  89. package/dist/collection/components/dropdown/dropdown-wc-default.stories.js +151 -0
  90. package/dist/collection/components/dropdown/dropdown-wc-multiselect.stories.js +146 -0
  91. package/dist/collection/components/dropdown/dropdown.css +891 -0
  92. package/dist/collection/components/dropdown/dropdown.js +554 -0
  93. package/dist/collection/components/footer/footer.stories.js +100 -0
  94. package/dist/collection/components/header/header-all.stories.js +217 -0
  95. package/dist/collection/components/header/header-default.stories.js +47 -0
  96. package/dist/collection/components/header/header-inline.stories.js +113 -0
  97. package/dist/collection/components/header/header-search.stories.js +263 -0
  98. package/dist/collection/components/header/header-toolbar.stories.js +204 -0
  99. package/dist/collection/components/icon/icon-font.stories.js +57 -0
  100. package/dist/collection/components/icon/icon-web-component.stories.js +51 -0
  101. package/dist/collection/components/icon/icon.css +16 -0
  102. package/dist/collection/components/icon/icon.js +89 -0
  103. package/dist/collection/components/icon/iconsArray.js +2 -0
  104. package/dist/collection/components/link/link.stories.js +45 -0
  105. package/dist/collection/components/message/message.stories.js +117 -0
  106. package/dist/collection/components/modal/modal-native.stories.js +121 -0
  107. package/dist/collection/components/modal/modal-webcomponent.stories.js +78 -0
  108. package/dist/collection/components/modal/modal.css +324 -0
  109. package/dist/collection/components/modal/modal.js +146 -0
  110. package/dist/collection/components/popover-canvas/popover-canvas.css +20 -0
  111. package/dist/collection/components/popover-canvas/popover-canvas.js +190 -0
  112. package/dist/collection/components/popover-canvas/popover-canvas.stories.js +87 -0
  113. package/dist/collection/components/popover-menu/popover-menu-icons.stories.js +132 -0
  114. package/dist/collection/components/popover-menu/popover-menu.css +19 -0
  115. package/dist/collection/components/popover-menu/popover-menu.js +189 -0
  116. package/dist/collection/components/popover-menu/popover-menu.stories.js +109 -0
  117. package/dist/collection/components/radio-button/radio-button.stories.js +68 -0
  118. package/dist/collection/components/side-menu/side-menu.stories.js +182 -0
  119. package/dist/collection/components/slider/slider.css +260 -0
  120. package/dist/collection/components/slider/slider.js +682 -0
  121. package/dist/collection/components/slider/slider.stories.js +251 -0
  122. package/dist/collection/components/spinner/spinner.css +79 -0
  123. package/dist/collection/components/spinner/spinner.js +61 -0
  124. package/dist/collection/components/spinner/spinner.stories.js +59 -0
  125. package/dist/collection/components/stepper/stepper.stories.js +139 -0
  126. package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.css +159 -0
  127. package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.js +302 -0
  128. package/dist/collection/components/tabs/inline-tabs-default/inline-tabs.stories.js +65 -0
  129. package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.css +172 -0
  130. package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.js +126 -0
  131. package/dist/collection/components/tabs/inline-tabs-fullbleed/inline-tabs-fullbleed.stories.js +43 -0
  132. package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.css +153 -0
  133. package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.js +103 -0
  134. package/dist/collection/components/tabs/navigation-tabs/navigation-tabs.stories.js +32 -0
  135. package/dist/collection/components/textarea/textarea.css +283 -0
  136. package/dist/collection/components/textarea/textarea.js +336 -0
  137. package/dist/collection/components/textarea/textarea.stories.js +149 -0
  138. package/dist/collection/components/textfield/textfield.css +494 -0
  139. package/dist/collection/components/textfield/textfield.js +359 -0
  140. package/dist/collection/components/textfield/textfield.stories.js +222 -0
  141. package/dist/collection/components/toast/toast.stories.js +119 -0
  142. package/dist/collection/components/toggle/toggle.stories.js +62 -0
  143. package/dist/collection/components/tooltip/tooltip.css +46 -0
  144. package/dist/collection/components/tooltip/tooltip.js +200 -0
  145. package/dist/collection/components/tooltip/tooltip.stories.js +113 -0
  146. package/dist/collection/components/utility/colour/background-color.stories.js +96 -0
  147. package/dist/collection/components/utility/colour/text-color.stories.js +94 -0
  148. package/dist/collection/foundations-stories/colour/colour-brand.stories.js +38 -0
  149. package/dist/collection/foundations-stories/colour/colour-scales.stories.js +71 -0
  150. package/dist/collection/foundations-stories/colour/colour-semantic.stories.js +40 -0
  151. package/dist/collection/foundations-stories/grid/grid.stories.js +386 -0
  152. package/dist/collection/foundations-stories/spacing/spacing-element.stories.js +100 -0
  153. package/dist/collection/foundations-stories/spacing/spacing-layout.stories.js +94 -0
  154. package/dist/collection/foundations-stories/typography/typography-body.stories.js +16 -0
  155. package/dist/collection/foundations-stories/typography/typography-detail.stories.js +17 -0
  156. package/dist/collection/foundations-stories/typography/typography-headline.stories.js +39 -0
  157. package/dist/collection/foundations-stories/typography/typography-paragraph.stories.js +12 -0
  158. package/dist/collection/index.js +1 -0
  159. package/dist/collection/stories/assets/code-brackets.svg +1 -0
  160. package/dist/collection/stories/assets/colors.svg +1 -0
  161. package/dist/collection/stories/assets/comments.svg +1 -0
  162. package/dist/collection/stories/assets/direction.svg +1 -0
  163. package/dist/collection/stories/assets/flow.svg +1 -0
  164. package/dist/collection/stories/assets/plugin.svg +1 -0
  165. package/dist/collection/stories/assets/repo.svg +1 -0
  166. package/dist/collection/stories/assets/stackalt.svg +1 -0
  167. package/dist/collection/utils/utils.js +12 -0
  168. package/dist/esm/index-b67b15a6.js +1884 -0
  169. package/dist/esm/index.js +1 -0
  170. package/dist/esm/loader.js +17 -0
  171. package/dist/esm/polyfills/core-js.js +11 -0
  172. package/dist/esm/polyfills/css-shim.js +1 -0
  173. package/dist/esm/polyfills/dom.js +79 -0
  174. package/dist/esm/polyfills/es5-html-element.js +1 -0
  175. package/dist/esm/polyfills/index.js +34 -0
  176. package/dist/esm/polyfills/system.js +6 -0
  177. package/dist/esm/popper-f860750c.js +1799 -0
  178. package/dist/esm/sdds-accordion-item.entry.js +30 -0
  179. package/dist/esm/sdds-accordion.entry.js +17 -0
  180. package/dist/esm/sdds-badges.entry.js +51 -0
  181. package/dist/esm/sdds-body-cell_2.entry.js +168 -0
  182. package/dist/esm/sdds-button.entry.js +32 -0
  183. package/dist/esm/sdds-datetime.entry.js +62 -0
  184. package/dist/esm/sdds-dropdown-filter.entry.js +88 -0
  185. package/dist/esm/sdds-dropdown_2.entry.js +330 -0
  186. package/dist/esm/sdds-header-cell.entry.js +137 -0
  187. package/dist/esm/sdds-icon.entry.js +38 -0
  188. package/dist/esm/sdds-inline-tabs-fullbleed.entry.js +92 -0
  189. package/dist/esm/sdds-inline-tabs.entry.js +207 -0
  190. package/dist/esm/sdds-modal.entry.js +45 -0
  191. package/dist/esm/sdds-navigation-tabs.entry.js +91 -0
  192. package/dist/esm/sdds-popover-canvas.entry.js +72 -0
  193. package/dist/esm/sdds-popover-menu.entry.js +71 -0
  194. package/dist/esm/sdds-slider.entry.js +332 -0
  195. package/dist/esm/sdds-spinner.entry.js +17 -0
  196. package/dist/esm/sdds-table-body-row-expandable.entry.js +77 -0
  197. package/dist/esm/sdds-table-body.entry.js +285 -0
  198. package/dist/esm/sdds-table-footer.entry.js +161 -0
  199. package/dist/esm/sdds-table-header.entry.js +96 -0
  200. package/dist/esm/sdds-table-toolbar.entry.js +62 -0
  201. package/dist/esm/sdds-table.entry.js +65 -0
  202. package/dist/esm/sdds-textarea.entry.js +57 -0
  203. package/dist/esm/sdds-textfield.entry.js +78 -0
  204. package/dist/esm/sdds-tooltip.entry.js +91 -0
  205. package/dist/esm/tegel.js +17 -0
  206. package/dist/index.cjs.js +1 -0
  207. package/dist/index.js +1 -0
  208. package/dist/tegel/index.esm.js +0 -0
  209. package/dist/tegel/p-040efb32.entry.js +1 -0
  210. package/dist/tegel/p-12ca5cfa.entry.js +1 -0
  211. package/dist/tegel/p-157e1618.js +2 -0
  212. package/dist/tegel/p-1fe61cf6.entry.js +1 -0
  213. package/dist/tegel/p-2f376504.entry.js +1 -0
  214. package/dist/tegel/p-44ced895.entry.js +1 -0
  215. package/dist/tegel/p-4880f03d.entry.js +1 -0
  216. package/dist/tegel/p-4aba73a3.entry.js +1 -0
  217. package/dist/tegel/p-4b58a02c.entry.js +1 -0
  218. package/dist/tegel/p-4cb85347.entry.js +1 -0
  219. package/dist/tegel/p-52031b5a.entry.js +1 -0
  220. package/dist/tegel/p-677baf7f.entry.js +1 -0
  221. package/dist/tegel/p-71797eaf.entry.js +1 -0
  222. package/dist/tegel/p-7373284c.entry.js +1 -0
  223. package/dist/tegel/p-7451779b.entry.js +1 -0
  224. package/dist/tegel/p-77aeea3b.entry.js +1 -0
  225. package/dist/tegel/p-8582d6a7.entry.js +1 -0
  226. package/dist/tegel/p-96021bd0.entry.js +1 -0
  227. package/dist/tegel/p-9d8caf51.entry.js +1 -0
  228. package/dist/tegel/p-a5919930.entry.js +1 -0
  229. package/dist/tegel/p-b01cface.entry.js +1 -0
  230. package/dist/tegel/p-bf896643.entry.js +1 -0
  231. package/dist/tegel/p-c311725c.entry.js +1 -0
  232. package/dist/tegel/p-cf72dfd9.entry.js +1 -0
  233. package/dist/tegel/p-d91caec6.entry.js +1 -0
  234. package/dist/tegel/p-e10eec33.entry.js +1 -0
  235. package/dist/tegel/p-ec26fc38.js +1 -0
  236. package/dist/tegel/p-f2262a69.entry.js +1 -0
  237. package/dist/tegel/p-f2f7aa45.entry.js +1 -0
  238. package/dist/tegel/tegel.css +101 -0
  239. package/dist/tegel/tegel.esm.js +1 -0
  240. package/loader/cdn.js +3 -0
  241. package/loader/index.cjs.js +3 -0
  242. package/loader/index.d.ts +12 -0
  243. package/loader/index.es2017.js +3 -0
  244. package/loader/index.js +4 -0
  245. package/loader/package.json +11 -0
  246. package/package.json +1 -1
@@ -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
+ }
@@ -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 = {};