@tetacom/ng-components 1.0.46 → 1.0.48

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/style/table.scss +6 -4
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@tetacom/ng-components",
3
- "version": "1.0.46",
3
+ "version": "1.0.48",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
- "@angular/common": "^13.0.0",
7
- "@angular/core": "^13.0.0",
6
+ "@angular/common": "^14.0.0",
7
+ "@angular/core": "^14.0.0",
8
8
  "d3": "^7.1.1",
9
9
  "@ngneat/transloco": "^3.1.0",
10
10
  "object-hash": "^2.2.0",
package/style/table.scss CHANGED
@@ -122,15 +122,17 @@
122
122
  width: 8px;
123
123
  background: transparent;
124
124
  z-index: 10;
125
- display: none;
126
125
  padding: 0 4px;
127
126
 
128
127
  &_drag {
129
- background: getColorVar('white', '50');
130
- width: 1px;
128
+ background: getColorVar('primary', '50');
129
+ width: 2px;
131
130
  height: 100%;
131
+ display: none;
132
+ }
133
+ &:hover &_drag {
134
+ display: block;
132
135
  }
133
-
134
136
  &:hover {
135
137
  cursor: col-resize;
136
138
  }