textbrowser 0.46.0 → 0.46.1
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/CHANGES.md +4 -0
- package/dist/WorkInfo-es.js +15 -16
- package/dist/index-es.js +84 -85
- package/dist/index-es.min.js +2 -2
- package/package.json +2 -2
- package/resources/resultsDisplay.js +1 -1
- package/resources/utils/Metadata.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "textbrowser",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.1",
|
|
4
4
|
"description": "Multilinear text browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index-es.min.js",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
69
69
|
"@rollup/plugin-terser": "^0.1.0",
|
|
70
70
|
"@stadtlandnetz/rollup-plugin-postprocess": "^1.1.0",
|
|
71
|
-
"ajv": "8.11.
|
|
71
|
+
"ajv": "8.11.2",
|
|
72
72
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
73
73
|
"chai": "^4.3.7",
|
|
74
74
|
"eslint": "^8.27.0",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* eslint-env browser */
|
|
2
2
|
import rtlDetect from 'rtl-detect';
|
|
3
|
+
import JsonRefs from 'json-refs';
|
|
3
4
|
import {jml} from 'jamilih';
|
|
4
5
|
|
|
5
|
-
import JsonRefs from './vendor/json-refs-min.js';
|
|
6
6
|
import Templates from './templates/index.js';
|
|
7
7
|
import {escapeHTML} from './utils/sanitize.js';
|
|
8
8
|
import {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-env browser */
|
|
2
|
-
import JsonRefs from '../vendor/json-refs-min.js';
|
|
3
2
|
import {getPreferredLanguages} from './Languages.js';
|
|
4
3
|
// Keep this as the last import for Rollup
|
|
4
|
+
import JsonRefs from 'json-refs'; // eslint-disable-line import/order
|
|
5
5
|
|
|
6
6
|
const getCurrDir = () =>
|
|
7
7
|
window.location.href.replace(/(index\.html)?#.*$/, '');
|