@umbraco-ui/uui-input-file 1.0.0-rc.0 → 1.0.0-rc.1
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.
- package/README.md +5 -1
- package/lib/index.js +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# uui-input-file
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+
[](https://www.npmjs.com/package/@umbraco-ui/uui-input-file)
|
|
4
4
|
|
|
5
5
|
Umbraco style input-file component.
|
|
6
6
|
|
|
7
|
+
### See it in action
|
|
8
|
+
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/story/uui-input-file)
|
|
10
|
+
|
|
7
11
|
## Installation
|
|
8
12
|
|
|
9
13
|
### ES imports
|
package/lib/index.js
CHANGED
|
@@ -133,7 +133,7 @@ let UUIInputFileElement = class extends FormControlMixin(LitElement) {
|
|
|
133
133
|
<uui-action-bar slot="actions">
|
|
134
134
|
<uui-button
|
|
135
135
|
@click=${() => this._removeFile(index)}
|
|
136
|
-
|
|
136
|
+
color="danger"
|
|
137
137
|
label=${`Delete ${file.name}`}>
|
|
138
138
|
<uui-icon name="delete" .fallback=${iconDelete.strings[0]}></uui-icon>
|
|
139
139
|
</uui-button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-file",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-action-bar": "1.0.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-base": "1.0.0-rc.
|
|
35
|
-
"@umbraco-ui/uui-button": "1.0.0-rc.
|
|
36
|
-
"@umbraco-ui/uui-file-dropzone": "1.0.0-rc.
|
|
37
|
-
"@umbraco-ui/uui-icon": "1.0.0-rc.
|
|
38
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.0.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-action-bar": "1.0.0-rc.1",
|
|
34
|
+
"@umbraco-ui/uui-base": "1.0.0-rc.1",
|
|
35
|
+
"@umbraco-ui/uui-button": "1.0.0-rc.1",
|
|
36
|
+
"@umbraco-ui/uui-file-dropzone": "1.0.0-rc.1",
|
|
37
|
+
"@umbraco-ui/uui-icon": "1.0.0-rc.1",
|
|
38
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.0.0-rc.1"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-input-file",
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "127e036dbafa18cc37027591d6548a4cb4700d33"
|
|
50
50
|
}
|