@lambo-design-mobile/lambo-js-bridge 1.0.0-beta.21 → 1.0.0-beta.23
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/.versionrc +23 -23
- package/CHANGELOG.md +294 -272
- package/README.md +411 -318
- package/demo/index.vue +360 -261
- package/index.js +3 -3
- package/package.json +1 -1
- package/src/sdk/BrowserAdapter.js +63 -63
- package/src/sdk/CordovaAdapter.js +20 -20
- package/src/sdk/DingTalkAdapter.js +20 -20
- package/src/sdk/LamboJsBridge.js +102 -90
- package/src/sdk/WeComAdapter.js +367 -367
- package/src/sdk/YunTuAdapter.js +309 -224
- package/src/sdk/yuntu.js +55 -55
package/.versionrc
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tagPrefix": "@lambo-design-mobile/lambo-js-bridge@",
|
|
3
|
-
"releaseCommitMessageFormat": "chore(release): @lambo-design-mobile/lambo-js-bridge@{{currentTag}}",
|
|
4
|
-
"path": ".",
|
|
5
|
-
"header": "# Changelog",
|
|
6
|
-
"types": [
|
|
7
|
-
{"type": "chore", "section":"'🎫 Chores | 其他更新", "hidden": false},
|
|
8
|
-
{"type": "revert", "section":"⏪ Reverts | 回退", "hidden": false},
|
|
9
|
-
{"type": "feat", "section": "✨ Features | 新功能", "hidden": false},
|
|
10
|
-
{"type": "fix", "section": "🐛 Bug Fixes | Bug 修复", "hidden": false},
|
|
11
|
-
{"type": "improvement", "section": "Feature Improvements", "hidden": false},
|
|
12
|
-
{"type": "docs", "section":"📝 Documentation | 文档", "hidden": false},
|
|
13
|
-
{"type": "style", "section":"💄 Styles | 风格", "hidden": false},
|
|
14
|
-
{"type": "refactor", "section":"♻️ Code Refactoring | 代码重构", "hidden": false},
|
|
15
|
-
{"type": "perf", "section":"⚡ Performance Improvements | 性能优化", "hidden": false},
|
|
16
|
-
{"type": "test", "section":"✅ Tests | 测试", "hidden": false},
|
|
17
|
-
{"type": "build", "section":"👷 Build System | 构建", "hidden": false},
|
|
18
|
-
{"type": "ci", "section":"🔧 Continuous Integration | CI 配置", "hidden":false}
|
|
19
|
-
],
|
|
20
|
-
"commitUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/{{hash}}",
|
|
21
|
-
"compareUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/{{previousTag}}...{{currentTag}}",
|
|
22
|
-
"issueUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/issues/{{id}}"
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"tagPrefix": "@lambo-design-mobile/lambo-js-bridge@",
|
|
3
|
+
"releaseCommitMessageFormat": "chore(release): @lambo-design-mobile/lambo-js-bridge@{{currentTag}}",
|
|
4
|
+
"path": ".",
|
|
5
|
+
"header": "# Changelog",
|
|
6
|
+
"types": [
|
|
7
|
+
{"type": "chore", "section":"'🎫 Chores | 其他更新", "hidden": false},
|
|
8
|
+
{"type": "revert", "section":"⏪ Reverts | 回退", "hidden": false},
|
|
9
|
+
{"type": "feat", "section": "✨ Features | 新功能", "hidden": false},
|
|
10
|
+
{"type": "fix", "section": "🐛 Bug Fixes | Bug 修复", "hidden": false},
|
|
11
|
+
{"type": "improvement", "section": "Feature Improvements", "hidden": false},
|
|
12
|
+
{"type": "docs", "section":"📝 Documentation | 文档", "hidden": false},
|
|
13
|
+
{"type": "style", "section":"💄 Styles | 风格", "hidden": false},
|
|
14
|
+
{"type": "refactor", "section":"♻️ Code Refactoring | 代码重构", "hidden": false},
|
|
15
|
+
{"type": "perf", "section":"⚡ Performance Improvements | 性能优化", "hidden": false},
|
|
16
|
+
{"type": "test", "section":"✅ Tests | 测试", "hidden": false},
|
|
17
|
+
{"type": "build", "section":"👷 Build System | 构建", "hidden": false},
|
|
18
|
+
{"type": "ci", "section":"🔧 Continuous Integration | CI 配置", "hidden":false}
|
|
19
|
+
],
|
|
20
|
+
"commitUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/{{hash}}",
|
|
21
|
+
"compareUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/{{previousTag}}...{{currentTag}}",
|
|
22
|
+
"issueUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/issues/{{id}}"
|
|
23
|
+
}
|