Compare commits

..

No commits in common. "d4e9235deb249bf8aacfdbedc03120fd8a579a54" and "1ec658dfef86d08dbc310e6df7665a05e771fcc0" have entirely different histories.

2 changed files with 3 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@tp/tp-button",
"version": "1.3.0",
"version": "1.2.0",
"description": "",
"main": "tp-button.js",
"scripts": {

View File

@ -123,8 +123,8 @@ class TpButton extends EventHelpers(LitElement) {
render() {
return html`
<div class="wrap" part="wrap">
<div class="label" part="label">
<div class="wrap">
<div class="label">
<slot></slot>
</div>
${this.extended ? html`
@ -200,10 +200,6 @@ class TpButton extends EventHelpers(LitElement) {
this.unlisten(this, 'keypress', '_keyPressed');
}
firstUpdated() {
this.listen(this, 'keypress', '_keyPressed');
}
shouldUpdate(changes) {
if (changes.has('submit') && this.submit) {
this.extended = true;