@mindly/ui-components 3.60.4 → 3.60.5
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 +17 -17
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/SpecialistProfile/ReviewCard/ReviewCard.d.ts +1 -0
- package/dist/cjs/types/lib/SpecialistProfile/ReviewStatistics/ReviewStatistics.d.ts +1 -0
- package/dist/esm/index.js +20 -20
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistProfile/ReviewCard/ReviewCard.d.ts +1 -0
- package/dist/esm/types/lib/SpecialistProfile/ReviewStatistics/ReviewStatistics.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1263,6 +1263,7 @@ declare type ReviewCardProps = {
|
|
|
1263
1263
|
onShowMoreButtonClick?: () => void;
|
|
1264
1264
|
showAllReview?: boolean;
|
|
1265
1265
|
type: 'card' | 'list';
|
|
1266
|
+
loading?: boolean;
|
|
1266
1267
|
translations: {
|
|
1267
1268
|
showMore: string;
|
|
1268
1269
|
showAllReviews: string;
|
|
@@ -1280,6 +1281,7 @@ declare type ReviewStatisticsProps = {
|
|
|
1280
1281
|
statistics: {
|
|
1281
1282
|
[key: string]: number;
|
|
1282
1283
|
};
|
|
1284
|
+
loading?: boolean;
|
|
1283
1285
|
translations: {
|
|
1284
1286
|
reviews: string[];
|
|
1285
1287
|
};
|