playbook_ui 15.0.0.pre.alpha.PLAY2420atfirstcolumnborderfix10590 → 15.0.0.pre.alpha.PLAY2420atfirstcolumnborderfix10651

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66f52aebecd920bc2fc041ba37d6376aba5251a0497fc8cc90f6fbbb2fd07760
4
- data.tar.gz: 31c062066ff39067c6146114516d7eddf467b7fd117d3e50e7d15c384331a874
3
+ metadata.gz: 59ac3de3f96ef668dd5850d320a9657d7f1284b6083cddcde3919eacdaabbc75
4
+ data.tar.gz: 8d6a25579299b18f99713e186e6fb5566591f464f87b95d57065579e5eb1e5c2
5
5
  SHA512:
6
- metadata.gz: dab996205feaa0e09754fce0063352da29b6826b7e07d0a6c417b35bffc0fc8f290116abefd81bc08bc080c91b9f87ad4320038397e72aca84a1f4b5ef1c5362
7
- data.tar.gz: 66259cb940c24039f1cd65123a9aa16e6c9298061198f22d81a352d832c3248cecb274d1802753be28d57ae8b94268b6cef6422a320f1cddcced479f04f7af6a
6
+ metadata.gz: '0835e62e4bc7afa93bc9b2759234ddeaa15f7bb92d9ed5bec342a032a20d16e19915131cf4826b46819eaed879f6b75384b20849533c997acc77e7337bf7ffa0'
7
+ data.tar.gz: 163d4587c9beeb507d99204fbe7ba0f1889e341eb74f933cccefee4a9ecc2ad303704b190275b042108e64ccd6c8f68069ef378c286eac3ca1f4b4523edc4db1
@@ -1021,15 +1021,6 @@
1021
1021
  border-right: none !important;
1022
1022
  }
1023
1023
 
1024
- // Without vertical border, remove all last-cell borders
1025
- .pb_table:not(.vertical-border) {
1026
- .pb_advanced_table_body .last-cell,
1027
- .pb_advanced_table_header .last-header-cell {
1028
- box-shadow: none !important;
1029
- border-right: none !important;
1030
- }
1031
- }
1032
-
1033
1024
  // For tables WITH vertical borders, only remove border from actual last column
1034
1025
  .pb_table.vertical-border {
1035
1026
  .pb_advanced_table_body .last-cell:not(:last-child),
@@ -47,7 +47,7 @@ const AdvancedTableColumnHeadersVerticalBorder = (props) => {
47
47
  ];
48
48
 
49
49
  const tableProps = {
50
- verticalBorder: true
50
+ sticky: true,
51
51
  }
52
52
  // Adjusted for testing purposes. Will revert prior to commit.
53
53
  return (
@@ -55,7 +55,6 @@ const AdvancedTableColumnHeadersVerticalBorder = (props) => {
55
55
  <Card>
56
56
  <AdvancedTable
57
57
  columnDefinitions={columnDefinitions}
58
- columnGroupBorderColor="text_lt_default"
59
58
  tableData={MOCK_DATA}
60
59
  tableProps={tableProps}
61
60
  {...props}