@vitrosoftware/common-ui-ts 1.1.65 → 1.1.67

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/css/common.css CHANGED
@@ -22,7 +22,7 @@
22
22
  font-family: 'InterRegular';
23
23
  line-height: 24px;
24
24
  margin-right: 24px;
25
- margin-bottom: 14px;
25
+ margin-bottom: 0;
26
26
  }
27
27
 
28
28
  :global(.vitro-flex) {
@@ -4,6 +4,7 @@
4
4
  position: relative;
5
5
  margin-bottom: 16px;
6
6
  height: 24px;
7
+ max-width: 100%;
7
8
  }
8
9
 
9
10
  .vitro-breadcrumbs li {
@@ -17,6 +18,10 @@
17
18
  align-items: center;
18
19
  }
19
20
 
21
+ .vitro-breadcrumbs li > div:first-child {
22
+ cursor: pointer;
23
+ }
24
+
20
25
  .vitro-breadcrumbs-list-wrap {
21
26
  display: flex;
22
27
  position: relative;
@@ -36,7 +41,6 @@
36
41
  color: #8E98A3;
37
42
  font-size: 14px;
38
43
  line-height: 16px;
39
- cursor: pointer;
40
44
  display: flex;
41
45
  align-items: center;
42
46
  }
@@ -63,6 +67,7 @@
63
67
  .vitro-breadcrumbs-list > li:last-child{
64
68
  color: #222D44;
65
69
  font-family: 'InterMedium';
70
+ pointer-events: none;
66
71
  }
67
72
 
68
73
  .vitro-breadcrumbs-button {
@@ -2,7 +2,6 @@
2
2
  display: flex;
3
3
  z-index: 800;
4
4
  padding: 0 !important;
5
- margin-bottom: 12px;
6
5
  min-height: 32px;
7
6
  }
8
7
 
@@ -1,7 +1,6 @@
1
1
  .vitro-search {
2
2
  position: relative;
3
3
  align-self: baseline;
4
- margin-right: 16px;
5
4
  margin-left: auto;
6
5
  max-width: 376px;
7
6
  }
@@ -43,4 +43,11 @@
43
43
  :global(.vitro-tableview-progress-message.vitro-table-view-export-message) {
44
44
  background-color: #fff;
45
45
  border: 1px solid #ff5b2d !important;
46
+ }
47
+
48
+ :global(.vitro-group-row) {
49
+ background: #F7F9FC;
50
+ font-family: 'InterMedium';
51
+ border-top: 1px solid #E4E6EC !important;
52
+ color: #4A556C !important;
46
53
  }
@@ -580,15 +580,21 @@
580
580
  color: #BDBDBD;
581
581
  }
582
582
 
583
- .TWCell .vitro-flex > .vitro-avatar,
584
583
  .TWCell .vitro-flex > .vitro-icon {
585
584
  margin-right: 4px;
586
- font-size: 12px;
587
585
  line-height: 24px;
588
586
  width: 24px;
589
587
  height: 24px;
590
588
  }
591
589
 
590
+ .TWCell .vitro-flex > .vitro-avatar {
591
+ width: 28px;
592
+ height: 28px;
593
+ line-height: 28px;
594
+ font-size: 14px;
595
+ margin-right: 4px;
596
+ }
597
+
592
598
  .TWRowAbove {
593
599
  margin: 0;
594
600
  padding: 0 24px;
@@ -635,6 +641,18 @@
635
641
  left: 0;
636
642
  }
637
643
 
644
+ .TWTabHtml1::before {
645
+ content: '';
646
+ display: inline-block;
647
+ height: 16px;
648
+ margin-right: 4px;
649
+ width: 16px;
650
+ margin-left: -6px;
651
+ vertical-align: sub;
652
+ /* check.svg URL-encoder for SVG */
653
+ background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='check-one /Line/Black' clip-path='url(%23clip0_2166_122689)'%3E%3Cpath id='Vector' d='M4 8L7 11L12 6' stroke='%23222D44' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2166_122689'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
654
+ }
655
+
638
656
  .TWHeaderGroup {
639
657
  padding: 0 4px;
640
658
  background: #fff;
@@ -738,6 +756,7 @@
738
756
  .TWMenuButton:hover,
739
757
  .TWMenuButton:active {
740
758
  background: #3274E0;
759
+ border: none;
741
760
  }
742
761
 
743
762
  .TWDialogButtonCancel {
@@ -77,4 +77,5 @@ export interface TableViewContext {
77
77
  getFocusedRows(): any[];
78
78
  getFilter(spec: boolean): any[];
79
79
  selectRange(row1: any, col1: any, row2: any, col2: any, select: boolean): any;
80
+ showColumns(): any;
80
81
  }
@@ -87,4 +87,5 @@ export declare class TreeGridTableViewContextImpl implements TableViewContext {
87
87
  getFocusedRows(): any[];
88
88
  getFilter(spec: boolean): any[];
89
89
  selectRange(row1: any, col1: any, row2: any, col2: any, select: boolean): any;
90
+ showColumns(): any;
90
91
  }
package/dist/index.css CHANGED
@@ -22,7 +22,7 @@
22
22
  font-family: 'InterRegular';
23
23
  line-height: 24px;
24
24
  margin-right: 24px;
25
- margin-bottom: 14px;
25
+ margin-bottom: 0;
26
26
  }
27
27
 
28
28
  .vitro-flex {
@@ -56,6 +56,7 @@
56
56
  position: relative;
57
57
  margin-bottom: 16px;
58
58
  height: 24px;
59
+ max-width: 100%;
59
60
  }
60
61
 
61
62
  ._breadcrumbs_vitro-breadcrumbs_3r4NcQY li {
@@ -69,6 +70,10 @@
69
70
  align-items: center;
70
71
  }
71
72
 
73
+ ._breadcrumbs_vitro-breadcrumbs_3r4NcQY li > div:first-child {
74
+ cursor: pointer;
75
+ }
76
+
72
77
  ._breadcrumbs_vitro-breadcrumbs-list-wrap_1_JBrw0 {
73
78
  display: flex;
74
79
  position: relative;
@@ -88,7 +93,6 @@
88
93
  color: #8E98A3;
89
94
  font-size: 14px;
90
95
  line-height: 16px;
91
- cursor: pointer;
92
96
  display: flex;
93
97
  align-items: center;
94
98
  }
@@ -115,6 +119,7 @@
115
119
  ._breadcrumbs_vitro-breadcrumbs-list_1SNtgtJ > li:last-child{
116
120
  color: #222D44;
117
121
  font-family: 'InterMedium';
122
+ pointer-events: none;
118
123
  }
119
124
 
120
125
  ._breadcrumbs_vitro-breadcrumbs-button_3fazq3c {
@@ -527,6 +532,13 @@
527
532
  .vitro-tableview-progress-message.vitro-table-view-export-message {
528
533
  background-color: #fff;
529
534
  border: 1px solid #ff5b2d !important;
535
+ }
536
+
537
+ .vitro-group-row {
538
+ background: #F7F9FC;
539
+ font-family: 'InterMedium';
540
+ border-top: 1px solid #E4E6EC !important;
541
+ color: #4A556C !important;
530
542
  }
531
543
 
532
544
  ._uploader_vitro-uploader_237vX7T {
@@ -3341,7 +3353,6 @@
3341
3353
  display: flex;
3342
3354
  z-index: 800;
3343
3355
  padding: 0 !important;
3344
- margin-bottom: 12px;
3345
3356
  min-height: 32px;
3346
3357
  }
3347
3358
 
@@ -5146,7 +5157,6 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
5146
5157
  ._search_vitro-search_QkJksC_ {
5147
5158
  position: relative;
5148
5159
  align-self: baseline;
5149
- margin-right: 16px;
5150
5160
  margin-left: auto;
5151
5161
  max-width: 376px;
5152
5162
  }
package/dist/index.js CHANGED
@@ -20804,6 +20804,9 @@ var TreeGridTableViewContextImpl = /*#__PURE__*/function () {
20804
20804
  _proto.selectRange = function selectRange(row1, col1, row2, col2, select) {
20805
20805
  this.grid.SelectRange(row1, col1, row2, col2, select);
20806
20806
  };
20807
+ _proto.showColumns = function showColumns() {
20808
+ this.grid.ShowColumns();
20809
+ };
20807
20810
  _createClass(TreeGridTableViewContextImpl, [{
20808
20811
  key: "columnList",
20809
20812
  get: function get() {