fix(core): update

This commit is contained in:
Philipp Kunz 2021-05-05 20:56:31 +00:00
parent efaf2a78df
commit c6967156d6
2 changed files with 0 additions and 23 deletions

View File

@ -1,22 +0,0 @@
import { DeesElement, html, customElement, cssManager, css } from '@designestate/dees-element';
@customElement('dees-newelement')
export class NewElement extends DeesElement {
public static css = [
cssManager.defaultStyles,
css`
:host {
display: block;
background: ${cssManager.bdTheme('#000', '#fff')};
}
`
]
public static demo = () => html`<dees-newelement></dees-newelement>`;
public render() {
return html`
Hello
`;
}
}

View File

@ -11,4 +11,3 @@ export * from './dees-input-text';
export * from './dees-toast';
export * from './dees-updater';
export * from './dees-windowlayer';
export * from './dees-newelement';