tinacms 2.7.9 → 2.7.10
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 +751 -22
- package/dist/index.mjs +754 -25
- package/dist/internalClient/index.d.ts +6 -0
- package/dist/react.js +4 -2
- package/dist/react.mjs +4 -2
- package/dist/rich-text/static.d.ts +148 -0
- package/dist/rich-text/static.js +239 -0
- package/dist/rich-text/static.mjs +236 -0
- package/dist/toolkit/react-sidebar/components/VersionInfo.d.ts +2 -0
- package/package.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tinacms",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -29,6 +29,11 @@
|
|
|
29
29
|
"import": "./dist/rich-text/index.mjs",
|
|
30
30
|
"require": "./dist/rich-text/index.js"
|
|
31
31
|
},
|
|
32
|
+
"./dist/rich-text/static": {
|
|
33
|
+
"types": "./dist/rich-text/static.d.ts",
|
|
34
|
+
"import": "./dist/rich-text/static.mjs",
|
|
35
|
+
"require": "./dist/rich-text/static.js"
|
|
36
|
+
},
|
|
32
37
|
"./dist/rich-text/prism": {
|
|
33
38
|
"types": "./dist/rich-text/prism.d.ts",
|
|
34
39
|
"import": "./dist/rich-text/prism.mjs",
|
|
@@ -42,6 +47,7 @@
|
|
|
42
47
|
"entryPoints": [
|
|
43
48
|
"src/index.ts",
|
|
44
49
|
"src/rich-text/index.tsx",
|
|
50
|
+
"src/rich-text/static.tsx",
|
|
45
51
|
"src/rich-text/prism.tsx",
|
|
46
52
|
"src/react.tsx",
|
|
47
53
|
"src/client.ts"
|
|
@@ -155,6 +161,7 @@
|
|
|
155
161
|
"identity-obj-proxy": "^3.0.0",
|
|
156
162
|
"isomorphic-fetch": "^3.0.0",
|
|
157
163
|
"jest-file-snapshot": "^0.7.0",
|
|
164
|
+
"lowlight": "^3.3.0",
|
|
158
165
|
"next": "14.2.10",
|
|
159
166
|
"react": "^18.3.1",
|
|
160
167
|
"react-dom": "^18.3.1",
|