@rjsf/utils
Version:
Utility functions for @rjsf/core
17 lines • 924 B
JavaScript
/** Resolves the effective `optionValueFormat` for enum-backed widgets.
*
* Provides a single source of truth for the default DOM encoding format
* (`'indexed'`) used by `SelectWidget`, `RadioWidget`, and `CheckboxesWidget`.
* Widgets should call this helper once and pass the result to
* `enumOptionValueEncoder`, `enumOptionValueDecoder`, and `enumOptionSelectedValue`
* rather than reading `options.optionValueFormat` directly.
*
* @param options - The widget options (typically from the `options` prop, already
* resolved from `ui:options` and `ui:globalOptions`)
* @returns The resolved `OptionValueFormat`, defaulting to `'indexed'` when not set
*/
export default function getOptionValueFormat(options) {
var _a;
return (_a = options === null || options === void 0 ? void 0 : options.optionValueFormat) !== null && _a !== void 0 ? _a : 'indexed';
}
//# sourceMappingURL=getOptionValueFormat.js.map