@saasbase-io/core-elements 1.1.21 → 1.1.23
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.
- package/dist/components/renderers/_updated/index.d.ts +3 -0
- package/dist/components/renderers/_updated/sb-countdown.d.ts +23 -0
- package/dist/components/renderers/_updated/sb-gap.d.ts +13 -0
- package/dist/index.js +388 -374
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2523 -2360
- package/dist/index.mjs.map +1 -1
- package/dist/types/styles/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { LitElement } from '../../../../node_modules/lit';
|
|
2
|
+
import { Style } from '../../../types';
|
|
3
|
+
import { SaasBaseLayout } from '../..';
|
|
4
|
+
export declare class SbCountdown extends LitElement {
|
|
5
|
+
content: string;
|
|
6
|
+
duration: number;
|
|
7
|
+
redirectUrl: string;
|
|
8
|
+
id: string;
|
|
9
|
+
sbStyle: Style;
|
|
10
|
+
className: string;
|
|
11
|
+
component: SaasBaseLayout;
|
|
12
|
+
private seconds;
|
|
13
|
+
private timerId;
|
|
14
|
+
protected createRenderRoot(): this;
|
|
15
|
+
connectedCallback(): void;
|
|
16
|
+
disconnectedCallback(): void;
|
|
17
|
+
private initializeCountdown;
|
|
18
|
+
private startTimer;
|
|
19
|
+
private completeCountdown;
|
|
20
|
+
private clearTimer;
|
|
21
|
+
private renderContent;
|
|
22
|
+
render(): import('../../../../node_modules/lit-html').TemplateResult<1>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { LitElement } from '../../../../node_modules/lit';
|
|
2
|
+
import { Style } from '../../../types';
|
|
3
|
+
import { SaasBaseLayout } from '../..';
|
|
4
|
+
export declare class SbGap extends LitElement {
|
|
5
|
+
size: string;
|
|
6
|
+
type: "vertical" | "horizontal";
|
|
7
|
+
id: string;
|
|
8
|
+
sbStyle: Style;
|
|
9
|
+
className: string;
|
|
10
|
+
component: SaasBaseLayout;
|
|
11
|
+
protected createRenderRoot(): this;
|
|
12
|
+
render(): import('../../../../node_modules/lit-html').TemplateResult<1>;
|
|
13
|
+
}
|