@dtjoy/dt-design 1.1.2 → 1.1.5
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 +161 -141
- package/dist/dt-design.min.css +1 -0
- package/dist/dt-design.min.js +1 -0
- package/es/_util/context/createContextSelector.d.ts +28 -0
- package/es/_util/context/createContextSelector.js +110 -0
- package/es/_util/context/immutable.d.ts +10 -0
- package/es/_util/context/immutable.js +84 -0
- package/es/_util/context/index.d.ts +3 -0
- package/es/_util/context/index.js +3 -0
- package/es/_util/easings.d.ts +1 -0
- package/es/_util/gapSize.d.ts +3 -0
- package/es/_util/getScroll.d.ts +3 -0
- package/{esm → es}/_util/getScroll.js +1 -1
- package/es/_util/hooks/index.d.ts +11 -0
- package/es/_util/hooks/index.js +11 -0
- package/es/_util/hooks/useBreakpoint.d.ts +5 -0
- package/es/_util/hooks/useBreakpoint.js +75 -0
- package/es/_util/hooks/useCssVar.d.ts +3 -0
- package/es/_util/hooks/useCssVar.js +28 -0
- package/es/_util/hooks/useEvent.d.ts +1 -0
- package/es/_util/hooks/useEvent.js +1 -0
- package/es/_util/hooks/useForceUpdate.d.ts +2 -0
- package/es/_util/hooks/useLayoutEffect.d.ts +1 -0
- package/es/_util/hooks/useLayoutEffect.js +1 -0
- package/es/_util/hooks/useMultipleSelect.d.ts +2 -0
- package/es/_util/hooks/useMultipleSelect.js +37 -0
- package/es/_util/hooks/useOrientation.d.ts +2 -0
- package/es/_util/hooks/useProxyImperativeHandle.d.ts +4 -0
- package/{esm → es}/_util/hooks/useProxyImperativeHandle.js +10 -3
- package/es/_util/hooks/useSyncState.d.ts +3 -0
- package/es/_util/hooks/useTimeoutLock.d.ts +1 -0
- package/es/_util/hooks/useTimeoutLock.js +26 -0
- package/es/_util/index.d.ts +11 -0
- package/{esm → es}/_util/index.js +9 -1
- package/es/_util/is.d.ts +5 -0
- package/es/_util/is.js +16 -0
- package/es/_util/rcUtil.d.ts +17 -0
- package/es/_util/rcUtil.js +58 -0
- package/es/_util/scrollTo.d.ts +10 -0
- package/{esm → es}/_util/scrollTo.js +1 -1
- package/es/_util/scrollbar.d.ts +1 -0
- package/es/_util/scrollbar.js +32 -0
- package/es/_util/type.d.ts +53 -0
- package/es/_util/validate.d.ts +2 -0
- package/es/_util/validate.js +10 -0
- package/es/_util/warning.d.ts +31 -0
- package/{esm → es}/_util/warning.js +5 -6
- package/es/block-header/index.d.ts +58 -0
- package/{esm/blockHeader → es/block-header}/index.js +1 -1
- package/es/block-header/style/index.d.ts +2 -0
- package/{lib/blockHeader → es/block-header}/style/index.less +167 -143
- package/es/button/index.d.ts +10 -0
- package/{esm → es}/button/index.js +16 -4
- package/es/button/style/index.d.ts +2 -0
- package/{esm → es}/button/style/index.less +62 -59
- package/{esm → es}/button/style/mixin.less +40 -39
- package/es/collapsible/index.d.ts +102 -0
- package/{esm → es}/collapsible/index.js +3 -2
- package/es/collapsible/style/index.d.ts +1 -0
- package/{esm → es}/collapsible/style/index.less +24 -24
- package/es/collapsible-action-items/index.d.ts +24 -0
- package/{esm/collapsibleActionItems → es/collapsible-action-items}/index.js +21 -19
- package/es/collapsible-action-items/style/index.d.ts +2 -0
- package/{lib/collapsibleActionItems → es/collapsible-action-items}/style/index.less +7 -7
- package/es/flex/index.d.ts +7 -0
- package/{esm → es}/flex/index.js +3 -3
- package/es/flex/interface.d.ts +16 -0
- package/es/flex/style/index.d.ts +2 -0
- package/{esm → es}/flex/style/index.less +80 -76
- package/es/flex/utils.d.ts +7 -0
- package/es/form-list/index.d.ts +87 -0
- package/{esm/formList → es/form-list}/index.js +18 -8
- package/es/form-list/style/index.d.ts +2 -0
- package/{esm/formList → es/form-list}/style/index.less +45 -45
- package/es/index.d.ts +26 -0
- package/es/index.js +21 -0
- package/es/overflow-list/index.d.ts +43 -0
- package/{esm/overflowList → es/overflow-list}/index.js +37 -9
- package/es/overflow-list/style/index.d.ts +2 -0
- package/{esm/overflowList → es/overflow-list}/style/index.less +9 -9
- package/es/resize/index.d.ts +9 -0
- package/es/resize-observer/index.d.ts +45 -0
- package/{esm/resizeObserver → es/resize-observer}/index.js +8 -8
- package/es/splitter/Panel.d.ts +7 -0
- package/{esm → es}/splitter/Panel.js +12 -4
- package/es/splitter/SplitBar.d.ts +28 -0
- package/{esm → es}/splitter/SplitBar.js +82 -80
- package/es/splitter/Splitter.d.ts +5 -0
- package/{esm → es}/splitter/Splitter.js +52 -23
- package/es/splitter/hooks/sizeUtil.d.ts +3 -0
- package/{esm → es}/splitter/hooks/sizeUtil.js +1 -1
- package/es/splitter/hooks/useDragListeners.d.ts +14 -0
- package/es/splitter/hooks/useDragListeners.js +107 -0
- package/es/splitter/hooks/useItems.d.ts +20 -0
- package/es/splitter/hooks/useOrientation.d.ts +2 -0
- package/es/splitter/hooks/useOrientation.js +6 -0
- package/es/splitter/hooks/useResizable.d.ts +13 -0
- package/{esm → es}/splitter/hooks/useResizable.js +5 -2
- package/es/splitter/hooks/useResize.d.ts +6 -0
- package/{esm → es}/splitter/hooks/useResize.js +10 -3
- package/es/splitter/hooks/useSizes.d.ts +4 -0
- package/{esm → es}/splitter/hooks/useSizes.js +5 -6
- package/es/splitter/index.d.ts +9 -0
- package/es/splitter/interface.d.ts +45 -0
- package/es/splitter/style/index.d.ts +2 -0
- package/es/splitter/style/index.less +349 -0
- package/es/status-tag/index.d.ts +29 -0
- package/{esm/statusTag → es/status-tag}/index.js +1 -1
- package/es/status-tag/style/index.d.ts +2 -0
- package/{lib/statusTag → es/status-tag}/style/index.less +70 -70
- package/{esm/statusTag → es/status-tag}/style/mixin.less +48 -39
- package/es/style/index.d.ts +1 -0
- package/{esm → es}/style/index.less +1 -1
- package/es/style/themes/index.less +2 -0
- package/{esm → es}/style/themes/variable.less +5 -5
- package/es/table/Column.d.ts +2 -0
- package/es/table/Column.js +1 -0
- package/es/table/ColumnGroup.d.ts +2 -0
- package/es/table/ColumnGroup.js +1 -0
- package/es/table/InternalTable.d.ts +43 -0
- package/es/table/InternalTable.js +816 -0
- package/es/table/Table.d.ts +19 -0
- package/es/table/Table.js +30 -0
- package/es/table/TableMeasureRowContext.d.ts +3 -0
- package/es/table/TableMeasureRowContext.js +3 -0
- package/es/table/components/Body/BodyRow.d.ts +37 -0
- package/es/table/components/Body/BodyRow.js +182 -0
- package/es/table/components/Body/ExpandedRow.d.ts +15 -0
- package/es/table/components/Body/ExpandedRow.js +51 -0
- package/es/table/components/Body/MeasureCell.d.ts +8 -0
- package/es/table/components/Body/MeasureCell.js +33 -0
- package/es/table/components/Body/MeasureRow.d.ts +10 -0
- package/es/table/components/Body/MeasureRow.js +54 -0
- package/es/table/components/Body/index.d.ts +11 -0
- package/es/table/components/Body/index.js +123 -0
- package/es/table/components/Cell/index.d.ts +39 -0
- package/es/table/components/Cell/index.js +196 -0
- package/es/table/components/Cell/useCellRender.d.ts +3 -0
- package/es/table/components/Cell/useCellRender.js +69 -0
- package/es/table/components/Cell/useHoverState.d.ts +2 -0
- package/es/table/components/Cell/useHoverState.js +13 -0
- package/es/table/components/ColGroup.d.ts +9 -0
- package/es/table/components/ColGroup.js +53 -0
- package/es/table/components/ExpandIcon.d.ts +12 -0
- package/es/table/components/ExpandIcon.js +27 -0
- package/es/table/components/FixedHolder/index.d.ts +27 -0
- package/es/table/components/FixedHolder/index.js +186 -0
- package/es/table/components/Footer/Cell.d.ts +11 -0
- package/es/table/components/Footer/Cell.js +47 -0
- package/es/table/components/Footer/Row.d.ts +8 -0
- package/es/table/components/Footer/Row.js +10 -0
- package/es/table/components/Footer/Summary.d.ts +14 -0
- package/es/table/components/Footer/Summary.js +12 -0
- package/es/table/components/Footer/SummaryContext.d.ts +11 -0
- package/es/table/components/Footer/SummaryContext.js +3 -0
- package/es/table/components/Footer/index.d.ts +16 -0
- package/es/table/components/Footer/index.js +31 -0
- package/es/table/components/Header/Header.d.ts +10 -0
- package/es/table/components/Header/Header.js +110 -0
- package/es/table/components/Header/HeaderRow.d.ts +19 -0
- package/es/table/components/Header/HeaderRow.js +63 -0
- package/es/table/components/Panel.d.ts +7 -0
- package/es/table/components/Panel.js +11 -0
- package/es/table/components/RcTable.d.ts +114 -0
- package/es/table/components/RcTable.js +757 -0
- package/es/table/components/VirtualTable.d.ts +5 -0
- package/es/table/components/VirtualTable.js +12 -0
- package/es/table/components/VirtualTableBody/BodyGrid.d.ts +13 -0
- package/es/table/components/VirtualTableBody/BodyGrid.js +307 -0
- package/es/table/components/VirtualTableBody/BodyLine.d.ts +14 -0
- package/es/table/components/VirtualTableBody/BodyLine.js +116 -0
- package/es/table/components/VirtualTableBody/VirtualCell.d.ts +26 -0
- package/es/table/components/VirtualTableBody/VirtualCell.js +118 -0
- package/es/table/components/VirtualTableBody/context.d.ts +13 -0
- package/es/table/components/VirtualTableBody/context.js +3 -0
- package/es/table/components/VirtualTableBody/index.d.ts +16 -0
- package/es/table/components/VirtualTableBody/index.js +102 -0
- package/es/table/constant.d.ts +2 -0
- package/es/table/constant.js +2 -0
- package/es/table/features/columns/Column.d.ts +7 -0
- package/es/table/features/columns/Column.js +4 -0
- package/es/table/features/columns/ColumnGroup.d.ts +9 -0
- package/es/table/features/columns/ColumnGroup.js +4 -0
- package/es/table/features/columns/index.d.ts +8 -0
- package/es/table/features/columns/index.js +6 -0
- package/es/table/features/columns/useColumns.d.ts +31 -0
- package/es/table/features/columns/useColumns.js +227 -0
- package/es/table/features/columns/useFilledColumns.d.ts +4 -0
- package/es/table/features/columns/useFilledColumns.js +34 -0
- package/es/table/features/columns/useTitleColumns.d.ts +4 -0
- package/es/table/features/columns/useTitleColumns.js +26 -0
- package/es/table/features/columns/useWidthColumns.d.ts +5 -0
- package/es/table/features/columns/useWidthColumns.js +75 -0
- package/es/table/features/editable/BatchEditModal.d.ts +4 -0
- package/es/table/features/editable/BatchEditModal.js +786 -0
- package/es/table/features/editable/EditableCell.d.ts +42 -0
- package/es/table/features/editable/EditableCell.js +294 -0
- package/es/table/features/editable/EditableContext.d.ts +33 -0
- package/es/table/features/editable/EditableContext.js +20 -0
- package/es/table/features/editable/batchEditTypes.d.ts +55 -0
- package/es/table/features/editable/batchEditTypes.js +1 -0
- package/es/table/features/editable/batchEditUtils.d.ts +44 -0
- package/es/table/features/editable/batchEditUtils.js +258 -0
- package/es/table/features/editable/builtinEditors.d.ts +32 -0
- package/es/table/features/editable/builtinEditors.js +165 -0
- package/es/table/features/editable/index.d.ts +11 -0
- package/es/table/features/editable/index.js +10 -0
- package/es/table/features/editable/useBatchRules.d.ts +17 -0
- package/es/table/features/editable/useBatchRules.js +96 -0
- package/es/table/features/editable/useEditable.d.ts +51 -0
- package/es/table/features/editable/useEditable.js +693 -0
- package/es/table/features/expand/expandUtil.d.ts +5 -0
- package/es/table/features/expand/expandUtil.js +47 -0
- package/es/table/features/expand/index.d.ts +2 -0
- package/es/table/features/expand/index.js +2 -0
- package/es/table/features/expand/useExpand.d.ts +10 -0
- package/es/table/features/expand/useExpand.js +90 -0
- package/es/table/features/filter/FilterDropdown.d.ts +31 -0
- package/es/table/features/filter/FilterDropdown.js +494 -0
- package/es/table/features/filter/FilterSearch.d.ts +12 -0
- package/es/table/features/filter/FilterSearch.js +24 -0
- package/es/table/features/filter/FilterWrapper.d.ts +8 -0
- package/es/table/features/filter/FilterWrapper.js +23 -0
- package/es/table/features/filter/index.d.ts +4 -0
- package/es/table/features/filter/index.js +4 -0
- package/es/table/features/filter/useFilter.d.ts +22 -0
- package/es/table/features/filter/useFilter.js +240 -0
- package/es/table/features/fixed/fixUtil.d.ts +21 -0
- package/es/table/features/fixed/fixUtil.js +69 -0
- package/es/table/features/fixed/index.d.ts +4 -0
- package/es/table/features/fixed/index.js +4 -0
- package/es/table/features/fixed/offsetUtil.d.ts +4 -0
- package/es/table/features/fixed/offsetUtil.js +13 -0
- package/es/table/features/fixed/useFixedInfo.d.ts +2 -0
- package/es/table/features/fixed/useFixedInfo.js +16 -0
- package/es/table/features/fixed/useStickyOffsets.d.ts +6 -0
- package/es/table/features/fixed/useStickyOffsets.js +29 -0
- package/es/table/features/hover/index.d.ts +1 -0
- package/es/table/features/hover/index.js +1 -0
- package/es/table/features/hover/useHover.d.ts +2 -0
- package/es/table/features/hover/useHover.js +22 -0
- package/es/table/features/pagination/index.d.ts +1 -0
- package/es/table/features/pagination/index.js +1 -0
- package/es/table/features/pagination/usePagination.d.ts +5 -0
- package/es/table/features/pagination/usePagination.js +89 -0
- package/es/table/features/resize/ResizeHandle.d.ts +22 -0
- package/es/table/features/resize/ResizeHandle.js +99 -0
- package/es/table/features/resize/index.d.ts +5 -0
- package/es/table/features/resize/index.js +3 -0
- package/es/table/features/resize/transformResizableColumns.d.ts +11 -0
- package/es/table/features/resize/transformResizableColumns.js +52 -0
- package/es/table/features/resize/useResize.d.ts +52 -0
- package/es/table/features/resize/useResize.js +586 -0
- package/es/table/features/selection/index.d.ts +1 -0
- package/es/table/features/selection/index.js +1 -0
- package/es/table/features/selection/useSelection.d.ts +20 -0
- package/es/table/features/selection/useSelection.js +579 -0
- package/es/table/features/sort/index.d.ts +1 -0
- package/es/table/features/sort/index.js +1 -0
- package/es/table/features/sort/useSorter.d.ts +21 -0
- package/es/table/features/sort/useSorter.js +372 -0
- package/es/table/features/sticky/index.d.ts +2 -0
- package/es/table/features/sticky/index.js +2 -0
- package/es/table/features/sticky/stickyScrollBar.d.ts +12 -0
- package/es/table/features/sticky/stickyScrollBar.js +203 -0
- package/es/table/features/sticky/useSticky.d.ts +10 -0
- package/es/table/features/sticky/useSticky.js +34 -0
- package/es/table/features/summary/index.d.ts +1 -0
- package/es/table/features/summary/index.js +1 -0
- package/es/table/features/virtual/index.d.ts +2 -0
- package/es/table/features/virtual/index.js +2 -0
- package/es/table/features/virtual/useFlattenRecords.d.ts +19 -0
- package/es/table/features/virtual/useFlattenRecords.js +55 -0
- package/es/table/features/virtual/useFrame.d.ts +7 -0
- package/es/table/features/virtual/useFrame.js +67 -0
- package/es/table/immutableHelper.d.ts +9 -0
- package/es/table/immutableHelper.js +36 -0
- package/es/table/index.d.ts +24 -0
- package/es/table/index.js +23 -0
- package/es/table/interface.d.ts +438 -0
- package/es/table/interface.js +56 -0
- package/es/table/shared/context/PerfContext.d.ts +6 -0
- package/es/table/shared/context/PerfContext.js +6 -0
- package/es/table/shared/context/TableContext.d.ts +51 -0
- package/es/table/shared/context/TableContext.js +8 -0
- package/es/table/shared/hooks/useContainerWidth.d.ts +1 -0
- package/es/table/shared/hooks/useContainerWidth.js +14 -0
- package/es/table/shared/hooks/useLazyKVMap.d.ts +4 -0
- package/es/table/shared/hooks/useLazyKVMap.js +30 -0
- package/es/table/shared/hooks/useRenderTimes.d.ts +5 -0
- package/es/table/shared/hooks/useRenderTimes.js +39 -0
- package/es/table/shared/hooks/useRowInfo.d.ts +11 -0
- package/es/table/shared/hooks/useRowInfo.js +73 -0
- package/es/table/shared/utils/legacyUtil.d.ts +5 -0
- package/es/table/shared/utils/legacyUtil.js +30 -0
- package/es/table/shared/utils/util.d.ts +6 -0
- package/es/table/shared/utils/util.js +26 -0
- package/es/table/shared/utils/valueUtil.d.ts +8 -0
- package/es/table/shared/utils/valueUtil.js +29 -0
- package/es/table/style/base.less +164 -0
- package/es/table/style/bordered.less +83 -0
- package/es/table/style/editable.less +50 -0
- package/es/table/style/ellipsis.less +33 -0
- package/es/table/style/empty.less +16 -0
- package/es/table/style/expand.less +123 -0
- package/es/table/style/filter.less +34 -0
- package/es/table/style/fixed.less +85 -0
- package/es/table/style/index.d.ts +3 -0
- package/es/table/style/index.js +3 -0
- package/es/table/style/index.less +19 -0
- package/es/table/style/pagination.less +29 -0
- package/es/table/style/radius.less +64 -0
- package/es/table/style/resize.less +78 -0
- package/es/table/style/rtl.less +52 -0
- package/es/table/style/selection.less +63 -0
- package/es/table/style/size.less +54 -0
- package/es/table/style/sorter.less +99 -0
- package/es/table/style/sticky.less +45 -0
- package/es/table/style/summary.less +23 -0
- package/es/table/style/variables.less +80 -0
- package/es/table/style/virtual.less +95 -0
- package/lib/_util/context/createContextSelector.js +120 -0
- package/lib/_util/context/immutable.js +92 -0
- package/lib/_util/context/index.js +41 -0
- package/lib/_util/easings.js +1 -1
- package/lib/_util/getScroll.js +6 -6
- package/lib/_util/hooks/index.js +82 -5
- package/lib/_util/hooks/useBreakpoint.js +85 -0
- package/lib/_util/hooks/useCssVar.js +37 -0
- package/lib/_util/hooks/useEvent.js +13 -0
- package/lib/_util/hooks/useForceUpdate.js +5 -4
- package/lib/_util/hooks/useLayoutEffect.js +13 -0
- package/lib/_util/hooks/useMultipleSelect.js +43 -0
- package/lib/_util/hooks/useOrientation.js +7 -8
- package/lib/_util/hooks/useProxyImperativeHandle.js +18 -14
- package/lib/_util/hooks/useSyncState.js +19 -9
- package/lib/_util/hooks/useTimeoutLock.js +35 -0
- package/lib/_util/index.js +101 -1
- package/lib/_util/is.js +22 -0
- package/lib/_util/rcUtil.js +134 -0
- package/lib/_util/scrollTo.js +22 -18
- package/lib/_util/scrollbar.js +38 -0
- package/lib/_util/validate.js +17 -0
- package/lib/_util/warning.js +25 -27
- package/lib/block-header/index.js +141 -0
- package/{esm/blockHeader → lib/block-header}/style/index.less +167 -143
- package/lib/button/index.js +24 -9
- package/lib/button/style/index.less +62 -59
- package/lib/button/style/mixin.less +40 -39
- package/lib/collapsible/index.js +210 -169
- package/lib/collapsible/style/index.less +24 -24
- package/lib/collapsible-action-items/index.js +83 -0
- package/{esm/collapsibleActionItems → lib/collapsible-action-items}/style/index.less +7 -7
- package/lib/flex/index.js +43 -34
- package/lib/flex/style/index.less +80 -76
- package/lib/flex/utils.js +23 -23
- package/lib/form-list/index.js +163 -0
- package/lib/{formList → form-list}/style/index.less +45 -45
- package/lib/index.js +41 -63
- package/lib/overflow-list/index.js +203 -0
- package/lib/{overflowList → overflow-list}/style/index.less +9 -9
- package/lib/resize/index.js +13 -13
- package/lib/resize-observer/index.js +182 -0
- package/lib/splitter/Panel.js +36 -25
- package/lib/splitter/SplitBar.js +151 -134
- package/lib/splitter/Splitter.js +141 -89
- package/lib/splitter/hooks/sizeUtil.js +50 -33
- package/lib/splitter/hooks/useDragListeners.js +114 -0
- package/lib/splitter/hooks/useItems.js +27 -20
- package/lib/splitter/hooks/useOrientation.js +12 -0
- package/lib/splitter/hooks/useResizable.js +32 -30
- package/lib/splitter/hooks/useResize.js +76 -45
- package/lib/splitter/hooks/useSizes.js +55 -30
- package/lib/splitter/index.js +1 -1
- package/lib/splitter/style/index.less +349 -312
- package/lib/status-tag/index.js +131 -0
- package/{esm/statusTag → lib/status-tag}/style/index.less +70 -70
- package/lib/{statusTag → status-tag}/style/mixin.less +48 -39
- package/lib/style/index.less +1 -1
- package/lib/style/themes/index.less +2 -2
- package/lib/style/themes/variable.less +5 -5
- package/lib/table/Column.js +13 -0
- package/lib/table/ColumnGroup.js +13 -0
- package/lib/table/InternalTable.js +824 -0
- package/lib/table/Table.js +40 -0
- package/lib/table/TableMeasureRowContext.js +10 -0
- package/lib/table/components/Body/BodyRow.js +192 -0
- package/lib/table/components/Body/ExpandedRow.js +61 -0
- package/lib/table/components/Body/MeasureCell.js +43 -0
- package/lib/table/components/Body/MeasureRow.js +64 -0
- package/lib/table/components/Body/index.js +133 -0
- package/lib/table/components/Cell/index.js +205 -0
- package/lib/table/components/Cell/useCellRender.js +78 -0
- package/lib/table/components/Cell/useHoverState.js +20 -0
- package/lib/table/components/ColGroup.js +62 -0
- package/lib/table/components/ExpandIcon.js +35 -0
- package/lib/table/components/FixedHolder/index.js +195 -0
- package/lib/table/components/Footer/Cell.js +57 -0
- package/lib/table/components/Footer/Row.js +19 -0
- package/lib/table/components/Footer/Summary.js +19 -0
- package/lib/table/components/Footer/SummaryContext.js +12 -0
- package/lib/table/components/Footer/index.js +41 -0
- package/lib/table/components/Header/Header.js +120 -0
- package/lib/table/components/Header/HeaderRow.js +72 -0
- package/lib/table/components/Panel.js +20 -0
- package/lib/table/components/RcTable.js +764 -0
- package/lib/table/components/VirtualTable.js +18 -0
- package/lib/table/components/VirtualTableBody/BodyGrid.js +316 -0
- package/lib/table/components/VirtualTableBody/BodyLine.js +125 -0
- package/lib/table/components/VirtualTableBody/VirtualCell.js +128 -0
- package/lib/table/components/VirtualTableBody/context.js +9 -0
- package/lib/table/components/VirtualTableBody/index.js +111 -0
- package/lib/table/constant.js +8 -0
- package/lib/table/features/columns/Column.js +10 -0
- package/lib/table/features/columns/ColumnGroup.js +10 -0
- package/lib/table/features/columns/index.js +57 -0
- package/lib/table/features/columns/useColumns.js +237 -0
- package/lib/table/features/columns/useFilledColumns.js +42 -0
- package/lib/table/features/columns/useTitleColumns.js +34 -0
- package/lib/table/features/columns/useWidthColumns.js +83 -0
- package/lib/table/features/editable/BatchEditModal.js +794 -0
- package/lib/table/features/editable/EditableCell.js +303 -0
- package/lib/table/features/editable/EditableContext.js +28 -0
- package/lib/table/features/editable/batchEditTypes.js +5 -0
- package/lib/table/features/editable/batchEditUtils.js +264 -0
- package/lib/table/features/editable/builtinEditors.js +174 -0
- package/lib/table/features/editable/index.js +75 -0
- package/lib/table/features/editable/useBatchRules.js +103 -0
- package/lib/table/features/editable/useEditable.js +701 -0
- package/lib/table/features/expand/expandUtil.js +57 -0
- package/lib/table/features/expand/index.js +32 -0
- package/lib/table/features/expand/useExpand.js +99 -0
- package/lib/table/features/filter/FilterDropdown.js +504 -0
- package/lib/table/features/filter/FilterSearch.js +34 -0
- package/lib/table/features/filter/FilterWrapper.js +32 -0
- package/lib/table/features/filter/index.js +49 -0
- package/lib/table/features/filter/useFilter.js +254 -0
- package/lib/table/features/fixed/fixUtil.js +75 -0
- package/lib/table/features/fixed/index.js +34 -0
- package/lib/table/features/fixed/offsetUtil.js +19 -0
- package/lib/table/features/fixed/useFixedInfo.js +26 -0
- package/lib/table/features/fixed/useStickyOffsets.js +35 -0
- package/lib/table/features/hover/index.js +13 -0
- package/lib/table/features/hover/useHover.js +31 -0
- package/lib/table/features/pagination/index.js +27 -0
- package/lib/table/features/pagination/usePagination.js +96 -0
- package/lib/table/features/resize/ResizeHandle.js +109 -0
- package/lib/table/features/resize/index.js +27 -0
- package/lib/table/features/resize/transformResizableColumns.js +61 -0
- package/lib/table/features/resize/useResize.js +595 -0
- package/lib/table/features/selection/index.js +39 -0
- package/lib/table/features/selection/useSelection.js +588 -0
- package/lib/table/features/sort/index.js +21 -0
- package/lib/table/features/sort/useSorter.js +381 -0
- package/lib/table/features/sticky/index.js +20 -0
- package/lib/table/features/sticky/stickyScrollBar.js +212 -0
- package/lib/table/features/sticky/useSticky.js +43 -0
- package/lib/table/features/summary/index.js +13 -0
- package/lib/table/features/virtual/index.js +26 -0
- package/lib/table/features/virtual/useFlattenRecords.js +64 -0
- package/lib/table/features/virtual/useFrame.js +74 -0
- package/lib/table/immutableHelper.js +46 -0
- package/lib/table/index.js +124 -0
- package/lib/table/interface.js +60 -0
- package/lib/table/shared/context/PerfContext.js +15 -0
- package/lib/table/shared/context/TableContext.js +13 -0
- package/lib/table/shared/hooks/useContainerWidth.js +20 -0
- package/lib/table/shared/hooks/useLazyKVMap.js +39 -0
- package/lib/table/shared/hooks/useRenderTimes.js +49 -0
- package/lib/table/shared/hooks/useRowInfo.js +80 -0
- package/lib/table/shared/utils/legacyUtil.js +38 -0
- package/lib/table/shared/utils/util.js +34 -0
- package/lib/table/shared/utils/valueUtil.js +37 -0
- package/lib/table/style/base.less +164 -0
- package/lib/table/style/bordered.less +83 -0
- package/lib/table/style/editable.less +50 -0
- package/lib/table/style/ellipsis.less +33 -0
- package/lib/table/style/empty.less +16 -0
- package/lib/table/style/expand.less +123 -0
- package/lib/table/style/filter.less +34 -0
- package/lib/table/style/fixed.less +85 -0
- package/lib/table/style/index.js +5 -0
- package/lib/table/style/index.less +19 -0
- package/lib/table/style/pagination.less +29 -0
- package/lib/table/style/radius.less +64 -0
- package/lib/table/style/resize.less +78 -0
- package/lib/table/style/rtl.less +52 -0
- package/lib/table/style/selection.less +63 -0
- package/lib/table/style/size.less +54 -0
- package/lib/table/style/sorter.less +99 -0
- package/lib/table/style/sticky.less +45 -0
- package/lib/table/style/summary.less +23 -0
- package/lib/table/style/variables.less +80 -0
- package/lib/table/style/virtual.less +95 -0
- package/package.json +147 -152
- package/esm/_util/extendsObject.js +0 -17
- package/esm/_util/hooks/index.js +0 -4
- package/esm/_util/isNonNullable.js +0 -4
- package/esm/index.js +0 -22
- package/esm/splitter/style/index.less +0 -312
- package/esm/style/mixins/index.less +0 -0
- package/esm/style/themes/index.less +0 -2
- package/lib/_util/extendsObject.js +0 -20
- package/lib/_util/isNonNullable.js +0 -10
- package/lib/blockHeader/index.js +0 -121
- package/lib/collapsibleActionItems/index.js +0 -68
- package/lib/formList/index.js +0 -130
- package/lib/overflowList/index.js +0 -144
- package/lib/resizeObserver/index.js +0 -137
- package/lib/statusTag/index.js +0 -125
- package/lib/style/mixins/index.less +0 -0
- /package/{esm → es}/_util/easings.js +0 -0
- /package/{esm → es}/_util/gapSize.js +0 -0
- /package/{esm → es}/_util/hooks/useForceUpdate.js +0 -0
- /package/{esm → es}/_util/hooks/useOrientation.js +0 -0
- /package/{esm → es}/_util/hooks/useSyncState.js +0 -0
- /package/{esm → es}/_util/type.js +0 -0
- /package/{esm/blockHeader → es/block-header}/style/index.js +0 -0
- /package/{esm → es}/button/style/index.js +0 -0
- /package/{esm → es}/collapsible/style/index.js +0 -0
- /package/{esm/collapsibleActionItems → es/collapsible-action-items}/style/index.js +0 -0
- /package/{esm → es}/flex/interface.js +0 -0
- /package/{esm → es}/flex/style/index.js +0 -0
- /package/{esm → es}/flex/utils.js +0 -0
- /package/{esm/formList → es/form-list}/style/index.js +0 -0
- /package/{esm/overflowList → es/overflow-list}/style/index.js +0 -0
- /package/{esm → es}/resize/index.js +0 -0
- /package/{esm → es}/splitter/hooks/useItems.js +0 -0
- /package/{esm → es}/splitter/index.js +0 -0
- /package/{esm → es}/splitter/interface.js +0 -0
- /package/{esm → es}/splitter/style/index.js +0 -0
- /package/{esm/statusTag → es/status-tag}/style/index.js +0 -0
- /package/{esm → es}/style/index.js +0 -0
- /package/lib/{blockHeader → block-header}/style/index.js +0 -0
- /package/lib/{collapsibleActionItems → collapsible-action-items}/style/index.js +0 -0
- /package/lib/{formList → form-list}/style/index.js +0 -0
- /package/lib/{overflowList → overflow-list}/style/index.js +0 -0
- /package/lib/{statusTag → status-tag}/style/index.js +0 -0
package/lib/splitter/Splitter.js
CHANGED
|
@@ -1,53 +1,70 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
7
|
exports.default = void 0;
|
|
7
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _configProvider = require("antd/
|
|
9
|
+
var _configProvider = require("antd/lib/config-provider");
|
|
9
10
|
var _rcResizeObserver = _interopRequireDefault(require("rc-resize-observer"));
|
|
10
|
-
var _useEvent = _interopRequireDefault(require("rc-util/
|
|
11
|
-
var _warning = _interopRequireDefault(require("rc-util/
|
|
11
|
+
var _useEvent = _interopRequireDefault(require("rc-util/lib/hooks/useEvent"));
|
|
12
|
+
var _warning = _interopRequireDefault(require("rc-util/lib/warning"));
|
|
12
13
|
var _useItems = _interopRequireDefault(require("./hooks/useItems"));
|
|
14
|
+
var _useOrientation3 = _interopRequireDefault(require("./hooks/useOrientation"));
|
|
13
15
|
var _useResizable = _interopRequireDefault(require("./hooks/useResizable"));
|
|
14
|
-
var
|
|
15
|
-
var
|
|
16
|
+
var _useResize3 = _interopRequireDefault(require("./hooks/useResize"));
|
|
17
|
+
var _useSizes3 = _interopRequireDefault(require("./hooks/useSizes"));
|
|
16
18
|
var _Panel = require("./Panel");
|
|
17
19
|
var _SplitBar = _interopRequireDefault(require("./SplitBar"));
|
|
18
20
|
require("./style/index.less");
|
|
19
|
-
var
|
|
20
|
-
var _lodashEs = require("lodash-es");
|
|
21
|
+
var _clsx2 = _interopRequireDefault(require("clsx"));
|
|
21
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
22
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
23
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" !=
|
|
23
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
24
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
24
25
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
26
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
27
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
28
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
29
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
30
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
31
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
32
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
33
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
34
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
35
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
36
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
37
|
+
var Splitter = function Splitter(props) {
|
|
38
|
+
var customizePrefixCls = props.prefixCls,
|
|
39
|
+
className = props.className,
|
|
40
|
+
style = props.style,
|
|
41
|
+
layout = props.layout,
|
|
42
|
+
orientation = props.orientation,
|
|
43
|
+
vertical = props.vertical,
|
|
44
|
+
children = props.children,
|
|
45
|
+
rootClassName = props.rootClassName,
|
|
46
|
+
onResizeStart = props.onResizeStart,
|
|
47
|
+
onResize = props.onResize,
|
|
48
|
+
onResizeEnd = props.onResizeEnd,
|
|
49
|
+
lazy = props.lazy,
|
|
50
|
+
destroyOnHidden = props.destroyOnHidden,
|
|
51
|
+
draggerIcon = props.draggerIcon,
|
|
52
|
+
motion = props.motion;
|
|
53
|
+
var _useContext = (0, _react.useContext)(_configProvider.ConfigContext),
|
|
54
|
+
getPrefixCls = _useContext.getPrefixCls,
|
|
55
|
+
direction = _useContext.direction;
|
|
56
|
+
var prefixCls = getPrefixCls('splitter', customizePrefixCls);
|
|
57
|
+
var _useOrientation = (0, _useOrientation3.default)(orientation, vertical, layout),
|
|
58
|
+
_useOrientation2 = _slicedToArray(_useOrientation, 2),
|
|
59
|
+
mergedOrientation = _useOrientation2[0],
|
|
60
|
+
isVertical = _useOrientation2[1];
|
|
61
|
+
var isRTL = direction === 'rtl';
|
|
62
|
+
var reverse = !isVertical && isRTL;
|
|
63
|
+
var items = (0, _useItems.default)(children);
|
|
47
64
|
if (process.env.NODE_ENV !== 'production') {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
items.forEach(item
|
|
65
|
+
var existSize = false;
|
|
66
|
+
var existUndefinedSize = false;
|
|
67
|
+
items.forEach(function (item) {
|
|
51
68
|
if (item.size !== undefined) {
|
|
52
69
|
existSize = true;
|
|
53
70
|
} else {
|
|
@@ -58,80 +75,117 @@ const Splitter = props => {
|
|
|
58
75
|
(0, _warning.default)(false, 'When part of `Splitter.Panel` has `size`, `onResize` is required or change `size` to `defaultSize`.');
|
|
59
76
|
}
|
|
60
77
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
78
|
+
var _useState = (0, _react.useState)(),
|
|
79
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
80
|
+
containerSize = _useState2[0],
|
|
81
|
+
setContainerSize = _useState2[1];
|
|
82
|
+
var onContainerResize = function onContainerResize(size) {
|
|
83
|
+
var offsetWidth = size.offsetWidth,
|
|
84
|
+
offsetHeight = size.offsetHeight;
|
|
85
|
+
var containerSize = isVertical ? offsetHeight : offsetWidth;
|
|
68
86
|
if (containerSize === 0) {
|
|
69
87
|
return;
|
|
70
88
|
}
|
|
71
89
|
setContainerSize(containerSize);
|
|
72
90
|
};
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
91
|
+
var _useSizes = (0, _useSizes3.default)(items, containerSize),
|
|
92
|
+
_useSizes2 = _slicedToArray(_useSizes, 6),
|
|
93
|
+
panelSizes = _useSizes2[0],
|
|
94
|
+
itemPxSizes = _useSizes2[1],
|
|
95
|
+
itemPtgSizes = _useSizes2[2],
|
|
96
|
+
itemPtgMinSizes = _useSizes2[3],
|
|
97
|
+
itemPtgMaxSizes = _useSizes2[4],
|
|
98
|
+
updateSizes = _useSizes2[5];
|
|
99
|
+
var resizableInfos = (0, _useResizable.default)(items, itemPxSizes, isRTL);
|
|
100
|
+
var _useResize = (0, _useResize3.default)(items, resizableInfos, itemPtgSizes, containerSize, updateSizes, isRTL),
|
|
101
|
+
_useResize2 = _slicedToArray(_useResize, 5),
|
|
102
|
+
onOffsetStart = _useResize2[0],
|
|
103
|
+
onOffsetUpdate = _useResize2[1],
|
|
104
|
+
onOffsetEnd = _useResize2[2],
|
|
105
|
+
onCollapse = _useResize2[3],
|
|
106
|
+
movingIndex = _useResize2[4];
|
|
107
|
+
var supportMotion = _react.default.useMemo(function () {
|
|
108
|
+
return (motion || items.some(function (item) {
|
|
109
|
+
var _item$collapsible;
|
|
110
|
+
return (_item$collapsible = item.collapsible) === null || _item$collapsible === void 0 ? void 0 : _item$collapsible.motion;
|
|
111
|
+
})) && movingIndex === undefined;
|
|
112
|
+
}, [items, motion, movingIndex]);
|
|
113
|
+
var onInternalResizeStart = (0, _useEvent.default)(function (index) {
|
|
77
114
|
onOffsetStart(index);
|
|
78
|
-
onResizeStart
|
|
115
|
+
onResizeStart === null || onResizeStart === void 0 || onResizeStart(itemPxSizes);
|
|
79
116
|
});
|
|
80
|
-
|
|
81
|
-
|
|
117
|
+
var onInternalResizeUpdate = (0, _useEvent.default)(function (index, offset, lazyEnd) {
|
|
118
|
+
var nextSizes = onOffsetUpdate(index, offset);
|
|
82
119
|
if (lazyEnd) {
|
|
83
|
-
onResizeEnd
|
|
120
|
+
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(nextSizes);
|
|
84
121
|
} else {
|
|
85
|
-
onResize
|
|
122
|
+
onResize === null || onResize === void 0 || onResize(nextSizes);
|
|
86
123
|
}
|
|
124
|
+
return nextSizes;
|
|
87
125
|
});
|
|
88
|
-
|
|
89
|
-
onOffsetEnd();
|
|
126
|
+
var onInternalResizeEnd = (0, _useEvent.default)(function (nextSizes, lazyEnd) {
|
|
127
|
+
onOffsetEnd(nextSizes);
|
|
90
128
|
if (!lazyEnd) {
|
|
91
|
-
onResizeEnd
|
|
129
|
+
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(nextSizes !== null && nextSizes !== void 0 ? nextSizes : itemPxSizes);
|
|
92
130
|
}
|
|
93
131
|
});
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
132
|
+
var onInternalOffsetUpdate = (0, _useEvent.default)(function (index, offsetX, offsetY, lazyEnd) {
|
|
133
|
+
var offset = isVertical ? offsetY : offsetX;
|
|
134
|
+
if (reverse) {
|
|
135
|
+
offset = -offset;
|
|
136
|
+
}
|
|
137
|
+
return onInternalResizeUpdate(index, offset, lazyEnd);
|
|
138
|
+
});
|
|
139
|
+
var onInternalCollapse = (0, _useEvent.default)(function (index, type) {
|
|
140
|
+
var _props$onCollapse;
|
|
141
|
+
var nextSizes = onCollapse(index, type);
|
|
142
|
+
onResize === null || onResize === void 0 || onResize(nextSizes);
|
|
143
|
+
onResizeEnd === null || onResizeEnd === void 0 || onResizeEnd(nextSizes);
|
|
144
|
+
var collapsed = nextSizes.map(function (size) {
|
|
145
|
+
return Math.abs(size) < Number.EPSILON;
|
|
146
|
+
});
|
|
147
|
+
(_props$onCollapse = props.onCollapse) === null || _props$onCollapse === void 0 || _props$onCollapse.call(props, collapsed, nextSizes);
|
|
100
148
|
});
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
const len = items.length;
|
|
109
|
-
for (let i = 0; i < len; i += 1) {
|
|
149
|
+
var containerClassName = (0, _clsx2.default)(prefixCls, className, "".concat(prefixCls, "-").concat(mergedOrientation), _defineProperty({}, "".concat(prefixCls, "-rtl"), isRTL), rootClassName);
|
|
150
|
+
var maskCls = "".concat(prefixCls, "-mask");
|
|
151
|
+
var stackSizes = _react.default.useMemo(function () {
|
|
152
|
+
var mergedSizes = [];
|
|
153
|
+
var stack = 0;
|
|
154
|
+
var len = items.length;
|
|
155
|
+
for (var i = 0; i < len; i += 1) {
|
|
110
156
|
stack += itemPtgSizes[i];
|
|
111
157
|
mergedSizes.push(stack);
|
|
112
158
|
}
|
|
113
159
|
return mergedSizes;
|
|
114
160
|
}, [itemPtgSizes, items.length]);
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
161
|
+
var panelIds = (0, _react.useMemo)(function () {
|
|
162
|
+
return items.map(function (item, idx) {
|
|
163
|
+
return item.id || "".concat(prefixCls, "-panel-").concat(idx);
|
|
164
|
+
});
|
|
165
|
+
}, [items, prefixCls]);
|
|
166
|
+
var mergedStyle = _objectSpread({}, style);
|
|
118
167
|
return /*#__PURE__*/_react.default.createElement(_rcResizeObserver.default, {
|
|
119
168
|
onResize: onContainerResize
|
|
120
169
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
121
170
|
style: mergedStyle,
|
|
122
171
|
className: containerClassName
|
|
123
|
-
}, items.map((item, idx)
|
|
124
|
-
|
|
172
|
+
}, items.map(function (item, idx) {
|
|
173
|
+
var _item$destroyOnHidden;
|
|
174
|
+
var panel = /*#__PURE__*/_react.default.createElement(_Panel.InternalPanel, _extends({}, item, {
|
|
175
|
+
id: panelIds[idx],
|
|
125
176
|
prefixCls: prefixCls,
|
|
126
|
-
size: panelSizes[idx]
|
|
177
|
+
size: panelSizes[idx],
|
|
178
|
+
destroyOnHidden: (_item$destroyOnHidden = item.destroyOnHidden) !== null && _item$destroyOnHidden !== void 0 ? _item$destroyOnHidden : destroyOnHidden,
|
|
179
|
+
supportMotion: supportMotion
|
|
127
180
|
}));
|
|
128
|
-
|
|
129
|
-
|
|
181
|
+
var splitBar = null;
|
|
182
|
+
var resizableInfo = resizableInfos[idx];
|
|
130
183
|
if (resizableInfo) {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
184
|
+
var ariaMinStart = (stackSizes[idx - 1] || 0) + itemPtgMinSizes[idx];
|
|
185
|
+
var ariaMinEnd = (stackSizes[idx + 1] || 100) - itemPtgMaxSizes[idx + 1];
|
|
186
|
+
var ariaMaxStart = (stackSizes[idx - 1] || 0) + itemPtgMaxSizes[idx];
|
|
187
|
+
var ariaMaxEnd = (stackSizes[idx + 1] || 100) - itemPtgMinSizes[idx + 1];
|
|
188
|
+
var ariaControls = [panelIds[idx], panelIds[idx + 1]].filter(Boolean).join(' ');
|
|
135
189
|
splitBar = /*#__PURE__*/_react.default.createElement(_SplitBar.default, {
|
|
136
190
|
lazy: lazy,
|
|
137
191
|
index: idx,
|
|
@@ -139,32 +193,30 @@ const Splitter = props => {
|
|
|
139
193
|
prefixCls: prefixCls,
|
|
140
194
|
vertical: isVertical,
|
|
141
195
|
resizable: resizableInfo.resizable,
|
|
196
|
+
draggerIcon: draggerIcon,
|
|
197
|
+
startIcon: resizableInfo.startIcon,
|
|
198
|
+
endIcon: resizableInfo.endIcon,
|
|
142
199
|
ariaNow: stackSizes[idx] * 100,
|
|
143
200
|
ariaMin: Math.max(ariaMinStart, ariaMinEnd) * 100,
|
|
144
201
|
ariaMax: Math.min(ariaMaxStart, ariaMaxEnd) * 100,
|
|
202
|
+
ariaControls: ariaControls,
|
|
145
203
|
startCollapsible: resizableInfo.startCollapsible,
|
|
146
204
|
endCollapsible: resizableInfo.endCollapsible,
|
|
147
205
|
showStartCollapsibleIcon: resizableInfo.showStartCollapsibleIcon,
|
|
148
206
|
showEndCollapsibleIcon: resizableInfo.showEndCollapsibleIcon,
|
|
149
207
|
onOffsetStart: onInternalResizeStart,
|
|
150
|
-
onOffsetUpdate:
|
|
151
|
-
let offset = isVertical ? offsetY : offsetX;
|
|
152
|
-
if (reverse) {
|
|
153
|
-
offset = -offset;
|
|
154
|
-
}
|
|
155
|
-
onInternalResizeUpdate(index, offset, lazyEnd);
|
|
156
|
-
},
|
|
208
|
+
onOffsetUpdate: onInternalOffsetUpdate,
|
|
157
209
|
onOffsetEnd: onInternalResizeEnd,
|
|
158
210
|
onCollapse: onInternalCollapse,
|
|
159
211
|
containerSize: containerSize || 0
|
|
160
212
|
});
|
|
161
213
|
}
|
|
162
214
|
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, {
|
|
163
|
-
key:
|
|
215
|
+
key: panelIds[idx] || "split-panel-".concat(idx)
|
|
164
216
|
}, panel, splitBar);
|
|
165
217
|
}), typeof movingIndex === 'number' && /*#__PURE__*/_react.default.createElement("div", {
|
|
166
218
|
"aria-hidden": true,
|
|
167
|
-
className: (0,
|
|
219
|
+
className: (0, _clsx2.default)(maskCls, "".concat(maskCls, "-").concat(mergedOrientation))
|
|
168
220
|
})));
|
|
169
221
|
};
|
|
170
222
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -4,64 +4,81 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.autoPtgSizes = autoPtgSizes;
|
|
7
|
+
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
8
|
+
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
9
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
10
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
11
|
+
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
12
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
7
13
|
function autoPtgSizes(ptgSizes, minPtgSizes, maxPtgSizes) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
ptgSizes.forEach((size, index)
|
|
14
|
+
var currentTotalPtg = 0;
|
|
15
|
+
var undefinedIndexes = [];
|
|
16
|
+
ptgSizes.forEach(function (size, index) {
|
|
11
17
|
if (size === undefined) {
|
|
12
18
|
undefinedIndexes.push(index);
|
|
13
19
|
} else {
|
|
14
20
|
currentTotalPtg += size;
|
|
15
21
|
}
|
|
16
22
|
});
|
|
17
|
-
|
|
18
|
-
|
|
23
|
+
var restPtg = 1 - currentTotalPtg;
|
|
24
|
+
var undefinedCount = undefinedIndexes.length;
|
|
19
25
|
|
|
20
26
|
// If all sizes are defined but don't sum to 1, scale them.
|
|
21
27
|
if (ptgSizes.length && !undefinedIndexes.length && currentTotalPtg !== 1) {
|
|
22
28
|
// Handle the case when all sizes are 0
|
|
23
29
|
if (currentTotalPtg === 0) {
|
|
24
|
-
|
|
25
|
-
return ptgSizes.map(()
|
|
30
|
+
var avg = 1 / ptgSizes.length;
|
|
31
|
+
return ptgSizes.map(function () {
|
|
32
|
+
return avg;
|
|
33
|
+
});
|
|
26
34
|
}
|
|
27
|
-
|
|
35
|
+
var scale = 1 / currentTotalPtg;
|
|
28
36
|
// We know `size` is a number here because undefinedIndexes is empty.
|
|
29
|
-
return ptgSizes.map(
|
|
37
|
+
return ptgSizes.map(function (size) {
|
|
38
|
+
return size * scale;
|
|
39
|
+
});
|
|
30
40
|
}
|
|
31
41
|
if (restPtg < 0) {
|
|
32
|
-
|
|
33
|
-
return ptgSizes.map(
|
|
42
|
+
var _scale = 1 / currentTotalPtg;
|
|
43
|
+
return ptgSizes.map(function (size) {
|
|
44
|
+
return size === undefined ? 0 : size * _scale;
|
|
45
|
+
});
|
|
34
46
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
for (
|
|
40
|
-
|
|
41
|
-
|
|
47
|
+
var sumMin = 0;
|
|
48
|
+
var sumMax = 0;
|
|
49
|
+
var limitMin = 0;
|
|
50
|
+
var limitMax = 1;
|
|
51
|
+
for (var _i = 0, _undefinedIndexes = undefinedIndexes; _i < _undefinedIndexes.length; _i++) {
|
|
52
|
+
var index = _undefinedIndexes[_i];
|
|
53
|
+
var min = minPtgSizes[index] || 0;
|
|
54
|
+
var max = maxPtgSizes[index] || 1;
|
|
42
55
|
sumMin += min;
|
|
43
56
|
sumMax += max;
|
|
44
57
|
limitMin = Math.max(limitMin, min);
|
|
45
58
|
limitMax = Math.min(limitMax, max);
|
|
46
59
|
}
|
|
47
|
-
if (sumMin > 1
|
|
48
|
-
|
|
49
|
-
return ptgSizes.map(
|
|
60
|
+
if (sumMin > 1 || sumMax < 1) {
|
|
61
|
+
var _avg = 1 / undefinedCount;
|
|
62
|
+
return ptgSizes.map(function (size) {
|
|
63
|
+
return size === undefined ? _avg : size;
|
|
64
|
+
});
|
|
50
65
|
}
|
|
51
|
-
|
|
66
|
+
var restAvg = restPtg / undefinedCount;
|
|
52
67
|
if (limitMin <= restAvg && restAvg <= limitMax) {
|
|
53
|
-
return ptgSizes.map(
|
|
68
|
+
return ptgSizes.map(function (size) {
|
|
69
|
+
return size === undefined ? restAvg : size;
|
|
70
|
+
});
|
|
54
71
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
for (
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
result[
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
result[
|
|
72
|
+
var result = _toConsumableArray(ptgSizes);
|
|
73
|
+
var remain = restPtg - sumMin;
|
|
74
|
+
for (var i = 0; i < undefinedCount; i += 1) {
|
|
75
|
+
var _index = undefinedIndexes[i];
|
|
76
|
+
var _min = minPtgSizes[_index] || 0;
|
|
77
|
+
var _max = maxPtgSizes[_index] || 1;
|
|
78
|
+
result[_index] = _min;
|
|
79
|
+
var canAdd = _max - _min;
|
|
80
|
+
var add = Math.min(canAdd, remain);
|
|
81
|
+
result[_index] += add;
|
|
65
82
|
remain -= add;
|
|
66
83
|
}
|
|
67
84
|
return result;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = useDragListeners;
|
|
7
|
+
var _useLayoutEffect = _interopRequireDefault(require("rc-util/lib/hooks/useLayoutEffect"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
9
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
10
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
11
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
12
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
13
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
14
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
15
|
+
function useDragListeners(options) {
|
|
16
|
+
var startPos = options.startPos,
|
|
17
|
+
lazy = options.lazy,
|
|
18
|
+
onOffsetUpdate = options.onOffsetUpdate,
|
|
19
|
+
onOffsetEnd = options.onOffsetEnd,
|
|
20
|
+
handleLazyMove = options.handleLazyMove,
|
|
21
|
+
handleLazyEnd = options.handleLazyEnd,
|
|
22
|
+
setStartPos = options.setStartPos,
|
|
23
|
+
index = options.index;
|
|
24
|
+
(0, _useLayoutEffect.default)(function () {
|
|
25
|
+
if (!startPos) {
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
var onMouseMove = function onMouseMove(e) {
|
|
29
|
+
var pageX = e.pageX,
|
|
30
|
+
pageY = e.pageY;
|
|
31
|
+
var offsetX = pageX - startPos[0];
|
|
32
|
+
var offsetY = pageY - startPos[1];
|
|
33
|
+
if (lazy) {
|
|
34
|
+
handleLazyMove(offsetX, offsetY);
|
|
35
|
+
} else {
|
|
36
|
+
onOffsetUpdate(index, offsetX, offsetY);
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
var onMouseUp = function onMouseUp() {
|
|
40
|
+
if (lazy) {
|
|
41
|
+
handleLazyEnd();
|
|
42
|
+
} else {
|
|
43
|
+
onOffsetEnd();
|
|
44
|
+
}
|
|
45
|
+
setStartPos(null);
|
|
46
|
+
};
|
|
47
|
+
var handleTouchMove = function handleTouchMove(e) {
|
|
48
|
+
if (e.touches.length === 1) {
|
|
49
|
+
e.preventDefault();
|
|
50
|
+
var touch = e.touches[0];
|
|
51
|
+
var _offsetX = touch.pageX - startPos[0];
|
|
52
|
+
var _offsetY = touch.pageY - startPos[1];
|
|
53
|
+
if (lazy) {
|
|
54
|
+
handleLazyMove(_offsetX, _offsetY);
|
|
55
|
+
} else {
|
|
56
|
+
onOffsetUpdate(index, _offsetX, _offsetY);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
};
|
|
60
|
+
var handleTouchEnd = function handleTouchEnd() {
|
|
61
|
+
if (lazy) {
|
|
62
|
+
handleLazyEnd();
|
|
63
|
+
} else {
|
|
64
|
+
onOffsetEnd();
|
|
65
|
+
}
|
|
66
|
+
setStartPos(null);
|
|
67
|
+
};
|
|
68
|
+
var handleMouseLeave = function handleMouseLeave() {
|
|
69
|
+
if (lazy) {
|
|
70
|
+
handleLazyEnd();
|
|
71
|
+
} else {
|
|
72
|
+
onOffsetEnd();
|
|
73
|
+
}
|
|
74
|
+
setStartPos(null);
|
|
75
|
+
};
|
|
76
|
+
var handleBlur = function handleBlur() {
|
|
77
|
+
if (lazy) {
|
|
78
|
+
handleLazyEnd();
|
|
79
|
+
} else {
|
|
80
|
+
onOffsetEnd();
|
|
81
|
+
}
|
|
82
|
+
setStartPos(null);
|
|
83
|
+
};
|
|
84
|
+
var eventHandlerMap = {
|
|
85
|
+
mousemove: onMouseMove,
|
|
86
|
+
mouseup: onMouseUp,
|
|
87
|
+
touchmove: handleTouchMove,
|
|
88
|
+
touchend: handleTouchEnd,
|
|
89
|
+
mouseleave: handleMouseLeave,
|
|
90
|
+
blur: handleBlur
|
|
91
|
+
};
|
|
92
|
+
for (var _i = 0, _Object$entries = Object.entries(eventHandlerMap); _i < _Object$entries.length; _i++) {
|
|
93
|
+
var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
|
|
94
|
+
event = _Object$entries$_i[0],
|
|
95
|
+
handler = _Object$entries$_i[1];
|
|
96
|
+
var _options = event === 'touchmove' ? {
|
|
97
|
+
passive: false
|
|
98
|
+
} : undefined;
|
|
99
|
+
// eslint-disable-next-line react-web-api/no-leaked-event-listener
|
|
100
|
+
window.addEventListener(event, handler, _options);
|
|
101
|
+
}
|
|
102
|
+
return function () {
|
|
103
|
+
for (var _i2 = 0, _Object$entries2 = Object.entries(eventHandlerMap); _i2 < _Object$entries2.length; _i2++) {
|
|
104
|
+
var _Object$entries2$_i = _slicedToArray(_Object$entries2[_i2], 2),
|
|
105
|
+
_event = _Object$entries2$_i[0],
|
|
106
|
+
_handler = _Object$entries2$_i[1];
|
|
107
|
+
var _options2 = _event === 'touchmove' ? {
|
|
108
|
+
passive: false
|
|
109
|
+
} : undefined;
|
|
110
|
+
window.removeEventListener(_event, _handler, _options2);
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
}, [startPos, index, lazy]);
|
|
114
|
+
}
|
|
@@ -6,17 +6,25 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
var React = _interopRequireWildcard(require("react"));
|
|
8
8
|
var _toArray = _interopRequireDefault(require("rc-util/lib/Children/toArray"));
|
|
9
|
+
var _excluded = ["collapsible"];
|
|
9
10
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
11
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" !=
|
|
11
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
12
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
13
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
14
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
15
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
16
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
17
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
18
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
19
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
20
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
12
21
|
function getCollapsible(collapsible) {
|
|
13
|
-
if (collapsible &&
|
|
14
|
-
return {
|
|
15
|
-
...collapsible,
|
|
22
|
+
if (collapsible && _typeof(collapsible) === 'object') {
|
|
23
|
+
return _objectSpread(_objectSpread({}, collapsible), {}, {
|
|
16
24
|
showCollapsibleIcon: collapsible.showCollapsibleIcon === undefined ? 'auto' : collapsible.showCollapsibleIcon
|
|
17
|
-
};
|
|
25
|
+
});
|
|
18
26
|
}
|
|
19
|
-
|
|
27
|
+
var mergedCollapsible = !!collapsible;
|
|
20
28
|
return {
|
|
21
29
|
start: mergedCollapsible,
|
|
22
30
|
end: mergedCollapsible,
|
|
@@ -28,19 +36,18 @@ function getCollapsible(collapsible) {
|
|
|
28
36
|
* Convert `children` into `items`.
|
|
29
37
|
*/
|
|
30
38
|
function useItems(children) {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
collapsible,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}), [children]);
|
|
39
|
+
var items = React.useMemo(function () {
|
|
40
|
+
return (0, _toArray.default)(children).filter(function (item) {
|
|
41
|
+
return /*#__PURE__*/React.isValidElement(item);
|
|
42
|
+
}).map(function (node) {
|
|
43
|
+
var props = node.props;
|
|
44
|
+
var collapsible = props.collapsible,
|
|
45
|
+
restProps = _objectWithoutProperties(props, _excluded);
|
|
46
|
+
return _objectSpread(_objectSpread({}, restProps), {}, {
|
|
47
|
+
collapsible: getCollapsible(collapsible)
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
}, [children]);
|
|
44
51
|
return items;
|
|
45
52
|
}
|
|
46
53
|
var _default = exports.default = useItems;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = useOrientation;
|
|
7
|
+
function useOrientation(orientation, vertical, layout) {
|
|
8
|
+
var _ref, _ref2;
|
|
9
|
+
var mergedOrientation = (_ref = (_ref2 = orientation !== null && orientation !== void 0 ? orientation : vertical ? 'vertical' : undefined) !== null && _ref2 !== void 0 ? _ref2 : layout) !== null && _ref !== void 0 ? _ref : 'horizontal';
|
|
10
|
+
var isVertical = mergedOrientation === 'vertical';
|
|
11
|
+
return [mergedOrientation, isVertical];
|
|
12
|
+
}
|