feature: FDI tooth chart UI updated.

This commit is contained in:
2026-05-08 03:58:53 +03:30
parent c2d490a5e7
commit 1a11323b74
7 changed files with 581 additions and 149 deletions

View File

@@ -0,0 +1,6 @@
export const FDI_CHART_DESIGNS = [
{ id: 'clinical', label: 'Clinical (gradient + roots)' },
{ id: 'wireframeSculpt', label: 'Wireframe shells (line sculpture)' },
] as const;
export type FdiChartDesignId = (typeof FDI_CHART_DESIGNS)[number]['id'];