textbrowser 0.41.0 → 0.41.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/.editorconfig +3 -0
- package/CHANGES.md +9 -0
- package/README.md +2 -0
- package/dist/index-es.js +1 -1
- package/dist/index-es.min.js +1 -1
- package/dist/index-umd.js +1 -1
- package/dist/index-umd.min.js +1 -1
- package/general-schemas/array-of-arrays.jsonschema +11 -1
- package/general-schemas/table.jsonschema +29 -1
- package/package.json +14 -14
- package/resources/index.js +1 -1
- package/site.json +3 -0
- package/sw-sample.js +7 -9
package/.editorconfig
CHANGED
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# textbrowser CHANGES
|
|
2
2
|
|
|
3
|
+
## 0.41.1
|
|
4
|
+
|
|
5
|
+
- fix: fix dialog polyfill CSS link
|
|
6
|
+
- refactor: make array-of-arrays schema more precise
|
|
7
|
+
- refactor: make table.jsonschema more precise
|
|
8
|
+
- refactor: drop redundant locale file listing in sample service worker
|
|
9
|
+
- chore: update `.editorconfig`, devDeps. and deps. (babel-related,
|
|
10
|
+
`command-line-args`)
|
|
11
|
+
|
|
3
12
|
## 0.41.0
|
|
4
13
|
|
|
5
14
|
- feat: factor out undocumented Bahá'í Writings-specific bookmark generator
|
package/README.md
CHANGED
|
@@ -1046,6 +1046,8 @@ it supports the following arguments:
|
|
|
1046
1046
|
|
|
1047
1047
|
## To-dos (Medium Priority)
|
|
1048
1048
|
|
|
1049
|
+
1. Build "Preferred language(s)" to use awareness of content languages rather
|
|
1050
|
+
than locales.
|
|
1049
1051
|
1. Remove need for separate metadata
|
|
1050
1052
|
files per
|
|
1051
1053
|
<https://github.com/json-schema-org/json-schema-spec/issues/587#issuecomment-389726603>
|
package/dist/index-es.js
CHANGED
|
@@ -19427,7 +19427,7 @@ class TextBrowser {
|
|
|
19427
19427
|
const builtinIndex = stylesheets.indexOf('@builtin');
|
|
19428
19428
|
|
|
19429
19429
|
if (builtinIndex !== -1) {
|
|
19430
|
-
stylesheets.splice(builtinIndex, 1, new URL('index.css', moduleURL).href, new URL('
|
|
19430
|
+
stylesheets.splice(builtinIndex, 1, new URL('index.css', moduleURL).href, new URL('node_modules/textbrowser/node_modules/dialog-polyfill/dist/dialog-polyfill.css', location).href);
|
|
19431
19431
|
}
|
|
19432
19432
|
|
|
19433
19433
|
this.stylesheets = stylesheets;
|