@ibiz-template/mob-theme 2.0.0 → 3.1.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/LICENSE +1 -1
- package/README.md +11 -3
- package/dist/index.system.min.js +2 -2
- package/dist/index.system.min.js.map +1 -1
- package/es/publish/control-layout/control-layout-model-repository-mob-tree-exp-bar-layout.d.ts +2 -0
- package/es/publish/control-layout/control-layout-model-repository-mob-tree-exp-bar-layout.mjs +2 -0
- package/es/publish/index.mjs +4 -0
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-exp-view-layout-flow.d.ts +186 -0
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-exp-view-layout-flow.mjs +234 -0
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-search-view-layout.d.ts +127 -0
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-search-view-layout.mjs +161 -0
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tree-exp-view-layout.d.ts +5 -1
- package/es/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tree-exp-view-layout.mjs +4 -0
- package/lib/publish/control-layout/control-layout-model-repository-mob-tree-exp-bar-layout.cjs +2 -0
- package/lib/publish/index.cjs +4 -0
- package/lib/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-exp-view-layout-flow.cjs +238 -0
- package/lib/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tab-search-view-layout.cjs +165 -0
- package/lib/publish/mob-view-layout-model-repository/mob-view-layout-model-repository-de-mob-tree-exp-view-layout.cjs +4 -0
- package/package.json +3 -8
- package/CHANGELOG.md +0 -197
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @ibiz-template/mob-theme
|
|
2
2
|
|
|
3
3
|
移动端主题样式库,包含所有视图、部件预定义布局模型,同时也包含主题的颜色、间距、圆角、遮罩等主题配置,包含亮色主题、暗色主题。
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 📂 项目结构
|
|
6
6
|
|
|
7
7
|
```javascript
|
|
8
8
|
|── mob-theme
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
└── var.scss 默认变量
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
## 开发
|
|
68
|
+
## 📦 开发
|
|
69
69
|
|
|
70
70
|
1. 启动开发环境
|
|
71
71
|
|
|
@@ -90,3 +90,11 @@ pnpm link --global
|
|
|
90
90
|
```bash
|
|
91
91
|
pnpm link --global "@ibiz-template/mob-theme"
|
|
92
92
|
```
|
|
93
|
+
|
|
94
|
+
## 📌 更改日志
|
|
95
|
+
|
|
96
|
+
每个版本的详细更改记录在[发行说明](CHANGELOG.md)中。
|
|
97
|
+
|
|
98
|
+
## 📜 许可证
|
|
99
|
+
|
|
100
|
+
[MIT](LICENSE)
|