@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.
- package/README.md +1 -1
- package/lib/cjs/index.js +1 -11
- package/lib/es/index.js +1366 -8690
- package/lib/types/commands/mutations/move-conditional-rule.mutation.d.ts +4 -4
- package/lib/types/commands/mutations/set-conditional-rule.mutation.d.ts +1 -0
- package/lib/types/index.d.ts +22 -1
- package/lib/types/models/conditional-formatting-rule-model.d.ts +4 -3
- package/lib/types/plugin.d.ts +3 -3
- package/lib/types/{locale/index.d.ts → utils/__test__/anchor.spec.d.ts} +1 -2
- package/lib/types/utils/anchor.d.ts +34 -0
- package/lib/types/utils/create-cf-id.d.ts +16 -0
- package/lib/umd/index.js +1 -11
- package/package.json +13 -37
- package/lib/index.css +0 -1
- package/lib/types/commands/commands/add-average-cf.command.d.ts +0 -11
- package/lib/types/commands/commands/add-cf.command.d.ts +0 -10
- package/lib/types/commands/commands/add-color-scale-cf.command.d.ts +0 -10
- package/lib/types/commands/commands/add-data-bar-cf.command.d.ts +0 -14
- package/lib/types/commands/commands/add-duplicate-values-cf.command.d.ts +0 -10
- package/lib/types/commands/commands/add-number-cf.command.d.ts +0 -12
- package/lib/types/commands/commands/add-rank-cf.command.d.ts +0 -13
- package/lib/types/commands/commands/add-text-cf.command.d.ts +0 -12
- package/lib/types/commands/commands/add-time-period-cf.command.d.ts +0 -11
- package/lib/types/commands/commands/add-unique-values-cf.command.d.ts +0 -10
- package/lib/types/commands/commands/clear-range-cf.command.d.ts +0 -8
- package/lib/types/commands/commands/clear-worksheet-cf.command.d.ts +0 -7
- package/lib/types/commands/commands/delete-cf.command.d.ts +0 -8
- package/lib/types/commands/commands/move-cf.command.d.ts +0 -9
- package/lib/types/commands/commands/set-cf.command.d.ts +0 -9
- package/lib/types/commands/operations/open-conditional-formatting-panel.d.ts +0 -15
- package/lib/types/components/color-picker/index.d.ts +0 -12
- package/lib/types/components/conditional-style-editor/index.d.ts +0 -10
- package/lib/types/components/panel/index.d.ts +0 -8
- package/lib/types/components/panel/rule-edit/colorScale.d.ts +0 -4
- package/lib/types/components/panel/rule-edit/dataBar.d.ts +0 -4
- package/lib/types/components/panel/rule-edit/formula.d.ts +0 -4
- package/lib/types/components/panel/rule-edit/highlightCell.d.ts +0 -5
- package/lib/types/components/panel/rule-edit/iconSet.d.ts +0 -5
- package/lib/types/components/panel/rule-edit/index.d.ts +0 -9
- package/lib/types/components/panel/rule-edit/rank.d.ts +0 -4
- package/lib/types/components/panel/rule-edit/type.d.ts +0 -13
- package/lib/types/components/panel/rule-list/index.d.ts +0 -9
- package/lib/types/components/preview/index.d.ts +0 -6
- package/lib/types/controllers/cf.auto-fill.controller.d.ts +0 -15
- package/lib/types/controllers/cf.clear.controller.d.ts +0 -14
- package/lib/types/controllers/cf.copy-paste.controller.d.ts +0 -18
- package/lib/types/controllers/cf.editor.controller.d.ts +0 -15
- package/lib/types/controllers/cf.i18n.controller.d.ts +0 -10
- package/lib/types/controllers/cf.menu.controller.d.ts +0 -16
- package/lib/types/controllers/cf.ref-range.controller.d.ts +0 -15
- package/lib/types/controllers/cf.render.controller.d.ts +0 -21
- package/lib/types/locale/en-US.d.ts +0 -4
- package/lib/types/locale/zh-CN.d.ts +0 -169
- package/lib/types/menu/manage-rule.d.ts +0 -4
- /package/lib/types/utils/{getStringFromDataStream.d.ts → get-string-from-data-stream.d.ts} +0 -0
- /package/lib/types/utils/{isRangesEqual.d.ts → is-ranges-equal.d.ts} +0 -0
- /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
|
|
10
|
+
`@univerjs/sheets-conditional-formatting` provides Univer Sheet with basic capabilities for conditional format rendering computation.
|
|
11
11
|
|
|
12
12
|
## Usage
|
|
13
13
|
|