@vitrosoftware/common-ui-ts 1.1.211 → 1.1.212

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.
@@ -36,7 +36,7 @@
36
36
 
37
37
  .vitro-alert-content {
38
38
  display: flex;
39
- align-items: flex-start;
39
+ align-items: center;
40
40
  height: auto;
41
41
  }
42
42
 
@@ -58,13 +58,14 @@
58
58
  background-position: center;
59
59
  background-size: 100%;
60
60
  background-repeat: no-repeat;
61
+ align-self: flex-start;
61
62
  }
62
63
 
63
64
  .vitro-text {
64
65
  display: flex;
65
66
  flex-grow: 1;
66
67
  font-size: 14px;
67
- line-height: 21px;
68
+ line-height: 20px;
68
69
  color: #4A556C;
69
70
  flex-direction: column;
70
71
  overflow: hidden;
@@ -3,7 +3,7 @@
3
3
  display: flex;
4
4
  flex-direction: column;
5
5
  border-radius: 4px;
6
- margin-top: 4px;
6
+ margin: 4px 0;
7
7
  background: #fff;
8
8
  border-radius: 4px;
9
9
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
@@ -1,4 +1,4 @@
1
- .table-view-custom-lookup-edit {
2
1
  position: absolute;
3
2
  z-index: 10000;
3
+ .table-view-custom-lookup-edit {
4
4
  position: absolute;
5
5
  z-index: 900;
6
6
  background: #fff;
7
7
  height: 32px;
8
8
  padding: 0;
9
9
  margin: 0px !important;
10
10
 
11
11
  .table-view-custom-lookup-edit > div > div:first-child {
12
12
  min-height: initial;
13
13
  height: 32px;
14
14
  border: 0;
15
15
  border-radius: 0;
16
16
  padding: 3px 22px 3px 3px;
17
17
  width: auto;
18
18
  min-width: 100%;
19
19
  top: 4px !important;
20
20
  right: 0;
21
21
  display: none;
@@ -50,6 +50,18 @@
50
50
  margin-right: 4px;
51
51
  }
52
52
 
53
+ .TWCell .vitro-task-status {
54
+ display: flex;
55
+ gap: 12px;
56
+ align-items: center;
57
+ }
58
+
59
+ .TWCell .vitro-task-status > div {
60
+ width: 8px;
61
+ height: 8px;
62
+ border-radius: 50%;
63
+ }
64
+
53
65
  .TWClassHoveredCell,
54
66
  .TWClassHoveredCellReadOnly,
55
67
  .TWClassHoveredCellPanel {
package/dist/index.css CHANGED
@@ -4172,7 +4172,7 @@ div._component-loader_vitro-component-loader_3J3a2or {
4172
4172
  display: flex;
4173
4173
  flex-direction: column;
4174
4174
  border-radius: 4px;
4175
- margin-top: 4px;
4175
+ margin: 4px 0;
4176
4176
  background: #fff;
4177
4177
  border-radius: 4px;
4178
4178
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
@@ -6610,7 +6610,7 @@ div._component-loader_vitro-component-loader_3J3a2or {
6610
6610
 
6611
6611
  ._alert_vitro-alert-content_10fW1n4 {
6612
6612
  display: flex;
6613
- align-items: flex-start;
6613
+ align-items: center;
6614
6614
  height: auto;
6615
6615
  }
6616
6616
 
@@ -6632,13 +6632,14 @@ div._component-loader_vitro-component-loader_3J3a2or {
6632
6632
  background-position: center;
6633
6633
  background-size: 100%;
6634
6634
  background-repeat: no-repeat;
6635
+ align-self: flex-start;
6635
6636
  }
6636
6637
 
6637
6638
  ._alert_vitro-text_37Erxqj {
6638
6639
  display: flex;
6639
6640
  flex-grow: 1;
6640
6641
  font-size: 14px;
6641
- line-height: 21px;
6642
+ line-height: 20px;
6642
6643
  color: #4A556C;
6643
6644
  flex-direction: column;
6644
6645
  overflow: hidden;
package/dist/index.js CHANGED
@@ -21676,6 +21676,7 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
21676
21676
  this.isFilterOneLevel = false;
21677
21677
  this.gridChangesFormat = 'JSON';
21678
21678
  this.searchCriterionMap = new Map();
21679
+ this.visibleColumnList = [];
21679
21680
  this.grid = grid;
21680
21681
  this.id = grid.id;
21681
21682
  this.grid.Source.Upload.Format = this.gridChangesFormat;
@@ -22105,6 +22106,9 @@ var TableViewServiceImpl = /*#__PURE__*/function () {
22105
22106
  };
22106
22107
  _proto.setVisibleColumnListXml = function setVisibleColumnListXml(data) {
22107
22108
  var visibleColumnNameList = this.getCols(ATTRIBUTE.VISIBLE);
22109
+ if (this.visibleColumnList && this.visibleColumnList.length) {
22110
+ visibleColumnNameList = visibleColumnNameList.concat(this.visibleColumnList);
22111
+ }
22108
22112
  if (visibleColumnNameList && visibleColumnNameList.length) {
22109
22113
  this.addGanttVisibleColumnList(visibleColumnNameList);
22110
22114
  var visibleColumnNameListJson = JSON.stringify(visibleColumnNameList);
@@ -67010,7 +67014,7 @@ var Viewer = function Viewer(props) {
67010
67014
  };
67011
67015
 
67012
67016
  var name = "@vitrosoftware/common-ui-ts";
67013
- var version$1 = "1.1.211";
67017
+ var version$1 = "1.1.212";
67014
67018
  var description = "vitro software common ui ts";
67015
67019
  var author = "";
67016
67020
  var license = "MIT";