@umbraco-ui/uui-ref-node-data-type 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.
- package/custom-elements.json +26 -0
- package/lib/index.js +1 -2
- package/package.json +4 -4
package/custom-elements.json
CHANGED
|
@@ -35,6 +35,18 @@
|
|
|
35
35
|
"type": "string",
|
|
36
36
|
"default": "\"undefined\""
|
|
37
37
|
},
|
|
38
|
+
{
|
|
39
|
+
"name": "rel",
|
|
40
|
+
"description": "Set the rel attribute for an anchor tag, only used when using href.",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"default": "\"undefined\""
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "readonly",
|
|
46
|
+
"description": "Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.",
|
|
47
|
+
"type": "boolean",
|
|
48
|
+
"default": "\"false\""
|
|
49
|
+
},
|
|
38
50
|
{
|
|
39
51
|
"name": "disabled",
|
|
40
52
|
"description": "Set tot true to disable",
|
|
@@ -106,6 +118,20 @@
|
|
|
106
118
|
"type": "string",
|
|
107
119
|
"default": "\"undefined\""
|
|
108
120
|
},
|
|
121
|
+
{
|
|
122
|
+
"name": "rel",
|
|
123
|
+
"attribute": "rel",
|
|
124
|
+
"description": "Set the rel attribute for an anchor tag, only used when using href.",
|
|
125
|
+
"type": "string",
|
|
126
|
+
"default": "\"undefined\""
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "readonly",
|
|
130
|
+
"attribute": "readonly",
|
|
131
|
+
"description": "Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.",
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"default": "\"false\""
|
|
134
|
+
},
|
|
109
135
|
{
|
|
110
136
|
"name": "styles",
|
|
111
137
|
"type": "CSSResult[]",
|
package/lib/index.js
CHANGED
|
@@ -10,8 +10,7 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
10
10
|
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
11
11
|
if (decorator = decorators[i])
|
|
12
12
|
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
13
|
-
if (kind && result)
|
|
14
|
-
__defProp(target, key, result);
|
|
13
|
+
if (kind && result) __defProp(target, key, result);
|
|
15
14
|
return result;
|
|
16
15
|
};
|
|
17
16
|
let UUIRefNodeDataTypeElement = class extends UUIRefNodeElement {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-ref-node-data-type",
|
|
3
|
-
"version": "1.
|
|
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.
|
|
34
|
-
"@umbraco-ui/uui-ref-node": "1.
|
|
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-data-type",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "e3e398e07b6ff9874aa0656cb7767df42f58a4ce"
|
|
46
46
|
}
|