Skip to content

Commit 937604c

Browse files
committedJan 12, 2022
feat(heatmap): remove min/max value properties from the static package
1 parent 824b794 commit 937604c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎packages/static/src/mappings/heatmap.ts

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ export const heatmapMapping = {
1919
component: HeatMap as unknown as FunctionComponent<HeatMapApiProps>,
2020
schema: Joi.object<HeatMapApiProps>().keys({
2121
data: custom.array().min(1).required(),
22-
minValue: Joi.alternatives().try(Joi.any().valid('auto'), Joi.number()).required(),
23-
maxValue: Joi.alternatives().try(Joi.any().valid('auto'), Joi.number()).required(),
2422
forceSquare: Joi.boolean(),
2523
sizeVariation: Joi.number().min(0).max(1),
2624
xOuterPadding: Joi.number().min(0).max(1),

0 commit comments

Comments
 (0)
Please sign in to comment.