ep_headings2 0.2.58 → 0.2.61
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/locales/lt.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@metadata": {
|
|
3
|
+
"authors": [
|
|
4
|
+
"Nokeoo"
|
|
5
|
+
]
|
|
6
|
+
},
|
|
7
|
+
"ep_headings.style": "Stilius",
|
|
8
|
+
"ep_headings.normal": "Paprastas",
|
|
9
|
+
"ep_headings.h1": "Antraštė 1",
|
|
10
|
+
"ep_headings.h2": "Antraštė 2",
|
|
11
|
+
"ep_headings.h3": "Antraštė 3",
|
|
12
|
+
"ep_headings.h4": "Antraštė 4",
|
|
13
|
+
"ep_headings.code": "Kodas"
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"description": "Adds heading support to Etherpad Lite. Includes improved suppot for export, i18n etc.",
|
|
3
3
|
"name": "ep_headings2",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.61",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John McLear",
|
|
7
7
|
"email": "john@mclear.co.uk"
|
|
@@ -27,19 +27,16 @@
|
|
|
27
27
|
"plugin"
|
|
28
28
|
],
|
|
29
29
|
"engines": {
|
|
30
|
-
"node": ">=
|
|
30
|
+
"node": ">=18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/ether/ep_headings2#readme",
|
|
33
33
|
"bugs": {
|
|
34
34
|
"url": "https://github.com/ether/ep_headings2/issues"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"eslint": "^8.
|
|
38
|
-
"eslint-config-etherpad": "^
|
|
39
|
-
"typescript": "^4.
|
|
40
|
-
},
|
|
41
|
-
"peerDependencies": {
|
|
42
|
-
"ep_etherpad-lite": ">=1.8.6"
|
|
37
|
+
"eslint": "^8.57.0",
|
|
38
|
+
"eslint-config-etherpad": "^4.0.4",
|
|
39
|
+
"typescript": "^5.4.2"
|
|
43
40
|
},
|
|
44
41
|
"repository": {
|
|
45
42
|
"type": "git",
|
|
@@ -53,4 +50,4 @@
|
|
|
53
50
|
"lint": "eslint .",
|
|
54
51
|
"lint:fix": "eslint --fix ."
|
|
55
52
|
}
|
|
56
|
-
}
|
|
53
|
+
}
|
|
@@ -100,7 +100,7 @@ describe('ep_headings2 - export headings to HTML', function () {
|
|
|
100
100
|
|
|
101
101
|
it('returns HTML with Multiple Headings HTML tags', function (done) {
|
|
102
102
|
try {
|
|
103
|
-
// eslint-disable-next-line
|
|
103
|
+
// eslint-disable-next-line n/no-extraneous-require, n/no-missing-require
|
|
104
104
|
require.resolve('ep_align');
|
|
105
105
|
agent.get(getHTMLEndPointFor(padID))
|
|
106
106
|
.expect((res) => {
|