@mindly/ui-components 0.1.53 → 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/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/index.d.ts +5 -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>;
|
package/dist/index.d.ts
CHANGED
|
@@ -95,6 +95,11 @@ interface ArchivedConsultationCardProps {
|
|
|
95
95
|
nameAndSurname: string;
|
|
96
96
|
date: string;
|
|
97
97
|
avatar: string;
|
|
98
|
+
isFree?: boolean;
|
|
99
|
+
/**
|
|
100
|
+
* Consultation price
|
|
101
|
+
*/
|
|
102
|
+
price: string;
|
|
98
103
|
['data-testid']?: string;
|
|
99
104
|
}
|
|
100
105
|
declare const ArchivedConsultationCard: React.FC<ArchivedConsultationCardProps>;
|