feat(split-pane): convert to shadow component, add width, max-width, and min-width vars (#19754)

resolves #17088


Co-authored-by: troyanskiy <roman.rosluk@utopix.ch>
This commit is contained in:
Liam DeBeasi
2019-10-30 14:16:39 -04:00
committed by GitHub
parent 420aa66392
commit d80f45516d
10 changed files with 135 additions and 32 deletions

View File

@ -18,7 +18,8 @@ const QUERY: { [key: string]: string } = {
styleUrls: {
ios: 'split-pane.ios.scss',
md: 'split-pane.md.scss'
}
},
shadow: true
})
export class SplitPane implements ComponentInterface {
@ -159,6 +160,7 @@ export class SplitPane implements ComponentInterface {
'split-pane-visible': this.visible
}}
>
<slot></slot>
</Host>
);
}