@mindly/ui-components 8.5.7 → 8.5.8

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.
@@ -6,7 +6,7 @@ export interface ClientCardProps {
6
6
  lastName?: string;
7
7
  avatarUrl?: string;
8
8
  dateText: string;
9
- lastSeenAt?: string | null;
9
+ lastSeenAt?: number | string | null;
10
10
  lastEventType: LastEventType;
11
11
  onClick?: (id: string) => void;
12
12
  className?: string;
@@ -0,0 +1,9 @@
1
+ import React, { FC } from 'react';
2
+ import { RefresherEventDetail } from '@ionic/react';
3
+ type ContainerWithRefresherProps = {
4
+ children: React.ReactNode;
5
+ onIonRefresh?: (e: CustomEvent<RefresherEventDetail>) => void;
6
+ isRefreshingDisabled?: boolean;
7
+ };
8
+ export declare const ContainerWithRefresher: FC<ContainerWithRefresherProps>;
9
+ export {};
package/dist/index.d.ts CHANGED
@@ -2003,7 +2003,7 @@ interface ClientCardProps {
2003
2003
  lastName?: string;
2004
2004
  avatarUrl?: string;
2005
2005
  dateText: string;
2006
- lastSeenAt?: string | null;
2006
+ lastSeenAt?: number | string | null;
2007
2007
  lastEventType: LastEventType;
2008
2008
  onClick?: (id: string) => void;
2009
2009
  className?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "8.5.7",
3
+ "version": "8.5.8",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",