@saasbase-io/core-elements 1.1.19 → 1.1.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,3 @@
1
1
  export * from './sb-logo';
2
2
  export * from './sb-otp';
3
+ export * from './sb-title';
@@ -0,0 +1,10 @@
1
+ import { SaasBaseLayout } from '../..';
2
+ import { LitElement } from '../../../../node_modules/lit';
3
+ export declare class SbHeader extends LitElement {
4
+ private _cachedChildren;
5
+ align: string;
6
+ gap: string;
7
+ component: SaasBaseLayout;
8
+ connectedCallback(): void;
9
+ render(): import('../../../../node_modules/lit-html').TemplateResult<1>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { LitElement } from '../../../../node_modules/lit';
2
+ import { SaasBaseLayout } from '../..';
3
+ export declare class SbSubtitle extends LitElement {
4
+ id: string;
5
+ content: string;
6
+ component: SaasBaseLayout;
7
+ protected createRenderRoot(): this;
8
+ render(): import('../../../../node_modules/lit-html').TemplateResult<1>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { LitElement } from '../../../../node_modules/lit';
2
+ import { SaasBaseLayout } from '../..';
3
+ export declare class SbTitle extends LitElement {
4
+ id: string;
5
+ content: string;
6
+ component: SaasBaseLayout;
7
+ protected createRenderRoot(): this;
8
+ render(): import('../../../../node_modules/lit-html').TemplateResult<1>;
9
+ }