@neovici/cosmoz-omnitable 14.6.1 → 14.8.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.
@@ -118,6 +118,10 @@ export default css`
118
118
  display: flex;
119
119
  align-items: flex-end;
120
120
  background-color: var(--cosmoz-omnitable-header-bg-color, inherit);
121
+ border-top-left-radius: var(--cosmoz-omnitable-header-border-radius-top-left, 8px);
122
+ border-top-right-radius: var(--cosmoz-omnitable-header-border-radius-top-right, 8px);
123
+ border-bottom-left-radius: var(--cosmoz-omnitable-header-border-radius-bottom-left, 2px);
124
+ border-bottom-right-radius: var(--cosmoz-omnitable-header-border-radius-bottom-right, 2px);
121
125
  }
122
126
 
123
127
  [hidden] {
@@ -147,7 +151,7 @@ export default css`
147
151
  .header-cell {
148
152
  --paper-input-container: {
149
153
  padding-top: 0;
150
- padding-bottom: 0;
154
+ padding-bottom: 1px;
151
155
  --paper-font-caption_-_line-height: 18px;
152
156
  }
153
157
  --paper-font-subhead_-_font-family: var(
@@ -528,6 +532,7 @@ export default css`
528
532
  margin: 4px 8px;
529
533
  padding-top: 2px;
530
534
  }
535
+
531
536
  :host([mini]) .itemRow:not([selected]) {
532
537
  background: var(--cosmoz-omnitable-mini-item-background, #fdfdfd);
533
538
  }
@@ -543,22 +548,26 @@ export default css`
543
548
  :host([mini]) .tableContent {
544
549
  overflow: hidden;
545
550
  }
551
+
546
552
  :host([mini]) .tableContent-scroller::-webkit-scrollbar {
547
553
  width: 4px;
548
554
  }
555
+
549
556
  :host([mini]) .tableContent-scroller::-webkit-scrollbar-track {
550
557
  background: transparent;
551
558
  }
559
+
552
560
  :host([mini]) .tableContent-scroller::-webkit-scrollbar-thumb {
553
- background: transparent;
561
+ background: transparent;
554
562
  }
563
+
555
564
  :host([mini]) .tableContent-scroller:hover::-webkit-scrollbar-thumb {
556
- background: var(--cosmoz-omnitable-mini-scrollbar-thumb-bg, #aaa);
565
+ background: var(--cosmoz-omnitable-mini-scrollbar-thumb-bg, #aaa);
557
566
  }
558
567
 
559
568
  :host([mini]) .tableContent-scroller::-webkit-scrollbar-button:decrement,
560
569
  :host([mini]) .tableContent-scroller::-webkit-scrollbar-button:increment {
561
- width: 0px;
570
+ width: 0px;
562
571
  }
563
572
 
564
573
  :host([mini]) cosmoz-omnitable-settings::part(columns) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovici/cosmoz-omnitable",
3
- "version": "14.6.1",
3
+ "version": "14.8.0",
4
4
  "description": "[![Build Status](https://travis-ci.org/Neovici/cosmoz-omnitable.svg?branch=master)](https://travis-ci.org/Neovici/cosmoz-omnitable)",
5
5
  "keywords": [
6
6
  "web-components"
@@ -54,7 +54,7 @@
54
54
  "body-max-line-length": [
55
55
  1,
56
56
  "always",
57
- 100
57
+ 600
58
58
  ]
59
59
  }
60
60
  },