@standardnotes/bold-editor 1.6.3

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.
Files changed (57) hide show
  1. package/.babelrc +11 -0
  2. package/.eslintignore +3 -0
  3. package/.eslintrc +29 -0
  4. package/CHANGELOG.md +82 -0
  5. package/LICENSE +661 -0
  6. package/README.md +98 -0
  7. package/app/App.js +18 -0
  8. package/app/components/Editor.js +415 -0
  9. package/app/main.js +8 -0
  10. package/app/stylesheets/main.scss +272 -0
  11. package/dist/dist.css +1 -0
  12. package/dist/dist.min.js +2 -0
  13. package/dist/dist.min.js.LICENSE.txt +42 -0
  14. package/dist/filesafe-js/EncryptionWorker.js +2 -0
  15. package/dist/filesafe-js/EncryptionWorker.js.LICENSE.txt +5 -0
  16. package/dist/index.html +1 -0
  17. package/dist/vendor.css +6 -0
  18. package/dist/vendor.js +1 -0
  19. package/editor.index.ejs +14 -0
  20. package/editor_bar.png +0 -0
  21. package/ext.json.sample +9 -0
  22. package/package.json +54 -0
  23. package/redactor/plugins/alignment/alignment.js +55 -0
  24. package/redactor/plugins/alignment/alignment.min.js +1 -0
  25. package/redactor/plugins/counter/counter.js +76 -0
  26. package/redactor/plugins/counter/counter.min.js +1 -0
  27. package/redactor/plugins/filesafe/filesafe.js +70 -0
  28. package/redactor/plugins/filesafe/filesafe.min.js +70 -0
  29. package/redactor/plugins/fontcolor/fontcolor.js +184 -0
  30. package/redactor/plugins/fontcolor/fontcolor.min.js +1 -0
  31. package/redactor/plugins/fontfamily/fontfamily.js +59 -0
  32. package/redactor/plugins/fontfamily/fontfamily.min.js +1 -0
  33. package/redactor/plugins/fontsize/fontsize.js +58 -0
  34. package/redactor/plugins/fontsize/fontsize.min.js +1 -0
  35. package/redactor/plugins/imagemanager/imagemanager.js +82 -0
  36. package/redactor/plugins/imagemanager/imagemanager.min.js +1 -0
  37. package/redactor/plugins/inlinestyle/inlinestyle.css +34 -0
  38. package/redactor/plugins/inlinestyle/inlinestyle.js +62 -0
  39. package/redactor/plugins/inlinestyle/inlinestyle.min.css +1 -0
  40. package/redactor/plugins/inlinestyle/inlinestyle.min.js +1 -0
  41. package/redactor/plugins/specialchars/specialchars.js +78 -0
  42. package/redactor/plugins/specialchars/specialchars.min.js +1 -0
  43. package/redactor/plugins/table/table.js +477 -0
  44. package/redactor/plugins/table/table.min.js +1 -0
  45. package/redactor/plugins/textdirection/textdirection.js +44 -0
  46. package/redactor/plugins/textdirection/textdirection.min.js +1 -0
  47. package/redactor/plugins/textexpander/textexpander.js +64 -0
  48. package/redactor/plugins/textexpander/textexpander.min.js +1 -0
  49. package/redactor/plugins/variable/variable.css +23 -0
  50. package/redactor/plugins/variable/variable.js +222 -0
  51. package/redactor/plugins/variable/variable.min.css +1 -0
  52. package/redactor/plugins/variable/variable.min.js +1 -0
  53. package/redactor/src/redactor.min.css +1 -0
  54. package/redactor/src/redactor.min.js +1 -0
  55. package/webpack.config.js +82 -0
  56. package/webpack.dev.js +20 -0
  57. package/webpack.prod.js +11 -0
package/.babelrc ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "presets": [
3
+ [
4
+ "@babel/preset-env",
5
+ {
6
+ "modules": false
7
+ }
8
+ ],
9
+ "@babel/preset-react"
10
+ ]
11
+ }
package/.eslintignore ADDED
@@ -0,0 +1,3 @@
1
+ node_modules/**
2
+ dist/**
3
+ webpack.*
package/.eslintrc ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "env": {
3
+ "browser": true,
4
+ "es6": true
5
+ },
6
+ "extends": [
7
+ "@standardnotes/eslint-config-extensions",
8
+ "plugin:react/recommended"
9
+ ],
10
+ "parser": "@babel/eslint-parser",
11
+ "parserOptions": {
12
+ "ecmaVersion": 11,
13
+ "ecmaFeatures": {
14
+ "jsx": true
15
+ },
16
+ "sourceType": "module"
17
+ },
18
+ "plugins": [
19
+ "react"
20
+ ],
21
+ "settings": {
22
+ "react": {
23
+ "version": "detect"
24
+ }
25
+ },
26
+ "globals": {
27
+ "$R": true
28
+ }
29
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,82 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [1.6.3](https://github.com/standardnotes/plugins/compare/@standardnotes/bold-editor@1.6.2...@standardnotes/bold-editor@1.6.3) (2022-11-04)
7
+
8
+ **Note:** Version bump only for package @standardnotes/bold-editor
9
+
10
+ ## [1.6.2](https://github.com/standardnotes/plugins/compare/@standardnotes/bold-editor@1.6.1...@standardnotes/bold-editor@1.6.2) (2022-11-04)
11
+
12
+ **Note:** Version bump only for package @standardnotes/bold-editor
13
+
14
+ ## [1.6.1](https://github.com/standardnotes/plugins/compare/@standardnotes/bold-editor@1.6.0...@standardnotes/bold-editor@1.6.1) (2022-11-04)
15
+
16
+ **Note:** Version bump only for package @standardnotes/bold-editor
17
+
18
+ # [1.6.0](https://github.com/standardnotes/plugins/compare/@standardnotes/bold-editor@1.5.0...@standardnotes/bold-editor@1.6.0) (2022-11-04)
19
+
20
+ ### Features
21
+
22
+ * add core plugins ([b607787](https://github.com/standardnotes/plugins/commit/b60778762306f5647cb715102eab23083b266718))
23
+
24
+ # [1.5.0](https://github.com/standardnotes/plugins/compare/@standardnotes/bold-editor@1.4.0...@standardnotes/bold-editor@1.5.0) (2022-10-04)
25
+
26
+ ### Features
27
+
28
+ * add advanced checklist editor ([#3](https://github.com/standardnotes/plugins/issues/3)) ([71ae54d](https://github.com/standardnotes/plugins/commit/71ae54de2b1563c39a885d1ae6d3b30c0ba72eae))
29
+
30
+ # 1.4.0 (2022-07-01)
31
+
32
+ ### Features
33
+
34
+ * bold editor ([#1](https://github.com/standardnotes/plugins/issues/1)) ([6a1e13f](https://github.com/standardnotes/plugins/commit/6a1e13f65adeadca2c6c3dc20c390985db6c7389))
35
+
36
+ ## [1.3.10](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.10-alpha.0...@standardnotes/bold-editor@1.3.10) (2022-06-22)
37
+
38
+ **Note:** Version bump only for package @standardnotes/bold-editor
39
+
40
+ ## [1.3.10-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.9...@standardnotes/bold-editor@1.3.10-alpha.0) (2022-06-22)
41
+
42
+ ### Bug Fixes
43
+
44
+ * components scripts ([#1136](https://github.com/standardnotes/app/issues/1136)) ([e80b4d0](https://github.com/standardnotes/app/commit/e80b4d0ffad495c758b593c30e1c4c754dda9b7e))
45
+
46
+ ## [1.3.9](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.9-alpha.0...@standardnotes/bold-editor@1.3.9) (2022-06-18)
47
+
48
+ **Note:** Version bump only for package @standardnotes/bold-editor
49
+
50
+ ## [1.3.9-alpha.0](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.8...@standardnotes/bold-editor@1.3.9-alpha.0) (2022-06-18)
51
+
52
+ ### Bug Fixes
53
+
54
+ * plus editor icons ([#1120](https://github.com/standardnotes/app/issues/1120)) ([ba65948](https://github.com/standardnotes/app/commit/ba65948364a3fca7bfa5005c56802102c73ccd99))
55
+
56
+ ## 1.3.8 (2022-06-16)
57
+
58
+ **Note:** Version bump only for package @standardnotes/bold-editor
59
+
60
+ ## 1.3.7 (2022-06-16)
61
+
62
+ **Note:** Version bump only for package @standardnotes/bold-editor
63
+
64
+ ## [1.3.6](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.6-alpha.3...@standardnotes/bold-editor@1.3.6) (2022-06-16)
65
+
66
+ **Note:** Version bump only for package @standardnotes/bold-editor
67
+
68
+ ## [1.3.6-alpha.3](https://github.com/standardnotes/app/compare/@standardnotes/bold-editor@1.3.6-alpha.2...@standardnotes/bold-editor@1.3.6-alpha.3) (2022-06-16)
69
+
70
+ **Note:** Version bump only for package @standardnotes/bold-editor
71
+
72
+ ## 1.3.6-alpha.2 (2022-06-16)
73
+
74
+ **Note:** Version bump only for package @standardnotes/bold-editor
75
+
76
+ ## 1.3.6-alpha.1 (2022-06-16)
77
+
78
+ **Note:** Version bump only for package @standardnotes/bold-editor
79
+
80
+ ## 1.3.6-alpha.0 (2022-06-15)
81
+
82
+ **Note:** Version bump only for package @standardnotes/bold-editor