@umbraco-ui/uui-input-file 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 CHANGED
@@ -6,7 +6,7 @@ Umbraco style input-file component.
6
6
 
7
7
  ### See it in action
8
8
 
9
- Preview the component on [Storybook](https://uui.umbraco.com/?path=/story/uui-input-file)
9
+ Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-input-file--docs)
10
10
 
11
11
  ## Installation
12
12
 
@@ -61,11 +61,6 @@
61
61
  }
62
62
  ],
63
63
  "properties": [
64
- {
65
- "name": "styles",
66
- "type": "CSSResult[]",
67
- "default": "[null]"
68
- },
69
64
  {
70
65
  "name": "accept",
71
66
  "attribute": "accept",
@@ -80,6 +75,11 @@
80
75
  "type": "boolean",
81
76
  "default": "\"false\""
82
77
  },
78
+ {
79
+ "name": "styles",
80
+ "type": "CSSResult[]",
81
+ "default": "[null]"
82
+ },
83
83
  {
84
84
  "name": "formAssociated",
85
85
  "description": "This is a static class field indicating that the element is can be used inside a native form and participate in its events.\nIt may require a polyfill, check support here https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/attachInternals.\nRead more about form controls here https://web.dev/more-capable-form-controls/",
@@ -6,7 +6,6 @@ declare const UUIInputFileElement_base: (new (...args: any[]) => import("@umbrac
6
6
  * @extends FormControlMixin
7
7
  */
8
8
  export declare class UUIInputFileElement extends UUIInputFileElement_base {
9
- static styles: import("lit").CSSResult[];
10
9
  private _dropzone;
11
10
  private _dropZone;
12
11
  /**
@@ -38,6 +37,7 @@ export declare class UUIInputFileElement extends UUIInputFileElement_base {
38
37
  private _renderFileItem;
39
38
  private _renderFiles;
40
39
  render(): import("lit-html").TemplateResult<1>;
40
+ static styles: import("lit").CSSResult[];
41
41
  }
42
42
  declare global {
43
43
  interface HTMLElementTagNameMap {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-file",
3
- "version": "1.5.0-rc.0",
3
+ "version": "1.5.0-rc.2",
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.5.0-rc.0",
34
- "@umbraco-ui/uui-base": "1.5.0-rc.0",
35
- "@umbraco-ui/uui-button": "1.5.0-rc.0",
36
- "@umbraco-ui/uui-file-dropzone": "1.5.0-rc.0",
37
- "@umbraco-ui/uui-icon": "1.5.0-rc.0",
38
- "@umbraco-ui/uui-icon-registry-essential": "1.5.0-rc.0"
33
+ "@umbraco-ui/uui-action-bar": "1.5.0-rc.2",
34
+ "@umbraco-ui/uui-base": "1.5.0-rc.2",
35
+ "@umbraco-ui/uui-button": "1.5.0-rc.2",
36
+ "@umbraco-ui/uui-file-dropzone": "1.5.0-rc.2",
37
+ "@umbraco-ui/uui-icon": "1.5.0-rc.2",
38
+ "@umbraco-ui/uui-icon-registry-essential": "1.5.0-rc.2"
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": "73cbc1444590282b7fb63a18d5639628ba18f0a3"
49
+ "gitHead": "573af25cbb43f673731b87dd8e23dbe632bfc348"
50
50
  }