@ni/nimble-components 21.5.3 → 21.5.5

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.
@@ -16301,7 +16301,7 @@
16301
16301
 
16302
16302
  /**
16303
16303
  * Do not edit directly
16304
- * Generated on Mon, 19 Feb 2024 22:10:42 GMT
16304
+ * Generated on Wed, 21 Feb 2024 19:32:37 GMT
16305
16305
  */
16306
16306
 
16307
16307
  const Information100DarkUi = "#a46eff";
@@ -63675,7 +63675,7 @@ img.ProseMirror-separator {
63675
63675
  `)}
63676
63676
 
63677
63677
  <span ${ref('cellContainer')}
63678
- class="cell-container ${x => (x.isParentRow && x.nestingLevel > 0 ? 'nested-parent' : '')}"
63678
+ class="cell-container ${x => (x.isNestedParent ? 'nested-parent' : '')}"
63679
63679
  >
63680
63680
  ${repeat(x => x.columns, html `
63681
63681
  ${when(x => !x.columnHidden, html `
@@ -63756,6 +63756,9 @@ img.ProseMirror-separator {
63756
63756
  get isTopLevelParentRow() {
63757
63757
  return this.isParentRow && this.nestingLevel === 0;
63758
63758
  }
63759
+ get isNestedParent() {
63760
+ return this.isParentRow && this.nestingLevel > 0;
63761
+ }
63759
63762
  get ariaSelected() {
63760
63763
  if (this.selectable) {
63761
63764
  return this.selected ? 'true' : 'false';
@@ -63949,6 +63952,9 @@ img.ProseMirror-separator {
63949
63952
  __decorate$1([
63950
63953
  volatile
63951
63954
  ], TableRow.prototype, "isTopLevelParentRow", null);
63955
+ __decorate$1([
63956
+ volatile
63957
+ ], TableRow.prototype, "isNestedParent", null);
63952
63958
  __decorate$1([
63953
63959
  volatile
63954
63960
  ], TableRow.prototype, "ariaSelected", null);