tinacms 2.9.3 → 2.9.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/index.js +1098 -1080
- package/dist/index.mjs +1029 -1009
- package/dist/toolkit/components/ui/sonner.d.ts +12 -0
- package/dist/toolkit/form-builder/create-branch-modal.d.ts +13 -0
- package/dist/toolkit/form-builder/form-builder.d.ts +0 -12
- package/dist/toolkit/form-builder/index.d.ts +1 -0
- package/package.json +6 -4
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Toaster as Sonner } from 'sonner';
|
|
3
|
+
type ToasterProps = React.ComponentProps<typeof Sonner>;
|
|
4
|
+
declare const toast: {
|
|
5
|
+
success: (message: string | React.ReactNode, options?: any) => string | number;
|
|
6
|
+
error: (message: string | React.ReactNode, options?: any) => string | number;
|
|
7
|
+
warning: (message: string | React.ReactNode, options?: any) => string | number;
|
|
8
|
+
info: (message: string | React.ReactNode, options?: any) => string | number;
|
|
9
|
+
dismiss: (id?: number | string) => string | number;
|
|
10
|
+
};
|
|
11
|
+
declare const Toaster: ({ ...props }: ToasterProps) => React.JSX.Element;
|
|
12
|
+
export { toast, Toaster };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare const CreateBranchModal: ({ close, safeSubmit, path, values, crudType, }: {
|
|
3
|
+
safeSubmit: () => Promise<void>;
|
|
4
|
+
close: () => void;
|
|
5
|
+
path: string;
|
|
6
|
+
values: Record<string, unknown>;
|
|
7
|
+
crudType: string;
|
|
8
|
+
}) => React.JSX.Element;
|
|
9
|
+
export declare const PrefixedTextField: ({ label, prefix, ...props }: {
|
|
10
|
+
[x: string]: any;
|
|
11
|
+
label?: any;
|
|
12
|
+
prefix?: string;
|
|
13
|
+
}) => React.JSX.Element;
|
|
@@ -29,15 +29,3 @@ export declare const CreateBranchModel: ({ close, safeSubmit, relativePath, valu
|
|
|
29
29
|
values: Record<string, unknown>;
|
|
30
30
|
crudType: string;
|
|
31
31
|
}) => React.JSX.Element;
|
|
32
|
-
export declare const CreateBranchModal: ({ close, safeSubmit, path, values, crudType, }: {
|
|
33
|
-
safeSubmit: () => Promise<void>;
|
|
34
|
-
close: () => void;
|
|
35
|
-
path: string;
|
|
36
|
-
values: Record<string, unknown>;
|
|
37
|
-
crudType: string;
|
|
38
|
-
}) => React.JSX.Element;
|
|
39
|
-
export declare const PrefixedTextField: ({ label, prefix, ...props }: {
|
|
40
|
-
[x: string]: any;
|
|
41
|
-
label?: any;
|
|
42
|
-
prefix?: string;
|
|
43
|
-
}) => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "2.9.
|
|
3
|
+
"version": "2.9.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -137,13 +137,15 @@
|
|
|
137
137
|
"react-icons": "^5.4.0",
|
|
138
138
|
"react-router-dom": "6.3.0",
|
|
139
139
|
"react-use": "^17.6.0",
|
|
140
|
+
"sonner": "^2.0.7",
|
|
140
141
|
"tailwind-merge": "^2.6.0",
|
|
141
142
|
"webfontloader": "1.6.28",
|
|
142
143
|
"yup": "^1.6.1",
|
|
143
144
|
"zod": "^3.24.2",
|
|
145
|
+
"dompurify": "^3.3.0",
|
|
144
146
|
"@tinacms/schema-tools": "1.9.1",
|
|
145
|
-
"@tinacms/
|
|
146
|
-
"@tinacms/
|
|
147
|
+
"@tinacms/search": "1.1.1",
|
|
148
|
+
"@tinacms/mdx": "1.8.1"
|
|
147
149
|
},
|
|
148
150
|
"devDependencies": {
|
|
149
151
|
"@graphql-tools/utils": "^10.8.1",
|
|
@@ -163,11 +165,11 @@
|
|
|
163
165
|
"@types/react-color": "^3.0.13",
|
|
164
166
|
"@types/react-dom": "^18.3.5",
|
|
165
167
|
"@types/yup": "^0.32.0",
|
|
166
|
-
"lowlight": "^3.3.0",
|
|
167
168
|
"happy-dom": "15.10.2",
|
|
168
169
|
"identity-obj-proxy": "^3.0.0",
|
|
169
170
|
"isomorphic-fetch": "^3.0.0",
|
|
170
171
|
"jest-file-snapshot": "^0.7.0",
|
|
172
|
+
"lowlight": "^3.3.0",
|
|
171
173
|
"next": "14.2.10",
|
|
172
174
|
"react": "^18.3.1",
|
|
173
175
|
"react-dom": "^18.3.1",
|