@mindly/ui-components 3.36.2 → 3.36.4
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/SpecialistCard/SpecialistCard.d.ts +5 -0
- package/dist/cjs/types/lib/SpecialistProfile/StatisticsScroll/StatisticsScroll.d.ts +5 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistCard/SpecialistCard.d.ts +5 -0
- package/dist/esm/types/lib/SpecialistProfile/StatisticsScroll/StatisticsScroll.d.ts +5 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -2,6 +2,11 @@ import React from 'react';
|
|
|
2
2
|
declare type SpecialistCardProps = {
|
|
3
3
|
fullName?: string;
|
|
4
4
|
specialization?: string;
|
|
5
|
+
priceCurrencySign?: string;
|
|
6
|
+
pricePerSession?: number;
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated
|
|
9
|
+
*/
|
|
5
10
|
pricePerSessionUAH?: number;
|
|
6
11
|
sessionDurationInMinutes?: number;
|
|
7
12
|
avatarLink?: string | null;
|
|
@@ -3,6 +3,11 @@ export declare type SpecialistStatisticsCardProps = {
|
|
|
3
3
|
activeClients?: number;
|
|
4
4
|
sessionsCount?: number;
|
|
5
5
|
showLoader?: boolean;
|
|
6
|
+
priceCurrencySign?: string;
|
|
7
|
+
pricePerSession?: number;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated
|
|
10
|
+
*/
|
|
6
11
|
priceUAH?: number;
|
|
7
12
|
hoursOfPractice?: number;
|
|
8
13
|
yearOfExperience?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -842,6 +842,11 @@ declare type SpecialistStatisticsCardProps = {
|
|
|
842
842
|
activeClients?: number;
|
|
843
843
|
sessionsCount?: number;
|
|
844
844
|
showLoader?: boolean;
|
|
845
|
+
priceCurrencySign?: string;
|
|
846
|
+
pricePerSession?: number;
|
|
847
|
+
/**
|
|
848
|
+
* @deprecated
|
|
849
|
+
*/
|
|
845
850
|
priceUAH?: number;
|
|
846
851
|
hoursOfPractice?: number;
|
|
847
852
|
yearOfExperience?: number;
|
|
@@ -870,6 +875,11 @@ declare const _default$7: React.NamedExoticComponent<BookingSpecialistInfoProps>
|
|
|
870
875
|
declare type SpecialistCardProps = {
|
|
871
876
|
fullName?: string;
|
|
872
877
|
specialization?: string;
|
|
878
|
+
priceCurrencySign?: string;
|
|
879
|
+
pricePerSession?: number;
|
|
880
|
+
/**
|
|
881
|
+
* @deprecated
|
|
882
|
+
*/
|
|
873
883
|
pricePerSessionUAH?: number;
|
|
874
884
|
sessionDurationInMinutes?: number;
|
|
875
885
|
avatarLink?: string | null;
|