@edifice.io/wiki 3.4.0-develop-pedago.2 → 3.5.0-develop-pedago.1
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/lib/components/WikiApp/providers/WikiAppProvider.context.d.ts +2 -2
- package/lib/components/WikiApp/providers/WikiAppProvider.d.ts +2 -2
- package/lib/index.d.ts +2 -1
- package/lib/index2.js +354 -353
- package/lib/models/page.d.ts +1 -0
- package/lib/routes/page/list/list.d.ts +1 -0
- package/lib/routes/wiki/index.d.ts +1 -0
- package/lib/services/api/index.d.ts +1 -0
- package/lib/services/queries/wiki/wiki.d.ts +5 -0
- package/lib/utils/dtoToWiki.d.ts +1 -0
- package/package.json +4 -1
- /package/lib/components/WikiApp/{components/WikiApp.d.ts → WikiApp.d.ts} +0 -0
package/lib/models/page.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export declare const wikiQueryOptions: {
|
|
|
24
24
|
_id: string;
|
|
25
25
|
title: string;
|
|
26
26
|
content: string;
|
|
27
|
+
jsonContent?: any;
|
|
27
28
|
contentPlain: string;
|
|
28
29
|
contentVersion: number;
|
|
29
30
|
author: string;
|
|
@@ -65,6 +66,7 @@ export declare const wikiQueryOptions: {
|
|
|
65
66
|
_id: string;
|
|
66
67
|
title: string;
|
|
67
68
|
content: string;
|
|
69
|
+
jsonContent?: any;
|
|
68
70
|
contentPlain: string;
|
|
69
71
|
contentVersion: number;
|
|
70
72
|
author: string;
|
|
@@ -107,6 +109,7 @@ export declare const wikiQueryOptions: {
|
|
|
107
109
|
_id: string;
|
|
108
110
|
title: string;
|
|
109
111
|
content: string;
|
|
112
|
+
jsonContent?: any;
|
|
110
113
|
contentPlain: string;
|
|
111
114
|
contentVersion: number;
|
|
112
115
|
author: string;
|
|
@@ -150,6 +153,7 @@ export declare const wikiQueryOptions: {
|
|
|
150
153
|
_id: string;
|
|
151
154
|
title: string;
|
|
152
155
|
content: string;
|
|
156
|
+
jsonContent?: any;
|
|
153
157
|
contentPlain: string;
|
|
154
158
|
contentVersion: number;
|
|
155
159
|
author: string;
|
|
@@ -197,6 +201,7 @@ export declare const useGetWiki: (wikiId: string) => import('@tanstack/react-que
|
|
|
197
201
|
_id: string;
|
|
198
202
|
title: string;
|
|
199
203
|
content: string;
|
|
204
|
+
jsonContent?: any;
|
|
200
205
|
contentPlain: string;
|
|
201
206
|
contentVersion: number;
|
|
202
207
|
author: string;
|
package/lib/utils/dtoToWiki.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edifice.io/wiki",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0-develop-pedago.1",
|
|
4
4
|
"description": "Wiki application",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"author": "Edifice",
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
"vite-tsconfig-paths": "5.1.4",
|
|
68
68
|
"vitest": "2.1.9"
|
|
69
69
|
},
|
|
70
|
+
"resolutions": {
|
|
71
|
+
"katex": "0.16.33"
|
|
72
|
+
},
|
|
70
73
|
"exports": {
|
|
71
74
|
"./lib": {
|
|
72
75
|
"import": "./lib/index.js",
|
|
File without changes
|