intelliwaketssveltekitv25 0.2.44 → 0.2.45
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/Definitions.d.ts +2 -2
- package/dist/Definitions.js +2 -1
- package/package.json +1 -1
package/dist/Definitions.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export interface ISpinItem<T = number> {
|
|
|
61
61
|
style?: string;
|
|
62
62
|
classItem?: string | null;
|
|
63
63
|
}
|
|
64
|
-
export type TListGroupItem
|
|
64
|
+
export type TListGroupItem = {
|
|
65
65
|
title: string;
|
|
66
66
|
sub_title?: string;
|
|
67
67
|
hover_title?: string;
|
|
@@ -74,7 +74,7 @@ export type TListGroupItem<COLOR extends TDefaultColorPalate = TDefaultColorPala
|
|
|
74
74
|
linkClick?: () => void;
|
|
75
75
|
/** undefined = don't show, null = show with spinner, number (0, 1, etc.) = show */
|
|
76
76
|
badgeValue?: number | string | null;
|
|
77
|
-
badgeColor?:
|
|
77
|
+
badgeColor?: TDefaultColorPalate | null;
|
|
78
78
|
badgeClass?: string | null;
|
|
79
79
|
rightText?: string | null;
|
|
80
80
|
paneName?: string;
|
package/dist/Definitions.js
CHANGED
|
@@ -108,7 +108,8 @@ const storeShowText = () => {
|
|
|
108
108
|
if (checkInterval === null) {
|
|
109
109
|
checkInterval = setInterval(() => {
|
|
110
110
|
update((message) => {
|
|
111
|
-
if (message?.dismissAt !== null &&
|
|
111
|
+
if (message?.dismissAt !== null &&
|
|
112
|
+
(!message || DateCompare(message.dismissAt, 'IsSameOrBefore', 'now', 'seconds'))) {
|
|
112
113
|
if (checkInterval) {
|
|
113
114
|
clearInterval(checkInterval);
|
|
114
115
|
checkInterval = null;
|