@zat-design/sisyphus-react 3.6.6-beta.1 → 3.6.6-beta.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/es/ProEditTable/components/RcTable/BaseTable.d.ts +6 -0
- package/es/ProEditTable/components/RcTable/BaseTable.js +75 -0
- package/es/ProEditTable/components/RcTable/DraggableTable.d.ts +7 -0
- package/es/ProEditTable/components/RcTable/DraggableTable.js +90 -0
- package/es/ProEditTable/components/RcTable/VirtualTable.d.ts +6 -0
- package/es/ProEditTable/components/RcTable/VirtualTable.js +166 -0
- package/es/ProEditTable/components/RcTable/index.d.ts +6 -0
- package/es/ProEditTable/components/RcTable/index.js +6 -0
- package/es/ProEditTable/components/RenderField/index.js +1 -1
- package/es/ProEditTable/index.js +32 -55
- package/es/ProEditTable/propsType.d.ts +5 -0
- package/es/ProEditTable/utils/index.js +1 -1
- package/es/ProForm/components/combination/ProCascader/index.js +3 -1
- package/es/ProSelect/index.js +1 -1
- package/es/ProTable/propsType.d.ts +2 -1
- package/es/ProTable/useAntdTable.d.ts +2 -2
- package/es/ProTable/useAntdTable.js +17 -3
- package/lib/ProEditTable/components/RcTable/BaseTable.d.ts +6 -0
- package/lib/ProEditTable/components/RcTable/BaseTable.js +81 -0
- package/lib/ProEditTable/components/RcTable/DraggableTable.d.ts +7 -0
- package/lib/ProEditTable/components/RcTable/DraggableTable.js +96 -0
- package/lib/ProEditTable/components/RcTable/VirtualTable.d.ts +6 -0
- package/lib/ProEditTable/components/RcTable/VirtualTable.js +172 -0
- package/lib/ProEditTable/components/RcTable/index.d.ts +6 -0
- package/lib/ProEditTable/components/RcTable/index.js +27 -0
- package/lib/ProEditTable/components/RenderField/index.js +1 -1
- package/lib/ProEditTable/index.js +31 -52
- package/lib/ProEditTable/propsType.d.ts +5 -0
- package/lib/ProEditTable/utils/index.js +1 -1
- package/lib/ProForm/components/combination/ProCascader/index.js +3 -1
- package/lib/ProSelect/index.js +1 -1
- package/lib/ProTable/propsType.d.ts +2 -1
- package/lib/ProTable/useAntdTable.d.ts +2 -2
- package/lib/ProTable/useAntdTable.js +16 -2
- package/package.json +5 -3
    
        package/package.json
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "name": "@zat-design/sisyphus-react",
         | 
| 3 | 
            -
              "version": "3.6.6-beta. | 
| 3 | 
            +
              "version": "3.6.6-beta.5",
         | 
| 4 4 | 
             
              "license": "Apache-2.0",
         | 
| 5 5 | 
             
              "main": "lib/index.js",
         | 
| 6 6 | 
             
              "module": "es/index.js",
         | 
| @@ -58,15 +58,17 @@ | |
| 58 58 | 
             
                "@dnd-kit/sortable": "^7.0.2",
         | 
| 59 59 | 
             
                "@dnd-kit/utilities": "^3.2.1",
         | 
| 60 60 | 
             
                "@pansy/react-watermark": "^3.1.13",
         | 
| 61 | 
            -
                "@zat-design/utils": "^1.1. | 
| 61 | 
            +
                "@zat-design/utils": "^1.1.31",
         | 
| 62 62 | 
             
                "ahooks": "3.7.4",
         | 
| 63 63 | 
             
                "antd": "4.24.8",
         | 
| 64 64 | 
             
                "big.js": "^6.2.1",
         | 
| 65 65 | 
             
                "classnames": "^2.3.1",
         | 
| 66 66 | 
             
                "lodash": "^4.17.21",
         | 
| 67 67 | 
             
                "moment": "^2.29.1",
         | 
| 68 | 
            +
                "rc-resize-observer": "^1.4.0",
         | 
| 68 69 | 
             
                "react-resizable": "^3.0.4",
         | 
| 69 | 
            -
                "react-svg": "^15.1.7"
         | 
| 70 | 
            +
                "react-svg": "^15.1.7",
         | 
| 71 | 
            +
                "react-window": "^1.8.10"
         | 
| 70 72 | 
             
              },
         | 
| 71 73 | 
             
              "peerDependencies": {
         | 
| 72 74 | 
             
                "antd": "^4.24.8",
         |