@lambo-design/shared 1.0.0-beta.152 → 1.0.0-beta.153
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 +21 -0
- package/CHANGELOG.md +23 -0
- package/config/config.js +1 -0
- package/config/themes/blue-white/blue-white.css +561 -561
- package/config/themes/default/default.css +561 -561
- package/package.json +9 -2
- package/utils/crypto/aes.js +23 -0
- package/utils/crypto/rsa.js +16 -0
- package/utils/storage.js +198 -198
- package/utils/type.js +102 -102
package/.versionrc
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tagPrefix": "@lambo-design/shared@",
|
|
3
|
+
"header": "# Changelog",
|
|
4
|
+
"types": [
|
|
5
|
+
{"type": "chore", "section":"'🎫 Chores | 其他更新", "hidden": false},
|
|
6
|
+
{"type": "revert", "section":"⏪ Reverts | 回退", "hidden": false},
|
|
7
|
+
{"type": "feat", "section": "✨ Features | 新功能", "hidden": false},
|
|
8
|
+
{"type": "fix", "section": "🐛 Bug Fixes | Bug 修复", "hidden": false},
|
|
9
|
+
{"type": "improvement", "section": "Feature Improvements", "hidden": false},
|
|
10
|
+
{"type": "docs", "section":"📝 Documentation | 文档", "hidden": false},
|
|
11
|
+
{"type": "style", "section":"💄 Styles | 风格", "hidden": false},
|
|
12
|
+
{"type": "refactor", "section":"💄 Styles | 风格", "hidden": false},
|
|
13
|
+
{"type": "perf", "section":"⚡ Performance Improvements | 性能优化", "hidden": false},
|
|
14
|
+
{"type": "test", "section":"✅ Tests | 测试", "hidden": false},
|
|
15
|
+
{"type": "build", "section":"👷 Build System | 构建", "hidden": false},
|
|
16
|
+
{"type": "ci", "section":"🔧 Continuous Integration | CI 配置", "hidden":false}
|
|
17
|
+
],
|
|
18
|
+
"commitUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/{{hash}}",
|
|
19
|
+
"compareUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/compare/{{previousTag}}...{{currentTag}}",
|
|
20
|
+
"issueUrlFormat": "http://git.inspur.com/ecbh/lambo-design/lambo-design/-/issues/{{id}}"
|
|
21
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
## 1.0.0-beta.153 (2024-04-12)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
6
|
+
|
|
7
|
+
* **schema-paging-table:** 边界问题处理 ([79a0072](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/79a007219e6f750b1e6dc18660fb8e892ae45407))
|
|
8
|
+
* **schema-paging-table:** 处理没有表格上按钮的情况 ([aa3adf9](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/aa3adf913fa9e1acd5b4c158b4e36b14d93b754e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### 💄 Styles | 风格
|
|
12
|
+
|
|
13
|
+
* **CHANGELOG合规性改造:** CHANGELOG模板变更 ([f3d224b](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/f3d224bad70714fe23f6352629301118a3a2f54e))
|
|
14
|
+
* **CHANGELOG合规性改造:** CHANGELOG模板变更 ([5fec210](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/5fec210992acff0ca71d4945402e41d72b0d18b8))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### '🎫 Chores | 其他更新
|
|
18
|
+
|
|
19
|
+
* **release:** 1.0.0-beta.21 ([c0d6e8a](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/c0d6e8a19aefc1ddb2824ac8909697d68bf2a636))
|
|
20
|
+
* **release:** 1.0.0-beta.22 ([707ce23](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/707ce23d97fc664ae7e8d7a5b8cd12f63c626ba6))
|
|
21
|
+
* **release:** 1.0.0-beta.23 ([9f89a98](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/9f89a9838ccc441b3acc8a109505602a1504a9e1))
|
|
22
|
+
* **release:** 1.0.0-beta.24 ([df77122](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/df77122bdafb5f82c23ab9b2f56a93a4fca36341))
|
|
23
|
+
* **release:** 1.0.0-beta.25 ([90e96a6](http://git.inspur.com/ecbh/lambo-design/lambo-design/-/commit/90e96a6108eac5dc218bf75f407fa811b36ed162))
|
package/config/config.js
CHANGED
|
@@ -23,6 +23,7 @@ let config = {
|
|
|
23
23
|
ossServerContext: '/upms-server',
|
|
24
24
|
didaHost: "/dida-runtime-micro",
|
|
25
25
|
didaRuntimeServerContext: "/dida-runtime-server",
|
|
26
|
+
fileOnlinePreviewContext: '/file-online-preview',
|
|
26
27
|
mobileWidth:375,
|
|
27
28
|
mobileHeight:667,
|
|
28
29
|
errorMessage: '数据请求出错,请稍后尝试'
|