@umbraco-ui/uui-tabs 1.3.0-rc.0 → 1.3.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 +6 -6
- package/package.json +4 -4
package/lib/index.js
CHANGED
|
@@ -58,7 +58,7 @@ let UUITabElement = class extends ActiveMixin(LabelMixin("", LitElement)) {
|
|
|
58
58
|
UUITabElement.styles = [
|
|
59
59
|
css`
|
|
60
60
|
:host {
|
|
61
|
-
color: var(--uui-tab-text, var(--uui-color-interactive
|
|
61
|
+
color: var(--uui-tab-text, var(--uui-color-interactive,#1b264f));
|
|
62
62
|
font-family: inherit;
|
|
63
63
|
}
|
|
64
64
|
|
|
@@ -87,7 +87,7 @@ UUITabElement.styles = [
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
:host(:not([active]):not([disabled])) #button:hover {
|
|
90
|
-
color: var(--uui-tab-text-hover, var(--uui-color-default-emphasis
|
|
90
|
+
color: var(--uui-tab-text-hover, var(--uui-color-default-emphasis,#3544b1));
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
:host(:not([active]):not([disabled])) #button:active {
|
|
@@ -99,7 +99,7 @@ UUITabElement.styles = [
|
|
|
99
99
|
cursor: default;
|
|
100
100
|
}
|
|
101
101
|
:host([disabled]) #button {
|
|
102
|
-
color: var(--uui-color-disabled-contrast
|
|
102
|
+
color: var(--uui-color-disabled-contrast,#c4c4c4);
|
|
103
103
|
cursor: default;
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -111,14 +111,14 @@ UUITabElement.styles = [
|
|
|
111
111
|
width: calc(100% - 16px);
|
|
112
112
|
left: auto;
|
|
113
113
|
right: auto;
|
|
114
|
-
background-color: var(--uui-color-current
|
|
114
|
+
background-color: var(--uui-color-current,#f5c1bc);
|
|
115
115
|
bottom: 0;
|
|
116
116
|
border-radius: 3px 3px 0 0;
|
|
117
117
|
opacity: 0;
|
|
118
118
|
transition: opacity ease-in 120ms, height ease-in 120ms;
|
|
119
119
|
}
|
|
120
120
|
#button:hover::before {
|
|
121
|
-
background-color: var(--uui-color-current-emphasis,
|
|
121
|
+
background-color: var(--uui-color-current-emphasis,rgb(248, 214, 211));
|
|
122
122
|
}
|
|
123
123
|
:host([active]) #button::before {
|
|
124
124
|
opacity: 1;
|
|
@@ -127,7 +127,7 @@ UUITabElement.styles = [
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
:host([disabled]) #button::before {
|
|
130
|
-
background-color: var(--uui-color-disabled-standalone,
|
|
130
|
+
background-color: var(--uui-color-disabled-standalone,rgb(226, 226, 226));
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
slot[name='icon']::slotted(*) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-tabs",
|
|
3
|
-
"version": "1.3.0
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.3.0
|
|
33
|
+
"@umbraco-ui/uui-base": "1.3.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
37
|
-
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js custom-elements.json",
|
|
37
|
+
"clean": "tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json",
|
|
38
38
|
"analyze": "web-component-analyzer **/*.element.ts --outFile custom-elements.json"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-tabs",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "e662ac3be21cef08076d1dbb978748c2dd30e596"
|
|
45
45
|
}
|