@ni/nimble-components 18.13.5 → 18.13.6

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.
@@ -5460,7 +5460,8 @@ return!this.missingColumnId&&!this.duplicateColumnId}validateColumnSortIndices(e
5460
5460
  }
5461
5461
 
5462
5462
  .table-row-container {
5463
- width: 100%;
5463
+ width: fit-content;
5464
+ min-width: 100%;
5464
5465
  position: relative;
5465
5466
  top: var(--ni-private-table-row-container-top);
5466
5467
  background-color: ${ia};
@@ -5769,13 +5770,29 @@ this.$emit(e,o)}hasValidFieldNames(e){return e.every((e=>void 0!==e))}selectedCh
5769
5770
  const yw=xw.compose({baseName:"table-row",template:ww,styles:pw})
5770
5771
  ro.getOrCreate().withPrefix("nimble").register(yw())
5771
5772
  const $w=ro.tagFor(xw),Cw=me`
5772
- ${xn("flex")}
5773
+ ${xn("grid")}
5773
5774
 
5774
5775
  :host {
5775
5776
  align-items: center;
5776
5777
  height: calc(${oa} + 2 * ${aa});
5777
5778
  border-top: calc(2 * ${aa}) solid ${Zr};
5778
5779
  box-sizing: border-box;
5780
+ grid-template-columns:
5781
+ calc(
5782
+ ${oa} *
5783
+ (var(--ni-private-table-group-row-indent-level) + 1)
5784
+ )
5785
+ 1fr;
5786
+ }
5787
+
5788
+ :host([selectable]) {
5789
+ grid-template-columns:
5790
+ ${oa}
5791
+ calc(
5792
+ ${oa} *
5793
+ (var(--ni-private-table-group-row-indent-level) + 1)
5794
+ )
5795
+ 1fr;
5779
5796
  }
5780
5797
 
5781
5798
  :host([expanded]) .animating,
@@ -5826,6 +5843,7 @@ const $w=ro.tagFor(xw),Cw=me`
5826
5843
 
5827
5844
  .group-row-child-count {
5828
5845
  padding-left: 2px;
5846
+ padding-right: calc(${ra} / 2);
5829
5847
  pointer-events: none;
5830
5848
  ${ad}
5831
5849
  }