@umbraco-ui/uui-ref-node-form 1.8.0-rc.0 → 1.9.0-rc.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.
@@ -29,6 +29,18 @@
29
29
  "type": "string",
30
30
  "default": "\"undefined\""
31
31
  },
32
+ {
33
+ "name": "rel",
34
+ "description": "Set the rel attribute for an anchor tag, only used when using href.",
35
+ "type": "string",
36
+ "default": "\"undefined\""
37
+ },
38
+ {
39
+ "name": "readonly",
40
+ "description": "Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.",
41
+ "type": "boolean",
42
+ "default": "\"false\""
43
+ },
32
44
  {
33
45
  "name": "disabled",
34
46
  "description": "Set tot true to disable",
@@ -93,6 +105,20 @@
93
105
  "type": "string",
94
106
  "default": "\"undefined\""
95
107
  },
108
+ {
109
+ "name": "rel",
110
+ "attribute": "rel",
111
+ "description": "Set the rel attribute for an anchor tag, only used when using href.",
112
+ "type": "string",
113
+ "default": "\"undefined\""
114
+ },
115
+ {
116
+ "name": "readonly",
117
+ "attribute": "readonly",
118
+ "description": "Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.",
119
+ "type": "boolean",
120
+ "default": "\"false\""
121
+ },
96
122
  {
97
123
  "name": "styles",
98
124
  "type": "CSSResult[]",
package/lib/index.js CHANGED
@@ -8,8 +8,7 @@ var __decorateClass = (decorators, target, key, kind) => {
8
8
  for (var i = decorators.length - 1, decorator; i >= 0; i--)
9
9
  if (decorator = decorators[i])
10
10
  result = (kind ? decorator(target, key, result) : decorator(result)) || result;
11
- if (kind && result)
12
- __defProp(target, key, result);
11
+ if (kind && result) __defProp(target, key, result);
13
12
  return result;
14
13
  };
15
14
  let UUIRefNodeFormElement = class extends UUIRefNodeElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-ref-node-form",
3
- "version": "1.8.0-rc.0",
3
+ "version": "1.9.0-rc.0",
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.8.0-rc.0",
34
- "@umbraco-ui/uui-ref-node": "1.8.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.9.0-rc.0",
34
+ "@umbraco-ui/uui-ref-node": "1.9.0-rc.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "npm run analyze && tsc --build && 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-ref-node-form",
45
- "gitHead": "46d444c66217c9a3c74518d8ce4badc7f121bfdf"
45
+ "gitHead": "e3e398e07b6ff9874aa0656cb7767df42f58a4ce"
46
46
  }