@umbraco-ui/uui-input-password 1.5.0-rc.0 → 1.5.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 CHANGED
@@ -6,7 +6,7 @@ Umbraco style input-password 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-password)
9
+ Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-input-password--docs)
10
10
 
11
11
  ## Installation
12
12
 
@@ -146,11 +146,6 @@
146
146
  }
147
147
  ],
148
148
  "properties": [
149
- {
150
- "name": "styles",
151
- "type": "CSSResult[]",
152
- "default": "[null,null]"
153
- },
154
149
  {
155
150
  "name": "min",
156
151
  "attribute": "min",
@@ -253,6 +248,11 @@
253
248
  "type": "string",
254
249
  "default": "\"\""
255
250
  },
251
+ {
252
+ "name": "styles",
253
+ "type": "CSSResult[]",
254
+ "default": "[null,null]"
255
+ },
256
256
  {
257
257
  "name": "spellcheck",
258
258
  "attribute": "spellcheck",
@@ -4,7 +4,6 @@ import { InputType, UUIInputElement } from '@umbraco-ui/uui-input/lib';
4
4
  * @extends uui-input
5
5
  */
6
6
  export declare class UUIInputPasswordElement extends UUIInputElement {
7
- static styles: import("lit").CSSResult[];
8
7
  private passwordType;
9
8
  get type(): InputType;
10
9
  set type(_newValue: InputType);
@@ -12,6 +11,7 @@ export declare class UUIInputPasswordElement extends UUIInputElement {
12
11
  connectedCallback(): void;
13
12
  renderIcon(): import("lit-html").TemplateResult<1>;
14
13
  renderAppend(): import("lit-html").TemplateResult<1>;
14
+ static styles: import("lit").CSSResult[];
15
15
  }
16
16
  declare global {
17
17
  interface HTMLElementTagNameMap {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-input-password",
3
- "version": "1.5.0-rc.0",
3
+ "version": "1.5.0-rc.1",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,9 +30,9 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.5.0-rc.0",
34
- "@umbraco-ui/uui-icon-registry-essential": "1.5.0-rc.0",
35
- "@umbraco-ui/uui-input": "1.5.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.5.0-rc.1",
34
+ "@umbraco-ui/uui-icon-registry-essential": "1.5.0-rc.1",
35
+ "@umbraco-ui/uui-input": "1.5.0-rc.1"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
@@ -43,5 +43,5 @@
43
43
  "access": "public"
44
44
  },
45
45
  "homepage": "https://uui.umbraco.com/?path=/story/uui-input-password",
46
- "gitHead": "73cbc1444590282b7fb63a18d5639628ba18f0a3"
46
+ "gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
47
47
  }