@umbraco-ui/uui-input-file 1.8.0-rc.2 → 1.8.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.
- package/custom-elements.json +2 -2
- package/lib/index.js +1 -1
- package/lib/uui-input-file.element.d.ts +3 -3
- package/package.json +8 -8
package/custom-elements.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"name": "pristine",
|
|
34
34
|
"description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
|
|
35
35
|
"type": "boolean",
|
|
36
|
-
"default": "\"
|
|
36
|
+
"default": "\"true\""
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"name": "required",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"attribute": "pristine",
|
|
106
106
|
"description": "Determines wether the form control has been touched or interacted with, this determines wether the validation-status of this form control should be made visible.",
|
|
107
107
|
"type": "boolean",
|
|
108
|
-
"default": "\"
|
|
108
|
+
"default": "\"true\""
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"name": "required",
|
package/lib/index.js
CHANGED
|
@@ -17,7 +17,7 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
17
17
|
__defProp(target, key, result);
|
|
18
18
|
return result;
|
|
19
19
|
};
|
|
20
|
-
let UUIInputFileElement = class extends UUIFormControlMixin(LitElement
|
|
20
|
+
let UUIInputFileElement = class extends UUIFormControlMixin(LitElement) {
|
|
21
21
|
constructor() {
|
|
22
22
|
super();
|
|
23
23
|
this.accept = "";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
declare const UUIInputFileElement_base: (new (...args: any[]) => import("@umbraco-ui/uui-base/lib/mixins").
|
|
2
|
+
declare const UUIInputFileElement_base: (new (...args: any[]) => import("@umbraco-ui/uui-base/lib/mixins").UUIFormControlMixinElement<FormDataEntryValue | FormData | undefined>) & typeof LitElement;
|
|
3
3
|
/**
|
|
4
4
|
* @element uui-input-file
|
|
5
5
|
* @description - A form associated file input that supports multiple files.
|
|
@@ -22,8 +22,8 @@ export declare class UUIInputFileElement extends UUIInputFileElement_base {
|
|
|
22
22
|
* @default false
|
|
23
23
|
*/
|
|
24
24
|
multiple: boolean;
|
|
25
|
-
get value(): FormDataEntryValue | FormData |
|
|
26
|
-
set value(newValue: FormDataEntryValue | FormData |
|
|
25
|
+
get value(): FormDataEntryValue | FormData | undefined;
|
|
26
|
+
set value(newValue: FormDataEntryValue | FormData | undefined);
|
|
27
27
|
private _files;
|
|
28
28
|
constructor();
|
|
29
29
|
connectedCallback(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-input-file",
|
|
3
|
-
"version": "1.8.0
|
|
3
|
+
"version": "1.8.0",
|
|
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.8.0
|
|
34
|
-
"@umbraco-ui/uui-base": "1.8.0
|
|
35
|
-
"@umbraco-ui/uui-button": "1.8.0
|
|
36
|
-
"@umbraco-ui/uui-file-dropzone": "1.8.0
|
|
37
|
-
"@umbraco-ui/uui-icon": "1.8.0
|
|
38
|
-
"@umbraco-ui/uui-icon-registry-essential": "1.8.0
|
|
33
|
+
"@umbraco-ui/uui-action-bar": "1.8.0",
|
|
34
|
+
"@umbraco-ui/uui-base": "1.8.0",
|
|
35
|
+
"@umbraco-ui/uui-button": "1.8.0",
|
|
36
|
+
"@umbraco-ui/uui-file-dropzone": "1.8.0",
|
|
37
|
+
"@umbraco-ui/uui-icon": "1.8.0",
|
|
38
|
+
"@umbraco-ui/uui-icon-registry-essential": "1.8.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "npm run analyze && tsc --build && 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": "53021762a52dc54a46f0c5ef829c1cbaabde1160"
|
|
50
50
|
}
|