@bhch/react-json-form
Version:
Create forms using JSON Schema
13 lines (10 loc) • 402 B
JavaScript
/* Symbol for joining coordinates.
* Earlier, a hyphen (-) was used. But that caused problems when
* object keys had hyphen in them. So, we're switching to a less
* commonly used symbol.
*/
export const JOIN_SYMBOL = '§';
/* HTML field name prefix */
export const FIELD_NAME_PREFIX = 'rjf';
/* Filler item for arrays to make them at least minItems long */
export const FILLER = '__RJF_FILLER__';