@rolder/kit 3.0.0-alpha.10 → 3.0.0-alpha.12
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 +0 -3
- package/dist/index.js +1 -4
- package/package.json +33 -30
package/dist/index.d.ts
CHANGED
|
@@ -18,9 +18,6 @@ export { encryptionFn } from './surreal/encryption';
|
|
|
18
18
|
export { Editor, useEditor } from './ui/editor';
|
|
19
19
|
export { DefaultError, DefaultNotFound, defaultErrorNotification, Forbidden, } from './ui/error';
|
|
20
20
|
export { AnimatedChevron } from './ui/AnimatedChevron';
|
|
21
|
-
export { useAppForm, useFieldContext, withForm, blurOnError, fieldsSchema, } from './ui/form';
|
|
22
21
|
export { HoverPaper, usePaperHover } from './ui/hoverPaper';
|
|
23
|
-
export { JsonInput } from './ui/JsonInput';
|
|
24
22
|
export { RouterLink } from './ui/RouterLink';
|
|
25
|
-
export { SaveInput } from './ui/saveInput';
|
|
26
23
|
export { ScrollArea, useScrollArea, type ScrollAreaContextValue, type ScrollAreaHook, type ScrollAreaProps, type ScrollAreaState, type ScrollButtonProps, type ScrollPosition, } from './ui/scrollArea';
|
package/dist/index.js
CHANGED
|
@@ -17,10 +17,7 @@ import { encryptionFn } from "./surreal/encryption.js";
|
|
|
17
17
|
import { Editor, useEditor } from "./ui/editor/index.js";
|
|
18
18
|
import { DefaultError, DefaultNotFound, Forbidden, defaultErrorNotification } from "./ui/error/index.js";
|
|
19
19
|
import { AnimatedChevron } from "./ui/AnimatedChevron.js";
|
|
20
|
-
import { blurOnError, fieldsSchema, useAppForm, useFieldContext, withForm } from "./ui/form/index.js";
|
|
21
20
|
import { HoverPaper, usePaperHover } from "./ui/hoverPaper/index.js";
|
|
22
|
-
import { JsonInput } from "./ui/JsonInput.js";
|
|
23
21
|
import { RouterLink } from "./ui/RouterLink.js";
|
|
24
|
-
import { SaveInput } from "./ui/saveInput/index.js";
|
|
25
22
|
import { ScrollArea, useScrollArea } from "./ui/scrollArea/index.js";
|
|
26
|
-
export { AnimatedChevron, Conversation, DefaultApp, DefaultError, DefaultNotFound, Editor, Forbidden, HoverPaper,
|
|
23
|
+
export { AnimatedChevron, Conversation, DefaultApp, DefaultError, DefaultNotFound, Editor, Forbidden, HoverPaper, PromptInput, RouterLink, ScrollArea, convertFileUIPartBlobToDataURL, defaultErrorNotification, defaultRequestMiddlewares, defaultTheme, deserialize, encryptionFn, getCookie, getDB, parseAiMessagePart, setCookie, setCookies, surrealDeleteFn, surrealUnsubscribeFn, useChatMessage, useEditor, useMutation, useMutationWithInvalidate, usePaperHover, useScrollArea };
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolder/kit",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.12",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
5
8
|
"exports": {
|
|
6
9
|
".": {
|
|
7
10
|
"types": "./dist/index.d.ts",
|
|
@@ -32,36 +35,36 @@
|
|
|
32
35
|
"typescript": "^5.9.3"
|
|
33
36
|
},
|
|
34
37
|
"peerDependencies": {
|
|
35
|
-
"react": "
|
|
36
|
-
"react-dom": "
|
|
37
|
-
"clsx": "^2.
|
|
38
|
-
"@tiptap/extension-highlight": "^3.
|
|
39
|
-
"@tiptap/extension-placeholder": "^3.
|
|
40
|
-
"@tiptap/extension-table": "^3.
|
|
41
|
-
"@tiptap/extension-task-item": "^3.
|
|
42
|
-
"@tiptap/extension-task-list": "^3.
|
|
43
|
-
"@tiptap/extension-text-align": "^3.
|
|
44
|
-
"@tiptap/starter-kit": "^3.
|
|
45
|
-
"@codemirror/lang-json": "^6.
|
|
46
|
-
"@codemirror/lint": "^6.
|
|
47
|
-
"@uiw/codemirror-theme-vscode": "^4.
|
|
48
|
-
"@uiw/react-codemirror": "^4.
|
|
49
|
-
"@mantine/core": "^8.
|
|
50
|
-
"@mantine/hooks": "^8.
|
|
51
|
-
"@mantine/tiptap": "^8.
|
|
52
|
-
"@mantine/notifications": "^8.
|
|
53
|
-
"@tanstack/react-router": "1.
|
|
54
|
-
"@tanstack/react-form": "1.
|
|
55
|
-
"@tanstack/react-start": "^1.
|
|
56
|
-
"@tanstack/react-query": "^5.
|
|
57
|
-
"@tanstack/react-router-ssr-query": "^1.
|
|
58
|
-
"zod": "^4.
|
|
59
|
-
"js-cookie": "^3.
|
|
60
|
-
"nanostores": "^1.
|
|
38
|
+
"react": "^19.x",
|
|
39
|
+
"react-dom": "^19.x",
|
|
40
|
+
"clsx": "^2.x",
|
|
41
|
+
"@tiptap/extension-highlight": "^3.x",
|
|
42
|
+
"@tiptap/extension-placeholder": "^3.x",
|
|
43
|
+
"@tiptap/extension-table": "^3.x",
|
|
44
|
+
"@tiptap/extension-task-item": "^3.x",
|
|
45
|
+
"@tiptap/extension-task-list": "^3.x",
|
|
46
|
+
"@tiptap/extension-text-align": "^3.x",
|
|
47
|
+
"@tiptap/starter-kit": "^3.x",
|
|
48
|
+
"@codemirror/lang-json": "^6.x",
|
|
49
|
+
"@codemirror/lint": "^6.x",
|
|
50
|
+
"@uiw/codemirror-theme-vscode": "^4.x",
|
|
51
|
+
"@uiw/react-codemirror": "^4.x",
|
|
52
|
+
"@mantine/core": "^8.x",
|
|
53
|
+
"@mantine/hooks": "^8.x",
|
|
54
|
+
"@mantine/tiptap": "^8.x",
|
|
55
|
+
"@mantine/notifications": "^8.x",
|
|
56
|
+
"@tanstack/react-router": "^1.x",
|
|
57
|
+
"@tanstack/react-form": "^1.x",
|
|
58
|
+
"@tanstack/react-start": "^1.x",
|
|
59
|
+
"@tanstack/react-query": "^5.x",
|
|
60
|
+
"@tanstack/react-router-ssr-query": "^1.x",
|
|
61
|
+
"zod": "^4.x",
|
|
62
|
+
"js-cookie": "^3.x",
|
|
63
|
+
"nanostores": "^1.x",
|
|
61
64
|
"surrealdb": "^2.0.0-alpha.16",
|
|
62
|
-
"omgopass": "^3.
|
|
63
|
-
"ai": "^6.
|
|
64
|
-
"streamdown": "^2.
|
|
65
|
+
"omgopass": "^3.x",
|
|
66
|
+
"ai": "^6.x",
|
|
67
|
+
"streamdown": "^2.x"
|
|
65
68
|
},
|
|
66
69
|
"trustedDependencies": [
|
|
67
70
|
"core-js",
|