@mindly/ui-components 5.91.3 → 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/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/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 +6 -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
|
@@ -2932,6 +2932,7 @@ type SpecialistShortInfoItemFeatureProps = {
|
|
|
2932
2932
|
rating?: number;
|
|
2933
2933
|
isSpecialistUnAvailable?: boolean;
|
|
2934
2934
|
isAuth?: boolean;
|
|
2935
|
+
variantFullName?: TypographyVariantsEnum;
|
|
2935
2936
|
onClickReview?(): void;
|
|
2936
2937
|
};
|
|
2937
2938
|
declare const SpecialistShortInfoItemFeature: FC<SpecialistShortInfoItemFeatureProps>;
|
|
@@ -3248,6 +3249,7 @@ type SpecialistAreaListProps = {
|
|
|
3248
3249
|
limit?: number;
|
|
3249
3250
|
t?: WithTranslation['t'];
|
|
3250
3251
|
fillTextWithMatch?: boolean;
|
|
3252
|
+
presentingElement?: HTMLElement;
|
|
3251
3253
|
};
|
|
3252
3254
|
|
|
3253
3255
|
declare const SpecialistAreaList: FC<SpecialistAreaListProps>;
|
|
@@ -3261,6 +3263,7 @@ interface Props$2 extends Omit<TypographyProps, 'children'> {
|
|
|
3261
3263
|
classNameTitle?: string;
|
|
3262
3264
|
onExpand?(): void;
|
|
3263
3265
|
t?: WithTranslation['t'];
|
|
3266
|
+
presentingElement?: HTMLElement;
|
|
3264
3267
|
}
|
|
3265
3268
|
|
|
3266
3269
|
declare const _default$4: React__default.NamedExoticComponent<Props$2>;
|
|
@@ -3273,6 +3276,7 @@ type Props$1 = {
|
|
|
3273
3276
|
limit: number;
|
|
3274
3277
|
t?: WithTranslation['t'];
|
|
3275
3278
|
onLoadMore?(): void;
|
|
3279
|
+
presentingElement?: HTMLElement;
|
|
3276
3280
|
};
|
|
3277
3281
|
interface ReviewListFeatureRef {
|
|
3278
3282
|
openModalReviews: () => void;
|
|
@@ -3285,6 +3289,7 @@ type Props = {
|
|
|
3285
3289
|
className?: string;
|
|
3286
3290
|
classNameTitle?: string;
|
|
3287
3291
|
t?: WithTranslation['t'];
|
|
3292
|
+
presentingElement?: HTMLElement;
|
|
3288
3293
|
};
|
|
3289
3294
|
declare const SpecialistEducationsFeature: FC<Props>;
|
|
3290
3295
|
|
|
@@ -3378,6 +3383,7 @@ type SpecialistDetailWidgetProps = {
|
|
|
3378
3383
|
hasSessions?: boolean;
|
|
3379
3384
|
showContract?: boolean;
|
|
3380
3385
|
showReview?: boolean;
|
|
3386
|
+
presentingElement?: HTMLElement;
|
|
3381
3387
|
onOpenContract?(): void;
|
|
3382
3388
|
onRateSession?(): void;
|
|
3383
3389
|
};
|