@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.
@@ -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
  };
@@ -1,5 +1,6 @@
1
1
  export declare enum TypographyVariantsEnum {
2
2
  Title48Bold = "Title/48 Bold",
3
+ Title48Semi = "Title/48 Semi",
3
4
  Title32Semi = "Title/32 Semi",
4
5
  Title28Semi = "Title/28 Semi",
5
6
  Title24Semi = "Title/24 Semi",
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.27.5",
3
+ "version": "5.28.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",