easy-richtextarea 3.0.68 → 3.0.72
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 +213 -838
- package/index.html +1 -1
- package/lib/example/richTextarea.js +2 -2
- package/package.json +3 -3
- package/src/example/richTextarea.js +1 -2
package/index.html
CHANGED
|
@@ -22,7 +22,7 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
|
22
22
|
}
|
|
23
23
|
function _templateObject() {
|
|
24
24
|
var data = _taggedTemplateLiteral([
|
|
25
|
-
"\n\n border: 1px solid
|
|
25
|
+
"\n\n border: 1px solid black;\n width: 32rem;\n height: 32rem;\n padding: 0.25rem;\n font-size: 1.2rem;\n font-family: monospace;\n\n"
|
|
26
26
|
]);
|
|
27
27
|
_templateObject = function _templateObject() {
|
|
28
28
|
return data;
|
|
@@ -32,4 +32,4 @@ function _templateObject() {
|
|
|
32
32
|
var _default = (0, _easyWithStyle).default(_browser.RichTextarea)(_templateObject());
|
|
33
33
|
exports.default = _default;
|
|
34
34
|
|
|
35
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
35
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leGFtcGxlL3JpY2hUZXh0YXJlYS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IHdpdGhTdHlsZSBmcm9tIFwiZWFzeS13aXRoLXN0eWxlXCI7XG5cbmltcG9ydCB7IFJpY2hUZXh0YXJlYSB9IGZyb20gXCIuLi9icm93c2VyXCI7ICAvLy9cblxuZXhwb3J0IGRlZmF1bHQgd2l0aFN0eWxlKFJpY2hUZXh0YXJlYSlgXG5cbiAgYm9yZGVyOiAxcHggc29saWQgYmxhY2s7XG4gIHdpZHRoOiAzMnJlbTtcbiAgaGVpZ2h0OiAzMnJlbTtcbiAgcGFkZGluZzogMC4yNXJlbTtcbiAgZm9udC1zaXplOiAxLjJyZW07XG4gIGZvbnQtZmFtaWx5OiBtb25vc3BhY2U7XG5cbmA7XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsQ0FBWTs7Ozs7QUFFVSxHQUFpQixDQUFqQixjQUFpQjtBQUVWLEdBQVksQ0FBWixRQUFZOzs7Ozs7Ozs7Ozs7Ozs7Ozs7UUFFRixDQVN2Qzs7Ozs7OzttQkFic0IsY0FBaUIsVUFFVixRQUFZIn0=
|
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.72",
|
|
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.",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"url": "https://github.com/djalbat/easy-richtextarea"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"easy": "^13.0.
|
|
14
|
-
"easy-with-style": "^3.0.
|
|
13
|
+
"easy": "^13.0.18",
|
|
14
|
+
"easy-with-style": "^3.0.86"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@swc/core": "^1.2.50",
|
|
@@ -6,12 +6,11 @@ import { RichTextarea } from "../browser"; ///
|
|
|
6
6
|
|
|
7
7
|
export default withStyle(RichTextarea)`
|
|
8
8
|
|
|
9
|
-
border: 1px solid
|
|
9
|
+
border: 1px solid black;
|
|
10
10
|
width: 32rem;
|
|
11
11
|
height: 32rem;
|
|
12
12
|
padding: 0.25rem;
|
|
13
13
|
font-size: 1.2rem;
|
|
14
|
-
margin-top: 0.5rem;
|
|
15
14
|
font-family: monospace;
|
|
16
15
|
|
|
17
16
|
`;
|