@vitrosoftware/common-ui-ts 1.1.128 → 1.1.130

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 (34) hide show
  1. package/css/std/controls/select/img/collapse-up.svg +3 -0
  2. package/css/std/controls/select/select.css +56 -0
  3. package/css/std/controls/table-view/img/dependency-arrow-red.svg +4 -0
  4. package/css/std/controls/table-view/img/dependency-arrow.svg +4 -0
  5. package/css/std/controls/table-view/img/dependency-stub-red.svg +4 -0
  6. package/css/std/controls/table-view/img/dependency-stub.svg +4 -0
  7. package/css/std/controls/table-view/img/gantt-constraint-max-end.svg +3 -0
  8. package/css/std/controls/table-view/img/gantt-constraint-min-start.svg +3 -0
  9. package/css/std/controls/table-view/table-view-additional-container.css +9 -0
  10. package/css/std/controls/table-view/table-view-gantt.css +104 -0
  11. package/css/std/controls/table-view/table-view.css +2 -0
  12. package/css/std/controls/table-view/treegrid-cell.css +1 -1
  13. package/css/std/controls/table-view/treegrid-context-menu.css +1 -1
  14. package/css/std/controls/table-view/treegrid-filter.css +4 -1
  15. package/css/std/controls/table-view/treegrid-gantt.css +248 -11
  16. package/css/std/controls/table-view/treegrid.css +3 -1
  17. package/css/std/controls/time-picker/time-picker.css +1 -1
  18. package/dist/index.css +60 -1
  19. package/dist/index.js +501 -366
  20. package/dist/index.js.map +1 -1
  21. package/dist/src/controls/ActionHandler/ActionHandler.d.ts +1 -0
  22. package/dist/src/controls/ActionHandler/ConfirmDialog.d.ts +1 -0
  23. package/dist/src/controls/ActionHandler/ResultDialog.d.ts +1 -0
  24. package/dist/src/controls/Dialog/Dialog.d.ts +1 -0
  25. package/dist/src/controls/Select/Select.d.ts +12 -0
  26. package/dist/src/controls/SystemExceptionDialog/SystemExceptionDialog.d.ts +1 -0
  27. package/dist/src/controls/TableView/TableViewConstants.d.ts +29 -6
  28. package/dist/src/controls/TableView/TableViewContext.d.ts +12 -0
  29. package/dist/src/controls/TableView/TreeGridTableViewContextImpl.d.ts +15 -1
  30. package/dist/src/index.d.ts +2 -0
  31. package/package.json +1 -1
  32. package/src/controls/BimViewer/js/bim-viewer.js +2 -2
  33. package/src/controls/DxfViewer/js/dxf-viewer.js +14 -14
  34. package/src/controls/PdfViewer/js/pdf-viewer.js +1 -1
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.5 16.5L12 9L19.5 16.5" stroke="#4A556C" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,56 @@
1
+ .vitro-select {
2
+ min-width: 142px;
3
+ height: 40px;
4
+ background-color: #F3F8FF;
5
+ border-radius: 4px;
6
+ padding: 8px 16px;
7
+ font-size: 14px;
8
+ line-height: 16px;
9
+ position: relative;
10
+ justify-content: space-between;
11
+ cursor: pointer;
12
+ }
13
+
14
+ .vitro-select::after {
15
+ content: '';
16
+ display: inline-block;
17
+ width: 24px;
18
+ height: 24px;
19
+ background-repeat: no-repeat;
20
+ background-position: center;
21
+ background-size: 100%;
22
+ transform: rotateX(180deg);
23
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/select/img/collapse-up.svg');
24
+ }
25
+
26
+ .vitro-select.vitro-active::after {
27
+ transform: rotateX(0);
28
+ }
29
+
30
+ .vitro-list-container {
31
+ background: #fff;
32
+ border-radius: 4px;
33
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
34
+ position: absolute;
35
+ top: calc(100% + 4px);
36
+ left: 0;
37
+ z-index: 1;
38
+ width: 100%;
39
+ display: none;
40
+ }
41
+
42
+ .vitro-select.vitro-active .vitro-list-container {
43
+ display: block;
44
+ }
45
+
46
+ .vitro-select > .vitro-item {
47
+ padding: 0;
48
+ }
49
+
50
+ .vitro-item {
51
+ padding: 10px 12px;
52
+ }
53
+
54
+ .vitro-item:hover {
55
+ background: #F3F8FF;
56
+ }
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.6719 8L5 3V6.5H6V9.5H5V13L11.6719 8Z" fill="white"/>
3
+ <path d="M6 5L10 8L6 11V5Z" fill="#FF0000"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.6719 8L5 3V6.5H6V9.5H5V13L11.6719 8Z" fill="white"/>
3
+ <path d="M6 5L10 8L6 11V5Z" fill="#326AD6"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.00195 10.0015C9.10652 10.0015 10.002 9.10603 10.002 8.00146C10.002 6.8969 9.10652 6.00146 8.00195 6.00146C6.89738 6.00146 6.00195 6.8969 6.00195 8.00146C6.00195 9.10603 6.89738 10.0015 8.00195 10.0015Z" fill="#FF0000"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11 8.13528C11.0019 8.09092 11.0029 8.04631 11.0029 8.00146C11.0029 7.95662 11.0019 7.91201 11 7.86765V8.13528ZM10.6018 9.50146C10.0829 10.399 9.11273 11.0029 8.00146 11.0029C6.3438 11.0029 5 9.65913 5 8.00146C5 6.3438 6.3438 5 8.00146 5C9.11273 5 10.0829 5.60392 10.6018 6.50146H9.31745C8.96618 6.19304 8.50566 6.00604 8.00146 6.00604C6.89942 6.00604 6.00604 6.89942 6.00604 8.00146C6.00604 9.10351 6.89942 9.99689 8.00146 9.99689C8.50566 9.99689 8.96618 9.80989 9.31745 9.50146H10.6018Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.00195 10.0015C9.10652 10.0015 10.002 9.10603 10.002 8.00146C10.002 6.8969 9.10652 6.00146 8.00195 6.00146C6.89738 6.00146 6.00195 6.8969 6.00195 8.00146C6.00195 9.10603 6.89738 10.0015 8.00195 10.0015Z" fill="#326AD6"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11 8.13528C11.0019 8.09092 11.0029 8.04631 11.0029 8.00146C11.0029 7.95662 11.0019 7.91201 11 7.86765V8.13528ZM10.6018 9.50146C10.0829 10.399 9.11273 11.0029 8.00146 11.0029C6.3438 11.0029 5 9.65913 5 8.00146C5 6.3438 6.3438 5 8.00146 5C9.11273 5 10.0829 5.60392 10.6018 6.50146H9.31745C8.96618 6.19304 8.50566 6.00604 8.00146 6.00604C6.89942 6.00604 6.00604 6.89942 6.00604 8.00146C6.00604 9.10351 6.89942 9.99689 8.00146 9.99689C8.50566 9.99689 8.96618 9.80989 9.31745 9.50146H10.6018Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="4" height="16" viewBox="0 0 4 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.14373 0.38327C1.05727 0.15273 0.836884 0 0.590667 0C0.264451 0 0 0.264451 0 0.590667V15.4093C0 15.7355 0.264451 16 0.590667 16C0.836884 16 1.05727 15.8473 1.14373 15.6167L3.73666 8.70225C3.90645 8.24948 3.90645 7.75052 3.73666 7.29775L1.14373 0.38327Z" fill="#4A556C"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="4" height="16" viewBox="0 0 4 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.85627 0.38327C2.94273 0.15273 3.16312 0 3.40933 0C3.73555 0 4 0.264451 4 0.590667V15.4093C4 15.7355 3.73555 16 3.40933 16C3.16312 16 2.94273 15.8473 2.85627 15.6167L0.263342 8.70225C0.0935536 8.24948 0.0935537 7.75052 0.263343 7.29775L2.85627 0.38327Z" fill="#4A556C"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ .vitro-additional-table-view-container {
2
+ position: absolute;
3
+ top: 0;
4
+ left: 0;
5
+ width: 100%;
6
+ height: 100%;
7
+ display: flex;
8
+ visibility: hidden;
9
+ }
@@ -0,0 +1,104 @@
1
+ .vitro-table-view-gantt * {
2
+ font-size: 12px;
3
+ }
4
+
5
+ .vitro-table-view-gantt .TWLow .TWPanelImage {
6
+ width: 20px;
7
+ height: 20px;
8
+ }
9
+
10
+ .vitro-table-view-gantt .TWPanelSelect,
11
+ .vitro-table-view-gantt .TWPanelSelectOn {
12
+ vertical-align: middle;
13
+ background-size: 20px;
14
+ margin-top: 0 !important;
15
+ }
16
+
17
+ .vitro-table-view-gantt .vitro-table-view-button-context {
18
+ height: 20px;
19
+ width: 20px;
20
+ min-width: 20px;
21
+ }
22
+
23
+ .vitro-table-view-gantt .TWLow .TWIconLeft {
24
+ padding-left: 30px !important;
25
+ background-size: 16px;
26
+ }
27
+
28
+ .vitro-table-view-gantt .TWLow .TWIconRight {
29
+ background-size: 20px;
30
+ }
31
+
32
+ .vitro-table-view-gantt .TWNTree,
33
+ .vitro-table-view-gantt .TWNTreeImage {
34
+ background-size: 16px 16px;
35
+ }
36
+
37
+ .GWMain .GWGanttDep00 {
38
+ box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 1);
39
+ }
40
+
41
+ .GWMain .GWGanttDepVert, .GWMain .GWGanttDepVertTop {
42
+ box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 1), -1px 0px 0px 0px rgba(255, 255, 255, 1);
43
+ }
44
+
45
+ .GWGanttDepArrow0Right,
46
+ .GWGanttDepArrow0Left {
47
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dependency-arrow.svg');
48
+ }
49
+
50
+ .GWGanttDepArrow9Right,
51
+ .GWGanttDepArrow9Left {
52
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dependency-arrow-red.svg');
53
+ }
54
+
55
+ .GWGanttDepArrow0Left,
56
+ .GWGanttDepArrow9Left {
57
+ transform: rotate(180deg);
58
+ }
59
+
60
+ .GWGanttDepStub0Left,
61
+ .GWGanttDepStub0Right {
62
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dependency-stub.svg');
63
+ }
64
+
65
+ .GWGanttDepStub9Left,
66
+ .GWGanttDepStub9Right {
67
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dependency-stub-red.svg');
68
+ }
69
+
70
+ .GWGanttDepStub0Right,
71
+ .GWGanttDepStub9Right {
72
+ transform: rotate(180deg);
73
+ }
74
+
75
+ .GWGanttDep9Color,
76
+ .GWGanttDep9LagColor,
77
+ .GWGanttDep19Color,
78
+ .GWGanttDep19LagColor,
79
+ .GWGanttDep29Color,
80
+ .GWGanttDep29LagColor,
81
+ .GWGanttDep39Color,
82
+ .GWGanttDep39LagColor {
83
+ background: #FF0000;
84
+ border-color: #FF0000;
85
+ }
86
+
87
+ .GWGanttDep0Color,
88
+ .GWGanttDep0LagColor,
89
+ .GWGanttDep10Color,
90
+ .GWGanttDep10LagColor,
91
+ .GWGanttDep20Color,
92
+ .GWGanttDep20LagColor,
93
+ .GWGanttDep30Color,
94
+ .GWGanttDep30LagColor {
95
+ background: #326AD6;
96
+ border-color: #326AD6;
97
+ }
98
+
99
+ .GWGanttDepStub00 {
100
+ width: 6px;
101
+ height: 6px;
102
+ background-size: 16px 16px;
103
+ background-position: center center;
104
+ }
@@ -14,6 +14,8 @@
14
14
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/treegrid-tip.css');
15
15
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-custom-lookup-edit.css');
16
16
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-custom-date-edit.css');
17
+ @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-additional-container.css');
18
+ @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
17
19
 
18
20
  :global(#TableView) {
19
21
  height: auto;
@@ -6,7 +6,7 @@
6
6
  text-align: unset;
7
7
  }
8
8
 
9
- .TWDataRow td {
9
+ .TWCellBase {
10
10
  border-bottom: 1px solid #E4E6EC !important;
11
11
  }
12
12
 
@@ -81,7 +81,7 @@ vitro-table-view-popup-menu-topMain.TWMenuMainRight::before,
81
81
  .vitro-table-view-popup-menuMain .TWMenuBody {
82
82
  margin: 0;
83
83
  width: 100%;
84
- cursor: default;
84
+ cursor: pointer;
85
85
  max-height: 288px;
86
86
  overflow-y: auto !important;
87
87
  overflow-x: hidden !important;
@@ -53,9 +53,12 @@
53
53
  background-position-x: 12px;
54
54
  }
55
55
 
56
+ .TWCellFilter, .TWCellFilterPanel {
57
+ border-bottom: none !important;
58
+ }
59
+
56
60
  .TWCellFilter, .TWCellFilterPanel, .TWGanttFilter {
57
61
  background-color: #F7F9FC;
58
- border-top: 1px solid #E4E6EC !important;
59
62
  }
60
63
 
61
64
  .TWFilter0Left, .TWFilter0Right, .TWFilter0Menu {
@@ -1,13 +1,3 @@
1
- .GWGanttBaseOut {
2
- background: none !important;
3
- }
4
-
5
- .GWGanttHtmlIn > div {
6
- width: 100%;
7
- height: 100%;
8
- border-radius: 6px;
9
- }
10
-
11
1
  .GWGanttHtmlLeft0.GWGanttHtml > span,
12
2
  .GWGanttHtmlRight0 .GWGanttHtml > span {
13
3
  font-size: 12px;
@@ -24,7 +14,7 @@
24
14
  overflow: visible !important;
25
15
  }
26
16
 
27
- .TWGanttHeader {
17
+ .TWCellHeader.TWGanttHeader {
28
18
  padding: 0 !important;
29
19
  }
30
20
 
@@ -38,6 +28,10 @@
38
28
  border-bottom: 1px solid #E4E6EC !important;
39
29
  }
40
30
 
31
+ .TWGanttHeader2 {
32
+ text-overflow: initial;
33
+ }
34
+
41
35
  .TWGanttHeader3 {
42
36
  border-top: 1px solid #E4E6EC !important;
43
37
  }
@@ -63,4 +57,247 @@
63
57
  .GWGanttMark {
64
58
  background: #fffc85 !important;
65
59
  opacity: 0.4 !important;
60
+ }
61
+
62
+ .GWGanttBack3 {
63
+ background: #E9ECEF;
64
+ opacity: 0.5;
65
+ }
66
+
67
+ .GWGanttBack2 {
68
+ background: none;
69
+ }
70
+
71
+ .TWCell.TWGantt {
72
+ padding: 0 !important;
73
+ }
74
+
75
+ .TWMain .TWGanttHeaderBase b {
76
+ color: #222D44;
77
+ font-weight: normal;
78
+ font-family: 'InterSemiBold' !important;
79
+ }
80
+
81
+ .TWLow .TWGanttHeaderBase {
82
+ padding: 0;
83
+ }
84
+
85
+ .TWGanttHeaderBase.TWGanttHeader2 {
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: center;
89
+ }
90
+
91
+ .TWGanttHeaderBase.TWGanttHeader2 > div {
92
+ display: flex;
93
+ justify-content: center;
94
+ align-items: center;
95
+ height: 100%;
96
+ text-align: center;
97
+ }
98
+
99
+ .TWGanttHeaderBase.TWGanttHeader1 {
100
+ text-align: left;
101
+ padding-left: 10px;
102
+ display: flex;
103
+ align-items: center;
104
+ text-transform: capitalize;
105
+ }
106
+
107
+ .TWGanttHeaderBase.TWGanttHeader1 > b {
108
+ margin-right: 8px;
109
+ }
110
+
111
+ .Folder .GWGanttBaseOut {
112
+ overflow: visible;
113
+ }
114
+
115
+ .GWGanttBaseOut {
116
+ background: none !important;
117
+ border-radius: 2px;
118
+ margin: 0 !important;
119
+ padding: 2px 0 0 0 !important;
120
+ }
121
+
122
+ .GWGanttHtmlIn {
123
+ padding: 0;
124
+ background-color: #fff;
125
+ border-radius: 1px;
126
+ }
127
+
128
+ .GWGanttHtmlIn > div {
129
+ width: 100%;
130
+ height: 100%;
131
+ border-radius: 1px;
132
+ }
133
+
134
+ .Folder .GWGanttHtmlIn > div {
135
+ opacity: 1;
136
+ }
137
+
138
+ .Folder .GWGanttHtmlIn::before,
139
+ .Folder .GWGanttHtmlIn::after {
140
+ content: '';
141
+ display: block;
142
+ width: 0;
143
+ height: 0;
144
+ position: absolute;
145
+ top: 100%;
146
+ }
147
+
148
+ .Folder .GWGanttHtmlIn::before {
149
+ border-left: 0px solid transparent;
150
+ border-right: 2px solid transparent;
151
+ border-top: 3px solid #6C757D;
152
+ right: 100%;
153
+ }
154
+
155
+ .Folder .GWGanttHtmlIn::after {
156
+ border-left: 2px solid transparent;
157
+ border-right: 0px solid transparent;
158
+ border-top: 3px solid #6C757D;
159
+ left: 100%;
160
+ }
161
+
162
+ .Folder .GWGanttHtmlIn {
163
+ position: relative;
164
+ overflow: visible;
165
+ border-left: 2px solid #6C757D;
166
+ border-right: 2px solid #6C757D;
167
+ border-radius: 1px 1px 0 0;
168
+ }
169
+
170
+ .GWGanttConstraint {
171
+ width: 4px !important;
172
+ background-size: 4px 16px !important;
173
+ background-position: 0 2px;
174
+ }
175
+
176
+ .GWGanttConstraint.GWGanttMinStart {
177
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/gantt-constraint-min-start.svg');
178
+ }
179
+
180
+ .GWGanttConstraint.GWGanttMaxEnd {
181
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/gantt-constraint-max-end.svg');
182
+ }
183
+
184
+ .GWGanttHtmlRight0.GWGanttHtml {
185
+ margin-left: 8px;
186
+ }
187
+
188
+ .TWGanttMenuMain {
189
+ width: 241px;
190
+ margin: 0;
191
+ border: none;
192
+ border-radius: 4px;
193
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15), 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
194
+ }
195
+
196
+ .TWGanttMenuMain .TWGanttMenuOuter {
197
+ padding: 0;
198
+ margin: 0;
199
+ border-radius: 4px;
200
+ border: none;
201
+ width: 241px !important;
202
+ }
203
+
204
+ .TWGanttMenuMain .TWGanttMenuBody {
205
+ margin: 0;
206
+ width: 100%;
207
+ cursor: pointer;
208
+ max-height: 288px;
209
+ overflow-y: auto !important;
210
+ overflow-x: hidden !important;
211
+ }
212
+
213
+ .TWGanttMenuMain .TWGanttMenuBody::-webkit-scrollbar {
214
+ width: 4px;
215
+ height: 4px;
216
+ background: transparent;
217
+ }
218
+
219
+ .TWGanttMenuMain .TWGanttMenuBody::-webkit-scrollbar-button {
220
+ display: none;
221
+ }
222
+
223
+ .TWGanttMenuMain .TWGanttMenuBody::-webkit-scrollbar-track {
224
+ background: transparent;
225
+ }
226
+
227
+ .TWGanttMenuMain .TWGanttMenuBody::-webkit-scrollbar-thumb {
228
+ background: #E4E6EC;
229
+ border-radius: 4px;
230
+ }
231
+
232
+ .TWGanttMenuMain .TWMenuItem {
233
+ margin: 0 !important;
234
+ padding: 8px 0 !important;
235
+ }
236
+
237
+ .TWGanttMenuMain .TWMenuItemText {
238
+ line-height: 150%;
239
+ padding: 0 12px;
240
+ white-space: normal;
241
+ }
242
+
243
+ .TWGanttMenuMain .TWMenuFocus,
244
+ .TWGanttMenuMain .TWMenuHover {
245
+ background: #F3F8FF !important;
246
+ }
247
+
248
+ .TWGanttMenuMain .TWGanttMenuSeparator {
249
+ margin: 0;
250
+ }
251
+
252
+ .TWGanttMenuMain::before {
253
+ content: '';
254
+ display: block;
255
+ height: 21px;
256
+ width: 32px;
257
+ overflow: hidden;
258
+ background-position: center 0;
259
+ background-size: 44px 42px;
260
+ background-repeat: no-repeat;
261
+ position: absolute;
262
+ left: 12px;
263
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/img/dropdown-menu-arrow.svg');
264
+ }
265
+
266
+ .TWGanttMenuMainBottom {
267
+ transform: translate(-28px, 10px);
268
+ }
269
+
270
+ .TWGanttMenuMainBottom::before {
271
+ top: -20px;
272
+ }
273
+
274
+ .TWGanttMenuMainTop {
275
+ transform: translate(-28px, -10px);
276
+ }
277
+
278
+ .TWGanttMenuMainTop::before {
279
+ bottom: -20px;
280
+ transform: rotateX(180deg);
281
+ }
282
+
283
+ .GWGanttMarkText1.GWGanttMark1 {
284
+ width: 1px;
285
+ padding: 0 0 0 6px;
286
+ background: linear-gradient(90deg, #DD8100 0, #DD8100 1px, transparent 1px);
287
+ color: transparent !important;
288
+ font-size: 12px;
289
+ }
290
+
291
+ .TWBodyRight > div > div > div > .TWSection > tbody > tr.TWDataRow:nth-child(2) > td > .GWGanttMarkText1 {
292
+ color: #DD8100 !important;
293
+ }
294
+
295
+ .TWGanttHeaderBase,
296
+ .TWGanttHeaderBase * {
297
+ font-family: 'InterRegular' !important;
298
+ font-size: 12px !important;
299
+ }
300
+
301
+ .TWGanttHeaderBase > div > br {
302
+ display: none;
66
303
  }
@@ -9,7 +9,7 @@
9
9
  font-size: 14px;
10
10
  line-height: 16px;
11
11
  font-family: "InterRegular";
12
- color: #222D44 !important;
12
+ color: #222D44;
13
13
  border: none;
14
14
  }
15
15
 
@@ -93,6 +93,8 @@
93
93
 
94
94
  .TWRightSplitter {
95
95
  background: #4292F7;
96
+ width: 2px !important;
97
+ padding: 0;
96
98
  }
97
99
 
98
100
  .vitro-table-full-width {
@@ -112,7 +112,7 @@
112
112
  top: 6px !important;
113
113
  left: unset !important;
114
114
  right: 0 !important;
115
- width: 190px !important;
115
+ width: 100% !important;
116
116
  min-width: unset !important;
117
117
  }
118
118
 
package/dist/index.css CHANGED
@@ -679,6 +679,8 @@ html, body {
679
679
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/treegrid-tip.css');
680
680
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-custom-lookup-edit.css');
681
681
  @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-custom-date-edit.css');
682
+ @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-additional-container.css');
683
+ @import url('@vitrosoftware/common-ui-ts/css/std/controls/table-view/table-view-gantt.css');
682
684
 
683
685
  #TableView {
684
686
  height: auto;
@@ -3945,7 +3947,7 @@ html, body {
3945
3947
  top: 6px !important;
3946
3948
  left: unset !important;
3947
3949
  right: 0 !important;
3948
- width: 190px !important;
3950
+ width: 100% !important;
3949
3951
  min-width: unset !important;
3950
3952
  }
3951
3953
 
@@ -7824,3 +7826,60 @@ li:first-child ._command-menu-item_vitro-item_2pVhk23:hover {
7824
7826
  left: 0;
7825
7827
  }
7826
7828
  }
7829
+
7830
+ ._select_vitro-select_EObExkL {
7831
+ min-width: 142px;
7832
+ height: 40px;
7833
+ background-color: #F3F8FF;
7834
+ border-radius: 4px;
7835
+ padding: 8px 16px;
7836
+ font-size: 14px;
7837
+ line-height: 16px;
7838
+ position: relative;
7839
+ justify-content: space-between;
7840
+ cursor: pointer;
7841
+ }
7842
+
7843
+ ._select_vitro-select_EObExkL::after {
7844
+ content: '';
7845
+ display: inline-block;
7846
+ width: 24px;
7847
+ height: 24px;
7848
+ background-repeat: no-repeat;
7849
+ background-position: center;
7850
+ background-size: 100%;
7851
+ transform: rotateX(180deg);
7852
+ background-image: url('@vitrosoftware/common-ui-ts/css/std/controls/select/img/collapse-up.svg');
7853
+ }
7854
+
7855
+ ._select_vitro-select_EObExkL._select_vitro-active_3I2oZ9Y::after {
7856
+ transform: rotateX(0);
7857
+ }
7858
+
7859
+ ._select_vitro-list-container_1iaPtG5 {
7860
+ background: #fff;
7861
+ border-radius: 4px;
7862
+ box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.18), 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
7863
+ position: absolute;
7864
+ top: calc(100% + 4px);
7865
+ left: 0;
7866
+ z-index: 1;
7867
+ width: 100%;
7868
+ display: none;
7869
+ }
7870
+
7871
+ ._select_vitro-select_EObExkL._select_vitro-active_3I2oZ9Y ._select_vitro-list-container_1iaPtG5 {
7872
+ display: block;
7873
+ }
7874
+
7875
+ ._select_vitro-select_EObExkL > ._select_vitro-item_3Q88bWt {
7876
+ padding: 0;
7877
+ }
7878
+
7879
+ ._select_vitro-item_3Q88bWt {
7880
+ padding: 10px 12px;
7881
+ }
7882
+
7883
+ ._select_vitro-item_3Q88bWt:hover {
7884
+ background: #F3F8FF;
7885
+ }