@umbraco-ui/uui-file-dropzone 1.5.0-rc.0 → 1.5.0-rc.2
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 +1 -1
- package/custom-elements.json +5 -5
- package/lib/uui-file-dropzone.element.d.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Umbraco style file-dropzone component.
|
|
|
6
6
|
|
|
7
7
|
### See it in action
|
|
8
8
|
|
|
9
|
-
Preview the component on [Storybook](https://uui.umbraco.com/?path=/
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-file-dropzone--docs)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/custom-elements.json
CHANGED
|
@@ -23,11 +23,6 @@
|
|
|
23
23
|
}
|
|
24
24
|
],
|
|
25
25
|
"properties": [
|
|
26
|
-
{
|
|
27
|
-
"name": "styles",
|
|
28
|
-
"type": "CSSResult[]",
|
|
29
|
-
"default": "[null]"
|
|
30
|
-
},
|
|
31
26
|
{
|
|
32
27
|
"name": "accept",
|
|
33
28
|
"attribute": "accept",
|
|
@@ -41,6 +36,11 @@
|
|
|
41
36
|
"type": "boolean",
|
|
42
37
|
"default": "\"false\""
|
|
43
38
|
},
|
|
39
|
+
{
|
|
40
|
+
"name": "styles",
|
|
41
|
+
"type": "CSSResult[]",
|
|
42
|
+
"default": "[null]"
|
|
43
|
+
},
|
|
44
44
|
{
|
|
45
45
|
"name": "label",
|
|
46
46
|
"attribute": "label",
|
|
@@ -7,7 +7,6 @@ declare const UUIFileDropzoneElement_base: (new (...args: any[]) => import("@umb
|
|
|
7
7
|
* @description - Dropzone for file upload. Supports native browsing and drag n drop.
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUIFileDropzoneElement extends UUIFileDropzoneElement_base {
|
|
10
|
-
static styles: import("lit").CSSResult[];
|
|
11
10
|
private _input;
|
|
12
11
|
private _dropzone;
|
|
13
12
|
private _acceptedFileExtensions;
|
|
@@ -48,6 +47,7 @@ export declare class UUIFileDropzoneElement extends UUIFileDropzoneElement_base
|
|
|
48
47
|
private _onDragLeave;
|
|
49
48
|
private _onFileInputChange;
|
|
50
49
|
render(): import("lit-html").TemplateResult<1>;
|
|
50
|
+
static styles: import("lit").CSSResult[];
|
|
51
51
|
}
|
|
52
52
|
declare global {
|
|
53
53
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-file-dropzone",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.5.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-symbol-file-dropzone": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.2",
|
|
34
|
+
"@umbraco-ui/uui-symbol-file-dropzone": "1.5.0-rc.2"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-file-dropzone",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "573af25cbb43f673731b87dd8e23dbe632bfc348"
|
|
46
46
|
}
|