@umbraco-ui/uui-table 0.1.1 → 1.0.0-alpha.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 +3 -3
- package/package.json +3 -3
package/lib/index.js
CHANGED
|
@@ -29,7 +29,7 @@ UUITableElement.styles = [
|
|
|
29
29
|
display: table;
|
|
30
30
|
width: 100%;
|
|
31
31
|
border-radius: var(--uui-border-radius,3px);
|
|
32
|
-
background-color: var(--uui-
|
|
32
|
+
background-color: var(--uui-color-surface,#fff);
|
|
33
33
|
cursor: default;
|
|
34
34
|
}
|
|
35
35
|
`
|
|
@@ -98,7 +98,7 @@ UUITableCellElement.styles = [
|
|
|
98
98
|
--uui-table-cell-padding,
|
|
99
99
|
var(--uui-size-4,12px) var(--uui-size-5,15px)
|
|
100
100
|
);
|
|
101
|
-
border-top: 1px solid var(--uui-
|
|
101
|
+
border-top: 1px solid var(--uui-color-border,#d8d7d9);
|
|
102
102
|
vertical-align: middle;
|
|
103
103
|
}
|
|
104
104
|
|
|
@@ -271,7 +271,7 @@ UUITableRowElement.styles = [
|
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
:host([selected]) {
|
|
274
|
-
outline: 2px solid var(--uui-
|
|
274
|
+
outline: 2px solid var(--uui-color-selected,#3544b1);
|
|
275
275
|
outline-offset: -3px;
|
|
276
276
|
}
|
|
277
277
|
`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-table",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "0.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.0.0-alpha.0"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-table",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "7d7608bf2fb63a8a077fcd8f0346dea73584b878"
|
|
45
45
|
}
|