@mindly/ui-components 5.98.6 → 5.98.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.
- package/dist/cjs/index.js +6 -6
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/cjs/lib2/widgets/SessionsListWidget/types.d.ts +2 -1
- package/dist/esm/index.js +6 -6
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/esm/lib2/widgets/SessionsListWidget/types.d.ts +2 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
|
@@ -5,7 +5,8 @@ export type SessionsWidgetProps = {
|
|
|
5
5
|
previousSessions?: Session[];
|
|
6
6
|
hasMorePreviousSessions?: boolean;
|
|
7
7
|
locale: string;
|
|
8
|
-
|
|
8
|
+
isLoadingFutureSessions?: boolean;
|
|
9
|
+
isLoadingPreviousSessions?: boolean;
|
|
9
10
|
maxPeriodToReviewPastSessionInHours?: number;
|
|
10
11
|
loadPreviousSessions: () => Promise<{
|
|
11
12
|
list: Session[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1516,6 +1516,7 @@ type OnBoardingScreenButtonType = {
|
|
|
1516
1516
|
};
|
|
1517
1517
|
type OnBoardingScreenSkipButtonType = {
|
|
1518
1518
|
skipButtonText?: string | null;
|
|
1519
|
+
showSkipButton?: boolean;
|
|
1519
1520
|
};
|
|
1520
1521
|
type OnBoardingScreenBgType = {
|
|
1521
1522
|
backgroundColor?: string | null;
|
|
@@ -3936,7 +3937,8 @@ type SessionsWidgetProps = {
|
|
|
3936
3937
|
previousSessions?: Session[];
|
|
3937
3938
|
hasMorePreviousSessions?: boolean;
|
|
3938
3939
|
locale: string;
|
|
3939
|
-
|
|
3940
|
+
isLoadingFutureSessions?: boolean;
|
|
3941
|
+
isLoadingPreviousSessions?: boolean;
|
|
3940
3942
|
maxPeriodToReviewPastSessionInHours?: number;
|
|
3941
3943
|
loadPreviousSessions: () => Promise<{
|
|
3942
3944
|
list: Session[];
|