@bhsd/codemirror-mediawiki 2.21.1 → 2.22.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/README.md +8 -2
- package/dist/inlay.d.ts +7 -0
- package/dist/main.min.js +15 -15
- package/dist/mw.min.js +18 -18
- package/dist/mwConfig.mjs +3 -1
- package/dist/wiki.min.js +18 -18
- package/i18n/en.json +2 -1
- package/i18n/zh-hans.json +2 -1
- package/i18n/zh-hant.json +2 -1
- package/mediawiki.css +1 -347
- package/package.json +5 -4
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.
|
|
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.
|
|
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*
|
package/dist/inlay.d.ts
ADDED
|
@@ -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;
|