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.
@@ -61,7 +61,7 @@ export interface ISpinItem<T = number> {
61
61
  style?: string;
62
62
  classItem?: string | null;
63
63
  }
64
- export type TListGroupItem<COLOR extends TDefaultColorPalate = TDefaultColorPalate> = {
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?: COLOR | null;
77
+ badgeColor?: TDefaultColorPalate | null;
78
78
  badgeClass?: string | null;
79
79
  rightText?: string | null;
80
80
  paneName?: string;
@@ -108,7 +108,8 @@ const storeShowText = () => {
108
108
  if (checkInterval === null) {
109
109
  checkInterval = setInterval(() => {
110
110
  update((message) => {
111
- if (message?.dismissAt !== null && (!message || DateCompare(message.dismissAt, 'IsSameOrBefore', 'now', 'seconds'))) {
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",