@neovici/cosmoz-omnitable 8.0.0-beta.2 → 8.0.0-beta.3
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
|
@@ -28,3 +28,5 @@ views/administration/periods/list.js
|
|
|
28
28
|
BUGS:
|
|
29
29
|
* when navigating the queue, filters are not reset when view-core is reused
|
|
30
30
|
* autocomplete columns without valueProperty might not work
|
|
31
|
+
* treenode cells have show-max-nodes="undefined"
|
|
32
|
+
* treenode source has empty texts
|
|
@@ -22,7 +22,7 @@ const checkbox = `
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.checkbox:checked {
|
|
25
|
-
background-color: var(--
|
|
25
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
26
26
|
box-shadow: none;
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -63,7 +63,7 @@ const checkbox = `
|
|
|
63
63
|
height: 2px;
|
|
64
64
|
left: 4px;
|
|
65
65
|
top: 8px;
|
|
66
|
-
|
|
66
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
67
67
|
}
|
|
68
68
|
`;
|
|
69
69
|
|
|
@@ -282,7 +282,7 @@ export default `<style>
|
|
|
282
282
|
display: flex;
|
|
283
283
|
align-items: center;
|
|
284
284
|
border-top: solid 1px #e8e8e8;
|
|
285
|
-
background-color: #f5f5f5;
|
|
285
|
+
background-color: var(--cosmoz-omnitable-footer-bg-color, #f5f5f5);
|
|
286
286
|
min-height: 25px;
|
|
287
287
|
height: 63px;
|
|
288
288
|
margin-bottom: 1px; /* Chrome overflow rendering bug? When only component in a view */
|
package/cosmoz-omnitable.js
CHANGED
|
@@ -3,7 +3,6 @@ import '@polymer/iron-icons/iron-icons';
|
|
|
3
3
|
import '@polymer/iron-icon/iron-icon';
|
|
4
4
|
import '@polymer/iron-label/iron-label';
|
|
5
5
|
import '@polymer/paper-button/paper-button';
|
|
6
|
-
import '@polymer/paper-checkbox/paper-checkbox';
|
|
7
6
|
import '@polymer/paper-dropdown-menu/paper-dropdown-menu';
|
|
8
7
|
import '@polymer/paper-icon-button/paper-icon-button';
|
|
9
8
|
import '@polymer/paper-item/paper-item';
|
|
@@ -232,7 +232,7 @@ const settingsStyles = `
|
|
|
232
232
|
position: absolute;
|
|
233
233
|
top: 1px;
|
|
234
234
|
right: -4px;
|
|
235
|
-
background-color: var(--
|
|
235
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
236
236
|
width: 8px;
|
|
237
237
|
height: 8px;
|
|
238
238
|
border-radius: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovici/cosmoz-omnitable",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.3",
|
|
4
4
|
"description": "[](https://travis-ci.org/Neovici/cosmoz-omnitable)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components"
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"@polymer/iron-icons": "^3.0.0",
|
|
65
65
|
"@polymer/iron-label": "^3.0.0",
|
|
66
66
|
"@polymer/paper-button": "^3.0.0",
|
|
67
|
-
"@polymer/paper-checkbox": "^3.0.0",
|
|
68
67
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
69
68
|
"@polymer/paper-icon-button": "^3.0.0",
|
|
70
69
|
"@polymer/paper-input": "^3.2.0",
|