@mindly/ui-components 5.91.2 → 5.91.4
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 +7 -7
- package/dist/cjs/lib2/features/ReviewListFeature/ReviewListFeature.d.ts +1 -0
- package/dist/cjs/lib2/features/SpecialistAreaListFeature/types.d.ts +1 -0
- package/dist/cjs/lib2/features/SpecialistEducationsFeature/SpecialistEducationsFeature.d.ts +1 -0
- package/dist/cjs/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +2 -0
- package/dist/cjs/lib2/features/TextWithClampFeature/types.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/Badge/styles.d.ts +2 -2
- package/dist/cjs/lib2/shared/utils/mock.d.ts +2 -0
- package/dist/cjs/lib2/widgets/SpecialistDetailWidget/types.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/features/ReviewListFeature/ReviewListFeature.d.ts +1 -0
- package/dist/esm/lib2/features/SpecialistAreaListFeature/types.d.ts +1 -0
- package/dist/esm/lib2/features/SpecialistEducationsFeature/SpecialistEducationsFeature.d.ts +1 -0
- package/dist/esm/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts +2 -0
- package/dist/esm/lib2/features/TextWithClampFeature/types.d.ts +1 -0
- package/dist/esm/lib2/shared/types/onBoardingFlow.type.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/Badge/styles.d.ts +2 -2
- package/dist/esm/lib2/shared/utils/mock.d.ts +2 -0
- package/dist/esm/lib2/widgets/SpecialistDetailWidget/types.d.ts +1 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/cjs/lib2/features/SpecialistShortInfoItemFeature/SpecialistShortInfoItemFeature.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
import { TypographyVariantsEnum } from '../../shared';
|
|
3
4
|
import { Avatar_v2Props } from '../../../lib2/shared/ui/Avatar_v2';
|
|
4
5
|
export type SpecialistShortInfoItemFeatureProps = {
|
|
5
6
|
t?: WithTranslation['t'];
|
|
@@ -15,6 +16,7 @@ export type SpecialistShortInfoItemFeatureProps = {
|
|
|
15
16
|
rating?: number;
|
|
16
17
|
isSpecialistUnAvailable?: boolean;
|
|
17
18
|
isAuth?: boolean;
|
|
19
|
+
variantFullName?: TypographyVariantsEnum;
|
|
18
20
|
onClickReview?(): void;
|
|
19
21
|
};
|
|
20
22
|
declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
|
|
@@ -16,7 +16,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
16
16
|
default: "";
|
|
17
17
|
accent: "";
|
|
18
18
|
};
|
|
19
|
-
}, undefined, "inline-flex justify-center items-center rounded-3xl gap-1", import("tailwind-variants/dist/config").TVConfig<{
|
|
19
|
+
}, undefined, "inline-flex justify-center items-center rounded-3xl gap-1 text-typography-typography-primary font-sans", import("tailwind-variants/dist/config").TVConfig<{
|
|
20
20
|
variant: {
|
|
21
21
|
attention: "";
|
|
22
22
|
neutral: "";
|
|
@@ -88,7 +88,7 @@ export declare const badge: import("tailwind-variants").TVReturnType<{
|
|
|
88
88
|
default: "";
|
|
89
89
|
accent: "";
|
|
90
90
|
};
|
|
91
|
-
}, undefined, "inline-flex justify-center items-center rounded-3xl gap-1", import("tailwind-variants/dist/config").TVConfig<{
|
|
91
|
+
}, undefined, "inline-flex justify-center items-center rounded-3xl gap-1 text-typography-typography-primary font-sans", import("tailwind-variants/dist/config").TVConfig<{
|
|
92
92
|
variant: {
|
|
93
93
|
attention: "";
|
|
94
94
|
neutral: "";
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { UserType } from '../types/user';
|
|
2
2
|
import { Specialist } from '../types/specialistTypes';
|
|
3
|
+
import { SpecialistReview } from '../types';
|
|
3
4
|
export declare const mockT: (translate?: Record<string, string>) => TFunction<import("react-i18next").FallbackNs<Ns>, KPrefix>;
|
|
4
5
|
export declare const specialist: Specialist;
|
|
5
6
|
export declare const currentUser: UserType;
|
|
7
|
+
export declare const listReviews: SpecialistReview[];
|