@dile/ui 2.1.27 → 2.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,7 +28,7 @@ export class DileButton extends LitElement {
|
|
|
28
28
|
border-width: var(--dile-button-border-width, 3px);
|
|
29
29
|
border-color: var(--dile-primary-dark-color, #07193b);
|
|
30
30
|
background-color: var(--dile-primary-color, #7BB93D);
|
|
31
|
-
transition-property: background-color, color;
|
|
31
|
+
transition-property: background-color, color, border-color;
|
|
32
32
|
transition-duration: 0.3s;
|
|
33
33
|
transition-timing-function: ease-in-out;
|
|
34
34
|
border-style: solid;
|
|
@@ -107,7 +107,7 @@ export class DileDropFile extends DileEmmitChange(LitElement) {
|
|
|
107
107
|
<dile-file-preview
|
|
108
108
|
fileName="${this.fileName}"
|
|
109
109
|
selectedFileLabel="${this.selectedFileLabel}"
|
|
110
|
-
@dile-file-clear=${this.
|
|
110
|
+
@dile-file-clear=${this.clear}
|
|
111
111
|
></dile-file-preview>
|
|
112
112
|
`;
|
|
113
113
|
}
|
|
@@ -168,7 +168,7 @@ export class DileDropFile extends DileEmmitChange(LitElement) {
|
|
|
168
168
|
this.message = this.firstMessage || '';
|
|
169
169
|
this.errored = false;
|
|
170
170
|
} else {
|
|
171
|
-
this.
|
|
171
|
+
this.clear();
|
|
172
172
|
this.message = `${this.extensionErrorMessage} ${this.allowedExtensions.join(', ')}`;
|
|
173
173
|
this.errored = true;
|
|
174
174
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dile/ui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.29",
|
|
4
4
|
"description": "UI Core components from dile-components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "ae6bb276e5139b7924bb81e4235d0745a59057b8"
|
|
30
30
|
}
|