joplin-plugin-rich-tables 1.0.3 → 1.0.5
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/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Provides table editing from the rendered HTML table similar to the Rich text edi
|
|
|
30
30
|
#### Table limitations
|
|
31
31
|
|
|
32
32
|
- Only supports markdown tables (GFM). Doesn't support HTML tables, multi-markdown table extensions, etc...
|
|
33
|
-
-
|
|
33
|
+
- Limited support for multi-line content (you can use shift + enter to add a `<br>` and newlines will be converted to `<br>` for pasted content, but they aren't rendered as line breaks during editing).
|
|
34
34
|
|
|
35
35
|
#### Editing limitations
|
|
36
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "joplin-plugin-rich-tables",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
6
6
|
"prepare": "npm run dist",
|
|
@@ -32,13 +32,14 @@
|
|
|
32
32
|
"webpack-cli": "^4.10.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
+
"@codemirror/commands": "^6.10.0",
|
|
35
36
|
"@codemirror/language": "^6.11.3",
|
|
36
37
|
"@codemirror/state": "^6.5.2",
|
|
37
38
|
"@codemirror/view": "^6.38.8",
|
|
38
|
-
"@codemirror/commands": "^6.10.0",
|
|
39
|
-
"@types/jest": "^30.0.0",
|
|
40
39
|
"@eslint/eslintrc": "^3.3.1",
|
|
41
40
|
"@eslint/js": "^9.39.1",
|
|
41
|
+
"@floating-ui/dom": "^1.7.4",
|
|
42
|
+
"@types/jest": "^30.0.0",
|
|
42
43
|
"@types/node": "^24.10.0",
|
|
43
44
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
44
45
|
"@typescript-eslint/parser": "^8.46.3",
|
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": 1,
|
|
3
3
|
"id": "com.bwat47.rich-tables",
|
|
4
4
|
"app_min_version": "3.3",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"platforms": [
|
|
7
7
|
"desktop",
|
|
8
8
|
"mobile"
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
"src": "images/promo.png",
|
|
44
44
|
"label": "Rich Tables Promo Tile"
|
|
45
45
|
},
|
|
46
|
-
"_publish_hash": "sha256:
|
|
47
|
-
"_publish_commit": "main:
|
|
46
|
+
"_publish_hash": "sha256:57592e176f3f328243a860e1d65dc85cd8bf529c04a862f9de7053ad4e2d3f0a",
|
|
47
|
+
"_publish_commit": "main:64cb1da8c68729b77756c53d5cd380b83d95e31c"
|
|
48
48
|
}
|