@mindly/ui-components 8.7.3 → 8.8.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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -0
- package/dist/cjs/lib2/features/SuccessModalFeature/SuccessModalFeature.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/user.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -0
- package/dist/esm/lib2/features/SuccessModalFeature/SuccessModalFeature.d.ts +1 -0
- package/dist/esm/lib2/shared/types/user.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export type SpecialistInfoColumnFeatureProps = {
|
|
|
13
13
|
className?: string;
|
|
14
14
|
userBalance?: number;
|
|
15
15
|
locale: SupportedLocales;
|
|
16
|
+
discountPercent?: number;
|
|
16
17
|
};
|
|
17
18
|
declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
|
|
18
19
|
export default SpecialistInfoColumnFeature;
|
|
@@ -15,6 +15,7 @@ type SuccessModalFeatureProps = {
|
|
|
15
15
|
onSyncClick?: () => void;
|
|
16
16
|
onContinueClick?: () => void;
|
|
17
17
|
showGoogleCalendar?: boolean;
|
|
18
|
+
additionalContent?: React.ReactNode;
|
|
18
19
|
};
|
|
19
20
|
declare const SuccessModalFeature: FC<SuccessModalFeatureProps>;
|
|
20
21
|
export default SuccessModalFeature;
|
package/dist/index.d.ts
CHANGED
|
@@ -1124,6 +1124,7 @@ type UserType = {
|
|
|
1124
1124
|
global_personal_price_currency?: SupportedCurrency;
|
|
1125
1125
|
possible_price_filters?: number[];
|
|
1126
1126
|
balance?: number;
|
|
1127
|
+
discountPercent?: number;
|
|
1127
1128
|
/**
|
|
1128
1129
|
* @deprecated Do not use this field, use filters instead
|
|
1129
1130
|
*/
|
|
@@ -2909,6 +2910,7 @@ type SpecialistInfoColumnFeatureProps = {
|
|
|
2909
2910
|
className?: string;
|
|
2910
2911
|
userBalance?: number;
|
|
2911
2912
|
locale: SupportedLocales;
|
|
2913
|
+
discountPercent?: number;
|
|
2912
2914
|
};
|
|
2913
2915
|
declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
|
|
2914
2916
|
|
|
@@ -3929,6 +3931,7 @@ type SuccessModalFeatureProps = {
|
|
|
3929
3931
|
onSyncClick?: () => void;
|
|
3930
3932
|
onContinueClick?: () => void;
|
|
3931
3933
|
showGoogleCalendar?: boolean;
|
|
3934
|
+
additionalContent?: React__default.ReactNode;
|
|
3932
3935
|
};
|
|
3933
3936
|
declare const SuccessModalFeature: FC<SuccessModalFeatureProps>;
|
|
3934
3937
|
|