simple-table-core 2.2.6 → 2.2.8
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.
- package/dist/Animate-0983f48f.js +2 -0
- package/dist/Animate-0983f48f.js.map +1 -0
- package/dist/{DatePicker-f46021b7.js → DatePicker-20645b3b.js} +2 -2
- package/dist/DatePicker-20645b3b.js.map +1 -0
- package/dist/cjs/{Animate-c74ae123.js → Animate-5b1b6d0d.js} +2 -2
- package/dist/cjs/Animate-5b1b6d0d.js.map +1 -0
- package/dist/cjs/{DatePicker-9c49274c.js → DatePicker-536507f5.js} +2 -2
- package/dist/cjs/DatePicker-536507f5.js.map +1 -0
- package/dist/cjs/hooks/useFlattenedRows.d.ts +3 -1
- package/dist/cjs/hooks/useTableAPI.d.ts +2 -1
- package/dist/cjs/hooks/useTableRowProcessing.d.ts +3 -1
- package/dist/cjs/index-5b26467c.js +2 -0
- package/dist/cjs/index-5b26467c.js.map +1 -0
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/types/HeaderObject.d.ts +1 -0
- package/dist/cjs/types/OnRowGroupExpandProps.d.ts +2 -1
- package/dist/cjs/types/SimpleTableProps.d.ts +1 -0
- package/dist/cjs/types/TableRefType.d.ts +2 -2
- package/dist/cjs/types/TableRow.d.ts +1 -0
- package/dist/cjs/utils/rowUtils.d.ts +23 -9
- package/dist/hooks/useFlattenedRows.d.ts +3 -1
- package/dist/hooks/useTableAPI.d.ts +2 -1
- package/dist/hooks/useTableRowProcessing.d.ts +3 -1
- package/dist/index-2e852ec7.js +2 -0
- package/dist/index-2e852ec7.js.map +1 -0
- package/dist/index.es.js +1 -1
- package/dist/types/HeaderObject.d.ts +1 -0
- package/dist/types/OnRowGroupExpandProps.d.ts +2 -1
- package/dist/types/SimpleTableProps.d.ts +1 -0
- package/dist/types/TableRefType.d.ts +2 -2
- package/dist/types/TableRow.d.ts +1 -0
- package/dist/utils/rowUtils.d.ts +23 -9
- package/package.json +1 -1
- package/dist/Animate-bdf11f9c.js +0 -2
- package/dist/Animate-bdf11f9c.js.map +0 -1
- package/dist/DatePicker-f46021b7.js.map +0 -1
- package/dist/cjs/Animate-c74ae123.js.map +0 -1
- package/dist/cjs/DatePicker-9c49274c.js.map +0 -1
- package/dist/cjs/index-d36513b2.js +0 -2
- package/dist/cjs/index-d36513b2.js.map +0 -1
- package/dist/index-0667bbe7.js +0 -2
- package/dist/index-0667bbe7.js.map +0 -1
|
@@ -38,8 +38,8 @@ type TableRefType = {
|
|
|
38
38
|
getCurrentPage: () => number;
|
|
39
39
|
/** Returns the total number of pages */
|
|
40
40
|
getTotalPages: () => number;
|
|
41
|
-
/** Sets the current page (1-indexed) */
|
|
42
|
-
setPage: (page: number) => void
|
|
41
|
+
/** Sets the current page (1-indexed) and triggers onPageChange callback */
|
|
42
|
+
setPage: (page: number) => Promise<void>;
|
|
43
43
|
/** Expand all rows at all depths */
|
|
44
44
|
expandAll: () => void;
|
|
45
45
|
/** Collapse all rows at all depths */
|
|
@@ -40,19 +40,32 @@ export declare const setNestedValue: (obj: Row, path: Accessor, value: CellValue
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const isRowArray: (data: any) => data is Row[];
|
|
42
42
|
/**
|
|
43
|
-
* Get the row ID from its position path
|
|
44
|
-
* Uses the row's index-based path to create a unique, stable identifier.
|
|
43
|
+
* Get the row ID from its position path or from a row property.
|
|
45
44
|
*
|
|
46
|
-
*
|
|
45
|
+
* If rowIdAccessor is provided:
|
|
46
|
+
* - For root-level rows (depth 0): Uses the value from row[rowIdAccessor]
|
|
47
|
+
* - For nested rows: Creates composite ID using parent IDs and the rowIdAccessor value
|
|
48
|
+
*
|
|
49
|
+
* If rowIdAccessor is not provided:
|
|
50
|
+
* - Uses the row's index-based path to create a unique identifier (backward compatible)
|
|
51
|
+
*
|
|
52
|
+
* Examples with rowIdAccessor='id':
|
|
53
|
+
* - Root row with id='REG-1': "REG-1"
|
|
54
|
+
* - Nested store under REG-1 with id='STORE-101': "REG-1-stores-STORE-101"
|
|
55
|
+
* - Deeply nested: "REG-1-stores-STORE-101-products-PROD-5"
|
|
56
|
+
*
|
|
57
|
+
* Examples without rowIdAccessor (index-based):
|
|
47
58
|
* - Root row at index 0: "0"
|
|
48
|
-
* - Root row at index 1: "1"
|
|
49
59
|
* - Nested row under parent 0, divisions array, index 2: "0-divisions-2"
|
|
50
|
-
* - Deeply nested: "0-divisions-1-teams-3"
|
|
51
60
|
*
|
|
52
|
-
* @param
|
|
53
|
-
* @returns A unique row ID
|
|
61
|
+
* @param params - Object containing row data, rowIdAccessor, and rowPath
|
|
62
|
+
* @returns A unique row ID
|
|
54
63
|
*/
|
|
55
|
-
export declare const getRowId: (
|
|
64
|
+
export declare const getRowId: (params: (string | number)[] | {
|
|
65
|
+
row: Row;
|
|
66
|
+
rowIdAccessor: Accessor;
|
|
67
|
+
rowPath?: (string | number)[] | undefined;
|
|
68
|
+
}) => RowId;
|
|
56
69
|
/**
|
|
57
70
|
* Get nested rows from a row based on the grouping path
|
|
58
71
|
*/
|
|
@@ -77,12 +90,13 @@ export declare const isRowExpanded: (rowId: string | number, depth: number, expa
|
|
|
77
90
|
* Also injects special state rows for loading/error/empty states (only if renderers are available)
|
|
78
91
|
* Also injects nested grid rows when a header has nestedTable configuration
|
|
79
92
|
*/
|
|
80
|
-
export declare const flattenRowsWithGrouping: ({ depth, expandedDepths, expandedRows, collapsedRows, rowGrouping, rows, displayPositionOffset, rowStateMap, hasLoadingRenderer, hasErrorRenderer, hasEmptyRenderer, headers, rowHeight, headerHeight, customTheme, }: {
|
|
93
|
+
export declare const flattenRowsWithGrouping: ({ depth, expandedDepths, expandedRows, collapsedRows, rowGrouping, rowIdAccessor, rows, displayPositionOffset, rowStateMap, hasLoadingRenderer, hasErrorRenderer, hasEmptyRenderer, headers, rowHeight, headerHeight, customTheme, }: {
|
|
81
94
|
depth?: number | undefined;
|
|
82
95
|
expandedDepths: Set<number>;
|
|
83
96
|
expandedRows: Map<string, number>;
|
|
84
97
|
collapsedRows: Map<string, number>;
|
|
85
98
|
rowGrouping?: string[] | undefined;
|
|
99
|
+
rowIdAccessor?: string | undefined;
|
|
86
100
|
rows: Row[];
|
|
87
101
|
displayPositionOffset?: number | undefined;
|
|
88
102
|
rowStateMap?: Map<string | number, RowState> | undefined;
|
|
@@ -7,6 +7,7 @@ import { CustomTheme } from "../types/CustomTheme";
|
|
|
7
7
|
interface UseFlattenedRowsProps {
|
|
8
8
|
rows: Row[];
|
|
9
9
|
rowGrouping?: Accessor[];
|
|
10
|
+
rowIdAccessor?: Accessor;
|
|
10
11
|
expandedRows: Map<string, number>;
|
|
11
12
|
collapsedRows: Map<string, number>;
|
|
12
13
|
expandedDepths: Set<number>;
|
|
@@ -23,6 +24,7 @@ interface UseFlattenedRowsResult {
|
|
|
23
24
|
flattenedRows: TableRow[];
|
|
24
25
|
heightOffsets: HeightOffsets;
|
|
25
26
|
paginatableRows: TableRow[];
|
|
27
|
+
parentEndPositions: number[];
|
|
26
28
|
}
|
|
27
29
|
/**
|
|
28
30
|
* Hook that flattens nested row data into a flat array of TableRow objects.
|
|
@@ -30,5 +32,5 @@ interface UseFlattenedRowsResult {
|
|
|
30
32
|
* can all operate on the flat structure, fixing issues where rowsPerPage
|
|
31
33
|
* didn't account for nested children.
|
|
32
34
|
*/
|
|
33
|
-
declare const useFlattenedRows: ({ rows, rowGrouping, expandedRows, collapsedRows, expandedDepths, rowStateMap, hasLoadingRenderer, hasErrorRenderer, hasEmptyRenderer, headers, rowHeight, headerHeight, customTheme, }: UseFlattenedRowsProps) => UseFlattenedRowsResult;
|
|
35
|
+
declare const useFlattenedRows: ({ rows, rowGrouping, rowIdAccessor, expandedRows, collapsedRows, expandedDepths, rowStateMap, hasLoadingRenderer, hasErrorRenderer, hasEmptyRenderer, headers, rowHeight, headerHeight, customTheme, }: UseFlattenedRowsProps) => UseFlattenedRowsResult;
|
|
34
36
|
export default useFlattenedRows;
|
|
@@ -6,7 +6,7 @@ import TableRow from "../types/TableRow";
|
|
|
6
6
|
import HeaderObject from "../types/HeaderObject";
|
|
7
7
|
import { TableFilterState, FilterCondition } from "../types/FilterTypes";
|
|
8
8
|
import { SortDirection } from "../types/SortColumn";
|
|
9
|
-
declare const useTableAPI: ({ cellRegistryRef, clearAllFilters, clearFilter, currentPage, expandedDepths, filters, flattenedRows, headerRegistryRef, headers, includeHeadersInCSVExport, paginatableRows, rowGrouping, rowIndexMap, rows, rowsPerPage, serverSidePagination, setCollapsedRows, setCurrentPage, setExpandedDepths, setExpandedRows, setRows, shouldPaginate, sort, tableRef, totalRowCount, updateFilter, updateSort, visibleRows, }: {
|
|
9
|
+
declare const useTableAPI: ({ cellRegistryRef, clearAllFilters, clearFilter, currentPage, expandedDepths, filters, flattenedRows, headerRegistryRef, headers, includeHeadersInCSVExport, onPageChange, paginatableRows, rowGrouping, rowIndexMap, rows, rowsPerPage, serverSidePagination, setCollapsedRows, setCurrentPage, setExpandedDepths, setExpandedRows, setRows, shouldPaginate, sort, tableRef, totalRowCount, updateFilter, updateSort, visibleRows, }: {
|
|
10
10
|
cellRegistryRef: MutableRefObject<Map<string, CellRegistryEntry>>;
|
|
11
11
|
clearAllFilters: () => void;
|
|
12
12
|
clearFilter: (accessor: Accessor) => void;
|
|
@@ -17,6 +17,7 @@ declare const useTableAPI: ({ cellRegistryRef, clearAllFilters, clearFilter, cur
|
|
|
17
17
|
headerRegistryRef: MutableRefObject<Map<string, HeaderRegistryEntry>>;
|
|
18
18
|
headers: HeaderObject[];
|
|
19
19
|
includeHeadersInCSVExport: boolean;
|
|
20
|
+
onPageChange?: ((page: number) => void | Promise<void>) | undefined;
|
|
20
21
|
paginatableRows: TableRow[];
|
|
21
22
|
rowGrouping?: string[] | undefined;
|
|
22
23
|
rowIndexMap: MutableRefObject<Map<string | number, number>>;
|
|
@@ -11,6 +11,8 @@ interface UseTableRowProcessingProps {
|
|
|
11
11
|
originalFlattenedRows: TableRow[];
|
|
12
12
|
/** Rows that should count towards pagination (excludes nested grids, state indicators) */
|
|
13
13
|
paginatableRows: TableRow[];
|
|
14
|
+
/** End positions of each depth-0 parent row (including its children) */
|
|
15
|
+
parentEndPositions: number[];
|
|
14
16
|
currentPage: number;
|
|
15
17
|
rowsPerPage: number;
|
|
16
18
|
shouldPaginate: boolean;
|
|
@@ -24,7 +26,7 @@ interface UseTableRowProcessingProps {
|
|
|
24
26
|
computeFilteredRowsPreview: (filter: FilterCondition) => TableRow[];
|
|
25
27
|
computeSortedRowsPreview: (accessor: Accessor) => TableRow[];
|
|
26
28
|
}
|
|
27
|
-
declare const useTableRowProcessing: ({ allowAnimations, flattenedRows, originalFlattenedRows, paginatableRows, currentPage, rowsPerPage, shouldPaginate, serverSidePagination, contentHeight, rowHeight, scrollTop, scrollDirection, heightOffsets, customTheme, computeFilteredRowsPreview, computeSortedRowsPreview, }: UseTableRowProcessingProps) => {
|
|
29
|
+
declare const useTableRowProcessing: ({ allowAnimations, flattenedRows, originalFlattenedRows, paginatableRows, parentEndPositions, currentPage, rowsPerPage, shouldPaginate, serverSidePagination, contentHeight, rowHeight, scrollTop, scrollDirection, heightOffsets, customTheme, computeFilteredRowsPreview, computeSortedRowsPreview, }: UseTableRowProcessingProps) => {
|
|
28
30
|
currentTableRows: TableRow[];
|
|
29
31
|
currentVisibleRows: TableRow[];
|
|
30
32
|
isAnimating: boolean;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{jsx as e,Fragment as n,jsxs as t}from"react/jsx-runtime";import r,{useEffect as o,useState as i,useRef as a,useMemo as u,useCallback as l,createContext as c,useContext as s,lazy as d,Suspense as f,Fragment as v,cloneElement as h,forwardRef as p,useImperativeHandle as w,isValidElement as m,useLayoutEffect as g,useReducer as b}from"react";var x=function(){return x=Object.assign||function(e){for(var n,t=1,r=arguments.length;r>t;t++)for(var o in n=arguments[t])Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o]);return e},x.apply(this,arguments)};function y(e,n){var t={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>n.indexOf(r)&&(t[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);r.length>o;o++)0>n.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(t[r[o]]=e[r[o]])}return t}function I(e,n,t,r){return new(t||(t=Promise))(function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function u(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var n;e.done?o(e.value):(n=e.value,n instanceof t?n:new t(function(e){e(n)})).then(a,u)}l((r=r.apply(e,n||[])).next())})}function C(e,n){var t,r,o,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=u(0),a.throw=u(1),a.return=u(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(u){return function(l){return function(u){if(t)throw new TypeError("Generator is already executing.");for(;a&&(a=0,u[0]&&(i=0)),i;)try{if(t=1,r&&(o=2&u[0]?r.return:u[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,u[1])).done)return o;switch(r=0,o&&(u=[2&u[0],o.value]),u[0]){case 0:case 1:o=u;break;case 4:return i.label++,{value:u[1],done:!1};case 5:i.label++,r=u[1],u=[0];continue;case 7:u=i.ops.pop(),i.trys.pop();continue;default:if(!((o=(o=i.trys).length>0&&o[o.length-1])||6!==u[0]&&2!==u[0])){i=0;continue}if(3===u[0]&&(!o||u[1]>o[0]&&o[3]>u[1])){i.label=u[1];break}if(6===u[0]&&o[1]>i.label){i.label=o[1],o=u;break}if(o&&o[2]>i.label){i.label=o[2],i.ops.push(u);break}o[2]&&i.ops.pop(),i.trys.pop();continue}u=n.call(e,i)}catch(e){u=[6,e],r=0}finally{t=o=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,l])}}}function R(e,n,t){if(t||2===arguments.length)for(var r,o=0,i=n.length;i>o;o++)!r&&o in n||(r||(r=Array.prototype.slice.call(n,0,o)),r[o]=n[o]);return e.concat(r||Array.prototype.slice.call(n))}"function"==typeof SuppressedError&&SuppressedError;var S=1,M=function(e){return Math.ceil(800/(e+1))},N=30,H=function(e){return 480>e?.3:768>e?.4:.8},E="parentExpanded",T=function(e,n){if(!e.children||0===e.children.length)return[n];var t=[],r=function(e,n){if(!e.children||0===e.children.length)return t.push(n),n+1;for(var o=n,i=0,a=e.children;a.length>i;i++)o=r(a[i],o);return o};return r(e,n),t},k=function(e){return e.flatMap(function(e){var n=[e];return e.children&&e.children.length>0&&n.push.apply(n,k(e.children)),n})},A=function(e){return void 0===e&&(e=0),e?e+1:0},P=function(e){var n=e.accessor;return"".concat(e.rowId,"-").concat(n)},D=function(e){var n=e.header,t=e.pinned,r=e.headers,o=e.collapsedHeaders;return n.hide||n.excludeFromRender||(t||n.pinned)&&n.pinned!==t?null:!(r&&o&&function(e,n,t){var r=function(e,n){for(var t=0,r=k(e);r.length>t;t++){var o=r[t];if(o.children&&o.children.length>0&&o.children.some(function(e){return e.accessor===n}))return o}return null}(n,e.accessor);if(r){var o=t.has(r.accessor),i=e.showWhen||E;return o?"parentExpanded"===i:"parentCollapsed"===i}return!1}(n,r,o))||null},F=function(e){var n=e.accessor;return"".concat(e.rowId,"-").concat(n)},O=function(e,n){return e.hide?[]:e.children&&0!==e.children.length?n&&n.has(e.accessor)?e.children.filter(function(e){var n=e.showWhen||E;return"parentCollapsed"===n||"always"===n}).flatMap(function(e){return O(e,n)}):e.children.filter(function(e){var n=e.showWhen||E;return"parentExpanded"===n||"always"===n}).flatMap(function(e){return O(e,n)}):[e]},L=function(e){if(e.hide)return 0;if("number"==typeof e.width)return e.width;if("string"==typeof e.width&&e.width.endsWith("px"))return parseFloat(e.width);var n=document.getElementById(P({accessor:e.accessor,rowId:"header"}));return(null==n?void 0:n.offsetWidth)||150},W=function(e){var n,t=e.width;"string"==typeof t&&t.includes("fr")&&(e.width=(null===(n=document.getElementById(P({accessor:e.accessor,rowId:"header"})))||void 0===n?void 0:n.offsetWidth)||150),e.children&&e.children.length>0&&e.children.forEach(function(e){W(e)})},B=function(e){return"number"==typeof e.minWidth?e.minWidth:40},q=function(e,n){var t=[];return e.forEach(function(e){e.hide||t.push.apply(t,O(e,n))}),t},G=function(e){var n=e.customTheme;return Math.min(e.headerHeight+n.rowSeparatorWidth+e.childRowCount*(e.rowHeight+n.rowSeparatorWidth)+n.nestedGridPaddingTop+n.nestedGridPaddingBottom+n.nestedGridBorderWidth,n.nestedGridMaxHeight+n.nestedGridPaddingTop+n.nestedGridPaddingBottom+n.nestedGridBorderWidth)},z=function(e){var n=e.match(/^(.+?)\[(\d+)\]$/);return n?{key:n[1],index:parseInt(n[2],10)}:{key:e,index:null}},K=function(e,n){var t=n+"";return t.includes(".")||t.includes("[")?t.split(".").reduce(function(e,n){if(null!=e){var t=z(n),r=t.index,o=e[t.key];return null!==r&&Array.isArray(o)&&(o=o[r]),o}},e):e[n]},j=function(e,n,t){var r=n+"";if(r.includes(".")||r.includes("[")){for(var o=r.split("."),i=e,a=0;o.length-1>a;a++){var u=z(o[a]),l=u.key,c=u.index;if(null==i[l]){var s=z(o[a+1]);i[l]=null!==s.index?[]:{}}if(i=i[l],null!==c){if(!Array.isArray(i))throw Error("Expected array at ".concat(o.slice(0,a+1).join("."),", but found ").concat(typeof i));for(;c>=i.length;)i.push(null);null==i[c]&&(i[c]={}),i=i[c]}}var d=z(o[o.length-1]),f=d.key,v=d.index;if(null!==v){for(Array.isArray(i[f])||(i[f]=[]);v>=i[f].length;)i[f].push(null);i[f][v]=t}else i[f]=t}else e[n]=t},V=function(e){return Array.isArray(e)&&e.length>0&&"object"==typeof e[0]&&null!==e[0]},_=function(e){if(Array.isArray(e))return e.join("-");var n=e.rowPath,t=e.row[e.rowIdAccessor];return n&&n.length>1?n.join("-"):t},U=function(e,n){var t=e[n];return V(t)?t:[]},J=function(e,n,t,r,o){var i=e+"",a=r.has(i)&&r.get(i)===n,u=o.has(i)&&o.get(i)===n;return t.has(n)?!u:a},X=function(e){var n=e.depth,t=e.expandedDepths,r=e.expandedRows,o=e.collapsedRows,i=e.rowGrouping,a=void 0===i?[]:i,u=e.rowIdAccessor,l=e.displayPositionOffset,c=void 0===l?0:l,s=e.rowStateMap,d=e.hasLoadingRenderer,f=void 0!==d&&d,v=e.hasErrorRenderer,h=void 0!==v&&v,p=e.hasEmptyRenderer,w=void 0!==p&&p,m=e.headers,g=void 0===m?[]:m,b=e.rowHeight,x=e.headerHeight,y=e.customTheme,I=[],C=function(e,n,i,l,d,v){void 0===i&&(i=0),void 0===l&&(l=c),void 0===d&&(d=[]),void 0===v&&(v=[]);var p=i,m=l;return e.forEach(function(i,l){var c,S,M=a[n],N=u?i[u]+"":l,H=R(R([],d,!0),[N],!1),E=R(R([],v,!0),[l],!1),T=_(u?{row:i,rowIdAccessor:u,rowPath:H}:H);if(I.push({row:i,depth:n,displayPosition:m,groupingKey:M,position:p,isLastGroupRow:0===n&&l===e.length-1,rowPath:H,rowIndexPath:E,absoluteRowIndex:p}),p++,m++,J(T,n,t,r,o)&&a.length>n){var k=null==s?void 0:s.get(T),A=U(i,M),P=g.find(function(e){return e.expandable&&e.nestedTable});if((null==P?void 0:P.nestedTable)&&A.length>0){var D=(null===(c=P.nestedTable.customTheme)||void 0===c?void 0:c.rowHeight)||b,F=(null===(S=P.nestedTable.customTheme)||void 0===S?void 0:S.headerHeight)||x,O=G({childRowCount:A.length,rowHeight:D,headerHeight:F,customTheme:y});I.push({row:{},depth:n+1,displayPosition:m,groupingKey:M,position:p,isLastGroupRow:!1,rowPath:R(R([],H,!0),[M],!1),rowIndexPath:E,nestedTable:{parentRow:i,expandableHeader:P,childAccessor:M,calculatedHeight:O},absoluteRowIndex:p}),p++,m++}else if(k&&(k.loading||k.error||k.isEmpty))k.loading&&f||k.error&&h||k.isEmpty&&w?(I.push({row:{},depth:n+1,displayPosition:m,groupingKey:M,position:p,isLastGroupRow:!1,rowPath:R(R([],H,!0),[M],!1),rowIndexPath:E,stateIndicator:{parentRowId:T,state:k},absoluteRowIndex:p}),p++,m++):k.loading&&!f&&(I.push({row:{},depth:n+1,displayPosition:m,groupingKey:M,position:p,isLastGroupRow:!1,rowPath:R(R([],H,!0),[M,"loading-skeleton"],!1),rowIndexPath:E,isLoadingSkeleton:!0,absoluteRowIndex:p}),p++,m++);else if(A.length>0){var L=R(R([],H,!0),[M],!1),W=R([],E,!0);p=C(A,n+1,p,m,L,W)}}}),p};return C(e.rows,void 0===n?0:n,0,c,[],[]),I},Y=function(e,n){var t=n.rowTopPositions;if(0===t.length)return 0;if(0>=e)return 0;if(e>=n.totalHeight)return t.length-1;for(var r=0,o=t.length-1;o>r;){var i=Math.floor((r+o+1)/2);t[i]>e?o=i-1:r=i}return r},$=function(e,n){if(!n||0===n.length)return 0;for(var t=0,r=0,o=n.length;o>r;){var i=Math.floor((r+o)/2);e>n[i][0]?r=i+1:o=i}for(var a=0;r>a;a++)t+=n[a][1];return t},Z=function(e){var n=e.bufferRowCount,t=e.contentHeight,r=e.scrollTop,o=e.tableRows,i=e.scrollDirection,a=void 0===i?"none":i,u=e.heightMap,l=e.rowHeight+1;if(!u){var c=n*l,s=c,d=c;"down"===a?(s=Math.max(l,.1*c),d=.9*c):"up"===a&&(s=.9*c,d=Math.max(l,.1*c));var f=r+t+d,v=Math.max(0,Math.floor(Math.max(0,r-s)/l)),h=Math.min(o.length,Math.ceil(f/l)),p=r+t,w=Math.max(0,Math.ceil(r/l)),m=Math.min(o.length,Math.floor(p/l)),g=r+t,b=Math.max(0,Math.floor(r/l)),x=Math.min(o.length,Math.ceil(g/l));return{rendered:{startIndex:v,endIndex:h,rows:o.slice(v,h)},fullyVisible:{startIndex:w,endIndex:m,rows:o.slice(w,m)},partiallyVisible:{startIndex:b,endIndex:x,rows:o.slice(b,x)}}}var y=u.rowTopPositions,I=n*l,C=I,R=I;"down"===a?(C=Math.max(l,.1*I),R=.9*I):"up"===a&&(C=.9*I,R=Math.max(l,.1*I));var S=r+t+R,M=Y(Math.max(0,r-C),u),N=Y(S,u)+1;N=Math.min(o.length,N);var H=r,E=r+t,T=Y(H,u);H>y[T]&&(T=Math.min(T+1,o.length));var k=Y(E,u);k=Math.min(o.length,k);var A=r+t,P=Y(r,u),D=Y(A,u)+1;return D=Math.min(o.length,D),{rendered:{startIndex:M,endIndex:N,rows:o.slice(M,N)},fullyVisible:{startIndex:T,endIndex:k,rows:o.slice(T,k)},partiallyVisible:{startIndex:P,endIndex:D,rows:o.slice(P,D)}}},Q=function(e){return Z({bufferRowCount:e.bufferRowCount,contentHeight:e.contentHeight,rowHeight:e.rowHeight,scrollTop:e.scrollTop,tableRows:e.tableRows,scrollDirection:e.scrollDirection,heightMap:e.heightMap}).rendered.rows},ee=function(e){var n=e.position,t=e.customTheme;return n*(e.rowHeight+t.rowSeparatorWidth)-t.rowSeparatorWidth+$(n,e.heightOffsets)},ne=function(e){var n=e.position;return n*(e.rowHeight+e.customTheme.rowSeparatorWidth)+$(n,e.heightOffsets)},te=function(e,n,t){var r=e.getBoundingClientRect(),o=n.getBoundingClientRect(),i=10;if(o.top+i>r.top?n.scrollTop-=o.top-r.top+i:r.bottom>o.bottom-i&&(n.scrollTop+=r.bottom-o.bottom+i),t){var a=t.getBoundingClientRect();a.left+i>r.left?t.scrollLeft-=a.left-r.left+i:r.right>a.right-i&&(t.scrollLeft+=r.right-a.right+i)}},re=function(e,n,t,r){var o=document.querySelector(".st-body-container"),i=document.querySelector(".st-body-main");if(o){var a=n+t.rowSeparatorWidth,u=document.querySelector('.st-cell[data-row-index="'.concat(e.rowIndex,'"][data-col-index="').concat(e.colIndex,'"][data-row-id="').concat(e.rowId,'"]'));if(u&&r){var l=function(e,n,t,r){var o=Z({bufferRowCount:0,contentHeight:n.clientHeight,rowHeight:t,scrollTop:n.scrollTop,tableRows:r,scrollDirection:"none"}).fullyVisible;return e>=o.startIndex&&o.endIndex>e}(e.rowIndex,o,n,r);if(l)return void te(u,o,i)}if(!u)return o.scrollTop=Math.max(0,e.rowIndex*a-o.clientHeight/3),void setTimeout(function(){var n=document.querySelector('.st-cell[data-row-index="'.concat(e.rowIndex,'"][data-col-index="').concat(e.colIndex,'"][data-row-id="').concat(e.rowId,'"]'));n&&te(n,o,i)},100);te(u,o,i)}},oe=function(e){var n=e.colIndex,t=e.rowId;return"".concat(e.rowIndex,"-").concat(n,"-").concat(t)},ie=c(void 0),ae=function(n){return e(ie.Provider,x({value:n.value},{children:n.children}))},ue=function(){var e=s(ie);if(void 0===e)throw Error("useTableContext must be used within a TableProvider");return e},le=function(r){var o=r.currentPage,a=r.footerRenderer,u=r.hideFooter,l=r.onPageChange,c=r.onNextPage,s=r.onUserPageChange,d=r.rowsPerPage,f=r.shouldPaginate,v=r.totalPages,h=r.totalRows,p=ue(),w=p.nextIcon,m=p.prevIcon,g=i(!0),b=g[0],y=g[1],R=o>1,S=v>o,M=o===v,N=Math.min((o-1)*d+1,h),H=Math.min(o*d,h),E=!R,T=!S&&!c||!b&&M,k=function(){return I(void 0,void 0,void 0,function(){var e;return C(this,function(n){switch(n.label){case 0:return 1>(e=o-1)?[3,2]:(l(e),s?[4,s(e)]:[3,2]);case 1:n.sent(),n.label=2;case 2:return[2]}})})},A=function(){return I(void 0,void 0,void 0,function(){var e,n;return C(this,function(t){switch(t.label){case 0:return e=o===v,n=o+1,c&&e?[4,c(o)]:[3,2];case 1:if(!t.sent())return y(!1),[2];t.label=2;case 2:return n>v&&!c?[3,4]:(l(n),s?[4,s(n)]:[3,4]);case 3:t.sent(),t.label=4;case 4:return[2]}})})},P=function(e){return I(void 0,void 0,void 0,function(){return C(this,function(n){switch(n.label){case 0:return 1>e||e>v?[3,2]:(l(e),s?[4,s(e)]:[3,2]);case 1:n.sent(),n.label=2;case 2:return[2]}})})};if(u||!f)return null;if(a)return e(n,{children:a({currentPage:o,totalPages:v,rowsPerPage:d,totalRows:h,startRow:N,endRow:H,onPageChange:P,onNextPage:A,onPrevPage:k,hasNextPage:!T,hasPrevPage:!E,nextIcon:w,prevIcon:m})});var D=function(){if(15>=v)return Array.from({length:v},function(e,n){return n+1});var e,n,t=[];o>8?v-7>o?(e=o-7,n=o+7):(e=Math.max(1,v-15+1),n=v):(e=1,n=14),e>2?(t.push(1),t.push(-1)):2===e&&t.push(1);for(var r=e;n>=r;r++)t.push(r);return v-1>n?(t.push(-2),t.push(v)):n===v-1&&t.push(v),t}();return t("div",x({className:"st-footer"},{children:[e("div",x({className:"st-footer-info"},{children:t("span",x({className:"st-footer-results-text"},{children:["Showing ",N," to ",H," of ",h.toLocaleString()," results"]}))})),t("div",x({className:"st-footer-pagination"},{children:[D.map(function(n,t){return 0>n?e("span",x({className:"st-page-ellipsis"},{children:"..."}),t):e("button",x({onClick:function(){return P(n)},className:"st-page-btn ".concat(o===n?"active":""),"aria-label":"Go to page ".concat(n),"aria-current":o===n?"page":void 0},{children:n}),t)}),e("button",x({className:"st-next-prev-btn ".concat(E?"disabled":""),onClick:k,disabled:E,"aria-label":"Go to previous page"},{children:m})),e("button",x({className:"st-next-prev-btn ".concat(T?"disabled":""),onClick:A,disabled:T,"aria-label":"Go to next page"},{children:w}))]}))]}))},ce=function(n){return e("svg",x({className:n.className,viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg"},{children:e("path",{d:"M5.41 7.59L10 12.17l4.59-4.58L16 9l-6 6-6-6z"})}))},se=function(n){return e("svg",x({className:n.className,viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg"},{children:e("path",{d:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"})}))},de=function(n){return e("svg",x({className:n.className,viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg"},{children:e("path",{d:"M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z"})}))},fe=function(n){return e("svg",x({className:n.className,viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg"},{children:e("path",{d:"M5.41 11.41L10 6.83l4.59 4.58L16 10l-6-6-6 6z"})}))},ve=function(n){return e("svg",x({"aria-hidden":"true",focusable:"false",role:"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 320 512",className:n.className,style:{height:"1em"}},{children:e("path",{d:"M298 177.5c3.8-8.8 2-19-4.6-26l-116-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-116 144c-6.6 7-8.4 17.2-4.6 26S34.4 192 44 192l72 0 0 288c0 17.7 14.3 32 32 32l24 0c17.7 0 32-14.3 32-32l0-288 72 0c9.6 0 18.2-5.7 22-14.5z"})}))},he=function(n){return e("svg",x({"aria-hidden":"true",role:"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512",className:n.className,style:x({height:"10px"},n.style)},{children:e("path",{d:"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"})}))},pe=function(n){return e("svg",x({"aria-hidden":"true",focusable:"false",role:"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 320 512",className:n.className,style:{height:"1em"}},{children:e("path",{d:"M22 334.5c-3.8 8.8-2 19 4.6 26l116 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l116-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L148 0C130.3 0 116 14.3 116 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z"})}))},we=function(n){return e("svg",x({"aria-hidden":"true",role:"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512",className:n.className,style:x({height:"1em"},n.style)},{children:e("path",{d:"M3.9 54.9C10.5 40.9 24.5 32 40 32l432 0c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9 320 448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6l0-79.1L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z"})}))},me=function(){return e("svg",x({className:"st-custom-select-arrow",width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg"},{children:e("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}))},ge=function(e){var n=e.headerContainerRef,t=e.mainSectionRef,r=e.scrollbarWidth,a=i(!1),u=a[0],l=a[1];return o(function(){var e=null==n?void 0:n.current;if(u&&e)return e.classList.add("st-header-scroll-padding"),e.style.setProperty("--st-after-width","".concat(r,"px")),function(){e.classList.remove("st-header-scroll-padding")}},[n,u,r]),o(function(){var e=null==t?void 0:t.current;if(e&&(null==n?void 0:n.current)){var r=function(){e&&l(e.scrollHeight>e.clientHeight)};r();var o=new ResizeObserver(function(){r()});return o.observe(e),function(){e&&o.unobserve(e)}}},[n,t]),{isMainSectionScrollable:u}},be=function(n){var t=n.children,r=n.onClose,u=n.open,l=n.overflow,c=void 0===l?"auto":l,s=n.setOpen,d=n.width,f=n.containerRef,v=n.positioning,h=void 0===v?"fixed":v,p=ue().mainBodyRef,w=a(null),m=a(null),g=i("bottom-left"),b=g[0],y=g[1],I=i({}),C=I[0],R=I[1],S=i(!1),M=S[0],N=S[1];return o(function(){u&&w.current?(N(!1),!m.current&&w.current.parentElement&&(m.current=w.current.parentElement),requestAnimationFrame(function(){if(w.current&&m.current){var e,n=w.current,t=m.current.getBoundingClientRect(),r=n.offsetHeight,o=d||n.offsetWidth,i=(e=(null==f?void 0:f.current)?f.current.getBoundingClientRect():(null==p?void 0:p.current)?p.current.getBoundingClientRect():{top:0,right:window.innerWidth,bottom:window.innerHeight,left:0,width:window.innerWidth,height:window.innerHeight,x:0,y:0,toJSON:function(){}}).bottom-t.bottom,a=t.top-e.top,u="bottom",l={};(r>i&&a>=r||r>i&&a>i)&&(u="top");var c="left";o>e.right-t.right+t.width&&(c="right"),"fixed"===h?("bottom"===u?l.top=t.bottom+4:l.bottom=window.innerHeight-t.top+4,"left"===c?l.left=t.left:l.right=window.innerWidth-t.right):("bottom"===u?l.top=t.height+4:l.bottom=t.height+4,"left"===c?l.left=0:l.right=0),y("".concat(u,"-").concat(c)),R(l),N(!0)}})):u||N(!1)},[u,d,f,p,h]),o(function(){var e=function(e){u&&w.current&&w.current&&!w.current.contains(e.target)&&(s(!1),null==r||r())};return u&&window.addEventListener("scroll",e,!0),function(){window.removeEventListener("scroll",e,!0)}},[u,r,s]),o(function(){var e=function(e){if(w.current&&!w.current.contains(e.target)){var n=w.current.parentElement;n&&!n.contains(e.target)&&(s(!1),null==r||r())}},n=function(n){"Enter"===n.key&&e(n)};return u&&(document.addEventListener("mousedown",e,!0),document.addEventListener("keydown",n,!0)),function(){document.removeEventListener("mousedown",e,!0),document.removeEventListener("keydown",n,!0)}},[r,u,s]),o(function(){var e=function(e){"Escape"===e.key&&u&&(s(!1),null==r||r())};return u&&document.addEventListener("keydown",e),function(){document.removeEventListener("keydown",e)}},[r,u,s]),u?e("div",x({ref:w,className:"st-dropdown-content st-dropdown-".concat(b),onClick:function(e){return e.stopPropagation()},onMouseDown:function(e){return e.stopPropagation()},onTouchStart:function(e){return e.stopPropagation()},style:x(x({position:h,width:d?"".concat(d,"px"):"auto",visibility:M?"visible":"hidden"},C),{overflow:c})},{children:t})):null},xe=function(n){var t=n.children,r=n.onClick,o=n.isSelected,i=void 0!==o&&o,a=n.disabled,u=void 0!==a&&a,l=n.className,c=void 0===l?"":l;return e("div",x({className:"st-dropdown-item ".concat(i?"selected":""," ").concat(u?"disabled":""," ").concat(c),onClick:function(){!u&&r&&r()},role:"option","aria-selected":i,"aria-disabled":u},{children:t}))},ye=function(n){var r=n.onBlur,o=n.onChange,a=n.open,u=n.setOpen,l=i(n.value),c=l[0],s=l[1],d=function(e){s(e),o(e),u(!1),r()};return t(be,x({open:a,onClose:function(){r()},setOpen:u,width:120},{children:[e(xe,x({isSelected:!0===c,onClick:function(){return d(!0)}},{children:"True"})),e(xe,x({isSelected:!1===c,onClick:function(){return d(!1)}},{children:"False"}))]}))},Ie=function(n){var t=n.defaultValue,r=n.onBlur,o=n.onChange,i=a(null);return e("input",{className:"editable-cell-input",ref:i,autoFocus:!0,type:"text",defaultValue:null!=t?t:"",onBlur:r,onChange:function(e){o(e.target.value)},onKeyDown:function(e){e.stopPropagation(),"Enter"!==e.key&&"Escape"!==e.key||r()},onMouseDown:function(e){e.stopPropagation()}})},Ce=function(n){var t=n.defaultValue,r=n.onBlur,o=n.onChange,i=a(null);return e("input",{className:"editable-cell-input",ref:i,autoFocus:!0,defaultValue:""+t,onBlur:r,onChange:function(e){var n=e.target.value;/^\d*\.?\d*$/.test(n)&&o(n)},onKeyDown:function(e){e.stopPropagation(),"Enter"!==e.key&&"Escape"!==e.key||r()},onMouseDown:function(e){e.stopPropagation()}})},Re=d(function(){return import("./Animate-0983f48f.js")}),Se=d(function(){return import("./DatePicker-20645b3b.js")}),Me=d(function(){return Promise.resolve().then(function(){return ht})}),Ne=d(function(){return Promise.resolve().then(function(){return wt})}),He=function(n){var t=y(n,["parentRef","tableRow"]);return e(f,x({fallback:e("div",x({},t))},{children:e(Re,x({},n))}))},Ee=function(n){return e(f,x({fallback:e("div",x({style:{padding:"20px",textAlign:"center"}},{children:"Loading..."}))},{children:e(Se,x({},n))}))},Te=function(n){var t=n.width,r=n.height;return e(f,x({fallback:e("div",{style:{width:void 0===t?100:t,height:void 0===r?30:r,background:"#f3f4f6"}})},{children:e(Me,x({},n))}))},ke=function(n){var t=n.width,r=n.height;return e(f,x({fallback:e("div",{style:{width:void 0===t?100:t,height:void 0===r?30:r,background:"#f3f4f6"}})},{children:e(Ne,x({},n))}))},Ae=function(e){if(!e)return new Date;if(/^\d{4}-\d{2}-\d{2}$/.test(e)){var n=e.split("-").map(Number);return new Date(n[0],n[1]-1,n[2],12,0,0)}var t=new Date(e);return isNaN(t.getTime())?new Date:new Date(t.getFullYear(),t.getMonth(),t.getDate(),12,0,0)},Pe=function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),12,0,0)},De=function(e){if(!e)return new Date;if("string"==typeof e)return Ae(e);if("number"==typeof e){var n=new Date(e);return isNaN(n.getTime())?new Date:Pe(n)}return e instanceof Date?Pe(e):new Date},Fe=function(e){return e?Ae(""+e):new Date},Oe=function(n){var t=n.onBlur,r=n.onChange,i=n.open,a=n.setOpen,u=n.value;o(function(){var e=setTimeout(function(){var e=document.querySelector(".st-dropdown-container");e instanceof HTMLElement&&e.focus()},0);return function(){return clearTimeout(e)}},[]);var l=function(){t()};return e(be,x({open:i,onClose:l,setOpen:a,overflow:"hidden",width:240},{children:e(Ee,{value:Fe(u),onChange:function(e){var n=e.toISOString().split("T")[0];r(n),a(!1),t()},onClose:l})}))},Le=function(n){var t=n.onBlur,r=n.onChange,o=n.open,a=n.options,u=n.setOpen,l=i(n.value||""),c=l[0],s=l[1];return e(be,x({open:o,onClose:function(){t()},setOpen:u,width:150},{children:e("div",x({className:"st-enum-dropdown-content"},{children:a.map(function(n){return e(xe,x({isSelected:c===n.value,onClick:function(){return s(e=n.value),r(e),u(!1),void t();var e}},{children:n.label}),n.value)})}))}))},We=function(n){var t=n.enumOptions,r=void 0===t?[]:t,o=n.onChange,i=n.setIsEditing,a=n.type,u=void 0===a?"string":a,l=n.value,c=function(){i(!1)};return"boolean"===u&&"boolean"==typeof l?e(ye,{onBlur:c,onChange:function(e){return o(e)},open:!0,setOpen:i,value:l}):"date"===u?e(Oe,{onBlur:c,onChange:o,open:!0,setOpen:i,value:l}):"enum"===u?e(Le,{onBlur:c,onChange:o,open:!0,options:r,setOpen:i,value:"string"==typeof l?l:""}):"number"===u&&"number"==typeof l?e(Ce,{defaultValue:l,onBlur:c,onChange:function(e){var n=""===e?0:parseFloat(e);o(isNaN(n)?0:n)}}):e(Ie,{defaultValue:null==l?"":l+"",onBlur:c,onChange:o})},Be=0,qe=function(){return function(e){var n=e.callback,t=e.callbackProps,r=e.limit,o=Date.now();0!==Be&&r>o-Be||(Be=o,n(t))}},Ge=function(e){var n=a(e);return o(function(){JSON.stringify(n.current)!==JSON.stringify(e)&&(n.current=e)},[e]),n.current},ze=function(e){if(null===e||"object"!=typeof e)return e;if(Array.isArray(e))return e.map(ze);var n={};for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(n[t]=ze(e[t]));return n},Ke=function(e,n){return e.filter(function(e){return e.pinned===n}).some(function(e){return!e.hide})},je=Date.now(),Ve={screenX:0,screenY:0},_e=function(e,n,t){void 0===t&&(t=[]);for(var r=0;e.length>r;r++){var o=e[r];if(o.accessor===n)return R(R([],t,!0),[r],!1);if(o.children&&o.children.length>0){var i=_e(o.children,n,R(R([],t,!0),[r],!1));if(i)return i}}return null},Ue=function(e){return"left"===e.pinned?"left":"right"===e.pinned?"right":"main"};var Je=function(e){var n=e.draggedHeaderRef,t=e.headers,r=e.hoveredHeaderRef,o=e.onColumnOrderChange,i=e.onTableHeaderDragEnd,a=ue().setHeaders,u=Ge(t);return{handleDragStart:function(e){n.current=e,je=Date.now()},handleDragOver:function(e){var o=e.event,a=e.hoveredHeader;if(o.preventDefault(),t&&n.current){var l=o.currentTarget.getAnimations().some(function(e){return"running"===e.playState}),c=o.screenX,s=o.screenY,d=Math.sqrt(Math.pow(c-Ve.screenX,2)+Math.pow(s-Ve.screenY,2));r.current=a;var f,v,h,p=n.current,w=!1;if(Ue(p)!==Ue(a))f=(S=function(e,n,t){var r,o,i=ze(e),a=!1;try{var u=Ue(t),l=i.findIndex(function(e){return e.accessor===n.accessor}),c=i.findIndex(function(e){return e.accessor===t.accessor});if(-1===l||-1===c)return{newHeaders:i,emergencyBreak:a=!0};var s=i.splice(l,1)[0],d=(r=u,o=x({},s),"left"===r?o.pinned="left":"right"===r?o.pinned="right":delete o.pinned,o);i.splice(c,0,d)}catch(e){console.error("Error in insertHeaderAcrossSections:",e),a=!0}return{newHeaders:i,emergencyBreak:a}}(t,p,a)).newHeaders,w=S.emergencyBreak;else{var m=t,g=_e(m,p.accessor),b=_e(m,a.accessor);if(!g||!b)return;var y=g.length,I=b.length,C=b;if(y!==I){var R=I-y;R>0&&(C=b.slice(0,-R))}if((v=g).length!==(h=C).length||1!==v.length&&!v.slice(0,-1).every(function(e,n){return e===h[n]}))return;var S=function(e,n,t){var r=ze(e),o=!1;function i(e,n){for(var t=e,r=0;n.length-1>r;r++)t=t[n[r]].children;return t[n[n.length-1]]}function a(e,n,t){for(var r=e,i=0;n.length-1>i;i++){if(!r[n[i]].children){o=!0;break}r=r[n[i]].children}r[n[n.length-1]]=t}var u=i(r,n);return a(r,n,i(r,t)),a(r,t,u),{newHeaders:r,emergencyBreak:o}}(m,g,C);f=S.newHeaders,w=S.emergencyBreak}if(!(l||a.accessor===p.accessor||10>d||JSON.stringify(f)===JSON.stringify(t)||w)){var M=Date.now();JSON.stringify(f)===JSON.stringify(u)&&(1500>M-je||40>d)||(je=M,Ve={screenX:c,screenY:s},i(f))}}},handleDragEnd:function(){n.current=null,r.current=null,setTimeout(function(){a(function(e){return R([],e,!0)}),null==o||o(t)},10)}}},Xe=function(n){var r=n.checked,o=void 0!==r&&r,i=n.children,a=n.onChange;return t("label",x({className:"st-checkbox-label"},{children:[e("input",{checked:o,className:"st-checkbox-input",onChange:function(){a&&a(!o)},onKeyDown:function(e){" "===e.key&&e.stopPropagation()},type:"checkbox","aria-label":n.ariaLabel,"aria-checked":o}),e("span",x({className:"st-checkbox-custom ".concat(o?"st-checked":""),"aria-hidden":"true"},{children:o&&e(he,{className:"st-checkbox-checkmark"})})),i]}))},Ye=function(n){var t,r=n.content,o=n.header;return o.valueFormatter?o.valueFormatter({accessor:o.accessor,colIndex:n.colIndex,row:n.row,rowIndex:n.rowIndex,value:r}):"lineAreaChart"===o.type&&Array.isArray(r)?(t=r.filter(function(e){return"number"==typeof e})).length>0?e(Te,x({data:t},o.chartOptions)):null:"barChart"===o.type&&Array.isArray(r)?(t=r.filter(function(e){return"number"==typeof e})).length>0?e(ke,x({data:t},o.chartOptions)):null:"boolean"==typeof r?r?"True":"False":Array.isArray(r)?0===r.length?"[]":r.map(function(e){return"object"==typeof e&&null!==e?JSON.stringify(e):e+""}).join(", "):"date"===o.type&&null!==r&&("string"==typeof r||"number"==typeof r||"object"==typeof r&&r instanceof Date)?De(r).toLocaleDateString("en-US",{year:"numeric",month:"short",day:"numeric"}):r},$e=r.memo(function(r){var c=r.borderClass,s=r.colIndex,d=r.displayRowNumber,f=r.header,v=r.isHighlighted,h=r.isInitialFocused,p=r.nestedIndex,w=r.parentHeader,m=r.rowIndex,g=r.tableRow,b=ue(),y=b.canExpandRowGroup,I=b.cellRegistry,C=b.cellUpdateFlash,R=b.collapsedRows,S=b.columnBorders,M=b.draggedHeaderRef,N=b.enableRowSelection,H=b.expandedDepths,E=b.expandedRows,T=b.expandIcon,k=b.handleMouseDown,A=b.handleMouseOver,D=b.handleRowSelect,O=b.headers,L=b.hoveredHeaderRef,W=b.isCopyFlashing,B=b.isLoading,q=b.isRowSelected,G=b.isWarningFlashing,z=b.onCellEdit,U=b.onCellClick,X=b.onRowGroupExpand,Y=b.onTableHeaderDragEnd,$=b.rowButtons,Z=b.rowGrouping,Q=b.setCollapsedRows,ee=b.setExpandedRows,ne=b.setRowStateMap,te=b.rowsWithSelectedCells,re=b.selectedColumns,oe=b.tableBodyContainerRef,ie=b.theme,ae=b.useOddColumnBackground,le=g.depth,ce=g.row,se=g.rowPath,de=g.rowIndexPath,fe=g.absoluteRowIndex,ve=i(K(ce,f.accessor)),he=ve[0],pe=ve[1],we=i(!1),me=we[0],ge=we[1],be=i(!1),xe=be[0],ye=be[1],Ie=i(!1),Ce=Ie[0],Re=Ie[1],Se=a(null),Me=_(se||[fe]),Ne=Z&&Z[le],Ee=!!Ne&&function(e,n){return!!n&&V(e[n])}(ce,Ne),Te=Z&&Z.length>le,ke=!y||y(ce),Ae=!!f.nestedTable,Pe=J(Me,le,H,E,R),De=W({rowIndex:m,colIndex:s,rowId:Me}),Fe=G({rowIndex:m,colIndex:s,rowId:Me}),Oe=u(function(){var e,n,t;if(!S)return!1;var r=O.filter(function(e){return"left"===e.pinned}),o=O.filter(function(e){return!e.pinned}),i=O.filter(function(e){return"right"===e.pinned});return"left"===f.pinned?(null===(e=r[r.length-1])||void 0===e?void 0:e.accessor)===f.accessor:"right"===f.pinned?(null===(n=i[i.length-1])||void 0===n?void 0:n.accessor)===f.accessor:(null===(t=o[o.length-1])||void 0===t?void 0:t.accessor)===f.accessor},[S,O,f.accessor,f.pinned]),Le=Je({draggedHeaderRef:M,headers:O,hoveredHeaderRef:L,onTableHeaderDragEnd:Y}).handleDragOver,Be=qe(),Ge=P({accessor:f.accessor,rowId:Me}),ze=F({rowId:Me,accessor:f.accessor}),Ke=f.isSelectionColumn&&N;o(function(){if(I){var e="".concat(Me,"-").concat(f.accessor);return I.set(e,{updateContent:function(e){he!==e?(pe(e),C&&(ye(!0),Se.current&&clearTimeout(Se.current),Se.current=setTimeout(function(){ye(!1)},800))):pe(e)}}),function(){I.delete(e),Se.current&&clearTimeout(Se.current)}}},[I,C,Me,f.accessor,he]),o(function(){if(xe){var e=setTimeout(function(){ye(!1)},850);return function(){return clearTimeout(e)}}},[xe]),o(function(){pe(K(ce,f.accessor))},[ce,f.accessor]);var je="boolean"===f.type||"date"===f.type||"enum"===f.type,Ve=!!(null==f?void 0:f.isEditable),_e=re.has(s),Ue=v&&!_e,$e=u(function(){return!!Ke&&te.has(Me+"")},[Ke,te,Me]),Ze=null==w?void 0:w.singleRowChildren,Qe="st-cell ".concat(le>0&&f.expandable?"st-cell-depth-".concat(le):""," ").concat(Ue?h?"st-cell-selected-first ".concat(c):"st-cell-selected ".concat(c):""," ").concat(_e?h?"st-cell-column-selected-first":"st-cell-column-selected":""," ").concat(Ve?"clickable":""," ").concat(xe?h?"st-cell-updating-first":"st-cell-updating":""," ").concat(De?h?"st-cell-copy-flash-first":"st-cell-copy-flash":""," ").concat(Fe?h?"st-cell-warning-flash-first":"st-cell-warning-flash":""," ").concat(ae?p%2==0?"even-column":"odd-column":""," ").concat(Ke?"st-selection-cell":""," ").concat($e?"st-selection-has-highlighted-cell":""," ").concat(Oe?"st-last-column":""," ").concat(Ze?"st-sub-cell":""," ").concat(Ce?"hovered":""),en=l(function(e){null==e&&(e="number"===f.type?0:"boolean"!==f.type&&""),pe(e),j(ce,f.accessor,e),null==z||z({accessor:f.accessor,newValue:e,row:ce,rowIndex:m})},[f.accessor,f.type,z,ce,m]),nn=l(function(e){e.stopPropagation();var n=J(Me,le,H,E,R),t=Me+"";if(n?(Q(function(e){var n=new Map(e);return n.set(t,le),n}),ee(function(e){var n=new Map(e);return n.delete(t),n})):(ee(function(e){var n=new Map(e);return n.set(t,le),n}),Q(function(e){var n=new Map(e);return n.delete(t),n})),n&&ne(function(e){var n=new Map(e);return n.delete(Me),n}),X){var r=f.pinned;X({depth:le,event:e,groupingKey:Ne,groupingKeys:Z||[],isExpanded:!n,row:ce,rowIndexPath:de||[],rowIdPath:se,setEmpty:function(e,n){ne(function(t){var o=new Map(t),i=o.get(Me)||{};return o.set(Me,x(x({},i),{isEmpty:e,emptyMessage:n,loading:!1,error:null,triggerSection:r})),o})},setError:function(e){ne(function(n){var t=new Map(n),o=t.get(Me)||{};return t.set(Me,x(x({},o),{error:e,loading:!1,isEmpty:!1,triggerSection:r})),t})},setLoading:function(e){e?ne(function(e){var n=new Map(e),t=n.get(Me)||{};return n.set(Me,x(x({},t),{loading:!0,error:null,isEmpty:!1,triggerSection:r})),n}):setTimeout(function(){ne(function(e){var n=new Map(e),t=n.get(Me)||{};return n.set(Me,x(x({},t),{loading:!1,error:null,isEmpty:!1,triggerSection:r})),n})},0)}})}},[R,Ne,le,H,E,f.pinned,X,ce,Z,Me,se,Q,ee,ne]);return B||g.isLoadingSkeleton?e("div",x({className:Qe},{children:e("span",x({className:"st-cell-content ".concat("right"===f.align?"right-aligned":"center"===f.align?"center-aligned":"left-aligned")},{children:e("div",{className:"st-loading-skeleton"})}))})):!me||je||Ke?t(He,x({className:Qe,"data-accessor":f.accessor,"data-col-index":s,"data-row-id":Me,"data-row-index":m,"aria-colindex":s+1,id:Ge,onClick:function(){U&&!Ke&&U({accessor:f.accessor,colIndex:s,row:ce,rowIndex:m,value:he})},onDoubleClick:function(){return f.isEditable&&!Ke&&ge(!0)},onDragOver:function(e){Ke||Be({callback:Le,callbackProps:{event:e,hoveredHeader:f},limit:50})},onKeyDown:function(e){me||Ke||"F2"!==e.key&&"Enter"!==e.key||!f.isEditable||me||(e.preventDefault(),ge(!0))},onMouseDown:function(){me||Ke||k({rowIndex:m,colIndex:s,rowId:Me})},onMouseEnter:function(){Re(!0)},onMouseLeave:function(){Re(!1)},onMouseOver:function(){me||Ke||A({rowIndex:m,colIndex:s,rowId:Me})},parentRef:oe,tableRow:g},{children:[f.expandable&&Te?e("div",x({className:"st-icon-container st-expand-icon-container ".concat(ke&&(Ee||X||Ae)?Pe?"expanded":"collapsed":"placeholder"),onClick:ke&&(Ee||X||Ae)?function(e){return nn(e)}:void 0,role:ke&&(Ee||X||Ae)?"button":"presentation",tabIndex:ke&&(Ee||X||Ae)?0:-1,"aria-label":ke&&(Ee||X||Ae)?"".concat(Pe?"Collapse":"Expand"," row group"):void 0,"aria-expanded":ke&&(Ee||X||Ae)?Pe:void 0,"aria-hidden":!(ke&&(Ee||X||Ae)),onKeyDown:ke&&(Ee||X||Ae)?function(e){"Enter"!==e.key&&" "!==e.key||(e.preventDefault(),nn(e))}:void 0},{children:T})):null,e("span",x({className:"st-cell-content ".concat("right"===f.align?"right-aligned":"center"===f.align?"center-aligned":"left-aligned")},{children:B||g.isLoadingSkeleton?e("div",{className:"st-loading-skeleton"}):e(n,{children:Ke?t("div",x({className:"st-selection-cell-content"},{children:[e("div",x({className:"st-selection-control"},{children:Ce||q&&q(Me+"")?e(Xe,{checked:!!q&&q(Me+""),onChange:function(e){D&&D(Me+"",e)},ariaLabel:"Select row ".concat(d+1)}):e("span",x({className:"st-row-number"},{children:d+1}))})),function(){if(!$||!Ke||0===$.length)return null;if(!(Ce||q&&q(Me+"")))return null;var n={row:ce,rowIndex:d};return e("div",x({className:"st-row-buttons",role:"group","aria-label":"Actions for row ".concat(d+1)},{children:$.map(function(t,r){return e("span",x({className:"st-row-button"},{children:t(n)}),r)})}))}()]})):f.cellRenderer?function(){var e;return f.cellRenderer({accessor:f.accessor,colIndex:s,row:ce,rowIndex:fe,rowPath:se,theme:ie,value:he,formattedValue:null===(e=null==f?void 0:f.valueFormatter)||void 0===e?void 0:e.call(f,{accessor:f.accessor,colIndex:s,row:ce,rowIndex:m,value:he})})}():Ye({content:he,header:f,colIndex:s,row:ce,rowIndex:m})})})),!B&&!g.isLoadingSkeleton&&me&&je&&!Ke&&e(We,{enumOptions:f.enumOptions,onChange:en,setIsEditing:ge,type:f.type,value:he})]}),ze):e("div",x({className:"st-cell-editing",id:P({accessor:f.accessor,rowId:Me}),onMouseDown:function(e){return e.stopPropagation()},onKeyDown:function(e){return e.stopPropagation()}},{children:e(We,{enumOptions:f.enumOptions,onChange:en,setIsEditing:ge,type:f.type,value:he})}))},function(e,n){if(e.rowIndex!==n.rowIndex||e.colIndex!==n.colIndex||e.isHighlighted!==n.isHighlighted||e.isInitialFocused!==n.isInitialFocused||e.borderClass!==n.borderClass)return!1;if(e.tableRow!==n.tableRow){if(e.tableRow.row!==n.tableRow.row)return!1;if(e.tableRow.position!==n.tableRow.position||e.tableRow.displayPosition!==n.tableRow.displayPosition)return!1}return(e.header===n.header||e.header.accessor===n.header.accessor&&e.header.isEditable===n.header.isEditable&&e.header.type===n.header.type&&e.header.cellRenderer===n.header.cellRenderer&&e.header.valueFormatter===n.header.valueFormatter)&&e.parentHeader===n.parentHeader&&e.displayRowNumber===n.displayRowNumber&&e.nestedIndex===n.nestedIndex}),Ze=function(n){var r=n.columnIndices,o=n.displayRowNumber,i=n.header,a=n.headers,u=n.nestedIndex,l=n.parentHeader,c=n.pinned,s=n.rowIndex,d=n.rowIndices,f=n.tableRow,h=r[i.accessor],p=ue(),w=p.getBorderClass,m=p.isSelected,g=p.isInitialFocusedCell,b=p.collapsedHeaders,x=_(f.rowPath||[f.position]);if(i.children&&i.children.length>0){var y=i.children.filter(function(e){return D({header:e,pinned:c,headers:a,collapsedHeaders:b})});if(i.singleRowChildren){var I={rowIndex:s,colIndex:h,rowId:x},C=w(I),R=m(I),S=g(I),M=P({accessor:i.accessor,rowId:x});return t(v,{children:[e($e,{borderClass:C,colIndex:h,displayRowNumber:o,header:i,isHighlighted:R,isInitialFocused:S,nestedIndex:u,parentHeader:l,rowIndex:s,tableRow:f},M),y.map(function(n){var t=P({accessor:n.accessor,rowId:x});return e(Ze,{columnIndices:r,displayRowNumber:o,header:n,headers:a,nestedIndex:u,parentHeader:i,pinned:c,rowIndex:s,rowIndices:d,tableRow:f},t)})]})}return e(v,{children:y.map(function(n){var t=P({accessor:n.accessor,rowId:x});return e(Ze,{columnIndices:r,displayRowNumber:o,header:n,headers:a,nestedIndex:u,parentHeader:i,pinned:c,rowIndex:s,rowIndices:d,tableRow:f},t)})})}var N={rowIndex:s,colIndex:h,rowId:x},H=w(N),E=m(N),T=g(N),k=P({accessor:i.accessor,rowId:x});return e($e,{borderClass:H,colIndex:h,displayRowNumber:o,header:i,isHighlighted:E,isInitialFocused:T,nestedIndex:u,parentHeader:l,rowIndex:s,tableRow:f},k)},Qe=r.memo(function(t){var r=t.columnIndexStart,o=t.columnIndices,i=t.headers,a=t.pinned,u=t.rowIndex,l=t.displayRowNumber,c=t.rowIndices,s=t.tableRow,d=ue().collapsedHeaders,f=i.filter(function(e){return D({header:e,pinned:a,headers:i,collapsedHeaders:d})});return e(n,{children:f.map(function(n,t){var d=_(s.rowPath||[s.position]),f=P({accessor:n.accessor,rowId:d});return e(Ze,{columnIndices:o,displayRowNumber:l,header:n,headers:i,nestedIndex:t+(null!=r?r:0),pinned:a,rowIndex:u,rowIndices:c,tableRow:s},f)})})},function(e,n){return e.rowIndex===n.rowIndex&&e.displayRowNumber===n.displayRowNumber&&e.columnIndexStart===n.columnIndexStart&&(e.tableRow===n.tableRow||e.tableRow.row===n.tableRow.row)&&e.pinned===n.pinned&&e.headers===n.headers&&e.columnIndices===n.columnIndices&&e.rowIndices===n.rowIndices}),en=function(n){var t=n.rowState,r=n.loadingStateRenderer,o=n.errorStateRenderer,i=n.emptyStateRenderer,a=null;return t.loading&&r?a=r:t.error&&o?a=o:t.isEmpty&&i&&(a=i),a?e("div",x({className:"st-cell st-state-row-cell",style:{gridColumn:"1 / -1",padding:0}},{children:a})):null},nn=function(n){var t=n.calculatedHeight,r=n.childAccessor,o=n.depth,i=n.expandableHeader,a=n.index,u=n.parentRow,l=n.position,c=ue(),s=c.theme,d=c.rowGrouping,f=c.rowHeight,v=c.heightOffsets,h=c.customTheme,p=c.loadingStateRenderer,w=c.errorStateRenderer,m=c.emptyStateRenderer,g=c.expandIcon,b=c.filterIcon,y=c.sortUpIcon,I=c.sortDownIcon,C=c.nextIcon,R=c.prevIcon,S=c.headerCollapseIcon,M=c.headerExpandIcon,N=i.nestedTable;if(!N)return null;var H=K(u,r),E=Array.isArray(H)?H:[],T=d&&d[o+1]?null==d?void 0:d.slice(o+1):void 0,k=t-h.nestedGridPaddingTop-h.nestedGridPaddingBottom,A=N.customTheme?x(x({},h),N.customTheme):h;return e("div",x({className:"st-row st-nested-grid-row","data-index":a,style:{transform:"translate3d(0, ".concat(ne({position:l,rowHeight:f,heightOffsets:v,customTheme:h}),"px, 0)"),height:"".concat(t,"px"),paddingTop:"".concat(h.nestedGridPaddingTop,"px"),paddingBottom:"".concat(h.nestedGridPaddingBottom,"px")}},{children:e(dt,x({},N,{rows:E,theme:s,customTheme:A,height:"".concat(k,"px"),rowGrouping:T,loadingStateRenderer:p,errorStateRenderer:w,emptyStateRenderer:m,expandIcon:g,filterIcon:b,sortUpIcon:y,sortDownIcon:I,nextIcon:C,prevIcon:R,headerCollapseIcon:S,headerExpandIcon:M}))}))},tn=r.memo(function(n){var t=n.columnIndices,r=n.columnIndexStart,o=n.gridTemplateColumns,i=n.headers,a=n.index,u=n.pinned,l=n.rowHeight,c=n.rowIndices,s=n.setHoveredIndex,d=n.tableRow,f=ue(),v=f.customTheme,h=f.emptyStateRenderer,p=f.errorStateRenderer,w=f.heightOffsets,m=f.isAnimating,g=f.isRowSelected,b=f.loadingStateRenderer,y=f.maxHeaderDepth,I=f.rows,C=f.useHoverRowBackground,R=f.useOddEvenRowBackground,S=d.position,M=d.displayPosition,N=d.stateIndicator,H=d.nestedTable;if(H)return u?e("div",{className:"st-row st-nested-grid-spacer","data-index":a,style:{gridTemplateColumns:o,transform:"translate3d(0, ".concat(ne({position:S,rowHeight:l,heightOffsets:w,customTheme:v}),"px, 0)"),height:"".concat(H.calculatedHeight,"px")}}):e(nn,{calculatedHeight:H.calculatedHeight,childAccessor:H.childAccessor,depth:d.depth-1,expandableHeader:H.expandableHeader,index:a,parentRow:H.parentRow,position:S});if(N){if(N.state.triggerSection===u){if(!(N.state.loading&&b||N.state.error&&p||N.state.isEmpty&&h))return e("div",{className:"st-row st-state-row-spacer","data-index":a,style:{gridTemplateColumns:o,transform:"translate3d(0, ".concat(ne({position:S,rowHeight:l,heightOffsets:w,customTheme:v}),"px, 0)"),height:"".concat(l,"px")}});var E=I.find(function(e,n){return _([n])===N.parentRowId});return e("div",x({className:"st-row st-state-row","data-index":a,style:{gridTemplateColumns:o,transform:"translate3d(0, ".concat(ne({position:S,rowHeight:l,heightOffsets:w,customTheme:v}),"px, 0)"),height:"".concat(l,"px")}},{children:e(en,{parentRow:E||{},rowState:N.state,gridTemplateColumns:o,loadingStateRenderer:b,errorStateRenderer:p,emptyStateRenderer:h})}))}return e("div",{className:"st-row st-state-row-spacer","data-index":a,style:{gridTemplateColumns:o,transform:"translate3d(0, ".concat(ne({position:S,rowHeight:l,heightOffsets:w,customTheme:v}),"px, 0)"),height:"".concat(l,"px")}})}var T=S%2==0,k=_(d.rowPath||[d.position]),A=!!g&&g(k+"");return e("div",x({className:"st-row ".concat(R?T?"even":"odd":""," ").concat(A?"selected":""),"data-index":a,"aria-rowindex":S+y+1,onMouseEnter:function(){!m&&C&&s(a)},style:{gridTemplateColumns:o,top:ne({position:S,rowHeight:l,heightOffsets:w,customTheme:v}),height:"".concat(l,"px")}},{children:e(Qe,{columnIndexStart:r,columnIndices:t,displayRowNumber:M,headers:i,pinned:u,rowIndex:S,rowIndices:c,tableRow:d},k)}))},function(e,n){return e.index===n.index&&e.tableRow.position===n.tableRow.position&&e.tableRow.displayPosition===n.tableRow.displayPosition&&e.tableRow.row===n.tableRow.row&&e.tableRow.stateIndicator===n.tableRow.stateIndicator&&e.rowHeight===n.rowHeight&&e.gridTemplateColumns===n.gridTemplateColumns&&e.pinned===n.pinned&&e.headers===n.headers&&e.columnIndices===n.columnIndices&&e.rowIndices===n.rowIndices&&e.columnIndexStart===n.columnIndexStart}),rn=function(n){var t=n.displayStrongBorder,r=n.position,o=n.rowHeight,i=n.templateColumns,u=ue(),l=u.heightOffsets,c=u.customTheme,s=a(null);return e("div",x({className:"st-row-separator ".concat(t?"st-last-group-row":""),onMouseDown:function(e){var n=e.currentTarget,t=n.style.pointerEvents;n.style.pointerEvents="none";var r=document.elementFromPoint(e.clientX,e.clientY);if(n.style.pointerEvents=t,r){var o=r.closest(".st-cell");if(o instanceof HTMLElement){s.current=o;var i=o.getBoundingClientRect(),a=new MouseEvent("mousedown",{bubbles:!0,cancelable:!0,view:window,button:0,clientX:e.clientX,clientY:i.top+i.height/2});o.dispatchEvent(a)}}},onMouseUp:function(e){if(s.current){var n=s.current.getBoundingClientRect(),t=new MouseEvent("mouseup",{bubbles:!0,cancelable:!0,view:window,button:0,clientX:e.clientX,clientY:n.top+n.height/2});s.current.dispatchEvent(t),s.current=null}},style:{gridTemplateColumns:i,transform:"translate3d(0, ".concat(ee({position:r,rowHeight:o,heightOffsets:l,customTheme:c}),"px, 0)")}},{children:e("div",{style:{gridColumn:"1 / -1"}})}))},on=c(void 0),an=function(e){var n=e.childRef,t=e.children,r=e.group,i=void 0===r?"default":r,a=function(){var e=s(on);if(!e)throw Error("useScrollSyncContext must be used within a ScrollSyncProvider");return e}(),u=a.registerPane,l=a.unregisterPane;return o(function(){var e=[i];return n.current&&u(n.current,e),function(){n.current&&l(n.current,e)}},[n,u,l,i]),h(t,{ref:function(e){n.current=e}})},un=p(function(n,r){var o=n.columnIndexStart,i=n.columnIndices,l=n.headers,c=n.pinned,s=n.rowHeight,d=n.rowIndices,f=n.setHoveredIndex,h=n.templateColumns,p=n.totalHeight,m=n.rowsToRender,g=n.width,b=c?"st-body-pinned-".concat(c):"st-body-main",y=a(null);return w(r,function(){return y.current},[]),u(function(){return Ke(l,c)},[l,c])?e(an,x({childRef:y,group:c?"pinned-".concat(c):"default"},{children:e("div",x({className:b,ref:y,style:x({position:"relative",height:"".concat(p,"px"),width:g},!c&&{flexGrow:1})},{children:m.map(function(n,r){var a=n.stateIndicator?"state-".concat(n.stateIndicator.parentRowId,"-").concat(n.position):_(n.rowPath||[n.position]);return t(v,{children:[0!==r&&e(rn,{displayStrongBorder:n.isLastGroupRow,position:n.position,rowHeight:s,templateColumns:h}),e(tn,{columnIndexStart:o,columnIndices:i,gridTemplateColumns:h,headers:l,index:r,pinned:c,rowHeight:s,rowIndices:d,setHoveredIndex:f,tableRow:n})]},a)})}))})):null});function ln(e){var n=e.headers,t=e.pinnedLeftColumns,r=e.pinnedRightColumns,o=e.collapsedHeaders,i={},a=0,u=R(R(R([],t,!0),n,!0),r,!0),l=function(e,n){void 0===n&&(n=!1),n||a++,i[e.accessor]=a,e.children&&e.children.length>0&&e.children.filter(function(e){return D({header:e,headers:u,collapsedHeaders:o})}).forEach(function(n,t){l(n,!e.singleRowChildren&&0===t)})};return t.forEach(function(e,n){l(e,0===n)}),n.filter(function(e){return!e.pinned&&D({header:e,headers:u,collapsedHeaders:o})}).forEach(function(e,n){l(e,0===n&&0===t.length)}),r.forEach(function(e){l(e,!1)}),i}un.displayName="TableSection";var cn=function(r){var c=r.mainTemplateColumns,s=r.pinnedLeftColumns,d=r.pinnedLeftTemplateColumns,f=r.pinnedLeftWidth,v=r.pinnedRightColumns,h=r.pinnedRightTemplateColumns,p=r.pinnedRightWidth,w=r.rowsToRender,m=r.setScrollTop,g=r.setScrollDirection,b=r.shouldShowEmptyState,y=r.tableRows,I=ue(),C=I.collapsedHeaders,R=I.headerContainerRef,S=I.headers,M=I.heightOffsets,N=I.isAnimating,H=I.mainBodyRef,E=I.onLoadMore,T=I.rowHeight,k=I.scrollbarWidth,A=I.setIsScrolling,P=I.shouldPaginate,D=I.tableBodyContainerRef,F=I.tableEmptyStateRenderer,O=I.customTheme,L=i(!1),W=L[0],B=L[1],q=a(new Set),G=l(function(e){if(document.querySelectorAll(".st-row.hovered").forEach(function(e){e.classList.remove("hovered")}),q.current.clear(),null!==e&&D.current){var n=D.current;n.querySelectorAll('.st-row[data-index="'.concat(e,'"]:not(.st-nested-grid-row)')).forEach(function(e){var t=e;t.closest(".st-body-container")===n&&(t.classList.add("hovered"),q.current.add(t))})}},[D]);o(function(){N&&G(null)},[N,G]),ge({headerContainerRef:R,mainSectionRef:D,scrollbarWidth:k}),o(function(){return function(){K.current&&clearTimeout(K.current)}},[]);var z=a(null),K=a(null),j=a(0),V=function(e){return e.length}(y),U=u(function(){return function(e,n,t,r){return e*(n+r.rowSeparatorWidth)-r.rowSeparatorWidth+((null==t?void 0:t.reduce(function(e,n){return e+n[1]},0))||0)}(V,T,M,O)},[V,T,M,O]),J=u(function(){return ln({headers:S,pinnedLeftColumns:s,pinnedRightColumns:v,collapsedHeaders:C})},[S,s,v,C]),X=u(function(){var e={};return w.forEach(function(n,t){var r=_(n.rowPath||[n.position])+"";e[r]=t}),e},[w]),Y=l(function(e,n){!E||P||W||200>=e.scrollHeight-(n+e.clientHeight)&&n>j.current&&(B(!0),E(),setTimeout(function(){B(!1)},1e3))},[E,P,W]),$={columnIndices:J,headerContainerRef:R,headers:S,rowHeight:T,rowIndices:X,rowsToRender:w,setHoveredIndex:G};return e("div",x({className:"st-body-container",onMouseLeave:function(){return G(null)},onScroll:function(e){var n=e.currentTarget,t=n.scrollTop;A(!0),K.current&&clearTimeout(K.current),K.current=setTimeout(function(){A(!1)},150),z.current&&cancelAnimationFrame(z.current),z.current=requestAnimationFrame(function(){var e=j.current,r=t>e?"down":e>t?"up":"none";m(t),g(r),Y(n,t),j.current=t})},ref:D},{children:b?e("div",x({className:"st-empty-state-wrapper"},{children:F})):t(n,{children:[e(un,x({},$,{pinned:"left",templateColumns:d,totalHeight:U,width:f})),e(un,x({},$,{columnIndexStart:s.length,ref:H,templateColumns:c,totalHeight:U})),e(un,x({},$,{columnIndexStart:s.length+c.length,pinned:"right",templateColumns:h,totalHeight:U,width:p}))]})}))},sn=function(e){var n=e.event,t=e.header,r=e.headers,o=e.setHeaders,i=e.setIsResizing,a=e.tableBodyContainerRef,u=e.startWidth,l=e.collapsedHeaders,c=e.autoExpandColumns,s=void 0!==c&&c,d=e.reverse,f=void 0!==d&&d;n.preventDefault();var v="clientX"in n?n.clientX:n.touches[0].clientX,h="touches"in n;if(t&&!t.hide){i(!0);var p,w=B(t);if(t.children&&t.children.length>0){var m=O(t,l);p=m.length>0?m:[t]}else p=[t];var g=new Map,b=0;if(s){var x=r.filter(function(e){return e.pinned===t.pinned});if(q(x,l).forEach(function(e){var n="number"==typeof e.width?e.width:"string"==typeof e.width&&e.width.endsWith("px")?parseFloat(e.width):100;g.set(e.accessor,n)}),a.current){var y=a.current.clientWidth,I=fn({headers:r,containerWidth:y,collapsedHeaders:l}),C=I.leftWidth,S=I.rightWidth;b="left"===t.pinned?C:"right"===t.pinned?S:Math.max(0,y-C-S)}}var M=function(e){var n="right"===t.pinned?v-e:e-v;if(s){var i=r.filter(function(e){return e.pinned===t.pinned});hn({delta:n,startWidth:u,resizedHeader:p.length>0?p[0]:t,sectionHeaders:i,reverse:f,collapsedHeaders:l,initialWidthsMap:g,sectionWidth:b,isParentResize:p.length>1,childrenToResize:p})}else{var a=function(e){var n=e.header,t=e.headers,r=e.collapsedHeaders,o=document.querySelector(".st-body-container");if(!o||0===o.clientWidth)return 1e3;var i=o.clientWidth,a=H(window.innerWidth);if(!n.pinned)return 1/0;var u=i*a-t.filter(function(e){return e.pinned===n.pinned&&e.accessor!==n.accessor}).reduce(function(e,n){return n.hide?e:e+O(n,r).reduce(function(e,n){return e+L(n)},0)},0),l=B(n);return l>u?(console.warn("Header ".concat(n.accessor," exceeds pinned section width limit")),l):u}({header:t,headers:r,collapsedHeaders:l});p.length>1?dn({delta:n,leafHeaders:p,minWidth:w,startWidth:u,maxWidth:a}):p[0].width=Math.max(Math.min(u+n,a),w),r.forEach(function(e){W(e)})}var c=R([],r,!0);o(c)};if(h){var N=function(e){M(e.touches[0].clientX)},E=function(){document.removeEventListener("touchmove",N),document.removeEventListener("touchend",E),i(!1)};document.addEventListener("touchmove",N),document.addEventListener("touchend",E)}else{var T=function(e){M(e.clientX)},k=function(){document.removeEventListener("mousemove",T),document.removeEventListener("mouseup",k),i(!1)};document.addEventListener("mousemove",T),document.addEventListener("mouseup",k)}}},dn=function(e){var n=e.delta,t=e.leafHeaders,r=e.minWidth,o=e.startWidth,i=e.maxWidth,a=t.reduce(function(e,n){return Math.min(e,B(n))},40),u=t.reduce(function(e,n){return e+("number"==typeof n.width?n.width:150)},0),l=Math.max(Math.min(o+n,i),a)-u;t.forEach(function(e){var n="number"==typeof e.width?e.width:150;e.width=Math.max(n+l*(n/u),r)})},fn=function(e){var n=e.containerWidth,t=e.maxPinnedWidthPercent,r=void 0===t?.8:t,o=e.collapsedHeaders,i=0,a=0,u=0;e.headers.forEach(function(e){if(!e.hide){var n=O(e,o).reduce(function(e,n){return e+L(n)},0);"left"===e.pinned?i+=n:"right"===e.pinned?a+=n:u+=n}});var l=i,c=a;if(n&&n>0){var s=n*r;i>s&&(i=s),a>s&&(a=s)}return{leftWidth:A(i),rightWidth:A(a),mainWidth:u,leftContentWidth:l,rightContentWidth:c}},vn=function(e){var n=e.columnsToShrink,t=e.totalCompensation,r=e.initialWidthsMap;if(0>t){var o=Math.abs(t),i=n.reduce(function(e,n){return e+(r.get(n.accessor)||100)},0);if(0===i)return;n.forEach(function(e,t){var a=r.get(e.accessor)||100,u=o*(a/i);if(t===n.length-1){var l=n.slice(0,t).reduce(function(e,n){var t=r.get(n.accessor)||100;return e+(("number"==typeof n.width?n.width:100)-t)},0);u=o-l}e.width=a+u})}else for(var a=t,u=function(){var e=n.map(function(e){var n=r.get(e.accessor)||100;return{column:e,headroom:Math.max(0,n-30),initialWidth:n,minWidth:30}}),t=e.filter(function(e){return e.headroom>0});if(t.length>0){var o=t.reduce(function(e,n){return e+n.headroom},0),i=0,u=a;t.forEach(function(e,n){var r=u*(e.headroom/o);r=Math.min(r,e.headroom),n===t.length-1&&(r=Math.min(u-i,e.headroom)),e.column.width=e.initialWidth-r,i+=r}),a-=i}else{var l=e.filter(function(e){return e.minWidth>N});if(0>=l.length)return"break";var c=a,s=c/l.length,d=0;l.forEach(function(e,n){var t=e.minWidth-N,r=Math.min(s,t);n===l.length-1&&(r=Math.min(c-d,t));var o=e.initialWidth-r;e.column.width=o,e.column.minWidth=Math.max(o,N),d+=r}),a-=d}};a>.5&&"break"!==u(););},hn=function(e){var n=e.delta,t=e.startWidth,r=e.resizedHeader,o=e.sectionHeaders,i=e.reverse,a=e.collapsedHeaders,u=e.initialWidthsMap,l=e.sectionWidth,c=e.isParentResize,s=e.childrenToResize,d=void 0===s?[]:s;if(void 0!==c&&c&&d.length>1){var f=q(o,a),v=f.findIndex(function(e){return e.accessor===d[0].accessor}),h=f.findIndex(function(e){return e.accessor===d[d.length-1].accessor});if(-1===v||-1===h)return;var p,w=h===f.length-1;p=0===v?f.slice(h+1):w||i?f.slice(0,v):f.slice(h+1);var m=Array.from(u.values()).reduce(function(e,n){return e+n},0);if(n>0){var g=n,b=!1;if(m+n>l){b=!0;var x=p.reduce(function(e,n){var t=u.get(n.accessor)||100;return e+Math.max(0,t-N)},0);g=Math.min(n,x)}var y=(I=t+g)/(C=d.reduce(function(e,n){return e+(u.get(n.accessor)||100)},0));d.forEach(function(e){var n=u.get(e.accessor)||100;e.width=Math.max(n*y,30)}),b&&g>0&&p.length>0&&vn({columnsToShrink:p,totalCompensation:g,initialWidthsMap:u})}else{var I,C=d.reduce(function(e,n){return e+(u.get(n.accessor)||100)},0),R=(I=Math.max(t+n,N*d.length))/C;d.forEach(function(e){var n=u.get(e.accessor)||100;e.width=Math.max(n*R,30)}),(P=t-I)>0&&p.length>0&&vn({columnsToShrink:p,totalCompensation:-P,initialWidthsMap:u})}}else{var S=q(o,a),M=S.findIndex(function(e){return e.accessor===r.accessor});if(-1!==M){var H,E=M===S.length-1;if(0!==(H=0===M?S.slice(M+1):E||i?S.slice(0,M):S.slice(M+1)).length){var T=Array.from(u.values()).reduce(function(e,n){return e+n},0);if(n>0){if(l>=T+n)return void(r.width=t+n);x=H.reduce(function(e,n){var t=u.get(n.accessor)||100;return e+Math.max(0,t-N)},0);var k=Math.min(n,x);r.width=t+k,k>0&&vn({columnsToShrink:H,totalCompensation:k,initialWidthsMap:u})}else{var A=Math.max(t+n,30),P=t-A;r.width=A,P>0&&vn({columnsToShrink:H,totalCompensation:-P,initialWidthsMap:u})}}else r.width=Math.max(t+n,30)}}},pn={equals:"Equals",notEquals:"Not equals",contains:"Contains",notContains:"Does not contain",startsWith:"Starts with",endsWith:"Ends with",greaterThan:"Greater than",lessThan:"Less than",greaterThanOrEqual:"Greater than or equal",lessThanOrEqual:"Less than or equal",between:"Between",notBetween:"Not between",before:"Before",after:"After",in:"Is one of",notIn:"Is not one of",isEmpty:"Is empty",isNotEmpty:"Is not empty"},wn=function(e){switch(e){case"string":return["equals","notEquals","contains","notContains","startsWith","endsWith","isEmpty","isNotEmpty"];case"number":return["equals","notEquals","greaterThan","lessThan","greaterThanOrEqual","lessThanOrEqual","between","notBetween","isEmpty","isNotEmpty"];case"boolean":return["equals","isEmpty","isNotEmpty"];case"date":return["equals","notEquals","before","after","between","notBetween","isEmpty","isNotEmpty"];case"enum":return["in","notIn","isEmpty","isNotEmpty"];default:return["equals","notEquals","isEmpty","isNotEmpty"]}},mn=function(e){return!["between","notBetween","in","notIn","isEmpty","isNotEmpty"].includes(e)},gn=function(e){return["between","notBetween","in","notIn"].includes(e)},bn=function(e){return["isEmpty","isNotEmpty"].includes(e)},xn=function(n){return e("div",x({className:"st-filter-container"},{children:n.children}))},yn=function(n){var r=n.value,u=n.onChange,l=n.options,c=n.placeholder,s=void 0===c?"Select...":c,d=n.className,f=void 0===d?"":d,v=n.disabled,h=void 0!==v&&v,p=i(!1),w=p[0],m=p[1],g=i(-1),b=g[0],y=g[1],I=a(null),C=l.find(function(e){return e.value===r});o(function(){var e=function(e){if(w)switch(e.key){case"ArrowDown":e.preventDefault(),y(function(e){return l.length-1>e?e+1:0});break;case"ArrowUp":e.preventDefault(),y(function(e){return e>0?e-1:l.length-1});break;case"Enter":e.preventDefault(),0>b||(u(l[b].value),m(!1),y(-1));break;case"Escape":e.preventDefault(),m(!1),y(-1)}};if(w)return document.addEventListener("keydown",e),function(){return document.removeEventListener("keydown",e)}},[w,b,l,u]);var R=function(e){u(e),m(!1),y(-1)};return t("div",x({ref:I,className:"st-custom-select ".concat(f," ").concat(h?"st-custom-select-disabled":""," ").concat(w?"st-custom-select-open":"").trim()},{children:[t("button",x({type:"button",className:"st-custom-select-trigger",onClick:function(){if(!h)if(m(!w),w)y(-1);else{var e=l.findIndex(function(e){return e.value===r});y(0>e?0:e)}},disabled:h,"aria-haspopup":"listbox","aria-expanded":w,"aria-labelledby":"select-label"},{children:[e("span",x({className:"st-custom-select-value"},{children:C?C.label:s})),e(me,{})]})),e(be,x({open:w,setOpen:m,onClose:function(){m(!1),y(-1)},positioning:"absolute",overflow:"auto"},{children:e("div",x({className:"st-custom-select-options",role:"listbox"},{children:l.map(function(n,t){return e("div",x({className:"st-custom-select-option ".concat(n.value===r?"st-custom-select-option-selected":""," ").concat(t===b?"st-custom-select-option-focused":"").trim(),role:"option","aria-selected":n.value===r,onClick:function(){return R(n.value)},tabIndex:0,onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||(e.preventDefault(),R(n.value))}},{children:n.label}),t)})}))}))]}))},In=function(n){var t=n.value,r=n.onChange,o=n.operators.map(function(e){return{value:e,label:pn[e]}});return e("div",x({className:"st-filter-section"},{children:e(yn,{value:t,onChange:function(e){r(e)},options:o})}))},Cn=function(n){var t=n.type,r=n.onChange,o=n.autoFocus,i=n.className,a=n.onEnterPress;return e("input",{type:void 0===t?"text":t,value:n.value,onChange:function(e){return r(e.target.value)},onKeyDown:function(e){"Enter"===e.key&&a&&a()},placeholder:n.placeholder,autoFocus:void 0!==o&&o,className:"st-filter-input ".concat(void 0===i?"":i).trim()})},Rn=function(n){var t=n.children,r=n.className;return e("div",x({className:"st-filter-section ".concat(void 0===r?"":r).trim()},{children:t}))},Sn=function(n){var r=n.onClear,o=n.canApply,i=n.showClear;return t("div",x({className:"st-filter-actions"},{children:[e("button",x({onClick:n.onApply,disabled:!o,className:"st-filter-button st-filter-button-apply ".concat(o?"":"st-filter-button-disabled"),tabIndex:0},{children:"Apply"})),i&&r&&e("button",x({onClick:r,className:"st-filter-button st-filter-button-clear",tabIndex:0},{children:"Clear"}))]}))},Mn=function(n){var r=n.header,a=n.currentFilter,u=n.onApplyFilter,l=n.onClearFilter,c=i((null==a?void 0:a.operator)||"contains"),s=c[0],d=c[1],f=i(((null==a?void 0:a.value)||"")+""),v=f[0],h=f[1],p=wn("string");o(function(){a?(d(a.operator),h((a.value||"")+"")):(d("contains"),h(""))},[a]);var w=function(){var e=x({accessor:r.accessor,operator:s},mn(s)&&{value:v});u(e)},m=bn(s)||v.trim();return t(xn,{children:[e(In,{value:s,onChange:d,operators:p}),mn(s)&&e(Rn,{children:e(Cn,{type:"text",value:v,onChange:h,placeholder:"Filter...",autoFocus:!0,onEnterPress:w})}),e(Sn,{onApply:w,onClear:l,canApply:!!m,showClear:!!a})]})},Nn=function(n){var r,a,u=n.header,l=n.currentFilter,c=n.onApplyFilter,s=n.onClearFilter,d=i((null==l?void 0:l.operator)||"equals"),f=d[0],v=d[1],h=i(((null==l?void 0:l.value)||"")+""),p=h[0],w=h[1],m=i(((null===(r=null==l?void 0:l.values)||void 0===r?void 0:r[0])||"")+""),g=m[0],b=m[1],x=i(((null===(a=null==l?void 0:l.values)||void 0===a?void 0:a[1])||"")+""),y=x[0],I=x[1],C=wn("number");o(function(){var e,n;l?(v(l.operator),w((l.value||"")+""),b(((null===(e=l.values)||void 0===e?void 0:e[0])||"")+""),I(((null===(n=l.values)||void 0===n?void 0:n[1])||"")+"")):(v("equals"),w(""),b(""),I(""))},[l]);var R=function(){var e={accessor:u.accessor,operator:f};mn(f)?e.value=parseFloat(p):gn(f)&&(e.values=[parseFloat(""+g),parseFloat(""+y)]),c(e)};return t(xn,{children:[e(In,{value:f,onChange:v,operators:C}),mn(f)&&e(Rn,{children:e(Cn,{type:"number",value:p,onChange:w,placeholder:"Enter number...",autoFocus:!0,onEnterPress:R})}),gn(f)&&t(Rn,{children:[e(Cn,{type:"number",value:g,onChange:b,placeholder:"From...",autoFocus:!0,className:"st-filter-input-range-from",onEnterPress:R}),e(Cn,{type:"number",value:y,onChange:I,placeholder:"To...",onEnterPress:R})]}),e(Sn,{onApply:R,onClear:s,canApply:!!bn(f)||(mn(f)?""!==p.trim():!!gn(f)&&""!==(g+"").trim()&&""!==(y+"").trim()),showClear:!!l})]})},Hn=function(n){var t=n.className;return e(yn,{value:n.value,onChange:n.onChange,options:n.options,className:void 0===t?"":t,placeholder:n.placeholder})},En=function(n){var r=n.header,a=n.currentFilter,u=n.onApplyFilter,l=n.onClearFilter,c=i((null==a?void 0:a.operator)||"equals"),s=c[0],d=c[1],f=i(void 0!==(null==a?void 0:a.value)?a.value+"":"true"),v=f[0],h=f[1],p=wn("boolean");o(function(){a?(d(a.operator),h(void 0!==a.value?a.value+"":"true")):(d("equals"),h("true"))},[a]);var w=bn(s)||""!==v;return t(xn,{children:[e(In,{value:s,onChange:d,operators:p}),mn(s)&&e(Rn,{children:e(Hn,{value:v,onChange:h,options:[{value:"true",label:"True"},{value:"false",label:"False"}]})}),e(Sn,{onApply:function(){var e={accessor:r.accessor,operator:s};mn(s)&&(e.value="true"===v),u(e)},onClear:l,canApply:w,showClear:!!a})]})},Tn=function(n){var r,u,l=n.header,c=n.currentFilter,s=n.onApplyFilter,d=n.onClearFilter,f=i((null==c?void 0:c.operator)||"equals"),v=f[0],h=f[1],p=i((null==c?void 0:c.value)?c.value+"":""),w=p[0],m=p[1],g=i((null===(r=null==c?void 0:c.values)||void 0===r?void 0:r[0])?c.values[0]+"":""),b=g[0],y=g[1],I=i(((null===(u=null==c?void 0:c.values)||void 0===u?void 0:u[1])||"")+""),C=I[0],R=I[1],S=wn("date");o(function(){var e,n;c?(h(c.operator),m((c.value||"")+""),y(((null===(e=c.values)||void 0===e?void 0:e[0])||"")+""),R(((null===(n=c.values)||void 0===n?void 0:n[1])||"")+"")):(h("equals"),m(""),y(""),R(""))},[c]);var M=function(n){var r=n.value,u=n.onChange,l=n.placeholder,c=n.autoFocus,s=n.className,d=i(!1),f=d[0],v=d[1],h=i(""),p=h[0],w=h[1],m=a(null);o(function(){if(r){var e=De(r);isNaN(e.getTime())||w(e.toLocaleDateString("en-US",{year:"numeric",month:"short",day:"numeric"}))}else w("")},[r]),o(function(){c&&m.current&&m.current.focus()},[c]);var g=r?De(r):new Date;return t("div",x({className:"st-date-input-container",style:{position:"relative"}},{children:[e("input",{ref:m,type:"text",value:p,placeholder:l,onClick:function(){v(!f)},onKeyDown:function(e){"Enter"===e.key||" "===e.key?(e.preventDefault(),v(!f)):"Escape"===e.key&&v(!1)},readOnly:!0,className:"st-filter-input ".concat(s||""),style:{cursor:"pointer"}}),e(be,x({open:f,setOpen:v,onClose:function(){v(!1)},positioning:"absolute",overflow:"hidden",width:240},{children:e(Ee,{value:g,onChange:function(e){var n=e.toISOString().split("T")[0];u(n),v(!1)},onClose:function(){return v(!1)}})}))]}))};return t(xn,{children:[e(In,{value:v,onChange:h,operators:S}),mn(v)&&e(Rn,{children:e(M,{value:w,onChange:m,placeholder:"Select date...",autoFocus:!0})}),gn(v)&&t(Rn,{children:[e(M,{value:b,onChange:y,placeholder:"From date...",autoFocus:!0,className:"st-filter-input-range-from"}),e(M,{value:C,onChange:R,placeholder:"To date..."})]}),e(Sn,{onApply:function(){var e={accessor:l.accessor,operator:v};mn(v)?e.value=w:gn(v)&&(e.values=[b,C]),s(e)},onClear:d,canApply:!!bn(v)||(mn(v)?""!==w.trim():!!gn(v)&&""!==b.trim()&&""!==C.trim()),showClear:!!c})]})},kn=function(n){var r=n.header,a=n.currentFilter,l=n.onApplyFilter,c=n.onClearFilter,s=u(function(){return r.enumOptions||[]},[r.enumOptions]),d=u(function(){return s.map(function(e){return e.value})},[s]),f=i((null==a?void 0:a.values)?a.values.map(String):d),v=f[0],h=f[1],p=i(""),w=p[0],m=p[1],g=u(function(){if(!w)return s;var e=w.toLowerCase();return s.filter(function(n){return n.label.toLowerCase().includes(e)})},[s,w]);o(function(){h(a?a.values?a.values.map(String):[]:d)},[a,d]);var b=s.length>10;return t(xn,{children:[e(Rn,{children:t("div",x({className:"st-enum-filter-options"},{children:[e("div",x({className:"st-enum-select-all"},{children:e(Xe,x({checked:v.length===d.length,onChange:function(e){h(e?d:[])}},{children:e("span",x({className:"st-enum-option-label st-enum-select-all-label"},{children:"Select All"}))}))})),b&&e("div",x({className:"st-enum-search"},{children:e(Cn,{type:"text",value:w,onChange:m,placeholder:"Search..."})})),g.map(function(n,t){return e(Xe,x({checked:v.includes(n.value),onChange:function(){return e=n.value,void h(function(n){return n.includes(e)?n.filter(function(n){return n!==e}):R(R([],n,!0),[e],!1)});var e}},{children:e("span",x({className:"st-enum-option-label"},{children:n.label}))}),t)}),w&&0===g.length&&e("div",x({className:"st-enum-no-results"},{children:"No matching options"}))]}))}),e(Sn,{onApply:function(){v.length!==d.length?l({accessor:r.accessor,operator:"in",values:v}):c()},onClear:c,canApply:0!==v.length&&v.length!==d.length,showClear:!!a})]})},An=function(t){var r=t.header,o=t.currentFilter,i=t.onApplyFilter,a=t.onClearFilter;return e(n,{children:function(){switch(r.type){case"number":return e(Nn,{header:r,currentFilter:o,onApplyFilter:i,onClearFilter:a});case"boolean":return e(En,{header:r,currentFilter:o,onApplyFilter:i,onClearFilter:a});case"date":return e(Tn,{header:r,currentFilter:o,onApplyFilter:i,onClearFilter:a});case"enum":return e(kn,{header:r,currentFilter:o,onApplyFilter:i,onClearFilter:a});default:return e(Mn,{header:r,currentFilter:o,onApplyFilter:i,onClearFilter:a})}}()})},Pn=function(r){var u=r.content,l=r.children,c=r.delay,s=void 0===c?500:c,d=i(!1),f=d[0],v=d[1],p=i({top:0,left:0}),w=p[0],g=p[1],b=a(null),y=a(null);if(o(function(){return function(){b.current&&clearTimeout(b.current)}},[]),!u||!m(l))return e(n,{children:l});var I=h(l,{ref:y,onMouseEnter:function(){b.current=setTimeout(function(){if(y.current&&u.trim()){var e=y.current.getBoundingClientRect();if(e.width>0&&e.height>0){var n=e.left+e.width/2-100,t=e.bottom+8;8>n?n=8:n+200>window.innerWidth-8&&(n=window.innerWidth-200-8),t+40>window.innerHeight-8&&(t=e.top-40-8),g({top:t,left:n}),v(!0)}}},s)},onMouseLeave:function(){b.current&&(clearTimeout(b.current),b.current=null),v(!1)}});return t(n,{children:[I,f&&e("div",x({className:"st-tooltip",style:{position:"fixed",top:"".concat(w.top,"px"),left:"".concat(w.left,"px"),zIndex:1e4}},{children:u}))]})},Dn=function(n){var r,c,s=n.colIndex,d=n.gridColumnEnd,f=n.gridColumnStart,v=n.gridRowEnd,p=n.gridRowStart,w=n.header,m=n.parentHeader,g=n.reverse,b=n.sort,y=i(!1),I=y[0],C=y[1],S=i(!1),M=S[0],N=S[1],H=i(w.label||""),k=H[0],A=H[1],D=ue(),F=D.activeHeaderDropdown,O=D.areAllRowsSelected,L=D.autoExpandColumns,W=D.collapsedHeaders,B=D.columnBorders,q=D.columnReordering,G=D.columnResizing,z=D.columnsWithSelectedCells,K=D.draggedHeaderRef,j=D.enableHeaderEditing,V=D.filterIcon,_=D.handleApplyFilter,U=D.handleClearFilter,J=D.handleSelectAll,X=D.headerCollapseIcon,Y=D.headerDropdown,$=D.headerExpandIcon,Z=D.headerRegistry,Q=D.headers,ee=D.hoveredHeaderRef,ne=D.onColumnOrderChange,te=D.onColumnSelect,re=D.onHeaderEdit,oe=D.onSort,ie=D.onTableHeaderDragEnd,ae=D.headerHeight,le=D.selectColumns,ce=D.selectableColumns,se=D.selectedColumns,de=D.setActiveHeaderDropdown,fe=D.setCollapsedHeaders,ve=D.setHeaders,he=D.setInitialFocusedCell,pe=D.setIsResizing,we=D.setSelectedCells,me=D.setSelectedColumns,ge=D.sortDownIcon,xe=D.sortUpIcon,ye=D.tableBodyContainerRef,Ce=!!(null==w?void 0:w.isSortable),Re=!!(null==w?void 0:w.filterable),Se=D.filters[w.accessor],Me=(null==F?void 0:F.accessor)===w.accessor,Ne=w.isSelectionColumn&&D.enableRowSelection,Ee=function(e){var n;return!(!(null===(n=e.children)||void 0===n?void 0:n.length)||!e.collapsible)}(w),Te=W.has(w.accessor),ke=function(e){var n=e.isOpen,t=e.estimatedHeight,r=void 0===t?200:t,u=e.estimatedWidth,l=void 0===u?250:u,c=e.margin,s=void 0===c?4:c,d=a(null),f=i({}),v=f[0],h=f[1];return o(function(){if(n&&d.current){var e=function(){if(d.current){var e=d.current.getBoundingClientRect(),n=window.innerHeight-e.bottom,t=window.innerWidth-e.right,o="bottom",i={};r>n&&e.top>=r&&(o="top");var a="left";l>t+e.width&&(a="right"),"bottom"===o?i.top=e.bottom+s:i.bottom=window.innerHeight-e.top+s,"left"===a?i.left=e.left:i.right=window.innerWidth-e.right,h(i)}};requestAnimationFrame(e);var t=function(){return requestAnimationFrame(e)},o=function(){return requestAnimationFrame(e)};return window.addEventListener("resize",t),window.addEventListener("scroll",o,!0),function(){window.removeEventListener("resize",t),window.removeEventListener("scroll",o,!0)}}h({})},[n,r,l,s]),{triggerRef:d,position:v}}({isOpen:Me,estimatedHeight:200,estimatedWidth:250,margin:4}),Ae=ke.triggerRef,Pe=ke.position,De=u(function(){var e,n,t;if(!B)return!1;var r=Q.filter(function(e){return"left"===e.pinned}),o=Q.filter(function(e){return!e.pinned}),i=Q.filter(function(e){return"right"===e.pinned});return"left"===w.pinned?(null===(e=r[r.length-1])||void 0===e?void 0:e.accessor)===w.accessor:"right"===w.pinned?(null===(n=i[i.length-1])||void 0===n?void 0:n.accessor)===w.accessor:(null===(t=o[o.length-1])||void 0===t?void 0:t.accessor)===w.accessor},[B,Q,w.accessor,w.pinned]),Fe=u(function(){return!(!ce||Ne)&&T(w,s).some(function(e){return se.has(e)})},[ce,Ne,w,s,se]),Oe=u(function(){return!Ne&&T(w,s).some(function(e){return z.has(e)})},[Ne,w,s,z]),Le=u(function(){return!(!w.children||0===w.children.length)&&(!Te||w.children.some(function(e){var n=e.showWhen||E;return"parentCollapsed"===n||"always"===n}))},[w.children,Te]),We=null==m?void 0:m.singleRowChildren,Be=Le&&!w.singleRowChildren,Ge="st-header-cell ".concat(w.accessor===(null===(r=ee.current)||void 0===r?void 0:r.accessor)?"st-hovered":""," ").concat((null===(c=K.current)||void 0===c?void 0:c.accessor)===w.accessor?"st-dragging":""," ").concat(Ce?"clickable":""," ").concat(q&&!Ce?"columnReordering":""," ").concat(Be?"parent":""," ").concat(We?"st-sub-header":""," ").concat(De?"st-last-column":""," ").concat(j&&!Ne?"st-header-editable":""," ").concat(Fe?"st-header-selected":""," ").concat(Oe&&!Fe?"st-header-has-highlighted-cell":""),ze=Je({draggedHeaderRef:K,headers:Q,hoveredHeaderRef:ee,onColumnOrderChange:ne,onTableHeaderDragEnd:ie}),Ke=ze.handleDragStart,je=ze.handleDragEnd,Ve=ze.handleDragOver,_e=qe();o(function(){if(Z&&!w.isSelectionColumn){var e=w.accessor+"";return Z.set(e,{setEditing:function(e){N(e)}}),function(){Z.delete(e)}}},[Z,w.accessor,w.isSelectionColumn]),o(function(){A(w.label||"")},[w.label]);var Ue=function(e){C(!I)},Ye=l(function(e){A(e);var n=Q.map(function(n){return n.accessor===w.accessor?x(x({},n),{label:e}):n});ve(n),re&&re(w,e)},[Q,ve,re,w]),$e=l(function(){de&&de(null)},[de]),Ze=l(function(e){e.stopPropagation(),fe(function(e){var n=new Set(e);return Te?n.delete(w.accessor):n.add(w.accessor),n})},[fe,Te,w.accessor]),Qe=function(e){var n=e.event,t=e.header;if(!t.isSelectionColumn){if(ce){var r=T(t,s),o=r.some(function(e){return se.has(e)});if(j&&o&&!n.shiftKey)return Y&&Me&&$e(),void N(!0);n.shiftKey&&le?me(function(e){if(0===e.size)return new Set(r);var n=r[0],t=Array.from(e).sort(function(e,n){return e-n}),o=t[0],i=Math.abs(n-o);t.forEach(function(e){var t=Math.abs(n-e);i>t&&(i=t,o=e)});var a,u,l,c=R(R([],(l=Math.min(a=o,u=n),Array.from({length:Math.max(a,u)-l+1},function(e,n){return l+n})),!0),r,!0);return new Set(R(R([],Array.from(e),!0),c,!0))}):le&&le(r),we(new Set),he(null)}te&&te(t),!ce&&t.isSortable&&oe(t.accessor)}};if(o(function(){var e=function(e){e.preventDefault(),e.dataTransfer.dropEffect="move"};return document.addEventListener("dragover",e),function(){document.removeEventListener("dragover",e)}},[]),!w)return null;var en=G&&!Ne&&e("div",x({className:"st-header-resize-handle-container",role:"separator","aria-label":"Resize ".concat(w.label," column"),"aria-orientation":"vertical",onMouseDown:function(e){var n,t=null===(n=document.getElementById(P({accessor:w.accessor,rowId:"header"})))||void 0===n?void 0:n.offsetWidth;_e({callback:sn,callbackProps:{event:e.nativeEvent,header:w,headers:Q,setHeaders:ve,setIsResizing:pe,tableBodyContainerRef:ye,startWidth:t,collapsedHeaders:W,autoExpandColumns:L,reverse:g},limit:10})},onTouchStart:function(e){var n,t=null===(n=document.getElementById(P({accessor:w.accessor,rowId:"header"})))||void 0===n?void 0:n.offsetWidth;_e({callback:sn,callbackProps:{event:e,header:w,headers:Q,setHeaders:ve,setIsResizing:pe,tableBodyContainerRef:ye,startWidth:t,collapsedHeaders:W,autoExpandColumns:L,reverse:g},limit:10})}},{children:e("div",{className:"st-header-resize-handle"})})),nn=b&&b.key.accessor===w.accessor&&t("div",x({className:"st-icon-container",onClick:function(e){return Qe({event:e,header:w})},onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||oe(w.accessor)},tabIndex:0,role:"button","aria-label":"Sort ".concat(w.label," ").concat("asc"===b.direction?"descending":"ascending")},{children:["asc"===b.direction&&xe&&xe,"desc"===b.direction&&ge&&ge]})),tn=Re&&V&&t("div",x({className:"st-icon-container",onClick:Ue,onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||(e.target===e.currentTarget||e.currentTarget.contains(e.target))&&(e.target.closest(".st-dropdown-content")||(e.preventDefault(),Ue()))},tabIndex:0,role:"button","aria-label":"Filter ".concat(w.label),"aria-expanded":I,"aria-haspopup":"dialog"},{children:[h(V,{style:{fill:Se?"var(--st-button-active-background-color)":"var(--st-header-icon-color)"}}),e(be,x({open:I,overflow:"visible",setOpen:C,onClose:function(){return C(!1)}},{children:e(An,{header:w,currentFilter:Se,onApplyFilter:function(e){_(e),C(!1)},onClearFilter:function(){U(w.accessor),C(!1)}})}))]})),rn=Ee&&!Ne&&e("div",x({className:"st-icon-container st-collapse-icon-container",onClick:function(e){return Ze(e)},onKeyDown:function(e){"Enter"!==e.key&&" "!==e.key||(e.preventDefault(),Ze(e))},tabIndex:0,role:"button","aria-label":"".concat(Te?"Expand":"Collapse"," ").concat(w.label," column"),"aria-expanded":!Te},{children:Te?X:$})),on=e(Pn,x({content:w.tooltip||""},{children:e("span",x({className:"st-header-label-text ".concat("right"===w.align?"right-aligned":"center"===w.align?"center-aligned":"left-aligned")},{children:Ne?e(Xe,{checked:!!O&&O(),onChange:function(e){J&&J(e)},ariaLabel:"Select all rows"}):M?e(Ie,{defaultValue:k,onBlur:function(){return N(!1)},onChange:Ye}):k||(null==w?void 0:w.label)}))})),an="header-desc-".concat(w.accessor),un=function(e,n){var t=[];return e.type&&"other"!==e.type&&t.push("".concat(e.type," column")),e.isSortable&&t.push("sortable"),n&&t.push("filterable"),e.tooltip&&t.push(e.tooltip),t.join(", ")}(w,Re);return t(He,x({className:Ge,id:P({accessor:w.accessor,rowId:"header"}),"aria-sort":function(){if(w.isSortable)return(null==b?void 0:b.key.accessor)===w.accessor?"asc"===b.direction?"ascending":"descending":"none"}(),"aria-colindex":s+1,"aria-describedby":un?an:void 0,onDragOver:function(e){Ne||_e({callback:Ve,callbackProps:{event:e,hoveredHeader:w},limit:50})},style:x({gridRowStart:p,gridRowEnd:v,gridColumnStart:f,gridColumnEnd:d},v-p>1?{}:{height:ae})},{children:[g&&en,!w.headerRenderer&&"right"===w.align&&rn,!w.headerRenderer&&"right"===w.align&&tn,!w.headerRenderer&&"right"===w.align&&nn,e("div",x({ref:Ae,className:"st-header-label",draggable:q&&!w.disableReorder&&!Ne,onClick:function(e){Ne||Qe({event:e,header:w})},onDoubleClick:function(e){Ne||function(e){var n=e.header;n.isSelectionColumn||ce&&n.isSortable&&oe(n.accessor)}({event:e,header:w})},onDragEnd:Ne?void 0:function(e){e.preventDefault(),je()},onDragStart:Ne?void 0:function(e){q&&w&&function(e){Ke(e)}(w)}},{children:w.headerRenderer?w.headerRenderer({accessor:w.accessor,colIndex:s,header:w,components:{sortIcon:nn||void 0,filterIcon:tn||void 0,collapseIcon:rn||void 0,labelContent:on}}):on})),!w.headerRenderer&&"right"!==w.align&&nn,!w.headerRenderer&&"right"!==w.align&&tn,!w.headerRenderer&&"right"!==w.align&&rn,!g&&en,Y&&!Ne&&e("div",x({className:"st-header-dropdown-container"},{children:Y({accessor:w.accessor,colIndex:s,header:w,isOpen:Me,onClose:$e,position:Pe})})),un&&e("span",x({id:an,className:"st-sr-only"},{children:un}))]}))},Fn=function(t){var r=t.columnIndices,o=t.gridTemplateColumns,i=t.handleScroll,a=t.headers,l=t.maxDepth,c=t.pinned,s=t.sectionRef,d=t.sort,f=t.width,v=ue().collapsedHeaders,h=u(function(){var e=[],n=1,t=function(o,i,u,s){var d,f;if(void 0===u&&(u=!1),!D({header:o,pinned:c,headers:a,collapsedHeaders:v}))return 0;u||n++;var h,p,w=null!==(f=null===(d=o.children)||void 0===d?void 0:d.filter(function(e){return D({header:e,pinned:c,headers:a,collapsedHeaders:v})}).length)&&void 0!==f?f:0,m=n;if(o.singleRowChildren&&w>0?(h=m+1,p=l+1):w>0?(h=m+w,p=i+1):(h=m+1,p=l+1),e.push({header:o,gridColumnStart:m,gridColumnEnd:h,gridRowStart:i,gridRowEnd:p,colIndex:r[o.accessor],parentHeader:s}),o.children&&o.children.length>0){var g=o.singleRowChildren?i:i+1,b=!o.singleRowChildren;o.children.forEach(function(e){D({header:e,pinned:c,headers:a,collapsedHeaders:v})&&(t(e,g,b,o),b=!1)})}return h-m},o=a.filter(function(e){return D({header:e,pinned:c,headers:a,collapsedHeaders:v})}),i=!0;return o.forEach(function(e){t(e,1,i),i=!1}),e},[a,l,c,r,v]);return e(an,x({childRef:s,group:c?"pinned-".concat(c):"default"},{children:e("div",x({className:"st-header-".concat(c?"pinned-".concat(c):"main")},i&&{onScroll:i},{ref:s,style:{gridTemplateColumns:o,width:f,position:"relative"}},{children:e(n,{children:h.map(function(n){return e(Dn,{colIndex:n.colIndex,gridColumnEnd:n.gridColumnEnd,gridColumnStart:n.gridColumnStart,gridRowEnd:n.gridRowEnd,gridRowStart:n.gridRowStart,header:n.header,parentHeader:n.parentHeader,reverse:"right"===c,sort:d},n.header.accessor)})})}))}))},On=function(n){var r=n.centerHeaderRef,o=n.headers,i=n.mainTemplateColumns,a=n.pinnedLeftColumns,l=n.pinnedLeftTemplateColumns,c=n.pinnedRightColumns,s=n.pinnedRightTemplateColumns,d=n.sort,f=n.pinnedLeftWidth,v=n.pinnedRightWidth,h=ue(),p=h.headerContainerRef,w=h.pinnedLeftRef,m=h.pinnedRightRef,g=h.collapsedHeaders,b=h.tableRows,y=h.maxHeaderDepth,I=u(function(){return ln({headers:o,pinnedLeftColumns:a,pinnedRightColumns:c,collapsedHeaders:g})},[o,a,c,g]),C=u(function(){return Object.keys(I).length},[I]);return t("div",x({className:"st-header-container",ref:p,"aria-rowcount":b.length+y,"aria-colcount":C},{children:[Ke(o,"left")&&e(Fn,{columnIndices:I,gridTemplateColumns:l,handleScroll:void 0,headers:o,maxDepth:y,pinned:"left",sectionRef:w,sort:d,width:f}),e(Fn,{columnIndices:I,gridTemplateColumns:i,handleScroll:void 0,headers:o,maxDepth:y,sectionRef:r,sort:d}),Ke(o,"right")&&e(Fn,{columnIndices:I,gridTemplateColumns:s,handleScroll:void 0,headers:o,maxDepth:y,pinned:"right",sectionRef:m,sort:d,width:v})]}))},Ln=function(e){var n=e.collapsedHeaders,t=e.autoExpandColumns,r=function(e){var t=e.flattenedHeaders;return e.headers.forEach(function(e){if(!e.hide&&!e.excludeFromRender)if(e.children&&e.children.length>0)if(n&&n.has(e.accessor)){var o=e.children.filter(function(e){var n=e.showWhen||E;return"parentCollapsed"===n||"always"===n});e.singleRowChildren&&t.push(e),o.length>0?r({headers:o,flattenedHeaders:t}):e.singleRowChildren||t.push(e)}else{var i=e.children.filter(function(e){var n=e.showWhen||E;return"parentExpanded"===n||"always"===n});e.singleRowChildren&&t.push(e),r({headers:i,flattenedHeaders:t})}else t.push(e)}),t},o=r({headers:e.headers,flattenedHeaders:[]});return"".concat(o.map(function(e){return function(e,n){var t=e.minWidth,r=e.width;return"number"==typeof r&&(r="".concat(r,"px")),t&&"number"==typeof t&&(t="".concat(t,"px")),void 0===t||n?r:"string"==typeof r&&r.endsWith("fr")?"minmax(".concat(t,", ").concat(r,")"):"max(".concat(t,", ").concat(r,")")}(e,t)}).join(" "))},Wn=function(n){var r=n.hideHeader,o=n.pinnedLeftWidth,i=n.pinnedRightWidth,l=n.setScrollTop,c=n.setScrollDirection,s=n.shouldShowEmptyState,d=n.sort,f=n.tableRows,v=n.rowsToRender,h=ue(),p=h.columnResizing,w=h.editColumns,m=h.headers,g=h.collapsedHeaders,b=h.autoExpandColumns,y=a(null),I=m.filter(function(e){return!e.pinned}),C=m.filter(function(e){return"left"===e.pinned}),R=m.filter(function(e){return"right"===e.pinned}),S=u(function(){return Ln({headers:C,collapsedHeaders:g,autoExpandColumns:b})},[C,g,b]),M=u(function(){return Ln({headers:I,collapsedHeaders:g,autoExpandColumns:b})},[I,g,b]),N=u(function(){return Ln({headers:R,collapsedHeaders:g,autoExpandColumns:b})},[R,g,b]),H={centerHeaderRef:y,headers:m,mainTemplateColumns:M,pinnedLeftColumns:C,pinnedLeftTemplateColumns:S,pinnedRightColumns:R,pinnedRightTemplateColumns:N,sort:d,pinnedLeftWidth:o,pinnedRightWidth:i},E={mainTemplateColumns:M,pinnedLeftColumns:C,pinnedLeftTemplateColumns:S,pinnedLeftWidth:o,pinnedRightColumns:R,pinnedRightTemplateColumns:N,pinnedRightWidth:i,rowsToRender:v,setScrollDirection:c,setScrollTop:l,shouldShowEmptyState:s,tableRows:f};return t("div",x({className:"st-content ".concat(p?"st-resizeable":"st-not-resizeable"),style:{width:w?"calc(100% - 27.5px)":"100%"}},{children:[!r&&e(On,x({},H)),e(cn,x({},E))]}))},Bn=function(n){var r=n.mainBodyWidth,u=n.mainBodyRef,l=n.pinnedLeftWidth,c=n.pinnedRightWidth,s=n.pinnedLeftContentWidth,d=n.pinnedRightContentWidth,f=n.tableBodyContainerRef,v=ue().editColumns,h=i(!1),p=h[0],w=h[1],m=a(null),g=a(null),b=a(null),y=v?28:0,I=(v?c+1:c)+(f.current&&f.current&&f.current.scrollHeight>f.current.clientHeight?f.current.offsetWidth-f.current.clientWidth:0);return o(function(){setTimeout(function(){u.current&&w(u.current.scrollWidth-u.current.clientWidth>1)},1)},[u,r]),p?t("div",x({className:"st-horizontal-scrollbar-container"},{children:[l>0&&e(an,x({childRef:g,group:"pinned-left"},{children:e("div",x({className:"st-horizontal-scrollbar-left",ref:g,style:{width:l}},{children:e("div",{style:{width:s}})}))})),r>0&&e(an,x({childRef:m},{children:e("div",x({className:"st-horizontal-scrollbar-middle",ref:m},{children:e("div",{style:{width:r}})}))})),c>0&&e(an,x({childRef:b,group:"pinned-right"},{children:e("div",x({className:"st-horizontal-scrollbar-right",ref:b,style:{width:I}},{children:e("div",{style:{width:d}})}))})),y>0&&e("div",{style:{width:y-1.5,height:"100%",flexShrink:0}})]})):null},qn={string:function(e,n,t){if(e===n)return 0;var r=e.localeCompare(n);return"asc"===t?r:-r},number:function(e,n,t){if(e===n)return 0;var r=e-n;return"asc"===t?r:-r},boolean:function(e,n,t){if(e===n)return 0;var r=e===n?0:e?-1:1;return"asc"===t?r:-r},date:function(e,n,t){var r=new Date(e),o=new Date(n);if(r.getTime()===o.getTime())return 0;var i=r.getTime()-o.getTime();return"asc"===t?i:-i},enum:function(e,n,t){return qn.string(e,n,t)},default:function(e,n,t){return e===n?0:null==e?"asc"===t?-1:1:null==n?"asc"===t?1:-1:"string"==typeof e&&"string"==typeof n?qn.string(e,n,t):"number"==typeof e&&"number"==typeof n?qn.number(e,n,t):"boolean"==typeof e&&"boolean"==typeof n?qn.boolean(e,n,t):qn.string(e+"",n+"",t)}},Gn=function(e){return function(e){var n=e.rows,t=e.sortColumn,r=function(e,n){for(var t=0,o=e;o.length>t;t++){var i=o[t];if(i.accessor===n)return i;if(i.children&&i.children.length>0){var a=r(i.children,n);if(a)return a}}},o=r(e.headers,t.key.accessor),i=(null==o?void 0:o.type)||"string",a=t.direction,u=t.key.accessor;return R([],n,!0).sort(function(e,t){var r,l;if(null==o?void 0:o.valueGetter){var c=n.indexOf(e),s=n.indexOf(t);r=o.valueGetter({accessor:u,row:e,rowIndex:c}),l=o.valueGetter({accessor:u,row:t,rowIndex:s})}else r=K(e,u),l=K(t,u);return(null==o?void 0:o.comparator)?o.comparator({rowA:e,rowB:t,valueA:r,valueB:l,direction:a}):function(e,n,t,r){if(void 0===t&&(t="string"),null==e||""===e)return"asc"===r?-1:1;if(null==n||""===n)return"asc"===r?1:-1;if("number"===t){var o=function(e){var n;if("number"==typeof e)return e;var t=e+"";if("string"==typeof t){var r=t.replace(/[$,]/g,"").match(/^([-+]?\d*\.?\d+)([TBMKtbmk])?/);if(r){var o=parseFloat(r[1]),i=null===(n=r[2])||void 0===n?void 0:n.toUpperCase();return"T"===i?o*=1e12:"B"===i?o*=1e9:"M"===i?o*=1e6:"K"===i&&(o*=1e3),o}}return parseFloat(t)||0},i=o(e),a=o(n);return qn.number(i,a,r)}return"date"===t?qn.date(e+"",n+"",r):"boolean"===t?qn.boolean(!!e,!!n,r):"enum"===t?qn.enum(e+"",n+"",r):qn.string(e+"",n+"",r)}(r,l,i,a)})}({rows:e.rows,sortColumn:e.sortColumn,headers:e.headers})},zn=function(e){return u(function(){var n=k(e),t=new Map;return n.forEach(function(e){t.set(e.accessor,e)}),t},[e])},Kn=function(e){var n=e.tableRows,t=e.sortColumn,r=e.rowGrouping,o=e.headers;return e.externalSortHandling?n:t?r&&r.length>0?(0,e.sortNestedRows)({groupingKeys:r,headers:o,rows:n,sortColumn:t}):Gn({headers:o,rows:n,sortColumn:t}):n},jn=function(e,n,t){void 0===t&&(t=new Set);for(var r=0,o=e;o.length>r;r++){var i=o[r];if(!t.has(i.accessor)&&(t.add(i.accessor),i.children&&i.children.length>0)){var a=i.children.some(function(e){return e.accessor===n}),u=!1;if(!a)for(var l=0,c=i.children;c.length>l;l++){var s=c[l];if(jn([s],n,t),!1===s.hide){u=!0;break}}(a||u)&&(i.hide=!1)}}},Vn=function(e){return e.every(function(e){return e.hide})},_n=function(e){e.forEach(function(e){e.children&&e.children.length>0&&(_n(e.children),Vn(e.children)&&(e.hide=!0))})},Un=function(r){var o=r.allHeaders,a=r.depth,u=void 0===a?0:a,l=r.doesAnyHeaderHaveChildren,c=r.header,s=r.isCheckedOverride,d=i(!0),f=d[0],v=d[1],h=ue(),p=h.expandIcon,w=h.headers,m=h.setHeaders,g=h.onColumnVisibilityChange,b=l?"".concat(16*u,"px"):"8px",y=c.children&&c.children.length>0,I=null!=s?s:c.hide||y&&c.children&&Vn(c.children);return t(n,{children:[t("div",x({className:"st-header-checkbox-item",style:{paddingLeft:b}},{children:[l&&e("div",x({className:"st-header-icon-container"},{children:y?e("div",x({className:"st-collapsible-header-icon st-expand-icon-container ".concat(f?"expanded":"collapsed"),onClick:function(e){e.stopPropagation(),v(!f)}},{children:p})):null})),e(Xe,x({checked:I,onChange:function(e){c.hide=e,e?_n(o):(jn(o,c.accessor),y&&c.children&&c.children.length>0&&c.children.every(function(e){return!0===e.hide})&&c.children[0]&&(c.children[0].hide=!1,jn(o,c.children[0].accessor)));var n=R([],w,!0);if(m(n),g){var t=function(e){var n={},t=function(e){n[e.accessor]=!e.hide,e.children&&e.children.length>0&&e.children.forEach(t)};return e.forEach(t),n}(n);g(t)}}},{children:c.label}))]})),y&&f&&c.children&&e("div",x({className:"st-nested-headers"},{children:c.children.map(function(n,t){return e(Un,{allHeaders:o,depth:u+1,doesAnyHeaderHaveChildren:l,header:n,isCheckedOverride:!!I||void 0},"".concat(n.accessor,"-").concat(t))})}))]})},Jn=function(n){var t=n.headers,r=n.open,o="left"===n.position?"left":"",i=u(function(){return t.some(function(e){return e.children&&e.children.length>0})},[t]);return e("div",x({className:"st-column-editor-popout ".concat(r?"open":""," ").concat(o),onClick:function(e){return e.stopPropagation()}},{children:e("div",x({className:"st-column-editor-popout-content"},{children:t.map(function(n,r){return n.isSelectionColumn||n.excludeFromRender?null:e(Un,{doesAnyHeaderHaveChildren:i,header:n,allHeaders:t},"".concat(n.accessor,"-").concat(r))})}))}))},Xn=function(n){var r=n.columnEditorText,o=n.editColumns,a=n.headers,u=n.position,l=void 0===u?"right":u,c=i(n.editColumnsInitOpen),s=c[0],d=c[1];return o?t("div",x({className:"st-column-editor ".concat(s?"open":""," ").concat(l),onClick:function(){return function(e){d(e)}(!s)},style:{width:28}},{children:[e("div",x({className:"st-column-editor-text"},{children:r})),e(Jn,{headers:a,open:s,position:l})]})):null},Yn=function(n){var t=n.children,o=a({}),i=l(function(e,n){return!!o.current[n]&&o.current[n].find(function(n){return n===e})},[]),u=l(function(e,n){e.scrollWidth-e.clientWidth>0&&(n.scrollLeft=e.scrollLeft)},[]),c=l(function(e){e.onscroll=null},[]),s=l(function(e,n){e.onscroll=function(){window.requestAnimationFrame(function(){n.forEach(function(n){var t;null===(t=o.current[n])||void 0===t||t.forEach(function(n){e!==n&&(c(n),u(e,n),window.requestAnimationFrame(function(){var e=Object.keys(o.current).filter(function(e){return o.current[e].includes(n)});s(n,e)}))})})})}},[c,u]),d=l(function(e,n){n.forEach(function(n){o.current[n]||(o.current[n]=[]),i(e,n)||(o.current[n].length>0&&u(o.current[n][0],e),o.current[n].push(e))}),s(e,n)},[i,u,s]),f=l(function(e,n){n.forEach(function(n){if(i(e,n)){c(e);var t=o.current[n].indexOf(e);-1!==t&&o.current[n].splice(t,1)}})},[i,c]);return e(on.Provider,x({value:{registerPane:d,unregisterPane:f}},{children:r.Children.only(t)}))},$n=function(e){var n=e.tableRows,t=e.filterState;return e.externalFilterHandling?n:t&&0!==Object.keys(t).length?n.filter(function(e){return Object.values(t).every(function(n){try{return function(e,n){var t=n.operator,r=n.value,o=n.values;if(null==e)return"isEmpty"===t;if("isEmpty"===t)return!e||""===(e+"").trim();if("isNotEmpty"===t)return e&&""!==(e+"").trim();if("string"==typeof e||"contains"===t||"notContains"===t||"startsWith"===t||"endsWith"===t){var i=(e+"").toLowerCase(),a=r?(r+"").toLowerCase():"";switch(t){case"equals":return i===a;case"notEquals":return i!==a;case"contains":return i.includes(a);case"notContains":return!i.includes(a);case"startsWith":return i.startsWith(a);case"endsWith":return i.endsWith(a)}}if("number"==typeof e||!isNaN(+e)){var u=+e,l=+r;switch(t){case"equals":return u===l;case"notEquals":return u!==l;case"greaterThan":return u>l;case"lessThan":return l>u;case"greaterThanOrEqual":return u>=l;case"lessThanOrEqual":return l>=u;case"between":if(o&&2===o.length){var c=o.map(Number),s=c[1];return u>=c[0]&&s>=u}return!1;case"notBetween":if(o&&2===o.length){var d=o.map(Number);return s=d[1],d[0]>u||u>s}return!0}}if(e instanceof Date||!isNaN(Date.parse(e))){var f=De(e),v=De((r||"")+""),h=Pe(f),p=Pe(v);switch(t){case"equals":return h.getTime()===p.getTime();case"notEquals":return h.getTime()!==p.getTime();case"before":return p>h;case"after":return h>p;case"between":if(o&&2===o.length){var w=o.map(function(e){return Pe(De((e||"")+""))}),m=w[1];return h>=w[0]&&m>=h}return!1;case"notBetween":if(o&&2===o.length){var g=o.map(function(e){return Pe(De((e||"")+""))});return m=g[1],g[0]>h||h>m}return!0}}if("boolean"==typeof e&&"equals"===t)return e===!!r;if(Array.isArray(e)){var b=e.map(function(e){return"object"==typeof e&&null!==e?JSON.stringify(e):e+""}).join(", ");e=b}if("in"===t||"notIn"===t){if(o&&Array.isArray(o)){var x=o.includes(e+"");return"in"===t?x:!x}return!1}var y=(e+"").toLowerCase(),I=r?(r+"").toLowerCase():"";switch(t){case"equals":return y===I;case"notEquals":return y!==I;default:return!0}}(K(e,n.accessor),n)}catch(e){return console.warn("Filter error for accessor ".concat(n.accessor,":"),e),!0}})}):n},Zn=function(e){var n,t=document.querySelector(".simple-table-root");if("string"==typeof e){if(e.endsWith("px"))return parseInt(e,10);if(e.endsWith("vh"))return window.innerHeight*parseInt(e,10)/100;if(e.endsWith("%")){var r=null===(n=null==t?void 0:t.parentElement)||void 0===n?void 0:n.clientHeight;return!r||50>r?0:r*parseInt(e,10)/100}return window.innerHeight}return e},Qn=function(e,n,t,r){var o=[],i=function(e){e.forEach(function(e){var t=r?e[r]:void 0;if(r&&t&&V(t))i(t);else{var a=K(e,n);null!=a&&o.push(a)}})};if(i(e),0!==o.length){if("custom"===t.type&&t.customFn)return t.customFn(o);var a,u=t.parseValue?o.map(t.parseValue).filter(function(e){return!isNaN(e)}):o.map(function(e){return"number"==typeof e?e:"string"==typeof e?parseFloat(e):NaN}).filter(function(e){return!isNaN(e)});if(0===u.length)return"count"===t.type?o.length:void 0;switch(t.type){case"sum":a=u.reduce(function(e,n){return e+n},0);break;case"average":a=u.reduce(function(e,n){return e+n},0)/u.length;break;case"count":a=o.length;break;case"min":a=Math.min.apply(Math,u);break;case"max":a=Math.max.apply(Math,u);break;default:return}return t.formatResult?t.formatResult(a):a}},et=function(e){if(null==e)return"";var n=e+"";if(n.includes(",")||n.includes('"')||n.includes("\n")||n.includes("\r")){var t=n.replace(/"/g,'""');return'"'.concat(t,'"')}return n},nt=function(e){return function(){for(var n=[],t=0;arguments.length>t;t++)n[t]=arguments[t];return new Promise(function(t){e.apply(void 0,n),setTimeout(function(){return t()},0)})}},tt=function(){return"undefined"!=typeof window&&window.matchMedia("(prefers-reduced-motion: reduce)").matches},rt={COLUMN_REORDER:{duration:180,easing:"cubic-bezier(0.2, 0.0, 0.2, 1)",delay:0},ROW_REORDER:{duration:200,easing:"cubic-bezier(0.2, 0.0, 0.2, 1)",delay:0},REDUCED_MOTION:{duration:150,easing:"ease-out",delay:0}},ot=function(e){e.style.transition="",e.style.transitionDelay="",e.style.transform="",e.style.top="",e.style.willChange="",e.style.backfaceVisibility="",e.classList.remove("st-animating")},it=function(e,n,t,r){return void 0===t&&(t={}),new Promise(function(r){e.style.transition="transform ".concat(n.duration,"ms ").concat(n.easing),n.delay&&(e.style.transitionDelay="".concat(n.delay,"ms")),e.style.transform="translate3d(0, 0, 0)";var o=function(){ot(e),e.removeEventListener("transitionend",o),t.onComplete&&t.onComplete(),r()};e.addEventListener("transitionend",o),setTimeout(o,n.duration+(n.delay||0)+50)})},at=function(e){var n=e.element,t=e.finalConfig,r=e.fromBounds,o=e.toBounds;return I(void 0,void 0,void 0,function(){var e,i;return C(this,function(a){switch(a.label){case 0:return e=function(e,n){return{x:("x"in e?e.x:e.left)-n.x,y:("y"in e?e.y:e.top)-n.y}}(r,o),0===e.x&&0===e.y||tt()&&!1!==t.respectReducedMotion?[2]:(u=t,l=Math.abs(e.x)>Math.abs(e.y)?"column":"row",void 0===u&&(u={}),i=tt()?x(x({},rt.REDUCED_MOTION),u):x(x({},"column"===l?rt.COLUMN_REORDER:rt.ROW_REORDER),u),ot(n),function(e,n){e.style.transform="translate3d(".concat(n.x,"px, ").concat(n.y,"px, 0)"),e.style.transition="none",e.style.willChange="transform",e.style.backfaceVisibility="hidden",e.classList.add("st-animating")}(n,e),[4,it(n,i,t)]);case 1:return a.sent(),[2]}var u,l})})},ut=function(e){var n=e.element,t=e.options;return I(void 0,void 0,void 0,function(){var e,r,o,i,a,u,l,c,s,d,f,v,h,p,w,m;return C(this,function(g){return e=t.startY,r=t.endY,o=t.finalY,a=void 0===(i=t.duration)?300:i,l=void 0===(u=t.easing)?"cubic-bezier(0.2, 0.0, 0.2, 1)":u,s=void 0===(c=t.delay)?0:c,d=t.onComplete,v=void 0===(f=t.respectReducedMotion)||f,tt()&&v?(void 0!==o&&(n.style.transform="",n.style.top="".concat(o,"px")),d&&d(),[2]):(h=n.getBoundingClientRect(),w=e-(p=h.top),m=r-p,[2,new Promise(function(e){n.style.transition="",n.style.transitionDelay="",n.style.transform="",n.style.willChange="",n.style.backfaceVisibility="",n.classList.remove("st-animating"),n.style.transform="translate3d(0, ".concat(w,"px, 0)"),n.style.transition="none",n.style.willChange="transform",n.style.backfaceVisibility="hidden",n.classList.add("st-animating"),n.style.transition="transform ".concat(a,"ms ").concat(l),s&&(n.style.transitionDelay="".concat(s,"ms")),n.style.transform="translate3d(0, ".concat(m,"px, 0)");var t=function(){n.style.transition="",n.style.transitionDelay="",n.style.transform="",n.style.willChange="",n.style.backfaceVisibility="",n.classList.remove("st-animating"),void 0!==o&&(n.style.top="".concat(o,"px")),n.removeEventListener("transitionend",t),d&&d(),e()};n.addEventListener("transitionend",t),setTimeout(t,a+(s||0)+50)})])})})},lt=function(e){var n=e.rows,t=e.rowGrouping,r=void 0===t?[]:t,o=e.rowIdAccessor,i=e.expandedRows,a=e.collapsedRows,l=e.expandedDepths,c=e.rowStateMap,s=e.hasLoadingRenderer,d=e.hasErrorRenderer,f=e.hasEmptyRenderer,v=e.headers,h=e.rowHeight,p=e.headerHeight,w=e.customTheme;return u(function(){if(!r||0===r.length){var e=n.map(function(e,n){return{row:e,depth:0,displayPosition:n,groupingKey:void 0,position:n,rowPath:[n],absoluteRowIndex:n}});return{flattenedRows:e,heightOffsets:[],paginatableRows:e,parentEndPositions:n.map(function(e,n){return n+1})}}var t=[],u=[],m=[],g=[],b=0,x=function(e,n,y,I){void 0===y&&(y=[]),void 0===I&&(I=[]),e.forEach(function(e,C){var S,M,N=r[n],H=t.length,E=o?e[o]+"":C,T=R(R([],y,!0),[E],!1),k=R(R([],I,!0),[C],!1),A=_(o?{row:e,rowIdAccessor:o,rowPath:T}:T),P={row:e,depth:n,displayPosition:b,groupingKey:N,position:H,isLastGroupRow:0===n,rowPath:T,rowIndexPath:k,absoluteRowIndex:H};if(t.push(P),u.push(P),b++,J(A,n,l,i,a)&&r.length>n){var D=null==c?void 0:c.get(A),F=U(e,N),O=v.find(function(e){return e.expandable&&e.nestedTable});if((null==O?void 0:O.nestedTable)&&F.length>0){var L=t.length,W=(null===(S=O.nestedTable.customTheme)||void 0===S?void 0:S.rowHeight)||h,B=(null===(M=O.nestedTable.customTheme)||void 0===M?void 0:M.headerHeight)||p,q=G({childRowCount:F.length,rowHeight:W,headerHeight:B,customTheme:w});m.push([L,q-h]),t.push({row:{},depth:n+1,displayPosition:b-1,groupingKey:N,position:L,isLastGroupRow:!1,rowPath:R(R([],T,!0),[N],!1),rowIndexPath:k,nestedTable:{parentRow:e,expandableHeader:O,childAccessor:N,calculatedHeight:q},absoluteRowIndex:L})}else if(D&&(D.loading||D.error||D.isEmpty)){if(D.loading&&s||D.error&&d||D.isEmpty&&f){var z=t.length;t.push({row:{},depth:n+1,displayPosition:b-1,groupingKey:N,position:z,isLastGroupRow:!1,rowPath:R(R([],T,!0),[N],!1),rowIndexPath:k,stateIndicator:{parentRowId:A,state:D},absoluteRowIndex:z})}else if(D.loading&&!s){var K=t.length;t.push({row:{},depth:n+1,displayPosition:b-1,groupingKey:N,position:K,isLastGroupRow:!1,rowPath:R(R([],T,!0),[N,"loading-skeleton"],!1),rowIndexPath:k,isLoadingSkeleton:!0,absoluteRowIndex:K})}}else if(F.length>0){var j=R(R([],T,!0),[N],!1),V=R([],k,!0);x(F,n+1,j,V)}}0===n&&g.push(t.length)})};return x(n,0,[],[]),{flattenedRows:t,heightOffsets:m,paginatableRows:u,parentEndPositions:g}},[n,r,o,i,a,l,c,s,d,f,v,h,p,w])},ct=function(){return e("div",x({className:"st-empty-state"},{children:"No rows to display"}))},st={rowHeight:32,headerHeight:32,footerHeight:49,rowSeparatorWidth:1,borderWidth:1,pinnedBorderWidth:1,nestedGridBorderWidth:2,nestedGridPaddingTop:8,nestedGridPaddingBottom:8,nestedGridPaddingLeft:8,nestedGridPaddingRight:8,nestedGridMaxHeight:400,selectionColumnWidth:42},dt=function(n){var t=i(!1),r=t[0],a=t[1];return o(function(){a(!0)},[]),r?e(ft,x({},n)):null},ft=function(n){var r=n.allowAnimations,c=void 0!==r&&r,s=n.autoExpandColumns,d=void 0!==s&&s,f=n.canExpandRowGroup,v=n.cellUpdateFlash,h=void 0!==v&&v,p=n.className,w=n.columnBorders,m=void 0!==w&&w,y=n.columnEditorPosition,S=void 0===y?"right":y,N=n.columnEditorText,E=void 0===N?"Columns":N,T=n.columnReordering,A=void 0!==T&&T,P=n.columnResizing,D=void 0!==P&&P,L=n.copyHeadersToClipboard,W=void 0!==L&&L,B=n.customTheme,q=n.defaultHeaders,G=n.editColumns,z=void 0!==G&&G,U=n.editColumnsInitOpen,J=void 0!==U&&U,Y=n.emptyStateRenderer,$=n.enableHeaderEditing,Z=void 0!==$&&$,ee=n.enableRowSelection,ne=void 0!==ee&&ee,te=n.errorStateRenderer,ie=n.expandAll,ue=void 0===ie||ie,ce=n.expandIcon,fe=void 0===ce?e(de,{className:"st-expand-icon"}):ce,he=n.externalFilterHandling,me=void 0!==he&&he,be=n.externalSortHandling,xe=void 0!==be&&be,ye=n.filterIcon,Ie=void 0===ye?e(we,{className:"st-header-icon"}):ye,Ce=n.footerRenderer,Re=n.headerCollapseIcon,Se=void 0===Re?e(de,{className:"st-header-icon"}):Re,Me=n.headerDropdown,Ne=n.headerExpandIcon,He=void 0===Ne?e(se,{className:"st-header-icon"}):Ne,Ee=n.height,Te=n.hideFooter,ke=void 0!==Te&&Te,Ae=n.hideHeader,Pe=void 0!==Ae&&Ae,De=n.includeHeadersInCSVExport,Fe=void 0===De||De,Oe=n.initialSortColumn,Le=n.initialSortDirection,We=void 0===Le?"asc":Le,Be=n.isLoading,qe=void 0!==Be&&Be,ze=n.loadingStateRenderer,Ke=n.maxHeight,je=n.nextIcon,Ve=void 0===je?e(de,{className:"st-next-prev-icon"}):je,_e=n.onCellClick,Ue=n.onCellEdit,Je=n.onColumnOrderChange,Xe=n.onColumnSelect,Ye=n.onColumnVisibilityChange,$e=n.onFilterChange,Ze=n.onGridReady,Qe=n.onHeaderEdit,en=n.onLoadMore,nn=n.onNextPage,tn=n.onPageChange,rn=n.onRowGroupExpand,on=n.onRowSelectionChange,an=n.onSortChange,un=n.prevIcon,ln=void 0===un?e(se,{className:"st-next-prev-icon"}):un,cn=n.rowButtons,sn=n.rowGrouping,dn=n.rowIdAccessor,vn=n.rows,hn=n.rowsPerPage,pn=void 0===hn?10:hn,wn=n.selectableCells,mn=void 0!==wn&&wn,gn=n.selectableColumns,bn=void 0!==gn&&gn,xn=n.serverSidePagination,yn=void 0!==xn&&xn,In=n.shouldPaginate,Cn=void 0!==In&&In,Rn=n.sortDownIcon,Sn=void 0===Rn?e(pe,{className:"st-header-icon"}):Rn,Mn=n.sortUpIcon,Nn=void 0===Mn?e(ve,{className:"st-header-icon"}):Mn,Hn=n.tableEmptyStateRenderer,En=void 0===Hn?e(ct,{}):Hn,Tn=n.tableRef,kn=n.theme,An=void 0===kn?"light":kn,Pn=n.totalRowCount,Dn=n.useHoverRowBackground,Fn=void 0===Dn||Dn,On=n.useOddColumnBackground,Ln=void 0!==On&&On,qn=n.useOddEvenRowBackground,jn=void 0!==qn&&qn,Vn=u(function(){return x(x({},st),B)},[B]),_n=Vn.rowHeight,Un=Vn.headerHeight,Jn=Vn.footerHeight,tt=Vn.selectionColumnWidth;Ln&&(jn=!1),m&&(Fn=!1);var ot=a(null),it=a(null),at=a(null),ut=a(null),dt=a(null),ft=a(null),vt=a(null),ht=b(function(e){return e+1},0)[1],pt=i(new Map),wt=pt[0],mt=pt[1],gt=i(vn),bt=gt[0],xt=gt[1],yt=i(qe),It=yt[0],Ct=yt[1],Rt=a(qe),St=a(new Map);o(function(){xt(vn);var e=new Map;vn.forEach(function(n,t){var r=_(dn?{row:n,rowIdAccessor:dn,rowPath:[t]}:[t]);e.set(r,t)}),St.current=e},[vn,dn]),o(function(){var e=Rt.current,n=qe;n&&!e?Ct(!0):!n&&e&&setTimeout(function(){Ct(!1)},0),Rt.current=qe},[qe]);var Mt,Nt,Ht,Et,Tt,kt,At,Pt,Dt,Ft,Ot=function(e){var n=e.tableBodyContainerRef,t=i(0),r=t[0],o=t[1];return g(function(){n.current&&o(n.current.offsetWidth-n.current.clientWidth)},[n]),{setScrollbarWidth:o,scrollbarWidth:r,tableBodyContainerRef:n}}({tableBodyContainerRef:ft}),Lt=Ot.scrollbarWidth,Wt=Ot.setScrollbarWidth,Bt=ge({headerContainerRef:vt,mainSectionRef:ft,scrollbarWidth:Lt}).isMainSectionScrollable,qt=u(function(){if(It&&0===bt.length){var e=Cn?pn:10;return Bt&&(e+=1),Array.from({length:e},function(e,n){return{}})}return bt},[It,bt,pn,Bt,Cn]),Gt=i(1),zt=Gt[0],Kt=Gt[1],jt=i(q),Vt=jt[0],_t=jt[1],Ut=i(!1),Jt=Ut[0],Xt=Ut[1],Yt=i(!1),$t=Yt[0],Zt=Yt[1],Qt=i(null),er=Qt[0],nr=Qt[1],tr=l(function(){var e=new Set,n=function(t){t.forEach(function(t){t.collapseDefault&&t.collapsible&&e.add(t.accessor),t.children&&n(t.children)})};return n(q),e},[q]),rr=i(tr),or=rr[0],ir=rr[1];o(function(){_t(q)},[q]);var ar=u(function(){var e,n=R([],Vt,!0);return ne&&!(null===(e=null==Vt?void 0:Vt[0])||void 0===e?void 0:e.isSelectionColumn)&&(n=R([{accessor:"__row_selection__",label:"",width:tt,isEditable:!1,type:"boolean",pinned:"left",isSelectionColumn:!0,isSortable:!1,filterable:!1,align:"center"}],n,!0)),n},[ne,Vt,tt]),ur=i(0),lr=ur[0],cr=ur[1],sr=i("none"),dr=sr[0],fr=sr[1],vr=function(e,n){var t=i(function(){return function(e,n){if(!n||0===n.length)return new Set;if(e){var t=Array.from({length:n.length},function(e,n){return n});return new Set(t)}return new Set}(e,n)}),r=t[0],a=t[1];return o(function(){a(n&&0!==n.length?function(e){var t=n.length,r=Array.from(e).filter(function(e){return t>e});return new Set(r)}:new Set)},[n]),{expandedDepths:r,setExpandedDepths:a}}(ue,sn),hr=vr.expandedDepths,pr=vr.setExpandedDepths,wr=i(new Map),mr=wr[0],gr=wr[1],br=i(new Map),xr=br[0],yr=br[1],Ir=function(){var e=i(""),n=e[0],t=e[1],r=a(null);return o(function(){return n&&(r.current&&clearTimeout(r.current),r.current=setTimeout(function(){t("")},1e3)),function(){r.current&&clearTimeout(r.current)}},[n]),{announcement:n,announce:function(e){t(e)}}}(),Cr=Ir.announcement,Rr=Ir.announce,Sr=function(e){var n=e.effectiveHeaders,t=e.headerHeight,r=e.rowHeight,o=e.tableBodyContainerRef,a=i(0),c=a[0],s=a[1],d=l(function(e){var n,t;return e.singleRowChildren&&(null===(n=e.children)||void 0===n?void 0:n.length)?1:(null===(t=e.children)||void 0===t?void 0:t.length)?1+Math.max.apply(Math,e.children.map(d)):1},[]),f=u(function(){var e=0;return n.forEach(function(n){var t=d(n);e=Math.max(e,t)}),e},[n,d]),v=u(function(){var e=1;if("undefined"!=typeof window){var n=document.documentElement,o=getComputedStyle(n).getPropertyValue("--st-border-width").trim();if(o){var i=parseFloat(o);isNaN(i)||(e=i)}}return f*(null!=t?t:r)+e},[f,t,r]);return g(function(){var e=function(){o.current&&s(o.current.clientWidth)};e();var n=null;return o.current&&(n=new ResizeObserver(e)).observe(o.current),function(){n&&n.disconnect()}},[o]),{containerWidth:c,calculatedHeaderHeight:v,maxHeaderDepth:f}}({effectiveHeaders:ar,headerHeight:Un,rowHeight:_n,tableBodyContainerRef:ft}),Mr=Sr.containerWidth,Nr=Sr.calculatedHeaderHeight,Hr=Sr.maxHeaderDepth,Er=a(0),Tr=a(0),kr=u(function(){var e=H(window.innerWidth),n=fn({headers:ar,containerWidth:Mr,maxPinnedWidthPercent:e,collapsedHeaders:or});return{mainBodyWidth:n.mainWidth,pinnedLeftWidth:n.leftWidth,pinnedRightWidth:n.rightWidth,pinnedLeftContentWidth:n.leftContentWidth,pinnedRightContentWidth:n.rightContentWidth}},[ar,Mr,or]),Ar=kr.mainBodyWidth,Pr=kr.pinnedLeftWidth,Dr=kr.pinnedRightWidth,Fr=kr.pinnedLeftContentWidth,Or=kr.pinnedRightContentWidth;o(function(){if(d&&0!==Mr&&!Jt){var e,n=function(e){var t=[];return e.forEach(function(e){e.hide||(e.children&&e.children.length>0?t.push.apply(t,n(e.children)):t.push(e))}),t};if((e=at.current?at.current.clientWidth:Math.max(0,Mr-Pr-Dr))>0){var t=Vt.filter(function(e){return!e.pinned});n(t).length===Tr.current&&10>Math.abs(e-Er.current)||_t(function(t){var r=t.filter(function(e){return!e.pinned}),o=n(r),i=o.reduce(function(e,n){return e+("number"==typeof n.width?n.width:"string"==typeof n.width&&n.width.endsWith("px")?parseFloat(n.width):150)},0);if(0===i)return t;var a=e/i;if(.01>Math.abs(a-1))return t;Er.current=e,Tr.current=o.length;var u=new Map,l=0;o.forEach(function(n,t){if(!n.pinned){var r,i="number"==typeof n.width?n.width:"string"==typeof n.width&&n.width.endsWith("px")?parseFloat(n.width):150;t===o.length-1?r=e-l:l+=r=Math.round(i*a),u.set(n.accessor,r)}});var c=function(e){var n;if(e.hide)return e;var t=null===(n=e.children)||void 0===n?void 0:n.map(c);if(!e.children||0===e.children.length){if(e.pinned)return x(x({},e),{children:t});var r=u.get(e.accessor);if(void 0!==r)return x(x({},e),{width:r,children:t});var o="number"==typeof e.width?e.width:"string"==typeof e.width&&e.width.endsWith("px")?parseFloat(e.width):150;return x(x({},e),{width:Math.round(o*a),children:t})}return x(x({},e),{children:t})};return t.map(c)})}}},[d,Mr,Jt,Vt,Pr,Dr]);var Lr=function(e){var n=e.rows,t=e.headers,r=e.rowGrouping;return u(function(){if(!r||0===r.length)return n;var e=function(e){return k(e).filter(function(e){return e.aggregation})}(t);if(0===e.length)return n;var o=JSON.parse(JSON.stringify(n)),i=function(n,t){return void 0===t&&(t=0),n.map(function(n){var o=r[t],a=r[t+1],u=n[o];if(u&&V(u)){var l=i(u,t+1),c=x({},n);return c[o]=l,e.forEach(function(e){var n=Qn(l,e.accessor,e.aggregation,a);void 0!==n&&j(c,e.accessor,n)}),c}return n})};return i(o)},[n,t,r])}({rows:qt,headers:Vt,rowGrouping:sn}),Wr=function(e){var n=e.rows,t=e.headers,r=e.externalFilterHandling,o=e.onFilterChange,a=e.announce,c=i({}),s=c[0],d=c[1],f=zn(t),v=u(function(){return $n({externalFilterHandling:r,tableRows:n,filterState:s})},[n,s,r]),h=l(function(e){var n,t=x(x({},s),((n={})[e.accessor]=e,n));if(d(t),null==o||o(t),a){var r=f.get(e.accessor);r&&a("Filter applied to ".concat(r.label))}},[s,o,a,f]),p=l(function(e){var n=x({},s);if(delete n[e],d(n),null==o||o(n),a){var t=f.get(e);t&&a("Filter removed from ".concat(t.label))}},[s,o,a,f]),w=l(function(){d({}),null==o||o({}),a&&a("All filters cleared")},[o,a]),m=l(function(e){var t,o=x(x({},s),((t={})[e.accessor]=e,t));return $n({externalFilterHandling:r,tableRows:n,filterState:o})},[s,n,r]);return{filteredRows:v,updateFilter:h,clearFilter:p,clearAllFilters:w,filters:s,computeFilteredRowsPreview:m}}({rows:Lr,headers:ar,externalFilterHandling:me,onFilterChange:$e,announce:Rr}),Br=Wr.filters,qr=Wr.updateFilter,Gr=Wr.clearFilter,zr=Wr.clearAllFilters,Kr=Wr.computeFilteredRowsPreview,jr=function(e){var n=e.headers,t=e.tableRows,r=e.externalSortHandling,o=e.onSortChange,a=e.rowGrouping,c=e.initialSortColumn,s=e.initialSortDirection,d=e.announce,f=zn(n),v=l(function(){if(!c)return null;var e=f.get(c);return e?{key:e,direction:s||"asc"}:null},[f,c,s]),h=i(v),p=h[0],w=h[1],m=l(function(e){var n=e.groupingKeys,t=e.headers,r=e.sortColumn,o=Gn({headers:t,rows:e.rows,sortColumn:r});return n&&0!==n.length?o.map(function(e){var o,i=n[0],a=e[i];if(V(a)){var u=m({rows:a,sortColumn:r,headers:t,groupingKeys:n.slice(1)});return x(x({},e),((o={})[i]=u,o))}return e}):o},[]),g=u(function(){return Kn({externalSortHandling:r,tableRows:t,sortColumn:p,rowGrouping:a,headers:n,sortNestedRows:m})},[t,p,n,r,a,m]),b=l(function(e){if(!e)return w(null),void(null==o||o(null));var n=e.accessor,t=e.direction,r=f.get(n);if(r){var i=null;if(t)i={key:r,direction:t};else{var a=r.sortingOrder||["asc","desc",null],u=-1;p&&p.key.accessor===n&&(u=a.indexOf(p.direction));var l=a[(u+1)%a.length];i=null===l?null:{key:r,direction:l}}if(w(i),null==o||o(i),d)if(i){var c="asc"===i.direction?"ascending":"descending";d("Sorted by ".concat(r.label,", ").concat(c))}else d("Sort removed from ".concat(r.label))}},[p,f,o,d]),y=l(function(e){var o=function(n){for(var t=0,r=n;r.length>t;t++){var i=r[t];if(i.accessor===e)return i;if(i.children&&i.children.length>0){var a=o(i.children);if(a)return a}}},i=o(n);if(!i)return t;var u=i.sortingOrder||["asc","desc",null],l=-1;p&&p.key.accessor===e&&(l=u.indexOf(p.direction));var c=u[(l+1)%u.length];return Kn({externalSortHandling:r,tableRows:t,sortColumn:null===c?null:{key:i,direction:c},rowGrouping:a,headers:n,sortNestedRows:m})},[p,n,t,r,a,m]);return{sort:p,sortedRows:g,updateSort:b,computeSortedRowsPreview:y}}({headers:Vt,tableRows:Wr.filteredRows,externalSortHandling:xe,onSortChange:an,rowGrouping:sn,initialSortColumn:Oe,initialSortDirection:We,announce:Rr}),Vr=jr.sort,_r=jr.updateSort,Ur=jr.computeSortedRowsPreview,Jr=lt({rows:jr.sortedRows,rowGrouping:sn,rowIdAccessor:dn,expandedRows:mr,collapsedRows:xr,expandedDepths:hr,rowStateMap:wt,hasLoadingRenderer:!!ze,hasErrorRenderer:!!te,hasEmptyRenderer:!!Y,headers:ar,rowHeight:_n,headerHeight:Un,customTheme:Vn}),Xr=Jr.flattenedRows,Yr=Jr.heightOffsets,$r=Jr.paginatableRows,Zr=Jr.parentEndPositions,Qr=function(e){var n=e.tableRows,t=e.onRowSelectionChange,r=e.enableRowSelection,o=void 0!==r&&r,a=i(new Set),c=a[0],s=a[1],d=l(function(e){return!!o&&function(e,n){return n.has(e)}(e,c)},[c,o]),f=l(function(){return!!o&&function(e,n){return 0!==e.length&&e.every(function(e){return n.has(_(e.rowPath||[e.position])+"")})}(n,c)},[n,c,o]),v=u(function(){return o?function(e){return e.size}(c):0},[c,o]),h=u(function(){return o?function(e,n){return e.filter(function(e){return n.has(_(e.rowPath||[e.position])+"")}).map(function(e){return e.row})}(n,c):[]},[n,c,o]),p=l(function(e,r){if(o){var i=function(e,n){var t=new Set(n);return t.has(e)?t.delete(e):t.add(e),t}(e,c);if(s(i),t){var a=n.find(function(n){return _(n.rowPath||[n.position])+""===e});a&&t({row:a.row,isSelected:r,selectedRows:i})}}},[c,n,t,o]),w=l(function(e){var r;o&&(e?(r=function(e){return new Set(e.map(function(e){return _(e.rowPath||[e.position])+""}))}(n),t&&n.forEach(function(e){return t({row:e.row,isSelected:!0,selectedRows:r})})):(r=new Set,t&&c.forEach(function(e){var o=n.find(function(n){return _(n.rowPath||[n.position])+""===e});o&&t({row:o.row,isSelected:!1,selectedRows:r})})),s(r))},[n,t,c,o]),m=l(function(e){if(o){var n=d(e);p(e,!n)}},[d,p,o]),g=l(function(){if(o){if(t){var e=new Set;c.forEach(function(r){var o=n.find(function(e){return _(e.rowPath||[e.position])+""===r});o&&t({row:o.row,isSelected:!1,selectedRows:e})})}s(new Set)}},[c,n,t,o]);return{selectedRows:c,setSelectedRows:s,isRowSelected:d,areAllRowsSelected:f,selectedRowCount:v,selectedRowsData:h,handleRowSelect:p,handleSelectAll:w,handleToggleRow:m,clearSelection:g}}({tableRows:Xr,onRowSelectionChange:on,enableRowSelection:ne});Mt=Qr.selectedRows,Nt=Qr.setSelectedRows,Ht=Qr.isRowSelected,Et=Qr.areAllRowsSelected,Tt=Qr.selectedRowCount,kt=Qr.selectedRowsData,At=Qr.handleRowSelect,Pt=Qr.handleSelectAll,Dt=Qr.handleToggleRow,Ft=Qr.clearSelection;var eo=lt({rows:Lr,rowGrouping:sn,rowIdAccessor:dn,expandedRows:mr,collapsedRows:xr,expandedDepths:hr,rowStateMap:wt,hasLoadingRenderer:!!ze,hasErrorRenderer:!!te,hasEmptyRenderer:!!Y,headers:ar,rowHeight:_n,headerHeight:Un,customTheme:Vn}).flattenedRows,no=l(function(e){var n=Kr(e);return sn&&0!==sn.length?X({rows:n,rowGrouping:sn,rowIdAccessor:dn,expandedRows:mr,collapsedRows:xr,expandedDepths:hr,rowStateMap:wt,hasLoadingRenderer:!!ze,hasErrorRenderer:!!te,hasEmptyRenderer:!!Y,headers:ar,rowHeight:_n,headerHeight:Un,customTheme:Vn}):n.map(function(e,n){return{row:e,depth:0,displayPosition:n,groupingKey:void 0,position:n,isLastGroupRow:!1,rowPath:[n],absoluteRowIndex:n}})},[Kr,sn,mr,xr,hr,wt,ze,te,Y,ar,_n,Un,Vn]),to=l(function(e){var n=Ur(e);return sn&&0!==sn.length?X({rows:n,rowGrouping:sn,rowIdAccessor:dn,expandedRows:mr,collapsedRows:xr,expandedDepths:hr,rowStateMap:wt,hasLoadingRenderer:!!ze,hasErrorRenderer:!!te,hasEmptyRenderer:!!Y,headers:ar,rowHeight:_n,headerHeight:Un,customTheme:Vn}):n.map(function(e,n){return{row:e,depth:0,displayPosition:n,groupingKey:void 0,position:n,isLastGroupRow:!1,rowPath:[n],absoluteRowIndex:n}})},[Ur,sn,mr,xr,hr,wt,ze,te,Y,ar,_n,Un,Vn]),ro=function(e){var n=e.height,t=e.maxHeight,r=e.rowHeight,o=e.totalRowCount,i=e.headerHeight,a=e.footerHeight;return u(function(){if(t){var e=Zn(t);if(0===e)return;var u=i||r;if(e>=u+o*r+(a||0)||20>o)return;return Math.max(0,e-u)}if(n){var l=Zn(n);if(0!==l)return Math.max(0,l-r)}},[n,t,r,e.shouldPaginate,e.rowsPerPage,o,i,a])}({height:Ee,maxHeight:Ke,rowHeight:_n,shouldPaginate:Cn,rowsPerPage:pn,totalRowCount:null!=Pn?Pn:$r.length,headerHeight:Nr,footerHeight:Cn&&!ke?Jn:void 0}),oo=function(e){var n=e.allowAnimations,t=e.flattenedRows,r=e.originalFlattenedRows,o=e.parentEndPositions,c=e.currentPage,s=e.rowsPerPage,d=e.shouldPaginate,f=e.serverSidePagination,v=e.contentHeight,h=e.rowHeight,p=e.scrollTop,w=e.scrollDirection,m=void 0===w?"none":w,b=e.heightOffsets,y=e.customTheme,I=e.computeFilteredRowsPreview,C=e.computeSortedRowsPreview,S=i(!1),N=S[0],H=S[1],E=i([]),T=E[0],k=E[1],A=a([]),P=a([]),D=u(function(){return M(h)},[h]),F=a(new Map),O=a(null),L=l(function(e,n){if(!d||f)return e.map(function(e,n){return x(x({},e),{position:n,absoluteRowIndex:n})});var t=(c-1)*s,r=c*s,o=0===t?0:n[t-1];return e.slice(o,r>n.length?e.length:n[r-1]).map(function(e,n){var t=e.nestedTable?e.absoluteRowIndex:d&&!f?o+n:n;return x(x({},e),{position:n,absoluteRowIndex:t})})},[c,s,f,d]);u(function(){if(0===F.current.size&&r.length>0){var e=new Map;r.forEach(function(n,t){var r=_(n.rowPath||[n.position])+"";e.set(r,t)}),F.current=e}},[r]);var W=u(function(){return L(t,o)},[t,o,L]),B=u(function(){if(!b||0===b.length||!d||f)return b;var e=new Map;return W.forEach(function(n){n.nestedTable&&e.set(n.absoluteRowIndex,n.position)}),b.filter(function(n){return e.has(n[0])}).map(function(n){var t=n[1];return[e.get(n[0]),t]})},[b,W,d,f]),q=u(function(){if(B&&0!==B.length)return function(e,n,t,r){var o=n+r.rowSeparatorWidth,i=Array(e),a=new Map;t&&t.forEach(function(e){a.set(e[0],e[1])});for(var u=0,l=0;e>l;l++){i[l]=u,u+=o;var c=a.get(l);void 0!==c&&(u+=c)}return{rowTopPositions:i,totalHeight:u-r.rowSeparatorWidth}}(W.length,h,B,y)},[W.length,h,B,y]),G=u(function(){return void 0===v?W:Q({bufferRowCount:D,contentHeight:v,tableRows:W,rowHeight:h,scrollTop:p,scrollDirection:m,heightMap:q})},[W,v,h,p,m,D,q]),z=l(function(e,n){var t=new Set(e.map(function(e){return _(e.rowPath||[e.position])+""})),r=new Set(n.map(function(e){return _(e.rowPath||[e.position])+""}));return{staying:n.filter(function(e){var n=_(e.rowPath||[e.position])+"";return t.has(n)}),entering:n.filter(function(e){var n=_(e.rowPath||[e.position])+"";return!t.has(n)}),leaving:e.filter(function(e){var n=_(e.rowPath||[e.position])+"";return!r.has(n)})}},[]),K=u(function(){if(0===A.current.length)return!1;var e=W.map(function(e){return _(e.rowPath||[e.position])+""}),n=A.current.map(function(e){return _(e.rowPath||[e.position])+""});return e.length!==n.length||!e.every(function(e,t){return e===n[t]})},[W]);g(function(){if(!N){var e=function(){T.length>0&&k([])};if(!n||d)return e(),A.current=W,void(P.current=G);if(0===A.current.length)return e(),A.current=W,void(P.current=G);if(!K)return e(),A.current=W,void(P.current=G);O.current={tableRows:W,visibleRows:G},H(!0)}},[n,W,T.length,K,N,d,G]),g(function(){if(N&&O.current&&T.length>0){var e=setTimeout(function(){var e=O.current;H(!1),k([]),A.current=e.tableRows,P.current=e.visibleRows,O.current=null},rt.ROW_REORDER.duration+100);return function(){return clearTimeout(e)}}},[N,T.length]);var j=u(function(){if(!n||d)return G;if(T.length>0){var e=new Map,t=new Map;return W.forEach(function(n){var r=_(n.rowPath||[n.position])+"";e.set(r,n.position),t.set(r,n.displayPosition)}),T.map(function(n){var r=_(n.rowPath||[n.position])+"",o=e.get(r),i=t.get(r);return void 0!==o&&void 0!==i?x(x({},n),{position:o,displayPosition:i}):n})}return G},[G,T,W,n,d]),V=l(function(e){if(n&&!d&&void 0!==v){var t=I(e),r=L(t,[]),o=Q({bufferRowCount:D,contentHeight:v,tableRows:r,rowHeight:h,scrollTop:p,scrollDirection:m,heightMap:q}),i=z(G,o).entering.map(function(e){var n=_(e.rowPath||[e.position])+"";return W.find(function(e){return _(e.rowPath||[e.position])+""===n})||e}).filter(Boolean);i.length>0&&k(R(R([],G,!0),i,!0))}},[n,d,I,L,v,h,p,m,z,W,G,D,q]),U=l(function(e){if(n&&!d&&void 0!==v){var t=C(e),r=L(t,[]),o=Q({bufferRowCount:D,contentHeight:v,tableRows:r,rowHeight:h,scrollTop:p,scrollDirection:m,heightMap:q}),i=z(G,o).entering.map(function(e){var n=_(e.rowPath||[e.position])+"";return W.find(function(e){return _(e.rowPath||[e.position])+""===n})||e}).filter(Boolean);i.length>0&&k(R(R([],G,!0),i,!0))}},[n,d,C,L,v,h,p,m,z,W,G,D,q]);return{currentTableRows:W,currentVisibleRows:G,isAnimating:N,prepareForFilterChange:V,prepareForSortChange:U,rowsToRender:j,paginatedHeightOffsets:B}}({allowAnimations:c,flattenedRows:Xr,originalFlattenedRows:eo,paginatableRows:$r,parentEndPositions:Zr,currentPage:zt,rowsPerPage:pn,shouldPaginate:Cn,serverSidePagination:yn,contentHeight:ro,rowHeight:_n,scrollTop:lr,scrollDirection:dr,heightOffsets:Yr,customTheme:Vn,computeFilteredRowsPreview:no,computeSortedRowsPreview:to}),io=oo.currentTableRows,ao=oo.rowsToRender,uo=oo.prepareForFilterChange,lo=oo.prepareForSortChange,co=oo.isAnimating,so=oo.paginatedHeightOffsets,fo=a(new Map),vo=a(new Map),ho=function(e){var n=e.selectableCells,t=e.headers,r=e.tableRows,c=e.onCellEdit,s=e.cellRegistry,d=e.collapsedHeaders,f=e.rowHeight,v=e.enableRowSelection,h=void 0!==v&&v,p=e.copyHeadersToClipboard,w=void 0!==p&&p,m=e.customTheme,g=i(new Set),b=g[0],x=g[1],y=i(new Set),R=y[0],S=y[1],M=i(null),N=M[0],H=M[1],E=i(null),T=E[0],k=E[1],A=i(new Set),P=A[0],D=A[1],F=i(new Set),L=F[0],W=F[1],B=i(!1),q=B[0],G=B[1],z=a(!1),V=a(null),U=u(function(){var e=new Set;return b.forEach(function(n){var t=n.split("-");if(t.length>=2){var r=parseInt(t[1],10);isNaN(r)||e.add(r)}}),R.forEach(function(n){e.add(n)}),e},[b,R]),J=u(function(){var e=new Set;return b.forEach(function(n){var t=n.split("-");if(t.length>=3){var r=t.slice(2).join("-");e.add(r)}}),R.size>0&&r.forEach(function(n){var t=_(n.rowPath||[n.position]);e.add(t+"")}),e},[b,R,r]),X=u(function(){return t.flatMap(function(e){return O(e,d)})},[t,d]),Y=l(function(){if(0!==b.size){var e=function(e,n,t,r){void 0===r&&(r=!1);var o=n.filter(function(e){return!e.hide&&!e.excludeFromRender}),i=new Map,a=new Map;o.forEach(function(e,n){i.set(n,e.accessor),a.set(n,e)});var u=Array.from(e).reduce(function(e,n){var r,o=n.split("-").map(Number),u=o[0],l=o[1];e[u]||(e[u]=[]);var c=i.get(l),s=a.get(l);if(c&&(null===(r=t[u])||void 0===r?void 0:r.row)){var d=t[u].row,f=K(d,c);if(!1!==(null==s?void 0:s.useFormattedValueForClipboard)&&(null==s?void 0:s.valueFormatter)){var v=s.valueFormatter({accessor:c,colIndex:l,row:d,rowIndex:u,value:f});e[u][l]=v}else e[u][l]=!s||"lineAreaChart"!==s.type&&"barChart"!==s.type?f:Array.isArray(f)?f.join(", "):""}else e[u][l]="";return e},{}),l=new Set;r&&Array.from(e).forEach(function(e){var n=e.split("-").map(Number);l.add(n[1])});var c="";r&&l.size>0&&(c=Array.from(l).sort(function(e,n){return e-n}).map(function(e){var n,t=a.get(e);return null!==(n=null==t?void 0:t.label)&&void 0!==n?n:""}).join("\t"));var s=Object.values(u).map(function(e){return Object.values(e).join("\t")}).join("\n");return r&&c?"".concat(c,"\n").concat(s):s}(b,X,r,w);navigator.clipboard.writeText(e),D(new Set(b)),setTimeout(function(){return D(new Set)},800)}},[b,X,r,w]),$=l(function(){return I(void 0,void 0,void 0,function(){var e,n,t,o,i;return C(this,function(a){switch(a.label){case 0:if(!T)return[2];a.label=1;case 1:return a.trys.push([1,3,,4]),[4,navigator.clipboard.readText()];case 2:return(e=a.sent())?(n=function(e,n,t,r,o,i){var a=new Set,u=new Set,l=e.split("\n").filter(function(e){return e.length>0});if(0===l.length)return{updatedCells:a,warningCells:u};var c=t.filter(function(e){return!e.hide&&!e.excludeFromRender}),s=n.rowIndex,d=n.colIndex;return l.forEach(function(e,n){e.split("\t").forEach(function(e,t){var l=s+n,f=d+t;if(r.length>l&&c.length>f){var v=r[l],h=c[f],p=_(v.rowPath||[v.position]);if(null==h?void 0:h.isEditable){var w=e;if("number"===h.type){var m=+e;isNaN(m)||(w=m)}else if("boolean"===h.type)w="true"===e.toLowerCase()||"1"===e;else if("date"===h.type){var g=new Date(e);isNaN(g.getTime())||(w=g)}else"lineAreaChart"!==h.type&&"barChart"!==h.type||(w=e.split(",").map(function(e){var n=+e.trim();return isNaN(n)?0:n}));if(j(v.row,h.accessor,w),i){var b="".concat(p,"-").concat(h.accessor),x=i.get(b);x&&x.updateContent(w)}null==o||o({accessor:h.accessor,newValue:w,row:v.row,rowIndex:l});var y="".concat(l,"-").concat(f,"-").concat(p);a.add(y)}else{var I="".concat(l,"-").concat(f,"-").concat(p);u.add(I)}}})}),{updatedCells:a,warningCells:u}}(e,T,X,r,c,s),o=n.warningCells,(t=n.updatedCells).size>0&&(D(t),setTimeout(function(){return D(new Set)},800)),o.size>0&&(W(o),setTimeout(function(){return W(new Set)},800)),[3,4]):[2];case 3:return i=a.sent(),console.warn("Failed to paste from clipboard:",i),[3,4];case 4:return[2]}})})},[T,X,r,c,s]),Z=l(function(){if(0!==b.size){var e=function(e,n,t,r,o){var i=new Set,a=new Set,u=n.filter(function(e){return!e.hide&&!e.excludeFromRender}),l=new Map;return u.forEach(function(e,n){l.set(n,e.accessor)}),Array.from(e).forEach(function(e){var n=e.split("-").map(Number),l=n[0],c=n[1];if(t.length>l&&u.length>c){var s=t[l],d=u[c],f=_(s.rowPath||[s.position]);if(null==d?void 0:d.isEditable){var v;if(v="string"===d.type?"":"number"===d.type?null:"boolean"!==d.type&&("date"===d.type?null:"lineAreaChart"===d.type||"barChart"===d.type||Array.isArray(K(s.row,d.accessor))?[]:""),j(s.row,d.accessor,v),o){var h="".concat(f,"-").concat(d.accessor),p=o.get(h);p&&p.updateContent(v)}null==r||r({accessor:d.accessor,newValue:v,row:s.row,rowIndex:l}),i.add(e)}else a.add(e)}}),{deletedCells:i,warningCells:a}}(b,X,r,c,s),n=e.deletedCells,t=e.warningCells;n.size>0&&(D(n),setTimeout(function(){return D(new Set)},800)),t.size>0&&(W(t),setTimeout(function(){return W(new Set)},800))}},[b,X,r,c,s]),Q=l(function(e,n){for(var t=new Set,o=Math.min(e.rowIndex,n.rowIndex),i=Math.max(e.rowIndex,n.rowIndex),a=Math.min(e.colIndex,n.colIndex),u=Math.max(e.colIndex,n.colIndex),l=o;i>=l;l++)for(var c=a;u>=c;c++)if(l>=0&&r.length>l){if(h&&0===c)continue;var s=r[l],d=_(s.rowPath||[s.position]);t.add(oe({colIndex:c,rowIndex:l,rowId:d}))}S(new Set),H(null),x(t),k(n),setTimeout(function(){return re(n,f,m)},0)},[r,f,h,m]),ee=l(function(e){if(e.rowIndex>=0&&r.length>e.rowIndex&&e.colIndex>=0&&(h?X.length:X.length-1)>=e.colIndex){var n=oe(e);S(new Set),H(null),x(new Set([n])),k(e),setTimeout(function(){return re(e,f,m)},0)}},[X.length,r.length,f,h,m]),ne=l(function(e,n){void 0===n&&(n=!1),x(new Set),k(null),S(function(t){var r=new Set(n?t:[]);return e.forEach(function(e){return r.add(e)}),r}),e.length>0&&H(e[e.length-1])},[]);!function(e){var n=e.copyToClipboard,t=e.deleteSelectedCells,r=e.enableRowSelection,i=void 0!==r&&r,a=e.initialFocusedCell,u=e.leafHeaders,l=e.pasteFromClipboard,c=e.selectCellRange,s=e.selectSingleCell,d=e.selectableCells,f=e.selectedCells,v=e.setLastSelectedColumnIndex,h=e.setSelectedCells,p=e.setSelectedColumns,w=e.startCell,m=e.tableRows;o(function(){var e=function(e){if(d&&a&&0!==f.size){var c=document.activeElement;if(!(c instanceof HTMLInputElement||c instanceof HTMLTextAreaElement||c instanceof HTMLSelectElement||"true"===(null==c?void 0:c.getAttribute("contenteditable")))){var s=a.rowIndex,R=a.colIndex,S=a.rowId;if(!e.ctrlKey&&!e.metaKey||"c"!==e.key){if((e.ctrlKey||e.metaKey)&&"v"===e.key)return e.preventDefault(),void l();if((e.ctrlKey||e.metaKey)&&"a"===e.key){e.preventDefault();for(var M=new Set,N=0;m.length>N;N++)for(var H=0;u.length>H;H++){var E=i?H+1:H,T=m[N],k=_(T.rowPath||[T.position]);M.add("".concat(N,"-").concat(E,"-").concat(k))}return h(M),p(new Set),void v(null)}if("Delete"===e.key||"Backspace"===e.key)return e.preventDefault(),void t();var A=m[s];if((A?_(A.rowPath||[A.position]):null)!==S){var P=m.findIndex(function(e){return _(e.rowPath||[e.position])===S});if(-1===P)return;s=P}var D=function(e,n,t){var r=e,o=n;return"up"===t?r=0:"down"===t?r=m.length-1:"left"===t?o=i?1:0:"right"===t&&(o=i?u.length:u.length-1),{rowIndex:r,colIndex:o}};"ArrowUp"===e.key?(e.preventDefault(),r(e,s,R,D)):"ArrowDown"===e.key?(e.preventDefault(),o(e,s,R,D)):"ArrowLeft"===e.key||"Tab"===e.key&&e.shiftKey?(e.preventDefault(),g(e,s,R,D)):"ArrowRight"===e.key||"Tab"===e.key?(e.preventDefault(),b(e,s,R,D)):"Home"===e.key?(e.preventDefault(),x(e,s)):"End"===e.key?(e.preventDefault(),y(e,s)):"PageUp"===e.key?(e.preventDefault(),I(e,s,R)):"PageDown"===e.key?(e.preventDefault(),C(e,s,R)):"Escape"===e.key&&(h(new Set),p(new Set),v(null),w.current=null)}else n()}}},r=function(e,n,t,r){if(e.shiftKey){w.current||(w.current=a);var o=n-1;if((e.ctrlKey||e.metaKey)&&(o=r(n,t,"up").rowIndex),o>=0){var i=_((u=m[o]).rowPath||[u.position]);c(w.current,{rowIndex:o,colIndex:t,rowId:i})}}else if(n>0){var u;o=n-1,(e.ctrlKey||e.metaKey)&&(o=r(n,t,"up").rowIndex),i=_((u=m[o]).rowPath||[u.position]),s({rowIndex:o,colIndex:t,rowId:i}),w.current=null}},o=function(e,n,t,r){if(e.shiftKey){w.current||(w.current=a);var o=n+1;if((e.ctrlKey||e.metaKey)&&(o=r(n,t,"down").rowIndex),m.length>o){var i=_((u=m[o]).rowPath||[u.position]);c(w.current,{rowIndex:o,colIndex:t,rowId:i})}}else if(m.length-1>n){var u;o=n+1,(e.ctrlKey||e.metaKey)&&(o=r(n,t,"down").rowIndex),i=_((u=m[o]).rowPath||[u.position]),s({rowIndex:o,colIndex:t,rowId:i}),w.current=null}},g=function(e,n,t,r){if(e.shiftKey&&"ArrowLeft"===e.key){w.current||(w.current=a);var o=t-1;if(e.ctrlKey||e.metaKey)o=r(n,t,"left").colIndex;else if(i&&0===o)return;if(o>=0){var u=_((l=m[n]).rowPath||[l.position]);c(w.current,{rowIndex:n,colIndex:o,rowId:u})}}else if(t>0){if(o=t-1,(e.ctrlKey||e.metaKey)&&"ArrowLeft"===e.key)o=r(n,t,"left").colIndex;else if(i&&0===o)return;var l;0>o||(u=_((l=m[n]).rowPath||[l.position]),s({rowIndex:n,colIndex:o,rowId:u}),w.current=null)}},b=function(e,n,t,r){var o=i?u.length:u.length-1;if(e.shiftKey&&"ArrowRight"===e.key){w.current||(w.current=a);var l=t+1;if((e.ctrlKey||e.metaKey)&&(l=r(n,t,"right").colIndex),o>=l){var d=_((f=m[n]).rowPath||[f.position]);c(w.current,{rowIndex:n,colIndex:l,rowId:d})}}else if(o>t){var f;l=t+1,(e.ctrlKey||e.metaKey)&&"ArrowRight"===e.key&&(l=r(n,t,"right").colIndex),l>o||(d=_((f=m[n]).rowPath||[f.position]),s({rowIndex:n,colIndex:l,rowId:d}),w.current=null)}},x=function(e,n,t){if(e.shiftKey){w.current||(w.current=a);var r=n,o=i?1:0;(e.ctrlKey||e.metaKey)&&(r=0);var u=_((l=m[r]).rowPath||[l.position]);c(w.current,{rowIndex:r,colIndex:o,rowId:u})}else{var l;r=n,o=i?1:0,(e.ctrlKey||e.metaKey)&&(r=0),u=_((l=m[r]).rowPath||[l.position]),s({rowIndex:r,colIndex:o,rowId:u}),w.current=null}},y=function(e,n,t){if(e.shiftKey){w.current||(w.current=a);var r=n,o=i?u.length:u.length-1;(e.ctrlKey||e.metaKey)&&(r=m.length-1);var l=_((d=m[r]).rowPath||[d.position]);c(w.current,{rowIndex:r,colIndex:o,rowId:l})}else{var d;r=n,o=i?u.length:u.length-1,(e.ctrlKey||e.metaKey)&&(r=m.length-1),l=_((d=m[r]).rowPath||[d.position]),s({rowIndex:r,colIndex:o,rowId:l}),w.current=null}},I=function(e,n,t){var r=Math.max(0,n-10);if(e.shiftKey){w.current||(w.current=a);var o=_((i=m[r]).rowPath||[i.position]);c(w.current,{rowIndex:r,colIndex:t,rowId:o})}else{var i;o=_((i=m[r]).rowPath||[i.position]),s({rowIndex:r,colIndex:t,rowId:o}),w.current=null}},C=function(e,n,t){var r=Math.min(m.length-1,n+10);if(e.shiftKey){w.current||(w.current=a);var o=_((i=m[r]).rowPath||[i.position]);c(w.current,{rowIndex:r,colIndex:t,rowId:o})}else{var i;o=_((i=m[r]).rowPath||[i.position]),s({rowIndex:r,colIndex:t,rowId:o}),w.current=null}};return document.addEventListener("keydown",e),function(){document.removeEventListener("keydown",e)}},[d,a,m,u,s,c,f,h,p,v,n,l,t,w,i])}({selectableCells:n,initialFocusedCell:T,tableRows:r,leafHeaders:X,selectSingleCell:ee,selectCellRange:Q,selectedCells:b,setSelectedCells:x,setSelectedColumns:S,setLastSelectedColumnIndex:H,copyToClipboard:Y,pasteFromClipboard:$,deleteSelectedCells:Z,startCell:V,enableRowSelection:h});var te=l(function(e,n){var t=new Set,o=new Map;r.forEach(function(e,n){var t=_(e.rowPath||[e.position]);o.set(t+"",n)});for(var i=o.get(e.rowId+""),a=o.get(n.rowId+""),u=void 0!==i?i:e.rowIndex,l=void 0!==a?a:n.rowIndex,c=Math.min(u,l),s=Math.max(u,l),d=Math.min(e.colIndex,n.colIndex),f=Math.max(e.colIndex,n.colIndex),v=c;s>=v;v++)for(var p=d;f>=p;p++)if(v>=0&&r.length>v){if(h&&0===p)continue;var w=r[v],m=_(w.rowPath||[w.position]);t.add(oe({colIndex:p,rowIndex:v,rowId:m}))}x(t)},[r,h]),ie=l(function(e,n){var t=document.querySelector(".st-body-container");if(!t)return null;var r=t.getBoundingClientRect(),o=Array.from(document.querySelectorAll(".st-cell[data-row-index][data-col-index]:not(.st-selection-cell)"));if(0===o.length)return null;var i=Math.max(r.left,Math.min(r.right,e)),a=Math.max(r.top,Math.min(r.bottom,n)),u=null,l=1/0;if(o.forEach(function(e){if(e instanceof HTMLElement){var n=e,t=n.getBoundingClientRect(),r=t.top+t.height/2,o=Math.sqrt(Math.pow(t.left+t.width/2-i,2)+Math.pow(r-a,2));l>o&&(l=o,u=n)}}),null!==u){var c=u,s=parseInt(c.getAttribute("data-row-index")||"-1",10),d=parseInt(c.getAttribute("data-col-index")||"-1",10),f=c.getAttribute("data-row-id");if(s>=0&&d>=0&&null!==f)return{rowIndex:s,colIndex:d,rowId:f}}return null},[]),ae=l(function(e,n){var t=document.elementFromPoint(e,n);if(!t)return null;var r=t.closest(".st-cell");if(r instanceof HTMLElement){var o=parseInt(r.getAttribute("data-row-index")||"-1",10),i=parseInt(r.getAttribute("data-col-index")||"-1",10),a=r.getAttribute("data-row-id");if(o>=0&&i>=0&&null!==a)return{rowIndex:o,colIndex:i,rowId:a}}return ie(e,n)},[ie]),ue=l(function(e,n){var t=document.querySelector(".st-body-container");if(t){var r=t.getBoundingClientRect();r.top+50>n?t.scrollTop-=10*Math.min(3,1+Math.max(0,r.top-n)/100):n>r.bottom-50&&(t.scrollTop+=10*Math.min(3,1+Math.max(0,n-r.bottom)/100));var o=document.querySelector(".st-body-main");o&&(r.left+50>e?o.scrollLeft-=10*Math.min(3,1+Math.max(0,r.left-e)/100):e>r.right-50&&(o.scrollLeft+=10*Math.min(3,1+Math.max(0,e-r.right)/100)))}},[]),le=l(function(e){var n=e.colIndex,t=oe({colIndex:n,rowIndex:e.rowIndex,rowId:e.rowId}),r=b.has(t),o=R.has(n);return r||o},[b,R]),ce=l(function(e){var n=e.colIndex,t=e.rowIndex,o=e.rowId;if(q)return"";var i=[],a=r[t-1],u=a?_(a.rowPath||[a.position]):null,l=r[t+1],c=l?_(l.rowPath||[l.position]):null,s=null!==u?{colIndex:n,rowIndex:t-1,rowId:u}:null,d=null!==c?{colIndex:n,rowIndex:t+1,rowId:c}:null,f={colIndex:n-1,rowIndex:t,rowId:o},v={colIndex:n+1,rowIndex:t,rowId:o};return(!s||!le(s)||R.has(n)&&0===t)&&i.push("st-selected-top-border"),(!d||!le(d)||R.has(n)&&t===r.length-1)&&i.push("st-selected-bottom-border"),le(f)||i.push("st-selected-left-border"),le(v)||i.push("st-selected-right-border"),i.join(" ")},[q,le,r,R]),se=u(function(){return T?function(e){return e.rowIndex===T.rowIndex&&e.colIndex===T.colIndex&&e.rowId===T.rowId}:function(){return!1}},[T]),de=l(function(e){var n=oe({colIndex:e.colIndex,rowIndex:e.rowIndex,rowId:e.rowId});return P.has(n)},[P]),fe=l(function(e){var n=oe({colIndex:e.colIndex,rowIndex:e.rowIndex,rowId:e.rowId});return L.has(n)},[L]);return{getBorderClass:ce,handleMouseDown:function(e){var t=e.colIndex,r=e.rowIndex,o=e.rowId;if(n){z.current=!0,G(!0),V.current={rowIndex:r,colIndex:t,rowId:o},setTimeout(function(){S(new Set),H(null);var e=oe({colIndex:t,rowIndex:r,rowId:o});x(new Set([e])),k({rowIndex:r,colIndex:t,rowId:o})},0);var i=null,a=null,u=null,l=0,c=function(){if(z.current&&V.current){if(null!==i&&null!==a){ue(i,a);var e=Date.now();if(e-l>=16){var n=ae(i,a);n&&te(V.current,n),l=e}}u=requestAnimationFrame(c)}else null!==u&&(cancelAnimationFrame(u),u=null)},s=function(e){z.current&&V.current&&(i=e.clientX,a=e.clientY)},d=function(){z.current=!1,G(!1),null!==u&&(cancelAnimationFrame(u),u=null),document.removeEventListener("mousemove",s),document.removeEventListener("mouseup",d)};document.addEventListener("mousemove",s),document.addEventListener("mouseup",d),u=requestAnimationFrame(c)}},handleMouseOver:function(e){n&&z.current&&V.current&&te(V.current,{colIndex:e.colIndex,rowIndex:e.rowIndex,rowId:e.rowId})},isCopyFlashing:de,isWarningFlashing:fe,isInitialFocusedCell:se,isSelected:le,lastSelectedColumnIndex:N,pasteFromClipboard:$,selectColumns:ne,selectedCells:b,selectedColumns:R,setInitialFocusedCell:k,setSelectedCells:x,setSelectedColumns:S,deleteSelectedCells:Z,columnsWithSelectedCells:U,rowsWithSelectedCells:J,startCell:V}}({selectableCells:mn,headers:Vt,tableRows:io,onCellEdit:Ue,cellRegistry:fo.current,collapsedHeaders:or,rowHeight:_n,enableRowSelection:ne,copyHeadersToClipboard:W,customTheme:Vn}),po=ho.getBorderClass,wo=ho.handleMouseDown,mo=ho.handleMouseOver,go=ho.isCopyFlashing,bo=ho.isInitialFocusedCell,xo=ho.isSelected,yo=ho.isWarningFlashing,Io=ho.selectColumns,Co=ho.selectedCells,Ro=ho.selectedColumns,So=ho.setInitialFocusedCell,Mo=ho.setSelectedCells,No=ho.setSelectedColumns,Ho=ho.columnsWithSelectedCells,Eo=ho.rowsWithSelectedCells,To=ho.startCell,ko=l(function(e){lo(e),setTimeout(function(){_r({accessor:e})},0)},[lo,_r]),Ao=l(function(e){_t(e)},[]);!function(e){var n=e.selectableColumns,t=e.selectedCells,r=e.selectedColumns,i=e.setSelectedCells,a=e.setSelectedColumns,u=e.activeHeaderDropdown,l=e.setActiveHeaderDropdown,c=e.startCell;o(function(){var e=function(e){var o=e.target;o.closest(".editable-cell-input")&&o.closest(".st-header-cell")||(u&&l&&(o.closest(".st-header-cell")||o.closest(".dropdown-content")||l(null)),o.closest(".st-cell")||n&&(o.classList.contains("st-header-cell")||o.classList.contains("st-header-label")||o.classList.contains("st-header-label-text"))||(t.size>0&&i(new Set),r.size>0&&a(new Set),c&&(c.current=null)))};return document.addEventListener("mousedown",e),function(){document.removeEventListener("mousedown",e)}},[n,t,r,i,a,u,l,c])}({selectableColumns:bn,selectedCells:Co,selectedColumns:Ro,setSelectedCells:Mo,setSelectedColumns:No,activeHeaderDropdown:er,setActiveHeaderDropdown:nr,startCell:To}),function(e){var n=e.forceUpdate,t=e.tableBodyContainerRef,r=e.setScrollbarWidth;g(function(){var e=function(){n(),t.current&&r(t.current.offsetWidth-t.current.clientWidth)};return window.addEventListener("resize",e),function(){window.removeEventListener("resize",e)}},[n,t,r])}({forceUpdate:ht,tableBodyContainerRef:ft,setScrollbarWidth:Wt}),function(e){var n=e.onGridReady;o(function(){null==n||n()},[n])}({onGridReady:Ze}),function(e){var n=e.cellRegistryRef,t=e.clearAllFilters,r=e.clearFilter,i=e.currentPage,a=e.expandedDepths,u=e.filters,l=e.flattenedRows,c=e.headerRegistryRef,s=e.headers,d=e.includeHeadersInCSVExport,f=e.onPageChange,v=e.paginatableRows,h=e.rowGrouping,p=e.rows,w=e.rowsPerPage,m=e.setCollapsedRows,g=e.setCurrentPage,b=e.setExpandedDepths,x=e.setExpandedRows,y=e.sort,S=e.tableRef,M=e.totalRowCount,N=e.updateFilter,H=e.updateSort,E=e.visibleRows;o(function(){S&&(S.current={updateData:function(e){var t=e.accessor,r=e.rowIndex,o=e.newValue,i=null==p?void 0:p[r];if(i){var a=_([r]),u=F({rowId:a,accessor:t}),l=n.current.get(u);l&&l.updateContent(o),void 0!==K(i,t)&&j(i,t,o)}},setHeaderRename:function(e){var n=c.current.get(e.accessor+"");n&&n.setEditing(!0)},getVisibleRows:function(){return E},getAllRows:function(){return l},getHeaders:function(){return s},exportToCSV:function(e){!function(e,n,t,r){void 0===r&&(r=!0);var o=function(e,n,t){void 0===t&&(t=!0);var r=function(e){var n=[],t=function(e){for(var r=0,o=e;o.length>r;r++){var i=o[r];i.hide||i.isSelectionColumn||i.excludeFromCsv||(i.children&&i.children.length>0?(i.singleRowChildren&&n.push(i),t(i.children)):n.push(i))}};return t(e),n}(n),o=r.map(function(e){return et(e.label)}).join(","),i=e.map(function(e,n){var t=e.row;return r.map(function(e,r){var o=K(t,e.accessor);if(e.exportValueGetter){var i=e.valueFormatter?e.valueFormatter({accessor:e.accessor,colIndex:r,row:t,rowIndex:n,value:o}):void 0,a=e.exportValueGetter({accessor:e.accessor,colIndex:r,row:t,rowIndex:n,value:o,formattedValue:i});return et(a)}return!1!==e.useFormattedValueForCSV&&e.valueFormatter?(i=e.valueFormatter({accessor:e.accessor,colIndex:r,row:t,rowIndex:n,value:o}),et(i)):et(o)}).join(",")});return(t?R([o],i,!0):i).join("\n")}(e,n,r);!function(e,n){void 0===n&&(n="table-export.csv");var t=new Blob([e],{type:"text/csv;charset=utf-8;"}),r=document.createElement("a"),o=URL.createObjectURL(t);r.setAttribute("href",o),r.setAttribute("download",n),r.style.visibility="hidden",document.body.appendChild(r),r.click(),document.body.removeChild(r),URL.revokeObjectURL(o)}(o,t)}(l,s,(void 0===e?{}:e).filename,d)},getSortState:function(){return y},applySortState:nt(H),getFilterState:function(){return u},applyFilter:nt(N),clearFilter:nt(r),clearAllFilters:nt(t),getCurrentPage:function(){return i},getTotalPages:function(){return Math.ceil((null!=M?M:v.length)/w)},setPage:function(e){return I(void 0,void 0,void 0,function(){var n;return C(this,function(t){switch(t.label){case 0:return n=Math.ceil((null!=M?M:v.length)/w),1>e||e>n?[3,2]:(g(e),f?[4,f(e)]:[3,2]);case 1:t.sent(),t.label=2;case 2:return[2]}})})},expandAll:function(){var e=Array.from({length:(null==h?void 0:h.length)||0},function(e,n){return n});b(new Set(e)),x(new Map),m(new Map)},collapseAll:function(){b(new Set),x(new Map),m(new Map)},expandDepth:function(e){b(function(n){for(var t=new Set(n),r=0;e>=r;r++)t.add(r);return t}),x(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t}),m(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t})},collapseDepth:function(e){b(function(n){var t=new Set(n);return t.delete(e),t}),x(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t}),m(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t})},toggleDepth:function(e){b(function(n){var t=new Set(n);return t.has(e)?t.delete(e):t.add(e),t}),x(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t}),m(function(n){var t=new Map(n);return Array.from(t.entries()).forEach(function(n){n[1]===e&&t.delete(n[0])}),t})},setExpandedDepths:function(e){b(e)},getExpandedDepths:function(){return a},getGroupingProperty:function(e){return null==h?void 0:h[e]},getGroupingDepth:function(e){var n;return null!==(n=null==h?void 0:h.indexOf(e))&&void 0!==n?n:-1}})},[n,t,r,i,a,u,l,c,s,d,f,v,h,e.rowIndexMap,p,w,e.serverSidePagination,m,g,b,x,e.setRows,e.shouldPaginate,y,S,M,N,H,E])}({cellRegistryRef:fo,clearAllFilters:zr,clearFilter:Gr,currentPage:zt,expandedDepths:hr,filters:Br,flattenedRows:Xr,headerRegistryRef:vo,headers:ar,includeHeadersInCSVExport:Fe,onPageChange:tn,paginatableRows:$r,rowGrouping:sn,rowIndexMap:St,rows:qt,rowsPerPage:pn,serverSidePagination:yn,setCollapsedRows:yr,setCurrentPage:Kt,setExpandedDepths:pr,setExpandedRows:gr,setRows:xt,shouldPaginate:Cn,sort:Vr,tableRef:Tn,totalRowCount:Pn,updateFilter:qr,updateSort:_r,visibleRows:ao}),function(e){var n=e.filters,t=e.onFilterChange;o(function(){null==t||t(n)},[n,t])}({filters:Br,onFilterChange:$e}),function(e){var n=e.sort,t=e.onSortChange,r=Ge(n);o(function(){!n||(null==r?void 0:r.key.accessor)===n.key.accessor&&(null==r?void 0:r.direction)===n.direction?!n&&r&&(null==t||t(null)):null==t||t(n)},[n,r,t])}({sort:Vr,onSortChange:an});var Po=l(function(e){uo(e),setTimeout(function(){qr(e)},0)},[uo,qr]),Do=!It&&0===io.length;return e(ae,x({value:{activeHeaderDropdown:er,allowAnimations:c,areAllRowsSelected:Et,autoExpandColumns:d,canExpandRowGroup:f,cellRegistry:fo.current,cellUpdateFlash:h,clearSelection:Ft,collapsedHeaders:or,columnBorders:m,columnReordering:A,columnResizing:D,columnsWithSelectedCells:Ho,copyHeadersToClipboard:W,draggedHeaderRef:ot,editColumns:z,emptyStateRenderer:Y,enableHeaderEditing:Z,enableRowSelection:ne,errorStateRenderer:te,expandedDepths:hr,expandIcon:fe,filterIcon:Ie,filters:Br,forceUpdate:ht,getBorderClass:po,handleApplyFilter:Po,handleClearAllFilters:zr,handleClearFilter:Gr,handleMouseDown:wo,handleMouseOver:mo,handleRowSelect:At,handleSelectAll:Pt,handleToggleRow:Dt,headerCollapseIcon:Se,headerContainerRef:vt,headerDropdown:Me,headerExpandIcon:He,headerHeight:Un,headerRegistry:vo.current,headers:ar,heightOffsets:so,hoveredHeaderRef:it,includeHeadersInCSVExport:Fe,isAnimating:co,isCopyFlashing:go,isInitialFocusedCell:bo,isLoading:It,isResizing:Jt,isRowSelected:Ht,isScrolling:$t,isSelected:xo,isWarningFlashing:yo,loadingStateRenderer:ze,mainBodyRef:at,maxHeaderDepth:Hr,nextIcon:Ve,onCellClick:_e,onCellEdit:Ue,onColumnOrderChange:Je,onColumnSelect:Xe,onColumnVisibilityChange:Ye,onHeaderEdit:Qe,onLoadMore:en,onRowGroupExpand:rn,onSort:ko,onTableHeaderDragEnd:Ao,pinnedLeftRef:ut,pinnedRightRef:dt,prevIcon:ln,rowButtons:cn,rowGrouping:sn,rowHeight:_n,rowStateMap:wt,rows:bt,rowsWithSelectedCells:Eo,scrollbarWidth:Lt,selectColumns:Io,selectableColumns:bn,selectedColumns:Ro,selectedRowCount:Tt,selectedRows:Mt,selectedRowsData:kt,setActiveHeaderDropdown:nr,setCollapsedHeaders:ir,setHeaders:_t,setInitialFocusedCell:So,setIsResizing:Xt,setIsScrolling:Zt,setRowStateMap:mt,setSelectedCells:Mo,setSelectedColumns:No,setSelectedRows:Nt,setExpandedDepths:pr,setExpandedRows:gr,setCollapsedRows:yr,shouldPaginate:Cn,sortDownIcon:Sn,sortUpIcon:Nn,tableBodyContainerRef:ft,tableEmptyStateRenderer:En,tableRows:io,theme:An,customTheme:Vn,expandedRows:mr,collapsedRows:xr,useHoverRowBackground:Fn,useOddColumnBackground:Ln,useOddEvenRowBackground:jn}},{children:t("div",x({className:"simple-table-root st-wrapper theme-".concat(An," ").concat(null!=p?p:""," ").concat(m?"st-column-borders":""),style:Ke?{maxHeight:Ke,height:void 0===ro?"auto":Ke}:Ee?{height:Ee}:{}},{children:[e(Yn,{children:t("div",x({className:"st-wrapper-container"},{children:[t("div",x({className:"st-content-wrapper"},{children:[e(Wn,{hideHeader:Pe,pinnedLeftWidth:Pr,pinnedRightWidth:Dr,setScrollTop:cr,setScrollDirection:fr,shouldShowEmptyState:Do,sort:Vr,tableRows:io,rowsToRender:ao}),e(Xn,{columnEditorText:E,editColumns:z,editColumnsInitOpen:J,headers:Vt,position:S})]})),!Do&&e(Bn,{mainBodyRef:at,mainBodyWidth:Ar,pinnedLeftWidth:Pr,pinnedRightWidth:Dr,pinnedLeftContentWidth:Fr,pinnedRightContentWidth:Or,tableBodyContainerRef:ft}),!Do&&e(le,{currentPage:zt,footerRenderer:Ce,hideFooter:ke,onPageChange:Kt,onNextPage:nn,onUserPageChange:tn,rowsPerPage:pn,shouldPaginate:Cn,totalPages:Math.ceil((null!=Pn?Pn:$r.length)/pn),totalRows:null!=Pn?Pn:$r.length})]}))}),e("div",x({"aria-live":"polite","aria-atomic":"true",className:"st-sr-only"},{children:Cr}))]}))}))},vt=function(n){var r=n.data,o=n.width,i=void 0===o?"100%":o,a=n.height,u=void 0===a?30:a,l=n.color,c=n.fillColor,s=n.fillOpacity,d=void 0===s?.2:s,f=n.strokeWidth,v=void 0===f?2:f,h=n.className,p=void 0===h?"":h,w=n.min,m=n.max;if(!r||0===r.length)return null;var g=void 0!==w?w:Math.min.apply(Math,r),b=(void 0!==m?m:Math.max.apply(Math,r))-g||1,y=u,I=r.map(function(e,n){return{x:n/(r.length-1)*100,y:y-(e-g)/b*y}}).map(function(e,n){return"".concat(0===n?"M":"L"," ").concat(e.x,",").concat(e.y)}).join(" "),C="\n ".concat(I,"\n L ").concat(100,",").concat(y,"\n L 0,").concat(y,"\n Z\n ");return t("svg",x({width:i,height:u,viewBox:"0 0 100 ".concat(y),preserveAspectRatio:"none",className:"st-line-area-chart ".concat(p),style:{display:"block"}},{children:[e("path",{d:C,fill:c||"var(--st-chart-fill-color)",fillOpacity:d,stroke:"none",vectorEffect:"non-scaling-stroke"}),e("path",{d:I,fill:"none",stroke:l||"var(--st-chart-color)",strokeWidth:v,strokeLinecap:"round",strokeLinejoin:"round",vectorEffect:"non-scaling-stroke"})]}))},ht=Object.freeze({__proto__:null,default:vt}),pt=function(n){var t=n.data,r=n.width,o=void 0===r?"100%":r,i=n.height,a=void 0===i?30:i,u=n.color,l=n.gap,c=void 0===l?2:l,s=n.className,d=void 0===s?"":s,f=n.min,v=n.max;if(!t||0===t.length)return null;var h=void 0!==f?f:Math.min.apply(Math,t),p=void 0!==v?v:Math.max.apply(Math,t),w=p-h||1,m=a,g=(100-c*(t.length-1))/t.length,b=0>h,y=b?m*(p/w):m;return e("svg",x({width:o,height:a,viewBox:"0 0 100 ".concat(m),preserveAspectRatio:"none",className:"st-bar-chart ".concat(d),style:{display:"block"}},{children:t.map(function(n,t){var r=t*(g+c),o=(n-h)/w*m,i=m-o,a=o;return b&&(0>n?(a=Math.abs(n)/w*m,i=y):i=y-(a=n/w*m)),e("rect",{x:r,y:i,width:g,height:a,fill:u||"var(--st-chart-color)",rx:1},t)})}))},wt=Object.freeze({__proto__:null,default:pt});export{rt as A,pt as B,he as C,ct as D,we as F,vt as L,S as R,dt as S,y as _,Ge as a,x as b,M as c,ut as d,st as e,at as f,ce as g,se as h,de as i,fe as j,ve as k,pe as l,me as m,ue as u};
|
|
2
|
+
//# sourceMappingURL=index-2e852ec7.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-2e852ec7.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/dist/index.es.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export{g as AngleDownIcon,h as AngleLeftIcon,i as AngleRightIcon,j as AngleUpIcon,k as AscIcon,B as BarChart,C as CheckIcon,e as DEFAULT_CUSTOM_THEME,D as DefaultEmptyState,l as DescIcon,F as FilterIcon,L as LineAreaChart,m as SelectIcon,S as SimpleTable}from"./index-
|
|
1
|
+
export{g as AngleDownIcon,h as AngleLeftIcon,i as AngleRightIcon,j as AngleUpIcon,k as AscIcon,B as BarChart,C as CheckIcon,e as DEFAULT_CUSTOM_THEME,D as DefaultEmptyState,l as DescIcon,F as FilterIcon,L as LineAreaChart,m as SelectIcon,S as SimpleTable}from"./index-2e852ec7.js";import"react/jsx-runtime";import"react";
|
|
2
2
|
//# sourceMappingURL=index.es.js.map
|
|
@@ -76,6 +76,7 @@ type HeaderObject = {
|
|
|
76
76
|
isSortable?: boolean;
|
|
77
77
|
label: string;
|
|
78
78
|
minWidth?: number | string;
|
|
79
|
+
sortingOrder?: ("asc" | "desc" | null)[];
|
|
79
80
|
nestedTable?: Omit<SimpleTableProps, "rows" | "loadingStateRenderer" | "errorStateRenderer" | "emptyStateRenderer" | "tableEmptyStateRenderer" | "expandIcon" | "filterIcon" | "sortUpIcon" | "sortDownIcon" | "nextIcon" | "prevIcon" | "headerCollapseIcon" | "headerExpandIcon">;
|
|
80
81
|
pinned?: Pinned;
|
|
81
82
|
singleRowChildren?: boolean;
|
|
@@ -7,7 +7,8 @@ interface OnRowGroupExpandProps {
|
|
|
7
7
|
event: MouseEvent | KeyboardEvent;
|
|
8
8
|
groupingKey?: string;
|
|
9
9
|
isExpanded: boolean;
|
|
10
|
-
rowIndexPath:
|
|
10
|
+
rowIndexPath: number[];
|
|
11
|
+
rowIdPath?: (string | number)[];
|
|
11
12
|
groupingKeys: Accessor[];
|
|
12
13
|
setLoading: (loading: boolean) => void;
|
|
13
14
|
setError: (error: string | null) => void;
|
|
@@ -38,8 +38,8 @@ type TableRefType = {
|
|
|
38
38
|
getCurrentPage: () => number;
|
|
39
39
|
/** Returns the total number of pages */
|
|
40
40
|
getTotalPages: () => number;
|
|
41
|
-
/** Sets the current page (1-indexed) */
|
|
42
|
-
setPage: (page: number) => void
|
|
41
|
+
/** Sets the current page (1-indexed) and triggers onPageChange callback */
|
|
42
|
+
setPage: (page: number) => Promise<void>;
|
|
43
43
|
/** Expand all rows at all depths */
|
|
44
44
|
expandAll: () => void;
|
|
45
45
|
/** Collapse all rows at all depths */
|