@univerjs/themes 0.25.0 → 1.0.0-alpha.0
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 +2 -3
- package/lib/cjs/index.js +914 -122
- package/lib/es/index.js +911 -122
- package/lib/index.js +911 -122
- package/lib/types/default.d.ts +68 -0
- package/lib/types/index.d.ts +5 -1
- package/lib/types/orange.d.ts +18 -0
- package/lib/types/purple.d.ts +18 -0
- package/lib/types/red.d.ts +18 -0
- package/lib/umd/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://npmjs.com/package/@univerjs/themes)
|
|
5
5
|
[](https://npmjs.com/package/@univerjs/themes)
|
|
6
6
|
|
|
7
|
-
`@univerjs/themes` contains built-in Univer theme definitions such as the default
|
|
7
|
+
`@univerjs/themes` contains built-in Univer theme definitions such as the default, green, orange, red, and purple themes.
|
|
8
8
|
|
|
9
9
|
## Package Overview
|
|
10
10
|
|
|
@@ -25,7 +25,7 @@ Keep all `@univerjs/*` packages on the same version.
|
|
|
25
25
|
## Usage
|
|
26
26
|
|
|
27
27
|
```ts
|
|
28
|
-
import { defaultTheme, greenTheme } from '@univerjs/themes';
|
|
28
|
+
import { defaultTheme, greenTheme, orangeTheme, purpleTheme, redTheme } from '@univerjs/themes';
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## Resources
|
|
@@ -33,4 +33,3 @@ import { defaultTheme, greenTheme } from '@univerjs/themes';
|
|
|
33
33
|
- [Documentation](https://docs.univer.ai)
|
|
34
34
|
- [NPM package](https://npmjs.com/package/@univerjs/themes)
|
|
35
35
|
- [GitHub repository](https://github.com/dream-num/univer)
|
|
36
|
-
|