@ni/nimble-components 25.1.0 → 25.1.1

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.
@@ -16333,7 +16333,7 @@
16333
16333
 
16334
16334
  /**
16335
16335
  * Do not edit directly
16336
- * Generated on Thu, 18 Apr 2024 21:31:08 GMT
16336
+ * Generated on Fri, 19 Apr 2024 16:41:22 GMT
16337
16337
  */
16338
16338
 
16339
16339
  const Information100DarkUi = "#a46eff";
@@ -43861,7 +43861,7 @@ img.ProseMirror-separator {
43861
43861
  ${ref('mentionListbox')}
43862
43862
  @mention-selected=${(x, c) => x.onMentionSelect(c.event)}
43863
43863
  >
43864
- ${repeat(x => Array.from(x.activeMappingConfigs?.values() ?? []), html `
43864
+ ${repeat(x => Array.from(x.activeMappingConfigs ? x.activeMappingConfigs.values() : []), html `
43865
43865
  <${listOptionTag} value="${x => x.mentionHref}">${x => x.displayName}</${listOptionTag}>
43866
43866
  `, { recycle: false })}
43867
43867
  </${richTextMentionListboxTag}>
@@ -64368,10 +64368,10 @@ img.ProseMirror-separator {
64368
64368
  @toggle="${(x, c) => x.onActionMenuToggle(c.event)}"
64369
64369
  @click="${(_, c) => c.event.stopPropagation()}"
64370
64370
  class="action-menu"
64371
- title="${x => x.actionMenuLabel ?? tableCellActionMenuLabel.getValueFor(x)}"
64371
+ title="${x => (x.actionMenuLabel ? x.actionMenuLabel : tableCellActionMenuLabel.getValueFor(x))}"
64372
64372
  >
64373
64373
  <${iconThreeDotsLineTag} slot="start"></${iconThreeDotsLineTag}>
64374
- ${x => x.actionMenuLabel ?? tableCellActionMenuLabel.getValueFor(x)}
64374
+ ${x => (x.actionMenuLabel ? x.actionMenuLabel : tableCellActionMenuLabel.getValueFor(x))}
64375
64375
  <slot name="cellActionMenu" slot="menu"></slot>
64376
64376
  </${menuButtonTag}>
64377
64377
  `)}
@@ -65020,7 +65020,7 @@ img.ProseMirror-separator {
65020
65020
  --ni-private-table-header-container-margin-right: ${x => x.virtualizer.headerContainerMarginRight}px;
65021
65021
  --ni-private-table-scroll-height: ${x => x.virtualizer.scrollHeight}px;
65022
65022
  --ni-private-table-row-container-top: ${x => x.virtualizer.rowContainerYOffset}px;
65023
- --ni-private-table-row-grid-columns: ${x => x.rowGridColumns ?? ''};
65023
+ --ni-private-table-row-grid-columns: ${x => (x.rowGridColumns ? x.rowGridColumns : '')};
65024
65024
  --ni-private-table-cursor-override: ${x => (x.layoutManager.isColumnBeingSized ? 'col-resize' : 'default')};
65025
65025
  --ni-private-table-scrollable-min-width: ${x => x.tableScrollableMinWidth}px;
65026
65026
  --ni-private-glass-overlay-pointer-events: ${x => (x.layoutManager.isColumnBeingSized ? 'none' : 'default')};
@@ -65038,7 +65038,7 @@ img.ProseMirror-separator {
65038
65038
  <span class="checkbox-container">
65039
65039
  <${checkboxTag}
65040
65040
  ${ref('selectionCheckbox')}
65041
- class="${x => `selection-checkbox ${x.selectionMode ?? ''}`}"
65041
+ class="${x => `selection-checkbox ${x.selectionMode ? x.selectionMode : ''}`}"
65042
65042
  @change="${(x, c) => x.onAllRowsSelectionChange(c.event)}"
65043
65043
  title="${x => tableSelectAllLabel.getValueFor(x)}"
65044
65044
  aria-label="${x => tableSelectAllLabel.getValueFor(x)}"