Compare commits

..

No commits in common. "35490ff0e304612b3ef2a886b56dfe9c78e04e0c" and "8499177fde370a733e99bb81ba093a5366e2b58d" have entirely different histories.

2 changed files with 3 additions and 23 deletions

View file

@ -3,6 +3,6 @@
"browser": "src/BetterSelect.js",
"type": "module",
"license": "MIT",
"version": "1.4.2",
"version": "1.4.1",
"url": "https://darkwiiplayer.github.io/BetterSelect/"
}

View file

@ -1,11 +1,5 @@
/**
* @param {function} fn
*/
const template = fn => {
/**
* @param {TemplateStringsArray|String} arr
* @param {string[]} params
*/
return (arr, ...params) => {
if (arr instanceof Array) {
const buffer = []
@ -416,21 +410,6 @@ export class BetterSelect extends HTMLElement {
this.input.placeholder = text
}
/**
* @return {String}
*/
get name() { return this.getAttribute("name") }
/**
* @param {String} name
*/
set name(name) { this.setAttribute("name", String(name)) }
/**
* @return {HTMLFormElement}
*/
get form() { return this.#internals.form }
clear() {
this.setValue(undefined, "")
}
@ -445,3 +424,4 @@ export class BetterSelect extends HTMLElement {
if (methodName in this) this[methodName](after, before)
}
}