@mindly/ui-components 5.27.5 → 5.28.1
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 +4 -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 +4 -0
- package/dist/esm/lib2/shared/ui/Typography/types.d.ts +1 -0
- package/dist/index.d.ts +5 -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
|
};
|
|
@@ -65,6 +66,8 @@ export type CircleRatingComponentProps = {
|
|
|
65
66
|
isShowBreakPoints?: boolean;
|
|
66
67
|
isReverse?: boolean;
|
|
67
68
|
isZeroTransparent?: boolean;
|
|
69
|
+
isWithOverlap?: boolean;
|
|
70
|
+
isWithAnimation?: boolean;
|
|
68
71
|
className?: string;
|
|
69
72
|
};
|
|
70
73
|
export type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
@@ -80,5 +83,6 @@ export type CircleRatingContextData = CircleRatingContextProps & {
|
|
|
80
83
|
viewBox: string;
|
|
81
84
|
maxValue: number;
|
|
82
85
|
percentage: number;
|
|
86
|
+
overlap: number;
|
|
83
87
|
styles: any;
|
|
84
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
|
};
|
|
@@ -1650,6 +1652,8 @@ type CircleRatingComponentProps = {
|
|
|
1650
1652
|
isShowBreakPoints?: boolean;
|
|
1651
1653
|
isReverse?: boolean;
|
|
1652
1654
|
isZeroTransparent?: boolean;
|
|
1655
|
+
isWithOverlap?: boolean;
|
|
1656
|
+
isWithAnimation?: boolean;
|
|
1653
1657
|
className?: string;
|
|
1654
1658
|
};
|
|
1655
1659
|
type CircleRatingContextProps = CircleRatingComponentProps & {
|
|
@@ -1665,6 +1669,7 @@ type CircleRatingContextData = CircleRatingContextProps & {
|
|
|
1665
1669
|
viewBox: string;
|
|
1666
1670
|
maxValue: number;
|
|
1667
1671
|
percentage: number;
|
|
1672
|
+
overlap: number;
|
|
1668
1673
|
styles: any;
|
|
1669
1674
|
};
|
|
1670
1675
|
|