Skip to content

Commit

Permalink
feat(heatmap): remove min/max value properties from the static package
Browse files Browse the repository at this point in the history
  • Loading branch information
plouc committed Jan 12, 2022
1 parent 824b794 commit 937604c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/static/src/mappings/heatmap.ts
Expand Up @@ -19,8 +19,6 @@ export const heatmapMapping = {
component: HeatMap as unknown as FunctionComponent<HeatMapApiProps>,
schema: Joi.object<HeatMapApiProps>().keys({
data: custom.array().min(1).required(),
minValue: Joi.alternatives().try(Joi.any().valid('auto'), Joi.number()).required(),
maxValue: Joi.alternatives().try(Joi.any().valid('auto'), Joi.number()).required(),
forceSquare: Joi.boolean(),
sizeVariation: Joi.number().min(0).max(1),
xOuterPadding: Joi.number().min(0).max(1),
Expand Down

0 comments on commit 937604c

Please sign in to comment.