UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

16 lines (13 loc) 472 B
import { z } from 'zod'; const dashboardBucket = z.object({ min: z.number().optional(), max: z.number().optional(), hexColour: z.string().regex(/^#/).optional(), }); const BucketOptionsSchema = z.object({ useRagColour: z.boolean().default(false), buckets: z.array(dashboardBucket).default([]), baseColour: z.string().regex(/^#/).optional(), }); export { BucketOptionsSchema, BucketOptionsSchema as default }; //# sourceMappingURL=validate.js.map