// package.json
var package_default = {
name: "iD",
- version: "2.26.0",
+ version: "2.26.2",
description: "A friendly editor for OpenStreetMap",
main: "dist/iD.min.js",
repository: "github:openstreetmap/iD",
if (shouldUpdate === void 0) {
shouldUpdate = (a, b) => a !== b;
}
+ const supportedTypes = ["text", "search", "url", "tel", "password"];
+ if (!supportedTypes.includes(this.type)) {
+ return selection2.each(setValue(value, shouldUpdate));
+ }
return selection2.each(stickyCursor(setValue(value, shouldUpdate)));
}