@univerjs/sheets-conditional-formatting 0.1.5 → 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 (57) hide show
  1. package/README.md +1 -1
  2. package/lib/cjs/index.js +1 -11
  3. package/lib/es/index.js +1366 -8690
  4. package/lib/types/commands/mutations/move-conditional-rule.mutation.d.ts +4 -4
  5. package/lib/types/commands/mutations/set-conditional-rule.mutation.d.ts +1 -0
  6. package/lib/types/index.d.ts +22 -1
  7. package/lib/types/models/conditional-formatting-rule-model.d.ts +4 -3
  8. package/lib/types/plugin.d.ts +3 -3
  9. package/lib/types/{locale/index.d.ts → utils/__test__/anchor.spec.d.ts} +1 -2
  10. package/lib/types/utils/anchor.d.ts +34 -0
  11. package/lib/types/utils/create-cf-id.d.ts +16 -0
  12. package/lib/umd/index.js +1 -11
  13. package/package.json +13 -37
  14. package/lib/index.css +0 -1
  15. package/lib/types/commands/commands/add-average-cf.command.d.ts +0 -11
  16. package/lib/types/commands/commands/add-cf.command.d.ts +0 -10
  17. package/lib/types/commands/commands/add-color-scale-cf.command.d.ts +0 -10
  18. package/lib/types/commands/commands/add-data-bar-cf.command.d.ts +0 -14
  19. package/lib/types/commands/commands/add-duplicate-values-cf.command.d.ts +0 -10
  20. package/lib/types/commands/commands/add-number-cf.command.d.ts +0 -12
  21. package/lib/types/commands/commands/add-rank-cf.command.d.ts +0 -13
  22. package/lib/types/commands/commands/add-text-cf.command.d.ts +0 -12
  23. package/lib/types/commands/commands/add-time-period-cf.command.d.ts +0 -11
  24. package/lib/types/commands/commands/add-unique-values-cf.command.d.ts +0 -10
  25. package/lib/types/commands/commands/clear-range-cf.command.d.ts +0 -8
  26. package/lib/types/commands/commands/clear-worksheet-cf.command.d.ts +0 -7
  27. package/lib/types/commands/commands/delete-cf.command.d.ts +0 -8
  28. package/lib/types/commands/commands/move-cf.command.d.ts +0 -9
  29. package/lib/types/commands/commands/set-cf.command.d.ts +0 -9
  30. package/lib/types/commands/operations/open-conditional-formatting-panel.d.ts +0 -15
  31. package/lib/types/components/color-picker/index.d.ts +0 -12
  32. package/lib/types/components/conditional-style-editor/index.d.ts +0 -10
  33. package/lib/types/components/panel/index.d.ts +0 -8
  34. package/lib/types/components/panel/rule-edit/colorScale.d.ts +0 -4
  35. package/lib/types/components/panel/rule-edit/dataBar.d.ts +0 -4
  36. package/lib/types/components/panel/rule-edit/formula.d.ts +0 -4
  37. package/lib/types/components/panel/rule-edit/highlightCell.d.ts +0 -5
  38. package/lib/types/components/panel/rule-edit/iconSet.d.ts +0 -5
  39. package/lib/types/components/panel/rule-edit/index.d.ts +0 -9
  40. package/lib/types/components/panel/rule-edit/rank.d.ts +0 -4
  41. package/lib/types/components/panel/rule-edit/type.d.ts +0 -13
  42. package/lib/types/components/panel/rule-list/index.d.ts +0 -9
  43. package/lib/types/components/preview/index.d.ts +0 -6
  44. package/lib/types/controllers/cf.auto-fill.controller.d.ts +0 -15
  45. package/lib/types/controllers/cf.clear.controller.d.ts +0 -14
  46. package/lib/types/controllers/cf.copy-paste.controller.d.ts +0 -18
  47. package/lib/types/controllers/cf.editor.controller.d.ts +0 -15
  48. package/lib/types/controllers/cf.i18n.controller.d.ts +0 -10
  49. package/lib/types/controllers/cf.menu.controller.d.ts +0 -16
  50. package/lib/types/controllers/cf.ref-range.controller.d.ts +0 -15
  51. package/lib/types/controllers/cf.render.controller.d.ts +0 -21
  52. package/lib/types/locale/en-US.d.ts +0 -4
  53. package/lib/types/locale/zh-CN.d.ts +0 -169
  54. package/lib/types/menu/manage-rule.d.ts +0 -4
  55. /package/lib/types/utils/{getStringFromDataStream.d.ts → get-string-from-data-stream.d.ts} +0 -0
  56. /package/lib/types/utils/{isRangesEqual.d.ts → is-ranges-equal.d.ts} +0 -0
  57. /package/lib/types/utils/{removeUndefinedAttr.d.ts → remove-undefined-attr.d.ts} +0 -0
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ## Introduction
9
9
 
10
- `@univerjs/sheets-conditional-formatting` provides conditional formatting for cells in Univer Sheet.
10
+ `@univerjs/sheets-conditional-formatting` provides Univer Sheet with basic capabilities for conditional format rendering computation.
11
11
 
12
12
  ## Usage
13
13