@fuxishi/vitepress-theme 2.0.0-alpha.5 → 2.0.0-alpha.7
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/dist/index.d.ts +15 -2
- package/dist/style.css.d.ts +1 -1
- package/package.json +10 -14
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,15 @@
|
|
|
1
|
-
export type {
|
|
2
|
-
|
|
1
|
+
export type {
|
|
2
|
+
FxThemeCustomConfig,
|
|
3
|
+
MusicItem,
|
|
4
|
+
ConfettiShape,
|
|
5
|
+
ConfettiConfig,
|
|
6
|
+
} from "./config";
|
|
7
|
+
export { default as configPreset } from "./config";
|
|
8
|
+
|
|
9
|
+
declare const theme: {
|
|
10
|
+
extends?: any;
|
|
11
|
+
Layout?: any;
|
|
12
|
+
enhanceApp?: (ctx: any) => any;
|
|
13
|
+
setup?: () => void;
|
|
14
|
+
};
|
|
15
|
+
export default theme;
|
package/dist/style.css.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {}
|
|
1
|
+
export {}
|
package/package.json
CHANGED
|
@@ -2,12 +2,11 @@
|
|
|
2
2
|
"name": "@fuxishi/vitepress-theme",
|
|
3
3
|
"displayName": "@fuxishi/vitepress-theme",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "2.0.0-alpha.
|
|
5
|
+
"version": "2.0.0-alpha.7",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "一款精美的 VitePress 主题",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"vitepress",
|
|
10
|
-
"theme",
|
|
11
10
|
"vitepress-theme",
|
|
12
11
|
"@fuxishi/vitepress-theme",
|
|
13
12
|
"fuxishi"
|
|
@@ -22,24 +21,21 @@
|
|
|
22
21
|
],
|
|
23
22
|
"main": "./dist/index.js",
|
|
24
23
|
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js",
|
|
29
|
+
"default": "./dist/index.js"
|
|
31
30
|
},
|
|
32
31
|
"./config": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
32
|
+
"types": "./dist/config.d.ts",
|
|
33
|
+
"import": "./dist/config.js",
|
|
34
|
+
"default": "./dist/config.js"
|
|
37
35
|
},
|
|
38
36
|
"./style.css": {
|
|
39
|
-
"import":
|
|
40
|
-
|
|
41
|
-
"default": "./dist/style.css"
|
|
42
|
-
}
|
|
37
|
+
"import": "./dist/style.css",
|
|
38
|
+
"default": "./dist/style.css"
|
|
43
39
|
}
|
|
44
40
|
},
|
|
45
41
|
"scripts": {
|