gzkx-editor 0.0.0
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/.claude/settings.local.json +12 -0
- package/.github/FUNDING.yml +3 -0
- package/.github/ISSUE_TEMPLATE.md +9 -0
- package/ARCHITECTURE.md +1011 -0
- package/CONTRIBUTING.md +104 -0
- package/LICENSE +19 -0
- package/PUBLISH.md +286 -0
- package/README.md +80 -0
- package/STARTUP.md +535 -0
- package/USAGE.md +789 -0
- package/assets/prosemirror_dark.svg +1 -0
- package/assets/prosemirror_light.svg +1 -0
- package/bin/pm +1 -0
- package/bin/pm.js +384 -0
- package/core/build.mjs +95 -0
- package/core/core-entry.mjs +19 -0
- package/core/dist/index.cjs +20951 -0
- package/core/dist/index.js +20717 -0
- package/core/package.json +24 -0
- package/core/src/index.ts +21 -0
- package/core/tsconfig.json +35 -0
- package/demo/bench/example.js +75 -0
- package/demo/bench/index.html +11 -0
- package/demo/bench/index.js +67 -0
- package/demo/bench/mutate.js +14 -0
- package/demo/bench/type.js +40 -0
- package/demo/demo.css +33 -0
- package/demo/demo.ts +16 -0
- package/demo/example-setup/style/style.css +83 -0
- package/demo/gapcursor/style/gapcursor.css +25 -0
- package/demo/img.png +0 -0
- package/demo/index.html +75 -0
- package/demo/menu/style/menu.css +169 -0
- package/demo/test/mocha.css +1 -0
- package/demo/test/mocha.js +1 -0
- package/demo/view/style/prosemirror.css +54 -0
- package/package.json +36 -0
- package/tsconfig.json +37 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(node:*)",
|
|
5
|
+
"Bash(mkdir -p D:/work/prosemirror/demo/view/style D:/work/prosemirror/demo/menu/style D:/work/prosemirror/demo/example-setup/style D:/work/prosemirror/demo/gapcursor/style)",
|
|
6
|
+
"Bash(cp D:/work/prosemirror/view/style/*.css D:/work/prosemirror/demo/view/style/)",
|
|
7
|
+
"Bash(cp D:/work/prosemirror/menu/style/*.css D:/work/prosemirror/demo/menu/style/)",
|
|
8
|
+
"Bash(cp D:/work/prosemirror/example-setup/style/*.css D:/work/prosemirror/demo/example-setup/style/)",
|
|
9
|
+
"Bash(cp D:/work/prosemirror/gapcursor/style/*.css D:/work/prosemirror/demo/gapcursor/style/)"
|
|
10
|
+
]
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
|
|
3
|
+
Please provide:
|
|
4
|
+
|
|
5
|
+
- Necessary steps to reproduce the issue. If the editor has to be set up in a specific way, running code (minimal code, not a dump of your project) is very useful.
|
|
6
|
+
|
|
7
|
+
- If this might be browser-related, tell us the browsers and platforms you tested on.
|
|
8
|
+
|
|
9
|
+
-->
|