@bigbinary/neeto-editor 0.3.43 → 0.3.46
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/babel.config.js +5 -9
- package/build/index.js +2 -76
- package/build/index.js.LICENSE.txt +60 -0
- package/package.json +5 -5
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
Copyright (c) 2018 Jed Watson.
|
|
3
|
+
Licensed under the MIT License (MIT), see
|
|
4
|
+
http://jedwatson.github.io/classnames
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*!
|
|
8
|
+
* hotkeys-js v3.8.7
|
|
9
|
+
* A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2021 kenny wong <wowohoo@qq.com>
|
|
12
|
+
* http://jaywcjlove.github.io/hotkeys
|
|
13
|
+
*
|
|
14
|
+
* Licensed under the MIT license.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/*! @license DOMPurify 2.3.3 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/2.3.3/LICENSE */
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* React Router DOM v6.0.2
|
|
21
|
+
*
|
|
22
|
+
* Copyright (c) Remix Software Inc.
|
|
23
|
+
*
|
|
24
|
+
* This source code is licensed under the MIT license found in the
|
|
25
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
26
|
+
*
|
|
27
|
+
* @license MIT
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* React Router v6.0.2
|
|
32
|
+
*
|
|
33
|
+
* Copyright (c) Remix Software Inc.
|
|
34
|
+
*
|
|
35
|
+
* This source code is licensed under the MIT license found in the
|
|
36
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
37
|
+
*
|
|
38
|
+
* @license MIT
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Takes a string with placeholder variables like `%{smart_count} file selected`
|
|
43
|
+
* and replaces it with values from options `{smart_count: 5}`
|
|
44
|
+
*
|
|
45
|
+
* @license https://github.com/airbnb/polyglot.js/blob/master/LICENSE
|
|
46
|
+
* taken from https://github.com/airbnb/polyglot.js/blob/master/lib/polyglot.js#L299
|
|
47
|
+
*
|
|
48
|
+
* @param {string} phrase that needs interpolation, with placeholders
|
|
49
|
+
* @param {object} options with values that will be used to replace placeholders
|
|
50
|
+
* @returns {any[]} interpolated
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
/** @license React v17.0.2
|
|
54
|
+
* react.production.min.js
|
|
55
|
+
*
|
|
56
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
57
|
+
*
|
|
58
|
+
* This source code is licensed under the MIT license found in the
|
|
59
|
+
* LICENSE file in the root directory of this source tree.
|
|
60
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-editor",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.46",
|
|
4
4
|
"main": "./build/index.js",
|
|
5
5
|
"description": "Neeto Editor is the library that drives the rich text experience in all Neeto products built at BigBinary",
|
|
6
6
|
"keywords": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"axios": "^0.24.0",
|
|
40
40
|
"classnames": "^2.3.1",
|
|
41
41
|
"dompurify": "^2.3.3",
|
|
42
|
-
"emoji-mart": "^
|
|
42
|
+
"emoji-mart": "^5.1.0",
|
|
43
43
|
"highlight.js": "^11.3.1",
|
|
44
44
|
"lodash.isplainobject": "^4.0.6",
|
|
45
45
|
"lowlight": "^1.20.0",
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
"sass-loader": "^10.0.2",
|
|
98
98
|
"style-loader": "^2.0.0",
|
|
99
99
|
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
|
|
100
|
-
"webpack": "^
|
|
101
|
-
"webpack-cli": "^
|
|
102
|
-
"webpack-dev-server": "
|
|
100
|
+
"webpack": "^5.72.1",
|
|
101
|
+
"webpack-cli": "^4.9.2",
|
|
102
|
+
"webpack-dev-server": "^4.9.0"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
105
105
|
"react": "17.0.2",
|