@inpageedit/core 0.14.1 → 0.14.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/README.md +5 -4
- package/dist/{index-BgkZW91u.js → index-C3m6ng6b.js} +4 -4
- package/dist/{index-BgkZW91u.js.map → index-C3m6ng6b.js.map} +1 -1
- package/dist/{index-Bb0FiU2c.js → index-Dclp60EO.js} +19 -15
- package/dist/index-Dclp60EO.js.map +1 -0
- package/dist/{index-DTHY5rAO.js → index-QtEF2mzS.js} +154 -125
- package/dist/index-QtEF2mzS.js.map +1 -0
- package/dist/index.d.ts +31 -6
- package/dist/index.js +2 -2
- package/dist/plugins/index.js +2 -2
- package/dist/services/index.js +1 -1
- package/lib/index.umd.js +3 -3
- package/lib/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/dist/index-Bb0FiU2c.js.map +0 -1
- package/dist/index-DTHY5rAO.js.map +0 -1
package/README.md
CHANGED
|
@@ -6,16 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
🚀 MediaWiki 的模块化、可扩展超级增强插件
|
|
8
8
|
|
|
9
|
-
**InPageEdit NEXT
|
|
9
|
+
**InPageEdit NEXT** 是由机智的小鱼君开发的一款 MediaWiki 多功能插件。主要功能旨在使许多 MediaWiki 的功能在不打开新标签页的情况下完成(包括但不限于编辑),极大加快维护 wiki 的速度。模块化设计、类型定义清晰完整,插件可自由热插拔。
|
|
10
10
|
|
|
11
11
|
→ <https://www.ipe.wiki> ←
|
|
12
12
|
|
|
13
|
+
[](https://www.jsdelivr.com/package/npm/@inpageedit/core) [](https://crowdin.com/project/inpageedit)
|
|
14
|
+
|
|
13
15
|
</div>
|
|
14
16
|
|
|
15
17
|
## 快速上手 / Quick Start
|
|
16
18
|
|
|
17
|
-
[](https://www.jsdelivr.com/package/npm/@inpageedit/core)
|
|
18
|
-
|
|
19
19
|
在*个人 JS 页*添加以下代码:
|
|
20
20
|
|
|
21
21
|
<!-- prettier-ignore -->
|
|
@@ -43,7 +43,7 @@ document.body.append(
|
|
|
43
43
|
|
|
44
44
|
- 可热插拔的模块化设计
|
|
45
45
|
- 完全使用 TypeScript 编写
|
|
46
|
-
-
|
|
46
|
+
- 超简单的扩展能力:[示例插件](https://github.com/inpageedit/plugin-registry/tree/master/packages/_boilerplate)
|
|
47
47
|
|
|
48
48
|
## Supported languages
|
|
49
49
|
|
|
@@ -57,6 +57,7 @@ document.body.append(
|
|
|
57
57
|
- Português do Brasil (pt_BR)
|
|
58
58
|
- **中文(简体) (zh-Hans)**
|
|
59
59
|
- 中文(繁體) (zh-Hant)
|
|
60
|
+
- _(and more, using machine translation...)_
|
|
60
61
|
|
|
61
62
|
[Help us translate](https://crowdin.com/project/inpageedit)
|
|
62
63
|
|
|
@@ -4139,7 +4139,7 @@ class re extends Tt {
|
|
|
4139
4139
|
constructor(e) {
|
|
4140
4140
|
super({
|
|
4141
4141
|
name: "InPageEdit"
|
|
4142
|
-
}), this.version = "0.14.
|
|
4142
|
+
}), this.version = "0.14.2", this.Endpoints = qe, this.schema = m, this.config = K(re.DEFAULT_CONFIG, e), this.logger = Mt({
|
|
4143
4143
|
name: "IPE",
|
|
4144
4144
|
color: "#33aaff",
|
|
4145
4145
|
level: this.config.logLevel
|
|
@@ -4189,11 +4189,11 @@ class re extends Tt {
|
|
|
4189
4189
|
// TODO: 这里不应该硬编码,暂时先这样
|
|
4190
4190
|
async #s() {
|
|
4191
4191
|
[
|
|
4192
|
-
import("./index-
|
|
4192
|
+
import("./index-Dclp60EO.js").then(({ PluginAnalytics: t }) => t),
|
|
4193
4193
|
import("./index-BBNseJXG.js").then(
|
|
4194
4194
|
({ PluginInArticleLinks: t }) => t
|
|
4195
4195
|
),
|
|
4196
|
-
import("./index-
|
|
4196
|
+
import("./index-QtEF2mzS.js").then(({ PluginPluginStore: t }) => t),
|
|
4197
4197
|
import("./index-DELHsLHS.js").then(
|
|
4198
4198
|
({ PluginPreferencesUI: t }) => t
|
|
4199
4199
|
),
|
|
@@ -4242,4 +4242,4 @@ export {
|
|
|
4242
4242
|
Ee as e,
|
|
4243
4243
|
It as m
|
|
4244
4244
|
};
|
|
4245
|
-
//# sourceMappingURL=index-
|
|
4245
|
+
//# sourceMappingURL=index-C3m6ng6b.js.map
|