@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.
- package/.babelrc +11 -0
- package/.eslintignore +3 -0
- package/.eslintrc +29 -0
- package/CHANGELOG.md +82 -0
- package/LICENSE +661 -0
- package/README.md +98 -0
- package/app/App.js +18 -0
- package/app/components/Editor.js +415 -0
- package/app/main.js +8 -0
- package/app/stylesheets/main.scss +272 -0
- package/dist/dist.css +1 -0
- package/dist/dist.min.js +2 -0
- package/dist/dist.min.js.LICENSE.txt +42 -0
- package/dist/filesafe-js/EncryptionWorker.js +2 -0
- package/dist/filesafe-js/EncryptionWorker.js.LICENSE.txt +5 -0
- package/dist/index.html +1 -0
- package/dist/vendor.css +6 -0
- package/dist/vendor.js +1 -0
- package/editor.index.ejs +14 -0
- package/editor_bar.png +0 -0
- package/ext.json.sample +9 -0
- package/package.json +54 -0
- package/redactor/plugins/alignment/alignment.js +55 -0
- package/redactor/plugins/alignment/alignment.min.js +1 -0
- package/redactor/plugins/counter/counter.js +76 -0
- package/redactor/plugins/counter/counter.min.js +1 -0
- package/redactor/plugins/filesafe/filesafe.js +70 -0
- package/redactor/plugins/filesafe/filesafe.min.js +70 -0
- package/redactor/plugins/fontcolor/fontcolor.js +184 -0
- package/redactor/plugins/fontcolor/fontcolor.min.js +1 -0
- package/redactor/plugins/fontfamily/fontfamily.js +59 -0
- package/redactor/plugins/fontfamily/fontfamily.min.js +1 -0
- package/redactor/plugins/fontsize/fontsize.js +58 -0
- package/redactor/plugins/fontsize/fontsize.min.js +1 -0
- package/redactor/plugins/imagemanager/imagemanager.js +82 -0
- package/redactor/plugins/imagemanager/imagemanager.min.js +1 -0
- package/redactor/plugins/inlinestyle/inlinestyle.css +34 -0
- package/redactor/plugins/inlinestyle/inlinestyle.js +62 -0
- package/redactor/plugins/inlinestyle/inlinestyle.min.css +1 -0
- package/redactor/plugins/inlinestyle/inlinestyle.min.js +1 -0
- package/redactor/plugins/specialchars/specialchars.js +78 -0
- package/redactor/plugins/specialchars/specialchars.min.js +1 -0
- package/redactor/plugins/table/table.js +477 -0
- package/redactor/plugins/table/table.min.js +1 -0
- package/redactor/plugins/textdirection/textdirection.js +44 -0
- package/redactor/plugins/textdirection/textdirection.min.js +1 -0
- package/redactor/plugins/textexpander/textexpander.js +64 -0
- package/redactor/plugins/textexpander/textexpander.min.js +1 -0
- package/redactor/plugins/variable/variable.css +23 -0
- package/redactor/plugins/variable/variable.js +222 -0
- package/redactor/plugins/variable/variable.min.css +1 -0
- package/redactor/plugins/variable/variable.min.js +1 -0
- package/redactor/src/redactor.min.css +1 -0
- package/redactor/src/redactor.min.js +1 -0
- package/webpack.config.js +82 -0
- package/webpack.dev.js +20 -0
- package/webpack.prod.js +11 -0
package/.babelrc
ADDED
package/.eslintignore
ADDED
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
|