@mindly/ui-components 3.55.2 → 3.56.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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Consultations/CancelSession/CancelSession.d.ts +1 -0
- package/dist/cjs/types/lib/Consultations/ReSchedule/ReSchedule.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Consultations/CancelSession/CancelSession.d.ts +1 -0
- package/dist/esm/types/lib/Consultations/ReSchedule/ReSchedule.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -829,6 +829,7 @@ declare type CancelSessionProps = {
|
|
|
829
829
|
onReschedule?: () => void;
|
|
830
830
|
isLoading?: boolean;
|
|
831
831
|
locale: string;
|
|
832
|
+
emptyReasonErrorMessage?: string;
|
|
832
833
|
translations: {
|
|
833
834
|
title: string;
|
|
834
835
|
placeholder: string;
|
|
@@ -848,6 +849,7 @@ declare type ReScheduleProps = {
|
|
|
848
849
|
onSubmit?: (message: string) => void;
|
|
849
850
|
isLoading?: boolean;
|
|
850
851
|
locale: string;
|
|
852
|
+
emptyReasonErrorMessage?: string;
|
|
851
853
|
translations?: {
|
|
852
854
|
title?: string;
|
|
853
855
|
placeholder?: string;
|