@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/esm/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[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1926,6 +1926,7 @@ type OnBoardingFlowType = {
|
|
|
1926
1926
|
locale: string;
|
|
1927
1927
|
name: string;
|
|
1928
1928
|
screens: Record<string, OnBoardingScreensType>;
|
|
1929
|
+
isWebToWeb?: boolean;
|
|
1929
1930
|
};
|
|
1930
1931
|
|
|
1931
1932
|
declare enum ContractStatusEnum {
|
|
@@ -2931,6 +2932,7 @@ type SpecialistShortInfoItemFeatureProps = {
|
|
|
2931
2932
|
rating?: number;
|
|
2932
2933
|
isSpecialistUnAvailable?: boolean;
|
|
2933
2934
|
isAuth?: boolean;
|
|
2935
|
+
variantFullName?: TypographyVariantsEnum;
|
|
2934
2936
|
onClickReview?(): void;
|
|
2935
2937
|
};
|
|
2936
2938
|
declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
|
|
@@ -3247,6 +3249,7 @@ type SpecialistAreaListProps = {
|
|
|
3247
3249
|
limit?: number;
|
|
3248
3250
|
t?: WithTranslation['t'];
|
|
3249
3251
|
fillTextWithMatch?: boolean;
|
|
3252
|
+
presentingElement?: HTMLElement;
|
|
3250
3253
|
};
|
|
3251
3254
|
|
|
3252
3255
|
declare const SpecialistAreaList: FC<SpecialistAreaListProps>;
|
|
@@ -3260,6 +3263,7 @@ interface Props$2 extends Omit<TypographyProps, 'children'> {
|
|
|
3260
3263
|
classNameTitle?: string;
|
|
3261
3264
|
onExpand?(): void;
|
|
3262
3265
|
t?: WithTranslation['t'];
|
|
3266
|
+
presentingElement?: HTMLElement;
|
|
3263
3267
|
}
|
|
3264
3268
|
|
|
3265
3269
|
declare const _default$4: React__default.NamedExoticComponent<Props$2>;
|
|
@@ -3272,6 +3276,7 @@ type Props$1 = {
|
|
|
3272
3276
|
limit: number;
|
|
3273
3277
|
t?: WithTranslation['t'];
|
|
3274
3278
|
onLoadMore?(): void;
|
|
3279
|
+
presentingElement?: HTMLElement;
|
|
3275
3280
|
};
|
|
3276
3281
|
interface ReviewListFeatureRef {
|
|
3277
3282
|
openModalReviews: () => void;
|
|
@@ -3284,6 +3289,7 @@ type Props = {
|
|
|
3284
3289
|
className?: string;
|
|
3285
3290
|
classNameTitle?: string;
|
|
3286
3291
|
t?: WithTranslation['t'];
|
|
3292
|
+
presentingElement?: HTMLElement;
|
|
3287
3293
|
};
|
|
3288
3294
|
declare const SpecialistEducationsFeature: FC<Props>;
|
|
3289
3295
|
|
|
@@ -3377,6 +3383,7 @@ type SpecialistDetailWidgetProps = {
|
|
|
3377
3383
|
hasSessions?: boolean;
|
|
3378
3384
|
showContract?: boolean;
|
|
3379
3385
|
showReview?: boolean;
|
|
3386
|
+
presentingElement?: HTMLElement;
|
|
3380
3387
|
onOpenContract?(): void;
|
|
3381
3388
|
onRateSession?(): void;
|
|
3382
3389
|
};
|