easy-richtextarea 3.0.114 → 3.0.115
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/example.js +1058 -1022
- package/lib/richTextarea.js +7 -7
- package/package.json +2 -2
package/lib/richTextarea.js
CHANGED
|
@@ -35,7 +35,7 @@ function isNativeReflectConstruct() {
|
|
|
35
35
|
return false;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
|
-
function _construct(
|
|
38
|
+
function _construct(Parent, args, Class) {
|
|
39
39
|
if (isNativeReflectConstruct()) {
|
|
40
40
|
_construct = Reflect.construct;
|
|
41
41
|
} else {
|
|
@@ -79,11 +79,11 @@ function _defineProperty(obj, key, value) {
|
|
|
79
79
|
}
|
|
80
80
|
return obj;
|
|
81
81
|
}
|
|
82
|
-
function _getPrototypeOf(
|
|
82
|
+
function _getPrototypeOf(o) {
|
|
83
83
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
84
84
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
85
85
|
};
|
|
86
|
-
return _getPrototypeOf(
|
|
86
|
+
return _getPrototypeOf(o);
|
|
87
87
|
}
|
|
88
88
|
function _inherits(subClass, superClass) {
|
|
89
89
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -118,12 +118,12 @@ function _possibleConstructorReturn(self, call) {
|
|
|
118
118
|
}
|
|
119
119
|
return _assertThisInitialized(self);
|
|
120
120
|
}
|
|
121
|
-
function _setPrototypeOf(
|
|
121
|
+
function _setPrototypeOf(o, p) {
|
|
122
122
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
123
123
|
o.__proto__ = p;
|
|
124
124
|
return o;
|
|
125
125
|
};
|
|
126
|
-
return _setPrototypeOf(
|
|
126
|
+
return _setPrototypeOf(o, p);
|
|
127
127
|
}
|
|
128
128
|
function _toConsumableArray(arr) {
|
|
129
129
|
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
|
|
@@ -140,7 +140,7 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
140
140
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
141
141
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
142
142
|
}
|
|
143
|
-
function _wrapNativeSuper(
|
|
143
|
+
function _wrapNativeSuper(Class) {
|
|
144
144
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
145
145
|
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
146
146
|
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
@@ -164,7 +164,7 @@ function _wrapNativeSuper(Class2) {
|
|
|
164
164
|
});
|
|
165
165
|
return _setPrototypeOf(Wrapper, Class);
|
|
166
166
|
};
|
|
167
|
-
return _wrapNativeSuper(
|
|
167
|
+
return _wrapNativeSuper(Class);
|
|
168
168
|
}
|
|
169
169
|
function _isNativeReflectConstruct() {
|
|
170
170
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-richtextarea",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.115",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/easy-richtextarea",
|
|
7
7
|
"description": "A textarea element that handles and hands off events well.",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@swc/core": "^1.2.160",
|
|
17
|
-
"easy-with-style": "^3.0.
|
|
17
|
+
"easy-with-style": "^3.0.141",
|
|
18
18
|
"esbuild": "^0.9.2",
|
|
19
19
|
"express": "^4.17.1",
|
|
20
20
|
"lively-cli": "^2.0.34",
|