fix(core): update

This commit is contained in:
2024-04-20 12:21:41 +02:00
commit c24262f765
84 changed files with 14340 additions and 0 deletions

View File

@ -0,0 +1,33 @@
import * as plugins from '../../plugins.js';
import {
customElement,
html,
DeesElement,
property,
type TemplateResult,
cssManager,
css,
unsafeCSS,
type CSSResult,
state,
} from '@design.estate/dees-element';
@customElement('cloudly-sectionheading')
export class CloudlySectionheading extends DeesElement {
public static styles = [
cssManager.defaultStyles,
css`
h1 {
font-family: 'Cal Sans';
letter-spacing: 0.025em;
}
`,
]
public render() {
return html`
<h1><slot></slot></h1>
`;
}
}

View File

@ -0,0 +1 @@
export * from './cloudly-sectionheading.js';