@bhsd/codemirror-mediawiki 2.21.1 → 2.22.0

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/README.md CHANGED
@@ -557,16 +557,22 @@ Show the content of the `<ref>` tag defined elsewhere when hovering.
557
557
 
558
558
  ## hover
559
559
 
560
- *version added: 2.21.0*
560
+ *version added: 2.21.1*
561
561
 
562
562
  Show the help information of a magic word when hovering.
563
563
 
564
564
  ## signatureHelp
565
565
 
566
- *version added: 2.21.0*
566
+ *version added: 2.21.1*
567
567
 
568
568
  Show the parser function signature when typing.
569
569
 
570
+ ## inlayHints
571
+
572
+ *version added: 2.22.0*
573
+
574
+ Show inlay hints for anonymous parameters.
575
+
570
576
  ## openLinks
571
577
 
572
578
  *version added: 2.19.6*
@@ -0,0 +1,7 @@
1
+ import { StateField } from '@codemirror/state';
2
+ import { ViewPlugin } from '@codemirror/view';
3
+ import type { DecorationSet, ViewUpdate } from '@codemirror/view';
4
+ declare const _default: (StateField<DecorationSet> | ViewPlugin<{
5
+ update(update: ViewUpdate): void;
6
+ }>)[];
7
+ export default _default;