@dile/ui 2.1.20 → 2.1.22

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.
@@ -39,9 +39,9 @@ export class DileButton extends LitElement {
39
39
  letter-spacing: var(--dile-button-letter-spacing, 0);
40
40
  }
41
41
  button:hover {
42
- background-color: var(--dile-primary-light-color, #f3f3ae);
43
- color: var(--dile-button-hover-text-color, #303030);
44
- border-color: var(--dile-button-hover-border-color, #666666);
42
+ background-color: var(--dile-button-hover-background-color, var(--dile-primary-light-color, #f3f3ae));
43
+ color: var(--dile-button-hover-text-color, var(--dile-on-primary-light-color, #303030));
44
+ border-color: var(--dile-button-hover-border-color, var(--dile-primary-color, #666666));
45
45
  }
46
46
  button:focus {
47
47
  outline: none;
@@ -208,4 +208,13 @@ export class DileDropFile extends LitElement {
208
208
  getFiles() {
209
209
  return this.fileInput.files;
210
210
  }
211
+
212
+ get value() {
213
+ this.fileInput.value;
214
+ }
215
+
216
+ set value(value) {
217
+ this.fileInput.value = value;
218
+ }
219
+
211
220
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/ui",
3
- "version": "2.1.20",
3
+ "version": "2.1.22",
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": "a80e638ff7147109adf302b8d86e0c0d7d2e7a32"
29
+ "gitHead": "1b91b1404247bf86e6b04ea12793d5d6235a5f50"
30
30
  }