@umbraco-ui/uui-ref-node 1.2.1 → 1.3.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/lib/index.js +7 -7
- package/package.json +6 -6
package/lib/index.js
CHANGED
|
@@ -102,29 +102,29 @@ UUIRefNodeElement.styles = [
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
#detail {
|
|
105
|
-
font-size: var(--uui-type-small-size,
|
|
105
|
+
font-size: var(--uui-type-small-size,var(--uui-size-4));
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
:host(:not([disabled])) #open-part:hover #icon {
|
|
109
|
-
color: var(--uui-color-interactive-emphasis
|
|
109
|
+
color: var(--uui-color-interactive-emphasis,var(--uui-palette-violet-blue));
|
|
110
110
|
}
|
|
111
111
|
:host(:not([disabled])) #open-part:hover #name {
|
|
112
112
|
font-weight: 700;
|
|
113
113
|
text-decoration: underline;
|
|
114
|
-
color: var(--uui-color-interactive-emphasis
|
|
114
|
+
color: var(--uui-color-interactive-emphasis,var(--uui-palette-violet-blue));
|
|
115
115
|
}
|
|
116
116
|
:host(:not([disabled])) #open-part:hover #detail {
|
|
117
|
-
color: var(--uui-color-interactive-emphasis
|
|
117
|
+
color: var(--uui-color-interactive-emphasis,var(--uui-palette-violet-blue));
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
:host([disabled]) #icon {
|
|
121
|
-
color: var(--uui-color-disabled-contrast
|
|
121
|
+
color: var(--uui-color-disabled-contrast,var(--uui-palette-grey));
|
|
122
122
|
}
|
|
123
123
|
:host([disabled]) #name {
|
|
124
|
-
color: var(--uui-color-disabled-contrast
|
|
124
|
+
color: var(--uui-color-disabled-contrast,var(--uui-palette-grey));
|
|
125
125
|
}
|
|
126
126
|
:host([disabled]) #detail {
|
|
127
|
-
color: var(--uui-color-disabled-contrast
|
|
127
|
+
color: var(--uui-color-disabled-contrast,var(--uui-palette-grey));
|
|
128
128
|
}
|
|
129
129
|
`
|
|
130
130
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-ref-node",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0-rc.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.
|
|
34
|
-
"@umbraco-ui/uui-icon": "1.
|
|
35
|
-
"@umbraco-ui/uui-ref": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.3.0-rc.0",
|
|
34
|
+
"@umbraco-ui/uui-icon": "1.3.0-rc.0",
|
|
35
|
+
"@umbraco-ui/uui-ref": "1.3.0-rc.0"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
39
|
-
"clean": "tsc --build --clean && rimraf dist lib/*.js lib/**/*.js custom-elements.json",
|
|
39
|
+
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
|
|
40
40
|
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-ref-node",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "45c3824056586d9817efb3f61dc0bef5478747f0"
|
|
47
47
|
}
|