React Advanced Odontogram - v2.2.1
    Preparing search index...

    Variable STATUS_EXTRASConst

    STATUS_EXTRAS: {
        arches: {
            lower: number[];
            upper: number[];
            wisdom: { lower: number[]; upper: number[] };
        };
        options: (
            | {
                arch?: undefined;
                id: string;
                implants?: undefined;
                labelKey: string;
                material: string;
                missing?: undefined;
                missingMaterial?: undefined;
                teeth: number[];
                type: string;
            }
            | {
                arch: string;
                id: string;
                implants?: undefined;
                labelKey: string;
                material: string;
                missing?: undefined;
                missingMaterial: string;
                teeth?: undefined;
                type: string;
            }
            | {
                arch: string;
                id: string;
                implants?: undefined;
                labelKey: string;
                material?: undefined;
                missing?: undefined;
                missingMaterial?: undefined;
                teeth?: undefined;
                type: string;
            }
            | {
                arch: string;
                id: string;
                implants: number[];
                labelKey: string;
                material?: undefined;
                missing: number[];
                missingMaterial?: undefined;
                teeth?: undefined;
                type: string;
            }
        )[];
    } = ...

    Pre-configured dental status presets for quick application of common restorative scenarios (bridges, full-arch, partial/full removable, bar dentures).

    arches defines the FDI tooth layout; options is the array of presets selectable from the "Extras" dropdown in the UI.

    Type Declaration

    • arches: {
          lower: number[];
          upper: number[];
          wisdom: { lower: number[]; upper: number[] };
      }
    • options: (
          | {
              arch?: undefined;
              id: string;
              implants?: undefined;
              labelKey: string;
              material: string;
              missing?: undefined;
              missingMaterial?: undefined;
              teeth: number[];
              type: string;
          }
          | {
              arch: string;
              id: string;
              implants?: undefined;
              labelKey: string;
              material: string;
              missing?: undefined;
              missingMaterial: string;
              teeth?: undefined;
              type: string;
          }
          | {
              arch: string;
              id: string;
              implants?: undefined;
              labelKey: string;
              material?: undefined;
              missing?: undefined;
              missingMaterial?: undefined;
              teeth?: undefined;
              type: string;
          }
          | {
              arch: string;
              id: string;
              implants: number[];
              labelKey: string;
              material?: undefined;
              missing: number[];
              missingMaterial?: undefined;
              teeth?: undefined;
              type: string;
          }
      )[]