@mindly/ui-components 3.68.0 → 3.69.0
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 +17 -17
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Consultations/ConsultationCard/types.d.ts +4 -1
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Consultations/ConsultationCard/types.d.ts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare enum ConsultationCardType {
|
|
2
2
|
FEATURE = "feature",
|
|
3
3
|
PAST = "past",
|
|
4
|
-
LAST = "last"
|
|
4
|
+
LAST = "last",
|
|
5
|
+
UNBOOKED = "unbooked"
|
|
5
6
|
}
|
|
6
7
|
export declare type ConsultationCardProps = {
|
|
7
8
|
type: ConsultationCardType;
|
|
@@ -25,5 +26,7 @@ export declare type ConsultationCardProps = {
|
|
|
25
26
|
minutes?: string[];
|
|
26
27
|
from?: string;
|
|
27
28
|
started?: string;
|
|
29
|
+
choose_day_and_time?: string;
|
|
30
|
+
sign_up?: string;
|
|
28
31
|
};
|
|
29
32
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -696,7 +696,8 @@ declare const _default$p: React.NamedExoticComponent<VideoCallInfoProps>;
|
|
|
696
696
|
declare enum ConsultationCardType {
|
|
697
697
|
FEATURE = "feature",
|
|
698
698
|
PAST = "past",
|
|
699
|
-
LAST = "last"
|
|
699
|
+
LAST = "last",
|
|
700
|
+
UNBOOKED = "unbooked"
|
|
700
701
|
}
|
|
701
702
|
declare type ConsultationCardProps = {
|
|
702
703
|
type: ConsultationCardType;
|
|
@@ -720,6 +721,8 @@ declare type ConsultationCardProps = {
|
|
|
720
721
|
minutes?: string[];
|
|
721
722
|
from?: string;
|
|
722
723
|
started?: string;
|
|
724
|
+
choose_day_and_time?: string;
|
|
725
|
+
sign_up?: string;
|
|
723
726
|
};
|
|
724
727
|
};
|
|
725
728
|
|