(styles: string[], selector: string, hostSelector: string)
| 624 | } |
| 625 | |
| 626 | function compileStyles(styles: string[], selector: string, hostSelector: string): string[] { |
| 627 | const shadowCss = new ShadowCss(); |
| 628 | return styles.map((style) => { |
| 629 | return shadowCss!.shimCssText(style, selector, hostSelector); |
| 630 | }); |
| 631 | } |
| 632 | |
| 633 | /** |
| 634 | * Encapsulates a CSS stylesheet with emulated view encapsulation. |
no test coverage detected
searching dependent graphs…