@things-factory/notification 7.0.44 → 7.0.49
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-client/pages/notification/notification-list-page.d.ts +1 -1
- package/dist-client/pages/notification-rule/notification-rule-importer.d.ts +1 -1
- package/dist-client/pages/notification-rule/notification-rule-list-page.d.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/notification-badge.d.ts +1 -1
- package/dist-client/viewparts/notification-item.d.ts +1 -1
- package/dist-client/viewparts/notification-list.d.ts +1 -1
- package/dist-client/viewparts/notification-sender.d.ts +1 -1
- package/dist-client/viewparts/notification-setting-let.d.ts +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
|
@@ -10,7 +10,7 @@ declare const NotificationBadge_base: (new (...args: any[]) => {
|
|
|
10
10
|
export declare class NotificationBadge extends NotificationBadge_base {
|
|
11
11
|
static styles: import("lit").CSSResult[];
|
|
12
12
|
badge?: number;
|
|
13
|
-
render(): import("lit
|
|
13
|
+
render(): import("lit").TemplateResult<1>;
|
|
14
14
|
stateChanged(state: any): void;
|
|
15
15
|
}
|
|
16
16
|
export {};
|
|
@@ -10,7 +10,7 @@ export declare class NotificationItem extends LitElement {
|
|
|
10
10
|
[key: string]: any;
|
|
11
11
|
};
|
|
12
12
|
newbie?: boolean;
|
|
13
|
-
render(): import("lit
|
|
13
|
+
render(): import("lit").TemplateResult<1>;
|
|
14
14
|
updated(changed: any): void;
|
|
15
15
|
decipherErrorCode(): Promise<void>;
|
|
16
16
|
}
|
|
@@ -12,7 +12,7 @@ declare const NotificationList_base: (new (...args: any[]) => {
|
|
|
12
12
|
export declare class NotificationList extends NotificationList_base {
|
|
13
13
|
static styles: import("lit").CSSResult[];
|
|
14
14
|
history: any[];
|
|
15
|
-
render(): import("lit
|
|
15
|
+
render(): import("lit").TemplateResult<1>;
|
|
16
16
|
onClose(notification: any): void;
|
|
17
17
|
onclearall(): void;
|
|
18
18
|
stateChanged(state: any): void;
|
|
@@ -6,7 +6,7 @@ import { LitElement } from 'lit';
|
|
|
6
6
|
declare const NotificationSender_base: (new (...args: any[]) => LitElement) & typeof LitElement;
|
|
7
7
|
export declare class NotificationSender extends NotificationSender_base {
|
|
8
8
|
static styles: import("lit").CSSResult[];
|
|
9
|
-
render(): import("lit
|
|
9
|
+
render(): import("lit").TemplateResult<1>;
|
|
10
10
|
ontest(): void;
|
|
11
11
|
onReset(): void;
|
|
12
12
|
}
|
|
@@ -10,7 +10,7 @@ export declare class NotificationSettingLet extends NotificationSettingLet_base
|
|
|
10
10
|
subscription?: any;
|
|
11
11
|
supported?: boolean;
|
|
12
12
|
clipboard: any;
|
|
13
|
-
render(): import("lit
|
|
13
|
+
render(): import("lit").TemplateResult<1>;
|
|
14
14
|
updated(changes: any): void;
|
|
15
15
|
connectedCallback(): Promise<void>;
|
|
16
16
|
onClickSwitch(e: any): Promise<void>;
|