interface WidgetDisposition {
    amdModules: readonly string[];
    disposition: WidgetDispositionKind;
    esmModules: readonly string[];
    notes: string;
    shimSource?: string;
    target: string;
    widget: string;
}

Properties

amdModules: readonly string[]

Classic AMD module specifiers (esri/widgets/*).

Exactly one disposition from the fixed taxonomy.

esmModules: readonly string[]

ESM module specifiers (@arcgis/core/widgets/*, without .js).

notes: string

Honest caveats; never "TBD".

shimSource?: string

Repo-relative path to the compat shim source, when one exists.

target: string

Honua API/component target, or explicit workaround text.

widget: string

Widget class name, e.g. Legend.