mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 17:23:02 +00:00
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.
39 lines
1.0 KiB
JavaScript
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
|
|
};
|