@mindly/ui-components 5.24.0 → 5.25.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/configs/tailwind/colors.d.ts +3 -0
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/lib2/shared/hooks/useCircleRating.d.ts +1 -1
- package/dist/cjs/lib2/shared/types/ratingCircleTypes.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +1 -0
- package/dist/cjs/lib2/shared/ui/IconButton/IconButton.d.ts +1 -0
- package/dist/esm/configs/tailwind/colors.d.ts +3 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/lib2/shared/hooks/useCircleRating.d.ts +1 -1
- package/dist/esm/lib2/shared/types/ratingCircleTypes.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/AppFooter_v2/AppFooter_v2.d.ts +1 -0
- package/dist/esm/lib2/shared/ui/IconButton/IconButton.d.ts +1 -0
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
- package/src/configs/tailwind/colors.ts +3 -0
- package/src/lib2/shared/css/tailwind.css +2 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SizeValues, CircleRatingRange, CircleRatingDataProps, CircleRatingDataResult, CircleRatingLegendProps, ProgressRangeProps, BreakPointPositionResult, CircleRatingContextData } from '../types/ratingCircleTypes';
|
|
2
2
|
export declare const SIZES: SizeValues;
|
|
3
3
|
export declare const BREAKPOINT_ICON_SIZE = 20;
|
|
4
|
-
export declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, }: CircleRatingDataProps): CircleRatingDataResult;
|
|
4
|
+
export declare function useCircleRatingRenderData({ progress, size, maxValue, isReverse, isShowBreakPoints, }: CircleRatingDataProps): CircleRatingDataResult;
|
|
5
5
|
export declare function useRangeIndex({ progress, maxValue, ranges, isReverse }: ProgressRangeProps): number;
|
|
6
6
|
export declare function getProgressForBreakPoint({ maxValue, breakPoint, }: {
|
|
7
7
|
maxValue: number;
|