Files
iD/modules/ui/fields/index.js
Minh Nguyễn 4922a37b00 Combo field with taginfo for road networks
Added a variation of the combo field for road networks. If the field’s value is blank or shares a prefix with the current country code, search taginfo for values beginning with the country code and a colon.
2016-08-02 07:23:17 -07:00

39 lines
1.0 KiB
JavaScript

import { check, defaultcheck} from './check';
import { combo, multiCombo, networkCombo, typeCombo } from './combo';
import { email, number, tel, text, url } from './input';
import { access } from './access';
import { address } from './address';
import { cycleway } from './cycleway';
import { lanes } from './lanes';
import { localized } from './localized';
import { maxspeed } from './maxspeed';
import { radio } from './radio';
import { restrictions } from './restrictions';
import { textarea } from './textarea';
import { wikipedia } from './wikipedia';
export var fields = {
access: access,
address: address,
check: check,
defaultcheck: defaultcheck,
combo: combo,
typeCombo: typeCombo,
multiCombo: multiCombo,
networkCombo: networkCombo,
cycleway: cycleway,
text: text,
url: url,
number: number,
email: email,
tel: tel,
localized: localized,
lanes: lanes,
maxspeed: maxspeed,
radio: radio,
restrictions: restrictions,
textarea: textarea,
wikipedia: wikipedia
};