@univerjs/sheets 0.2.2 → 0.2.3

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 CHANGED
@@ -1,8 +1,10 @@
1
1
  # @univerjs/sheets
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@univerjs/sheets)](https://npmjs.org/package/@univerjs/sheets)
4
- [![license](https://img.shields.io/npm/l/@univerjs/sheets)](https://img.shields.io/npm/l/@univerjs/sheets)
5
- ![i18n](https://img.shields.io/badge/zh--CN%20%7C%20en--US-cornflowerblue?label=i18n)
3
+ ## Package Overview
4
+
5
+ | Package Name | UMD Namespace | Version | License | Downloads | Contains CSS | Contains i18n locales |
6
+ | --- | --- | --- | --- | --- | :---: | :---: |
7
+ | `@univerjs/sheets` | `UniverSheets` | [![][npm-version-shield]][npm-version-link] | ![][npm-license-shield] | ![][npm-downloads-shield] | ❌ | ⭕️ |
6
8
 
7
9
  ## Introduction
8
10
 
@@ -43,3 +45,9 @@ For detailed usage, please refer to the API documentation.
43
45
  Use `SheetInterceptorService` when multiple features need to operate on the same data or state, but do not have a clear dependency relationship. For example: pivot tables, formulas, conditional formatting, data validation, and raw cell data can all affect how other features retrieve a cell's value, but they do not depend on each other. In this case, using `SheetInterceptorService` to implement these features is appropriate.
44
46
 
45
47
  However, if one feature relies explicitly on another feature, such as a formula needing to perform certain actions when the fill down or copy-paste functions are called, the formula module should directly depend on the fill down and copy-paste modules, instead of using `SheetInterceptorService` for implementation.
48
+
49
+ <!-- Links -->
50
+ [npm-version-shield]: https://img.shields.io/npm/v/@univerjs/sheets?style=flat-square
51
+ [npm-version-link]: https://npmjs.com/package/@univerjs/sheets
52
+ [npm-license-shield]: https://img.shields.io/npm/l/@univerjs/sheets?style=flat-square
53
+ [npm-downloads-shield]: https://img.shields.io/npm/dm/@univerjs/sheets?style=flat-square