@lemon-fe/kits 0.1.136 → 1.0.0-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 +27 -5
- package/es/app.d.ts +1 -0
- package/es/app.js +3 -0
- package/es/components/Actions/index.d.ts +26 -0
- package/es/components/Actions/index.js +169 -0
- package/es/components/Actions/index.less +67 -0
- package/es/components/BaseTable/Actions.d.ts +9 -0
- package/es/components/BaseTable/Actions.js +136 -0
- package/es/components/BaseTable/BaseTableContext.d.ts +7 -0
- package/es/components/BaseTable/BaseTableContext.js +7 -0
- package/es/components/BaseTable/ResizeHeaderCell.d.ts +8 -0
- package/es/components/BaseTable/ResizeHeaderCell.js +130 -0
- package/es/components/BaseTable/VirtualBody.d.ts +8 -0
- package/es/components/BaseTable/VirtualBody.js +163 -0
- package/es/components/BaseTable/empty.png +0 -0
- package/es/components/BaseTable/index.d.ts +9 -0
- package/es/components/BaseTable/index.js +482 -0
- package/es/components/BaseTable/index.less +189 -0
- package/es/components/BaseTable/typings.d.ts +48 -0
- package/es/components/BaseTable/utils.d.ts +4 -0
- package/es/components/BaseTable/utils.js +26 -0
- package/es/components/ColorPicker/index.d.ts +13 -0
- package/es/components/ColorPicker/index.js +114 -0
- package/es/components/ColorPicker/index.less +47 -0
- package/es/components/DataGrid/Actions.d.ts +9 -0
- package/es/components/DataGrid/Actions.js +119 -0
- package/es/components/DataGrid/CellRenderer.d.ts +4 -0
- package/es/components/DataGrid/CellRenderer.js +68 -0
- package/es/components/DataGrid/GridContext.d.ts +4 -0
- package/es/components/DataGrid/GridContext.js +4 -0
- package/es/components/DataGrid/HeaderRenderer.d.ts +6 -0
- package/es/components/DataGrid/HeaderRenderer.js +93 -0
- package/es/components/DataGrid/cell-editors/Custom.d.ts +9 -0
- package/es/components/DataGrid/cell-editors/Custom.js +105 -0
- package/es/components/DataGrid/cell-editors/Date.d.ts +8 -0
- package/es/components/DataGrid/cell-editors/Date.js +78 -0
- package/es/components/DataGrid/cell-editors/Number.d.ts +9 -0
- package/es/components/DataGrid/cell-editors/Number.js +86 -0
- package/es/components/DataGrid/cell-editors/Select.d.ts +7 -0
- package/es/components/DataGrid/cell-editors/Select.js +70 -0
- package/es/components/DataGrid/cell-editors/Text.d.ts +5 -0
- package/es/components/DataGrid/cell-editors/Text.js +60 -0
- package/es/components/DataGrid/cell-editors/Wrapper.d.ts +4 -0
- package/es/components/DataGrid/cell-editors/Wrapper.js +7 -0
- package/es/components/DataGrid/cell-editors/utils.d.ts +1 -0
- package/es/components/DataGrid/cell-editors/utils.js +2 -0
- package/es/components/DataGrid/empty.png +0 -0
- package/es/components/DataGrid/hooks.d.ts +2 -0
- package/es/components/DataGrid/hooks.js +45 -0
- package/es/components/DataGrid/index.d.ts +77 -0
- package/es/components/DataGrid/index.js +1051 -0
- package/es/components/DataGrid/index.less +304 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/clientSideNodeManager.d.ts +57 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/clientSideNodeManager.js +378 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/clientSideRowModel.d.ts +120 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/clientSideRowModel.js +1160 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/filterService.d.ts +7 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/filterService.js +137 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/filterStage.d.ts +5 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/filterStage.js +60 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/flattenStage.d.ts +10 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/flattenStage.js +199 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/immutableService.d.ts +13 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/immutableService.js +175 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/sortService.d.ts +21 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/sortService.js +330 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/sortStage.d.ts +7 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModel/sortStage.js +75 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModelModule.d.ts +15 -0
- package/es/components/DataGrid/modules/client-side-row-model/clientSideRowModelModule.js +15 -0
- package/es/components/DataGrid/modules/client-side-row-model/index.d.ts +1 -0
- package/es/components/DataGrid/modules/client-side-row-model/index.js +1 -0
- package/es/components/DataGrid/modules/clipboard/clipboard/clipboardService.d.ts +62 -0
- package/es/components/DataGrid/modules/clipboard/clipboard/clipboardService.js +923 -0
- package/es/components/DataGrid/modules/clipboard/clipboardModule.d.ts +7 -0
- package/es/components/DataGrid/modules/clipboard/clipboardModule.js +8 -0
- package/es/components/DataGrid/modules/clipboard/index.d.ts +1 -0
- package/es/components/DataGrid/modules/clipboard/index.js +1 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/columnModelItem.d.ts +32 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/columnModelItem.js +100 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/columnToolPanel.d.ts +51 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/columnToolPanel.js +320 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/modelItemUtils.d.ts +20 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/modelItemUtils.js +247 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/pivotModePanel.d.ts +9 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/pivotModePanel.js +93 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsHeaderPanel.d.ts +32 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsHeaderPanel.js +186 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsListPanel.d.ts +49 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsListPanel.js +546 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsListPanelItemDragFeature.d.ts +26 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsListPanelItemDragFeature.js +264 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsPanel.d.ts +32 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/primaryColsPanel.js +151 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelColumnComp.d.ts +43 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelColumnComp.js +369 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelColumnGroupComp.d.ts +62 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelColumnGroupComp.js +475 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelContextMenu.d.ts +24 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnToolPanel/toolPanelContextMenu.js +322 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnsToolPanelModule.d.ts +24 -0
- package/es/components/DataGrid/modules/column-tool-panel/columnsToolPanelModule.js +24 -0
- package/es/components/DataGrid/modules/column-tool-panel/index.d.ts +2 -0
- package/es/components/DataGrid/modules/column-tool-panel/index.js +3 -0
- package/es/components/DataGrid/modules/menu/index.d.ts +1 -0
- package/es/components/DataGrid/modules/menu/index.js +1 -0
- package/es/components/DataGrid/modules/menu/menu/contextMenu.d.ts +26 -0
- package/es/components/DataGrid/modules/menu/menu/contextMenu.js +329 -0
- package/es/components/DataGrid/modules/menu/menu/enterpriseMenu.d.ts +85 -0
- package/es/components/DataGrid/modules/menu/menu/enterpriseMenu.js +639 -0
- package/es/components/DataGrid/modules/menu/menu/menuItemMapper.d.ts +15 -0
- package/es/components/DataGrid/modules/menu/menu/menuItemMapper.js +565 -0
- package/es/components/DataGrid/modules/menu/menuModule.d.ts +8 -0
- package/es/components/DataGrid/modules/menu/menuModule.js +8 -0
- package/es/components/DataGrid/modules/row-grouping/index.d.ts +4 -0
- package/es/components/DataGrid/modules/row-grouping/index.js +4 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/aggFuncService.d.ts +23 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/aggFuncService.js +303 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/aggregationStage.d.ts +20 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/aggregationStage.js +326 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/batchRemover.d.ts +10 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/batchRemover.js +71 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/baseDropZonePanel.d.ts +75 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/baseDropZonePanel.js +618 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/dropZoneColumnComp.d.ts +40 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/dropZoneColumnComp.js +460 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/gridHeaderDropZones.d.ts +11 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/gridHeaderDropZones.js +108 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/pivotDropZonePanel.d.ts +17 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/pivotDropZonePanel.js +170 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/rowGroupDropZonePanel.d.ts +15 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/rowGroupDropZonePanel.js +133 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/valueDropZonePanel.d.ts +15 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/columnDropZones/valueDropZonePanel.js +133 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/filterAggregatesStage.d.ts +9 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/filterAggregatesStage.js +175 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/groupStage.d.ts +47 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/groupStage.js +814 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/pivotColDefService.d.ts +24 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/pivotColDefService.js +478 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/pivotStage.d.ts +19 -0
- package/es/components/DataGrid/modules/row-grouping/rowGrouping/pivotStage.js +219 -0
- package/es/components/DataGrid/modules/row-grouping/rowGroupingModule.d.ts +16 -0
- package/es/components/DataGrid/modules/row-grouping/rowGroupingModule.js +16 -0
- package/es/components/DataGrid/modules/server-side-row-model/index.d.ts +1 -0
- package/es/components/DataGrid/modules/server-side-row-model/index.js +1 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/blocks/blockUtils.d.ts +47 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/blocks/blockUtils.js +444 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/blocks/infiniteStoreBlock.d.ts +92 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/blocks/infiniteStoreBlock.js +510 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/expandListener.d.ts +9 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/expandListener.js +115 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/filterListener.d.ts +9 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/filterListener.js +114 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/listenerUtils.d.ts +5 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/listenerUtils.js +68 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/sortListener.d.ts +13 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/listeners/sortListener.js +194 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/nodeManager.d.ts +7 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/nodeManager.js +63 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/serverSideRowModel.d.ts +88 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/serverSideRowModel.js +572 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/fullStore.d.ts +108 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/fullStore.js +876 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/infiniteStore.d.ts +102 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/infiniteStore.js +918 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/storeFactory.d.ts +12 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/storeFactory.js +141 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/storeUtils.d.ts +35 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/stores/storeUtils.js +154 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/transactionManager.d.ts +23 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModel/transactionManager.js +210 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModelModule.d.ts +18 -0
- package/es/components/DataGrid/modules/server-side-row-model/serverSideRowModelModule.js +18 -0
- package/es/components/DataGrid/modules/side-bar/index.d.ts +2 -0
- package/es/components/DataGrid/modules/side-bar/index.js +2 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/common/toolPanelColDefService.d.ts +11 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/common/toolPanelColDefService.js +280 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/horizontalResizeComp.d.ts +19 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/horizontalResizeComp.js +132 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarButtonComp.d.ts +16 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarButtonComp.js +108 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarButtonsComp.d.ts +18 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarButtonsComp.js +115 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarComp.d.ts +29 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/sideBarComp.js +353 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/toolPanelWrapper.d.ts +17 -0
- package/es/components/DataGrid/modules/side-bar/sideBar/toolPanelWrapper.js +128 -0
- package/es/components/DataGrid/modules/side-bar/sideBarModule.d.ts +19 -0
- package/es/components/DataGrid/modules/side-bar/sideBarModule.js +19 -0
- package/es/components/DataGrid/typings.d.ts +138 -0
- package/es/components/DataGrid/typings.js +1 -0
- package/es/components/DataGrid/utils.d.ts +43 -0
- package/es/components/DataGrid/utils.js +242 -0
- package/es/components/Dropdown/index.d.ts +15 -0
- package/es/components/Dropdown/index.js +55 -0
- package/es/components/Dropdown/index.less +13 -0
- package/es/components/DurationPicker/index.d.ts +26 -0
- package/es/components/DurationPicker/index.js +204 -0
- package/es/components/DurationPicker/index.less +61 -0
- package/es/components/EditableTable/EditableCell.d.ts +12 -0
- package/es/components/EditableTable/EditableCell.js +41 -0
- package/es/components/EditableTable/EditableTableFormItem.d.ts +6 -0
- package/es/components/EditableTable/EditableTableFormItem.js +47 -0
- package/es/components/EditableTable/Table.d.ts +6 -0
- package/es/components/EditableTable/Table.js +362 -0
- package/es/components/EditableTable/index.d.ts +9 -0
- package/es/components/EditableTable/index.js +8 -0
- package/es/components/EditableTable/index.less +29 -0
- package/es/components/EditableTable/typings.d.ts +90 -0
- package/es/components/EditableTable/util.d.ts +25 -0
- package/es/components/EditableTable/util.js +399 -0
- package/es/components/Filter/index.d.ts +15 -0
- package/es/components/Filter/index.js +644 -0
- package/es/components/Filter/index.less +82 -0
- package/es/components/Filter/typings.d.ts +35 -0
- package/es/components/FormLayout/index.d.ts +32 -0
- package/es/components/FormLayout/index.js +41 -0
- package/es/components/FormLayout/index.less +109 -0
- package/es/components/Icons/BigTip/error.png +0 -0
- package/es/components/Icons/BigTip/index.d.ts +6 -0
- package/es/components/Icons/BigTip/index.js +46 -0
- package/es/components/Icons/BigTip/info.png +0 -0
- package/es/components/Icons/BigTip/success.png +0 -0
- package/es/components/Icons/BigTip/warning.png +0 -0
- package/es/components/Icons/Calendar.d.ts +5 -0
- package/es/components/Icons/Calendar.js +43 -0
- package/es/components/Icons/Close.d.ts +5 -0
- package/es/components/Icons/Close.js +25 -0
- package/es/components/Icons/CollapseUp.d.ts +5 -0
- package/es/components/Icons/CollapseUp.js +27 -0
- package/es/components/Icons/DarkSearch.d.ts +5 -0
- package/es/components/Icons/DarkSearch.js +34 -0
- package/es/components/Icons/Down.d.ts +5 -0
- package/es/components/Icons/Down.js +31 -0
- package/es/components/Icons/Empty.d.ts +3 -0
- package/es/components/Icons/Empty.js +267 -0
- package/es/components/Icons/LookUp.d.ts +5 -0
- package/es/components/Icons/LookUp.js +70 -0
- package/es/components/Icons/More.d.ts +5 -0
- package/es/components/Icons/More.js +40 -0
- package/es/components/Icons/Search.d.ts +5 -0
- package/es/components/Icons/Search.js +31 -0
- package/es/components/Icons/Tip.d.ts +6 -0
- package/es/components/Icons/Tip.js +165 -0
- package/es/components/Icons/index.d.ts +25 -0
- package/es/components/Icons/index.js +25 -0
- package/es/components/Layout/index.d.ts +41 -0
- package/es/components/Layout/index.js +173 -0
- package/es/components/Layout/index.less +136 -0
- package/es/components/PageLoading/index.d.ts +5 -0
- package/es/components/PageLoading/index.js +15 -0
- package/es/components/PageLoading/index.less +8 -0
- package/es/components/Popup/index.d.ts +39 -0
- package/es/components/Popup/index.js +223 -0
- package/es/components/Popup/index.less +12 -0
- package/es/components/Portal/index.d.ts +17 -0
- package/es/components/Portal/index.js +141 -0
- package/es/components/Section/TabBar.d.ts +12 -0
- package/es/components/Section/TabBar.js +51 -0
- package/es/components/Section/index.d.ts +54 -0
- package/es/components/Section/index.js +96 -0
- package/es/components/Section/index.less +130 -0
- package/es/components/SelectView/index.d.ts +47 -0
- package/es/components/SelectView/index.js +244 -0
- package/es/components/SelectView/index.less +60 -0
- package/es/components/SiderTree/TreeNodeTitle.d.ts +9 -0
- package/es/components/SiderTree/TreeNodeTitle.js +107 -0
- package/es/components/SiderTree/empty.png +0 -0
- package/es/components/SiderTree/index.d.ts +37 -0
- package/es/components/SiderTree/index.js +217 -0
- package/es/components/SiderTree/index.less +222 -0
- package/es/components/SiderTree/typings.d.ts +19 -0
- package/es/components/SymbolIcon/index.d.ts +8 -0
- package/es/components/SymbolIcon/index.js +32 -0
- package/es/components/SymbolIcon/index.less +7 -0
- package/es/components/TabBar/index.d.ts +14 -0
- package/es/components/TabBar/index.js +52 -0
- package/es/components/TabBar/index.less +31 -0
- package/es/components/Table/index.d.ts +3 -0
- package/es/components/Table/index.js +242 -0
- package/es/components/Table/typings.d.ts +25 -0
- package/es/components/Table/utils.d.ts +2 -0
- package/es/components/Table/utils.js +3 -0
- package/es/components/utils.d.ts +3 -0
- package/es/components/utils.js +20 -0
- package/es/constants.d.ts +1 -0
- package/es/constants.js +1 -0
- package/es/{useBatchOperator → hooks/useBatchOperator}/index.d.ts +2 -2
- package/es/{useBatchOperator → hooks/useBatchOperator}/index.js +120 -57
- package/es/{usePageTrack → hooks/usePageTrack}/index.d.ts +0 -0
- package/es/{usePageTrack → hooks/usePageTrack}/index.js +0 -0
- package/es/index.d.ts +33 -6
- package/es/index.js +30 -6
- package/es/index.less +25 -1
- package/es/init.d.ts +3 -0
- package/es/init.js +153 -0
- package/es/layouts/BasicLayout/components/Main.d.ts +10 -0
- package/es/layouts/BasicLayout/components/Main.js +390 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/DropMenu/index.d.ts +11 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/DropMenu/index.js +104 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/DropMenu/index.less +59 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/Menu/index.d.ts +10 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/Menu/index.js +667 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/Menu/index.less +445 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/RefreshButton/index.d.ts +6 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/RefreshButton/index.js +72 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/RefreshButton/index.less +30 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/TabBar/index.d.ts +10 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/TabBar/index.js +116 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/TabBar/index.less +155 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/WaterMark/index.d.ts +6 -0
- package/es/layouts/BasicLayout/components/MainFramework/components/WaterMark/index.js +70 -0
- package/es/layouts/BasicLayout/components/MainFramework/index.d.ts +28 -0
- package/es/layouts/BasicLayout/components/MainFramework/index.js +78 -0
- package/es/layouts/BasicLayout/components/MainFramework/index.less +97 -0
- package/es/layouts/BasicLayout/components/MainFramework/typings.d.ts +10 -0
- package/es/layouts/BasicLayout/index.d.ts +3 -0
- package/es/layouts/BasicLayout/index.js +98 -0
- package/es/layouts/BasicLayout/typings.d.ts +82 -0
- package/es/layouts/BlankLayout/index.d.ts +5 -0
- package/es/layouts/BlankLayout/index.js +5 -0
- package/es/layouts/Breadcrumb/index.d.ts +6 -0
- package/es/layouts/Breadcrumb/index.js +75 -0
- package/es/layouts/MicroLayout/index.d.ts +10 -0
- package/es/layouts/MicroLayout/index.js +105 -0
- package/es/layouts/MicroLayout/typings.d.ts +25 -0
- package/es/layouts/components/CachableRoute.d.ts +2 -0
- package/es/layouts/components/CachableRoute.js +38 -0
- package/es/layouts/components/RouteTab.d.ts +20 -0
- package/es/layouts/components/RouteTab.js +40 -0
- package/es/layouts/components/Switch.d.ts +2 -0
- package/es/layouts/components/Switch.js +63 -0
- package/es/layouts/index.d.ts +4 -0
- package/es/layouts/index.js +4 -0
- package/es/layouts/typings.d.ts +29 -0
- package/es/layouts/utils.d.ts +23 -0
- package/es/layouts/utils.js +175 -0
- package/es/styles/overrides.less +191 -0
- package/es/styles/theme.less +9 -0
- package/es/styles/utils.less +110 -0
- package/package.json +75 -22
- package/es/subject.d.ts +0 -12
- package/es/subject.js +0 -30
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
a[title='站长统计'] {
|
|
2
|
+
display: none;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@blue-base: #2357df;
|
|
6
|
+
|
|
7
|
+
::selection {
|
|
8
|
+
color: inherit;
|
|
9
|
+
background: #d3ddf9;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/** basic */
|
|
13
|
+
|
|
14
|
+
@height-base: 32px;
|
|
15
|
+
@border-color-base: #c0c0c0;
|
|
16
|
+
@border-radius-base: 4px;
|
|
17
|
+
@label-color: #464646;
|
|
18
|
+
|
|
19
|
+
/** table */
|
|
20
|
+
|
|
21
|
+
@table-header-bg: #f0f0f0;
|
|
22
|
+
@table-header-color: rgba(51, 51, 51, 0.65);
|
|
23
|
+
@table-padding-vertical: 14px;
|
|
24
|
+
@table-border-color: #e1e1e1;
|
|
25
|
+
@table-border-radius-base: 4px;
|
|
26
|
+
@table-row-hover-bg: #eee;
|
|
27
|
+
|
|
28
|
+
.@{ant-prefix}-table-thead > tr > th {
|
|
29
|
+
border-bottom: none;
|
|
30
|
+
|
|
31
|
+
&::before {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.@{ant-prefix}-table-body {
|
|
37
|
+
.scrollBar(8px);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.@{ant-prefix}-table-tbody > tr.@{ant-prefix}-table-row-selected > td {
|
|
41
|
+
border-color: @table-border-color;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.@{ant-prefix}-table-cell {
|
|
45
|
+
.@{ant-prefix}-checkbox-checked .@{ant-prefix}-checkbox-inner::after {
|
|
46
|
+
transition: none !important;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.@{ant-prefix}-checkbox-inner {
|
|
50
|
+
transition: none !important;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.@{ant-prefix}-checkbox-checked::after {
|
|
54
|
+
animation: none !important;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.@{ant-prefix}-table-pagination.@{ant-prefix}-pagination {
|
|
59
|
+
margin-bottom: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/** button */
|
|
63
|
+
|
|
64
|
+
@btn-default-border: #c4c4c4;
|
|
65
|
+
|
|
66
|
+
/** modal */
|
|
67
|
+
|
|
68
|
+
.@{ant-prefix}-modal-content {
|
|
69
|
+
border-radius: 8px;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.@{ant-prefix}-modal-header {
|
|
73
|
+
border-radius: 8px 8px 0 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.@{ant-prefix}-modal-confirm {
|
|
77
|
+
.@{ant-prefix}-modal-body {
|
|
78
|
+
padding: 0;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.@{ant-prefix}-modal-confirm-body {
|
|
82
|
+
padding: 40px 48px;
|
|
83
|
+
overflow: hidden;
|
|
84
|
+
|
|
85
|
+
& > img:first-child {
|
|
86
|
+
position: absolute;
|
|
87
|
+
top: 40px;
|
|
88
|
+
left: 48px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.@{ant-prefix}-modal-confirm-btns {
|
|
93
|
+
float: none;
|
|
94
|
+
margin-top: 0;
|
|
95
|
+
padding: 10px 16px;
|
|
96
|
+
text-align: right;
|
|
97
|
+
background: transparent;
|
|
98
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
99
|
+
border-radius: 0 0 2px 2px;
|
|
100
|
+
|
|
101
|
+
& > .@{ant-prefix}-btn {
|
|
102
|
+
min-width: 72px;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.@{ant-prefix}-modal-confirm-title {
|
|
107
|
+
float: none;
|
|
108
|
+
margin-left: 56px;
|
|
109
|
+
font-weight: 600;
|
|
110
|
+
line-height: 24px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.@{ant-prefix}-modal-confirm-content {
|
|
114
|
+
float: none;
|
|
115
|
+
margin: 2px 0 0 56px;
|
|
116
|
+
color: rgba(51, 51, 51, 0.5);
|
|
117
|
+
line-height: 22px;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/** pagination */
|
|
122
|
+
|
|
123
|
+
.@{ant-prefix}-pagination {
|
|
124
|
+
color: #666;
|
|
125
|
+
|
|
126
|
+
.@{ant-prefix}-select {
|
|
127
|
+
color: #666;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.@{ant-prefix}-pagination-item {
|
|
132
|
+
font-size: 12px;
|
|
133
|
+
|
|
134
|
+
a {
|
|
135
|
+
color: #666;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.@{ant-prefix}-pagination-item-active {
|
|
140
|
+
background: @primary-color;
|
|
141
|
+
|
|
142
|
+
a {
|
|
143
|
+
color: #fff;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
&:hover a {
|
|
147
|
+
color: #fff;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.@{ant-prefix}-pagination-options .@{ant-prefix}-select.@{ant-prefix}-select-in-form-item {
|
|
152
|
+
width: auto;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/** select */
|
|
156
|
+
|
|
157
|
+
.@{ant-prefix}-select-arrow {
|
|
158
|
+
color: rgba(51, 51, 51, 0.7);
|
|
159
|
+
font-size: 16px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.@{ant-prefix}-select-sm .@{ant-prefix}-select-arrow {
|
|
163
|
+
font-size: 14px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/** input */
|
|
167
|
+
@input-height-base: 28px;
|
|
168
|
+
@input-padding-horizontal-base: 8px;
|
|
169
|
+
@input-icon-color: rgba(51, 51, 51, 0.7);
|
|
170
|
+
@input-padding-vertical-base: (
|
|
171
|
+
round(((@input-height-base - @font-size-base * @line-height-base) / 2) * 10) / 10
|
|
172
|
+
) - @border-width-base;
|
|
173
|
+
|
|
174
|
+
/** picker */
|
|
175
|
+
.@{ant-prefix}-picker {
|
|
176
|
+
.@{ant-prefix}-picker-clear {
|
|
177
|
+
box-sizing: border-box;
|
|
178
|
+
width: 16px;
|
|
179
|
+
height: 16px;
|
|
180
|
+
padding: 1px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
&-suffix {
|
|
184
|
+
color: rgba(51, 51, 51, 0.7);
|
|
185
|
+
font-size: 16px;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/** button **/
|
|
190
|
+
@btn-height-base: 28px;
|
|
191
|
+
@btn-padding-horizontal-base: 11px;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/* stylelint-disable property-no-unknown */
|
|
2
|
+
|
|
3
|
+
// primary color
|
|
4
|
+
|
|
5
|
+
.primary(@alpha: 1) {
|
|
6
|
+
rgb: rgb(var(--lemon-primary-color));
|
|
7
|
+
rgba: rgba(var(--lemon-primary-color), @alpha);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// popover
|
|
11
|
+
|
|
12
|
+
.popoverInner(@width: 120px) {
|
|
13
|
+
position: relative;
|
|
14
|
+
width: @width;
|
|
15
|
+
padding: 8px 0;
|
|
16
|
+
background-color: #fff;
|
|
17
|
+
border-radius: 8px;
|
|
18
|
+
border-image: linear-gradient(147deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
|
|
19
|
+
box-shadow: 0 12px 48px 16px rgba(0, 0, 0, 0.03), 0 9px 28px 0 rgba(0, 0, 0, 0.05),
|
|
20
|
+
0 6px 16px -8px rgba(0, 0, 0, 0.08);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.popover(@width: 120px) {
|
|
24
|
+
padding-top: 0 !important;
|
|
25
|
+
|
|
26
|
+
.@{ant-prefix}-popover-arrow {
|
|
27
|
+
display: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.@{ant-prefix}-popover-inner {
|
|
31
|
+
.popoverInner(@width);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.@{ant-prefix}-popover-inner-content {
|
|
35
|
+
padding: 0;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.popoverItem() {
|
|
40
|
+
position: relative;
|
|
41
|
+
width: 100%;
|
|
42
|
+
height: 36px;
|
|
43
|
+
padding: 0 @space-h;
|
|
44
|
+
overflow-x: hidden;
|
|
45
|
+
color: #333;
|
|
46
|
+
font-size: 14px;
|
|
47
|
+
line-height: 36px;
|
|
48
|
+
white-space: nowrap;
|
|
49
|
+
text-overflow: ellipsis;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
transition: background-color 0.2s;
|
|
52
|
+
user-select: none;
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
background-color: #eee;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// tabs
|
|
60
|
+
|
|
61
|
+
.fullTabs() {
|
|
62
|
+
height: 100%;
|
|
63
|
+
|
|
64
|
+
& > .@{ant-prefix}-tabs-nav {
|
|
65
|
+
margin-bottom: 12px;
|
|
66
|
+
|
|
67
|
+
.@{ant-prefix}-tabs-tab {
|
|
68
|
+
padding: 8px 12px;
|
|
69
|
+
|
|
70
|
+
&.@{ant-prefix}-tabs-tab-active .@{ant-prefix}-tabs-tab-btn {
|
|
71
|
+
text-shadow: unset;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.@{ant-prefix}-tabs-tab + .@{ant-prefix}-tabs-tab {
|
|
76
|
+
margin-left: 24px;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
& > .@{ant-prefix}-tabs-content-holder {
|
|
81
|
+
flex: 1;
|
|
82
|
+
|
|
83
|
+
& > .@{ant-prefix}-tabs-content {
|
|
84
|
+
height: 100%;
|
|
85
|
+
|
|
86
|
+
& > .@{ant-prefix}-tabs-tabpane {
|
|
87
|
+
height: 100%;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.scrollBar (@width: 6px) {
|
|
94
|
+
scrollbar-width: thin;
|
|
95
|
+
|
|
96
|
+
&::-webkit-scrollbar {
|
|
97
|
+
width: @width;
|
|
98
|
+
height: 8px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&::-webkit-scrollbar-track {
|
|
102
|
+
background-color: #fff;
|
|
103
|
+
border-radius: 10px; // 滑块颜色
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&::-webkit-scrollbar-thumb {
|
|
107
|
+
background-color: #ddd;
|
|
108
|
+
border-radius: 10px; // 滑块颜色
|
|
109
|
+
}
|
|
110
|
+
}
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/kits",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
3
|
+
"version": "1.0.0-0",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"start": "dumi dev",
|
|
6
|
+
"docs:build": "dumi build",
|
|
7
|
+
"docs:deploy": "scp -r kits-docs dev@47.111.99.207:/opt/app/",
|
|
8
|
+
"build": "father build",
|
|
9
|
+
"deploy": "npm run docs:build && npm run docs:deploy",
|
|
10
|
+
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
|
|
11
|
+
"test": "umi-test",
|
|
12
|
+
"test:coverage": "umi-test --coverage",
|
|
13
|
+
"prepublishOnly": "npm run build",
|
|
14
|
+
"prepare": "husky install"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"es"
|
|
@@ -19,18 +19,71 @@
|
|
|
19
19
|
"publishConfig": {
|
|
20
20
|
"registry": "https://registry.npmjs.org"
|
|
21
21
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
"module": "es/index.js",
|
|
23
|
+
"typings": "es/index.d.ts",
|
|
24
|
+
"main": "es/index.js",
|
|
25
|
+
"gitHooks": {
|
|
26
|
+
"pre-commit": "lint-staged"
|
|
27
|
+
},
|
|
28
|
+
"lint-staged": {
|
|
29
|
+
"*.{js,jsx,less,md,json}": [
|
|
30
|
+
"prettier --write"
|
|
31
|
+
],
|
|
32
|
+
"*.ts?(x)": [
|
|
33
|
+
"prettier --parser=typescript --write"
|
|
34
|
+
]
|
|
25
35
|
},
|
|
26
36
|
"dependencies": {
|
|
27
|
-
"@
|
|
37
|
+
"@ag-grid-community/client-side-row-model": "^28.2.1",
|
|
38
|
+
"@ag-grid-community/core": "^28.2.1",
|
|
39
|
+
"@ag-grid-community/csv-export": "^28.2.1",
|
|
40
|
+
"@ag-grid-community/infinite-row-model": "^28.2.1",
|
|
41
|
+
"@ag-grid-community/react": "^28.2.1",
|
|
42
|
+
"@ag-grid-community/styles": "^28.2.1",
|
|
43
|
+
"@ant-design/icons": "^4.7.0",
|
|
28
44
|
"@lemon-fe/hooks": "^0.1.86",
|
|
29
|
-
"@lemon-fe/
|
|
30
|
-
"antd": "
|
|
45
|
+
"@lemon-fe/utils": "^0.1.117",
|
|
46
|
+
"antd": "4.23.6",
|
|
47
|
+
"async-validator": "^4.2.5",
|
|
48
|
+
"classnames": "^2.2.6",
|
|
49
|
+
"color-string": "^1.9.1",
|
|
50
|
+
"lodash": "^4.17.0",
|
|
51
|
+
"moment": "^2.29.4",
|
|
52
|
+
"rc-resize-observer": "^1.0.0",
|
|
53
|
+
"rc-tree": "^5.7.0",
|
|
54
|
+
"react-color": "^2.19.3",
|
|
55
|
+
"react-gcolor-picker": "^1.2.4",
|
|
56
|
+
"react-resizable": "^3.0.4",
|
|
57
|
+
"shallowequal": "^1.1.0"
|
|
31
58
|
},
|
|
32
|
-
"
|
|
33
|
-
"
|
|
59
|
+
"peerDependencies": {
|
|
60
|
+
"react": ">=16.8",
|
|
61
|
+
"react-router": "5.x",
|
|
62
|
+
"react-router-dom": "5.x"
|
|
34
63
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@testing-library/jest-dom": "^5.15.1",
|
|
66
|
+
"@testing-library/react": "^13.0.0",
|
|
67
|
+
"@types/color-string": "^1.5.2",
|
|
68
|
+
"@types/jest": "^27.0.3",
|
|
69
|
+
"@types/lodash": "^4.14.186",
|
|
70
|
+
"@types/react": "^18.0.18",
|
|
71
|
+
"@types/react-color": "^3.0.6",
|
|
72
|
+
"@types/react-dom": "^18.0.6",
|
|
73
|
+
"@types/react-router": "^5.0.0",
|
|
74
|
+
"@types/react-router-dom": "^5.0.0",
|
|
75
|
+
"@types/shallowequal": "^1.1.1",
|
|
76
|
+
"@umijs/fabric": "^2.8.1",
|
|
77
|
+
"@umijs/test": "^3.0.5",
|
|
78
|
+
"dumi": "^1.1.0",
|
|
79
|
+
"father": "^4.0.7",
|
|
80
|
+
"gh-pages": "^3.0.0",
|
|
81
|
+
"husky": "^8.0.1",
|
|
82
|
+
"lint-staged": "^10.0.7",
|
|
83
|
+
"prettier": "^2.2.1",
|
|
84
|
+
"react": "^18.2.0",
|
|
85
|
+
"react-dom": "^18.2.0",
|
|
86
|
+
"react-router": "^5.0.0",
|
|
87
|
+
"react-router-dom": "^5.0.0"
|
|
88
|
+
}
|
|
89
|
+
}
|
package/es/subject.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
interface Observer<State> {
|
|
2
|
-
next: (state: State) => void;
|
|
3
|
-
complete?: () => void;
|
|
4
|
-
}
|
|
5
|
-
export default function Subject<State>(): {
|
|
6
|
-
next: (state: State) => void;
|
|
7
|
-
subscribe: (observer: Observer<State>) => {
|
|
8
|
-
unsubscribe: () => void;
|
|
9
|
-
};
|
|
10
|
-
complete: () => void;
|
|
11
|
-
};
|
|
12
|
-
export {};
|
package/es/subject.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export default function Subject() {
|
|
2
|
-
var observers = [];
|
|
3
|
-
return {
|
|
4
|
-
next: function next(state) {
|
|
5
|
-
observers.forEach(function (item) {
|
|
6
|
-
return item.next(state);
|
|
7
|
-
});
|
|
8
|
-
},
|
|
9
|
-
subscribe: function subscribe(observer) {
|
|
10
|
-
observers.push(observer);
|
|
11
|
-
return {
|
|
12
|
-
unsubscribe: function unsubscribe() {
|
|
13
|
-
var index = observers.findIndex(function (item) {
|
|
14
|
-
return item === observer;
|
|
15
|
-
});
|
|
16
|
-
if (index >= 0) {
|
|
17
|
-
observers.splice(index, 1);
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
};
|
|
21
|
-
},
|
|
22
|
-
complete: function complete() {
|
|
23
|
-
observers.forEach(function (item) {
|
|
24
|
-
if (item.complete) {
|
|
25
|
-
item.complete();
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
}
|