@ni/spright-components 2.0.1 → 2.0.3
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.
|
@@ -10346,12 +10346,21 @@ return!this.missingColumnId&&!this.duplicateColumnId}validateColumnSortIndices(t
|
|
|
10346
10346
|
grid-template-columns: var(--ni-private-table-row-grid-columns) auto;
|
|
10347
10347
|
}
|
|
10348
10348
|
|
|
10349
|
+
.collapse-all-button-container {
|
|
10350
|
+
display: flex;
|
|
10351
|
+
min-width: ${_l};
|
|
10352
|
+
}
|
|
10353
|
+
|
|
10349
10354
|
.collapse-all-button {
|
|
10350
10355
|
height: ${kl};
|
|
10351
10356
|
margin-left: ${_l};
|
|
10352
10357
|
visibility: hidden;
|
|
10353
10358
|
}
|
|
10354
10359
|
|
|
10360
|
+
.collapse-all-button.hidden-size-reduced {
|
|
10361
|
+
display: none;
|
|
10362
|
+
}
|
|
10363
|
+
|
|
10355
10364
|
.collapse-all-button.visible {
|
|
10356
10365
|
visibility: visible;
|
|
10357
10366
|
}
|
|
@@ -10654,7 +10663,7 @@ const zR="nimble-table-header",VR=Mt`
|
|
|
10654
10663
|
flex: 0 0 auto;
|
|
10655
10664
|
}
|
|
10656
10665
|
|
|
10657
|
-
.row-front-spacer.
|
|
10666
|
+
.row-front-spacer.reduced-size-spacer {
|
|
10658
10667
|
width: ${_l};
|
|
10659
10668
|
}
|
|
10660
10669
|
|
|
@@ -10828,7 +10837,7 @@ const GR="nimble-table-cell",ZR=Q`
|
|
|
10828
10837
|
`)}
|
|
10829
10838
|
</span>
|
|
10830
10839
|
`)}
|
|
10831
|
-
<span class="row-front-spacer ${t=>t.isTopLevelParentRow?"
|
|
10840
|
+
<span class="row-front-spacer ${t=>t.isTopLevelParentRow||!t.reserveCollapseSpace?"reduced-size-spacer":""}"></span>
|
|
10832
10841
|
${Gt((t=>t.isParentRow),Q`
|
|
10833
10842
|
${Gt((t=>t.loading),Q`
|
|
10834
10843
|
<span class="spinner-container">
|
|
@@ -10894,7 +10903,7 @@ const GR="nimble-table-cell",ZR=Q`
|
|
|
10894
10903
|
</span>
|
|
10895
10904
|
</template>
|
|
10896
10905
|
`
|
|
10897
|
-
class KR extends We{constructor(){super(...arguments),this.selectable=!1,this.selected=!1,this.hideSelection=!1,this.expanded=!1,this.columnNotifiers=[],this.columns=[],this.nestingLevel=0,this.isParentRow=!1,this.menuOpen=!1,this.rowOperationGridCellHidden=!1,this.loading=!1,this.cellIndentLevels=[],this.cellStates=[],this.animationClass="",this.ignoreSelectionChangeEvents=!1,this.removeAnimatingClass=()=>{this.animationClass="",this.expandIcon?.removeEventListener("transitionend",this.removeAnimatingClass)}}get isTopLevelParentRow(){return this.isParentRow&&0===this.nestingLevel}get isNestedParent(){return this.isParentRow&&this.nestingLevel>0}get showSelectionCheckbox(){return this.selectable&&!this.hideSelection}get ariaSelected(){return this.selectable?this.selected?"true":"false":null}onSelectionCheckboxChange(t){if(this.ignoreSelectionChangeEvents)return
|
|
10906
|
+
class KR extends We{constructor(){super(...arguments),this.selectable=!1,this.selected=!1,this.hideSelection=!1,this.expanded=!1,this.reserveCollapseSpace=!1,this.columnNotifiers=[],this.columns=[],this.nestingLevel=0,this.isParentRow=!1,this.menuOpen=!1,this.rowOperationGridCellHidden=!1,this.loading=!1,this.cellIndentLevels=[],this.cellStates=[],this.animationClass="",this.ignoreSelectionChangeEvents=!1,this.removeAnimatingClass=()=>{this.animationClass="",this.expandIcon?.removeEventListener("transitionend",this.removeAnimatingClass)}}get isTopLevelParentRow(){return this.isParentRow&&0===this.nestingLevel}get isNestedParent(){return this.isParentRow&&this.nestingLevel>0}get showSelectionCheckbox(){return this.selectable&&!this.hideSelection}get ariaSelected(){return this.selectable?this.selected?"true":"false":null}onSelectionCheckboxChange(t){if(this.ignoreSelectionChangeEvents)return
|
|
10898
10907
|
const e=t.target.checked
|
|
10899
10908
|
this.onSelectionChange(!e,e)}onSelectionChange(t,e){this.selected=e
|
|
10900
10909
|
const n={oldState:t,newState:e}
|
|
@@ -10906,7 +10915,7 @@ this.$emit(t,i)}columnsChanged(){this.updateCellIndentLevels(),this.updateCellSt
|
|
|
10906
10915
|
return e.subscribe(this),e}))}updateCellStates(){this.cellStates=this.columns.map((t=>{const e=t.columnInternals.dataRecordFieldNames
|
|
10907
10916
|
let n
|
|
10908
10917
|
if(this.hasValidFieldNames(e)&&this.dataRecord){const i=e.map((t=>this.dataRecord[t]))
|
|
10909
|
-
n={cellRecord:Object.fromEntries(t.columnInternals.cellRecordFieldNames.map(((t,e)=>[t,i[e]]))),columnConfig:t.columnInternals.columnConfig}}return n}))}hasValidFieldNames(t){return t.every((t=>void 0!==t))}selectedChanged(){this.setSelectionCheckboxState()}selectionCheckboxChanged(){this.setSelectionCheckboxState()}setSelectionCheckboxState(){this.selectionCheckbox&&(this.ignoreSelectionChangeEvents=!0,this.selectionCheckbox.checked=this.selected,this.ignoreSelectionChangeEvents=!1)}}t([ft({attribute:"record-id"})],KR.prototype,"recordId",void 0),t([ft({mode:"boolean"})],KR.prototype,"selectable",void 0),t([ft({mode:"boolean"})],KR.prototype,"selected",void 0),t([ft({attribute:"hide-selection",mode:"boolean"})],KR.prototype,"hideSelection",void 0),t([ft({mode:"boolean"})],KR.prototype,"expanded",void 0),t([C],KR.prototype,"dataRecord",void 0),t([C],KR.prototype,"columns",void 0),t([C],KR.prototype,"currentActionMenuColumn",void 0),t([C],KR.prototype,"nestingLevel",void 0),t([C],KR.prototype,"resolvedRowIndex",void 0),t([ft({attribute:"is-parent-row",mode:"boolean"})],KR.prototype,"isParentRow",void 0),t([ft({attribute:"menu-open",mode:"boolean"})],KR.prototype,"menuOpen",void 0),t([ft({attribute:"row-operation-grid-cell-hidden",mode:"boolean"})],KR.prototype,"rowOperationGridCellHidden",void 0),t([ft({mode:"boolean"})],KR.prototype,"loading",void 0),t([C],KR.prototype,"cellIndentLevels",void 0),t([C],KR.prototype,"cellStates",void 0),t([C],KR.prototype,"selectionCheckbox",void 0),t([C],KR.prototype,"animationClass",void 0),t([k],KR.prototype,"isTopLevelParentRow",null),t([k],KR.prototype,"isNestedParent",null),t([k],KR.prototype,"showSelectionCheckbox",null),t([k],KR.prototype,"ariaSelected",null)
|
|
10918
|
+
n={cellRecord:Object.fromEntries(t.columnInternals.cellRecordFieldNames.map(((t,e)=>[t,i[e]]))),columnConfig:t.columnInternals.columnConfig}}return n}))}hasValidFieldNames(t){return t.every((t=>void 0!==t))}selectedChanged(){this.setSelectionCheckboxState()}selectionCheckboxChanged(){this.setSelectionCheckboxState()}setSelectionCheckboxState(){this.selectionCheckbox&&(this.ignoreSelectionChangeEvents=!0,this.selectionCheckbox.checked=this.selected,this.ignoreSelectionChangeEvents=!1)}}t([ft({attribute:"record-id"})],KR.prototype,"recordId",void 0),t([ft({mode:"boolean"})],KR.prototype,"selectable",void 0),t([ft({mode:"boolean"})],KR.prototype,"selected",void 0),t([ft({attribute:"hide-selection",mode:"boolean"})],KR.prototype,"hideSelection",void 0),t([ft({mode:"boolean"})],KR.prototype,"expanded",void 0),t([ft({attribute:"reserve-collapse-space",mode:"boolean"})],KR.prototype,"reserveCollapseSpace",void 0),t([C],KR.prototype,"dataRecord",void 0),t([C],KR.prototype,"columns",void 0),t([C],KR.prototype,"currentActionMenuColumn",void 0),t([C],KR.prototype,"nestingLevel",void 0),t([C],KR.prototype,"resolvedRowIndex",void 0),t([ft({attribute:"is-parent-row",mode:"boolean"})],KR.prototype,"isParentRow",void 0),t([ft({attribute:"menu-open",mode:"boolean"})],KR.prototype,"menuOpen",void 0),t([ft({attribute:"row-operation-grid-cell-hidden",mode:"boolean"})],KR.prototype,"rowOperationGridCellHidden",void 0),t([ft({mode:"boolean"})],KR.prototype,"loading",void 0),t([C],KR.prototype,"cellIndentLevels",void 0),t([C],KR.prototype,"cellStates",void 0),t([C],KR.prototype,"selectionCheckbox",void 0),t([C],KR.prototype,"animationClass",void 0),t([k],KR.prototype,"isTopLevelParentRow",null),t([k],KR.prototype,"isNestedParent",null),t([k],KR.prototype,"showSelectionCheckbox",null),t([k],KR.prototype,"ariaSelected",null)
|
|
10910
10919
|
const YR=KR.compose({baseName:"table-row",template:ZR,styles:HR})
|
|
10911
10920
|
_i.getOrCreate().withPrefix("nimble").register(YR())
|
|
10912
10921
|
const XR="nimble-table-row",JR=Mt`
|
|
@@ -11078,7 +11087,7 @@ const nF="nimble-table-group-row",iF=Q`
|
|
|
11078
11087
|
${Ut("selectionCheckbox")}
|
|
11079
11088
|
${""}
|
|
11080
11089
|
tabindex="-1"
|
|
11081
|
-
class="
|
|
11090
|
+
class="selection-checkbox"
|
|
11082
11091
|
@change="${(t,e)=>t.onAllRowsSelectionChange(e.event)}"
|
|
11083
11092
|
title="${t=>Fv.getValueFor(t)}"
|
|
11084
11093
|
aria-label="${t=>Fv.getValueFor(t)}"
|
|
@@ -11086,19 +11095,21 @@ const nF="nimble-table-group-row",iF=Q`
|
|
|
11086
11095
|
</${mg}>
|
|
11087
11096
|
</span>
|
|
11088
11097
|
`)}
|
|
11089
|
-
|
|
11090
|
-
|
|
11091
|
-
|
|
11092
|
-
|
|
11093
|
-
|
|
11094
|
-
|
|
11095
|
-
|
|
11096
|
-
|
|
11097
|
-
|
|
11098
|
-
|
|
11099
|
-
|
|
11100
|
-
|
|
11101
|
-
|
|
11098
|
+
<span class="collapse-all-button-container">
|
|
11099
|
+
<${Vh}
|
|
11100
|
+
${Ut("collapseAllButton")}
|
|
11101
|
+
${""}
|
|
11102
|
+
tabindex="-1"
|
|
11103
|
+
class="collapse-all-button ${t=>t.collapseButtonVisibility}"
|
|
11104
|
+
content-hidden
|
|
11105
|
+
appearance="${oh}"
|
|
11106
|
+
title="${t=>Dv.getValueFor(t)}"
|
|
11107
|
+
@click="${t=>t.handleCollapseAllRows()}"
|
|
11108
|
+
>
|
|
11109
|
+
<${iv} slot="start"></${iv}>
|
|
11110
|
+
${t=>Dv.getValueFor(t)}
|
|
11111
|
+
</${Vh}>
|
|
11112
|
+
</span>
|
|
11102
11113
|
</span>
|
|
11103
11114
|
<span class="column-headers-container" ${Ut("columnHeadersContainer")}>
|
|
11104
11115
|
${Qt((t=>t.visibleColumns),Q`
|
|
@@ -11182,6 +11193,7 @@ const nF="nimble-table-group-row",iF=Q`
|
|
|
11182
11193
|
?selected="${(t,e)=>e.parent.tableData[t.index]?.selectionState===cR}"
|
|
11183
11194
|
?expanded="${(t,e)=>e.parent.tableData[t.index]?.isExpanded}"
|
|
11184
11195
|
?hide-selection="${(t,e)=>e.parent.selectionMode!==aR.multiple}"
|
|
11196
|
+
?reserve-collapse-space="${(t,e)=>e.parent.canHaveCollapsibleRows}"
|
|
11185
11197
|
:dataRecord="${(t,e)=>e.parent.tableData[t.index]?.record}"
|
|
11186
11198
|
:columns="${(t,e)=>e.parent.columns}"
|
|
11187
11199
|
:isParentRow="${(t,e)=>e.parent.tableData[t.index]?.isParentRow}"
|
|
@@ -11198,15 +11210,7 @@ const nF="nimble-table-group-row",iF=Q`
|
|
|
11198
11210
|
@row-slots-request="${(t,e)=>e.parent.onRowSlotsRequest(e.event)}"
|
|
11199
11211
|
@row-expand-toggle="${(t,e)=>e.parent.handleRowExpanded(t.index)}"
|
|
11200
11212
|
>
|
|
11201
|
-
${
|
|
11202
|
-
${Qt(((t,e)=>e.parent.actionMenuSlots),Q`
|
|
11203
|
-
<slot
|
|
11204
|
-
name="${t=>t}"
|
|
11205
|
-
slot="${t=>`row-action-menu-${t}`}">
|
|
11206
|
-
</slot>
|
|
11207
|
-
`)}
|
|
11208
|
-
`)}
|
|
11209
|
-
${Qt(((t,e)=>e.parent.tableData[t.index]?.slots||[]),Q`
|
|
11213
|
+
${Qt(((t,e)=>e.parent.tableData[t.index]?.requestedSlots||[]),Q`
|
|
11210
11214
|
<slot
|
|
11211
11215
|
name="${t=>t.name}"
|
|
11212
11216
|
slot="${t=>t.slot}"
|
|
@@ -11553,7 +11557,7 @@ const i=e??this.columnIndex,s=n??this.rowIndex
|
|
|
11553
11557
|
return i>=0&&i<t.cells.length&&(this.focusType=bR,this.setRowCellFocusState(i,s,!0),!0)}trySetCellContentFocus(t,e,n,i){if(!t)return!1
|
|
11554
11558
|
const s=n??this.columnIndex,o=i??this.rowIndex
|
|
11555
11559
|
return s>=0&&s<t.cells.length&&e>=0&&e<t.cells[s].cell.cellView.tabbableChildren.length&&(this.setCellContentFocusState(e,o,s,!0),!0)}trySetCellActionMenuFocus(t,e,n){const i=e??this.columnIndex,s=n??this.rowIndex
|
|
11556
|
-
return!!(i>=0&&i<t.cells.length&&t.cells[i].actionMenuButton)&&(this.setCellActionMenuFocusState(s,i,!0),!0)}setCellActionMenuFocusState(t,e,n){this.focusType=yR,this.setRowCellFocusState(e,t,n)}setCellContentFocusState(t,e,n,i){this.focusType=wR,this.cellContentIndex=t,this.setRowCellFocusState(n,e,i)}setRowFocusState(t){this.focusType=gR,void 0!==t&&(this.rowIndex=t)}setCellFocusState(t,e,n){this.focusType=bR,this.setRowCellFocusState(t,e,n)}setRowCellFocusState(t,e,n){this.rowIndex=e,this.columnIndex=t,n&&this.focusCurrentRow(!0)}isResolvedRowType(t){return t instanceof KR||t instanceof tF}}let NF=class extends We{get validity(){return this.tableValidator.getValidity()}get showRowOperationColumn(){return this.selectionMode===aR.multiple||this.showCollapseAll}constructor(){super(),this.selectionMode=aR.none,this.tableData=[],this.columns=[],this.childItems=[],this.rowElements=[],this.
|
|
11560
|
+
return!!(i>=0&&i<t.cells.length&&t.cells[i].actionMenuButton)&&(this.setCellActionMenuFocusState(s,i,!0),!0)}setCellActionMenuFocusState(t,e,n){this.focusType=yR,this.setRowCellFocusState(e,t,n)}setCellContentFocusState(t,e,n,i){this.focusType=wR,this.cellContentIndex=t,this.setRowCellFocusState(n,e,i)}setRowFocusState(t){this.focusType=gR,void 0!==t&&(this.rowIndex=t)}setCellFocusState(t,e,n){this.focusType=bR,this.setRowCellFocusState(t,e,n)}setRowCellFocusState(t,e,n){this.rowIndex=e,this.columnIndex=t,n&&this.focusCurrentRow(!0)}isResolvedRowType(t){return t instanceof KR||t instanceof tF}}let NF=class extends We{get validity(){return this.tableValidator.getValidity()}get showRowOperationColumn(){return this.selectionMode===aR.multiple||this.showCollapseAll}get collapseButtonVisibility(){return this.canHaveCollapsibleRows?this.showCollapseAll?"visible":"":"hidden-size-reduced"}constructor(){super(),this.selectionMode=aR.none,this.tableData=[],this.columns=[],this.childItems=[],this.rowElements=[],this.canRenderRows=!0,this.scrollX=0,this.selectionState=lR,this.showCollapseAll=!1,this.canHaveCollapsibleRows=!1,this.visibleColumns=[],this.tableScrollableMinWidth=0,this.windowShiftKeyDown=!1,this.tableValidator=new RR,this.tableUpdateTracker=new kF(this),this.columnNotifiers=[],this.isInitialized=!1,this.ignoreSelectionChangeEvents=!1,this.requestedSlots=new Map,this.actionMenuSlots=[],this.onViewPortScroll=t=>{this.scrollX=t.target.scrollLeft},this.onKeyDown=t=>{this.windowShiftKeyDown=t.shiftKey},this.onKeyUp=t=>{this.windowShiftKeyDown=t.shiftKey},this.onBlur=()=>{this.windowShiftKeyDown=!1},this.getRowCanExpand=t=>this.expansionManager.isRowExpandable(t),this.getIsRowExpanded=t=>this.expansionManager.isRowExpanded(t),this.handleRowSelectionChange=t=>{const e=t instanceof Function?t(this.table.getState().rowSelection):t
|
|
11557
11561
|
this.updateTableOptions({state:{rowSelection:e}})},this.handleExpandedChange=t=>{const e=t instanceof Function?t(this.table.getState().expanded):t
|
|
11558
11562
|
this.updateTableOptions({state:{expanded:e}})},this.options={data:[],onStateChange:t=>{},onRowSelectionChange:this.handleRowSelectionChange,onExpandedChange:this.handleExpandedChange,getCoreRowModel:t=>aO((()=>[t.options.data]),(e=>{const n={rows:[],flatRows:[],rowsById:{}},i=function(e,s,o){void 0===s&&(s=0)
|
|
11559
11563
|
const r=[]
|
|
@@ -11583,21 +11587,22 @@ const e=structuredClone(t),n=this.tableValidator.getOptionsWithPresentIds(e)
|
|
|
11583
11587
|
this.expansionManager.setHierarchyOptions(n),this.refreshRows()}connectedCallback(){super.connectedCallback(),this.initialize(),this.virtualizer.connect(),this.viewport.addEventListener("scroll",this.onViewPortScroll,{passive:!0}),this.keyboardNavigationManager.connect(),window.addEventListener("keydown",this.onKeyDown),window.addEventListener("keyup",this.onKeyUp),window.addEventListener("blur",this.onBlur)}disconnectedCallback(){super.disconnectedCallback(),this.virtualizer.disconnect(),this.keyboardNavigationManager.disconnect(),this.viewport.removeEventListener("scroll",this.onViewPortScroll),window.removeEventListener("keydown",this.onKeyDown),window.removeEventListener("keyup",this.onKeyUp),window.removeEventListener("blur",this.onBlur)}checkValidity(){return this.tableValidator.isValid()}handleChange(t,e){(t instanceof OR||t instanceof AR)&&"string"==typeof e?this.tableUpdateTracker.trackColumnPropertyChanged(e):t instanceof RF&&"isColumnValid"===e?this.tableValidator.validateColumnConfigurations(this.columns):t instanceof wF&&"isColumnBeingSized"===e&&!this.layoutManager.isColumnBeingSized&&this.emitColumnConfigurationChangeEvent()}onRowSelectionToggle(t,e){e.stopImmediatePropagation()
|
|
11584
11588
|
this.selectionManager.handleRowSelectionToggle(this.tableData[t],e.detail.newState,this.windowShiftKeyDown)&&this.emitSelectionChangeEvent()}onRowClick(t,e){return this.selectionManager.handleRowClick(this.tableData[t],e.shiftKey,e.ctrlKey||e.metaKey)&&this.emitSelectionChangeEvent(),!0}onRowFocusIn(t){this.keyboardNavigationManager.onRowFocusIn(t)}onRowBlur(t){this.keyboardNavigationManager.onRowBlur(t)}onAllRowsSelectionChange(t){t.stopPropagation(),this.ignoreSelectionChangeEvents||(this.table.toggleAllRowsSelected(this.selectionCheckbox.checked),this.emitSelectionChangeEvent())}onRowActionMenuBeforeToggle(t,e){e.stopImmediatePropagation(),this.handleActionMenuBeforeToggleEvent(t,e)}onRowActionMenuToggle(t){t.stopImmediatePropagation(),this.handleRowActionMenuToggleEvent(t)}onRowSlotsRequest(t){t.stopImmediatePropagation()
|
|
11585
11589
|
for(const e of t.detail.slots){const n=$R(t.detail.columnInternalId,e.slot)
|
|
11586
|
-
this.
|
|
11590
|
+
this.requestedSlots.set(e.name,{recordId:t.detail.recordId,uniqueSlot:n})}this.refreshRows()}handleCollapseAllRows(){this.expansionManager.collapseAll()}onRightDividerMouseDown(t,e){0===t.button&&this.layoutManager.beginColumnInteractiveSize(t.clientX,this.getRightDividerIndex(e))}onLeftDividerMouseDown(t,e){0===t.button&&this.layoutManager.beginColumnInteractiveSize(t.clientX,this.getLeftDividerIndex(e))}getLeftDividerIndex(t){return 2*t-1}getRightDividerIndex(t){return 2*t}handleGroupRowExpanded(t,e){this.toggleRowExpanded(t),e.stopPropagation()}handleRowExpanded(t){this.toggleRowExpanded(t)}toggleColumnSort(t,e){if(t.columnInternals.sortingDisabled)return
|
|
11587
11591
|
const n=this.getColumnsParticipatingInSorting().sort(((t,e)=>t.columnInternals.currentSortIndex-e.columnInternals.currentSortIndex)),i=n.indexOf(t),s=i>-1,o=t.columnInternals.currentSortDirection
|
|
11588
11592
|
let r=rR.ascending
|
|
11589
11593
|
s?o===rR.descending?(n.splice(i,1),r=rR.none,t.columnInternals.currentSortIndex=void 0):r=rR.descending:n.push(t),t.columnInternals.currentSortDirection=r
|
|
11590
11594
|
for(let i=0;i<n.length;i++){const s=n[i]
|
|
11591
11595
|
e?n[i].columnInternals.currentSortIndex=i:s===t?s.columnInternals.currentSortIndex=0:(s.columnInternals.currentSortIndex=void 0,s.columnInternals.currentSortDirection=rR.none)}this.emitColumnConfigurationChangeEvent()}onHeaderKeyDown(t,e){const n=e.shiftKey
|
|
11592
|
-
return e.key===Ta&&this.toggleColumnSort(t,n),!0}update(){this.validate(),this.tableUpdateTracker.requiresTanStackUpdate&&this.updateTanStack(),this.tableUpdateTracker.
|
|
11596
|
+
return e.key===Ta&&this.toggleColumnSort(t,n),!0}update(){if(this.validate(),this.tableUpdateTracker.requiresTanStackUpdate&&this.updateTanStack(),this.tableUpdateTracker.updateRowParentIds||this.tableUpdateTracker.updateGroupRows){const t=this.isHierarchyEnabled(),e=this.columns.some((t=>!t.columnInternals.groupingDisabled))
|
|
11597
|
+
this.canHaveCollapsibleRows=t||e}this.tableUpdateTracker.updateActionMenuSlots&&this.updateActionMenuSlots(),this.tableUpdateTracker.updateColumnWidths&&(this.rowGridColumns=this.layoutManager.getGridTemplateColumns(),this.visibleColumns=this.columns.filter((t=>!t.columnHidden))),this.tableUpdateTracker.requiresKeyboardFocusReset&&this.keyboardNavigationManager.resetFocusState()}get ariaMultiSelectable(){switch(this.selectionMode){case aR.multiple:return"true"
|
|
11593
11598
|
case aR.single:return"false"
|
|
11594
11599
|
default:return null}}getHeaderContainerElements(){return this.columnHeadersContainer.querySelectorAll(".header-container")}calculateTanStackData(t){this.dataHierarchyManager=new AF(t,this.idFieldName,this.parentIdFieldName)
|
|
11595
11600
|
const e=this.dataHierarchyManager.hierarchicalData
|
|
11596
11601
|
this.tableValidator.setParentIdConfigurationValidity(this.dataHierarchyManager.parentIdConfigurationValid)
|
|
11597
11602
|
const n={data:e}
|
|
11598
11603
|
if(this.validateWithData(t),this.tableValidator.areRecordIdsValid()){const t=this.selectionManager.getCurrentSelectedRecordIds()
|
|
11599
|
-
n.state={rowSelection:this.calculateTanStackSelectionState(t),expanded:!0}}return n}selectionModeChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackSelectionModeChanged()}idFieldNameChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackIdFieldNameChanged()}parentIdFieldNameChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackParentIdFieldNameChanged()}columnsChanged(t,e){this.$fastController.isConnected&&(this.observeColumns(),this.tableUpdateTracker.trackColumnInstancesChanged())}
|
|
11600
|
-
this.refreshRows()}async handleActionMenuBeforeToggleEvent(t,e){this.selectionManager.handleActionMenuOpening(this.tableData[t])&&await this.emitSelectionChangeEvent(),this.openActionMenuRecordId=e.detail.recordIds[0],this.
|
|
11604
|
+
n.state={rowSelection:this.calculateTanStackSelectionState(t),expanded:!0}}return n}selectionModeChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackSelectionModeChanged()}idFieldNameChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackIdFieldNameChanged()}parentIdFieldNameChanged(t,e){this.$fastController.isConnected&&this.tableUpdateTracker.trackParentIdFieldNameChanged()}columnsChanged(t,e){this.$fastController.isConnected&&(this.observeColumns(),this.tableUpdateTracker.trackColumnInstancesChanged())}updateRequestedSlotsForOpeningActionMenu(t){for(const e of this.actionMenuSlots)this.requestedSlots.set(e,{recordId:t,uniqueSlot:`row-action-menu-${e}`})
|
|
11605
|
+
this.refreshRows()}async handleActionMenuBeforeToggleEvent(t,e){this.selectionManager.handleActionMenuOpening(this.tableData[t])&&await this.emitSelectionChangeEvent(),this.openActionMenuRecordId=e.detail.recordIds[0],this.updateRequestedSlotsForOpeningActionMenu(this.openActionMenuRecordId)
|
|
11601
11606
|
const n=await this.getActionMenuToggleEventDetail(e)
|
|
11602
11607
|
this.$emit("action-menu-beforetoggle",n)}async handleRowActionMenuToggleEvent(t){this.keyboardNavigationManager.onRowActionMenuToggle(t)
|
|
11603
11608
|
const e=await this.getActionMenuToggleEventDetail(t)
|
|
@@ -11611,16 +11616,17 @@ const i=x.getNotifier(t.columnInternals.validator)
|
|
|
11611
11616
|
i.subscribe(this),this.columnNotifiers.push(i)}}getColumnsParticipatingInSorting(){return this.columns.filter((t=>!t.columnInternals.sortingDisabled&&t.columnInternals.currentSortDirection!==rR.none&&"number"==typeof t.columnInternals.currentSortIndex))}getColumnsParticipatingInGrouping(){return this.columns.filter((t=>!t.columnInternals.groupingDisabled&&"number"==typeof t.columnInternals.groupIndex))}childItemsChanged(){this.updateColumnsFromChildItems()}async updateColumnsFromChildItems(){await TE(this.childItems),this.columns=this.childItems.filter((t=>t instanceof OR))}updateTanStack(){const t={state:{}}
|
|
11612
11617
|
if(this.tableUpdateTracker.updateColumnSort&&(t.state.sorting=this.calculateTanStackSortState()),this.tableUpdateTracker.updateColumnDefinition&&(t.columns=this.calculateTanStackColumns()),this.tableUpdateTracker.updateRowIds&&(t.getRowId=this.calculateTanStackRowIdFunction(),t.state.rowSelection={},this.selectionManager.handleSelectionReset(),this.expansionManager.resetHierarchyOptions()),this.tableUpdateTracker.updateRowParentIds&&this.expansionManager.setHierarchyEnabled(this.isHierarchyEnabled()),this.tableUpdateTracker.updateSelectionMode&&(t.enableMultiRowSelection=this.selectionMode===aR.multiple,t.enableSubRowSelection=this.selectionMode===aR.multiple,t.state.rowSelection={},this.selectionManager.handleSelectionModeChanged(this.selectionMode)),this.dataHierarchyManager&&this.tableUpdateTracker.requiresTanStackDataReset)if(this.parentIdFieldName||this.tableUpdateTracker.updateRowParentIds){const e=this.dataHierarchyManager.getAllRecords(!0),n=this.calculateTanStackData(e)
|
|
11613
11618
|
n.state&&(t.state.rowSelection=n.state.rowSelection),t.data=n.data}else t.data=[...this.table.options.data]
|
|
11614
|
-
this.tableUpdateTracker.updateGroupRows&&(t.state.grouping=this.calculateTanStackGroupingState()),(this.tableUpdateTracker.updateRowIds||this.tableUpdateTracker.updateRowParentIds||this.tableUpdateTracker.updateGroupRows)&&(t.state.expanded=!0,this.expansionManager.resetExpansionState()),this.updateTableOptions(t)}updateActionMenuSlots(){const t
|
|
11619
|
+
this.tableUpdateTracker.updateGroupRows&&(t.state.grouping=this.calculateTanStackGroupingState()),(this.tableUpdateTracker.updateRowIds||this.tableUpdateTracker.updateRowParentIds||this.tableUpdateTracker.updateGroupRows)&&(t.state.expanded=!0,this.expansionManager.resetExpansionState()),this.updateTableOptions(t)}updateActionMenuSlots(){if(void 0!==this.openActionMenuRecordId)for(const t of this.actionMenuSlots)this.requestedSlots.delete(t)
|
|
11620
|
+
const t=new Set
|
|
11615
11621
|
for(const e of this.columns)e.actionMenuSlot&&t.add(e.actionMenuSlot)
|
|
11616
|
-
this.actionMenuSlots=Array.from(t)}validate(){this.tableValidator.validateIdFieldConfiguration(this.selectionMode,this.idFieldName,this.parentIdFieldName),this.tableValidator.validateColumnIds(this.columns.map((t=>t.columnId))),this.tableValidator.validateColumnSortIndices(this.getColumnsParticipatingInSorting().map((t=>t.columnInternals.currentSortIndex))),this.tableValidator.validateColumnGroupIndices(this.getColumnsParticipatingInGrouping().map((t=>t.columnInternals.groupIndex))),this.tableValidator.validateColumnConfigurations(this.columns),this.dataHierarchyManager&&this.validateWithData(this.dataHierarchyManager.getAllRecords())}validateWithData(t){this.tableValidator.validateRecordIds(t,this.idFieldName),this.canRenderRows=this.checkValidity()}emitColumnConfigurationChangeEvent(){const t={columns:this.columns.map((t=>({columnId:t.columnId,sortIndex:t.columnInternals.currentSortIndex??void 0,sortDirection:t.columnInternals.currentSortDirection,groupIndex:t.columnInternals.groupIndex,hidden:t.columnHidden,fractionalWidth:t.columnInternals.currentFractionalWidth,pixelWidth:t.columnInternals.currentPixelWidth})))}
|
|
11622
|
+
this.actionMenuSlots=Array.from(t),void 0!==this.openActionMenuRecordId&&this.updateRequestedSlotsForOpeningActionMenu(this.openActionMenuRecordId)}validate(){this.tableValidator.validateIdFieldConfiguration(this.selectionMode,this.idFieldName,this.parentIdFieldName),this.tableValidator.validateColumnIds(this.columns.map((t=>t.columnId))),this.tableValidator.validateColumnSortIndices(this.getColumnsParticipatingInSorting().map((t=>t.columnInternals.currentSortIndex))),this.tableValidator.validateColumnGroupIndices(this.getColumnsParticipatingInGrouping().map((t=>t.columnInternals.groupIndex))),this.tableValidator.validateColumnConfigurations(this.columns),this.dataHierarchyManager&&this.validateWithData(this.dataHierarchyManager.getAllRecords())}validateWithData(t){this.tableValidator.validateRecordIds(t,this.idFieldName),this.canRenderRows=this.checkValidity()}emitColumnConfigurationChangeEvent(){const t={columns:this.columns.map((t=>({columnId:t.columnId,sortIndex:t.columnInternals.currentSortIndex??void 0,sortDirection:t.columnInternals.currentSortDirection,groupIndex:t.columnInternals.groupIndex,hidden:t.columnHidden,fractionalWidth:t.columnInternals.currentFractionalWidth,pixelWidth:t.columnInternals.currentPixelWidth})))}
|
|
11617
11623
|
this.$emit("column-configuration-change",t)}async emitSelectionChangeEvent(){const t={selectedRecordIds:await this.getSelectedRecordIds()}
|
|
11618
11624
|
this.$emit("selection-change",t)}selectionStateChanged(){this.setSelectionCheckboxState()}selectionCheckboxChanged(){this.setSelectionCheckboxState()}setSelectionCheckboxState(){this.selectionCheckbox&&(this.ignoreSelectionChangeEvents=!0,this.selectionCheckbox.checked=this.selectionState===cR,this.selectionCheckbox.indeterminate=this.selectionState===dR,this.ignoreSelectionChangeEvents=!1)}isHierarchyEnabled(){return"string"==typeof this.parentIdFieldName}refreshRows(){this.selectionState=this.getTableSelectionState()
|
|
11619
11625
|
let t=!1
|
|
11620
11626
|
const e=this.table.getRowModel().rows,n=this.getRequestedSlotsByRecordId()
|
|
11621
|
-
this.tableData=e.map((e=>{const i=e.getIsGrouped(),s=!i&&e.getParentRow(),o=!i&&this.getRowCanExpand(e),r=!i&&!o&&!s&&e.depth>0&&!this.parentIdFieldName,a={record:e.original.clientRecord,id:e.id,selectionState:this.getRowSelectionState(e),isGroupRow:i,isExpanded:e.getIsExpanded(),groupRowValue:i?e.getValue(e.groupingColumnId):void 0,nestingLevel:r?e.depth-1:e.depth,isParentRow:o,immediateChildCount:e.subRows.length,groupColumn:this.getGroupRowColumn(e),resolvedRowIndex:e.index,isLoadingChildren:this.expansionManager.isLoadingChildren(e.id),
|
|
11627
|
+
this.tableData=e.map((e=>{const i=e.getIsGrouped(),s=!i&&e.getParentRow(),o=!i&&this.getRowCanExpand(e),r=!i&&!o&&!s&&e.depth>0&&!this.parentIdFieldName,a={record:e.original.clientRecord,id:e.id,selectionState:this.getRowSelectionState(e),isGroupRow:i,isExpanded:e.getIsExpanded(),groupRowValue:i?e.getValue(e.groupingColumnId):void 0,nestingLevel:r?e.depth-1:e.depth,isParentRow:o,immediateChildCount:e.subRows.length,groupColumn:this.getGroupRowColumn(e),resolvedRowIndex:e.index,isLoadingChildren:this.expansionManager.isLoadingChildren(e.id),requestedSlots:n[e.id]??[]}
|
|
11622
11628
|
return t=t||o,a})),this.showCollapseAll=t||this.getColumnsParticipatingInGrouping().length>0,this.virtualizer.dataChanged()}getRequestedSlotsByRecordId(){const t={}
|
|
11623
|
-
for(const[e,{recordId:n,uniqueSlot:i}]of this.
|
|
11629
|
+
for(const[e,{recordId:n,uniqueSlot:i}]of this.requestedSlots)Object.prototype.hasOwnProperty.call(t,n)||(t[n]=[]),t[n].push({name:e,slot:i})
|
|
11624
11630
|
return t}getTableSelectionState(){return this.table.getIsAllRowsSelected()?cR:this.table.getIsSomeRowsSelected()?dR:lR}getRowSelectionState(t){return t.getIsGrouped()?this.getGroupedRowSelectionState(t):t.getIsSelected()?cR:lR}getGroupedRowSelectionState(t){const e=t.getLeafRows().filter((t=>!t.getIsGrouped()))??[]
|
|
11625
11631
|
let n=!1,i=!1
|
|
11626
11632
|
for(const t of e)if(t.getIsSelected()?n=!0:i=!0,n&&i)return dR
|
|
@@ -11633,7 +11639,7 @@ if("string"==typeof n)return e.clientRecord[n]},sortingFn:vF(t.columnInternals.s
|
|
|
11633
11639
|
const e={},n=this.tableValidator.getPresentRecordIds(t)
|
|
11634
11640
|
for(const t of n)if(e[t]=!0,this.selectionMode===aR.single)break
|
|
11635
11641
|
return e}}
|
|
11636
|
-
t([ft({attribute:"id-field-name"})],NF.prototype,"idFieldName",void 0),t([ft({attribute:"parent-id-field-name"})],NF.prototype,"parentIdFieldName",void 0),t([ft({attribute:"selection-mode"})],NF.prototype,"selectionMode",void 0),t([C],NF.prototype,"tableData",void 0),t([C],NF.prototype,"columns",void 0),t([C],NF.prototype,"childItems",void 0),t([C],NF.prototype,"rowElements",void 0),t([C],NF.prototype,"
|
|
11642
|
+
t([ft({attribute:"id-field-name"})],NF.prototype,"idFieldName",void 0),t([ft({attribute:"parent-id-field-name"})],NF.prototype,"parentIdFieldName",void 0),t([ft({attribute:"selection-mode"})],NF.prototype,"selectionMode",void 0),t([C],NF.prototype,"tableData",void 0),t([C],NF.prototype,"columns",void 0),t([C],NF.prototype,"childItems",void 0),t([C],NF.prototype,"rowElements",void 0),t([C],NF.prototype,"openActionMenuRecordId",void 0),t([C],NF.prototype,"canRenderRows",void 0),t([C],NF.prototype,"scrollX",void 0),t([C],NF.prototype,"rowGridColumns",void 0),t([C],NF.prototype,"selectionState",void 0),t([C],NF.prototype,"selectionCheckbox",void 0),t([C],NF.prototype,"collapseAllButton",void 0),t([C],NF.prototype,"showCollapseAll",void 0),t([C],NF.prototype,"canHaveCollapsibleRows",void 0),t([k],NF.prototype,"collapseButtonVisibility",null),t([C],NF.prototype,"firstSortedColumn",void 0),t([C],NF.prototype,"visibleColumns",void 0),t([C],NF.prototype,"tableScrollableMinWidth",void 0),t([C],NF.prototype,"windowShiftKeyDown",void 0)
|
|
11637
11643
|
const LF=NF.compose({baseName:"table",template:iF,styles:FR})
|
|
11638
11644
|
_i.getOrCreate().withPrefix("nimble").register(LF())
|
|
11639
11645
|
const BF=Mt`
|