@zpress/kit 0.2.3 → 0.2.4
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/config.d.ts +12 -9
- package/dist/index.d.ts +13 -10
- package/package.json +4 -4
package/dist/config.d.ts
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
import { CardConfig } from '@zpress/core';
|
|
2
2
|
import { defineConfig } from '@zpress/core';
|
|
3
|
-
import { Entry } from '@zpress/core';
|
|
4
3
|
import { Feature } from '@zpress/core';
|
|
5
4
|
import { Frontmatter } from '@zpress/core';
|
|
6
5
|
import { IconColor } from '@zpress/core';
|
|
7
6
|
import { IconConfig } from '@zpress/core';
|
|
8
7
|
import { IconId } from '@zpress/core';
|
|
9
8
|
import { NavItem } from '@zpress/core';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
9
|
+
import { Section } from '@zpress/core';
|
|
10
|
+
import { SidebarConfig } from '@zpress/core';
|
|
11
|
+
import { SidebarLink } from '@zpress/core';
|
|
12
|
+
import { Workspace } from '@zpress/core';
|
|
13
|
+
import { WorkspaceCategory } from '@zpress/core';
|
|
13
14
|
import { ZpressConfig } from '@zpress/core';
|
|
14
15
|
|
|
15
16
|
export { CardConfig }
|
|
16
17
|
|
|
17
18
|
export { defineConfig }
|
|
18
19
|
|
|
19
|
-
export { Entry }
|
|
20
|
-
|
|
21
20
|
export { Feature }
|
|
22
21
|
|
|
23
22
|
export { Frontmatter }
|
|
@@ -30,11 +29,15 @@ export { IconId }
|
|
|
30
29
|
|
|
31
30
|
export { NavItem }
|
|
32
31
|
|
|
33
|
-
export {
|
|
32
|
+
export { Section }
|
|
33
|
+
|
|
34
|
+
export { SidebarConfig }
|
|
35
|
+
|
|
36
|
+
export { SidebarLink }
|
|
34
37
|
|
|
35
|
-
export {
|
|
38
|
+
export { Workspace }
|
|
36
39
|
|
|
37
|
-
export {
|
|
40
|
+
export { WorkspaceCategory }
|
|
38
41
|
|
|
39
42
|
export { ZpressConfig }
|
|
40
43
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { CardConfig } from '@zpress/core';
|
|
|
2
2
|
import { createPaths } from '@zpress/core';
|
|
3
3
|
import { createRspressConfig } from '@zpress/ui';
|
|
4
4
|
import { defineConfig } from '@zpress/core';
|
|
5
|
-
import { Entry } from '@zpress/core';
|
|
6
5
|
import { Feature } from '@zpress/core';
|
|
7
6
|
import { Frontmatter } from '@zpress/core';
|
|
8
7
|
import { hasGlobChars } from '@zpress/core';
|
|
@@ -15,7 +14,6 @@ import { loadManifest } from '@zpress/core';
|
|
|
15
14
|
import { Manifest } from '@zpress/core';
|
|
16
15
|
import { ManifestEntry } from '@zpress/core';
|
|
17
16
|
import { NavItem } from '@zpress/core';
|
|
18
|
-
import { OpenAPIConfig } from '@zpress/core';
|
|
19
17
|
import { PageData } from '@zpress/core';
|
|
20
18
|
import { Paths } from '@zpress/core';
|
|
21
19
|
import { ResolvedEntry } from '@zpress/core';
|
|
@@ -23,13 +21,16 @@ import { ResolvedPage } from '@zpress/core';
|
|
|
23
21
|
import { ResolvedSection } from '@zpress/core';
|
|
24
22
|
import { resolveEntries } from '@zpress/core';
|
|
25
23
|
import { Result } from '@zpress/core';
|
|
24
|
+
import { Section } from '@zpress/core';
|
|
25
|
+
import { SidebarConfig } from '@zpress/core';
|
|
26
26
|
import { SidebarItem } from '@zpress/core';
|
|
27
|
+
import { SidebarLink } from '@zpress/core';
|
|
27
28
|
import { sync } from '@zpress/core';
|
|
28
29
|
import { SyncContext } from '@zpress/core';
|
|
29
30
|
import { SyncOptions } from '@zpress/core';
|
|
30
31
|
import { SyncResult } from '@zpress/core';
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
32
|
+
import { Workspace } from '@zpress/core';
|
|
33
|
+
import { WorkspaceCategory } from '@zpress/core';
|
|
33
34
|
import { ZpressConfig } from '@zpress/core';
|
|
34
35
|
import { zpressPlugin } from '@zpress/ui';
|
|
35
36
|
|
|
@@ -41,8 +42,6 @@ export { createRspressConfig }
|
|
|
41
42
|
|
|
42
43
|
export { defineConfig }
|
|
43
44
|
|
|
44
|
-
export { Entry }
|
|
45
|
-
|
|
46
45
|
export { Feature }
|
|
47
46
|
|
|
48
47
|
export { Frontmatter }
|
|
@@ -67,8 +66,6 @@ export { ManifestEntry }
|
|
|
67
66
|
|
|
68
67
|
export { NavItem }
|
|
69
68
|
|
|
70
|
-
export { OpenAPIConfig }
|
|
71
|
-
|
|
72
69
|
export { PageData }
|
|
73
70
|
|
|
74
71
|
export { Paths }
|
|
@@ -83,8 +80,14 @@ export { resolveEntries }
|
|
|
83
80
|
|
|
84
81
|
export { Result }
|
|
85
82
|
|
|
83
|
+
export { Section }
|
|
84
|
+
|
|
85
|
+
export { SidebarConfig }
|
|
86
|
+
|
|
86
87
|
export { SidebarItem }
|
|
87
88
|
|
|
89
|
+
export { SidebarLink }
|
|
90
|
+
|
|
88
91
|
export { sync }
|
|
89
92
|
|
|
90
93
|
export { SyncContext }
|
|
@@ -93,9 +96,9 @@ export { SyncOptions }
|
|
|
93
96
|
|
|
94
97
|
export { SyncResult }
|
|
95
98
|
|
|
96
|
-
export {
|
|
99
|
+
export { Workspace }
|
|
97
100
|
|
|
98
|
-
export {
|
|
101
|
+
export { WorkspaceCategory }
|
|
99
102
|
|
|
100
103
|
export { ZpressConfig }
|
|
101
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zpress/kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Documentation framework powered by Rspress with a config-driven information architecture",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"docs",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"provenance": true
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@zpress/cli": "0.3.
|
|
42
|
-
"@zpress/core": "0.
|
|
43
|
-
"@zpress/ui": "0.
|
|
41
|
+
"@zpress/cli": "0.3.4",
|
|
42
|
+
"@zpress/core": "0.7.0",
|
|
43
|
+
"@zpress/ui": "0.7.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@rslib/core": "^0.20.0",
|