(itemDomRef: HTMLElement)
| 1204 | } |
| 1205 | |
| 1206 | _getItemWidth(itemDomRef: HTMLElement) { |
| 1207 | const styles = window.getComputedStyle(itemDomRef); |
| 1208 | const margins = Number.parseInt(styles.marginLeft) + Number.parseInt(styles.marginRight); |
| 1209 | |
| 1210 | return itemDomRef.offsetWidth + margins; |
| 1211 | } |
| 1212 | |
| 1213 | _getSelectedItemIndexAndWidth(itemsDomRefs: Array<TabInStrip | TabSeparatorInStrip>, selectedTabDomRef: TabInStrip | undefined) { |
| 1214 | if (!selectedTabDomRef) { |
no outgoing calls
no test coverage detected