@mindly/ui-components 0.1.52 → 0.1.54
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/index.js.map +1 -1
- package/dist/cjs/types/lib/archived-consultation-card/ArchivedConsultationCard.d.ts +5 -0
- package/dist/cjs/types/lib/consultation-card/ConsultationCard.d.ts +4 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/archived-consultation-card/ArchivedConsultationCard.d.ts +5 -0
- package/dist/esm/types/lib/consultation-card/ConsultationCard.d.ts +4 -0
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
|
@@ -4,6 +4,11 @@ export interface ArchivedConsultationCardProps {
|
|
|
4
4
|
nameAndSurname: string;
|
|
5
5
|
date: string;
|
|
6
6
|
avatar: string;
|
|
7
|
+
isFree?: boolean;
|
|
8
|
+
/**
|
|
9
|
+
* Consultation price
|
|
10
|
+
*/
|
|
11
|
+
price: string;
|
|
7
12
|
['data-testid']?: string;
|
|
8
13
|
}
|
|
9
14
|
export declare const ArchivedConsultationCard: React.FC<ArchivedConsultationCardProps>;
|
|
@@ -8,6 +8,10 @@ export interface ConsultationCardProps {
|
|
|
8
8
|
time: string;
|
|
9
9
|
avatar: string;
|
|
10
10
|
isFree?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Consultation price
|
|
13
|
+
*/
|
|
14
|
+
price: string;
|
|
11
15
|
['data-container-testid']?: string;
|
|
12
16
|
['data-start-testid']?: string;
|
|
13
17
|
['data-reschedule-testid']?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,10 @@ interface ConsultationCardProps {
|
|
|
48
48
|
time: string;
|
|
49
49
|
avatar: string;
|
|
50
50
|
isFree?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Consultation price
|
|
53
|
+
*/
|
|
54
|
+
price: string;
|
|
51
55
|
['data-container-testid']?: string;
|
|
52
56
|
['data-start-testid']?: string;
|
|
53
57
|
['data-reschedule-testid']?: string;
|
|
@@ -91,6 +95,11 @@ interface ArchivedConsultationCardProps {
|
|
|
91
95
|
nameAndSurname: string;
|
|
92
96
|
date: string;
|
|
93
97
|
avatar: string;
|
|
98
|
+
isFree?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Consultation price
|
|
101
|
+
*/
|
|
102
|
+
price: string;
|
|
94
103
|
['data-testid']?: string;
|
|
95
104
|
}
|
|
96
105
|
declare const ArchivedConsultationCard: React.FC<ArchivedConsultationCardProps>;
|