Skip to content

Commit

Permalink
update to v5.1.13 for fixing css
Browse files Browse the repository at this point in the history
  • Loading branch information
shenyunjie committed Nov 20, 2017
1 parent 6c84554 commit 3834101
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 19 deletions.
7 changes: 6 additions & 1 deletion CHANGLOG.md
Expand Up @@ -2,7 +2,12 @@

> Since the 5.1.11 version, we will provide change logs for each version of the update.
## v5.1.12 - beta
## v5.1.13

- 去掉`index.css`中的`padding` `margin`
- 新增`.inactive`class

## v5.1.12

- 删除`src/miox-convert`模块,因为没有历史包袱,我们不需要使用这个模块。
- `webview:beforeEnter`事件,不再对于新创建webview过程而言,而是对于整个过程而言。因为将要展示的webview必定是存在的。但是可能选取的时候是不存在的。
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "miox",
"version": "5.1.12",
"version": "5.1.13",
"description": "[Modern infrastructure of complex SPA] Miox 可以自动帮你处理路由切换、webview 生命周期管理等各种单页应用会面临的问题,让你专注于 webview 内的业务开发。Miox 实现了生命周期和路由管理的最佳实践,避免了不统一的开发方式可能造成的性能下降和错误,并且可以平滑接入",
"author": "沈赟杰",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-animation/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-animation",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-compose/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-compose",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
11 changes: 7 additions & 4 deletions src/miox-css/index.css
Expand Up @@ -539,6 +539,13 @@ body,
z-index: 0;
}

.mx-webview.active {
z-index: 2;
}
.mx-webview.inactive {
z-index: 1;
}

.mx-webview>*:first-child {
height: 100%!important;
display: block!important;
Expand All @@ -547,8 +554,4 @@ body,
padding: 0;
margin: 0;
background-color: #fff;
}

.mx-webview.active {
z-index: 1;
}
2 changes: 1 addition & 1 deletion src/miox-css/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-css",
"version": "5.1.12",
"version": "5.1.13",
"description": "miox css",
"main": "index.css",
"author": "沈赟杰",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-koa-vue2x-server-render/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-koa-vue2x-server-render",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-react/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-react",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
4 changes: 2 additions & 2 deletions src/miox-router/package.json
@@ -1,13 +1,13 @@
{
"name": "miox-router",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
"package.json"
],
"dependencies": {
"path-to-regexp": "^2.0.0",
"miox-compose": "^5.1.12"
"miox-compose": "^5.1.13"
}
}
2 changes: 1 addition & 1 deletion src/miox-vue2x-classify/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-vue2x-classify",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-vue2x-container/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-vue2x-container",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-vue2x-webpack-config/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-vue2x-webpack-config",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
2 changes: 1 addition & 1 deletion src/miox-vue2x/package.json
@@ -1,6 +1,6 @@
{
"name": "miox-vue2x",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand Down
4 changes: 2 additions & 2 deletions src/miox/package.json
@@ -1,6 +1,6 @@
{
"name": "miox",
"version": "5.1.12",
"version": "5.1.13",
"main": "build/index.js",
"files": [
"build",
Expand All @@ -9,7 +9,7 @@
"dependencies": {
"flatten": "^1.0.2",
"is-class": "0.0.4",
"miox-compose": "^5.1.12",
"miox-compose": "^5.1.13",
"url": "^0.11.0"
}
}

0 comments on commit 3834101

Please sign in to comment.