@vitrosoftware/common-ui-ts 1.1.65 → 1.1.66

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) {
@@ -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
  }
@@ -635,6 +635,18 @@
635
635
  left: 0;
636
636
  }
637
637
 
638
+ .TWTabHtml1::before {
639
+ content: '';
640
+ display: inline-block;
641
+ height: 16px;
642
+ margin-right: 4px;
643
+ width: 16px;
644
+ margin-left: -6px;
645
+ vertical-align: sub;
646
+ /* check.svg URL-encoder for SVG */
647
+ 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");
648
+ }
649
+
638
650
  .TWHeaderGroup {
639
651
  padding: 0 4px;
640
652
  background: #fff;
@@ -738,6 +750,7 @@
738
750
  .TWMenuButton:hover,
739
751
  .TWMenuButton:active {
740
752
  background: #3274E0;
753
+ border: none;
741
754
  }
742
755
 
743
756
  .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 {
@@ -527,6 +527,13 @@
527
527
  .vitro-tableview-progress-message.vitro-table-view-export-message {
528
528
  background-color: #fff;
529
529
  border: 1px solid #ff5b2d !important;
530
+ }
531
+
532
+ .vitro-group-row {
533
+ background: #F7F9FC;
534
+ font-family: 'InterMedium';
535
+ border-top: 1px solid #E4E6EC !important;
536
+ color: #4A556C !important;
530
537
  }
531
538
 
532
539
  ._uploader_vitro-uploader_237vX7T {
@@ -3341,7 +3348,6 @@
3341
3348
  display: flex;
3342
3349
  z-index: 800;
3343
3350
  padding: 0 !important;
3344
- margin-bottom: 12px;
3345
3351
  min-height: 32px;
3346
3352
  }
3347
3353
 
@@ -5146,7 +5152,6 @@ ul > li:last-child > ul > li:last-child ._sidebar-item_vitro-active_7p5iOhY {
5146
5152
  ._search_vitro-search_QkJksC_ {
5147
5153
  position: relative;
5148
5154
  align-self: baseline;
5149
- margin-right: 16px;
5150
5155
  margin-left: auto;
5151
5156
  max-width: 376px;
5152
5157
  }
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() {