@1771technologies/lytenyte-pro 0.9.3 → 1.0.0-beta.0
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/README.md +3 -2
- package/dist/+types.d.ts +5299 -0
- package/dist/+types.js +1 -0
- package/dist/cell-selection/adjust-rect-for-row-and-cell-span.d.ts +2 -0
- package/dist/cell-selection/adjust-rect-for-row-and-cell-span.js +43 -0
- package/dist/cell-selection/are-rects-equal.d.ts +2 -0
- package/dist/cell-selection/are-rects-equal.js +6 -0
- package/dist/cell-selection/bound-selection-rect.d.ts +2 -0
- package/dist/cell-selection/bound-selection-rect.js +17 -0
- package/dist/cell-selection/cell-selection-containers.d.ts +3 -0
- package/dist/cell-selection/cell-selection-containers.js +91 -0
- package/dist/cell-selection/cell-selection-driver.js +272 -0
- package/dist/{types/cell-selection → cell-selection}/cell-style-row.d.ts +2 -2
- package/dist/cell-selection/cell-style-row.js +84 -0
- package/dist/cell-selection/deselect-rect-range.d.ts +2 -0
- package/dist/cell-selection/deselect-rect-range.js +43 -0
- package/dist/cell-selection/expand-cell-selection-down.d.ts +5 -0
- package/dist/cell-selection/expand-cell-selection-down.js +39 -0
- package/dist/cell-selection/expand-cell-selection-end.d.ts +5 -0
- package/dist/cell-selection/expand-cell-selection-end.js +40 -0
- package/dist/cell-selection/expand-cell-selection-start.d.ts +5 -0
- package/dist/cell-selection/expand-cell-selection-start.js +39 -0
- package/dist/cell-selection/expand-cell-selection-up.d.ts +5 -0
- package/dist/cell-selection/expand-cell-selection-up.js +39 -0
- package/dist/cell-selection/full-width-start-end-index.d.ts +2 -0
- package/dist/cell-selection/full-width-start-end-index.js +5 -0
- package/dist/cell-selection/get-root-cell.d.ts +2 -0
- package/dist/cell-selection/get-root-cell.js +86 -0
- package/dist/cell-selection/index.d.ts +19 -0
- package/dist/cell-selection/index.js +19 -0
- package/dist/cell-selection/is-bottom-rect.d.ts +2 -0
- package/dist/cell-selection/is-bottom-rect.js +7 -0
- package/dist/cell-selection/is-center-col-rect.d.ts +5 -0
- package/dist/cell-selection/is-center-col-rect.js +5 -0
- package/dist/cell-selection/is-center-rect.d.ts +2 -0
- package/dist/cell-selection/is-center-rect.js +5 -0
- package/dist/cell-selection/is-end-rect.d.ts +5 -0
- package/dist/cell-selection/is-end-rect.js +4 -0
- package/dist/cell-selection/is-overlapping-rect.d.ts +2 -0
- package/dist/cell-selection/is-overlapping-rect.js +6 -0
- package/dist/cell-selection/is-start-rect.d.ts +5 -0
- package/dist/cell-selection/is-start-rect.js +4 -0
- package/dist/cell-selection/is-top-rect.d.ts +2 -0
- package/dist/cell-selection/is-top-rect.js +4 -0
- package/dist/cell-selection/is-within-selection-rect.d.ts +2 -0
- package/dist/cell-selection/is-within-selection-rect.js +3 -0
- package/dist/cell-selection/split-cell-selection-rect.d.ts +39 -0
- package/dist/cell-selection/split-cell-selection-rect.js +79 -0
- package/dist/cell-selection/update-additive-cell-selection.d.ts +5 -0
- package/dist/cell-selection/update-additive-cell-selection.js +25 -0
- package/dist/cell-selection/use-edge-scroll.d.ts +10 -0
- package/dist/cell-selection/use-edge-scroll.js +66 -0
- package/dist/cells/cell-default.d.ts +2 -0
- package/dist/cells/cell-default.js +8 -0
- package/dist/cells/cell-editor.d.ts +6 -0
- package/dist/cells/cell-editor.js +96 -0
- package/dist/cells/cell.d.ts +7 -0
- package/dist/cells/cell.js +37 -0
- package/dist/column-manager/branch-lookup-context.d.ts +4 -0
- package/dist/column-manager/branch-lookup-context.js +3 -0
- package/dist/column-manager/branch.d.ts +9 -0
- package/dist/column-manager/branch.js +38 -0
- package/dist/column-manager/column-manager.d.ts +15 -0
- package/dist/column-manager/column-manager.js +20 -0
- package/dist/column-manager/context.d.ts +7 -0
- package/dist/column-manager/context.js +3 -0
- package/dist/column-manager/label.d.ts +5 -0
- package/dist/column-manager/label.js +18 -0
- package/dist/column-manager/leaf.d.ts +6 -0
- package/dist/column-manager/leaf.js +40 -0
- package/dist/column-manager/move-handle.d.ts +12 -0
- package/dist/column-manager/move-handle.js +58 -0
- package/dist/column-manager/passive-scroll.d.ts +2 -0
- package/dist/column-manager/passive-scroll.js +2 -0
- package/dist/column-manager/root.d.ts +9 -0
- package/dist/column-manager/root.js +20 -0
- package/dist/column-manager/use-column-manager.d.ts +19 -0
- package/dist/column-manager/use-column-manager.js +24 -0
- package/dist/column-manager/use-columns-from-context.d.ts +3 -0
- package/dist/column-manager/use-columns-from-context.js +23 -0
- package/dist/column-manager/visibility-checkbox.d.ts +9 -0
- package/dist/column-manager/visibility-checkbox.js +30 -0
- package/dist/context.d.ts +10 -0
- package/dist/context.js +4 -0
- package/dist/filter-tree/branch.d.ts +10 -0
- package/dist/filter-tree/branch.js +21 -0
- package/dist/filter-tree/context.d.ts +27 -0
- package/dist/filter-tree/context.js +5 -0
- package/dist/filter-tree/filter-tree.d.ts +14 -0
- package/dist/filter-tree/filter-tree.js +18 -0
- package/dist/filter-tree/hooks/use-filter-tree.d.ts +37 -0
- package/dist/filter-tree/hooks/use-filter-tree.js +96 -0
- package/dist/filter-tree/hooks/use-tree-item.d.ts +8 -0
- package/dist/filter-tree/hooks/use-tree-item.js +116 -0
- package/dist/filter-tree/inclusion-checkbox.d.ts +9 -0
- package/dist/filter-tree/inclusion-checkbox.js +14 -0
- package/dist/filter-tree/label.d.ts +5 -0
- package/dist/filter-tree/label.js +18 -0
- package/dist/filter-tree/leaf.d.ts +6 -0
- package/dist/filter-tree/leaf.js +12 -0
- package/dist/filter-tree/root.d.ts +13 -0
- package/dist/filter-tree/root.js +30 -0
- package/dist/grid-box/+types.d.ts +13 -0
- package/dist/grid-box/+types.js +1 -0
- package/dist/grid-box/context.d.ts +9 -0
- package/dist/grid-box/context.js +3 -0
- package/dist/grid-box/grid-box.d.ts +12 -0
- package/dist/grid-box/grid-box.js +14 -0
- package/dist/grid-box/item.d.ts +7 -0
- package/dist/grid-box/item.js +33 -0
- package/dist/grid-box/panel.d.ts +1 -0
- package/dist/grid-box/panel.js +9 -0
- package/dist/grid-box/root.d.ts +9 -0
- package/dist/grid-box/root.js +8 -0
- package/dist/grid-box/use-aggregation-box-items.d.ts +18 -0
- package/dist/grid-box/use-aggregation-box-items.js +60 -0
- package/dist/grid-box/use-column-box-items.d.ts +31 -0
- package/dist/grid-box/use-column-box-items.js +81 -0
- package/dist/grid-box/use-row-group-box-items.d.ts +18 -0
- package/dist/grid-box/use-row-group-box-items.js +134 -0
- package/dist/grid-provider/context.d.ts +5 -0
- package/dist/grid-provider/context.js +2 -0
- package/dist/grid-provider/provider.d.ts +3 -0
- package/dist/grid-provider/provider.js +2 -0
- package/dist/grid-provider/use-grid.d.ts +3 -0
- package/dist/grid-provider/use-grid.js +3 -0
- package/dist/grid.d.ts +29 -0
- package/dist/grid.js +38 -0
- package/dist/header/header-cell.d.ts +10 -0
- package/dist/header/header-cell.js +24 -0
- package/dist/header/header-group-cell.d.ts +5 -0
- package/dist/header/header-group-cell.js +14 -0
- package/dist/header/header-row.d.ts +4 -0
- package/dist/header/header-row.js +10 -0
- package/dist/header/header.d.ts +1 -0
- package/dist/header/header.js +10 -0
- package/dist/header/resize-handler.d.ts +12 -0
- package/dist/header/resize-handler.js +128 -0
- package/dist/header/use-drag-move.d.ts +14 -0
- package/dist/header/use-drag-move.js +90 -0
- package/dist/header/use-header-cell-renderer.d.ts +4 -0
- package/dist/header/use-header-cell-renderer.js +36 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -3860
- package/dist/license.d.ts +2 -0
- package/dist/license.js +217 -0
- package/dist/listbox/context.d.ts +6 -0
- package/dist/listbox/context.js +3 -0
- package/dist/listbox/item.d.ts +1 -0
- package/dist/listbox/item.js +25 -0
- package/dist/listbox/panel.d.ts +1 -0
- package/dist/listbox/panel.js +50 -0
- package/dist/listbox/root.d.ts +6 -0
- package/dist/listbox/root.js +12 -0
- package/dist/root/dialog-driver.js +21 -0
- package/dist/root/popover-driver.js +21 -0
- package/dist/root/root.d.ts +8 -0
- package/dist/root/root.js +120 -0
- package/dist/row-data-source-client/+constants.d.ts +2 -0
- package/dist/row-data-source-client/+constants.js +2 -0
- package/dist/row-data-source-client/+types.d.ts +27 -0
- package/dist/row-data-source-client/+types.js +1 -0
- package/dist/row-data-source-client/built-ins/avg.d.ts +10 -0
- package/dist/row-data-source-client/built-ins/avg.js +16 -0
- package/dist/row-data-source-client/built-ins/built-ins.d.ts +44 -0
- package/dist/row-data-source-client/built-ins/built-ins.js +44 -0
- package/dist/row-data-source-client/built-ins/count.d.ts +10 -0
- package/dist/row-data-source-client/built-ins/count.js +16 -0
- package/dist/row-data-source-client/built-ins/first.d.ts +10 -0
- package/dist/row-data-source-client/built-ins/first.js +12 -0
- package/dist/row-data-source-client/built-ins/group.d.ts +1 -0
- package/dist/row-data-source-client/built-ins/group.js +3 -0
- package/dist/row-data-source-client/built-ins/last.d.ts +10 -0
- package/dist/row-data-source-client/built-ins/last.js +12 -0
- package/dist/row-data-source-client/built-ins/max.d.ts +11 -0
- package/dist/row-data-source-client/built-ins/max.js +25 -0
- package/dist/row-data-source-client/built-ins/min.d.ts +11 -0
- package/dist/row-data-source-client/built-ins/min.js +25 -0
- package/dist/row-data-source-client/built-ins/sum.d.ts +10 -0
- package/dist/row-data-source-client/built-ins/sum.js +21 -0
- package/dist/row-data-source-client/filter/+types.d.ts +23 -0
- package/dist/row-data-source-client/filter/+types.js +1 -0
- package/dist/row-data-source-client/filter/compute-filtered-rows.d.ts +2 -0
- package/dist/row-data-source-client/filter/compute-filtered-rows.js +109 -0
- package/dist/row-data-source-client/pivots/create-agg-model.d.ts +6 -0
- package/dist/row-data-source-client/pivots/create-agg-model.js +13 -0
- package/dist/row-data-source-client/pivots/create-pivot-columns-from-paths.d.ts +2 -0
- package/dist/row-data-source-client/pivots/create-pivot-columns-from-paths.js +50 -0
- package/dist/row-data-source-client/pivots/create-pivot-columns.d.ts +2 -0
- package/dist/row-data-source-client/pivots/create-pivot-columns.js +22 -0
- package/dist/row-data-source-client/pivots/create-pivot-tree.d.ts +2 -0
- package/dist/row-data-source-client/pivots/create-pivot-tree.js +23 -0
- package/dist/row-data-source-client/tree/client-tree.d.ts +18 -0
- package/dist/row-data-source-client/tree/client-tree.js +76 -0
- package/dist/row-data-source-client/tree/evaluator-aggregation.d.ts +2 -0
- package/dist/row-data-source-client/tree/evaluator-aggregation.js +8 -0
- package/dist/row-data-source-client/tree/evaluator-group.d.ts +2 -0
- package/dist/row-data-source-client/tree/evaluator-group.js +9 -0
- package/dist/row-data-source-client/tree/traverse.d.ts +2 -0
- package/dist/row-data-source-client/tree/traverse.js +22 -0
- package/dist/row-data-source-client/use-client-data-source-paginated.d.ts +10 -0
- package/dist/row-data-source-client/use-client-data-source-paginated.js +538 -0
- package/dist/row-data-source-client/use-client-data-source.d.ts +10 -0
- package/dist/row-data-source-client/use-client-data-source.js +667 -0
- package/dist/row-data-source-client/use-client-tree-data-source.d.ts +9 -0
- package/dist/row-data-source-client/use-client-tree-data-source.js +513 -0
- package/dist/row-data-source-server/async-tree/+constants.async-tree.d.ts +1 -0
- package/dist/row-data-source-server/async-tree/+constants.async-tree.js +1 -0
- package/dist/row-data-source-server/async-tree/+types.async-tree.d.ts +59 -0
- package/dist/row-data-source-server/async-tree/+types.async-tree.js +1 -0
- package/dist/row-data-source-server/async-tree/apply-delete-action-to-tree.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/apply-delete-action-to-tree.js +27 -0
- package/dist/row-data-source-server/async-tree/apply-set-action-to-tree.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/apply-set-action-to-tree.js +36 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-unique.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-unique.js +24 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-valid.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-are-valid.js +14 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-fit.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-keys-fit.js +18 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-kinds.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/check-set-action-item-kinds.js +14 -0
- package/dist/row-data-source-server/async-tree/get-parent-node-by-path.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/get-parent-node-by-path.js +18 -0
- package/dist/row-data-source-server/async-tree/is-set-action-a-no-op-on-node.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/is-set-action-a-no-op-on-node.js +3 -0
- package/dist/row-data-source-server/async-tree/make-async-tree.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/make-async-tree.js +19 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-parent-remove-self.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-parent-remove-self.js +8 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-resize.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-resize.js +17 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-set-action-items.d.ts +2 -0
- package/dist/row-data-source-server/async-tree/maybe-apply-set-action-items.js +51 -0
- package/dist/row-data-source-server/range-tree/range-tree.d.ts +66 -0
- package/dist/row-data-source-server/range-tree/range-tree.js +102 -0
- package/dist/row-data-source-server/use-server-data-source.d.ts +3 -0
- package/dist/row-data-source-server/use-server-data-source.js +679 -0
- package/dist/row-data-source-server/utils/get-node-depth.d.ts +2 -0
- package/dist/row-data-source-server/utils/get-node-depth.js +9 -0
- package/dist/row-data-source-server/utils/get-node-path.d.ts +2 -0
- package/dist/row-data-source-server/utils/get-node-path.js +9 -0
- package/dist/row-data-source-server/utils/get-request-id.d.ts +1 -0
- package/dist/row-data-source-server/utils/get-request-id.js +6 -0
- package/dist/rows/row/context.d.ts +6 -0
- package/dist/rows/row/context.js +3 -0
- package/dist/rows/row/row.d.ts +7 -0
- package/dist/rows/row/row.js +16 -0
- package/dist/rows/row/use-row-context-value.d.ts +6 -0
- package/dist/rows/row/use-row-context-value.js +29 -0
- package/dist/rows/row-detail-row.d.ts +4 -0
- package/dist/rows/row-detail-row.js +131 -0
- package/dist/rows/row-full-width.d.ts +8 -0
- package/dist/rows/row-full-width.js +17 -0
- package/dist/rows/rows-container.d.ts +1 -0
- package/dist/rows/rows-container.js +9 -0
- package/dist/rows/rows-sections.d.ts +3 -0
- package/dist/rows/rows-sections.js +27 -0
- package/dist/rows/scrollers/native-scroller.d.ts +2 -0
- package/dist/rows/scrollers/native-scroller.js +18 -0
- package/dist/{types/sort-manager/use-sort-state.d.ts → sort-manager/+types.d.ts} +5 -2
- package/dist/sort-manager/+types.js +1 -0
- package/dist/sort-manager/context.d.ts +14 -0
- package/dist/sort-manager/context.js +5 -0
- package/dist/sort-manager/hooks/use-sort-manager.d.ts +15 -0
- package/dist/sort-manager/hooks/use-sort-manager.js +56 -0
- package/dist/{types/sort-manager/sort-manager-container.d.ts → sort-manager/hooks/use-sort-row-item.d.ts} +5 -7
- package/dist/sort-manager/hooks/use-sort-row-item.js +145 -0
- package/dist/sort-manager/hooks/use-sortable-column-items.d.ts +5 -0
- package/dist/sort-manager/hooks/use-sortable-column-items.js +13 -0
- package/dist/sort-manager/root.d.ts +3 -0
- package/dist/sort-manager/root.js +14 -0
- package/dist/sort-manager/sort-add.d.ts +8 -0
- package/dist/sort-manager/sort-add.js +14 -0
- package/dist/sort-manager/sort-apply.d.ts +7 -0
- package/dist/sort-manager/sort-apply.js +24 -0
- package/dist/sort-manager/sort-cancel.d.ts +7 -0
- package/dist/sort-manager/sort-cancel.js +27 -0
- package/dist/sort-manager/sort-clear.d.ts +7 -0
- package/dist/sort-manager/sort-clear.js +22 -0
- package/dist/sort-manager/sort-column-select.d.ts +10 -0
- package/dist/sort-manager/sort-column-select.js +20 -0
- package/dist/sort-manager/sort-direction-select.d.ts +10 -0
- package/dist/sort-manager/sort-direction-select.js +24 -0
- package/dist/sort-manager/sort-manager.d.ts +16 -0
- package/dist/sort-manager/sort-manager.js +26 -0
- package/dist/sort-manager/sort-remove.d.ts +7 -0
- package/dist/sort-manager/sort-remove.js +14 -0
- package/dist/sort-manager/sort-row.d.ts +5 -0
- package/dist/sort-manager/sort-row.js +7 -0
- package/dist/sort-manager/sort-rows.d.ts +1 -0
- package/dist/sort-manager/sort-rows.js +6 -0
- package/dist/sort-manager/sort-value-select.d.ts +11 -0
- package/dist/sort-manager/sort-value-select.js +25 -0
- package/dist/sort-manager/utils/sort-item-to-sort-model.d.ts +3 -0
- package/dist/sort-manager/utils/sort-item-to-sort-model.js +57 -0
- package/dist/sort-manager/utils/sort-model-to-sort-items.d.ts +3 -0
- package/dist/sort-manager/utils/sort-model-to-sort-items.js +49 -0
- package/dist/state/+types.d.ts +34 -0
- package/dist/state/+types.js +1 -0
- package/dist/state/api/column-autosize.d.ts +5 -0
- package/dist/state/api/column-autosize.js +72 -0
- package/dist/state/api/column-by-id.d.ts +2 -0
- package/dist/state/api/column-by-id.js +6 -0
- package/dist/state/api/column-field.d.ts +2 -0
- package/dist/state/api/column-field.js +23 -0
- package/dist/state/api/column-from-index.d.ts +2 -0
- package/dist/state/api/column-from-index.js +6 -0
- package/dist/state/api/column-group-toggle.d.ts +2 -0
- package/dist/state/api/column-group-toggle.js +10 -0
- package/dist/state/api/column-index.d.ts +2 -0
- package/dist/state/api/column-index.js +7 -0
- package/dist/state/api/column-move.d.ts +2 -0
- package/dist/state/api/column-move.js +49 -0
- package/dist/state/api/column-resize.d.ts +2 -0
- package/dist/state/api/column-resize.js +9 -0
- package/dist/state/api/column-update.d.ts +2 -0
- package/dist/state/api/column-update.js +13 -0
- package/dist/state/api/dialog-frame.d.ts +8 -0
- package/dist/state/api/dialog-frame.js +16 -0
- package/dist/state/api/edit-begin.d.ts +5 -0
- package/dist/state/api/edit-begin.js +91 -0
- package/dist/state/api/edit-end.d.ts +5 -0
- package/dist/state/api/edit-end.js +43 -0
- package/dist/state/api/edit-is-cell-active.d.ts +5 -0
- package/dist/state/api/edit-is-cell-active.js +27 -0
- package/dist/state/api/edit-update.d.ts +5 -0
- package/dist/state/api/edit-update.js +88 -0
- package/dist/state/api/event-listeners.d.ts +5 -0
- package/dist/state/api/event-listeners.js +19 -0
- package/dist/state/api/export-csv.d.ts +3 -0
- package/dist/state/api/export-csv.js +40 -0
- package/dist/state/api/export-data-rect.d.ts +2 -0
- package/dist/state/api/export-data-rect.js +24 -0
- package/dist/state/api/focus-cell.d.ts +5 -0
- package/dist/state/api/focus-cell.js +117 -0
- package/dist/state/api/popover-frame.d.ts +8 -0
- package/dist/state/api/popover-frame.js +16 -0
- package/dist/state/api/position-from-element.d.ts +2 -0
- package/dist/state/api/position-from-element.js +9 -0
- package/dist/state/api/row-by-id.d.ts +2 -0
- package/dist/state/api/row-by-id.js +5 -0
- package/dist/state/api/row-by-index.d.ts +2 -0
- package/dist/state/api/row-by-index.js +9 -0
- package/dist/state/api/row-detail-is-expanded.d.ts +2 -0
- package/dist/state/api/row-detail-is-expanded.js +6 -0
- package/dist/state/api/row-detail-rendered-height.d.ts +5 -0
- package/dist/state/api/row-detail-rendered-height.js +14 -0
- package/dist/state/api/row-detail-toggle.d.ts +2 -0
- package/dist/state/api/row-detail-toggle.js +32 -0
- package/dist/state/api/row-group-apply-expansions.d.ts +2 -0
- package/dist/state/api/row-group-apply-expansions.js +20 -0
- package/dist/state/api/row-group-column-index.d.ts +2 -0
- package/dist/state/api/row-group-column-index.js +14 -0
- package/dist/state/api/row-group-is-expanded.d.ts +2 -0
- package/dist/state/api/row-group-is-expanded.js +15 -0
- package/dist/state/api/row-group-toggle.d.ts +2 -0
- package/dist/state/api/row-group-toggle.js +7 -0
- package/dist/state/api/row-handle-select.d.ts +5 -0
- package/dist/state/api/row-handle-select.js +43 -0
- package/dist/state/api/row-select-all.d.ts +2 -0
- package/dist/state/api/row-select-all.js +17 -0
- package/dist/state/api/row-select.d.ts +5 -0
- package/dist/state/api/row-select.js +35 -0
- package/dist/state/api/row-selected.d.ts +2 -0
- package/dist/state/api/row-selected.js +13 -0
- package/dist/state/api/scroll-into-view.d.ts +5 -0
- package/dist/state/api/scroll-into-view.js +50 -0
- package/dist/state/api/sort-for-column.d.ts +2 -0
- package/dist/state/api/sort-for-column.js +9 -0
- package/dist/state/api/use-row-drag.d.ts +2 -0
- package/dist/state/api/use-row-drag.js +27 -0
- package/dist/state/helpers/cell-row-group.d.ts +2 -0
- package/dist/state/helpers/cell-row-group.js +19 -0
- package/dist/state/helpers/column-add-row-group.d.ts +9 -0
- package/dist/state/helpers/column-add-row-group.js +66 -0
- package/dist/state/helpers/column-layout.d.ts +3 -0
- package/dist/state/helpers/column-layout.js +65 -0
- package/dist/state/helpers/column-marker.d.ts +8 -0
- package/dist/state/helpers/column-marker.js +43 -0
- package/dist/state/helpers/column-view.d.ts +21 -0
- package/dist/state/helpers/column-view.js +33 -0
- package/dist/state/helpers/edit-on-change.d.ts +15 -0
- package/dist/state/helpers/edit-on-change.js +26 -0
- package/dist/state/helpers/empty-row-data-source.d.ts +2 -0
- package/dist/state/helpers/empty-row-data-source.js +17 -0
- package/dist/state/helpers/get-data-rect.d.ts +13 -0
- package/dist/state/helpers/get-data-rect.js +65 -0
- package/dist/state/helpers/get-full-width-callback.d.ts +2 -0
- package/dist/state/helpers/get-full-width-callback.js +8 -0
- package/dist/state/helpers/get-span-callback.d.ts +2 -0
- package/dist/state/helpers/get-span-callback.js +20 -0
- package/dist/state/helpers/resolve-column.d.ts +4 -0
- package/dist/state/helpers/resolve-column.js +22 -0
- package/dist/state/helpers/row-layout/get-focus-criteria.d.ts +17 -0
- package/dist/state/helpers/row-layout/get-focus-criteria.js +62 -0
- package/dist/state/helpers/row-layout/row-layout.d.ts +18 -0
- package/dist/state/helpers/row-layout/row-layout.js +414 -0
- package/dist/state/use-lytenyte.d.ts +3 -0
- package/dist/state/use-lytenyte.js +579 -0
- package/dist/tree-view/branch/branch.d.ts +11 -0
- package/dist/tree-view/branch/branch.js +61 -0
- package/dist/tree-view/branch/use-branch-keys.d.ts +2 -0
- package/dist/tree-view/branch/use-branch-keys.js +87 -0
- package/dist/tree-view/context.d.ts +22 -0
- package/dist/tree-view/context.js +3 -0
- package/dist/tree-view/depth-provider.d.ts +2 -0
- package/dist/tree-view/depth-provider.js +3 -0
- package/dist/tree-view/hooks/use-tree-view-paths.d.ts +2 -0
- package/dist/tree-view/hooks/use-tree-view-paths.js +9 -0
- package/dist/tree-view/index.d.ts +16 -0
- package/dist/tree-view/index.js +16 -0
- package/dist/tree-view/leaf.d.ts +4 -0
- package/dist/tree-view/leaf.js +27 -0
- package/dist/tree-view/navigation/get-all-ids.d.ts +1 -0
- package/dist/tree-view/navigation/get-all-ids.js +7 -0
- package/dist/tree-view/navigation/get-first-node.d.ts +1 -0
- package/dist/tree-view/navigation/get-first-node.js +7 -0
- package/dist/tree-view/navigation/get-last-node.d.ts +1 -0
- package/dist/tree-view/navigation/get-last-node.js +7 -0
- package/dist/tree-view/navigation/get-next-node.d.ts +1 -0
- package/dist/tree-view/navigation/get-next-node.js +13 -0
- package/dist/tree-view/navigation/get-prev-node.d.ts +1 -0
- package/dist/tree-view/navigation/get-prev-node.js +13 -0
- package/dist/tree-view/panel/make-handle-navigation.d.ts +2 -0
- package/dist/tree-view/panel/make-handle-navigation.js +39 -0
- package/dist/tree-view/panel/make-handle-selection.d.ts +2 -0
- package/dist/tree-view/panel/make-handle-selection.js +92 -0
- package/dist/tree-view/panel/make-handle-typeahead.d.ts +1 -0
- package/dist/tree-view/panel/make-handle-typeahead.js +45 -0
- package/dist/tree-view/panel/panel.d.ts +1 -0
- package/dist/tree-view/panel/panel.js +30 -0
- package/dist/tree-view/panel/use-tree-navigation.d.ts +1 -0
- package/dist/tree-view/panel/use-tree-navigation.js +63 -0
- package/dist/tree-view/root.d.ts +17 -0
- package/dist/tree-view/root.js +63 -0
- package/dist/tree-view/utils/get-focusable-nodes.d.ts +1 -0
- package/dist/tree-view/utils/get-focusable-nodes.js +5 -0
- package/dist/tree-view/utils/get-focused-node.d.ts +1 -0
- package/dist/tree-view/utils/get-focused-node.js +14 -0
- package/dist/tree-view/utils/get-ids-between-nodes.d.ts +1 -0
- package/dist/tree-view/utils/get-ids-between-nodes.js +15 -0
- package/dist/tree-view/utils/get-panel.d.ts +1 -0
- package/dist/tree-view/utils/get-panel.js +7 -0
- package/dist/tree-view/utils/get-parent-node.d.ts +1 -0
- package/dist/tree-view/utils/get-parent-node.js +10 -0
- package/dist/tree-view/utils/get-sibling-branches.d.ts +1 -0
- package/dist/tree-view/utils/get-sibling-branches.js +14 -0
- package/dist/tree-view/utils/get-tree-node-id.d.ts +1 -0
- package/dist/tree-view/utils/get-tree-node-id.js +3 -0
- package/dist/tree-view/utils/is-branch-node.d.ts +1 -0
- package/dist/tree-view/utils/is-branch-node.js +3 -0
- package/dist/tree-view/utils/is-leaf-node.d.ts +1 -0
- package/dist/tree-view/utils/is-leaf-node.js +3 -0
- package/dist/tree-view/utils/is-tree-node-disabled.d.ts +1 -0
- package/dist/tree-view/utils/is-tree-node-disabled.js +3 -0
- package/dist/tree-view/utils/select-node.d.ts +2 -0
- package/dist/tree-view/utils/select-node.js +15 -0
- package/dist/tree-view/utils/toggle-all-selections.d.ts +2 -0
- package/dist/tree-view/utils/toggle-all-selections.js +9 -0
- package/dist/tree-view/utils/toggle-selection.d.ts +2 -0
- package/dist/tree-view/utils/toggle-selection.js +21 -0
- package/dist/tree-view/virtualized/force-sync-scrolling.d.ts +2 -0
- package/dist/tree-view/virtualized/force-sync-scrolling.js +23 -0
- package/dist/tree-view/virtualized/get-virtual-tree-paths.d.ts +2 -0
- package/dist/tree-view/virtualized/get-virtual-tree-paths.js +14 -0
- package/dist/tree-view/virtualized/make-virtual-tree.d.ts +31 -0
- package/dist/tree-view/virtualized/make-virtual-tree.js +90 -0
- package/dist/tree-view/virtualized/use-flattened-tree.d.ts +9 -0
- package/dist/tree-view/virtualized/use-flattened-tree.js +36 -0
- package/dist/tree-view/virtualized/use-row-start-and-end.d.ts +2 -0
- package/dist/tree-view/virtualized/use-row-start-and-end.js +27 -0
- package/dist/tree-view/virtualized/use-virtualized-tree.d.ts +22 -0
- package/dist/tree-view/virtualized/use-virtualized-tree.js +100 -0
- package/dist/types/types.d.ts +8 -13
- package/dist/types/types.js +1 -0
- package/dist/utils/cycle-sorts.d.ts +2 -0
- package/dist/utils/cycle-sorts.js +16 -0
- package/dist/viewport/begin-editing.d.ts +5 -0
- package/dist/viewport/begin-editing.js +15 -0
- package/dist/viewport/viewport.d.ts +1 -0
- package/dist/viewport/viewport.js +77 -0
- package/main.css +315 -0
- package/package.json +31 -79
- package/dist/CompositeList-CGRaS6LQ.js +0 -149
- package/dist/DialogPortalContext-C2WZTqJ3.js +0 -47
- package/dist/DirectionContext-DIPP5cAe.js +0 -15
- package/dist/InternalBackdrop-C4RACVzs.js +0 -324
- package/dist/PopoverPortalContext-BdsDjihw.js +0 -26
- package/dist/anchor-context-Cqr_oiJt.js +0 -11
- package/dist/arrow-down-icon-B-3ldODD.js +0 -27
- package/dist/column-manager.js +0 -1228
- package/dist/column-menu-driver-cG-EZgLa.js +0 -491
- package/dist/cross-icon-CEMLAlFX.js +0 -20
- package/dist/dialog.js +0 -506
- package/dist/drag-store-BMsDBUy_.js +0 -1039
- package/dist/filter-manager.js +0 -1057
- package/dist/getPseudoElementBounds-BSHt6WYm.js +0 -26
- package/dist/grid-container.js +0 -18
- package/dist/icons.js +0 -516
- package/dist/lytenyte-pro.css +0 -2167
- package/dist/manage-columns-icon-D4CElo5H.js +0 -146
- package/dist/menu-lIx6h6Vn.js +0 -1885
- package/dist/menu.js +0 -4
- package/dist/more-dots-icon-CzAH3xHG.js +0 -26
- package/dist/pill-BHBLeJ6k.js +0 -1012
- package/dist/pill-manager.js +0 -737
- package/dist/plus-icon-ToqW5CC-.js +0 -15
- package/dist/popover.js +0 -795
- package/dist/proptypes-BjYr2nFr.js +0 -6472
- package/dist/row-group-icon-DFUMye0v.js +0 -186
- package/dist/search-icon-CcG1lqsn.js +0 -86
- package/dist/select-Db5ksjoS.js +0 -2256
- package/dist/separator-BnPPeAk8.js +0 -21
- package/dist/sort-descending-BMtfaa2L.js +0 -34
- package/dist/sort-manager.js +0 -308
- package/dist/tickmark-icon-CoogRMoO.js +0 -51
- package/dist/types/anchor-context/anchor-context.d.ts +0 -6
- package/dist/types/cell-selection/cell-selection-containers.d.ts +0 -3
- package/dist/types/column-manager/column-manager-context.d.ts +0 -12
- package/dist/types/column-manager/column-manager-drag-box-controls.d.ts +0 -1
- package/dist/types/column-manager/column-manager-drag-box-expander.d.ts +0 -1
- package/dist/types/column-manager/column-manager-drag-box-label.d.ts +0 -5
- package/dist/types/column-manager/column-manager-drag-box.d.ts +0 -13
- package/dist/types/column-manager/column-manager-drag-placeholder.d.ts +0 -5
- package/dist/types/column-manager/column-manager-drop-zone.d.ts +0 -10
- package/dist/types/column-manager/column-manager-impl.d.ts +0 -36
- package/dist/types/column-manager/column-manager-pill.d.ts +0 -4
- package/dist/types/column-manager/column-manager-pivot-mode-toggle.d.ts +0 -1
- package/dist/types/column-manager/column-manager-search.d.ts +0 -1
- package/dist/types/column-manager/column-manager-state.d.ts +0 -8
- package/dist/types/column-manager/column-manager-tree-item.d.ts +0 -6
- package/dist/types/column-manager/column-manager-tree.d.ts +0 -11
- package/dist/types/column-manager/column-manager-types.d.ts +0 -1
- package/dist/types/column-manager/column-manager.d.ts +0 -1
- package/dist/types/column-manager/utils/all-leafs.d.ts +0 -3
- package/dist/types/column-manager/utils/can-hide-item.d.ts +0 -3
- package/dist/types/column-manager/utils/handle-item-hide.d.ts +0 -3
- package/dist/types/components-internal/button/button.d.ts +0 -9
- package/dist/types/components-internal/grid-frame/grid-frame.d.ts +0 -11
- package/dist/types/components-internal/radio/radio.d.ts +0 -5
- package/dist/types/components-internal/separator/separator.d.ts +0 -8
- package/dist/types/components-internal/toggle/toggle.d.ts +0 -7
- package/dist/types/dialog/dialog-impl.d.ts +0 -6
- package/dist/types/dialog/dialog.d.ts +0 -8
- package/dist/types/dialog/use-dialog-class.d.ts +0 -1
- package/dist/types/external.d.ts +0 -2
- package/dist/types/filter-manager/combined-to-flat.d.ts +0 -3
- package/dist/types/filter-manager/components/apply-filter-button.d.ts +0 -1
- package/dist/types/filter-manager/components/clear-filter-button.d.ts +0 -1
- package/dist/types/filter-manager/components/flatten-tree-items.d.ts +0 -4
- package/dist/types/filter-manager/components/get-child-values.d.ts +0 -2
- package/dist/types/filter-manager/components/in-filter-container.d.ts +0 -1
- package/dist/types/filter-manager/components/in-filter-error.d.ts +0 -5
- package/dist/types/filter-manager/components/in-filter-loading.d.ts +0 -1
- package/dist/types/filter-manager/components/in-filter-root.d.ts +0 -11
- package/dist/types/filter-manager/components/in-filter-tree.d.ts +0 -15
- package/dist/types/filter-manager/components/simple-filter-additional-switch.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-operator/date-operator.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-operator/number-operator.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-operator/simple-filter-operator.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-operator/text-operator.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-root.d.ts +0 -9
- package/dist/types/filter-manager/components/simple-filter-value/date-value.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-value/number-value.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-value/simple-filter-value.d.ts +0 -1
- package/dist/types/filter-manager/components/simple-filter-value/text-value.d.ts +0 -1
- package/dist/types/filter-manager/components/use-date-filter-callbacks.d.ts +0 -9
- package/dist/types/filter-manager/components/use-in-filter-item-loader.d.ts +0 -7
- package/dist/types/filter-manager/components/use-number-filter-callbacks.d.ts +0 -8
- package/dist/types/filter-manager/components/use-text-filter-callbacks.d.ts +0 -8
- package/dist/types/filter-manager/filter-manager-impl.d.ts +0 -27
- package/dist/types/filter-manager/filter-manager.d.ts +0 -1
- package/dist/types/filter-manager/filter-state-context.d.ts +0 -16
- package/dist/types/filter-manager/flat-to-combined.d.ts +0 -3
- package/dist/types/filter-manager/flatten-combined-filter.d.ts +0 -3
- package/dist/types/filter-manager/is-filter-complete.d.ts +0 -2
- package/dist/types/filter-manager/types.d.ts +0 -15
- package/dist/types/filter-manager/use-in-filter.d.ts +0 -5
- package/dist/types/filter-manager/use-simple-filters.d.ts +0 -8
- package/dist/types/grid-container/grid-container-impl.d.ts +0 -6
- package/dist/types/grid-container/grid-container.d.ts +0 -2
- package/dist/types/header-cell/header-cell-default.d.ts +0 -2
- package/dist/types/icons.d.ts +0 -1
- package/dist/types/index.d.ts +0 -8
- package/dist/types/license.d.ts +0 -12
- package/dist/types/list-view/list-view-context.d.ts +0 -21
- package/dist/types/list-view/list-view.d.ts +0 -26
- package/dist/types/lytenyte-pro.d.ts +0 -7
- package/dist/types/menu/arrow-svg.d.ts +0 -1
- package/dist/types/menu/column-menu/column-menu-driver.d.ts +0 -4
- package/dist/types/menu/context-menu/context-menu-driver.d.ts +0 -1
- package/dist/types/menu/context-menu/use-context-menu-listener.d.ts +0 -6
- package/dist/types/menu/menu-impl.d.ts +0 -18
- package/dist/types/menu/menu.d.ts +0 -19
- package/dist/types/menu/use-menu-class-name.d.ts +0 -1
- package/dist/types/menu-frame/menu-frame-driver.d.ts +0 -1
- package/dist/types/overlay/load-error-overlay.d.ts +0 -1
- package/dist/types/overlay/loading-overlay.d.ts +0 -1
- package/dist/types/overlay/no-data-overlay.d.ts +0 -1
- package/dist/types/overlay/overlay-driver.d.ts +0 -1
- package/dist/types/pill/pill.d.ts +0 -5
- package/dist/types/pill-manager/pill-manager-agg-menu.d.ts +0 -7
- package/dist/types/pill-manager/pill-manager-controls.d.ts +0 -9
- package/dist/types/pill-manager/pill-manager-drag-placeholder.d.ts +0 -5
- package/dist/types/pill-manager/pill-manager-expander.d.ts +0 -1
- package/dist/types/pill-manager/pill-manager-impl.d.ts +0 -50
- package/dist/types/pill-manager/pill-manager-pill.d.ts +0 -5
- package/dist/types/pill-manager/pill-manager-pills/pill-manager-pills.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/use-aggregation-source.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/use-column-pivot-source.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/use-column-source.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/use-measures-source.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/use-row-groups-source.d.ts +0 -2
- package/dist/types/pill-manager/pill-manager-pills/utils.d.ts +0 -3
- package/dist/types/pill-manager/pill-manager-row-label.d.ts +0 -22
- package/dist/types/pill-manager/pill-manager-row.d.ts +0 -12
- package/dist/types/pill-manager/pill-manager-rows.d.ts +0 -1
- package/dist/types/pill-manager/pill-manager-separator.d.ts +0 -1
- package/dist/types/pill-manager/pill-manager-types.d.ts +0 -36
- package/dist/types/pill-manager/pill-manager.d.ts +0 -1
- package/dist/types/popover/popover-impl.d.ts +0 -8
- package/dist/types/popover/popover.d.ts +0 -10
- package/dist/types/popover/use-popover-class.d.ts +0 -1
- package/dist/types/select/select.d.ts +0 -26
- package/dist/types/sort-manager/sort-adder.d.ts +0 -4
- package/dist/types/sort-manager/sort-apply.d.ts +0 -1
- package/dist/types/sort-manager/sort-cancel.d.ts +0 -1
- package/dist/types/sort-manager/sort-clear.d.ts +0 -1
- package/dist/types/sort-manager/sort-column-select.d.ts +0 -6
- package/dist/types/sort-manager/sort-direction-select.d.ts +0 -6
- package/dist/types/sort-manager/sort-items-to-sort-model.d.ts +0 -3
- package/dist/types/sort-manager/sort-manager-context.d.ts +0 -4
- package/dist/types/sort-manager/sort-manager-impl.d.ts +0 -32
- package/dist/types/sort-manager/sort-manager.d.ts +0 -1
- package/dist/types/sort-manager/sort-model-to-sort-items.d.ts +0 -4
- package/dist/types/sort-manager/sort-remove.d.ts +0 -4
- package/dist/types/sort-manager/sort-sort-select.d.ts +0 -6
- package/dist/types/sort-manager/use-sortable-column-items.d.ts +0 -9
- package/dist/types/use-client-data-source.d.ts +0 -6
- package/dist/types/use-edge-scroll.d.ts +0 -7
- package/dist/types/use-grid.d.ts +0 -6
- package/dist/types/use-lytenyte.d.ts +0 -11
- package/dist/types/use-server-data-source.d.ts +0 -3
- package/dist/types/use-tree-data-source.d.ts +0 -3
- package/dist/types/watermark.d.ts +0 -3
- package/dist/types.js +0 -1
- package/dist/useAnchorPositioning-52zK7jlD.js +0 -241
- package/dist/useButton-DWXzFgcr.js +0 -184
- package/dist/useScrollLock-D4UY33Sb.js +0 -425
- /package/dist/{types/cell-selection → cell-selection}/cell-selection-driver.d.ts +0 -0
- /package/dist/{types/dialog → root}/dialog-driver.d.ts +0 -0
- /package/dist/{types/popover → root}/popover-driver.d.ts +0 -0
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
function getPseudoElementBounds(element) {
|
|
2
|
-
const elementRect = element.getBoundingClientRect();
|
|
3
|
-
const beforeStyles = window.getComputedStyle(element, "::before");
|
|
4
|
-
const afterStyles = window.getComputedStyle(element, "::after");
|
|
5
|
-
const hasPseudoElements = beforeStyles.content !== "none" || afterStyles.content !== "none";
|
|
6
|
-
if (!hasPseudoElements) {
|
|
7
|
-
return elementRect;
|
|
8
|
-
}
|
|
9
|
-
const beforeWidth = parseFloat(beforeStyles.width) || 0;
|
|
10
|
-
const beforeHeight = parseFloat(beforeStyles.height) || 0;
|
|
11
|
-
const afterWidth = parseFloat(afterStyles.width) || 0;
|
|
12
|
-
const afterHeight = parseFloat(afterStyles.height) || 0;
|
|
13
|
-
const totalWidth = Math.max(elementRect.width, beforeWidth, afterWidth);
|
|
14
|
-
const totalHeight = Math.max(elementRect.height, beforeHeight, afterHeight);
|
|
15
|
-
const widthDiff = totalWidth - elementRect.width;
|
|
16
|
-
const heightDiff = totalHeight - elementRect.height;
|
|
17
|
-
return {
|
|
18
|
-
left: elementRect.left - widthDiff / 2,
|
|
19
|
-
right: elementRect.right + widthDiff / 2,
|
|
20
|
-
top: elementRect.top - heightDiff / 2,
|
|
21
|
-
bottom: elementRect.bottom + heightDiff / 2
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
export {
|
|
25
|
-
getPseudoElementBounds as g
|
|
26
|
-
};
|
package/dist/grid-container.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useMemo } from "react";
|
|
3
|
-
function GridContainer({ top, bottom, children }) {
|
|
4
|
-
const template = useMemo(() => {
|
|
5
|
-
if (top && bottom) return "auto 1fr auto";
|
|
6
|
-
if (top) return "auto 1fr";
|
|
7
|
-
if (bottom) return "1fr auto";
|
|
8
|
-
return "1fr";
|
|
9
|
-
}, [bottom, top]);
|
|
10
|
-
return /* @__PURE__ */ jsxs("div", { className: "lng1771-grid-container", style: { gridTemplateRows: template }, children: [
|
|
11
|
-
top && /* @__PURE__ */ jsx("div", { className: "lng1771-grid-container__top", children: top }),
|
|
12
|
-
children,
|
|
13
|
-
bottom && /* @__PURE__ */ jsx("div", { className: "lng1771-grid-container__bottom", children: bottom })
|
|
14
|
-
] });
|
|
15
|
-
}
|
|
16
|
-
export {
|
|
17
|
-
GridContainer
|
|
18
|
-
};
|
package/dist/icons.js
DELETED
|
@@ -1,516 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { A, T } from "./tickmark-icon-CoogRMoO.js";
|
|
3
|
-
import { A as A2 } from "./arrow-down-icon-B-3ldODD.js";
|
|
4
|
-
import { C, D, M, R } from "./row-group-icon-DFUMye0v.js";
|
|
5
|
-
import { C as C2 } from "./cross-icon-CEMLAlFX.js";
|
|
6
|
-
import { D as D2, S } from "./search-icon-CcG1lqsn.js";
|
|
7
|
-
import { C as C3, E, M as M2 } from "./manage-columns-icon-D4CElo5H.js";
|
|
8
|
-
import { M as M3 } from "./more-dots-icon-CzAH3xHG.js";
|
|
9
|
-
import { P } from "./plus-icon-ToqW5CC-.js";
|
|
10
|
-
import { S as S2, a } from "./sort-descending-BMtfaa2L.js";
|
|
11
|
-
function AggregationIcon(props) {
|
|
12
|
-
return /* @__PURE__ */ jsxs(
|
|
13
|
-
"svg",
|
|
14
|
-
{
|
|
15
|
-
width: "20",
|
|
16
|
-
height: "20",
|
|
17
|
-
viewBox: "0 0 20 20",
|
|
18
|
-
fill: "none",
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
...props,
|
|
21
|
-
children: [
|
|
22
|
-
/* @__PURE__ */ jsx(
|
|
23
|
-
"path",
|
|
24
|
-
{
|
|
25
|
-
d: "M12.6515 14.5681L9.74279 17.4716L6.83411 14.5681",
|
|
26
|
-
stroke: "currentcolor",
|
|
27
|
-
strokeWidth: "1.5",
|
|
28
|
-
strokeLinecap: "round",
|
|
29
|
-
strokeLinejoin: "round"
|
|
30
|
-
}
|
|
31
|
-
),
|
|
32
|
-
/* @__PURE__ */ jsx(
|
|
33
|
-
"path",
|
|
34
|
-
{
|
|
35
|
-
d: "M9.74289 16.0198L9.7429 14.7788L9.7429 11.4268C9.7429 10.5412 9.35159 9.70081 8.67379 9.13079L5.79261 6.70777C5.11482 6.13776 4.72351 5.29739 4.72351 4.41177L4.72351 2.3269",
|
|
36
|
-
stroke: "currentcolor",
|
|
37
|
-
strokeWidth: "1.5",
|
|
38
|
-
strokeLinecap: "round",
|
|
39
|
-
strokeLinejoin: "round"
|
|
40
|
-
}
|
|
41
|
-
),
|
|
42
|
-
/* @__PURE__ */ jsx(
|
|
43
|
-
"path",
|
|
44
|
-
{
|
|
45
|
-
d: "M9.74292 16.0198L9.74292 14.7788L9.74292 11.3248C9.74292 10.4984 10.0838 9.70856 10.6852 9.14171L13.279 6.69685C13.8804 6.13001 14.2213 5.3402 14.2213 4.51379L14.2213 2.3269",
|
|
46
|
-
stroke: "currentcolor",
|
|
47
|
-
strokeWidth: "1.5",
|
|
48
|
-
strokeLinecap: "round",
|
|
49
|
-
strokeLinejoin: "round"
|
|
50
|
-
}
|
|
51
|
-
)
|
|
52
|
-
]
|
|
53
|
-
}
|
|
54
|
-
);
|
|
55
|
-
}
|
|
56
|
-
function AscendingIcon(props) {
|
|
57
|
-
return /* @__PURE__ */ jsx(
|
|
58
|
-
"svg",
|
|
59
|
-
{
|
|
60
|
-
width: "20",
|
|
61
|
-
height: "20",
|
|
62
|
-
viewBox: "0 0 20 20",
|
|
63
|
-
fill: "none",
|
|
64
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
65
|
-
...props,
|
|
66
|
-
children: /* @__PURE__ */ jsx(
|
|
67
|
-
"path",
|
|
68
|
-
{
|
|
69
|
-
d: "M5.21619 7.78381L10 3M10 3L14.7838 7.78381M10 3L10 16.4814",
|
|
70
|
-
stroke: "currentcolor",
|
|
71
|
-
strokeWidth: "1.5",
|
|
72
|
-
strokeLinecap: "round",
|
|
73
|
-
strokeLinejoin: "round"
|
|
74
|
-
}
|
|
75
|
-
)
|
|
76
|
-
}
|
|
77
|
-
);
|
|
78
|
-
}
|
|
79
|
-
function AutosizeIcon(props) {
|
|
80
|
-
return /* @__PURE__ */ jsxs(
|
|
81
|
-
"svg",
|
|
82
|
-
{
|
|
83
|
-
width: "20",
|
|
84
|
-
height: "20",
|
|
85
|
-
viewBox: "0 0 20 20",
|
|
86
|
-
fill: "none",
|
|
87
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
88
|
-
...props,
|
|
89
|
-
children: [
|
|
90
|
-
/* @__PURE__ */ jsx(
|
|
91
|
-
"path",
|
|
92
|
-
{
|
|
93
|
-
d: "M14.3553 3L15.3333 3C16.2538 3 17 3.74619 17 4.66667L17 15.3333C17 16.2538 16.2538 17 15.3333 17L14.3697 17M5.61878 3L4.66667 3C3.74619 3 3 3.74619 3 4.66667L3 15.3333C3 16.2538 3.74619 17 4.66667 17L5.61653 17",
|
|
94
|
-
stroke: "currentcolor",
|
|
95
|
-
strokeWidth: "1.5",
|
|
96
|
-
strokeLinecap: "round"
|
|
97
|
-
}
|
|
98
|
-
),
|
|
99
|
-
/* @__PURE__ */ jsx(
|
|
100
|
-
"line",
|
|
101
|
-
{
|
|
102
|
-
x1: "16.25",
|
|
103
|
-
y1: "9.75",
|
|
104
|
-
x2: "3.75",
|
|
105
|
-
y2: "9.75",
|
|
106
|
-
stroke: "currentcolor",
|
|
107
|
-
strokeWidth: "1.5",
|
|
108
|
-
strokeLinecap: "round"
|
|
109
|
-
}
|
|
110
|
-
),
|
|
111
|
-
/* @__PURE__ */ jsx(
|
|
112
|
-
"path",
|
|
113
|
-
{
|
|
114
|
-
d: "M12.0512 14.9387L9.98671 16.9995L7.92224 14.9387",
|
|
115
|
-
stroke: "currentcolor",
|
|
116
|
-
strokeWidth: "1.5",
|
|
117
|
-
strokeLinecap: "round",
|
|
118
|
-
strokeLinejoin: "round"
|
|
119
|
-
}
|
|
120
|
-
),
|
|
121
|
-
/* @__PURE__ */ jsx(
|
|
122
|
-
"path",
|
|
123
|
-
{
|
|
124
|
-
d: "M9.98621 12.6245L9.98621 16.9994",
|
|
125
|
-
stroke: "currentcolor",
|
|
126
|
-
strokeWidth: "1.5",
|
|
127
|
-
strokeLinecap: "round",
|
|
128
|
-
strokeLinejoin: "round"
|
|
129
|
-
}
|
|
130
|
-
),
|
|
131
|
-
/* @__PURE__ */ jsx(
|
|
132
|
-
"path",
|
|
133
|
-
{
|
|
134
|
-
d: "M7.92161 5.06226L9.98607 3.00149L12.0505 5.06226",
|
|
135
|
-
stroke: "currentcolor",
|
|
136
|
-
strokeWidth: "1.5",
|
|
137
|
-
strokeLinecap: "round",
|
|
138
|
-
strokeLinejoin: "round"
|
|
139
|
-
}
|
|
140
|
-
),
|
|
141
|
-
/* @__PURE__ */ jsx(
|
|
142
|
-
"path",
|
|
143
|
-
{
|
|
144
|
-
d: "M9.98608 3.00146L9.98608 7.37636",
|
|
145
|
-
stroke: "currentcolor",
|
|
146
|
-
strokeWidth: "1.5",
|
|
147
|
-
strokeLinecap: "round",
|
|
148
|
-
strokeLinejoin: "round"
|
|
149
|
-
}
|
|
150
|
-
)
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
);
|
|
154
|
-
}
|
|
155
|
-
function CsvIcon(props) {
|
|
156
|
-
return /* @__PURE__ */ jsx(
|
|
157
|
-
"svg",
|
|
158
|
-
{
|
|
159
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
160
|
-
width: "20",
|
|
161
|
-
height: "20",
|
|
162
|
-
fill: "currentcolor",
|
|
163
|
-
viewBox: "0 0 256 256",
|
|
164
|
-
...props,
|
|
165
|
-
children: /* @__PURE__ */ jsx("path", { d: "M46,180c0,12.13,8.07,22,18,22a16.24,16.24,0,0,0,11.67-5.28,6,6,0,0,1,8.66,8.3A28.06,28.06,0,0,1,64,214c-16.54,0-30-15.25-30-34s13.46-34,30-34a28.06,28.06,0,0,1,20.33,9,6,6,0,0,1-8.66,8.3A16.23,16.23,0,0,0,64,158C54.07,158,46,167.86,46,180Zm81.05-6.77c-10.86-3.13-13.41-4.69-13-7.91a6.59,6.59,0,0,1,2.88-5.08c5.6-3.79,17.66-1.82,21.45-.84a6,6,0,0,0,3.06-11.6c-2-.53-20.1-5-31.21,2.48a18.61,18.61,0,0,0-8.08,13.54c-1.8,14.19,12.26,18.25,21.57,20.94,12.12,3.5,14.78,5.33,14.2,9.76a6.85,6.85,0,0,1-3,5.34c-5.61,3.73-17.48,1.64-21.19.62A6,6,0,0,0,110.48,212a59.41,59.41,0,0,0,14.68,2c5.49,0,11.54-.95,16.36-4.14a18.89,18.89,0,0,0,8.31-13.81C151.84,180.39,136.92,176.08,127.05,173.22Zm83-26.88a6,6,0,0,0-7.67,3.63L188,190.15,173.65,150a6,6,0,1,0-11.3,4l20,56a6,6,0,0,0,11.3,0l20-56A6,6,0,0,0,210,146.34ZM214,88v24a6,6,0,1,1-12,0V94H152a6,6,0,0,1-6-6V38H56a2,2,0,0,0-2,2v72a6,6,0,1,1-12,0V40A14,14,0,0,1,56,26h96a6,6,0,0,1,4.24,1.76l56,56A6,6,0,0,1,214,88Zm-20.49-6L158,46.48V82Z" })
|
|
166
|
-
}
|
|
167
|
-
);
|
|
168
|
-
}
|
|
169
|
-
function DescendingIcon(props) {
|
|
170
|
-
return /* @__PURE__ */ jsx(
|
|
171
|
-
"svg",
|
|
172
|
-
{
|
|
173
|
-
width: "20",
|
|
174
|
-
height: "20",
|
|
175
|
-
viewBox: "0 0 20 20",
|
|
176
|
-
fill: "none",
|
|
177
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
178
|
-
...props,
|
|
179
|
-
children: /* @__PURE__ */ jsx(
|
|
180
|
-
"path",
|
|
181
|
-
{
|
|
182
|
-
d: "M5.21619 11.6976L10 16.4814M10 16.4814L14.7838 11.6976M10 16.4814L10 3",
|
|
183
|
-
stroke: "currentcolor",
|
|
184
|
-
strokeWidth: "1.5",
|
|
185
|
-
strokeLinecap: "round",
|
|
186
|
-
strokeLinejoin: "round"
|
|
187
|
-
}
|
|
188
|
-
)
|
|
189
|
-
}
|
|
190
|
-
);
|
|
191
|
-
}
|
|
192
|
-
function DownloadIcon(props) {
|
|
193
|
-
return /* @__PURE__ */ jsx(
|
|
194
|
-
"svg",
|
|
195
|
-
{
|
|
196
|
-
width: "20",
|
|
197
|
-
height: "20",
|
|
198
|
-
viewBox: "0 0 20 20",
|
|
199
|
-
fill: "none",
|
|
200
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
201
|
-
...props,
|
|
202
|
-
children: /* @__PURE__ */ jsx(
|
|
203
|
-
"path",
|
|
204
|
-
{
|
|
205
|
-
d: "M2.5 13.9706V15.7353C2.5 16.2033 2.69754 16.6522 3.04917 16.9831C3.40081 17.3141 3.87772 17.5 4.375 17.5H15.625C16.1223 17.5 16.5992 17.3141 16.9508 16.9831C17.3025 16.6522 17.5 16.2033 17.5 15.7353V13.9706M5.3125 8.67647L10 13.0882M10 13.0882L14.6875 8.67647M10 13.0882V2.5",
|
|
206
|
-
stroke: "currentcolor",
|
|
207
|
-
strokeWidth: "1.5",
|
|
208
|
-
strokeLinecap: "round",
|
|
209
|
-
strokeLinejoin: "round"
|
|
210
|
-
}
|
|
211
|
-
)
|
|
212
|
-
}
|
|
213
|
-
);
|
|
214
|
-
}
|
|
215
|
-
function ExcelIcon(props) {
|
|
216
|
-
return /* @__PURE__ */ jsx(
|
|
217
|
-
"svg",
|
|
218
|
-
{
|
|
219
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
220
|
-
width: "20",
|
|
221
|
-
height: "20",
|
|
222
|
-
fill: "currentcolor",
|
|
223
|
-
viewBox: "0 0 256 256",
|
|
224
|
-
...props,
|
|
225
|
-
children: /* @__PURE__ */ jsx("path", { d: "M154,208a6,6,0,0,1-6,6H120a6,6,0,0,1-6-6V152a6,6,0,1,1,12,0v50h22A6,6,0,0,1,154,208ZM91.48,147.11a6,6,0,0,0-8.36,1.39L68,169.67,52.88,148.5a6,6,0,1,0-9.76,7L60.63,180,43.12,204.5a6,6,0,1,0,9.76,7L68,190.31l15.12,21.16A6,6,0,0,0,88,214a5.91,5.91,0,0,0,3.48-1.12,6,6,0,0,0,1.4-8.37L75.37,180l17.51-24.51A6,6,0,0,0,91.48,147.11ZM191,173.22c-10.85-3.13-13.41-4.69-13-7.91a6.59,6.59,0,0,1,2.88-5.08c5.6-3.79,17.65-1.83,21.44-.84a6,6,0,0,0,3.07-11.6c-2-.54-20.1-5-31.21,2.48a18.64,18.64,0,0,0-8.08,13.54c-1.8,14.19,12.26,18.25,21.57,20.94,12.12,3.5,14.77,5.33,14.2,9.76a6.85,6.85,0,0,1-3,5.34c-5.61,3.73-17.48,1.64-21.19.62A6,6,0,0,0,174.47,212a59.41,59.41,0,0,0,14.68,2c5.49,0,11.54-.95,16.36-4.14a18.89,18.89,0,0,0,8.31-13.81C215.83,180.39,200.91,176.08,191,173.22ZM42,112V40A14,14,0,0,1,56,26h96a6,6,0,0,1,4.24,1.76l56,56A6,6,0,0,1,214,88v24a6,6,0,1,1-12,0V94H152a6,6,0,0,1-6-6V38H56a2,2,0,0,0-2,2v72a6,6,0,1,1-12,0ZM158,82H193.5L158,46.48Z" })
|
|
226
|
-
}
|
|
227
|
-
);
|
|
228
|
-
}
|
|
229
|
-
function FunnelIcon(props) {
|
|
230
|
-
return /* @__PURE__ */ jsx(
|
|
231
|
-
"svg",
|
|
232
|
-
{
|
|
233
|
-
width: "20",
|
|
234
|
-
height: "20",
|
|
235
|
-
viewBox: "0 0 20 20",
|
|
236
|
-
fill: "none",
|
|
237
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
238
|
-
...props,
|
|
239
|
-
children: /* @__PURE__ */ jsx(
|
|
240
|
-
"path",
|
|
241
|
-
{
|
|
242
|
-
d: "M17.212 3.75H2.90761C2.69022 3.75 2.5 3.92744 2.5 4.13022V5.8032C2.5 5.95529 2.55435 6.13273 2.66304 6.25947L7.63587 12.3684C7.77174 12.5205 7.85326 12.7233 7.85326 12.926V17.4634C7.85326 17.6155 8.0163 17.7168 8.15217 17.6408L11.5489 16.4241C11.9022 16.272 12.1196 15.9678 12.1196 15.613V12.926C12.1196 12.7233 12.2011 12.5205 12.337 12.3684L17.337 6.25947C17.4457 6.13273 17.5 5.98064 17.5 5.8032V3.75",
|
|
243
|
-
stroke: "currentcolor",
|
|
244
|
-
strokeWidth: "1.5",
|
|
245
|
-
strokeLinecap: "round",
|
|
246
|
-
strokeLinejoin: "round"
|
|
247
|
-
}
|
|
248
|
-
)
|
|
249
|
-
}
|
|
250
|
-
);
|
|
251
|
-
}
|
|
252
|
-
function GroupByColumnIcon(props) {
|
|
253
|
-
return /* @__PURE__ */ jsxs(
|
|
254
|
-
"svg",
|
|
255
|
-
{
|
|
256
|
-
width: "20",
|
|
257
|
-
height: "20",
|
|
258
|
-
viewBox: "0 0 20 20",
|
|
259
|
-
fill: "none",
|
|
260
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
261
|
-
...props,
|
|
262
|
-
children: [
|
|
263
|
-
/* @__PURE__ */ jsx(
|
|
264
|
-
"path",
|
|
265
|
-
{
|
|
266
|
-
d: "M12 9.82568L14.8284 9.82568L14.8284 6.99726",
|
|
267
|
-
stroke: "currentcolor",
|
|
268
|
-
strokeWidth: "1.5",
|
|
269
|
-
strokeLinecap: "round",
|
|
270
|
-
strokeLinejoin: "round"
|
|
271
|
-
}
|
|
272
|
-
),
|
|
273
|
-
/* @__PURE__ */ jsx(
|
|
274
|
-
"path",
|
|
275
|
-
{
|
|
276
|
-
d: "M14.8286 12.6548L14.8286 9.82636L17.657 9.82636",
|
|
277
|
-
stroke: "currentcolor",
|
|
278
|
-
strokeWidth: "1.5",
|
|
279
|
-
strokeLinecap: "round",
|
|
280
|
-
strokeLinejoin: "round"
|
|
281
|
-
}
|
|
282
|
-
),
|
|
283
|
-
/* @__PURE__ */ jsx(
|
|
284
|
-
"rect",
|
|
285
|
-
{
|
|
286
|
-
x: "2",
|
|
287
|
-
y: "2",
|
|
288
|
-
width: "8",
|
|
289
|
-
height: "16",
|
|
290
|
-
rx: "2",
|
|
291
|
-
stroke: "currentcolor",
|
|
292
|
-
strokeWidth: "1.5",
|
|
293
|
-
strokeLinecap: "round",
|
|
294
|
-
strokeLinejoin: "round"
|
|
295
|
-
}
|
|
296
|
-
),
|
|
297
|
-
/* @__PURE__ */ jsx(
|
|
298
|
-
"path",
|
|
299
|
-
{
|
|
300
|
-
d: "M2 6H10",
|
|
301
|
-
stroke: "currentcolor",
|
|
302
|
-
strokeWidth: "1.5",
|
|
303
|
-
strokeLinecap: "round",
|
|
304
|
-
strokeLinejoin: "round"
|
|
305
|
-
}
|
|
306
|
-
),
|
|
307
|
-
/* @__PURE__ */ jsx(
|
|
308
|
-
"path",
|
|
309
|
-
{
|
|
310
|
-
d: "M2 10H10",
|
|
311
|
-
stroke: "currentcolor",
|
|
312
|
-
strokeWidth: "1.5",
|
|
313
|
-
strokeLinecap: "round",
|
|
314
|
-
strokeLinejoin: "round"
|
|
315
|
-
}
|
|
316
|
-
),
|
|
317
|
-
/* @__PURE__ */ jsx(
|
|
318
|
-
"path",
|
|
319
|
-
{
|
|
320
|
-
d: "M2 14H10",
|
|
321
|
-
stroke: "currentcolor",
|
|
322
|
-
strokeWidth: "1.5",
|
|
323
|
-
strokeLinecap: "round",
|
|
324
|
-
strokeLinejoin: "round"
|
|
325
|
-
}
|
|
326
|
-
)
|
|
327
|
-
]
|
|
328
|
-
}
|
|
329
|
-
);
|
|
330
|
-
}
|
|
331
|
-
function HideColumnIcon(props) {
|
|
332
|
-
return /* @__PURE__ */ jsxs(
|
|
333
|
-
"svg",
|
|
334
|
-
{
|
|
335
|
-
width: "20",
|
|
336
|
-
height: "20",
|
|
337
|
-
viewBox: "0 0 20 20",
|
|
338
|
-
fill: "none",
|
|
339
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
340
|
-
...props,
|
|
341
|
-
children: [
|
|
342
|
-
/* @__PURE__ */ jsx(
|
|
343
|
-
"path",
|
|
344
|
-
{
|
|
345
|
-
d: "M14.5104 3.94639C16.4341 5.0311 17.8858 6.78855 18.504 8.8762C18.7209 9.60845 18.7209 10.3918 18.504 11.1241C17.4615 14.6444 14.049 17.2258 10 17.2258C8.40819 17.2258 6.91474 16.8268 5.625 16.1287M2.83392 13.7501C2.23644 12.9658 1.77889 12.0795 1.49594 11.124C1.27911 10.3917 1.27912 9.60844 1.49597 8.87619C2.53847 5.35584 5.95103 2.77441 10 2.77441C10.3222 2.77441 10.6404 2.79076 10.9537 2.82263",
|
|
346
|
-
stroke: "currentcolor",
|
|
347
|
-
strokeWidth: "1.5",
|
|
348
|
-
strokeLinecap: "round",
|
|
349
|
-
strokeLinejoin: "round"
|
|
350
|
-
}
|
|
351
|
-
),
|
|
352
|
-
/* @__PURE__ */ jsx(
|
|
353
|
-
"path",
|
|
354
|
-
{
|
|
355
|
-
d: "M11.4752 7.92456C12.1423 8.3735 12.5812 9.13556 12.5812 10.0001C12.5812 11.3808 11.4619 12.5001 10.0812 12.5001C9.63381 12.5001 9.21388 12.3826 8.85059 12.1768",
|
|
356
|
-
stroke: "currentcolor",
|
|
357
|
-
strokeWidth: "1.5",
|
|
358
|
-
strokeLinecap: "round",
|
|
359
|
-
strokeLinejoin: "round"
|
|
360
|
-
}
|
|
361
|
-
),
|
|
362
|
-
/* @__PURE__ */ jsx(
|
|
363
|
-
"path",
|
|
364
|
-
{
|
|
365
|
-
d: "M16.25 1.25L3.75 18.75",
|
|
366
|
-
stroke: "currentcolor",
|
|
367
|
-
strokeWidth: "1.5",
|
|
368
|
-
strokeLinecap: "round",
|
|
369
|
-
strokeLinejoin: "round"
|
|
370
|
-
}
|
|
371
|
-
)
|
|
372
|
-
]
|
|
373
|
-
}
|
|
374
|
-
);
|
|
375
|
-
}
|
|
376
|
-
function ResetColumnsIcon(props) {
|
|
377
|
-
return /* @__PURE__ */ jsxs(
|
|
378
|
-
"svg",
|
|
379
|
-
{
|
|
380
|
-
width: "20",
|
|
381
|
-
height: "20",
|
|
382
|
-
viewBox: "0 0 20 20",
|
|
383
|
-
fill: "none",
|
|
384
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
385
|
-
...props,
|
|
386
|
-
children: [
|
|
387
|
-
/* @__PURE__ */ jsx(
|
|
388
|
-
"path",
|
|
389
|
-
{
|
|
390
|
-
d: "M19.0504 11.2988L16.9938 9.24217L14.9371 11.2988",
|
|
391
|
-
stroke: "currentcolor",
|
|
392
|
-
strokeWidth: "1.5",
|
|
393
|
-
strokeLinecap: "round",
|
|
394
|
-
strokeLinejoin: "round"
|
|
395
|
-
}
|
|
396
|
-
),
|
|
397
|
-
/* @__PURE__ */ jsx(
|
|
398
|
-
"path",
|
|
399
|
-
{
|
|
400
|
-
d: "M0.860563 9.39966L2.91722 11.4563L4.97388 9.39966",
|
|
401
|
-
stroke: "currentcolor",
|
|
402
|
-
strokeWidth: "1.5",
|
|
403
|
-
strokeLinecap: "round",
|
|
404
|
-
strokeLinejoin: "round"
|
|
405
|
-
}
|
|
406
|
-
),
|
|
407
|
-
/* @__PURE__ */ jsx(
|
|
408
|
-
"path",
|
|
409
|
-
{
|
|
410
|
-
d: "M17.07 9.51312C17.0809 9.674 17.0864 9.83635 17.0864 10C17.0864 13.9127 13.9146 17.0845 10.002 17.0845C7.98798 17.0845 6.17028 16.2441 4.88041 14.8949M2.98616 10.9904C2.94089 10.6668 2.91748 10.3361 2.91748 10C2.91748 6.08736 6.08931 2.91553 10.002 2.91553C12.2001 2.91553 14.1645 3.91668 15.4639 5.48789",
|
|
411
|
-
stroke: "currentcolor",
|
|
412
|
-
strokeWidth: "1.5",
|
|
413
|
-
strokeLinecap: "round",
|
|
414
|
-
strokeLinejoin: "round"
|
|
415
|
-
}
|
|
416
|
-
)
|
|
417
|
-
]
|
|
418
|
-
}
|
|
419
|
-
);
|
|
420
|
-
}
|
|
421
|
-
function SortIcon(props) {
|
|
422
|
-
return /* @__PURE__ */ jsxs(
|
|
423
|
-
"svg",
|
|
424
|
-
{
|
|
425
|
-
width: "20",
|
|
426
|
-
height: "20",
|
|
427
|
-
viewBox: "0 0 20 20",
|
|
428
|
-
fill: "none",
|
|
429
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
430
|
-
...props,
|
|
431
|
-
children: [
|
|
432
|
-
/* @__PURE__ */ jsx(
|
|
433
|
-
"path",
|
|
434
|
-
{
|
|
435
|
-
d: "M2.5 3.75H17.203",
|
|
436
|
-
stroke: "currentcolor",
|
|
437
|
-
strokeWidth: "1.5",
|
|
438
|
-
strokeLinecap: "round",
|
|
439
|
-
strokeLinejoin: "round"
|
|
440
|
-
}
|
|
441
|
-
),
|
|
442
|
-
/* @__PURE__ */ jsx(
|
|
443
|
-
"path",
|
|
444
|
-
{
|
|
445
|
-
d: "M2.5 9.56104H9.07178",
|
|
446
|
-
stroke: "currentcolor",
|
|
447
|
-
strokeWidth: "1.5",
|
|
448
|
-
strokeLinecap: "round",
|
|
449
|
-
strokeLinejoin: "round"
|
|
450
|
-
}
|
|
451
|
-
),
|
|
452
|
-
/* @__PURE__ */ jsx(
|
|
453
|
-
"path",
|
|
454
|
-
{
|
|
455
|
-
d: "M2.5 15.4688H6.57178",
|
|
456
|
-
stroke: "currentcolor",
|
|
457
|
-
strokeWidth: "1.5",
|
|
458
|
-
strokeLinecap: "round",
|
|
459
|
-
strokeLinejoin: "round"
|
|
460
|
-
}
|
|
461
|
-
),
|
|
462
|
-
/* @__PURE__ */ jsx(
|
|
463
|
-
"path",
|
|
464
|
-
{
|
|
465
|
-
d: "M14.4305 9.07739V15.6697",
|
|
466
|
-
stroke: "currentcolor",
|
|
467
|
-
strokeWidth: "1.5",
|
|
468
|
-
strokeLinecap: "round",
|
|
469
|
-
strokeLinejoin: "round"
|
|
470
|
-
}
|
|
471
|
-
),
|
|
472
|
-
/* @__PURE__ */ jsx(
|
|
473
|
-
"path",
|
|
474
|
-
{
|
|
475
|
-
d: "M11.3611 13.2515L14.4304 16.25L17.4997 13.2515",
|
|
476
|
-
stroke: "currentcolor",
|
|
477
|
-
strokeWidth: "1.5",
|
|
478
|
-
strokeLinecap: "round",
|
|
479
|
-
strokeLinejoin: "round"
|
|
480
|
-
}
|
|
481
|
-
)
|
|
482
|
-
]
|
|
483
|
-
}
|
|
484
|
-
);
|
|
485
|
-
}
|
|
486
|
-
export {
|
|
487
|
-
AggregationIcon,
|
|
488
|
-
A2 as ArrowDownIcon,
|
|
489
|
-
A as ArrowRightIcon,
|
|
490
|
-
AscendingIcon,
|
|
491
|
-
AutosizeIcon,
|
|
492
|
-
C3 as CollapseIcon,
|
|
493
|
-
C as ColumnPivotIcon,
|
|
494
|
-
C2 as CrossIcon,
|
|
495
|
-
CsvIcon,
|
|
496
|
-
DescendingIcon,
|
|
497
|
-
DownloadIcon,
|
|
498
|
-
D2 as DragGroupIcon,
|
|
499
|
-
D as DragIcon,
|
|
500
|
-
ExcelIcon,
|
|
501
|
-
E as ExpandIcon,
|
|
502
|
-
FunnelIcon,
|
|
503
|
-
GroupByColumnIcon,
|
|
504
|
-
HideColumnIcon,
|
|
505
|
-
M2 as ManageColumnsIcon,
|
|
506
|
-
M as MeasuresIcon,
|
|
507
|
-
M3 as MoreDotsIcon,
|
|
508
|
-
P as PlusIcon,
|
|
509
|
-
ResetColumnsIcon,
|
|
510
|
-
R as RowGroupIcon,
|
|
511
|
-
S as SearchIcon,
|
|
512
|
-
S2 as SortAscending,
|
|
513
|
-
a as SortDescending,
|
|
514
|
-
SortIcon,
|
|
515
|
-
T as TickmarkIcon
|
|
516
|
-
};
|