@saasbase-io/core-elements 1.22.0 → 1.22.1
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,11 +1,17 @@
|
|
|
1
1
|
import { BaseElement } from '../../..';
|
|
2
2
|
export declare class SbLogo extends BaseElement {
|
|
3
|
-
get _containerElement(): HTMLLIElement | null;
|
|
4
3
|
id: string;
|
|
5
4
|
imageUrl: string;
|
|
5
|
+
align: string;
|
|
6
|
+
width: string;
|
|
7
|
+
height: string;
|
|
6
8
|
private theme;
|
|
9
|
+
private isSvg;
|
|
7
10
|
private observer?;
|
|
11
|
+
get _containerElement(): HTMLElement | null;
|
|
8
12
|
connectedCallback(): void;
|
|
13
|
+
updated(changed: Map<string, unknown>): void;
|
|
14
|
+
private updateLayoutFromProps;
|
|
9
15
|
disconnectedCallback(): void;
|
|
10
16
|
private getTheme;
|
|
11
17
|
protected createRenderRoot(): this;
|