@umbraco-ui/uui-ref-node-member 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 ref-node-member component.
|
|
|
6
6
|
|
|
7
7
|
### See it in action
|
|
8
8
|
|
|
9
|
-
Preview the component on [Storybook](https://uui.umbraco.com/?path=/
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-ref-node-member--docs)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/custom-elements.json
CHANGED
|
@@ -74,11 +74,6 @@
|
|
|
74
74
|
"type": "string",
|
|
75
75
|
"default": "\"''\""
|
|
76
76
|
},
|
|
77
|
-
{
|
|
78
|
-
"name": "styles",
|
|
79
|
-
"type": "CSSResult[]",
|
|
80
|
-
"default": "[null]"
|
|
81
|
-
},
|
|
82
77
|
{
|
|
83
78
|
"name": "disabled",
|
|
84
79
|
"attribute": "disabled",
|
|
@@ -93,6 +88,11 @@
|
|
|
93
88
|
"type": "boolean",
|
|
94
89
|
"default": "\"false\""
|
|
95
90
|
},
|
|
91
|
+
{
|
|
92
|
+
"name": "styles",
|
|
93
|
+
"type": "CSSResult[]",
|
|
94
|
+
"default": "[null]"
|
|
95
|
+
},
|
|
96
96
|
{
|
|
97
97
|
"name": "selectOnly",
|
|
98
98
|
"attribute": "select-only",
|
|
@@ -7,7 +7,6 @@ import { UUIRefNodeElement } from '@umbraco-ui/uui-ref-node/lib';
|
|
|
7
7
|
* @description - Component for displaying a reference to a Member node.
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUIRefNodeMemberElement extends UUIRefNodeElement {
|
|
10
|
-
static styles: import("lit").CSSResult[];
|
|
11
10
|
protected fallbackIcon: string;
|
|
12
11
|
/**
|
|
13
12
|
* Group name
|
|
@@ -17,6 +16,7 @@ export declare class UUIRefNodeMemberElement extends UUIRefNodeElement {
|
|
|
17
16
|
*/
|
|
18
17
|
groupName: string;
|
|
19
18
|
protected renderDetail(): import("lit-html").TemplateResult<1>;
|
|
19
|
+
static styles: import("lit").CSSResult[];
|
|
20
20
|
}
|
|
21
21
|
declare global {
|
|
22
22
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-ref-node-member",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.2",
|
|
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.5.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-ref-node": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.2",
|
|
34
|
+
"@umbraco-ui/uui-ref-node": "1.5.0-rc.2"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "npm run analyze && tsc --build --force && 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-member",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "573af25cbb43f673731b87dd8e23dbe632bfc348"
|
|
46
46
|
}
|