@mindly/ui-components 8.7.3 → 8.8.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 +1 -1
- package/dist/cjs/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/user.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -0
- package/dist/esm/lib2/shared/types/user.d.ts +1 -0
- package/dist/index.d.ts +2 -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;
|
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
|
|