@univerjs/sheets-data-validation 0.1.6

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 (80) hide show
  1. package/LICENSE +176 -0
  2. package/README.md +29 -0
  3. package/lib/cjs/index.js +9 -0
  4. package/lib/es/index.js +6749 -0
  5. package/lib/index.css +1 -0
  6. package/lib/types/commands/commands/data-validation.command.d.ts +21 -0
  7. package/lib/types/commands/mutations/formula.mutation.d.ts +10 -0
  8. package/lib/types/commands/operations/data-validation.operation.d.ts +18 -0
  9. package/lib/types/common/const.d.ts +18 -0
  10. package/lib/types/common/date-text-map.d.ts +6 -0
  11. package/lib/types/controllers/dv-alert.controller.d.ts +14 -0
  12. package/lib/types/controllers/dv-auto-fill.controller.d.ts +10 -0
  13. package/lib/types/controllers/dv-copy-paste.controller.d.ts +13 -0
  14. package/lib/types/controllers/dv-ref-range.controller.d.ts +29 -0
  15. package/lib/types/controllers/dv-reject-input.controller.d.ts +14 -0
  16. package/lib/types/controllers/dv-render.controller.d.ts +29 -0
  17. package/lib/types/controllers/dv-resource.controller.d.ts +14 -0
  18. package/lib/types/controllers/dv-sheet.controller.d.ts +13 -0
  19. package/lib/types/controllers/dv.controller.d.ts +22 -0
  20. package/lib/types/controllers/dv.menu.d.ts +7 -0
  21. package/lib/types/index.d.ts +37 -0
  22. package/lib/types/locale/en-US.d.ts +4 -0
  23. package/lib/types/locale/index.d.ts +17 -0
  24. package/lib/types/locale/zh-CN.d.ts +160 -0
  25. package/lib/types/models/rule-matrix.d.ts +28 -0
  26. package/lib/types/models/sheet-data-validation-manager.d.ts +28 -0
  27. package/lib/types/plugin.d.ts +10 -0
  28. package/lib/types/services/data-validation-panel.service.d.ts +27 -0
  29. package/lib/types/services/dropdown-manager.service.d.ts +37 -0
  30. package/lib/types/services/dv-cache.service.d.ts +21 -0
  31. package/lib/types/services/dv-custom-formula.service.d.ts +41 -0
  32. package/lib/types/services/dv-formula.service.d.ts +21 -0
  33. package/lib/types/services/dv.service.d.ts +20 -0
  34. package/lib/types/services/dv.tips.d.ts +17 -0
  35. package/lib/types/services/formula-common.d.ts +19 -0
  36. package/lib/types/services/register-formula.service.d.ts +28 -0
  37. package/lib/types/types/const/index.d.ts +17 -0
  38. package/lib/types/types/const/operator-text-map.d.ts +5 -0
  39. package/lib/types/types/const/two-formula-operators.d.ts +3 -0
  40. package/lib/types/types/index.d.ts +17 -0
  41. package/lib/types/types/interface/i-update-rule-formula.d.ts +19 -0
  42. package/lib/types/types/interface/index.d.ts +16 -0
  43. package/lib/types/utils/date.d.ts +17 -0
  44. package/lib/types/utils/formula.d.ts +3 -0
  45. package/lib/types/utils/get-cell-data-origin.d.ts +3 -0
  46. package/lib/types/validators/checkbox-validator.d.ts +25 -0
  47. package/lib/types/validators/custom-validator.d.ts +15 -0
  48. package/lib/types/validators/date-validator.d.ts +31 -0
  49. package/lib/types/validators/decimal-validator.d.ts +36 -0
  50. package/lib/types/validators/index.d.ts +20 -0
  51. package/lib/types/validators/list-multiple-validator.d.ts +27 -0
  52. package/lib/types/validators/list-validator.d.ts +28 -0
  53. package/lib/types/validators/text-length-validator.d.ts +32 -0
  54. package/lib/types/validators/util.d.ts +6 -0
  55. package/lib/types/validators/whole-validator.d.ts +35 -0
  56. package/lib/types/views/date-dropdown/index.d.ts +4 -0
  57. package/lib/types/views/detail/index.d.ts +3 -0
  58. package/lib/types/views/drop-down/CellDropdown.d.ts +3 -0
  59. package/lib/types/views/drop-down/index.d.ts +18 -0
  60. package/lib/types/views/formula-input/base-formula-input.d.ts +4 -0
  61. package/lib/types/views/formula-input/checkbox-formula-input.d.ts +4 -0
  62. package/lib/types/views/formula-input/custom-formula-input.d.ts +4 -0
  63. package/lib/types/views/formula-input/formula-input.d.ts +5 -0
  64. package/lib/types/views/formula-input/index.d.ts +7 -0
  65. package/lib/types/views/formula-input/list-formula-input.d.ts +4 -0
  66. package/lib/types/views/index.d.ts +20 -0
  67. package/lib/types/views/item/index.d.ts +10 -0
  68. package/lib/types/views/list/index.d.ts +3 -0
  69. package/lib/types/views/list-dropdown/index.d.ts +4 -0
  70. package/lib/types/views/options/index.d.ts +9 -0
  71. package/lib/types/views/panel/index.d.ts +3 -0
  72. package/lib/types/views/render-mode/index.d.ts +11 -0
  73. package/lib/types/widgets/checkbox-widget.d.ts +20 -0
  74. package/lib/types/widgets/dropdown-multiple-widget.d.ts +20 -0
  75. package/lib/types/widgets/dropdown-widget.d.ts +32 -0
  76. package/lib/types/widgets/shape/dropdown.d.ts +13 -0
  77. package/lib/types/widgets/shape/index.d.ts +18 -0
  78. package/lib/types/widgets/shape/layout.d.ts +38 -0
  79. package/lib/umd/index.js +9 -0
  80. package/package.json +79 -0

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.