ux(typescript): do not redeclare Element.setAttribute(NS)

BREAKING CHANGE: Types exported by this package have re-declared
the global `Element.setAttribute` and `Element.setAttributeNS` to
accept `number` and `boolean` for the `value` parameter. This
change removes that re-declaration and thus the only valid value is
`string`. If your code provides `number` and/or `boolean`, then it
may now fail to compile.

Fixes #615.
pull/666/head
Shahar Or (mightyiam) 5 years ago committed by Shahar Dawn Or
parent ba3e85bf90
commit 0620b5eda0

@ -21,6 +21,7 @@
"scope-empty": [2, "never"], "scope-empty": [2, "never"],
"scope-enum": [2, "always", [ "scope-enum": [2, "always", [
"commitlint", "commitlint",
"typescript",
"vscode" "vscode"
]] ]]
} }

@ -1,14 +1,6 @@
import { VNode, VNodeData } from '../vnode' import { VNode, VNodeData } from '../vnode'
import { Module } from './module' import { Module } from './module'
// because those in TypeScript are too restrictive: https://github.com/Microsoft/TSJS-lib-generator/pull/237
declare global {
interface Element {
setAttribute(name: string, value: string | number | boolean): void
setAttributeNS(namespaceURI: string, qualifiedName: string, value: string | number | boolean): void
}
}
export type Attrs = Record<string, string | number | boolean> export type Attrs = Record<string, string | number | boolean>
const xlinkNS = 'http://www.w3.org/1999/xlink' const xlinkNS = 'http://www.w3.org/1999/xlink'
@ -37,6 +29,14 @@ function updateAttrs (oldVnode: VNode, vnode: VNode): void {
} else if (cur === false) { } else if (cur === false) {
elm.removeAttribute(key) elm.removeAttribute(key)
} else { } else {
/**
* The following `setAttribute` calls pass type checking
* with the `value` parameter possibly a `number` due to
* the import of `latest-snabbdom-release` in
* `src/benchmark/core.ts`, which re-declares `setAttribute`.
* For background, read
* https://github.com/snabbdom/snabbdom/issues/615
*/
if (key.charCodeAt(0) !== xChar) { if (key.charCodeAt(0) !== xChar) {
elm.setAttribute(key, cur) elm.setAttribute(key, cur)
} else if (key.charCodeAt(3) === colonChar) { } else if (key.charCodeAt(3) === colonChar) {

Loading…
Cancel
Save