@umbraco-ui/uui-input-file 1.2.1 → 1.3.0-rc.0

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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +9 -9
package/lib/index.js CHANGED
@@ -157,7 +157,7 @@ let UUIInputFileElement = class extends FormControlMixin(LitElement) {
157
157
  id="dropzone"
158
158
  ?multiple=${this.multiple}
159
159
  .accept=${this.accept}
160
- @file-change=${this._handleFilesChange}
160
+ @change=${this._handleFilesChange}
161
161
  label="Drop files here"></uui-file-dropzone>
162
162
  <div id="files">
163
163
  ${this._renderFiles()}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-file",
3
- "version": "1.2.1",
3
+ "version": "1.3.0-rc.0",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,21 +30,21 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-action-bar": "1.2.1",
34
- "@umbraco-ui/uui-base": "1.2.1",
35
- "@umbraco-ui/uui-button": "1.2.1",
36
- "@umbraco-ui/uui-file-dropzone": "1.2.1",
37
- "@umbraco-ui/uui-icon": "1.2.1",
38
- "@umbraco-ui/uui-icon-registry-essential": "1.2.1"
33
+ "@umbraco-ui/uui-action-bar": "1.3.0-rc.0",
34
+ "@umbraco-ui/uui-base": "1.3.0-rc.0",
35
+ "@umbraco-ui/uui-button": "1.3.0-rc.0",
36
+ "@umbraco-ui/uui-file-dropzone": "1.3.0-rc.0",
37
+ "@umbraco-ui/uui-icon": "1.3.0-rc.0",
38
+ "@umbraco-ui/uui-icon-registry-essential": "1.3.0-rc.0"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
42
- "clean": "tsc --build --clean && rimraf dist lib/*.js lib/**/*.js custom-elements.json",
42
+ "clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
43
43
  "analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
48
  "homepage": "https://uui.umbraco.com/?path=/story/uui-input-file",
49
- "gitHead": "94eb22bee5ff21bac6fadbd78653671279bebe36"
49
+ "gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
50
50
  }