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 CHANGED
@@ -17,3 +17,6 @@ trim_trailing_whitespace = true
17
17
 
18
18
  [*.md]
19
19
  indent_size = 4
20
+
21
+ [*.{json,jsonschema}]
22
+ indent_size = 4
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('../../dialog-polyfill/dist/dialog-polyfill.css', moduleURL).href);
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;