const {Button}=window.VedutaDesignSystem_f6874f; const TIER_OPTIONS=[ ['database','01 · Curated Database'], ['concie-agent','02 · The Concie-agent'], ['scout','03 · The Scout'], ['owner','04 · The Owner'], ['unsure','Not sure yet'] ]; /* Form field styled to match the design-system Input. `as` = input | textarea | select */ function VField({label,name,type='text',as='input',value,onChange,required,placeholder,options,rows=4,hint,half}){ const id='f-'+name; const common={id,name,value,onChange:e=>onChange(e.target.value),required,placeholder,className:'vfield'}; return