@mindly/ui-components 3.37.2 → 3.38.1
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 +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/cjs/types/lib/SpecialistCard/SpecialistCard.d.ts +1 -0
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistLangs/SpecialistLangs.d.ts +12 -0
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistLangs/SpecialistLangs.style.d.ts +1 -0
- package/dist/cjs/types/lib/SpecialistProfile/SpecialistLangs/index.d.ts +1 -0
- package/dist/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/esm/types/lib/SpecialistCard/SpecialistCard.d.ts +1 -0
- package/dist/esm/types/lib/SpecialistProfile/SpecialistLangs/SpecialistLangs.d.ts +12 -0
- package/dist/esm/types/lib/SpecialistProfile/SpecialistLangs/SpecialistLangs.style.d.ts +1 -0
- package/dist/esm/types/lib/SpecialistProfile/SpecialistLangs/index.d.ts +1 -0
- package/dist/index.d.ts +13 -1
- package/package.json +1 -1
|
@@ -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 SpecialistLangs } from './lib/SpecialistProfile/SpecialistLangs';
|
|
163
|
+
export * from './lib/SpecialistProfile/SpecialistLangs';
|
|
@@ -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';
|