raise-common-lib 0.0.66 → 0.0.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raise-common-lib",
3
- "version": "0.0.66",
3
+ "version": "0.0.68",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^8.2.3 || ^9.0.0",
6
6
  "@angular/core": "^8.2.3 || ^9.0.0"
@@ -1,4 +1,5 @@
1
- .e-grid {
1
+ .e-grid,
2
+ .e-treegrid {
2
3
  font-family: var(--rs-font-family);
3
4
  height: 100%;
4
5
  display: flex;
@@ -203,17 +204,20 @@
203
204
  }
204
205
  .e-rowcell {
205
206
  padding: 2px 12px;
206
-
207
+ &.e-leftfreeze {
208
+ border-right: none;
209
+ border-left: none;
210
+ }
207
211
  &:not(.e-editedbatchcell):not(.e-updatedtd) {
208
212
  color: var(--rs-text-color);
209
213
  font-family: Arial;
210
214
  font-size: var(--rs-grid-row-cell-font-size);
211
215
  font-weight: 400;
212
- line-height: 23px;
216
+ line-height: 24px;
213
217
  height: var(--rs-grid-row-height);
214
218
  }
215
219
  &.e-active {
216
- background: rgba(31, 123, 255, 0.08); // selected bg
220
+ background-color: rgba(31, 123, 255, 0.08) !important; // selected bg
217
221
  .e-checkbox-wrapper {
218
222
  display: block;
219
223
  }
@@ -30,29 +30,39 @@ textarea.e-input:focus {
30
30
  }
31
31
 
32
32
  input.e-input {
33
- height: var(--rs-input-line-height) !important;
34
- line-height: calc(var(--rs-input-line-height) - 2px) !important;
33
+ height: var(--rs-input-line-height);
34
+ line-height: calc(var(--rs-input-line-height) - 2px);
35
35
  }
36
36
  .e-textbox {
37
37
  .e-input-group {
38
38
  box-shadow: none !important;
39
39
  border-color: var(--rs-input-border-color) !important;
40
40
  &.e-input-focus,
41
- &:hover {
41
+ &:not(.e-disabled):hover {
42
42
  box-shadow: 0px 0px 3px 0px rgba(31, 123, 255, 0.4) !important;
43
43
  border-color: var(--rs-input-hover-border-color) !important;
44
44
  input.e-input {
45
45
  box-shadow: none !important;
46
46
  }
47
47
  }
48
- &.error:not(:focus-within):not(.e-input-focus) {
49
- border-color: var(--rs-input-error-border-color) !important;
50
- }
51
48
  input.e-input {
52
49
  height: calc(var(--rs-input-line-height) - 2px) !important;
53
50
  line-height: calc(var(--rs-input-line-height) - 4px) !important;
54
51
  }
55
52
  }
53
+ &.error {
54
+ .e-input-group {
55
+ border-color: var(--rs-input-error-border-color) !important;
56
+ &:hover {
57
+ border-color: var(--rs-input-error-border-color) !important;
58
+ box-shadow: none !important;
59
+ }
60
+ &.e-input-focus {
61
+ border-color: var(--rs-input-focus-border-color) !important;
62
+ box-shadow: none !important;
63
+ }
64
+ }
65
+ }
56
66
  }
57
67
  .e-numeric.e-input-group {
58
68
  border: 0 !important;