@mindly/ui-components 3.41.2 → 3.42.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/index.js.map +1 -1
- package/dist/cjs/types/lib/SpecialistCard/SpecialistCard.d.ts +10 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SpecialistCard/SpecialistCard.d.ts +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
|
@@ -20,6 +20,16 @@ declare type SpecialistCardProps = {
|
|
|
20
20
|
onCardClickHandler?: () => void;
|
|
21
21
|
loading?: boolean;
|
|
22
22
|
countryCode?: string;
|
|
23
|
+
translations: {
|
|
24
|
+
name: string;
|
|
25
|
+
year: string[];
|
|
26
|
+
experiences: string;
|
|
27
|
+
hour: string[];
|
|
28
|
+
practice: string;
|
|
29
|
+
session: string;
|
|
30
|
+
clients: string[];
|
|
31
|
+
sessions: string[];
|
|
32
|
+
};
|
|
23
33
|
};
|
|
24
34
|
declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
25
35
|
export default SpecialistCard;
|
package/dist/index.d.ts
CHANGED
|
@@ -893,6 +893,16 @@ declare type SpecialistCardProps = {
|
|
|
893
893
|
onCardClickHandler?: () => void;
|
|
894
894
|
loading?: boolean;
|
|
895
895
|
countryCode?: string;
|
|
896
|
+
translations: {
|
|
897
|
+
name: string;
|
|
898
|
+
year: string[];
|
|
899
|
+
experiences: string;
|
|
900
|
+
hour: string[];
|
|
901
|
+
practice: string;
|
|
902
|
+
session: string;
|
|
903
|
+
clients: string[];
|
|
904
|
+
sessions: string[];
|
|
905
|
+
};
|
|
896
906
|
};
|
|
897
907
|
declare const SpecialistCard: React.FC<SpecialistCardProps>;
|
|
898
908
|
|