@univerjs/sheets-conditional-formatting 0.1.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.
Files changed (78) hide show
  1. package/LICENSE +176 -0
  2. package/README.md +30 -0
  3. package/lib/cjs/index.js +11 -0
  4. package/lib/es/index.js +9334 -0
  5. package/lib/index.css +1 -0
  6. package/lib/types/assets/icon-map.json.d.ts +82 -0
  7. package/lib/types/base/const.d.ts +66 -0
  8. package/lib/types/commands/commands/add-average-cf.command.d.ts +11 -0
  9. package/lib/types/commands/commands/add-cf.command.d.ts +10 -0
  10. package/lib/types/commands/commands/add-color-scale-cf.command.d.ts +10 -0
  11. package/lib/types/commands/commands/add-data-bar-cf.command.d.ts +14 -0
  12. package/lib/types/commands/commands/add-duplicate-values-cf.command.d.ts +10 -0
  13. package/lib/types/commands/commands/add-number-cf.command.d.ts +12 -0
  14. package/lib/types/commands/commands/add-rank-cf.command.d.ts +13 -0
  15. package/lib/types/commands/commands/add-text-cf.command.d.ts +12 -0
  16. package/lib/types/commands/commands/add-time-period-cf.command.d.ts +11 -0
  17. package/lib/types/commands/commands/add-unique-values-cf.command.d.ts +10 -0
  18. package/lib/types/commands/commands/clear-range-cf.command.d.ts +8 -0
  19. package/lib/types/commands/commands/clear-worksheet-cf.command.d.ts +7 -0
  20. package/lib/types/commands/commands/delete-cf.command.d.ts +8 -0
  21. package/lib/types/commands/commands/move-cf.command.d.ts +9 -0
  22. package/lib/types/commands/commands/set-cf.command.d.ts +9 -0
  23. package/lib/types/commands/mutations/add-conditional-rule.mutation.d.ts +15 -0
  24. package/lib/types/commands/mutations/delete-conditional-rule.mutation.d.ts +10 -0
  25. package/lib/types/commands/mutations/formula-mark-dirty.mutation.d.ts +10 -0
  26. package/lib/types/commands/mutations/move-conditional-rule.mutation.d.ts +14 -0
  27. package/lib/types/commands/mutations/set-conditional-rule.mutation.d.ts +14 -0
  28. package/lib/types/commands/operations/open-conditional-formatting-panel.d.ts +15 -0
  29. package/lib/types/components/color-picker/index.d.ts +12 -0
  30. package/lib/types/components/conditional-style-editor/index.d.ts +10 -0
  31. package/lib/types/components/panel/index.d.ts +8 -0
  32. package/lib/types/components/panel/rule-edit/colorScale.d.ts +4 -0
  33. package/lib/types/components/panel/rule-edit/dataBar.d.ts +4 -0
  34. package/lib/types/components/panel/rule-edit/formula.d.ts +4 -0
  35. package/lib/types/components/panel/rule-edit/highlightCell.d.ts +5 -0
  36. package/lib/types/components/panel/rule-edit/iconSet.d.ts +5 -0
  37. package/lib/types/components/panel/rule-edit/index.d.ts +9 -0
  38. package/lib/types/components/panel/rule-edit/rank.d.ts +4 -0
  39. package/lib/types/components/panel/rule-edit/type.d.ts +13 -0
  40. package/lib/types/components/panel/rule-list/index.d.ts +9 -0
  41. package/lib/types/components/preview/index.d.ts +6 -0
  42. package/lib/types/controllers/cf.auto-fill.controller.d.ts +15 -0
  43. package/lib/types/controllers/cf.clear.controller.d.ts +14 -0
  44. package/lib/types/controllers/cf.copy-paste.controller.d.ts +18 -0
  45. package/lib/types/controllers/cf.editor.controller.d.ts +15 -0
  46. package/lib/types/controllers/cf.i18n.controller.d.ts +10 -0
  47. package/lib/types/controllers/cf.menu.controller.d.ts +16 -0
  48. package/lib/types/controllers/cf.ref-range.controller.d.ts +15 -0
  49. package/lib/types/controllers/cf.render.controller.d.ts +21 -0
  50. package/lib/types/index.d.ts +17 -0
  51. package/lib/types/locale/en-US.d.ts +4 -0
  52. package/lib/types/locale/index.d.ts +17 -0
  53. package/lib/types/locale/zh-CN.d.ts +169 -0
  54. package/lib/types/menu/manage-rule.d.ts +4 -0
  55. package/lib/types/models/conditional-formatting-rule-model.d.ts +32 -0
  56. package/lib/types/models/conditional-formatting-view-model.d.ts +29 -0
  57. package/lib/types/models/icon-map.d.ts +26 -0
  58. package/lib/types/models/type.d.ts +91 -0
  59. package/lib/types/plugin.d.ts +13 -0
  60. package/lib/types/render/data-bar.render.d.ts +13 -0
  61. package/lib/types/render/icon.render.d.ts +18 -0
  62. package/lib/types/render/type.d.ts +22 -0
  63. package/lib/types/services/__test__/cf.service.spec.d.ts +16 -0
  64. package/lib/types/services/__test__/test.util.d.ts +24 -0
  65. package/lib/types/services/calculate-unit/color-scale.d.ts +3 -0
  66. package/lib/types/services/calculate-unit/data-bar.d.ts +3 -0
  67. package/lib/types/services/calculate-unit/highlight-cell.d.ts +3 -0
  68. package/lib/types/services/calculate-unit/icon-set.d.ts +3 -0
  69. package/lib/types/services/calculate-unit/type.d.ts +17 -0
  70. package/lib/types/services/calculate-unit/utils.d.ts +33 -0
  71. package/lib/types/services/conditional-formatting-formula.service.d.ts +57 -0
  72. package/lib/types/services/conditional-formatting.service.d.ts +49 -0
  73. package/lib/types/utils/getStringFromDataStream.d.ts +3 -0
  74. package/lib/types/utils/isRangesEqual.d.ts +3 -0
  75. package/lib/types/utils/removeUndefinedAttr.d.ts +16 -0
  76. package/lib/types/utils/type.d.ts +18 -0
  77. package/lib/umd/index.js +11 -0
  78. package/package.json +108 -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.