simple-table-core 4.0.1 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/{cjs/src/consts → consts}/column-constraints.d.ts +58 -58
- package/dist/{cjs/src/consts → consts}/general-consts.d.ts +32 -32
- package/dist/{cjs/src/core → core}/SimpleTableVanilla.d.ts +370 -369
- package/dist/{src/core → core}/api/TableAPIImpl.d.ts +78 -78
- package/dist/{cjs/src/core → core}/dom/DOMManager.d.ts +52 -52
- package/dist/{cjs/src/core → core}/initialization/TableInitializer.d.ts +34 -34
- package/dist/{cjs/src/core → core}/rendering/RenderOrchestrator.d.ts +174 -172
- package/dist/{src/core → core}/rendering/SectionRenderer.d.ts +119 -119
- package/dist/{cjs/src/core → core}/rendering/TableRenderer.d.ts +126 -120
- package/dist/{src/hooks → hooks}/ariaAnnouncements.d.ts +37 -37
- package/dist/{src/hooks → hooks}/contentHeight.d.ts +29 -29
- package/dist/{cjs/src/hooks → hooks}/expandedDepths.d.ts +69 -69
- package/dist/{cjs/src/hooks → hooks}/handleOutsideClick.d.ts +50 -50
- package/dist/{cjs/src/hooks → hooks}/previousValue.d.ts +30 -30
- package/dist/{src/hooks → hooks}/scrollbarVisibility.d.ts +65 -65
- package/dist/{src/hooks → hooks}/scrollbarWidth.d.ts +52 -52
- package/dist/{src/hooks → hooks}/useAggregatedRows.d.ts +14 -14
- package/dist/{src/hooks → hooks}/useQuickFilter.d.ts +14 -14
- package/dist/{src/hooks → hooks}/windowResize.d.ts +31 -31
- package/dist/{cjs/src/icons → icons}/AngleDownIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/AngleLeftIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/AngleRightIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/AngleUpIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/AscIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/CheckIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/DescIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/DragIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/FilterIcon.d.ts +1 -1
- package/dist/{cjs/src/icons → icons}/SelectIcon.d.ts +1 -1
- package/dist/{src/icons → icons}/index.d.ts +14 -14
- package/dist/{cjs/src/index.d.ts → index.d.ts} +56 -58
- package/dist/index.es.js +1 -1
- package/dist/{cjs/src/managers → managers}/AnimationCoordinator.d.ts +356 -356
- package/dist/{cjs/src/managers → managers}/AutoScaleManager.d.ts +33 -33
- package/dist/{src/managers → managers}/ColumnManager.d.ts +42 -42
- package/dist/{cjs/src/managers → managers}/DimensionManager.d.ts +84 -84
- package/dist/{src/managers → managers}/DragHandlerManager.d.ts +44 -44
- package/dist/{src/managers → managers}/FilterManager.d.ts +36 -36
- package/dist/{src/managers → managers}/PivotManager.d.ts +35 -35
- package/dist/{cjs/src/managers → managers}/RowManager.d.ts +56 -56
- package/dist/{src/managers → managers}/RowSelectionManager.d.ts +72 -72
- package/dist/{cjs/src/managers → managers}/ScrollManager.d.ts +38 -38
- package/dist/{src/managers → managers}/SectionScrollController.d.ts +74 -74
- package/dist/{src/managers → managers}/SelectionManager/SelectionManager.d.ts +251 -251
- package/dist/{src/managers → managers}/SelectionManager/index.d.ts +2 -2
- package/dist/{src/managers → managers}/SelectionManager/keyboardUtils.d.ts +7 -7
- package/dist/{cjs/src/managers → managers}/SelectionManager/mouseUtils.d.ts +16 -16
- package/dist/{src/managers → managers}/SelectionManager/selectionRangeUtils.d.ts +7 -7
- package/dist/{src/managers → managers}/SelectionManager/types.d.ts +28 -28
- package/dist/{src/managers → managers}/SortManager.d.ts +42 -42
- package/dist/{cjs/src/managers → managers}/TableManager.d.ts +72 -72
- package/dist/{src/types → types}/AggregationTypes.d.ts +8 -8
- package/dist/{cjs/src/types → types}/AnimationsConfig.d.ts +16 -16
- package/dist/{src/types → types}/BoundingBox.d.ts +11 -11
- package/dist/{cjs/src/types → types}/Cell.d.ts +7 -7
- package/dist/{cjs/src/types → types}/CellChangeProps.d.ts +9 -9
- package/dist/{cjs/src/types → types}/CellClickProps.d.ts +11 -11
- package/dist/{src/types → types}/CellRendererProps.d.ts +32 -32
- package/dist/{cjs/src/types → types}/CellValue.d.ts +2 -2
- package/dist/{src/types → types}/ColumnEditorConfig.d.ts +42 -42
- package/dist/{src/types → types}/ColumnEditorCustomRendererProps.d.ts +14 -14
- package/dist/{src/types → types}/ColumnEditorRowRendererProps.d.ts +39 -39
- package/dist/{src/types → types}/ColumnVisibilityTypes.d.ts +4 -4
- package/dist/{src/types → types}/CustomTheme.d.ts +28 -28
- package/dist/{src/types → types}/DragHandlerProps.d.ts +14 -14
- package/dist/{src/types → types}/EnumOption.d.ts +5 -5
- package/dist/{cjs/src/types → types}/FilterTypes.d.ts +31 -31
- package/dist/{src/types → types}/FlattenedHeader.d.ts +10 -10
- package/dist/{cjs/src/types → types}/FooterPosition.d.ts +3 -3
- package/dist/{src/types → types}/FooterRendererProps.d.ts +17 -17
- package/dist/{cjs/src/types → types}/GenerateRowIdParams.d.ts +11 -11
- package/dist/{cjs/src/types → types}/GetRowId.d.ts +16 -16
- package/dist/{cjs/src/types → types}/HandleResizeStartProps.d.ts +25 -25
- package/dist/{cjs/src/types → types}/HeaderDropdownProps.d.ts +14 -14
- package/dist/{src/types → types}/HeaderObject.d.ts +152 -133
- package/dist/{cjs/src/types → types}/HeaderRendererProps.d.ts +17 -17
- package/dist/{src/types → types}/IconsConfig.d.ts +19 -19
- package/dist/{cjs/src/types → types}/OnNextPage.d.ts +2 -2
- package/dist/{cjs/src/types → types}/OnRowGroupExpandProps.d.ts +16 -16
- package/dist/{cjs/src/types → types}/OnSortProps.d.ts +3 -3
- package/dist/{cjs/src/types → types}/PanelSection.d.ts +1 -1
- package/dist/{cjs/src/types → types}/Pinned.d.ts +1 -1
- package/dist/{src/types → types}/PinnedSectionsState.d.ts +6 -6
- package/dist/{cjs/src/types → types}/PivotTypes.d.ts +37 -37
- package/dist/{cjs/src/types → types}/QuickFilterTypes.d.ts +21 -21
- package/dist/{cjs/src/types → types}/Row.d.ts +3 -3
- package/dist/{cjs/src/types → types}/RowButton.d.ts +6 -6
- package/dist/{cjs/src/types → types}/RowId.d.ts +1 -1
- package/dist/{cjs/src/types → types}/RowSelectionChangeProps.d.ts +7 -7
- package/dist/{src/types → types}/RowSelectionMode.d.ts +8 -8
- package/dist/{cjs/src/types → types}/RowState.d.ts +12 -12
- package/dist/{cjs/src/types → types}/RowStateRendererProps.d.ts +18 -18
- package/dist/{src/types → types}/SharedTableProps.d.ts +24 -24
- package/dist/{cjs/src/types → types}/SimpleTableConfig.d.ts +135 -124
- package/dist/{cjs/src/types → types}/SimpleTableProps.d.ts +182 -125
- package/dist/{cjs/src/types → types}/SortColumn.d.ts +8 -8
- package/dist/{cjs/src/types → types}/TableAPI.d.ts +85 -82
- package/dist/{cjs/src/types → types}/TableBodyProps.d.ts +20 -20
- package/dist/{cjs/src/types → types}/TableHeaderProps.d.ts +17 -17
- package/dist/{cjs/src/types → types}/TableHeaderSectionProps.d.ts +19 -19
- package/dist/{src/types → types}/TableRow.d.ts +39 -39
- package/dist/{src/types → types}/TableRowProps.d.ts +29 -29
- package/dist/{cjs/src/types → types}/Theme.d.ts +2 -2
- package/dist/{src/types → types}/UpdateCellProps.d.ts +8 -8
- package/dist/{cjs/src/utils → utils}/accordionAnimation.d.ts +25 -25
- package/dist/{src/utils → utils}/aggregationUtils.d.ts +7 -7
- package/dist/{src/utils → utils}/ariaRowOwnership.d.ts +37 -37
- package/dist/{src/utils → utils}/asRows.d.ts +7 -7
- package/dist/{src/utils → utils}/bodyCell/cellLiveRef.d.ts +9 -9
- package/dist/{cjs/src/utils → utils}/bodyCell/content.d.ts +5 -5
- package/dist/{cjs/src/utils → utils}/bodyCell/editing.d.ts +4 -4
- package/dist/{src/utils → utils}/bodyCell/editors/booleanDropdown.d.ts +2 -2
- package/dist/{src/utils → utils}/bodyCell/editors/datePicker.d.ts +2 -2
- package/dist/{src/utils → utils}/bodyCell/editors/dropdown.d.ts +18 -18
- package/dist/{cjs/src/utils → utils}/bodyCell/editors/enumDropdown.d.ts +2 -2
- package/dist/{cjs/src/utils → utils}/bodyCell/eventTracking.d.ts +3 -3
- package/dist/{cjs/src/utils → utils}/bodyCell/expansion.d.ts +12 -12
- package/dist/{src/utils → utils}/bodyCell/selection.d.ts +7 -7
- package/dist/{cjs/src/utils → utils}/bodyCell/styling.d.ts +11 -11
- package/dist/{src/utils → utils}/bodyCell/types.d.ts +170 -170
- package/dist/{src/utils → utils}/bodyCellRenderer.d.ts +6 -6
- package/dist/{src/utils → utils}/cellClipboardUtils.d.ts +25 -25
- package/dist/{cjs/src/utils → utils}/cellScrollUtils.d.ts +10 -10
- package/dist/{cjs/src/utils → utils}/cellUtils.d.ts +19 -18
- package/dist/{cjs/src/utils → utils}/charts/createBarChart.d.ts +20 -20
- package/dist/{cjs/src/utils → utils}/charts/createLineAreaChart.d.ts +25 -25
- package/dist/{src/utils → utils}/collapseUtils.d.ts +32 -31
- package/dist/{src/utils → utils}/columnEditor/columnEditorUtils.d.ts +27 -27
- package/dist/{src/utils → utils}/columnEditor/createCheckbox.d.ts +21 -21
- package/dist/{src/utils → utils}/columnEditor/createColumnEditor.d.ts +26 -26
- package/dist/{cjs/src/utils → utils}/columnEditor/createColumnEditorPopout.d.ts +23 -23
- package/dist/{src/utils → utils}/columnEditor/createColumnEditorRow.d.ts +41 -41
- package/dist/{cjs/src/utils → utils}/columnIndicesUtils.d.ts +15 -15
- package/dist/{src/utils → utils}/columnVirtualizationUtils.d.ts +128 -128
- package/dist/{cjs/src/utils → utils}/csvExportUtils.d.ts +14 -14
- package/dist/{cjs/src/utils → utils}/dateUtils.d.ts +18 -18
- package/dist/{src/utils → utils}/externalScroll.d.ts +58 -58
- package/dist/{cjs/src/utils → utils}/filterUtils.d.ts +5 -5
- package/dist/{cjs/src/utils → utils}/filters/createBooleanFilter.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/filters/createCustomSelect.d.ts +20 -20
- package/dist/{cjs/src/utils → utils}/filters/createDateFilter.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/filters/createDatePicker.d.ts +10 -10
- package/dist/{cjs/src/utils → utils}/filters/createDropdown.d.ts +33 -33
- package/dist/{cjs/src/utils → utils}/filters/createEnumFilter.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/filters/createFilterActions.d.ts +12 -12
- package/dist/{src/utils → utils}/filters/createFilterDropdown.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/filters/createFilterInput.d.ts +16 -16
- package/dist/{src/utils → utils}/filters/createNumberFilter.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/filters/createStringFilter.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/footer/createTableFooter.d.ts +21 -21
- package/dist/{cjs/src/utils → utils}/formatters.d.ts +3 -3
- package/dist/{cjs/src/utils → utils}/generalUtils.d.ts +4 -4
- package/dist/{src/utils → utils}/headerCell/collapsing.d.ts +6 -6
- package/dist/{cjs/src/utils → utils}/headerCell/dragging.d.ts +5 -5
- package/dist/{src/utils → utils}/headerCell/editing.d.ts +4 -4
- package/dist/{src/utils → utils}/headerCell/eventTracking.d.ts +28 -28
- package/dist/{src/utils → utils}/headerCell/filtering.d.ts +3 -3
- package/dist/{src/utils → utils}/headerCell/resizing.d.ts +3 -3
- package/dist/{src/utils → utils}/headerCell/selection.d.ts +10 -10
- package/dist/{src/utils → utils}/headerCell/sorting.d.ts +3 -3
- package/dist/{cjs/src/utils → utils}/headerCell/styling.d.ts +7 -7
- package/dist/{src/utils → utils}/headerCell/types.d.ts +110 -110
- package/dist/{cjs/src/utils → utils}/headerCellRenderer.d.ts +4 -4
- package/dist/utils/headerLayoutUtils.d.ts +9 -0
- package/dist/{cjs/src/utils → utils}/headerUtils.d.ts +41 -41
- package/dist/{src/utils → utils}/headerWidthUtils.d.ts +121 -121
- package/dist/{src/utils → utils}/horizontalScrollbarRenderer.d.ts +27 -27
- package/dist/{cjs/src/utils → utils}/infiniteScrollUtils.d.ts +145 -145
- package/dist/{cjs/src/utils → utils}/loadingPlaceholderUtils.d.ts +11 -11
- package/dist/{src/utils → utils}/nestedGridRowRenderer.d.ts +50 -50
- package/dist/utils/normalizeConfig.d.ts +62 -0
- package/dist/{cjs/src/utils → utils}/pinnedColumnUtils.d.ts +29 -29
- package/dist/{cjs/src/utils → utils}/pivot/pivotRows.d.ts +16 -16
- package/dist/{src/utils → utils}/propSyncEqual.d.ts +60 -60
- package/dist/{cjs/src/utils → utils}/quickFilterUtils.d.ts +14 -14
- package/dist/{src/utils → utils}/resizeUtils/autoExpandResize.d.ts +32 -32
- package/dist/{cjs/src/utils → utils}/resizeUtils/compensation.d.ts +17 -17
- package/dist/{src/utils → utils}/resizeUtils/domUpdates.d.ts +15 -15
- package/dist/{cjs/src/utils → utils}/resizeUtils/index.d.ts +26 -26
- package/dist/{src/utils → utils}/resizeUtils/maxWidth.d.ts +9 -9
- package/dist/{cjs/src/utils → utils}/resizeUtils/parentHeaderResize.d.ts +11 -11
- package/dist/{cjs/src/utils → utils}/resizeUtils/sectionWidths.d.ts +36 -36
- package/dist/{src/utils → utils}/rowFlattening.d.ts +30 -30
- package/dist/{cjs/src/utils → utils}/rowProcessing.d.ts +65 -65
- package/dist/{cjs/src/utils → utils}/rowSelectionUtils.d.ts +62 -62
- package/dist/{src/utils → utils}/rowSeparatorRenderer.d.ts +16 -16
- package/dist/{cjs/src/utils → utils}/rowUtils.d.ts +187 -187
- package/dist/{cjs/src/utils → utils}/sortUtils.d.ts +8 -8
- package/dist/{cjs/src/utils → utils}/stateRowRenderer.d.ts +15 -15
- package/dist/{src/utils → utils}/stickyParentsRenderer.d.ts +53 -53
- package/package.json +12 -6
- package/styles.css.d.ts +1 -0
- package/dist/cjs/src/core/api/TableAPIImpl.d.ts +0 -78
- package/dist/cjs/src/core/rendering/SectionRenderer.d.ts +0 -119
- package/dist/cjs/src/hooks/ariaAnnouncements.d.ts +0 -37
- package/dist/cjs/src/hooks/contentHeight.d.ts +0 -29
- package/dist/cjs/src/hooks/scrollbarVisibility.d.ts +0 -65
- package/dist/cjs/src/hooks/scrollbarWidth.d.ts +0 -52
- package/dist/cjs/src/hooks/useAggregatedRows.d.ts +0 -14
- package/dist/cjs/src/hooks/useQuickFilter.d.ts +0 -14
- package/dist/cjs/src/hooks/windowResize.d.ts +0 -31
- package/dist/cjs/src/icons/index.d.ts +0 -14
- package/dist/cjs/src/managers/ColumnManager.d.ts +0 -42
- package/dist/cjs/src/managers/DragHandlerManager.d.ts +0 -44
- package/dist/cjs/src/managers/FilterManager.d.ts +0 -36
- package/dist/cjs/src/managers/PivotManager.d.ts +0 -35
- package/dist/cjs/src/managers/RowSelectionManager.d.ts +0 -72
- package/dist/cjs/src/managers/SectionScrollController.d.ts +0 -74
- package/dist/cjs/src/managers/SelectionManager/SelectionManager.d.ts +0 -251
- package/dist/cjs/src/managers/SelectionManager/index.d.ts +0 -2
- package/dist/cjs/src/managers/SelectionManager/keyboardUtils.d.ts +0 -7
- package/dist/cjs/src/managers/SelectionManager/selectionRangeUtils.d.ts +0 -7
- package/dist/cjs/src/managers/SelectionManager/types.d.ts +0 -28
- package/dist/cjs/src/managers/SortManager.d.ts +0 -42
- package/dist/cjs/src/types/AggregationTypes.d.ts +0 -8
- package/dist/cjs/src/types/BoundingBox.d.ts +0 -11
- package/dist/cjs/src/types/CellRendererProps.d.ts +0 -32
- package/dist/cjs/src/types/ColumnEditorConfig.d.ts +0 -42
- package/dist/cjs/src/types/ColumnEditorCustomRendererProps.d.ts +0 -14
- package/dist/cjs/src/types/ColumnEditorRowRendererProps.d.ts +0 -39
- package/dist/cjs/src/types/ColumnVisibilityTypes.d.ts +0 -4
- package/dist/cjs/src/types/CustomTheme.d.ts +0 -28
- package/dist/cjs/src/types/DragHandlerProps.d.ts +0 -14
- package/dist/cjs/src/types/EnumOption.d.ts +0 -5
- package/dist/cjs/src/types/FlattenedHeader.d.ts +0 -10
- package/dist/cjs/src/types/FooterRendererProps.d.ts +0 -17
- package/dist/cjs/src/types/HeaderObject.d.ts +0 -133
- package/dist/cjs/src/types/IconsConfig.d.ts +0 -19
- package/dist/cjs/src/types/PinnedSectionsState.d.ts +0 -6
- package/dist/cjs/src/types/RowSelectionMode.d.ts +0 -8
- package/dist/cjs/src/types/SelectionType.d.ts +0 -7
- package/dist/cjs/src/types/SharedTableProps.d.ts +0 -24
- package/dist/cjs/src/types/TableRow.d.ts +0 -39
- package/dist/cjs/src/types/TableRowProps.d.ts +0 -29
- package/dist/cjs/src/types/UpdateCellProps.d.ts +0 -8
- package/dist/cjs/src/utils/aggregationUtils.d.ts +0 -7
- package/dist/cjs/src/utils/ariaRowOwnership.d.ts +0 -37
- package/dist/cjs/src/utils/asRows.d.ts +0 -7
- package/dist/cjs/src/utils/bodyCell/cellLiveRef.d.ts +0 -9
- package/dist/cjs/src/utils/bodyCell/editors/booleanDropdown.d.ts +0 -2
- package/dist/cjs/src/utils/bodyCell/editors/datePicker.d.ts +0 -2
- package/dist/cjs/src/utils/bodyCell/editors/dropdown.d.ts +0 -18
- package/dist/cjs/src/utils/bodyCell/selection.d.ts +0 -7
- package/dist/cjs/src/utils/bodyCell/types.d.ts +0 -170
- package/dist/cjs/src/utils/bodyCellRenderer.d.ts +0 -6
- package/dist/cjs/src/utils/cellClipboardUtils.d.ts +0 -25
- package/dist/cjs/src/utils/collapseUtils.d.ts +0 -31
- package/dist/cjs/src/utils/columnEditor/columnEditorUtils.d.ts +0 -27
- package/dist/cjs/src/utils/columnEditor/createCheckbox.d.ts +0 -21
- package/dist/cjs/src/utils/columnEditor/createColumnEditor.d.ts +0 -26
- package/dist/cjs/src/utils/columnEditor/createColumnEditorRow.d.ts +0 -41
- package/dist/cjs/src/utils/columnVirtualizationUtils.d.ts +0 -128
- package/dist/cjs/src/utils/externalScroll.d.ts +0 -58
- package/dist/cjs/src/utils/filters/createFilterDropdown.d.ts +0 -15
- package/dist/cjs/src/utils/filters/createNumberFilter.d.ts +0 -15
- package/dist/cjs/src/utils/headerCell/collapsing.d.ts +0 -6
- package/dist/cjs/src/utils/headerCell/editing.d.ts +0 -4
- package/dist/cjs/src/utils/headerCell/eventTracking.d.ts +0 -28
- package/dist/cjs/src/utils/headerCell/filtering.d.ts +0 -3
- package/dist/cjs/src/utils/headerCell/resizing.d.ts +0 -3
- package/dist/cjs/src/utils/headerCell/selection.d.ts +0 -10
- package/dist/cjs/src/utils/headerCell/sorting.d.ts +0 -3
- package/dist/cjs/src/utils/headerCell/types.d.ts +0 -110
- package/dist/cjs/src/utils/headerWidthUtils.d.ts +0 -121
- package/dist/cjs/src/utils/horizontalScrollbarRenderer.d.ts +0 -27
- package/dist/cjs/src/utils/nestedGridRowRenderer.d.ts +0 -50
- package/dist/cjs/src/utils/propSyncEqual.d.ts +0 -60
- package/dist/cjs/src/utils/resizeUtils/autoExpandResize.d.ts +0 -32
- package/dist/cjs/src/utils/resizeUtils/domUpdates.d.ts +0 -15
- package/dist/cjs/src/utils/resizeUtils/maxWidth.d.ts +0 -9
- package/dist/cjs/src/utils/rowFlattening.d.ts +0 -30
- package/dist/cjs/src/utils/rowSeparatorRenderer.d.ts +0 -16
- package/dist/cjs/src/utils/stickyParentsRenderer.d.ts +0 -53
- package/dist/cjs/stories/data/aggregate-data.d.ts +0 -5
- package/dist/cjs/stories/data/athlete-data.d.ts +0 -3
- package/dist/cjs/stories/data/retail-data.d.ts +0 -3
- package/dist/cjs/stories/data/saas-data.d.ts +0 -6
- package/dist/cjs/stories/data/space-data.d.ts +0 -3
- package/dist/cjs/stories/docs/Examples.stories.d.ts +0 -18
- package/dist/cjs/stories/docs/Features.stories.d.ts +0 -54
- package/dist/cjs/stories/docs/GettingStarted.stories.d.ts +0 -7
- package/dist/cjs/stories/docs/storyArgs.d.ts +0 -155
- package/dist/cjs/stories/examples/AdvancedSortingExample.d.ts +0 -6
- package/dist/cjs/stories/examples/AggregateExample.d.ts +0 -7
- package/dist/cjs/stories/examples/AlignmentExample.d.ts +0 -10
- package/dist/cjs/stories/examples/AutoExpandColumnsExample.d.ts +0 -7
- package/dist/cjs/stories/examples/BasicExample.d.ts +0 -12
- package/dist/cjs/stories/examples/BasicRowGrouping.d.ts +0 -11
- package/dist/cjs/stories/examples/CSVExportFormattingExample.d.ts +0 -12
- package/dist/cjs/stories/examples/CSVExportSingleRowChildrenExample.d.ts +0 -6
- package/dist/cjs/stories/examples/CellHighlighting.d.ts +0 -7
- package/dist/cjs/stories/examples/CellRenderer.d.ts +0 -7
- package/dist/cjs/stories/examples/ChartsExample.d.ts +0 -13
- package/dist/cjs/stories/examples/ClayExample.d.ts +0 -14
- package/dist/cjs/stories/examples/ClipboardFormattingExample.d.ts +0 -12
- package/dist/cjs/stories/examples/CollapsibleColumnsExample.d.ts +0 -13
- package/dist/cjs/stories/examples/ColumnVisibilityAPIExample.d.ts +0 -7
- package/dist/cjs/stories/examples/ColumnWidthChangeExample.d.ts +0 -6
- package/dist/cjs/stories/examples/CustomHeaderRenderingExample.d.ts +0 -2
- package/dist/cjs/stories/examples/DynamicHeadersExample.d.ts +0 -5
- package/dist/cjs/stories/examples/DynamicNestedTableExample.d.ts +0 -7
- package/dist/cjs/stories/examples/DynamicRowLoadingExample.d.ts +0 -5
- package/dist/cjs/stories/examples/DynamicRowLoadingWithExternalSortExample.d.ts +0 -6
- package/dist/cjs/stories/examples/EditableCells.d.ts +0 -8
- package/dist/cjs/stories/examples/ExpansionControlExample.d.ts +0 -6
- package/dist/cjs/stories/examples/ExternalFilterExample.d.ts +0 -5
- package/dist/cjs/stories/examples/ExternalSortExample.d.ts +0 -6
- package/dist/cjs/stories/examples/HeaderInclusionExample.d.ts +0 -5
- package/dist/cjs/stories/examples/HiddenColumnsExample.d.ts +0 -9
- package/dist/cjs/stories/examples/InfiniteScroll.d.ts +0 -5
- package/dist/cjs/stories/examples/LiveUpdates.d.ts +0 -5
- package/dist/cjs/stories/examples/LoadingStateExample.d.ts +0 -2
- package/dist/cjs/stories/examples/NestedAccessorExample.d.ts +0 -8
- package/dist/cjs/stories/examples/NestedGridExample.d.ts +0 -5
- package/dist/cjs/stories/examples/Pagination.d.ts +0 -12
- package/dist/cjs/stories/examples/PaginationAPIExample.d.ts +0 -8
- package/dist/cjs/stories/examples/PivotExample.d.ts +0 -16
- package/dist/cjs/stories/examples/ProgrammaticFilterExample.d.ts +0 -5
- package/dist/cjs/stories/examples/ProgrammaticSortExample.d.ts +0 -5
- package/dist/cjs/stories/examples/QuickFilterExample.d.ts +0 -5
- package/dist/cjs/stories/examples/RadioStationsExample.d.ts +0 -3
- package/dist/cjs/stories/examples/RowButtonsExample.d.ts +0 -14
- package/dist/cjs/stories/examples/RowHeightExample.d.ts +0 -8
- package/dist/cjs/stories/examples/RowSelectionExample.d.ts +0 -11
- package/dist/cjs/stories/examples/SelectableCells.d.ts +0 -14
- package/dist/cjs/stories/examples/ServerSidePaginationExample.d.ts +0 -2
- package/dist/cjs/stories/examples/Theming.d.ts +0 -12
- package/dist/cjs/stories/examples/TooltipExample.d.ts +0 -8
- package/dist/cjs/stories/examples/WindowInfiniteScroll.d.ts +0 -3
- package/dist/cjs/stories/examples/billing-example/BillingExample.d.ts +0 -13
- package/dist/cjs/stories/examples/billing-example/billing-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/crypto/CryptoExample.d.ts +0 -14
- package/dist/cjs/stories/examples/crypto/crypto-data.d.ts +0 -30
- package/dist/cjs/stories/examples/crypto/crypto-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/custom-theme/CustomThemeDemo.d.ts +0 -2
- package/dist/cjs/stories/examples/filter-example/FilterExample.d.ts +0 -9
- package/dist/cjs/stories/examples/filter-example/filter-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/finance-example/FinancialExample.d.ts +0 -8
- package/dist/cjs/stories/examples/finance-example/finance-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/infrastructure/InfrastructureExample.d.ts +0 -9
- package/dist/cjs/stories/examples/infrastructure/infrastructure-data.d.ts +0 -5
- package/dist/cjs/stories/examples/infrastructure/infrastructure-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/leads/LeadsExample.d.ts +0 -8
- package/dist/cjs/stories/examples/leads/leads-data.d.ts +0 -5
- package/dist/cjs/stories/examples/leads/leads-headers.d.ts +0 -6
- package/dist/cjs/stories/examples/manufacturing/ManufacturingExample.d.ts +0 -10
- package/dist/cjs/stories/examples/manufacturing/manufacturing-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/music/MusicExample.d.ts +0 -13
- package/dist/cjs/stories/examples/music/MusicWindowScrollExample.d.ts +0 -5
- package/dist/cjs/stories/examples/music/music-headers.d.ts +0 -5
- package/dist/cjs/stories/examples/music/music-window.data.d.ts +0 -47
- package/dist/cjs/stories/examples/pinned-columns/PinnedColumns.d.ts +0 -13
- package/dist/cjs/stories/examples/row-grouping/RowGrouping.d.ts +0 -8
- package/dist/cjs/stories/examples/sales-example/SalesExample.d.ts +0 -14
- package/dist/cjs/stories/examples/sales-example/sales-headers.d.ts +0 -6
- package/dist/cjs/stories/tests/01-BasicStructureTests.stories.d.ts +0 -119
- package/dist/cjs/stories/tests/02-ColumnSortingTests.stories.d.ts +0 -114
- package/dist/cjs/stories/tests/03-ColumnFilteringTests.stories.d.ts +0 -86
- package/dist/cjs/stories/tests/04-PaginationTests.stories.d.ts +0 -94
- package/dist/cjs/stories/tests/05-RowGroupingTests.stories.d.ts +0 -204
- package/dist/cjs/stories/tests/06-CellEditingTests.stories.d.ts +0 -61
- package/dist/cjs/stories/tests/07-RowSelectionTests.stories.d.ts +0 -101
- package/dist/cjs/stories/tests/08-ColumnWidthTests.stories.d.ts +0 -99
- package/dist/cjs/stories/tests/09-ColumnAlignmentTests.stories.d.ts +0 -61
- package/dist/cjs/stories/tests/10-ColumnPinningTests.stories.d.ts +0 -115
- package/dist/cjs/stories/tests/11-ColumnReorderingTests.stories.d.ts +0 -122
- package/dist/cjs/stories/tests/12-CellSelectionTests.stories.d.ts +0 -212
- package/dist/cjs/stories/tests/13-ColumnResizeTests.stories.d.ts +0 -101
- package/dist/cjs/stories/tests/14-LiveUpdatesTests.stories.d.ts +0 -28
- package/dist/cjs/stories/tests/15-ColumnVisibilityTests.stories.d.ts +0 -143
- package/dist/cjs/stories/tests/16-CsvExportTests.stories.d.ts +0 -133
- package/dist/cjs/stories/tests/17-NestedTablesTests.stories.d.ts +0 -105
- package/dist/cjs/stories/tests/18-QuickFilterTests.stories.d.ts +0 -120
- package/dist/cjs/stories/tests/19-AccessibilityTests.stories.d.ts +0 -39
- package/dist/cjs/stories/tests/20-CollapsibleColumnsTests.stories.d.ts +0 -104
- package/dist/cjs/stories/tests/21-ColumnSelectionTests.stories.d.ts +0 -31
- package/dist/cjs/stories/tests/22-LoadingStateTests.stories.d.ts +0 -94
- package/dist/cjs/stories/tests/23-EmptyStateTests.stories.d.ts +0 -39
- package/dist/cjs/stories/tests/24-FooterRendererTests.stories.d.ts +0 -63
- package/dist/cjs/stories/tests/25-HeaderRendererTests.stories.d.ts +0 -58
- package/dist/cjs/stories/tests/26-CellRendererTests.stories.d.ts +0 -55
- package/dist/cjs/stories/tests/27-ValueFormatterTests.stories.d.ts +0 -53
- package/dist/cjs/stories/tests/28-CellClickTests.stories.d.ts +0 -23
- package/dist/cjs/stories/tests/29-TooltipsTests.stories.d.ts +0 -31
- package/dist/cjs/stories/tests/30-AggregateFunctionsTests.stories.d.ts +0 -63
- package/dist/cjs/stories/tests/31-ChartColumnsTests.stories.d.ts +0 -54
- package/dist/cjs/stories/tests/32-ThemesTests.stories.d.ts +0 -104
- package/dist/cjs/stories/tests/33-CustomThemeTests.stories.d.ts +0 -150
- package/dist/cjs/stories/tests/34-CustomIconsTests.stories.d.ts +0 -63
- package/dist/cjs/stories/tests/35-HideHeaderFooterTests.stories.d.ts +0 -31
- package/dist/cjs/stories/tests/36-InfiniteScrollTests.stories.d.ts +0 -23
- package/dist/cjs/stories/tests/37-TableRefMethodsTests.stories.d.ts +0 -160
- package/dist/cjs/stories/tests/38-NestedHeadersTests.stories.d.ts +0 -23
- package/dist/cjs/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +0 -398
- package/dist/cjs/stories/tests/40-MaxHeightScrollTests.stories.d.ts +0 -37
- package/dist/cjs/stories/tests/41-CellAnimationsTests.stories.d.ts +0 -237
- package/dist/cjs/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +0 -251
- package/dist/cjs/stories/tests/43-CollapseExpandAnimationsTests.stories.d.ts +0 -63
- package/dist/cjs/stories/tests/44-ExternalScrollTests.stories.d.ts +0 -53
- package/dist/cjs/stories/tests/45-AriaSemanticsTests.stories.d.ts +0 -83
- package/dist/cjs/stories/tests/45-PivotTests.stories.d.ts +0 -8
- package/dist/cjs/stories/tests/46-AutoSizeColumnsTests.stories.d.ts +0 -370
- package/dist/cjs/stories/tests/47-DeferredHeadersTests.stories.d.ts +0 -23
- package/dist/cjs/stories/tests/48-ExternalScrollLateParentTests.stories.d.ts +0 -45
- package/dist/cjs/stories/tests/49-AutoWidthAutoExpandTests.stories.d.ts +0 -151
- package/dist/cjs/stories/tests/50-ContainerResizePerformanceTests.stories.d.ts +0 -56
- package/dist/cjs/stories/tests/51-RowGroupReExpandTests.stories.d.ts +0 -78
- package/dist/cjs/stories/tests/testUtils.d.ts +0 -38
- package/dist/cjs/stories/utils.d.ts +0 -42
- package/dist/cjs/stories/vanillaStoryConfig.d.ts +0 -156
- package/dist/src/consts/column-constraints.d.ts +0 -58
- package/dist/src/consts/general-consts.d.ts +0 -32
- package/dist/src/core/SimpleTableVanilla.d.ts +0 -369
- package/dist/src/core/dom/DOMManager.d.ts +0 -52
- package/dist/src/core/initialization/TableInitializer.d.ts +0 -34
- package/dist/src/core/rendering/RenderOrchestrator.d.ts +0 -172
- package/dist/src/core/rendering/TableRenderer.d.ts +0 -120
- package/dist/src/hooks/expandedDepths.d.ts +0 -69
- package/dist/src/hooks/handleOutsideClick.d.ts +0 -50
- package/dist/src/hooks/previousValue.d.ts +0 -30
- package/dist/src/icons/AngleDownIcon.d.ts +0 -1
- package/dist/src/icons/AngleLeftIcon.d.ts +0 -1
- package/dist/src/icons/AngleRightIcon.d.ts +0 -1
- package/dist/src/icons/AngleUpIcon.d.ts +0 -1
- package/dist/src/icons/AscIcon.d.ts +0 -1
- package/dist/src/icons/CheckIcon.d.ts +0 -1
- package/dist/src/icons/DescIcon.d.ts +0 -1
- package/dist/src/icons/DragIcon.d.ts +0 -1
- package/dist/src/icons/FilterIcon.d.ts +0 -1
- package/dist/src/icons/SelectIcon.d.ts +0 -1
- package/dist/src/index.d.ts +0 -58
- package/dist/src/managers/AnimationCoordinator.d.ts +0 -356
- package/dist/src/managers/AutoScaleManager.d.ts +0 -33
- package/dist/src/managers/DimensionManager.d.ts +0 -84
- package/dist/src/managers/RowManager.d.ts +0 -56
- package/dist/src/managers/ScrollManager.d.ts +0 -38
- package/dist/src/managers/SelectionManager/mouseUtils.d.ts +0 -16
- package/dist/src/managers/TableManager.d.ts +0 -72
- package/dist/src/types/AnimationsConfig.d.ts +0 -16
- package/dist/src/types/Cell.d.ts +0 -7
- package/dist/src/types/CellChangeProps.d.ts +0 -9
- package/dist/src/types/CellClickProps.d.ts +0 -11
- package/dist/src/types/CellValue.d.ts +0 -2
- package/dist/src/types/FilterTypes.d.ts +0 -31
- package/dist/src/types/FooterPosition.d.ts +0 -3
- package/dist/src/types/GenerateRowIdParams.d.ts +0 -11
- package/dist/src/types/GetRowId.d.ts +0 -16
- package/dist/src/types/HandleResizeStartProps.d.ts +0 -25
- package/dist/src/types/HeaderDropdownProps.d.ts +0 -14
- package/dist/src/types/HeaderRendererProps.d.ts +0 -17
- package/dist/src/types/OnNextPage.d.ts +0 -2
- package/dist/src/types/OnRowGroupExpandProps.d.ts +0 -16
- package/dist/src/types/OnSortProps.d.ts +0 -3
- package/dist/src/types/PanelSection.d.ts +0 -1
- package/dist/src/types/Pinned.d.ts +0 -1
- package/dist/src/types/PivotTypes.d.ts +0 -37
- package/dist/src/types/QuickFilterTypes.d.ts +0 -21
- package/dist/src/types/Row.d.ts +0 -3
- package/dist/src/types/RowButton.d.ts +0 -6
- package/dist/src/types/RowId.d.ts +0 -1
- package/dist/src/types/RowSelectionChangeProps.d.ts +0 -7
- package/dist/src/types/RowState.d.ts +0 -12
- package/dist/src/types/RowStateRendererProps.d.ts +0 -18
- package/dist/src/types/SelectionType.d.ts +0 -7
- package/dist/src/types/SimpleTableConfig.d.ts +0 -124
- package/dist/src/types/SimpleTableProps.d.ts +0 -125
- package/dist/src/types/SortColumn.d.ts +0 -8
- package/dist/src/types/TableAPI.d.ts +0 -82
- package/dist/src/types/TableBodyProps.d.ts +0 -20
- package/dist/src/types/TableHeaderProps.d.ts +0 -17
- package/dist/src/types/TableHeaderSectionProps.d.ts +0 -19
- package/dist/src/types/Theme.d.ts +0 -2
- package/dist/src/utils/accordionAnimation.d.ts +0 -25
- package/dist/src/utils/bodyCell/content.d.ts +0 -5
- package/dist/src/utils/bodyCell/editing.d.ts +0 -4
- package/dist/src/utils/bodyCell/editors/enumDropdown.d.ts +0 -2
- package/dist/src/utils/bodyCell/eventTracking.d.ts +0 -3
- package/dist/src/utils/bodyCell/expansion.d.ts +0 -12
- package/dist/src/utils/bodyCell/styling.d.ts +0 -11
- package/dist/src/utils/cellScrollUtils.d.ts +0 -10
- package/dist/src/utils/cellUtils.d.ts +0 -18
- package/dist/src/utils/charts/createBarChart.d.ts +0 -20
- package/dist/src/utils/charts/createLineAreaChart.d.ts +0 -25
- package/dist/src/utils/columnEditor/createColumnEditorPopout.d.ts +0 -23
- package/dist/src/utils/columnIndicesUtils.d.ts +0 -15
- package/dist/src/utils/csvExportUtils.d.ts +0 -14
- package/dist/src/utils/dateUtils.d.ts +0 -18
- package/dist/src/utils/filterUtils.d.ts +0 -5
- package/dist/src/utils/filters/createBooleanFilter.d.ts +0 -15
- package/dist/src/utils/filters/createCustomSelect.d.ts +0 -20
- package/dist/src/utils/filters/createDateFilter.d.ts +0 -15
- package/dist/src/utils/filters/createDatePicker.d.ts +0 -10
- package/dist/src/utils/filters/createDropdown.d.ts +0 -33
- package/dist/src/utils/filters/createEnumFilter.d.ts +0 -15
- package/dist/src/utils/filters/createFilterActions.d.ts +0 -12
- package/dist/src/utils/filters/createFilterInput.d.ts +0 -16
- package/dist/src/utils/filters/createStringFilter.d.ts +0 -15
- package/dist/src/utils/footer/createTableFooter.d.ts +0 -21
- package/dist/src/utils/formatters.d.ts +0 -3
- package/dist/src/utils/generalUtils.d.ts +0 -4
- package/dist/src/utils/headerCell/dragging.d.ts +0 -5
- package/dist/src/utils/headerCell/styling.d.ts +0 -7
- package/dist/src/utils/headerCellRenderer.d.ts +0 -4
- package/dist/src/utils/headerUtils.d.ts +0 -41
- package/dist/src/utils/infiniteScrollUtils.d.ts +0 -145
- package/dist/src/utils/loadingPlaceholderUtils.d.ts +0 -11
- package/dist/src/utils/pinnedColumnUtils.d.ts +0 -29
- package/dist/src/utils/pivot/pivotRows.d.ts +0 -16
- package/dist/src/utils/quickFilterUtils.d.ts +0 -14
- package/dist/src/utils/resizeUtils/compensation.d.ts +0 -17
- package/dist/src/utils/resizeUtils/index.d.ts +0 -26
- package/dist/src/utils/resizeUtils/parentHeaderResize.d.ts +0 -11
- package/dist/src/utils/resizeUtils/sectionWidths.d.ts +0 -36
- package/dist/src/utils/rowProcessing.d.ts +0 -65
- package/dist/src/utils/rowSelectionUtils.d.ts +0 -62
- package/dist/src/utils/rowUtils.d.ts +0 -187
- package/dist/src/utils/sortUtils.d.ts +0 -8
- package/dist/src/utils/stateRowRenderer.d.ts +0 -15
- package/dist/stories/data/aggregate-data.d.ts +0 -5
- package/dist/stories/data/athlete-data.d.ts +0 -3
- package/dist/stories/data/retail-data.d.ts +0 -3
- package/dist/stories/data/saas-data.d.ts +0 -6
- package/dist/stories/data/space-data.d.ts +0 -3
- package/dist/stories/docs/Examples.stories.d.ts +0 -18
- package/dist/stories/docs/Features.stories.d.ts +0 -54
- package/dist/stories/docs/GettingStarted.stories.d.ts +0 -7
- package/dist/stories/docs/storyArgs.d.ts +0 -155
- package/dist/stories/examples/AdvancedSortingExample.d.ts +0 -6
- package/dist/stories/examples/AggregateExample.d.ts +0 -7
- package/dist/stories/examples/AlignmentExample.d.ts +0 -10
- package/dist/stories/examples/AutoExpandColumnsExample.d.ts +0 -7
- package/dist/stories/examples/BasicExample.d.ts +0 -12
- package/dist/stories/examples/BasicRowGrouping.d.ts +0 -11
- package/dist/stories/examples/CSVExportFormattingExample.d.ts +0 -12
- package/dist/stories/examples/CSVExportSingleRowChildrenExample.d.ts +0 -6
- package/dist/stories/examples/CellHighlighting.d.ts +0 -7
- package/dist/stories/examples/CellRenderer.d.ts +0 -7
- package/dist/stories/examples/ChartsExample.d.ts +0 -13
- package/dist/stories/examples/ClayExample.d.ts +0 -14
- package/dist/stories/examples/ClipboardFormattingExample.d.ts +0 -12
- package/dist/stories/examples/CollapsibleColumnsExample.d.ts +0 -13
- package/dist/stories/examples/ColumnVisibilityAPIExample.d.ts +0 -7
- package/dist/stories/examples/ColumnWidthChangeExample.d.ts +0 -6
- package/dist/stories/examples/CustomHeaderRenderingExample.d.ts +0 -2
- package/dist/stories/examples/DynamicHeadersExample.d.ts +0 -5
- package/dist/stories/examples/DynamicNestedTableExample.d.ts +0 -7
- package/dist/stories/examples/DynamicRowLoadingExample.d.ts +0 -5
- package/dist/stories/examples/DynamicRowLoadingWithExternalSortExample.d.ts +0 -6
- package/dist/stories/examples/EditableCells.d.ts +0 -8
- package/dist/stories/examples/ExpansionControlExample.d.ts +0 -6
- package/dist/stories/examples/ExternalFilterExample.d.ts +0 -5
- package/dist/stories/examples/ExternalSortExample.d.ts +0 -6
- package/dist/stories/examples/HeaderInclusionExample.d.ts +0 -5
- package/dist/stories/examples/HiddenColumnsExample.d.ts +0 -9
- package/dist/stories/examples/InfiniteScroll.d.ts +0 -5
- package/dist/stories/examples/LiveUpdates.d.ts +0 -5
- package/dist/stories/examples/LoadingStateExample.d.ts +0 -2
- package/dist/stories/examples/NestedAccessorExample.d.ts +0 -8
- package/dist/stories/examples/NestedGridExample.d.ts +0 -5
- package/dist/stories/examples/Pagination.d.ts +0 -12
- package/dist/stories/examples/PaginationAPIExample.d.ts +0 -8
- package/dist/stories/examples/PivotExample.d.ts +0 -16
- package/dist/stories/examples/ProgrammaticFilterExample.d.ts +0 -5
- package/dist/stories/examples/ProgrammaticSortExample.d.ts +0 -5
- package/dist/stories/examples/QuickFilterExample.d.ts +0 -5
- package/dist/stories/examples/RadioStationsExample.d.ts +0 -3
- package/dist/stories/examples/RowButtonsExample.d.ts +0 -14
- package/dist/stories/examples/RowHeightExample.d.ts +0 -8
- package/dist/stories/examples/RowSelectionExample.d.ts +0 -11
- package/dist/stories/examples/SelectableCells.d.ts +0 -14
- package/dist/stories/examples/ServerSidePaginationExample.d.ts +0 -2
- package/dist/stories/examples/Theming.d.ts +0 -12
- package/dist/stories/examples/TooltipExample.d.ts +0 -8
- package/dist/stories/examples/WindowInfiniteScroll.d.ts +0 -3
- package/dist/stories/examples/billing-example/BillingExample.d.ts +0 -13
- package/dist/stories/examples/billing-example/billing-headers.d.ts +0 -5
- package/dist/stories/examples/crypto/CryptoExample.d.ts +0 -14
- package/dist/stories/examples/crypto/crypto-data.d.ts +0 -30
- package/dist/stories/examples/crypto/crypto-headers.d.ts +0 -5
- package/dist/stories/examples/custom-theme/CustomThemeDemo.d.ts +0 -2
- package/dist/stories/examples/filter-example/FilterExample.d.ts +0 -9
- package/dist/stories/examples/filter-example/filter-headers.d.ts +0 -5
- package/dist/stories/examples/finance-example/FinancialExample.d.ts +0 -8
- package/dist/stories/examples/finance-example/finance-headers.d.ts +0 -5
- package/dist/stories/examples/infrastructure/InfrastructureExample.d.ts +0 -9
- package/dist/stories/examples/infrastructure/infrastructure-data.d.ts +0 -5
- package/dist/stories/examples/infrastructure/infrastructure-headers.d.ts +0 -5
- package/dist/stories/examples/leads/LeadsExample.d.ts +0 -8
- package/dist/stories/examples/leads/leads-data.d.ts +0 -5
- package/dist/stories/examples/leads/leads-headers.d.ts +0 -6
- package/dist/stories/examples/manufacturing/ManufacturingExample.d.ts +0 -10
- package/dist/stories/examples/manufacturing/manufacturing-headers.d.ts +0 -5
- package/dist/stories/examples/music/MusicExample.d.ts +0 -13
- package/dist/stories/examples/music/MusicWindowScrollExample.d.ts +0 -5
- package/dist/stories/examples/music/music-headers.d.ts +0 -5
- package/dist/stories/examples/music/music-window.data.d.ts +0 -47
- package/dist/stories/examples/pinned-columns/PinnedColumns.d.ts +0 -13
- package/dist/stories/examples/row-grouping/RowGrouping.d.ts +0 -8
- package/dist/stories/examples/sales-example/SalesExample.d.ts +0 -14
- package/dist/stories/examples/sales-example/sales-headers.d.ts +0 -6
- package/dist/stories/tests/01-BasicStructureTests.stories.d.ts +0 -119
- package/dist/stories/tests/02-ColumnSortingTests.stories.d.ts +0 -114
- package/dist/stories/tests/03-ColumnFilteringTests.stories.d.ts +0 -86
- package/dist/stories/tests/04-PaginationTests.stories.d.ts +0 -94
- package/dist/stories/tests/05-RowGroupingTests.stories.d.ts +0 -204
- package/dist/stories/tests/06-CellEditingTests.stories.d.ts +0 -61
- package/dist/stories/tests/07-RowSelectionTests.stories.d.ts +0 -101
- package/dist/stories/tests/08-ColumnWidthTests.stories.d.ts +0 -99
- package/dist/stories/tests/09-ColumnAlignmentTests.stories.d.ts +0 -61
- package/dist/stories/tests/10-ColumnPinningTests.stories.d.ts +0 -115
- package/dist/stories/tests/11-ColumnReorderingTests.stories.d.ts +0 -122
- package/dist/stories/tests/12-CellSelectionTests.stories.d.ts +0 -212
- package/dist/stories/tests/13-ColumnResizeTests.stories.d.ts +0 -101
- package/dist/stories/tests/14-LiveUpdatesTests.stories.d.ts +0 -28
- package/dist/stories/tests/15-ColumnVisibilityTests.stories.d.ts +0 -143
- package/dist/stories/tests/16-CsvExportTests.stories.d.ts +0 -133
- package/dist/stories/tests/17-NestedTablesTests.stories.d.ts +0 -105
- package/dist/stories/tests/18-QuickFilterTests.stories.d.ts +0 -120
- package/dist/stories/tests/19-AccessibilityTests.stories.d.ts +0 -39
- package/dist/stories/tests/20-CollapsibleColumnsTests.stories.d.ts +0 -104
- package/dist/stories/tests/21-ColumnSelectionTests.stories.d.ts +0 -31
- package/dist/stories/tests/22-LoadingStateTests.stories.d.ts +0 -94
- package/dist/stories/tests/23-EmptyStateTests.stories.d.ts +0 -39
- package/dist/stories/tests/24-FooterRendererTests.stories.d.ts +0 -63
- package/dist/stories/tests/25-HeaderRendererTests.stories.d.ts +0 -58
- package/dist/stories/tests/26-CellRendererTests.stories.d.ts +0 -55
- package/dist/stories/tests/27-ValueFormatterTests.stories.d.ts +0 -53
- package/dist/stories/tests/28-CellClickTests.stories.d.ts +0 -23
- package/dist/stories/tests/29-TooltipsTests.stories.d.ts +0 -31
- package/dist/stories/tests/30-AggregateFunctionsTests.stories.d.ts +0 -63
- package/dist/stories/tests/31-ChartColumnsTests.stories.d.ts +0 -54
- package/dist/stories/tests/32-ThemesTests.stories.d.ts +0 -104
- package/dist/stories/tests/33-CustomThemeTests.stories.d.ts +0 -150
- package/dist/stories/tests/34-CustomIconsTests.stories.d.ts +0 -63
- package/dist/stories/tests/35-HideHeaderFooterTests.stories.d.ts +0 -31
- package/dist/stories/tests/36-InfiniteScrollTests.stories.d.ts +0 -23
- package/dist/stories/tests/37-TableRefMethodsTests.stories.d.ts +0 -160
- package/dist/stories/tests/38-NestedHeadersTests.stories.d.ts +0 -23
- package/dist/stories/tests/39-AutoExpandColumnsTests.stories.d.ts +0 -398
- package/dist/stories/tests/40-MaxHeightScrollTests.stories.d.ts +0 -37
- package/dist/stories/tests/41-CellAnimationsTests.stories.d.ts +0 -237
- package/dist/stories/tests/42-CellAnimationsVirtualizationTests.stories.d.ts +0 -251
- package/dist/stories/tests/43-CollapseExpandAnimationsTests.stories.d.ts +0 -63
- package/dist/stories/tests/44-ExternalScrollTests.stories.d.ts +0 -53
- package/dist/stories/tests/45-AriaSemanticsTests.stories.d.ts +0 -83
- package/dist/stories/tests/45-PivotTests.stories.d.ts +0 -8
- package/dist/stories/tests/46-AutoSizeColumnsTests.stories.d.ts +0 -370
- package/dist/stories/tests/47-DeferredHeadersTests.stories.d.ts +0 -23
- package/dist/stories/tests/48-ExternalScrollLateParentTests.stories.d.ts +0 -45
- package/dist/stories/tests/49-AutoWidthAutoExpandTests.stories.d.ts +0 -151
- package/dist/stories/tests/50-ContainerResizePerformanceTests.stories.d.ts +0 -56
- package/dist/stories/tests/51-RowGroupReExpandTests.stories.d.ts +0 -78
- package/dist/stories/tests/testUtils.d.ts +0 -38
- package/dist/stories/utils.d.ts +0 -42
- package/dist/stories/vanillaStoryConfig.d.ts +0 -156
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
import TableRow from "../types/TableRow";
|
|
2
|
-
import Row from "../types/Row";
|
|
3
|
-
import HeaderObject, { Accessor } from "../types/HeaderObject";
|
|
4
|
-
import CellValue from "../types/CellValue";
|
|
5
|
-
import RowState from "../types/RowState";
|
|
6
|
-
import { CustomTheme } from "../types/CustomTheme";
|
|
7
|
-
import { GetRowId } from "../types/GetRowId";
|
|
8
|
-
import { GenerateRowIdParams } from "../types/GenerateRowIdParams";
|
|
9
|
-
/**
|
|
10
|
-
* Calculate the height of a nested grid based on the number of child rows
|
|
11
|
-
* @param childRowCount - Number of rows in the nested grid
|
|
12
|
-
* @param rowHeight - Height of each row
|
|
13
|
-
* @param headerHeight - Height of the header
|
|
14
|
-
* @param customTheme - Custom theme configuration
|
|
15
|
-
* @returns Calculated height in pixels (includes padding, borders, row separators, and header border)
|
|
16
|
-
*/
|
|
17
|
-
export declare const calculateNestedGridHeight: ({ childRowCount, rowHeight, headerHeight, customTheme, }: {
|
|
18
|
-
childRowCount: number;
|
|
19
|
-
rowHeight: number;
|
|
20
|
-
headerHeight: number;
|
|
21
|
-
customTheme: CustomTheme;
|
|
22
|
-
}) => number;
|
|
23
|
-
/**
|
|
24
|
-
* Calculate the final wrapper height for a nested grid, accounting for custom heights
|
|
25
|
-
*
|
|
26
|
-
* @param calculatedHeight - The default calculated height based on child rows
|
|
27
|
-
* @param customHeight - Optional custom height from nestedTable config (e.g., "200px" or 200)
|
|
28
|
-
* @param customTheme - Custom theme configuration for padding
|
|
29
|
-
* @returns Final height in pixels for the wrapper (includes padding)
|
|
30
|
-
*/
|
|
31
|
-
export declare const calculateFinalNestedGridHeight: ({ calculatedHeight, customHeight, customTheme, }: {
|
|
32
|
-
calculatedHeight: number;
|
|
33
|
-
customHeight?: string | number | undefined;
|
|
34
|
-
customTheme: CustomTheme;
|
|
35
|
-
}) => number;
|
|
36
|
-
/**
|
|
37
|
-
* Calculate the inner height for a nested SimpleTable component
|
|
38
|
-
* This accounts for the padding that's applied to the wrapper
|
|
39
|
-
*
|
|
40
|
-
* @param calculatedHeight - The total height of the nested grid row (from calculateNestedGridHeight)
|
|
41
|
-
* @param customHeight - Optional custom height from nestedTable config (e.g., "200px")
|
|
42
|
-
* @param customTheme - Custom theme configuration for padding
|
|
43
|
-
* @returns Height value to pass to the nested SimpleTable (string with units)
|
|
44
|
-
*/
|
|
45
|
-
export declare const calculateNestedTableHeight: ({ calculatedHeight, customHeight, customTheme, }: {
|
|
46
|
-
calculatedHeight: number;
|
|
47
|
-
customHeight?: string | number | undefined;
|
|
48
|
-
customTheme: CustomTheme;
|
|
49
|
-
}) => string;
|
|
50
|
-
/**
|
|
51
|
-
* Get a nested property value from an object using dot notation and array bracket notation
|
|
52
|
-
* Examples:
|
|
53
|
-
* getNestedValue(row, "latest.rank") returns row.latest.rank
|
|
54
|
-
* getNestedValue(row, "albums[0].title") returns row.albums[0].title
|
|
55
|
-
* getNestedValue(row, "releaseDate[0]") returns row.releaseDate[0]
|
|
56
|
-
*/
|
|
57
|
-
export declare const getNestedValue: (obj: Row, path: Accessor) => CellValue;
|
|
58
|
-
/**
|
|
59
|
-
* True when both arrays have the same length and the same row object references
|
|
60
|
-
* at each index. Used by FilterManager / SortManager so in-place live updates
|
|
61
|
-
* that recompute filter/sort only notify subscribers when membership or order
|
|
62
|
-
* actually changed (`.filter()` / `handleSort` always allocate new arrays).
|
|
63
|
-
*/
|
|
64
|
-
export declare const rowsOrderEqual: (a: Row[], b: Row[]) => boolean;
|
|
65
|
-
/**
|
|
66
|
-
* Set a nested property value in an object using dot notation and array bracket notation
|
|
67
|
-
* Examples:
|
|
68
|
-
* setNestedValue(row, "latest.rank", 5) sets row.latest.rank = 5
|
|
69
|
-
* setNestedValue(row, "albums[0].title", "New Album") sets row.albums[0].title = "New Album"
|
|
70
|
-
* setNestedValue(row, "releaseDate[0]", "2024") sets row.releaseDate[0] = "2024"
|
|
71
|
-
*/
|
|
72
|
-
export declare const setNestedValue: (obj: Row, path: Accessor, value: CellValue) => void;
|
|
73
|
-
/**
|
|
74
|
-
* Check if an array contains Row objects (vs primitive arrays like string[] or number[])
|
|
75
|
-
*/
|
|
76
|
-
export declare const isRowArray: (data: any) => data is Row[];
|
|
77
|
-
/**
|
|
78
|
-
* Generate the row ID array from index path and optional custom identifier.
|
|
79
|
-
*
|
|
80
|
-
* The row ID is always an array that includes:
|
|
81
|
-
* - The index at each level of nesting
|
|
82
|
-
* - The grouping key between levels (for readability)
|
|
83
|
-
* - An optional custom identifier from getRowId (appended at the end)
|
|
84
|
-
*
|
|
85
|
-
* Examples:
|
|
86
|
-
* - Root row (index 1): [1]
|
|
87
|
-
* - Nested store (parent index 1, store index 5): [1, "stores", 5]
|
|
88
|
-
* - With custom ID: [1, "stores", 5, "STORE-101"]
|
|
89
|
-
* - Deep nesting: [1, "stores", 5, "products", 2, "PROD-24"]
|
|
90
|
-
*
|
|
91
|
-
* @param params - Object containing row data, getRowId function, and metadata
|
|
92
|
-
* @returns An array representing the unique row ID path
|
|
93
|
-
*/
|
|
94
|
-
export declare const generateRowId: (params: GenerateRowIdParams) => (string | number)[];
|
|
95
|
-
/**
|
|
96
|
-
* Convert a row ID array to a string for use as Map keys, Set members, etc.
|
|
97
|
-
*
|
|
98
|
-
* @param rowId - Array of strings/numbers representing the row ID path
|
|
99
|
-
* @returns A string representation of the row ID
|
|
100
|
-
*/
|
|
101
|
-
export declare const rowIdToString: (rowId: (string | number)[]) => string;
|
|
102
|
-
/**
|
|
103
|
-
* Generate a position-independent stable row key.
|
|
104
|
-
*
|
|
105
|
-
* Unlike `generateRowId`, the stable key never includes positional indices, so
|
|
106
|
-
* it survives sort/filter operations. It is used as the basis for the cell DOM
|
|
107
|
-
* `id` and the animation coordinator's snapshot key, allowing the same DOM
|
|
108
|
-
* element to be reused for the same logical row across re-orders (enabling
|
|
109
|
-
* FLIP-based sort animations).
|
|
110
|
-
*
|
|
111
|
-
* When `getRowId` is provided, the key is derived from the user-supplied id.
|
|
112
|
-
* When it is not, the key falls back to the row object's identity (via a
|
|
113
|
-
* WeakMap) so animations still work for plain row arrays. For nested rows the
|
|
114
|
-
* parent's stable key is included as a prefix so siblings of different parents
|
|
115
|
-
* do not collide.
|
|
116
|
-
*/
|
|
117
|
-
export declare const generateStableRowKey: (params: {
|
|
118
|
-
getRowId?: GetRowId;
|
|
119
|
-
row: Row;
|
|
120
|
-
depth: number;
|
|
121
|
-
index: number;
|
|
122
|
-
rowPath: (string | number)[];
|
|
123
|
-
rowIndexPath: number[];
|
|
124
|
-
groupingKey?: string;
|
|
125
|
-
parentStableKey?: string | null;
|
|
126
|
-
}) => string;
|
|
127
|
-
/**
|
|
128
|
-
* Canonical string key for per-row expandable UI state: {@link expandedRows},
|
|
129
|
-
* {@link collapsedRows}, and entries in {@link rowStateMap} (loading/error/empty).
|
|
130
|
-
*
|
|
131
|
-
* Mirrors {@link TableRow.stableRowKey} whenever it is defined so expand state survives
|
|
132
|
-
* sort/filter reorder while positional `rowId` indices change.
|
|
133
|
-
* Falls back to {@link rowIdToString}(rowId) for synthetic rows without a stable key.
|
|
134
|
-
*/
|
|
135
|
-
export declare const expandStateKey: (tableRow: {
|
|
136
|
-
stableRowKey?: string;
|
|
137
|
-
rowId: (string | number)[];
|
|
138
|
-
}) => string;
|
|
139
|
-
/**
|
|
140
|
-
* Stable identity for full-width chrome rows (nested grid, loading/error state)
|
|
141
|
-
* under an expanded parent. Parent {@link expandStateKey} survives sort; path-based
|
|
142
|
-
* `rowId` does not, so SectionRenderer must key DOM maps on this instead.
|
|
143
|
-
*/
|
|
144
|
-
export declare const nestedChromeRowKey: (parentExpandStateKey: string | number, groupingKey: string | undefined) => string;
|
|
145
|
-
/**
|
|
146
|
-
* Get nested rows from a row based on the grouping path
|
|
147
|
-
*/
|
|
148
|
-
export declare const getNestedRows: (row: Row, groupingKey: string) => Row[];
|
|
149
|
-
/**
|
|
150
|
-
* Check if a row has nested rows for a given grouping key
|
|
151
|
-
*/
|
|
152
|
-
export declare const hasNestedRows: (row: Row, groupingKey?: string) => boolean;
|
|
153
|
-
/**
|
|
154
|
-
* Determine if a row is expanded based on expandedDepths and manual row overrides
|
|
155
|
-
* @param expandStateRowId - Canonical key for expandable row state ({@link expandStateKey}).
|
|
156
|
-
* Matches keys in expandedRows/collapsedRows (stable across sort/filter when stableRowKey is used).
|
|
157
|
-
* @param depth - The depth level of the row (0-indexed)
|
|
158
|
-
* @param expandedDepths - Set of depth levels that are expanded
|
|
159
|
-
* @param expandedRows - Map of row IDs to their depths for rows that user wants expanded
|
|
160
|
-
* @param collapsedRows - Map of row IDs to their depths for rows that user wants collapsed
|
|
161
|
-
* @returns true if the row is expanded, false otherwise
|
|
162
|
-
*/
|
|
163
|
-
export declare const isRowExpanded: (expandStateRowId: string | number, depth: number, expandedDepths: Set<number>, expandedRows: Map<string, number>, collapsedRows: Map<string, number>) => boolean;
|
|
164
|
-
/**
|
|
165
|
-
* Flatten rows recursively based on row grouping configuration
|
|
166
|
-
* Now calculates ALL properties including position and isLastGroupRow
|
|
167
|
-
* Also injects special state rows for loading/error/empty states (only if renderers are available)
|
|
168
|
-
* Also injects nested grid rows when a header has nestedTable configuration
|
|
169
|
-
*/
|
|
170
|
-
export declare const flattenRowsWithGrouping: ({ depth, expandedDepths, expandedRows, collapsedRows, rowGrouping, getRowId, rows, displayPositionOffset, rowStateMap, hasLoadingRenderer, hasErrorRenderer, hasEmptyRenderer, headers, rowHeight, headerHeight, customTheme, }: {
|
|
171
|
-
depth?: number | undefined;
|
|
172
|
-
expandedDepths: Set<number>;
|
|
173
|
-
expandedRows: Map<string, number>;
|
|
174
|
-
collapsedRows: Map<string, number>;
|
|
175
|
-
rowGrouping?: string[] | undefined;
|
|
176
|
-
getRowId?: GetRowId | undefined;
|
|
177
|
-
rows: Row[];
|
|
178
|
-
displayPositionOffset?: number | undefined;
|
|
179
|
-
rowStateMap?: Map<string | number, RowState> | undefined;
|
|
180
|
-
hasLoadingRenderer?: boolean | undefined;
|
|
181
|
-
hasErrorRenderer?: boolean | undefined;
|
|
182
|
-
hasEmptyRenderer?: boolean | undefined;
|
|
183
|
-
headers?: HeaderObject[] | undefined;
|
|
184
|
-
rowHeight: number;
|
|
185
|
-
headerHeight: number;
|
|
186
|
-
customTheme: CustomTheme;
|
|
187
|
-
}) => TableRow[];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import HeaderObject from "../types/HeaderObject";
|
|
2
|
-
import Row from "../types/Row";
|
|
3
|
-
import SortColumn from "../types/SortColumn";
|
|
4
|
-
export declare const handleSort: ({ headers, rows, sortColumn, }: {
|
|
5
|
-
headers: HeaderObject[];
|
|
6
|
-
rows: Row[];
|
|
7
|
-
sortColumn: SortColumn;
|
|
8
|
-
}) => Row[];
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type TableRowType from "../types/TableRow";
|
|
2
|
-
import { HeightOffsets } from "./infiniteScrollUtils";
|
|
3
|
-
import { CustomTheme } from "../types/CustomTheme";
|
|
4
|
-
import { LoadingStateRenderer, ErrorStateRenderer, EmptyStateRenderer } from "../types/RowStateRendererProps";
|
|
5
|
-
export interface StateRowRenderContext {
|
|
6
|
-
index: number;
|
|
7
|
-
rowHeight: number;
|
|
8
|
-
heightOffsets: HeightOffsets | undefined;
|
|
9
|
-
customTheme: CustomTheme;
|
|
10
|
-
loadingStateRenderer?: LoadingStateRenderer;
|
|
11
|
-
errorStateRenderer?: ErrorStateRenderer;
|
|
12
|
-
emptyStateRenderer?: EmptyStateRenderer;
|
|
13
|
-
}
|
|
14
|
-
export declare const createStateRow: (tableRow: TableRowType, context: StateRowRenderContext) => HTMLElement;
|
|
15
|
-
export declare const cleanupStateRow: (rowElement: HTMLElement) => void;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Docs & Examples / Examples – product-style demos (domain datasets).
|
|
3
|
-
* Stories are listed alphabetically.
|
|
4
|
-
*/
|
|
5
|
-
import type { Meta, StoryObj } from "@storybook/html";
|
|
6
|
-
declare const meta: Meta;
|
|
7
|
-
export default meta;
|
|
8
|
-
export declare const Billing: StoryObj;
|
|
9
|
-
export declare const Clay: StoryObj;
|
|
10
|
-
export declare const Crypto: StoryObj;
|
|
11
|
-
export declare const Finance: StoryObj;
|
|
12
|
-
export declare const Infrastructure: StoryObj;
|
|
13
|
-
export declare const Leads: StoryObj;
|
|
14
|
-
export declare const Manufacturing: StoryObj;
|
|
15
|
-
export declare const Music: StoryObj;
|
|
16
|
-
export declare const MusicWindowScroll: StoryObj;
|
|
17
|
-
export declare const RadioStations: StoryObj;
|
|
18
|
-
export declare const Sales: StoryObj;
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Docs & Examples / Features – capability demos, listed alphabetically.
|
|
3
|
-
*/
|
|
4
|
-
import type { Meta, StoryObj } from "@storybook/html";
|
|
5
|
-
declare const meta: Meta;
|
|
6
|
-
export default meta;
|
|
7
|
-
export declare const AdvancedSorting: StoryObj;
|
|
8
|
-
export declare const Aggregate: StoryObj;
|
|
9
|
-
export declare const Alignment: StoryObj;
|
|
10
|
-
export declare const AutoExpandColumns: StoryObj;
|
|
11
|
-
export declare const BasicRowGrouping: StoryObj;
|
|
12
|
-
export declare const CSVExportFormatting: StoryObj;
|
|
13
|
-
export declare const CSVExportSingleRowChildren: StoryObj;
|
|
14
|
-
export declare const CellHighlighting: StoryObj;
|
|
15
|
-
export declare const CellRenderer: StoryObj;
|
|
16
|
-
export declare const Charts: StoryObj;
|
|
17
|
-
export declare const ClipboardFormatting: StoryObj;
|
|
18
|
-
export declare const CollapsibleColumns: StoryObj;
|
|
19
|
-
export declare const ColumnVisibilityAPI: StoryObj;
|
|
20
|
-
export declare const ColumnWidthChange: StoryObj;
|
|
21
|
-
export declare const CustomHeaderRendering: StoryObj;
|
|
22
|
-
export declare const CustomTheme: StoryObj;
|
|
23
|
-
export declare const DynamicHeaders: StoryObj;
|
|
24
|
-
export declare const DynamicNestedTableLoading: StoryObj;
|
|
25
|
-
export declare const DynamicRowLoading: StoryObj;
|
|
26
|
-
export declare const DynamicRowLoadingWithExternalSort: StoryObj;
|
|
27
|
-
export declare const EditableCells: StoryObj;
|
|
28
|
-
export declare const ExpansionControl: StoryObj;
|
|
29
|
-
export declare const ExternalFilter: StoryObj;
|
|
30
|
-
export declare const ExternalSort: StoryObj;
|
|
31
|
-
export declare const Filter: StoryObj;
|
|
32
|
-
export declare const HeaderInclusion: StoryObj;
|
|
33
|
-
export declare const HiddenColumns: StoryObj;
|
|
34
|
-
export declare const InfiniteScroll: StoryObj;
|
|
35
|
-
export declare const LiveUpdates: StoryObj;
|
|
36
|
-
export declare const LoadingState: StoryObj;
|
|
37
|
-
export declare const NestedAccessor: StoryObj;
|
|
38
|
-
export declare const NestedGrid: StoryObj;
|
|
39
|
-
export declare const Pagination: StoryObj;
|
|
40
|
-
export declare const PaginationAPI: StoryObj;
|
|
41
|
-
export declare const Pivot: StoryObj;
|
|
42
|
-
export declare const PinnedColumns: StoryObj;
|
|
43
|
-
export declare const ProgrammaticFilter: StoryObj;
|
|
44
|
-
export declare const ProgrammaticSort: StoryObj;
|
|
45
|
-
export declare const QuickFilter: StoryObj;
|
|
46
|
-
export declare const RowButtons: StoryObj;
|
|
47
|
-
export declare const RowGrouping: StoryObj;
|
|
48
|
-
export declare const RowHeight: StoryObj;
|
|
49
|
-
export declare const RowSelection: StoryObj;
|
|
50
|
-
export declare const SelectableCells: StoryObj;
|
|
51
|
-
export declare const ServerSidePagination: StoryObj;
|
|
52
|
-
export declare const Theming: StoryObj;
|
|
53
|
-
export declare const Tooltip: StoryObj;
|
|
54
|
-
export declare const WindowInfiniteScroll: StoryObj;
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Shared Storybook args helper for Docs & Examples stories.
|
|
3
|
-
*/
|
|
4
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
5
|
-
export declare const storyArgs: (exampleDefaults?: Partial<UniversalVanillaArgs>) => {
|
|
6
|
-
args: {
|
|
7
|
-
autoExpandColumns?: boolean | undefined;
|
|
8
|
-
cellUpdateFlash?: boolean | undefined;
|
|
9
|
-
columnReordering?: boolean | undefined;
|
|
10
|
-
columnResizing?: boolean | undefined;
|
|
11
|
-
customTheme?: import("../../src").CustomThemeProps | undefined;
|
|
12
|
-
editColumns?: boolean | undefined;
|
|
13
|
-
editColumnsInitOpen?: boolean | undefined;
|
|
14
|
-
expandAll?: boolean | undefined;
|
|
15
|
-
externalFilterHandling?: boolean | undefined;
|
|
16
|
-
externalSortHandling?: boolean | undefined;
|
|
17
|
-
height?: string | undefined;
|
|
18
|
-
hideFooter?: boolean | undefined;
|
|
19
|
-
pivot?: import("../../src").PivotConfig | null | undefined;
|
|
20
|
-
rowsPerPage?: number | undefined;
|
|
21
|
-
selectableCells?: boolean | undefined;
|
|
22
|
-
selectableColumns?: boolean | undefined;
|
|
23
|
-
shouldPaginate?: boolean | undefined;
|
|
24
|
-
theme?: import("../../src/types/Theme").default | undefined;
|
|
25
|
-
useHoverRowBackground?: boolean | undefined;
|
|
26
|
-
useOddColumnBackground?: boolean | undefined;
|
|
27
|
-
useOddEvenRowBackground?: boolean | undefined;
|
|
28
|
-
};
|
|
29
|
-
argTypes: {
|
|
30
|
-
theme: {
|
|
31
|
-
control: {
|
|
32
|
-
type: "select";
|
|
33
|
-
};
|
|
34
|
-
options: string[];
|
|
35
|
-
description: string;
|
|
36
|
-
};
|
|
37
|
-
useOddColumnBackground: {
|
|
38
|
-
control: {
|
|
39
|
-
type: "boolean";
|
|
40
|
-
};
|
|
41
|
-
description: string;
|
|
42
|
-
};
|
|
43
|
-
useHoverRowBackground: {
|
|
44
|
-
control: {
|
|
45
|
-
type: "boolean";
|
|
46
|
-
};
|
|
47
|
-
description: string;
|
|
48
|
-
};
|
|
49
|
-
useOddEvenRowBackground: {
|
|
50
|
-
control: {
|
|
51
|
-
type: "boolean";
|
|
52
|
-
};
|
|
53
|
-
description: string;
|
|
54
|
-
};
|
|
55
|
-
cellUpdateFlash: {
|
|
56
|
-
control: {
|
|
57
|
-
type: "boolean";
|
|
58
|
-
};
|
|
59
|
-
description: string;
|
|
60
|
-
};
|
|
61
|
-
height: {
|
|
62
|
-
control: {
|
|
63
|
-
type: "text";
|
|
64
|
-
};
|
|
65
|
-
description: string;
|
|
66
|
-
};
|
|
67
|
-
customTheme: {
|
|
68
|
-
control: {
|
|
69
|
-
type: "object";
|
|
70
|
-
};
|
|
71
|
-
description: string;
|
|
72
|
-
};
|
|
73
|
-
autoExpandColumns: {
|
|
74
|
-
control: {
|
|
75
|
-
type: "boolean";
|
|
76
|
-
};
|
|
77
|
-
description: string;
|
|
78
|
-
};
|
|
79
|
-
expandAll: {
|
|
80
|
-
control: {
|
|
81
|
-
type: "boolean";
|
|
82
|
-
};
|
|
83
|
-
description: string;
|
|
84
|
-
};
|
|
85
|
-
columnReordering: {
|
|
86
|
-
control: {
|
|
87
|
-
type: "boolean";
|
|
88
|
-
};
|
|
89
|
-
description: string;
|
|
90
|
-
};
|
|
91
|
-
columnResizing: {
|
|
92
|
-
control: {
|
|
93
|
-
type: "boolean";
|
|
94
|
-
};
|
|
95
|
-
description: string;
|
|
96
|
-
};
|
|
97
|
-
editColumns: {
|
|
98
|
-
control: {
|
|
99
|
-
type: "boolean";
|
|
100
|
-
};
|
|
101
|
-
description: string;
|
|
102
|
-
};
|
|
103
|
-
editColumnsInitOpen: {
|
|
104
|
-
control: {
|
|
105
|
-
type: "boolean";
|
|
106
|
-
};
|
|
107
|
-
description: string;
|
|
108
|
-
};
|
|
109
|
-
selectableCells: {
|
|
110
|
-
control: {
|
|
111
|
-
type: "boolean";
|
|
112
|
-
};
|
|
113
|
-
description: string;
|
|
114
|
-
};
|
|
115
|
-
selectableColumns: {
|
|
116
|
-
control: {
|
|
117
|
-
type: "boolean";
|
|
118
|
-
};
|
|
119
|
-
description: string;
|
|
120
|
-
};
|
|
121
|
-
shouldPaginate: {
|
|
122
|
-
control: {
|
|
123
|
-
type: "boolean";
|
|
124
|
-
};
|
|
125
|
-
description: string;
|
|
126
|
-
};
|
|
127
|
-
hideFooter: {
|
|
128
|
-
control: {
|
|
129
|
-
type: "boolean";
|
|
130
|
-
};
|
|
131
|
-
description: string;
|
|
132
|
-
};
|
|
133
|
-
externalSortHandling: {
|
|
134
|
-
control: {
|
|
135
|
-
type: "boolean";
|
|
136
|
-
};
|
|
137
|
-
description: string;
|
|
138
|
-
};
|
|
139
|
-
externalFilterHandling: {
|
|
140
|
-
control: {
|
|
141
|
-
type: "boolean";
|
|
142
|
-
};
|
|
143
|
-
description: string;
|
|
144
|
-
};
|
|
145
|
-
rowsPerPage: {
|
|
146
|
-
control: {
|
|
147
|
-
type: "number";
|
|
148
|
-
min: number;
|
|
149
|
-
max: number;
|
|
150
|
-
step: number;
|
|
151
|
-
};
|
|
152
|
-
description: string;
|
|
153
|
-
};
|
|
154
|
-
};
|
|
155
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const advancedSortingExampleDefaults: {
|
|
3
|
-
height: string;
|
|
4
|
-
maxHeight: string;
|
|
5
|
-
};
|
|
6
|
-
export declare function renderAdvancedSortingExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const aggregateExampleDefaults: {
|
|
3
|
-
columnResizing: boolean;
|
|
4
|
-
height: string;
|
|
5
|
-
rowGrouping: readonly ["categories", "creators"];
|
|
6
|
-
};
|
|
7
|
-
export declare function renderAggregateExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const alignmentExampleDefaults: {
|
|
3
|
-
columnResizing: boolean;
|
|
4
|
-
columnReordering: boolean;
|
|
5
|
-
selectableCells: boolean;
|
|
6
|
-
selectableColumns: boolean;
|
|
7
|
-
editColumns: boolean;
|
|
8
|
-
height: string;
|
|
9
|
-
};
|
|
10
|
-
export declare function renderAlignmentExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const autoExpandColumnsExampleDefaults: {
|
|
3
|
-
autoExpandColumns: boolean;
|
|
4
|
-
columnResizing: boolean;
|
|
5
|
-
height: string;
|
|
6
|
-
};
|
|
7
|
-
export declare function renderAutoExpandColumnsExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
import type { Row } from "../../src/index";
|
|
3
|
-
export declare const basicExampleDefaults: {
|
|
4
|
-
columnResizing: boolean;
|
|
5
|
-
editColumns: boolean;
|
|
6
|
-
selectableCells: boolean;
|
|
7
|
-
columnReordering: boolean;
|
|
8
|
-
height: string;
|
|
9
|
-
useOddEvenRowBackground: boolean;
|
|
10
|
-
};
|
|
11
|
-
export declare function createBasicData(rowLength: number): Row[];
|
|
12
|
-
export declare function renderBasicExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const basicRowGroupingExampleDefaults: {
|
|
3
|
-
rowGrouping: readonly ["divisions", "departments"];
|
|
4
|
-
enableStickyParents: boolean;
|
|
5
|
-
height: string;
|
|
6
|
-
animations: {
|
|
7
|
-
enabled: boolean;
|
|
8
|
-
duration: number;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
export declare function renderBasicRowGroupingExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CSVExportFormatting Example – vanilla port of React CSVExportFormattingExample.
|
|
3
|
-
* Same employee data, headers, valueFormatters, useFormattedValueForCSV, and exportValueGetter as React.
|
|
4
|
-
*/
|
|
5
|
-
import type { Theme } from "../../src/index";
|
|
6
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
7
|
-
export declare const csvExportFormattingExampleDefaults: {
|
|
8
|
-
theme: Theme;
|
|
9
|
-
selectableCells: boolean;
|
|
10
|
-
height: string;
|
|
11
|
-
};
|
|
12
|
-
export declare function renderCSVExportFormattingExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const csvExportSingleRowChildrenExampleDefaults: {
|
|
3
|
-
rowGrouping: readonly ["stores"];
|
|
4
|
-
height: string;
|
|
5
|
-
};
|
|
6
|
-
export declare function renderCSVExportSingleRowChildrenExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const cellHighlightingExampleDefaults: {
|
|
3
|
-
height: string;
|
|
4
|
-
selectableCells: boolean;
|
|
5
|
-
selectableColumns: boolean;
|
|
6
|
-
};
|
|
7
|
-
export declare function renderCellHighlightingExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const cellRendererExampleDefaults: {
|
|
3
|
-
columnReordering: boolean;
|
|
4
|
-
columnResizing: boolean;
|
|
5
|
-
selectableCells: boolean;
|
|
6
|
-
};
|
|
7
|
-
export declare function renderCellRendererExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Charts Example – vanilla port of React ChartsExample.
|
|
3
|
-
* Uses same data, headers and props as main branch.
|
|
4
|
-
*/
|
|
5
|
-
import type { Row } from "../../src/index";
|
|
6
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
7
|
-
export declare const chartsExampleDefaults: {
|
|
8
|
-
columnReordering: boolean;
|
|
9
|
-
columnResizing: boolean;
|
|
10
|
-
selectableCells: boolean;
|
|
11
|
-
};
|
|
12
|
-
export declare const CHARTS_EXAMPLE_DATA: Row[];
|
|
13
|
-
export declare function renderChartsExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const clayExampleDefaults: {
|
|
3
|
-
columnResizing: boolean;
|
|
4
|
-
editColumns: boolean;
|
|
5
|
-
selectableCells: boolean;
|
|
6
|
-
columnReordering: boolean;
|
|
7
|
-
enableRowSelection: boolean;
|
|
8
|
-
columnBorders: boolean;
|
|
9
|
-
customTheme: {
|
|
10
|
-
selectionColumnWidth: number;
|
|
11
|
-
};
|
|
12
|
-
height: string;
|
|
13
|
-
};
|
|
14
|
-
export declare function renderClayExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ClipboardFormatting Example – vanilla port of React ClipboardFormattingExample.
|
|
3
|
-
* Same financial data, headers, valueFormatters, and useFormattedValueForClipboard as React.
|
|
4
|
-
*/
|
|
5
|
-
import type { Theme } from "../../src/index";
|
|
6
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
7
|
-
export declare const clipboardFormattingExampleDefaults: {
|
|
8
|
-
theme: Theme;
|
|
9
|
-
selectableCells: boolean;
|
|
10
|
-
height: string;
|
|
11
|
-
};
|
|
12
|
-
export declare function renderClipboardFormattingExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const collapsibleColumnsExampleDefaults: {
|
|
3
|
-
columnResizing: boolean;
|
|
4
|
-
editColumns: boolean;
|
|
5
|
-
selectableCells: boolean;
|
|
6
|
-
columnReordering: boolean;
|
|
7
|
-
height: string;
|
|
8
|
-
animations: {
|
|
9
|
-
enabled: boolean;
|
|
10
|
-
duration: number;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export declare function renderCollapsibleColumnsExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const columnVisibilityAPIExampleDefaults: {
|
|
3
|
-
editColumns: boolean;
|
|
4
|
-
columnResizing: boolean;
|
|
5
|
-
height: string;
|
|
6
|
-
};
|
|
7
|
-
export declare function renderColumnVisibilityAPIExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type UniversalVanillaArgs } from "../vanillaStoryConfig";
|
|
2
|
-
export declare const columnWidthChangeExampleDefaults: {
|
|
3
|
-
columnResizing: boolean;
|
|
4
|
-
height: string;
|
|
5
|
-
};
|
|
6
|
-
export declare function renderColumnWidthChangeExample(args?: Partial<UniversalVanillaArgs>): HTMLElement;
|