@univerjs/core 0.10.8 → 0.10.9
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 +5 -5
- package/lib/cjs/index.js +7 -7
- package/lib/es/index.js +1622 -1615
- package/lib/index.js +1622 -1615
- package/lib/types/shared/index.d.ts +1 -1
- package/lib/types/shared/name.d.ts +5 -1
- package/lib/types/shared/numfmt.d.ts +5 -0
- package/lib/umd/index.js +7 -7
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* Internationalization
|
|
25
25
|
* Resource management
|
|
26
26
|
|
|
27
|
-
For more information about `@univerjs/core`'s API, please refer to the [API documentation](https://univer.ai/
|
|
27
|
+
For more information about `@univerjs/core`'s API, please refer to the [API documentation](https://reference.univer.ai/).
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
30
|
|
|
@@ -55,10 +55,10 @@ new Univer({
|
|
|
55
55
|
|
|
56
56
|
| Name | Type | Default | Description |
|
|
57
57
|
| --- | --- | --- | --- |
|
|
58
|
-
| theme | [Theme](https://univer.ai/guides/
|
|
59
|
-
| locale | [LocaleType](https://univer.ai/
|
|
60
|
-
| locales | [ILocales](https://univer.ai/
|
|
61
|
-
| logLevel | [LogLevel](https://
|
|
58
|
+
| theme | [Theme](https://docs.univer.ai/guides/sheets/ui/themes) | - | The theme of the application, which is used to control the appearance of the application. |
|
|
59
|
+
| locale | [LocaleType](https://docs.univer.ai/guides/sheets/getting-started/i18n) | `LocaleType.ZH_CN` | The locale of the application. The default value is `LocaleType.ZH_CN`.
|
|
60
|
+
| locales | [ILocales](https://docs.univer.ai/guides/sheets/getting-started/i18n) | - | The supported locales of the application. By default, the application supports Chinese.
|
|
61
|
+
| logLevel | [LogLevel](https://github.com/dream-num/univer/blob/dev/packages/core/src/services/log/log.service.ts#L22) | `LogLevel.SILENT` | The log level of the application. |
|
|
62
62
|
|
|
63
63
|
<!-- Links -->
|
|
64
64
|
[npm-version-shield]: https://img.shields.io/npm/v/@univerjs/core?style=flat-square
|