@mindly/ui-components 3.37.1 → 3.38.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.
@@ -159,3 +159,5 @@ export { default as SuccessScreen } from './lib/SuccessScreen';
159
159
  export * from './lib/SuccessScreen';
160
160
  export { default as Flag } from './lib/Flag';
161
161
  export * from './lib/Flag';
162
+ export { default as SpecialistProfile } from './lib/SpecialistProfile/SpecialistLangs';
163
+ export * from './lib/SpecialistProfile/SpecialistLangs';
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare const FlagTypes: {
2
+ export declare const FlagTypes: {
3
3
  uk: JSX.Element;
4
4
  ua: JSX.Element;
5
5
  pl: JSX.Element;
@@ -19,6 +19,7 @@ declare type SpecialistCardProps = {
19
19
  isFavouriteSpecialist?: boolean;
20
20
  onCardClickHandler?: () => void;
21
21
  loading?: boolean;
22
+ countryCode?: string;
22
23
  };
23
24
  declare const SpecialistCard: React.FC<SpecialistCardProps>;
24
25
  export default SpecialistCard;
@@ -0,0 +1,12 @@
1
+ import { FC } from 'react';
2
+ declare type SpecialistLangsProps = {
3
+ showLoader?: boolean;
4
+ langs: string[];
5
+ className?: string;
6
+ country: string;
7
+ countryCode: string;
8
+ titleLangs: string;
9
+ titleCountry: string;
10
+ };
11
+ declare const SpecialistLangs: FC<SpecialistLangsProps>;
12
+ export default SpecialistLangs;
@@ -0,0 +1 @@
1
+ export declare const SpecialistLangsWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1 @@
1
+ export { default } from './SpecialistLangs';