textbrowser 0.41.1 → 0.41.2

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # textbrowser CHANGES
2
2
 
3
+ ## 0.41.2
4
+
5
+ - fix: fix dialog polyfill CSS link
6
+
3
7
  ## 0.41.1
4
8
 
5
9
  - fix: fix dialog polyfill CSS link
package/README.md CHANGED
@@ -509,8 +509,8 @@ Plugin file designated within `files.json` may have any of the following
509
509
  exports. See the subsection below for details on arguments shared by multiple
510
510
  methods.
511
511
 
512
- - `getCellData({tr, tableData, i, j, applicableField, fieldInfo, applicableFieldIdx, applicableFieldText, fieldLang, getLangDir, meta, metaApplicableField, $p, thisObj})` -
513
- Used to build the plugin field's cell contents. The return value will
512
+ - `getCellData({tr, tableData, i, j, applicableField, fieldInfo, applicableFieldIdx, applicableFieldText, fieldLang, getLangDir, meta, metaApplicableField, $p, thisObj})`
513
+ - Used to build the plugin field's cell contents. The return value will
514
514
  set `tr[j]` unless the return is falsy in which case `applicableFieldText`
515
515
  will be used. Invoked for each cell of the data. To return HTML, must use
516
516
  in conjunction with `escapeColumn: false`. Besides properties shared with
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('node_modules/textbrowser/node_modules/dialog-polyfill/dist/dialog-polyfill.css', location).href);
19430
+ stylesheets.splice(builtinIndex, 1, new URL('index.css', moduleURL).href, new URL('../../dialog-polyfill/dist/dialog-polyfill.css', moduleURL).href);
19431
19431
  }
19432
19432
 
19433
19433
  this.stylesheets = stylesheets;