@mindly/ui-components 5.19.0 → 5.20.0
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/configs/tailwind/colors.d.ts +2 -0
- package/dist/cjs/index.js +14 -5
- package/dist/cjs/lib2/shared/assets/icons/IconCancelRounded.d.ts +10 -0
- package/dist/cjs/lib2/shared/assets/icons/IconCapFilled.d.ts +10 -0
- package/dist/cjs/lib2/shared/assets/icons/IconCheck.d.ts +9 -0
- package/dist/cjs/lib2/shared/assets/icons/IconWarning.d.ts +7 -0
- package/dist/cjs/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/cjs/lib2/shared/hooks/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +23 -0
- package/dist/cjs/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +9 -0
- package/dist/cjs/lib2/shared/providers/CircleRatingProvider/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/providers/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +69 -0
- package/dist/cjs/lib2/shared/ui/ItemCard/ItemCard.d.ts +4 -0
- package/dist/cjs/lib2/shared/ui/ItemCard/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/ItemCard/styles.d.ts +50 -0
- package/dist/cjs/lib2/shared/ui/ItemCard/types.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircle.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircle.stories.d.ts +6 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleBreakpoints.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleContent.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleIcons.d.ts +10 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleLegend.d.ts +3 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +5 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/index.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/RatingCircle/styles.d.ts +200 -0
- package/dist/cjs/lib2/shared/ui/index.d.ts +2 -0
- package/dist/esm/configs/tailwind/colors.d.ts +2 -0
- package/dist/esm/index.js +14 -5
- package/dist/esm/lib2/shared/assets/icons/IconCancelRounded.d.ts +10 -0
- package/dist/esm/lib2/shared/assets/icons/IconCapFilled.d.ts +10 -0
- package/dist/esm/lib2/shared/assets/icons/IconCheck.d.ts +9 -0
- package/dist/esm/lib2/shared/assets/icons/IconWarning.d.ts +7 -0
- package/dist/esm/lib2/shared/assets/icons/index.d.ts +4 -0
- package/dist/esm/lib2/shared/hooks/index.d.ts +1 -0
- package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +23 -0
- package/dist/esm/lib2/shared/providers/CircleRatingProvider/CircleRatingProvider.d.ts +9 -0
- package/dist/esm/lib2/shared/providers/CircleRatingProvider/index.d.ts +1 -0
- package/dist/esm/lib2/shared/providers/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/index.d.ts +1 -0
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +69 -0
- package/dist/esm/lib2/shared/ui/ItemCard/ItemCard.d.ts +4 -0
- package/dist/esm/lib2/shared/ui/ItemCard/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/ItemCard/styles.d.ts +50 -0
- package/dist/esm/lib2/shared/ui/ItemCard/types.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircle.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircle.stories.d.ts +6 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleBreakpoints.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleContent.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleIcons.d.ts +10 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleLegend.d.ts +3 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/RatingCircleWrapper.d.ts +5 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/index.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/RatingCircle/styles.d.ts +200 -0
- package/dist/esm/lib2/shared/ui/index.d.ts +2 -0
- package/dist/index.d.ts +222 -91
- package/package.json +1 -1
- package/src/configs/tailwind/colors.ts +2 -0
- package/src/lib2/shared/css/tailwind.css +2 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
style?: React.CSSProperties;
|
|
8
|
+
}
|
|
9
|
+
export declare const IconCancelRounded: FC<IconProps>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
4
|
+
size?: number | string;
|
|
5
|
+
color?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
style?: React.CSSProperties;
|
|
8
|
+
}
|
|
9
|
+
export declare const IconCapFilled: FC<IconProps>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IconProps extends React.SVGAttributes<SVGElement> {
|
|
3
|
+
size?: number | string;
|
|
4
|
+
color?: string;
|
|
5
|
+
className?: string;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
export declare function IconCheck({ color, size, ...other }: IconProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -32,6 +32,7 @@ export * from './IconLetter';
|
|
|
32
32
|
export * from './IconSpinner';
|
|
33
33
|
export * from './IconEye';
|
|
34
34
|
export * from './IconEyeOff';
|
|
35
|
+
export * from './IconWarning';
|
|
35
36
|
export * from './IconGift';
|
|
36
37
|
export * from './IconCreditCard';
|
|
37
38
|
export * from './IconQuestion';
|
|
@@ -39,3 +40,6 @@ export * from './IconPaper';
|
|
|
39
40
|
export * from './IconChat3d';
|
|
40
41
|
export * from './IconNotficationMuted';
|
|
41
42
|
export * from './IconCheckSmall';
|
|
43
|
+
export * from './IconCheck';
|
|
44
|
+
export * from './IconCapFilled';
|
|
45
|
+
export * from './IconCancelRounded';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { WithTranslation } from 'react-i18next';
|
|
2
|
+
import { CircleRatingRange, CircleRatingDataProps, CircleRatingDataResult, ProgressRangeProps, BreakPointPositionResult, CircleRatingContextData } from '../types/ratingCircleTypes';
|
|
3
|
+
export declare const BREAKPOINT_ICON_SIZE = 20;
|
|
4
|
+
export declare function useCircleRatingRenderData({ progress, size }: CircleRatingDataProps): CircleRatingDataResult;
|
|
5
|
+
export declare function useRangeIndex({ progress, ranges }: ProgressRangeProps): number;
|
|
6
|
+
export declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
|
|
7
|
+
maxValue: number;
|
|
8
|
+
breakPoint: number;
|
|
9
|
+
}): number;
|
|
10
|
+
export declare function useBreakPointsPosition({ maxValue, breakPoints, radius, strokeWidth, }: {
|
|
11
|
+
maxValue?: number;
|
|
12
|
+
breakPoints?: number[];
|
|
13
|
+
radius?: number;
|
|
14
|
+
strokeWidth?: number;
|
|
15
|
+
}): BreakPointPositionResult[];
|
|
16
|
+
export declare function useRatingCircleLegend({ ranges, t }: {
|
|
17
|
+
ranges: CircleRatingRange[];
|
|
18
|
+
t: WithTranslation['t'];
|
|
19
|
+
}): string[];
|
|
20
|
+
export declare function useRatingCircleBreakPoints({ ranges }: {
|
|
21
|
+
ranges: CircleRatingRange[];
|
|
22
|
+
}): number[];
|
|
23
|
+
export declare function useRatingContext(): CircleRatingContextData;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { WithTranslation } from 'react-i18next';
|
|
3
|
+
import { CircleRatingContextProps, CircleRatingContextData } from '../../types';
|
|
4
|
+
export declare const CircleRatingContext: React.Context<CircleRatingContextData>;
|
|
5
|
+
export declare const CircleRatingProvider: ({ children, data, t, }: {
|
|
6
|
+
children: JSX.Element;
|
|
7
|
+
data: CircleRatingContextProps;
|
|
8
|
+
t: TFunction<import("react-i18next").FallbackNs<Ns>, KPrefix>;
|
|
9
|
+
}) => JSX.Element | null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './CircleRatingProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ratingCircleTypes';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export declare enum CircleRatingSize {
|
|
2
|
+
'S' = "S",
|
|
3
|
+
'M' = "M",
|
|
4
|
+
'L' = "L"
|
|
5
|
+
}
|
|
6
|
+
export type SizeValues = {
|
|
7
|
+
[size in CircleRatingSize]: number;
|
|
8
|
+
};
|
|
9
|
+
export type CircleRatingContent = {
|
|
10
|
+
text?: string;
|
|
11
|
+
isPercentage?: boolean;
|
|
12
|
+
showIcon?: boolean;
|
|
13
|
+
};
|
|
14
|
+
export type CircleRatingDataProps = {
|
|
15
|
+
progress: number;
|
|
16
|
+
size: keyof typeof CircleRatingSize;
|
|
17
|
+
};
|
|
18
|
+
export type CircleRatingDataResult = {
|
|
19
|
+
circleSize: number;
|
|
20
|
+
radius: number;
|
|
21
|
+
circumference: number;
|
|
22
|
+
dash: number;
|
|
23
|
+
viewBox: string;
|
|
24
|
+
strokeWidth: number;
|
|
25
|
+
};
|
|
26
|
+
export type CircleRatingRange = {
|
|
27
|
+
min: number | null;
|
|
28
|
+
max: number | null;
|
|
29
|
+
};
|
|
30
|
+
export type CircleRatingCommonProps = {};
|
|
31
|
+
export type ProgressRangeProps = {
|
|
32
|
+
progress: number;
|
|
33
|
+
ranges: CircleRatingRange[];
|
|
34
|
+
isColorless?: boolean;
|
|
35
|
+
};
|
|
36
|
+
export type BreakPointPositionProps = {
|
|
37
|
+
radius?: number;
|
|
38
|
+
strokeWidth?: number;
|
|
39
|
+
progress?: number;
|
|
40
|
+
};
|
|
41
|
+
export type BreakPointPositionResult = {
|
|
42
|
+
top: number;
|
|
43
|
+
left: number;
|
|
44
|
+
};
|
|
45
|
+
export type CircleRatingComponentProps = {
|
|
46
|
+
size: keyof typeof CircleRatingSize;
|
|
47
|
+
content?: CircleRatingContent | null;
|
|
48
|
+
progress: number;
|
|
49
|
+
ranges: CircleRatingRange[];
|
|
50
|
+
isColorless?: boolean;
|
|
51
|
+
isRatingDisabled?: boolean;
|
|
52
|
+
isShowLegend?: boolean;
|
|
53
|
+
isShowBreakPoints?: boolean;
|
|
54
|
+
};
|
|
55
|
+
export type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
56
|
+
legend?: string[];
|
|
57
|
+
breakPoints?: number[];
|
|
58
|
+
};
|
|
59
|
+
export type CircleRatingContextData = CircleRatingContextProps & {
|
|
60
|
+
circleSize: number;
|
|
61
|
+
radius: number;
|
|
62
|
+
strokeWidth: number;
|
|
63
|
+
circumference: number;
|
|
64
|
+
dash: number;
|
|
65
|
+
viewBox: string;
|
|
66
|
+
maxValue: number;
|
|
67
|
+
percentage: number;
|
|
68
|
+
styles: any;
|
|
69
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as ItemCard } from './ItemCard';
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export declare const itemCardStyles: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
variant: {
|
|
3
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
4
|
+
};
|
|
5
|
+
size: {
|
|
6
|
+
M: "p-5 rounded-[30px]";
|
|
7
|
+
};
|
|
8
|
+
}, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
9
|
+
variant: {
|
|
10
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
11
|
+
};
|
|
12
|
+
size: {
|
|
13
|
+
M: "p-5 rounded-[30px]";
|
|
14
|
+
};
|
|
15
|
+
}, {
|
|
16
|
+
variant: {
|
|
17
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
18
|
+
};
|
|
19
|
+
size: {
|
|
20
|
+
M: "p-5 rounded-[30px]";
|
|
21
|
+
};
|
|
22
|
+
}>, {
|
|
23
|
+
variant: {
|
|
24
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
25
|
+
};
|
|
26
|
+
size: {
|
|
27
|
+
M: "p-5 rounded-[30px]";
|
|
28
|
+
};
|
|
29
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
30
|
+
variant: {
|
|
31
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
32
|
+
};
|
|
33
|
+
size: {
|
|
34
|
+
M: "p-5 rounded-[30px]";
|
|
35
|
+
};
|
|
36
|
+
}, undefined, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
37
|
+
variant: {
|
|
38
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
39
|
+
};
|
|
40
|
+
size: {
|
|
41
|
+
M: "p-5 rounded-[30px]";
|
|
42
|
+
};
|
|
43
|
+
}, {
|
|
44
|
+
variant: {
|
|
45
|
+
neutral: "bg-color-background-anti-flash-light";
|
|
46
|
+
};
|
|
47
|
+
size: {
|
|
48
|
+
M: "p-5 rounded-[30px]";
|
|
49
|
+
};
|
|
50
|
+
}>, unknown, unknown, undefined>>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import RatingCircleWrapper from './RatingCircleWrapper';
|
|
3
|
+
declare const meta: Meta<typeof RatingCircleWrapper>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof RatingCircleWrapper>;
|
|
6
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare function CircleRatingIcon({ index, className, }: {
|
|
2
|
+
index: number;
|
|
3
|
+
className: string;
|
|
4
|
+
}): JSX.Element;
|
|
5
|
+
export declare function CircleBreakpointIcon({ index, top, left, className, }: {
|
|
6
|
+
index: number;
|
|
7
|
+
top: number;
|
|
8
|
+
left: number;
|
|
9
|
+
className: string;
|
|
10
|
+
}): JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as RatingCircleWrapper } from './RatingCircleWrapper';
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
export declare const circleRatingStyles: import("tailwind-variants").TVReturnType<{
|
|
2
|
+
isColorless: {
|
|
3
|
+
true: {
|
|
4
|
+
coloredStroke: string;
|
|
5
|
+
contentColor: string;
|
|
6
|
+
icon: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
color: {
|
|
10
|
+
0: {
|
|
11
|
+
coloredStroke: string;
|
|
12
|
+
contentColor: string;
|
|
13
|
+
icon: string;
|
|
14
|
+
};
|
|
15
|
+
1: {
|
|
16
|
+
coloredStroke: string;
|
|
17
|
+
contentColor: string;
|
|
18
|
+
icon: string;
|
|
19
|
+
};
|
|
20
|
+
2: {
|
|
21
|
+
coloredStroke: string;
|
|
22
|
+
contentColor: string;
|
|
23
|
+
icon: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
}, {
|
|
27
|
+
breakPoint: string;
|
|
28
|
+
defaultStroke: string;
|
|
29
|
+
coloredStroke: string;
|
|
30
|
+
icon: string;
|
|
31
|
+
contentWrapper: string;
|
|
32
|
+
contentColor: string;
|
|
33
|
+
legendItem: string;
|
|
34
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
35
|
+
isColorless: {
|
|
36
|
+
true: {
|
|
37
|
+
coloredStroke: string;
|
|
38
|
+
contentColor: string;
|
|
39
|
+
icon: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
color: {
|
|
43
|
+
0: {
|
|
44
|
+
coloredStroke: string;
|
|
45
|
+
contentColor: string;
|
|
46
|
+
icon: string;
|
|
47
|
+
};
|
|
48
|
+
1: {
|
|
49
|
+
coloredStroke: string;
|
|
50
|
+
contentColor: string;
|
|
51
|
+
icon: string;
|
|
52
|
+
};
|
|
53
|
+
2: {
|
|
54
|
+
coloredStroke: string;
|
|
55
|
+
contentColor: string;
|
|
56
|
+
icon: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
}, {
|
|
60
|
+
isColorless: {
|
|
61
|
+
true: {
|
|
62
|
+
coloredStroke: string;
|
|
63
|
+
contentColor: string;
|
|
64
|
+
icon: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
color: {
|
|
68
|
+
0: {
|
|
69
|
+
coloredStroke: string;
|
|
70
|
+
contentColor: string;
|
|
71
|
+
icon: string;
|
|
72
|
+
};
|
|
73
|
+
1: {
|
|
74
|
+
coloredStroke: string;
|
|
75
|
+
contentColor: string;
|
|
76
|
+
icon: string;
|
|
77
|
+
};
|
|
78
|
+
2: {
|
|
79
|
+
coloredStroke: string;
|
|
80
|
+
contentColor: string;
|
|
81
|
+
icon: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
}>, {
|
|
85
|
+
isColorless: {
|
|
86
|
+
true: {
|
|
87
|
+
coloredStroke: string;
|
|
88
|
+
contentColor: string;
|
|
89
|
+
icon: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
color: {
|
|
93
|
+
0: {
|
|
94
|
+
coloredStroke: string;
|
|
95
|
+
contentColor: string;
|
|
96
|
+
icon: string;
|
|
97
|
+
};
|
|
98
|
+
1: {
|
|
99
|
+
coloredStroke: string;
|
|
100
|
+
contentColor: string;
|
|
101
|
+
icon: string;
|
|
102
|
+
};
|
|
103
|
+
2: {
|
|
104
|
+
coloredStroke: string;
|
|
105
|
+
contentColor: string;
|
|
106
|
+
icon: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}, {
|
|
110
|
+
breakPoint: string;
|
|
111
|
+
defaultStroke: string;
|
|
112
|
+
coloredStroke: string;
|
|
113
|
+
icon: string;
|
|
114
|
+
contentWrapper: string;
|
|
115
|
+
contentColor: string;
|
|
116
|
+
legendItem: string;
|
|
117
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
118
|
+
isColorless: {
|
|
119
|
+
true: {
|
|
120
|
+
coloredStroke: string;
|
|
121
|
+
contentColor: string;
|
|
122
|
+
icon: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
color: {
|
|
126
|
+
0: {
|
|
127
|
+
coloredStroke: string;
|
|
128
|
+
contentColor: string;
|
|
129
|
+
icon: string;
|
|
130
|
+
};
|
|
131
|
+
1: {
|
|
132
|
+
coloredStroke: string;
|
|
133
|
+
contentColor: string;
|
|
134
|
+
icon: string;
|
|
135
|
+
};
|
|
136
|
+
2: {
|
|
137
|
+
coloredStroke: string;
|
|
138
|
+
contentColor: string;
|
|
139
|
+
icon: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
}, {
|
|
143
|
+
breakPoint: string;
|
|
144
|
+
defaultStroke: string;
|
|
145
|
+
coloredStroke: string;
|
|
146
|
+
icon: string;
|
|
147
|
+
contentWrapper: string;
|
|
148
|
+
contentColor: string;
|
|
149
|
+
legendItem: string;
|
|
150
|
+
}, "", import("tailwind-variants/dist/config").TVConfig<{
|
|
151
|
+
isColorless: {
|
|
152
|
+
true: {
|
|
153
|
+
coloredStroke: string;
|
|
154
|
+
contentColor: string;
|
|
155
|
+
icon: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
color: {
|
|
159
|
+
0: {
|
|
160
|
+
coloredStroke: string;
|
|
161
|
+
contentColor: string;
|
|
162
|
+
icon: string;
|
|
163
|
+
};
|
|
164
|
+
1: {
|
|
165
|
+
coloredStroke: string;
|
|
166
|
+
contentColor: string;
|
|
167
|
+
icon: string;
|
|
168
|
+
};
|
|
169
|
+
2: {
|
|
170
|
+
coloredStroke: string;
|
|
171
|
+
contentColor: string;
|
|
172
|
+
icon: string;
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
}, {
|
|
176
|
+
isColorless: {
|
|
177
|
+
true: {
|
|
178
|
+
coloredStroke: string;
|
|
179
|
+
contentColor: string;
|
|
180
|
+
icon: string;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
color: {
|
|
184
|
+
0: {
|
|
185
|
+
coloredStroke: string;
|
|
186
|
+
contentColor: string;
|
|
187
|
+
icon: string;
|
|
188
|
+
};
|
|
189
|
+
1: {
|
|
190
|
+
coloredStroke: string;
|
|
191
|
+
contentColor: string;
|
|
192
|
+
icon: string;
|
|
193
|
+
};
|
|
194
|
+
2: {
|
|
195
|
+
coloredStroke: string;
|
|
196
|
+
contentColor: string;
|
|
197
|
+
icon: string;
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
}>, unknown, unknown, undefined>>;
|
|
@@ -7,12 +7,14 @@ export * from './Container_v2';
|
|
|
7
7
|
export * from './Flag_v2';
|
|
8
8
|
export * from './Picture';
|
|
9
9
|
export * from './Badge';
|
|
10
|
+
export * from './ItemCard';
|
|
10
11
|
export * from './AppHeader_v2';
|
|
11
12
|
export * from './ListBoxItem';
|
|
12
13
|
export * from './ListBox';
|
|
13
14
|
export * from './Calendar';
|
|
14
15
|
export * from './Textarea_v2';
|
|
15
16
|
export * from './Rating';
|
|
17
|
+
export * from './RatingCircle';
|
|
16
18
|
export * from './IconButton';
|
|
17
19
|
export * from './Toast';
|
|
18
20
|
export * from './ScreenInput';
|