@lemon-fe/components 0.1.154 → 1.1.0-alpha.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/es/{Actions → actions}/index.d.ts +8 -5
- package/es/{Actions → actions}/index.js +56 -39
- package/es/{Actions → actions}/index.less +5 -5
- package/es/alert/index.d.ts +3 -0
- package/es/alert/index.js +18 -0
- package/es/{BaseTable/Actions.js → base-table/actions.js} +13 -10
- package/es/{BaseTable → base-table}/index.d.ts +0 -1
- package/es/{BaseTable → base-table}/index.js +48 -22
- package/es/{BaseTable/ResizeHeaderCell.js → base-table/resize-header-cell.js} +3 -3
- package/es/{BaseTable → base-table}/utils.d.ts +1 -1
- package/es/{BaseTable/VirtualBody.js → base-table/virtual-body.js} +12 -13
- package/es/{ColorPicker → color-picker}/index.js +7 -7
- package/es/{ColorPicker → color-picker}/index.less +1 -1
- package/es/component-configure/index.d.ts +12 -0
- package/es/component-configure/index.js +4 -0
- package/es/data-grid/cell-editors/date.d.ts +19 -0
- package/es/data-grid/cell-editors/date.js +92 -0
- package/es/data-grid/cell-editors/number.d.ts +32 -0
- package/es/data-grid/cell-editors/number.js +120 -0
- package/es/data-grid/cell-editors/row.d.ts +23 -0
- package/es/data-grid/cell-editors/row.js +119 -0
- package/es/data-grid/cell-editors/select.d.ts +33 -0
- package/es/data-grid/cell-editors/select.js +102 -0
- package/es/data-grid/cell-editors/text.d.ts +10 -0
- package/es/data-grid/cell-editors/text.js +81 -0
- package/es/data-grid/cell-editors/utils.d.ts +10 -0
- package/es/data-grid/cell-editors/utils.js +45 -0
- package/es/data-grid/cell-editors/wrapper.d.ts +5 -0
- package/es/data-grid/cell-editors/wrapper.js +8 -0
- package/es/data-grid/components/custom-panel/drag-context.d.ts +4 -0
- package/es/data-grid/components/custom-panel/drag-context.js +3 -0
- package/es/data-grid/components/custom-panel/field-modal.d.ts +10 -0
- package/es/data-grid/components/custom-panel/field-modal.js +223 -0
- package/es/data-grid/components/custom-panel/index.d.ts +5 -0
- package/es/data-grid/components/custom-panel/index.js +321 -0
- package/es/data-grid/components/custom-panel/item.d.ts +14 -0
- package/es/data-grid/components/custom-panel/item.js +181 -0
- package/es/data-grid/components/custom-panel/typings.d.ts +25 -0
- package/es/data-grid/components/search.d.ts +4 -0
- package/es/data-grid/components/search.js +159 -0
- package/es/data-grid/components/selected.d.ts +7 -0
- package/es/data-grid/components/selected.js +24 -0
- package/es/data-grid/context/grid-store.d.ts +4 -0
- package/es/data-grid/context/grid-store.js +4 -0
- package/es/data-grid/hooks.d.ts +20 -0
- package/es/data-grid/hooks.js +71 -0
- package/es/data-grid/index.d.ts +102 -0
- package/es/data-grid/index.js +1684 -0
- package/es/data-grid/index.less +659 -0
- package/es/data-grid/modules/clipboard/clipboard/clipboardService.d.ts +62 -0
- package/es/data-grid/modules/clipboard/clipboard/clipboardService.js +1007 -0
- package/es/data-grid/modules/clipboard/clipboardModule.d.ts +2 -0
- package/es/data-grid/modules/clipboard/clipboardModule.js +10 -0
- package/es/data-grid/modules/clipboard/main.d.ts +1 -0
- package/es/data-grid/modules/clipboard/main.js +1 -0
- package/es/data-grid/modules/clipboard/version.d.ts +1 -0
- package/es/data-grid/modules/clipboard/version.js +2 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/columnModelItem.d.ts +26 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/columnModelItem.js +94 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/columnToolPanel.d.ts +32 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/columnToolPanel.js +272 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/modelItemUtils.d.ts +16 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/modelItemUtils.js +209 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/pivotModePanel.d.ts +9 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/pivotModePanel.js +68 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsHeaderPanel.d.ts +32 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsHeaderPanel.js +150 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsListPanel.d.ts +44 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsListPanel.js +455 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsListPanelItemDragFeature.d.ts +26 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsListPanelItemDragFeature.js +224 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsPanel.d.ts +24 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/primaryColsPanel.js +123 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelColumnComp.d.ts +37 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelColumnComp.js +314 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelColumnGroupComp.d.ts +51 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelColumnGroupComp.js +406 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelContextMenu.d.ts +24 -0
- package/es/data-grid/modules/column-tool-panel/columnToolPanel/toolPanelContextMenu.js +264 -0
- package/es/data-grid/modules/column-tool-panel/columnsToolPanelModule.d.ts +2 -0
- package/es/data-grid/modules/column-tool-panel/columnsToolPanelModule.js +29 -0
- package/es/data-grid/modules/column-tool-panel/main.d.ts +2 -0
- package/es/data-grid/modules/column-tool-panel/main.js +3 -0
- package/es/data-grid/modules/column-tool-panel/version.d.ts +1 -0
- package/es/data-grid/modules/column-tool-panel/version.js +2 -0
- package/es/data-grid/modules/master-detail/main.d.ts +1 -0
- package/es/data-grid/modules/master-detail/main.js +1 -0
- package/es/data-grid/modules/master-detail/masterDetail/detailCellRenderer.d.ts +14 -0
- package/es/data-grid/modules/master-detail/masterDetail/detailCellRenderer.js +144 -0
- package/es/data-grid/modules/master-detail/masterDetail/detailCellRendererCtrl.d.ts +19 -0
- package/es/data-grid/modules/master-detail/masterDetail/detailCellRendererCtrl.js +203 -0
- package/es/data-grid/modules/master-detail/masterDetailModule.d.ts +2 -0
- package/es/data-grid/modules/master-detail/masterDetailModule.js +18 -0
- package/es/data-grid/modules/master-detail/version.d.ts +1 -0
- package/es/data-grid/modules/master-detail/version.js +2 -0
- package/es/data-grid/modules/menu/main.d.ts +1 -0
- package/es/data-grid/modules/menu/main.js +1 -0
- package/es/data-grid/modules/menu/menu/chartMenuItemMapper.d.ts +13 -0
- package/es/data-grid/modules/menu/menu/chartMenuItemMapper.js +351 -0
- package/es/data-grid/modules/menu/menu/contextMenu.d.ts +13 -0
- package/es/data-grid/modules/menu/menu/contextMenu.js +267 -0
- package/es/data-grid/modules/menu/menu/enterpriseMenu.d.ts +66 -0
- package/es/data-grid/modules/menu/menu/enterpriseMenu.js +592 -0
- package/es/data-grid/modules/menu/menu/menuItemMapper.d.ts +13 -0
- package/es/data-grid/modules/menu/menu/menuItemMapper.js +328 -0
- package/es/data-grid/modules/menu/menuModule.d.ts +2 -0
- package/es/data-grid/modules/menu/menuModule.js +12 -0
- package/es/data-grid/modules/menu/version.d.ts +1 -0
- package/es/data-grid/modules/menu/version.js +2 -0
- package/es/data-grid/modules/row-grouping/main.d.ts +4 -0
- package/es/data-grid/modules/row-grouping/main.js +4 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/aggFuncService.d.ts +23 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/aggFuncService.js +250 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/aggregationStage.d.ts +22 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/aggregationStage.js +285 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/batchRemover.d.ts +12 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/batchRemover.js +77 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/baseDropZonePanel.d.ts +75 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/baseDropZonePanel.js +516 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/dropZoneColumnComp.d.ts +40 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/dropZoneColumnComp.js +367 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/gridHeaderDropZones.d.ts +11 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/gridHeaderDropZones.js +85 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/pivotDropZonePanel.d.ts +17 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/pivotDropZonePanel.js +139 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/rowGroupDropZonePanel.d.ts +15 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/rowGroupDropZonePanel.js +105 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/valueDropZonePanel.d.ts +15 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/columnDropZones/valueDropZonePanel.js +105 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/filterAggregatesStage.d.ts +9 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/filterAggregatesStage.js +136 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupFilter/groupFilter.d.ts +39 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupFilter/groupFilter.js +319 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupFilter/groupFloatingFilter.d.ts +23 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupFilter/groupFloatingFilter.js +163 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupStage.d.ts +48 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/groupStage.js +740 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/pivotColDefService.d.ts +24 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/pivotColDefService.js +396 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/pivotStage.d.ts +19 -0
- package/es/data-grid/modules/row-grouping/rowGrouping/pivotStage.js +182 -0
- package/es/data-grid/modules/row-grouping/rowGroupingModule.d.ts +2 -0
- package/es/data-grid/modules/row-grouping/rowGroupingModule.js +28 -0
- package/es/data-grid/modules/row-grouping/version.d.ts +1 -0
- package/es/data-grid/modules/row-grouping/version.js +2 -0
- package/es/data-grid/modules/side-bar/main.d.ts +2 -0
- package/es/data-grid/modules/side-bar/main.js +2 -0
- package/es/data-grid/modules/side-bar/sideBar/common/toolPanelColDefService.d.ts +11 -0
- package/es/data-grid/modules/side-bar/sideBar/common/toolPanelColDefService.js +216 -0
- package/es/data-grid/modules/side-bar/sideBar/horizontalResizeComp.d.ts +19 -0
- package/es/data-grid/modules/side-bar/sideBar/horizontalResizeComp.js +108 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarButtonComp.d.ts +16 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarButtonComp.js +84 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarButtonsComp.d.ts +18 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarButtonsComp.js +89 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarComp.d.ts +28 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarComp.js +325 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarDefParser.d.ts +10 -0
- package/es/data-grid/modules/side-bar/sideBar/sideBarDefParser.js +95 -0
- package/es/data-grid/modules/side-bar/sideBar/toolPanelWrapper.d.ts +17 -0
- package/es/data-grid/modules/side-bar/sideBar/toolPanelWrapper.js +103 -0
- package/es/data-grid/modules/side-bar/sideBarModule.d.ts +2 -0
- package/es/data-grid/modules/side-bar/sideBarModule.js +22 -0
- package/es/data-grid/modules/side-bar/version.d.ts +1 -0
- package/es/data-grid/modules/side-bar/version.js +2 -0
- package/es/data-grid/renderer/actions-renderer.d.ts +3 -0
- package/es/data-grid/renderer/actions-renderer.js +50 -0
- package/es/data-grid/renderer/actions.d.ts +11 -0
- package/es/data-grid/renderer/actions.js +72 -0
- package/es/data-grid/renderer/cell-delete-renderer.d.ts +5 -0
- package/es/data-grid/renderer/cell-delete-renderer.js +49 -0
- package/es/data-grid/renderer/cell-index-renderer.d.ts +4 -0
- package/es/data-grid/renderer/cell-index-renderer.js +43 -0
- package/es/data-grid/renderer/cell-renderer.d.ts +4 -0
- package/es/data-grid/renderer/cell-renderer.js +58 -0
- package/es/data-grid/renderer/detali-cell-renderer.d.ts +9 -0
- package/es/data-grid/renderer/detali-cell-renderer.js +59 -0
- package/es/data-grid/renderer/header-renderer.d.ts +6 -0
- package/es/data-grid/renderer/header-renderer.js +98 -0
- package/es/data-grid/typings.d.ts +226 -0
- package/es/data-grid/typings.js +1 -0
- package/es/data-grid/utils.d.ts +51 -0
- package/es/data-grid/utils.js +293 -0
- package/es/dropdown/index.d.ts +14 -0
- package/es/dropdown/index.js +42 -0
- package/es/dropdown/index.less +5 -0
- package/es/{DurationPicker → duration-picker}/index.d.ts +12 -9
- package/es/duration-picker/index.js +204 -0
- package/es/duration-picker/index.less +12 -0
- package/es/{EditableTable/EditableCell.d.ts → editable-table/editable-cell.d.ts} +1 -1
- package/es/editable-table/editable-cell.js +41 -0
- package/es/{EditableTable/EditableTableFormItem.d.ts → editable-table/editable-table-form-item.d.ts} +1 -1
- package/es/{EditableTable/EditableTableFormItem.js → editable-table/editable-table-form-item.js} +3 -5
- package/es/{EditableTable → editable-table}/index.d.ts +3 -3
- package/es/editable-table/index.js +8 -0
- package/es/{EditableTable/Table.d.ts → editable-table/table.d.ts} +1 -1
- package/es/{EditableTable/Table.js → editable-table/table.js} +27 -22
- package/es/{EditableTable → editable-table}/typings.d.ts +2 -2
- package/es/editable-table/util.js +311 -0
- package/es/empty-image/index.d.ts +2 -0
- package/es/empty-image/index.js +78 -0
- package/es/{Filter → filter}/index.d.ts +3 -3
- package/es/filter/index.js +615 -0
- package/es/{Filter → filter}/index.less +5 -5
- package/es/filter/typings.d.ts +70 -0
- package/es/{FormLayout → form-layout}/index.d.ts +5 -0
- package/es/form-layout/index.js +48 -0
- package/es/{FormLayout → form-layout}/index.less +21 -8
- package/es/grey-panel/index.d.ts +6 -0
- package/es/grey-panel/index.js +15 -0
- package/es/grey-panel/index.less +11 -0
- package/es/icons/add.d.ts +6 -0
- package/es/icons/add.js +39 -0
- package/es/{Icons/BigTip → icons/big-tip}/index.d.ts +1 -1
- package/es/{Icons/BigTip → icons/big-tip}/index.js +6 -8
- package/es/{Icons/Down.d.ts → icons/calendar.d.ts} +1 -1
- package/es/icons/calendar.js +35 -0
- package/es/icons/clear.d.ts +3 -0
- package/es/icons/clear.js +18 -0
- package/es/icons/clock.d.ts +5 -0
- package/es/icons/clock.js +27 -0
- package/es/icons/close-light.d.ts +5 -0
- package/es/icons/close-light.js +31 -0
- package/es/{Icons/Close.d.ts → icons/close.d.ts} +1 -1
- package/es/icons/close.js +22 -0
- package/es/{Icons/CollapseUp.d.ts → icons/collapse-up.d.ts} +1 -1
- package/es/icons/collapse-up.js +24 -0
- package/es/{Icons/Search.d.ts → icons/dark-search.d.ts} +1 -1
- package/es/{Icons/DarkSearch.js → icons/dark-search.js} +3 -5
- package/es/icons/delete.d.ts +3 -0
- package/es/icons/delete.js +37 -0
- package/es/icons/down.d.ts +3 -0
- package/es/icons/down.js +18 -0
- package/es/icons/drag/drag.svg +7 -0
- package/es/icons/drag/index.d.ts +3 -0
- package/es/icons/drag/index.js +31 -0
- package/es/{Icons/Empty.d.ts → icons/empty.d.ts} +1 -0
- package/es/icons/index.d.ts +45 -0
- package/es/icons/index.js +45 -0
- package/es/{Icons/LookUp.d.ts → icons/look-up.d.ts} +1 -1
- package/es/{Icons/LookUp.js → icons/look-up.js} +3 -5
- package/es/icons/more.d.ts +3 -0
- package/es/icons/more.js +37 -0
- package/es/icons/new-tag.d.ts +3 -0
- package/es/icons/new-tag.js +19 -0
- package/es/icons/plus/index.d.ts +3 -0
- package/es/icons/plus/index.js +27 -0
- package/es/icons/plus/plus.svg +6 -0
- package/es/icons/question.d.ts +3 -0
- package/es/icons/question.js +18 -0
- package/es/icons/reload.d.ts +3 -0
- package/es/icons/reload.js +18 -0
- package/es/icons/search.d.ts +3 -0
- package/es/icons/search.js +18 -0
- package/es/icons/tip.d.ts +5 -0
- package/es/{Icons/Tip.js → icons/tip.js} +64 -75
- package/es/index.d.ts +43 -32
- package/es/index.js +36 -28
- package/es/input-compact/index.d.ts +11 -0
- package/es/input-compact/index.js +63 -0
- package/es/input-compact/index.less +33 -0
- package/es/input-number/index.d.ts +8 -0
- package/es/input-number/index.js +35 -0
- package/es/input-number/index.less +58 -0
- package/es/{Layout → layout}/index.d.ts +26 -8
- package/es/layout/index.js +253 -0
- package/es/{Layout → layout}/index.less +43 -25
- package/es/{PageLoading → page-loading}/index.d.ts +2 -1
- package/es/{PageLoading → page-loading}/index.js +5 -3
- package/es/popup/index.d.ts +80 -0
- package/es/popup/index.js +260 -0
- package/es/popup/index.less +34 -0
- package/es/portal/index.d.ts +18 -0
- package/es/{Portal → portal}/index.js +48 -14
- package/es/{Section → section}/index.d.ts +10 -2
- package/es/section/index.js +99 -0
- package/es/{Section → section}/index.less +22 -6
- package/es/{Section/TabBar.d.ts → section/tab-bar.d.ts} +2 -1
- package/es/{Section/TabBar.js → section/tab-bar.js} +6 -3
- package/es/select-panel/index.d.ts +17 -0
- package/es/select-panel/index.js +63 -0
- package/es/select-panel/index.less +112 -0
- package/es/select-view/index.d.ts +63 -0
- package/es/select-view/index.js +269 -0
- package/es/select-view/index.less +57 -0
- package/es/{SiderTree → sider-tree}/index.d.ts +6 -12
- package/es/{SiderTree → sider-tree}/index.js +58 -82
- package/es/sider-tree/index.less +151 -0
- package/es/{SiderTree/TreeNodeTitle.js → sider-tree/tree-node-title.js} +13 -10
- package/es/{SiderTree → sider-tree}/typings.d.ts +2 -2
- package/es/state/index.d.ts +8 -0
- package/es/state/index.js +20 -0
- package/es/state/index.less +131 -0
- package/es/styles/empty.png +0 -0
- package/es/styles/index.less +28 -0
- package/es/styles/overrides.less +347 -0
- package/es/styles/theme.less +29 -0
- package/es/{utils.less → styles/utils.less} +18 -18
- package/es/symbol-icon/index.js +30 -0
- package/es/{TabBar → tab-bar}/index.d.ts +2 -3
- package/es/tab-bar/index.js +31 -0
- package/es/tab-bar/index.less +5 -0
- package/es/table/index.js +201 -0
- package/es/{Table → table}/typings.d.ts +2 -3
- package/es/{Table → table}/utils.d.ts +1 -1
- package/es/tip-mark/index.d.ts +8 -0
- package/es/tip-mark/index.js +44 -0
- package/es/utils.d.ts +2 -1
- package/es/utils.js +10 -2
- package/package.json +50 -21
- package/README.md +0 -11
- package/es/Dropdown/index.d.ts +0 -15
- package/es/Dropdown/index.js +0 -45
- package/es/Dropdown/index.less +0 -13
- package/es/DurationPicker/index.js +0 -174
- package/es/DurationPicker/index.less +0 -61
- package/es/EditableTable/EditableCell.js +0 -41
- package/es/EditableTable/index.js +0 -8
- package/es/EditableTable/util.js +0 -311
- package/es/Filter/index.js +0 -555
- package/es/Filter/typings.d.ts +0 -37
- package/es/FormHorizontal/index.d.ts +0 -6
- package/es/FormHorizontal/index.js +0 -30
- package/es/FormHorizontal/index.less +0 -14
- package/es/FormInline/index.d.ts +0 -15
- package/es/FormInline/index.js +0 -74
- package/es/FormInline/index.less +0 -26
- package/es/FormLayout/index.js +0 -36
- package/es/FormTable/index.d.ts +0 -6
- package/es/FormTable/index.js +0 -125
- package/es/FormTable/index.less +0 -11
- package/es/FormTable/typings.d.ts +0 -38
- package/es/Icons/Calendar.d.ts +0 -5
- package/es/Icons/Calendar.js +0 -42
- package/es/Icons/Close.js +0 -24
- package/es/Icons/CollapseUp.js +0 -26
- package/es/Icons/DarkSearch.d.ts +0 -5
- package/es/Icons/Down.js +0 -30
- package/es/Icons/More.d.ts +0 -5
- package/es/Icons/More.js +0 -39
- package/es/Icons/Search.js +0 -30
- package/es/Icons/Tip.d.ts +0 -6
- package/es/Icons/index.d.ts +0 -24
- package/es/Icons/index.js +0 -25
- package/es/InputMaxLength/index.d.ts +0 -14
- package/es/InputMaxLength/index.js +0 -72
- package/es/InputMaxLength/index.less +0 -8
- package/es/Layout/index.js +0 -184
- package/es/MainFramework/components/DropMenu/index.d.ts +0 -11
- package/es/MainFramework/components/DropMenu/index.js +0 -93
- package/es/MainFramework/components/DropMenu/index.less +0 -59
- package/es/MainFramework/components/Menu/index.d.ts +0 -10
- package/es/MainFramework/components/Menu/index.js +0 -603
- package/es/MainFramework/components/Menu/index.less +0 -445
- package/es/MainFramework/components/RefreshButton/index.d.ts +0 -6
- package/es/MainFramework/components/RefreshButton/index.js +0 -63
- package/es/MainFramework/components/RefreshButton/index.less +0 -30
- package/es/MainFramework/components/TabBar/index.d.ts +0 -10
- package/es/MainFramework/components/TabBar/index.js +0 -101
- package/es/MainFramework/components/TabBar/index.less +0 -155
- package/es/MainFramework/components/WaterMark/index.d.ts +0 -6
- package/es/MainFramework/components/WaterMark/index.js +0 -65
- package/es/MainFramework/index.d.ts +0 -28
- package/es/MainFramework/index.js +0 -78
- package/es/MainFramework/index.less +0 -97
- package/es/MainFramework/typings.d.ts +0 -10
- package/es/Popup/index.d.ts +0 -39
- package/es/Popup/index.js +0 -180
- package/es/Popup/index.less +0 -12
- package/es/Portal/index.d.ts +0 -17
- package/es/Section/index.js +0 -90
- package/es/SelectView/index.d.ts +0 -56
- package/es/SelectView/index.js +0 -227
- package/es/SelectView/index.less +0 -60
- package/es/SiderTree/index.less +0 -222
- package/es/SymbolIcon/index.js +0 -27
- package/es/TabBar/index.js +0 -42
- package/es/TabBar/index.less +0 -31
- package/es/Table/index.js +0 -205
- package/es/TipMark/index.d.ts +0 -10
- package/es/TipMark/index.js +0 -35
- package/es/TipMark/index.less +0 -6
- package/es/index.less +0 -26
- package/es/init.d.ts +0 -3
- package/es/init.js +0 -134
- package/es/overrides.less +0 -183
- package/es/theme.less +0 -9
- /package/es/{BaseTable/Actions.d.ts → base-table/actions.d.ts} +0 -0
- /package/es/{BaseTable/BaseTableContext.d.ts → base-table/base-table-context.d.ts} +0 -0
- /package/es/{BaseTable/BaseTableContext.js → base-table/base-table-context.js} +0 -0
- /package/es/{BaseTable → base-table}/empty.png +0 -0
- /package/es/{BaseTable → base-table}/index.less +0 -0
- /package/es/{BaseTable/ResizeHeaderCell.d.ts → base-table/resize-header-cell.d.ts} +0 -0
- /package/es/{BaseTable → base-table}/typings.d.ts +0 -0
- /package/es/{BaseTable → base-table}/utils.js +0 -0
- /package/es/{BaseTable/VirtualBody.d.ts → base-table/virtual-body.d.ts} +0 -0
- /package/es/{ColorPicker → color-picker}/index.d.ts +0 -0
- /package/es/{EditableTable → editable-table}/index.less +0 -0
- /package/es/{EditableTable → editable-table}/util.d.ts +0 -0
- /package/es/{Icons/BigTip → icons/big-tip}/error.png +0 -0
- /package/es/{Icons/BigTip → icons/big-tip}/info.png +0 -0
- /package/es/{Icons/BigTip → icons/big-tip}/success.png +0 -0
- /package/es/{Icons/BigTip → icons/big-tip}/warning.png +0 -0
- /package/es/{Icons/Empty.js → icons/empty.js} +0 -0
- /package/es/{PageLoading → page-loading}/index.less +0 -0
- /package/es/{SiderTree → sider-tree}/empty.png +0 -0
- /package/es/{SiderTree/TreeNodeTitle.d.ts → sider-tree/tree-node-title.d.ts} +0 -0
- /package/es/{SymbolIcon → symbol-icon}/index.d.ts +0 -0
- /package/es/{SymbolIcon → symbol-icon}/index.less +0 -0
- /package/es/{Table → table}/index.d.ts +0 -0
- /package/es/{Table → table}/utils.js +0 -0
|
@@ -0,0 +1,659 @@
|
|
|
1
|
+
@import '~@ag-grid-community/styles/ag-grid.css';
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-weight: normal;
|
|
5
|
+
font-family: 'agGridAlpine';
|
|
6
|
+
font-style: normal;
|
|
7
|
+
src: url(data:font/woff2;charset=utf-8;base64,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);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.@{prefixCls}-grid {
|
|
11
|
+
position: relative;
|
|
12
|
+
display: flex;
|
|
13
|
+
flex: 1;
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
height: 100%;
|
|
16
|
+
min-height: 0;
|
|
17
|
+
|
|
18
|
+
&-empty-overlay {
|
|
19
|
+
color: fade(#333333, 50);
|
|
20
|
+
font-size: 14px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&-cell-flex {
|
|
24
|
+
.ag-cell {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ag-ltr .ag-right-aligned-cell {
|
|
30
|
+
justify-content: flex-end;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.ag-rtl .ag-right-aligned-cell {
|
|
34
|
+
flex-direction: row-reverse;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&-column-sorter {
|
|
39
|
+
display: inline-flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
margin: 0 2px;
|
|
42
|
+
color: fade(#333, 50);
|
|
43
|
+
|
|
44
|
+
&-down {
|
|
45
|
+
margin-top: 2px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&-up.active,
|
|
49
|
+
&-down.active {
|
|
50
|
+
color: ~'var(--@{ant-prefix}-primary-color)';
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&-column-panel {
|
|
55
|
+
display: flex;
|
|
56
|
+
flex-direction: column;
|
|
57
|
+
box-sizing: border-box;
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
border-top: 1px solid transparent;
|
|
61
|
+
border-bottom: 1px solid var(--ag-border-color);
|
|
62
|
+
|
|
63
|
+
&-header {
|
|
64
|
+
box-sizing: content-box;
|
|
65
|
+
height: 32px;
|
|
66
|
+
padding: 0 8px;
|
|
67
|
+
border-bottom: 1px solid var(--ag-border-color);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&-tools {
|
|
71
|
+
display: flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
justify-content: space-between;
|
|
74
|
+
height: 100%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
&-icon {
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
width: 20px;
|
|
82
|
+
height: 20px;
|
|
83
|
+
color: fade(#333333, 60);
|
|
84
|
+
cursor: pointer;
|
|
85
|
+
|
|
86
|
+
&:hover {
|
|
87
|
+
color: ~'var(--@{ant-prefix}-primary-color)';
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
&-icon + &-icon {
|
|
92
|
+
margin-left: 4px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&-search {
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
height: 100%;
|
|
99
|
+
|
|
100
|
+
input {
|
|
101
|
+
display: block;
|
|
102
|
+
flex: 1;
|
|
103
|
+
min-width: 0;
|
|
104
|
+
height: 100%;
|
|
105
|
+
padding: 0;
|
|
106
|
+
background-color: transparent;
|
|
107
|
+
border: none;
|
|
108
|
+
outline: none;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.anticon {
|
|
112
|
+
color: rgba(0, 0, 0, 0.25);
|
|
113
|
+
transition: color 0.2s;
|
|
114
|
+
|
|
115
|
+
&:hover {
|
|
116
|
+
color: rgba(0, 0, 0, 0.45);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&-body {
|
|
122
|
+
flex: 1;
|
|
123
|
+
min-height: 0;
|
|
124
|
+
padding: 4px 0;
|
|
125
|
+
overflow-x: hidden;
|
|
126
|
+
overflow-y: auto;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&-item {
|
|
130
|
+
display: flex;
|
|
131
|
+
align-items: center;
|
|
132
|
+
height: 24px;
|
|
133
|
+
margin-top: 1px;
|
|
134
|
+
padding: 0 8px;
|
|
135
|
+
|
|
136
|
+
&:hover {
|
|
137
|
+
background: #f2f3f5;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&-title {
|
|
141
|
+
flex: 1;
|
|
142
|
+
margin-left: 8px;
|
|
143
|
+
overflow: hidden;
|
|
144
|
+
white-space: nowrap;
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&-drag {
|
|
149
|
+
margin-left: 8px;
|
|
150
|
+
color: #b4b4b6;
|
|
151
|
+
font-size: 16px;
|
|
152
|
+
cursor: grab;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
&-active-top {
|
|
156
|
+
box-shadow: 0 -1px 0 ~'var(--@{ant-prefix}-primary-color)';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
&-active-bottom {
|
|
160
|
+
box-shadow: 0 1px 0 ~'var(--@{ant-prefix}-primary-color)';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&-operator {
|
|
164
|
+
width: 16px;
|
|
165
|
+
height: 16px;
|
|
166
|
+
border-radius: 2px;
|
|
167
|
+
cursor: pointer;
|
|
168
|
+
opacity: 0;
|
|
169
|
+
|
|
170
|
+
&:hover {
|
|
171
|
+
background: #dcdfe5;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
&:hover &-operator {
|
|
176
|
+
opacity: 1;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
&-drag-overlay {
|
|
181
|
+
display: inline-flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
padding: 0 8px;
|
|
184
|
+
line-height: 28px;
|
|
185
|
+
white-space: nowrap;
|
|
186
|
+
background: var(--ag-header-background-color);
|
|
187
|
+
cursor: move;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
&-footer {
|
|
191
|
+
display: flex;
|
|
192
|
+
align-items: center;
|
|
193
|
+
justify-content: center;
|
|
194
|
+
box-sizing: content-box;
|
|
195
|
+
height: 32px;
|
|
196
|
+
border-top: 1px solid var(--ag-border-color);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
&-modal {
|
|
200
|
+
&-content {
|
|
201
|
+
display: flex;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
&-left {
|
|
205
|
+
width: 360px;
|
|
206
|
+
padding-right: @padding-md;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
&-left &-title {
|
|
210
|
+
margin-bottom: @padding-md;
|
|
211
|
+
font-weight: 500;
|
|
212
|
+
font-size: 16px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&-gutter {
|
|
216
|
+
width: 1px;
|
|
217
|
+
margin-top: -12px;
|
|
218
|
+
margin-bottom: 0px;
|
|
219
|
+
background: #eaeaea;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
&-right {
|
|
223
|
+
display: flex;
|
|
224
|
+
flex: 1;
|
|
225
|
+
flex-direction: column;
|
|
226
|
+
min-width: 0;
|
|
227
|
+
padding-left: @padding-md;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
&-right &-title {
|
|
231
|
+
margin-bottom: @padding-sm;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
&-fields {
|
|
235
|
+
min-height: 0px;
|
|
236
|
+
max-height: 300px;
|
|
237
|
+
overflow-x: hidden;
|
|
238
|
+
overflow-y: auto;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
&-field {
|
|
242
|
+
position: relative;
|
|
243
|
+
box-sizing: border-box;
|
|
244
|
+
height: 32px;
|
|
245
|
+
margin-bottom: 8px;
|
|
246
|
+
padding: 0 12px;
|
|
247
|
+
overflow: hidden;
|
|
248
|
+
color: fade(#333, 80);
|
|
249
|
+
line-height: 32px;
|
|
250
|
+
white-space: nowrap;
|
|
251
|
+
text-overflow: ellipsis;
|
|
252
|
+
background-color: #f2f3f5;
|
|
253
|
+
|
|
254
|
+
&-add {
|
|
255
|
+
position: absolute;
|
|
256
|
+
top: 10px;
|
|
257
|
+
right: 8px;
|
|
258
|
+
display: flex;
|
|
259
|
+
align-items: center;
|
|
260
|
+
justify-content: center;
|
|
261
|
+
width: 12px;
|
|
262
|
+
height: 12px;
|
|
263
|
+
color: #fff;
|
|
264
|
+
font-size: 8px;
|
|
265
|
+
background: #bfc4ce;
|
|
266
|
+
border-radius: 50%;
|
|
267
|
+
cursor: pointer;
|
|
268
|
+
opacity: 0;
|
|
269
|
+
|
|
270
|
+
&:hover {
|
|
271
|
+
background: ~'var(--@{ant-prefix}-primary-color)';
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
&:hover &-add {
|
|
276
|
+
opacity: 1;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&-center-aligned-header .ag-header-cell-label {
|
|
283
|
+
justify-content: center;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
&-center-aligned-cell {
|
|
287
|
+
justify-content: center;
|
|
288
|
+
text-align: center;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
&-cell-selection .ag-checkbox-input-wrapper {
|
|
292
|
+
position: absolute;
|
|
293
|
+
top: 0;
|
|
294
|
+
right: 0;
|
|
295
|
+
bottom: 0;
|
|
296
|
+
left: 0;
|
|
297
|
+
width: auto;
|
|
298
|
+
height: auto;
|
|
299
|
+
background-color: transparent;
|
|
300
|
+
|
|
301
|
+
&::after {
|
|
302
|
+
top: 50%;
|
|
303
|
+
left: 50%;
|
|
304
|
+
background-color: #fff;
|
|
305
|
+
transform: translate(-50%, -50%);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
&-editable-cell {
|
|
310
|
+
padding-right: 0;
|
|
311
|
+
padding-left: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
&-bottom {
|
|
315
|
+
display: flex;
|
|
316
|
+
align-items: center;
|
|
317
|
+
justify-content: space-between;
|
|
318
|
+
margin-top: @space-v;
|
|
319
|
+
background-color: var(--ag-background-color);
|
|
320
|
+
|
|
321
|
+
& > .@{ant-prefix}-pagination {
|
|
322
|
+
margin-left: auto;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
&-selected {
|
|
327
|
+
color: #333;
|
|
328
|
+
|
|
329
|
+
a {
|
|
330
|
+
margin-left: @space-h;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
&-group-rows {
|
|
335
|
+
.ag-row-level-1 {
|
|
336
|
+
background-color: fade(#f2f3f5, 40);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.ag-row-level-2 {
|
|
340
|
+
background-color: fade(#f2f3f5, 60);
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.ag-row-level-3 {
|
|
344
|
+
background-color: fade(#f2f3f5, 80);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.ag-row-level-4 {
|
|
348
|
+
background-color: fade(#f2f3f5, 90);
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
&-operator {
|
|
353
|
+
&-cell {
|
|
354
|
+
display: flex;
|
|
355
|
+
align-items: center;
|
|
356
|
+
padding-right: 0;
|
|
357
|
+
padding-left: 0;
|
|
358
|
+
outline: none;
|
|
359
|
+
|
|
360
|
+
&::after {
|
|
361
|
+
display: none !important;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
&-item {
|
|
366
|
+
padding: 0 8px;
|
|
367
|
+
color: @primary-color;
|
|
368
|
+
line-height: 28px;
|
|
369
|
+
background-color: transparent;
|
|
370
|
+
border: none;
|
|
371
|
+
cursor: pointer;
|
|
372
|
+
|
|
373
|
+
&:active {
|
|
374
|
+
color: .primary(0.8) [];
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
&-disabled {
|
|
378
|
+
color: rgba(51, 51, 51, 0.5) !important;
|
|
379
|
+
cursor: not-allowed;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
&-popover {
|
|
384
|
+
.popover();
|
|
385
|
+
|
|
386
|
+
&-item {
|
|
387
|
+
text-align: left;
|
|
388
|
+
border: none;
|
|
389
|
+
outline: none;
|
|
390
|
+
.popoverItem();
|
|
391
|
+
|
|
392
|
+
&-disabled {
|
|
393
|
+
color: rgba(51, 51, 51, 0.5);
|
|
394
|
+
cursor: not-allowed;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
&-editor {
|
|
401
|
+
position: relative;
|
|
402
|
+
width: 100%;
|
|
403
|
+
height: calc(var(--ag-row-height) - 7px);
|
|
404
|
+
padding: 0 7px;
|
|
405
|
+
overflow: hidden;
|
|
406
|
+
line-height: calc(var(--ag-row-height) - 7px);
|
|
407
|
+
background-color: transparent;
|
|
408
|
+
border-radius: 4px;
|
|
409
|
+
|
|
410
|
+
&-cell {
|
|
411
|
+
padding: 2px 0;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.ag-row-focus &,
|
|
415
|
+
.ag-row-hover & {
|
|
416
|
+
background-color: #fff;
|
|
417
|
+
box-shadow: 0 0 0 2px var(--ag-border-color) inset;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.ag-cell-inline-editing & {
|
|
421
|
+
padding: 0;
|
|
422
|
+
box-shadow: 0 0 0 2px ~'var(--@{ant-prefix}-primary-5)' inset;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
&-text {
|
|
426
|
+
display: block;
|
|
427
|
+
width: 100%;
|
|
428
|
+
height: 100%;
|
|
429
|
+
padding: 0 4px;
|
|
430
|
+
background-color: transparent;
|
|
431
|
+
border: none;
|
|
432
|
+
outline: none;
|
|
433
|
+
|
|
434
|
+
&:disabled {
|
|
435
|
+
color: rgba(0, 0, 0, 0.25);
|
|
436
|
+
cursor: not-allowed;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
&::-webkit-outer-spin-button,
|
|
440
|
+
&::-webkit-inner-spin-button {
|
|
441
|
+
margin: 0;
|
|
442
|
+
-webkit-appearance: none;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
& {
|
|
446
|
+
-moz-appearance: textfield; /* Firefox */
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
&-date {
|
|
451
|
+
height: 100%;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
&-select.ant-select {
|
|
455
|
+
width: 100%;
|
|
456
|
+
|
|
457
|
+
.ant-select-selector {
|
|
458
|
+
align-items: center;
|
|
459
|
+
height: 100%;
|
|
460
|
+
border: none;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/** 为了能在editor中方便使用select **/
|
|
465
|
+
& > .@{ant-prefix}-select-borderless .@{ant-prefix}-select-selector {
|
|
466
|
+
height: calc(var(--ag-row-height) - 7px);
|
|
467
|
+
border: none;
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.ag-cell:not(.ag-cell-wrap-text) &-editor {
|
|
472
|
+
white-space: nowrap;
|
|
473
|
+
text-overflow: ellipsis;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
&-cell-error {
|
|
477
|
+
position: absolute;
|
|
478
|
+
top: -6px;
|
|
479
|
+
left: -6px;
|
|
480
|
+
z-index: 10;
|
|
481
|
+
border: 6px solid transparent;
|
|
482
|
+
border-top-color: ~'var(--@{ant-prefix}-error-color-active)';
|
|
483
|
+
transform: rotate(135deg);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
&-cell-detail {
|
|
487
|
+
height: 100%;
|
|
488
|
+
padding: 10px;
|
|
489
|
+
|
|
490
|
+
&-auto-height {
|
|
491
|
+
height: auto;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
&-spin {
|
|
496
|
+
position: absolute;
|
|
497
|
+
top: 0;
|
|
498
|
+
right: 0;
|
|
499
|
+
bottom: 0;
|
|
500
|
+
left: 0;
|
|
501
|
+
display: flex;
|
|
502
|
+
align-items: center;
|
|
503
|
+
justify-content: center;
|
|
504
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.ag-theme-@{prefixCls} {
|
|
509
|
+
--ag-grid-size: 5px;
|
|
510
|
+
--ag-row-height: 33px;
|
|
511
|
+
--ag-font-size: 14px;
|
|
512
|
+
--ag-icon-size: 16px;
|
|
513
|
+
--ag-background-color: #fff;
|
|
514
|
+
--ag-foreground-color: #333;
|
|
515
|
+
--ag-border-color: #eaeaea;
|
|
516
|
+
--ag-row-hover-color: #eee;
|
|
517
|
+
--ag-header-background-color: #f2f3f5;
|
|
518
|
+
--ag-header-cell-moving-background-color: rgba(0, 0, 0, 0.06);
|
|
519
|
+
--ag-header-foreground-color: fade(#333, 80);
|
|
520
|
+
--ag-chip-background-color: #eee;
|
|
521
|
+
--ag-control-panel-background-color: #fafbfd;
|
|
522
|
+
--ag-header-column-resize-handle-display: block;
|
|
523
|
+
--ag-header-column-resize-handle-width: 1px;
|
|
524
|
+
--ag-header-column-resize-handle-height: 12px;
|
|
525
|
+
--ag-header-column-resize-handle-color: #d9d9d9;
|
|
526
|
+
--ag-cell-horizontal-padding: 8px;
|
|
527
|
+
--ag-icon-font-family: 'agGridAlpine';
|
|
528
|
+
--ag-selected-row-background-color: ~'var(--@{ant-prefix}-primary-1)';
|
|
529
|
+
--ag-selected-tab-underline-width: 2px;
|
|
530
|
+
--ag-range-selection-border-color: ~'var(--@{ant-prefix}-primary-5)';
|
|
531
|
+
--ag-range-selection-highlight-color: ~'var(--@{ant-prefix}-primary-1)';
|
|
532
|
+
--ag-checkbox-unchecked-color: #ccc;
|
|
533
|
+
--ag-checkbox-background-color: var(--ag-background-color);
|
|
534
|
+
--ag-checkbox-checked-color: ~'var(--@{ant-prefix}-primary-color)';
|
|
535
|
+
--ag-input-border-color: transparent;
|
|
536
|
+
--ag-input-focus-border-color: transparent;
|
|
537
|
+
--ag-side-bar-panel-width: 250px;
|
|
538
|
+
|
|
539
|
+
.ag-header {
|
|
540
|
+
border-bottom: none;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.ag-root-wrapper {
|
|
544
|
+
border: none;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
&.ag-dnd-ghost {
|
|
548
|
+
background: #eee;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.ag-cell,
|
|
552
|
+
.ag-full-width-row .ag-cell-wrapper.ag-row-group,
|
|
553
|
+
.ag-cell-wrapper > *:not(.ag-cell-value):not(.ag-group-value) {
|
|
554
|
+
--ag-internal-calculated-line-height: var(
|
|
555
|
+
--ag-line-height,
|
|
556
|
+
calc(var(--ag-row-height) - var(--ag-row-border-width) - 2px)
|
|
557
|
+
);
|
|
558
|
+
--ag-internal-padded-row-height: calc(var(--ag-row-height) - var(--ag-row-border-width) - 2px);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.ag-cell-inline-editing {
|
|
562
|
+
background-color: transparent;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.ag-ltr
|
|
566
|
+
.ag-context-menu-open
|
|
567
|
+
.ag-cell-focus:not(.ag-cell-range-selected):not(.ag-cell-inline-editing),
|
|
568
|
+
.ag-ltr .ag-cell-focus:not(.ag-cell-range-selected):not(.ag-cell-inline-editing):focus-within,
|
|
569
|
+
.ag-rll .ag-cell-focus:not(.ag-cell-range-selected):not(.ag-cell-inline-editing):focus-within {
|
|
570
|
+
border-color: transparent;
|
|
571
|
+
|
|
572
|
+
&::after {
|
|
573
|
+
position: absolute;
|
|
574
|
+
top: 0;
|
|
575
|
+
right: 0;
|
|
576
|
+
bottom: 0;
|
|
577
|
+
left: 0;
|
|
578
|
+
display: block;
|
|
579
|
+
border: 2px solid ~'var(--@{ant-prefix}-primary-5)';
|
|
580
|
+
border-radius: 4px;
|
|
581
|
+
content: '';
|
|
582
|
+
pointer-events: none;
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.ag-menu {
|
|
587
|
+
border: none;
|
|
588
|
+
border-radius: 6px;
|
|
589
|
+
box-shadow: 0 12px 48px 16px rgba(0, 0, 0, 0.03), 0 9px 28px 0 rgba(0, 0, 0, 0.05),
|
|
590
|
+
0 6px 16px -8px rgba(0, 0, 0, 0.08);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.ag-cell-label-container {
|
|
594
|
+
font-weight: 500;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.ag-header-cell-menu-button {
|
|
598
|
+
cursor: pointer;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.ag-tab {
|
|
602
|
+
flex: 1;
|
|
603
|
+
padding: 8px;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.ag-tab-selected {
|
|
607
|
+
color: ~'var(--@{ant-prefix}-primary-color)';
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.ag-tabs-header {
|
|
611
|
+
border-bottom: var(--ag-borders) var(--ag-border-color);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.ag-rtl .ag-side-bar-left .ag-side-button-button,
|
|
615
|
+
.ag-ltr .ag-side-bar-right .ag-side-button-button {
|
|
616
|
+
border-right: var(--ag-selected-tab-underline-width) solid transparent;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
button.ag-side-button-button {
|
|
620
|
+
min-height: calc(var(--ag-grid-size) * 12);
|
|
621
|
+
border-top: none;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
.ag-side-buttons {
|
|
625
|
+
padding-top: 0;
|
|
626
|
+
background-color: var(--ag-control-panel-background-color);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.ag-column-drop-vertical {
|
|
630
|
+
min-height: 75px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.ag-column-drop-vertical-title-bar {
|
|
634
|
+
padding: calc(var(--ag-grid-size) * 2);
|
|
635
|
+
padding-bottom: 0;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.ag-column-drop-vertical-empty-message {
|
|
639
|
+
display: flex;
|
|
640
|
+
align-items: center;
|
|
641
|
+
margin: calc(var(--ag-grid-size) * 2);
|
|
642
|
+
padding: calc(var(--ag-grid-size) * 2);
|
|
643
|
+
border: dashed 1px;
|
|
644
|
+
border-color: var(--ag-border-color);
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.ag-column-drop-empty-message {
|
|
648
|
+
color: var(--ag-foreground-color);
|
|
649
|
+
opacity: 0.75;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.ag-row-selected::before {
|
|
653
|
+
z-index: -1;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.ag-tool-panel-wrapper .ag-react-container {
|
|
657
|
+
width: 100%;
|
|
658
|
+
}
|
|
659
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { BeanStub, CellPositionUtils, IClipboardCopyParams, IClipboardCopyRowsParams, IClipboardService, RowPositionUtils, CtrlsService } from "@ag-grid-community/core";
|
|
2
|
+
export declare class ClipboardService extends BeanStub implements IClipboardService {
|
|
3
|
+
private csvCreator;
|
|
4
|
+
private loggerFactory;
|
|
5
|
+
private selectionService;
|
|
6
|
+
private rangeService;
|
|
7
|
+
private rowModel;
|
|
8
|
+
ctrlsService: CtrlsService;
|
|
9
|
+
private valueService;
|
|
10
|
+
private focusService;
|
|
11
|
+
private rowRenderer;
|
|
12
|
+
private columnModel;
|
|
13
|
+
private cellNavigationService;
|
|
14
|
+
cellPositionUtils: CellPositionUtils;
|
|
15
|
+
rowPositionUtils: RowPositionUtils;
|
|
16
|
+
private clientSideRowModel;
|
|
17
|
+
private logger;
|
|
18
|
+
private gridCtrl;
|
|
19
|
+
private lastPasteOperationTime;
|
|
20
|
+
private navigatorApiFailed;
|
|
21
|
+
private init;
|
|
22
|
+
pasteFromClipboard(): void;
|
|
23
|
+
private pasteFromClipboardLegacy;
|
|
24
|
+
private refocusLastFocusedCell;
|
|
25
|
+
private getClipboardDelimiter;
|
|
26
|
+
private processClipboardData;
|
|
27
|
+
static stringToArray(strData: string, delimiter?: string): string[][];
|
|
28
|
+
private doPasteOperation;
|
|
29
|
+
private pasteIntoActiveRange;
|
|
30
|
+
private pasteStartingFromFocusedCell;
|
|
31
|
+
private isPasteSingleValueIntoRange;
|
|
32
|
+
private pasteSingleValueIntoRange;
|
|
33
|
+
private hasOnlyOneValueToPaste;
|
|
34
|
+
copyRangeDown(): void;
|
|
35
|
+
private removeLastLineIfBlank;
|
|
36
|
+
private fireRowChanged;
|
|
37
|
+
private pasteMultipleValues;
|
|
38
|
+
private updateCellValue;
|
|
39
|
+
copyToClipboard(params?: IClipboardCopyParams): void;
|
|
40
|
+
cutToClipboard(params?: IClipboardCopyParams): void;
|
|
41
|
+
private copyOrCutToClipboard;
|
|
42
|
+
private clearCellsAfterCopy;
|
|
43
|
+
private clearSelectedRows;
|
|
44
|
+
private clearCellValue;
|
|
45
|
+
private shouldSkipSingleCellRange;
|
|
46
|
+
private iterateActiveRanges;
|
|
47
|
+
private iterateActiveRange;
|
|
48
|
+
copySelectedRangeToClipboard(params?: IClipboardCopyParams): void;
|
|
49
|
+
private buildDataFromMergedRanges;
|
|
50
|
+
private buildDataFromRanges;
|
|
51
|
+
private getRangeRowPositionsAndCellsToFlash;
|
|
52
|
+
private copyFocusedCellToClipboard;
|
|
53
|
+
copySelectedRowsToClipboard(params?: IClipboardCopyRowsParams): void;
|
|
54
|
+
private buildExportParams;
|
|
55
|
+
private processRowGroupCallback;
|
|
56
|
+
private dispatchFlashCells;
|
|
57
|
+
private processCell;
|
|
58
|
+
private copyDataToClipboard;
|
|
59
|
+
private copyDataToClipboardLegacy;
|
|
60
|
+
private executeOnTempElement;
|
|
61
|
+
private getRangeSize;
|
|
62
|
+
}
|