@mindly/ui-components 5.108.0 → 5.108.2
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 +3 -3
- package/dist/cjs/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -1
- package/dist/cjs/lib2/shared/types/user.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxIconItem.d.ts +4 -3
- package/dist/cjs/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/features/SpecialistInfoColumnFeature/SpecialistInfoColumnFeature.d.ts +1 -1
- package/dist/esm/lib2/shared/types/user.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxIconItem.d.ts +4 -3
- package/dist/esm/lib2/widgets/SpecialistCardWidget/SpecialistCardWidget.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export type SpecialistInfoColumnFeatureProps = {
|
|
|
11
11
|
sessionDurationMinutes: number;
|
|
12
12
|
currentPriceType: SupportedCurrency;
|
|
13
13
|
className?: string;
|
|
14
|
-
|
|
14
|
+
userBalance?: number;
|
|
15
15
|
};
|
|
16
16
|
declare const SpecialistInfoColumnFeature: FC<SpecialistInfoColumnFeatureProps>;
|
|
17
17
|
export default SpecialistInfoColumnFeature;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Node } from 'react-stately';
|
|
3
3
|
import { VariantType } from '../ListBox/types';
|
|
4
|
-
import { ResponseFileType } from '../../types';
|
|
5
|
-
declare const _default: React.MemoExoticComponent<({ item, isSelected, enableSelection, variant, labelProps, type, isOnboardingPreview, image, selectionMode, }: {
|
|
4
|
+
import { IconProps, ResponseFileType } from '../../types';
|
|
5
|
+
declare const _default: React.MemoExoticComponent<({ item, isSelected, enableSelection, variant, labelProps, type, isOnboardingPreview, image, selectionMode, selectedIconProps, selectionIconClassName, }: {
|
|
6
6
|
isSelected: boolean;
|
|
7
|
-
selectionIconClassName: string;
|
|
8
7
|
labelProps: React.DOMAttributes<HTMLDivElement>;
|
|
9
8
|
variant: VariantType;
|
|
10
9
|
item: Node<unknown>;
|
|
@@ -13,5 +12,7 @@ declare const _default: React.MemoExoticComponent<({ item, isSelected, enableSel
|
|
|
13
12
|
isOnboardingPreview?: boolean | undefined;
|
|
14
13
|
image?: ResponseFileType | null | undefined;
|
|
15
14
|
selectionMode?: "none" | "multiple" | "single" | undefined;
|
|
15
|
+
selectedIconProps: IconProps;
|
|
16
|
+
selectionIconClassName: string;
|
|
16
17
|
}) => JSX.Element>;
|
|
17
18
|
export default _default;
|
|
@@ -16,5 +16,5 @@ export declare const WithoutExperience: Story;
|
|
|
16
16
|
export declare const WithSuperSpecialistAndNewSpecialist: Story;
|
|
17
17
|
export declare const WithSuperSpecialistAndNewSpecialistWithoutMatch: Story;
|
|
18
18
|
export declare const WithUsdCurrency: Story;
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const WithUserBalance: Story;
|
|
20
20
|
export declare const FullPaid: Story;
|