@mindly/ui-components 7.0.13 → 7.1.1

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ import { CoupleTherapySheetModalFeatureProps } from './types';
3
+ declare const CoupleTherapySheetModalFeature: FC<CoupleTherapySheetModalFeatureProps>;
4
+ export default CoupleTherapySheetModalFeature;
@@ -0,0 +1,2 @@
1
+ export { default as CoupleTherapySheetModalFeature } from './CoupleTherapySheetModalFeature';
2
+ export * from './types';
@@ -0,0 +1,7 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ export type CoupleTherapySheetModalFeatureProps = {
3
+ isOpen: boolean;
4
+ onClose?: () => void;
5
+ onCopyLink?: () => void;
6
+ t?: WithTranslation['t'];
7
+ };
@@ -51,3 +51,4 @@ export * from './DropdownFeature';
51
51
  export * from './TabsFeature';
52
52
  export * from './SpecialistScheduleFeature';
53
53
  export * from './SelectionListFeature';
54
+ export * from './CoupleTherapySheetModalFeature';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconCouple: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconDivercity: FC<IconProps>;
@@ -142,3 +142,5 @@ export * from './IconAlignHorizontalTextLeft';
142
142
  export * from './IconAlignHorizontalTextRight';
143
143
  export * from './IconSort';
144
144
  export * from './IconPerson';
145
+ export * from './IconDivercity';
146
+ export * from './IconCouple';
@@ -15,4 +15,5 @@ export type SessionDetailWidgetProps = {
15
15
  onChatClick?(session: Session): void;
16
16
  onBackClick?(): void;
17
17
  onSpecialistProfileClick?(session: Session): void;
18
+ onCoupleTherapyClick?(session: Session): void;
18
19
  };