kts-component-invoice-operate 3.2.242 → 3.2.244

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.
Files changed (66) hide show
  1. package/dist/Invoice/Invoice-digtal/_test/pay/index.d.ts +4 -0
  2. package/dist/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.d.ts +2 -0
  3. package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/IColumnsReplenish/index.d.ts +6 -0
  4. package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/IGood/index.d.ts +12 -0
  5. package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/ImportGoods/index.d.ts +21 -0
  6. package/dist/Invoice/InvoiceController/InvoiceControllerState/PayListState/index.d.ts +31 -0
  7. package/dist/Invoice/InvoiceController/InvoiceControllerState/index.d.ts +2 -0
  8. package/dist/Invoice/InvoiceController/fns/addPay.d.ts +6 -0
  9. package/dist/Invoice/InvoiceController/fns/delPay.d.ts +6 -0
  10. package/dist/Invoice/InvoiceController/fns/saveEditPay.d.ts +6 -0
  11. package/dist/Invoice/InvoiceController/fns/setEditPay.d.ts +6 -0
  12. package/dist/Invoice/InvoiceController/fns/setPay.d.ts +6 -0
  13. package/dist/Invoice/InvoiceController/index.d.ts +6 -0
  14. package/dist/Invoice/index.d.ts +2 -0
  15. package/dist/Invoice/ui/digtal/PayList/hook/useColumns/index.d.ts +3 -0
  16. package/dist/Invoice/ui/digtal/PayList/hook/useColumns/ui/TitleText/index.d.ts +8 -0
  17. package/dist/Invoice/ui/digtal/PayList/hook/useOnRow/index.d.ts +8 -0
  18. package/dist/Invoice/ui/digtal/PayList/hook/useRowSelection/index.d.ts +8 -0
  19. package/dist/Invoice/ui/digtal/PayList/hook/useWindowClick/index.d.ts +5 -0
  20. package/dist/Invoice/ui/digtal/PayList/index.d.ts +18 -0
  21. package/dist/Invoice/ui/digtal/PayList/ui/AddRowButton/index.d.ts +3 -0
  22. package/dist/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useDelRowButton/index.d.ts +6 -0
  23. package/dist/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useEmptyRefill/index.d.ts +6 -0
  24. package/dist/Invoice/ui/digtal/PayList/ui/TableRow/index.d.ts +3 -0
  25. package/dist/Invoice/ui/digtal/PayList/ui/TableVirtual/index.d.ts +4 -0
  26. package/dist/index.esm.js +8763 -5735
  27. package/dist/index.js +8762 -5734
  28. package/package.json +1 -1
  29. package/src/Invoice/Invoice-digtal/_test/easiest/index.tsx +40 -8
  30. package/src/Invoice/Invoice-digtal/_test/freight/index.tsx +23 -17
  31. package/src/Invoice/Invoice-digtal/_test/pay/index.tsx +14637 -0
  32. package/src/Invoice/Invoice-digtal/_test/realEstateInfo/index.tsx +47 -0
  33. package/src/Invoice/Invoice-digtal/index.md +7 -6
  34. package/src/Invoice/InvoiceController/InvoiceControllerForm/index.ts +11 -0
  35. package/src/Invoice/InvoiceController/InvoiceControllerState/GoodsListState/IGood/index.ts +3 -0
  36. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IColumnsReplenish/index.ts +10 -0
  37. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/IGood/index.ts +35 -0
  38. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/ImportGoods/index.ts +81 -0
  39. package/src/Invoice/InvoiceController/InvoiceControllerState/PayListState/index.ts +40 -0
  40. package/src/Invoice/InvoiceController/InvoiceControllerState/index.ts +3 -0
  41. package/src/Invoice/InvoiceController/fns/addPay.ts +11 -0
  42. package/src/Invoice/InvoiceController/fns/delPay.ts +38 -0
  43. package/src/Invoice/InvoiceController/fns/saveEditPay.ts +23 -0
  44. package/src/Invoice/InvoiceController/fns/setEditPay.ts +16 -0
  45. package/src/Invoice/InvoiceController/fns/setPay.ts +11 -0
  46. package/src/Invoice/InvoiceController/index.ts +21 -0
  47. package/src/Invoice/index.tsx +3 -0
  48. package/src/Invoice/tools/useToGenerateId/index.ts +2 -0
  49. package/src/Invoice/ui/digtal/PayList/hook/useColumns/dist/index.js +616 -0
  50. package/src/Invoice/ui/digtal/PayList/hook/useColumns/index.tsx +168 -0
  51. package/src/Invoice/ui/digtal/PayList/hook/useColumns/ui/TitleText/index.tsx +20 -0
  52. package/src/Invoice/ui/digtal/PayList/hook/useOnRow/index.tsx +37 -0
  53. package/src/Invoice/ui/digtal/PayList/hook/useRowSelection/index.tsx +120 -0
  54. package/src/Invoice/ui/digtal/PayList/hook/useWindowClick/index.tsx +19 -0
  55. package/src/Invoice/ui/digtal/PayList/index.less +73 -0
  56. package/src/Invoice/ui/digtal/PayList/index.tsx +132 -0
  57. package/src/Invoice/ui/digtal/PayList/ui/AddRowButton/index.tsx +75 -0
  58. package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useDelRowButton/index.tsx +50 -0
  59. package/src/Invoice/ui/digtal/PayList/ui/BulkMenu/hooks/useEmptyRefill/index.tsx +37 -0
  60. package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.less +29 -0
  61. package/src/Invoice/ui/digtal/PayList/ui/TableRow/index.tsx +21 -0
  62. package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.less +39 -0
  63. package/src/Invoice/ui/digtal/PayList/ui/TableVirtual/index.tsx +109 -0
  64. package/src/Invoice/ui/digtal/RealEstateInfo/index.tsx +246 -37
  65. package/src/Invoice/ui/digtal/StakeFarmerholder/index.less +1 -1
  66. package/src/Invoice/ui/digtal/StakeFarmerholder/index.tsx +809 -204

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.