payload-richtext-tiptap 0.0.145 → 0.0.147
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/src/fields/TiptapEditor/extensions/MultiColumn/Columns.js +3 -3
- package/dist/src/fields/TiptapEditor/extensions/MultiColumn/Columns.js.map +1 -1
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/TableOfContentsNode.d.ts +10 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/TableOfContentsNode.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/TableOfContentsNode.js +55 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/TableOfContentsNode.js.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/index.d.ts +2 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/index.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/index.js +3 -0
- package/dist/src/fields/TiptapEditor/extensions/TableOfContentsNode/index.js.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/VideoBlock/components/videojs/quality-selector/events.d.ts.map +1 -1
- package/dist/src/fields/TiptapEditor/extensions/error-boundary.d.ts +15 -0
- package/dist/src/fields/TiptapEditor/extensions/error-boundary.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/error-boundary.js +35 -0
- package/dist/src/fields/TiptapEditor/extensions/error-boundary.js.map +1 -0
- package/dist/src/fields/TiptapEditor/extensions/extension-kit.d.ts +1 -1
- package/dist/src/fields/TiptapEditor/extensions/serverside/ServersideTiptapBody.js +1 -1
- package/dist/src/fields/TiptapEditor/extensions/serverside/ServersideTiptapBody.js.map +1 -1
- package/dist/src/fields/TiptapEditor/features/Sidebar/Sidebar.d.ts +8 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/Sidebar.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/Sidebar.js +32 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/Sidebar.js.map +1 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/index.d.ts +2 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/index.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/index.js +3 -0
- package/dist/src/fields/TiptapEditor/features/Sidebar/index.js.map +1 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/TableOfContents.d.ts +8 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/TableOfContents.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/TableOfContents.js +57 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/TableOfContents.js.map +1 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/index.d.ts +2 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/index.d.ts.map +1 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/index.js +3 -0
- package/dist/src/fields/TiptapEditor/features/TableOfContents/index.js.map +1 -0
- package/dist/src/fields/TiptapEditor/hooks/useBlockEditor.d.ts.map +1 -1
- package/dist/src/fields/TiptapEditor/hooks/useBlockEditor.js +1 -4
- package/dist/src/fields/TiptapEditor/hooks/useBlockEditor.js.map +1 -1
- package/dist/src/fields/TiptapEditor/lib/tiptapSchema.d.ts +68 -68
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +30 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payload-richtext-tiptap",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.147",
|
|
4
4
|
"description": "Rich text tiptap for Payload CMS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"payload",
|
|
@@ -21,11 +21,21 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"author": "Payload <dev@payloadcms.com> (https://payloadcms.com)",
|
|
23
23
|
"type": "module",
|
|
24
|
-
"main": "
|
|
25
|
-
"types": "
|
|
24
|
+
"main": "dist/src/index.js",
|
|
25
|
+
"types": "dist/src/index.d.ts",
|
|
26
26
|
"files": [
|
|
27
27
|
"dist/**/*"
|
|
28
28
|
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "pnpm build:css && pnpm build:types && pnpm build:swc && pnpm build:fonts",
|
|
31
|
+
"build:fonts": "copyfiles -u 1 src/fonts/fonts/**/* dist/src/",
|
|
32
|
+
"build:css": "tailwindcss build -i src/styles.scss -o dist/src/styles.css --minify && tailwindcss build -i src/styles/article-custom.css -o dist/src/article-custom.css --minify && tailwindcss build -i src/styles/globals.css -o dist/src/globals.css --minify && tailwindcss build -i src/styles/mobile.css -o dist/src/mobile.css --minify",
|
|
33
|
+
"build:swc": "swc ./src -d ./dist/src --config-file .swcrc --strip-leading-paths",
|
|
34
|
+
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
35
|
+
"clean": "rimraf {dist,*.tsbuildinfo}",
|
|
36
|
+
"prepublishOnly": " pnpm build",
|
|
37
|
+
"test": "echo \"No tests available.\""
|
|
38
|
+
},
|
|
29
39
|
"sideEffects": false,
|
|
30
40
|
"dependencies": {
|
|
31
41
|
"@ai-sdk/openai": "^1.1.9",
|
|
@@ -165,7 +175,21 @@
|
|
|
165
175
|
"react-dom": "^19.0.0 || ^19.0.0-rc-f994737d14-20240522"
|
|
166
176
|
},
|
|
167
177
|
"publishConfig": {
|
|
168
|
-
"
|
|
178
|
+
"exports": {
|
|
179
|
+
".": {
|
|
180
|
+
"import": "./dist/src/index.js",
|
|
181
|
+
"types": "./dist/src/index.d.ts",
|
|
182
|
+
"default": "./dist/src/index.js"
|
|
183
|
+
},
|
|
184
|
+
"./types": {
|
|
185
|
+
"import": "./dist/exports/types.js",
|
|
186
|
+
"types": "./dist/exports/types.d.ts",
|
|
187
|
+
"default": "./dist/exports/types.js"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"main": "./dist/src/index.js",
|
|
191
|
+
"registry": "https://registry.npmjs.org/",
|
|
192
|
+
"types": "./dist/src/index.d.ts"
|
|
169
193
|
},
|
|
170
194
|
"homepage:": "https://payloadcms.com",
|
|
171
195
|
"overrides": {
|
|
@@ -176,25 +200,5 @@
|
|
|
176
200
|
"url": "https://github.com/payloadcms/payload/issues"
|
|
177
201
|
},
|
|
178
202
|
"homepage": "https://github.com/payloadcms/payload#readme",
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
"build:fonts": "copyfiles -u 1 src/fonts/fonts/**/* dist/src/",
|
|
182
|
-
"build:css": "tailwindcss build -i src/styles.scss -o dist/src/styles.css --minify && tailwindcss build -i src/styles/article-custom.css -o dist/src/article-custom.css --minify && tailwindcss build -i src/styles/globals.css -o dist/src/globals.css --minify && tailwindcss build -i src/styles/mobile.css -o dist/src/mobile.css --minify",
|
|
183
|
-
"build:swc": "swc ./src -d ./dist/src --config-file .swcrc --strip-leading-paths",
|
|
184
|
-
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
185
|
-
"clean": "rimraf {dist,*.tsbuildinfo}",
|
|
186
|
-
"test": "echo \"No tests available.\""
|
|
187
|
-
},
|
|
188
|
-
"exports": {
|
|
189
|
-
".": {
|
|
190
|
-
"import": "./dist/src/index.js",
|
|
191
|
-
"types": "./dist/src/index.d.ts",
|
|
192
|
-
"default": "./dist/src/index.js"
|
|
193
|
-
},
|
|
194
|
-
"./types": {
|
|
195
|
-
"import": "./dist/exports/types.js",
|
|
196
|
-
"types": "./dist/exports/types.d.ts",
|
|
197
|
-
"default": "./dist/exports/types.js"
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
}
|
|
203
|
+
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
|
|
204
|
+
}
|