@mindly/ui-components 5.27.4 → 5.28.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/index.js +4 -4
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +5 -0
- package/dist/cjs/lib2/shared/ui/Typography/types.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +5 -0
- package/dist/esm/lib2/shared/ui/Typography/types.d.ts +1 -0
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export type CircleRatingDataResult = {
|
|
|
24
24
|
radius: number;
|
|
25
25
|
circumference: number;
|
|
26
26
|
dash: number;
|
|
27
|
+
overlap: number;
|
|
27
28
|
viewBox: string;
|
|
28
29
|
strokeWidth: number;
|
|
29
30
|
};
|
|
@@ -58,12 +59,15 @@ export type CircleRatingComponentProps = {
|
|
|
58
59
|
progress: number;
|
|
59
60
|
ranges: CircleRatingRange[];
|
|
60
61
|
decimal?: number;
|
|
62
|
+
animationSeconds?: number;
|
|
61
63
|
isColorless?: boolean;
|
|
62
64
|
isRatingDisabled?: boolean;
|
|
63
65
|
isShowLegend?: boolean;
|
|
64
66
|
isShowBreakPoints?: boolean;
|
|
65
67
|
isReverse?: boolean;
|
|
66
68
|
isZeroTransparent?: boolean;
|
|
69
|
+
isWithOverlap?: boolean;
|
|
70
|
+
isWithAnimation?: boolean;
|
|
67
71
|
className?: string;
|
|
68
72
|
};
|
|
69
73
|
export type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
@@ -79,5 +83,6 @@ export type CircleRatingContextData = CircleRatingContextProps & {
|
|
|
79
83
|
viewBox: string;
|
|
80
84
|
maxValue: number;
|
|
81
85
|
percentage: number;
|
|
86
|
+
overlap: number;
|
|
82
87
|
styles: any;
|
|
83
88
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1383,6 +1383,7 @@ declare const RowSelect: FC<RowSelectProps>;
|
|
|
1383
1383
|
|
|
1384
1384
|
declare enum TypographyVariantsEnum {
|
|
1385
1385
|
Title48Bold = "Title/48 Bold",
|
|
1386
|
+
Title48Semi = "Title/48 Semi",
|
|
1386
1387
|
Title32Semi = "Title/32 Semi",
|
|
1387
1388
|
Title28Semi = "Title/28 Semi",
|
|
1388
1389
|
Title24Semi = "Title/24 Semi",
|
|
@@ -1614,6 +1615,7 @@ type CircleRatingDataResult = {
|
|
|
1614
1615
|
radius: number;
|
|
1615
1616
|
circumference: number;
|
|
1616
1617
|
dash: number;
|
|
1618
|
+
overlap: number;
|
|
1617
1619
|
viewBox: string;
|
|
1618
1620
|
strokeWidth: number;
|
|
1619
1621
|
};
|
|
@@ -1643,12 +1645,15 @@ type CircleRatingComponentProps = {
|
|
|
1643
1645
|
progress: number;
|
|
1644
1646
|
ranges: CircleRatingRange[];
|
|
1645
1647
|
decimal?: number;
|
|
1648
|
+
animationSeconds?: number;
|
|
1646
1649
|
isColorless?: boolean;
|
|
1647
1650
|
isRatingDisabled?: boolean;
|
|
1648
1651
|
isShowLegend?: boolean;
|
|
1649
1652
|
isShowBreakPoints?: boolean;
|
|
1650
1653
|
isReverse?: boolean;
|
|
1651
1654
|
isZeroTransparent?: boolean;
|
|
1655
|
+
isWithOverlap?: boolean;
|
|
1656
|
+
isWithAnimation?: boolean;
|
|
1652
1657
|
className?: string;
|
|
1653
1658
|
};
|
|
1654
1659
|
type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
@@ -1664,6 +1669,7 @@ type CircleRatingContextData = CircleRatingContextProps & {
|
|
|
1664
1669
|
viewBox: string;
|
|
1665
1670
|
maxValue: number;
|
|
1666
1671
|
percentage: number;
|
|
1672
|
+
overlap: number;
|
|
1667
1673
|
styles: any;
|
|
1668
1674
|
};
|
|
1669
1675
|
|