@dolphinweex/weex-vue-render 0.2.10 → 0.2.11
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/dist/index.common.js +8 -5
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -6542,7 +6542,7 @@ function getWaterfall (weex) {
|
|
|
6542
6542
|
* 3.1 if totalWidth < ctWidth then increase columnWidth
|
|
6543
6543
|
* 3.2 if totalWidth > ctWidth then decrease columnCount
|
|
6544
6544
|
*/
|
|
6545
|
-
var width, gap, cnt, ctWidth;
|
|
6545
|
+
var width, gap, cnt, ctWidth, leftGap, rightGap;
|
|
6546
6546
|
var scale = weex.config.env.scale;
|
|
6547
6547
|
var el = this.$el;
|
|
6548
6548
|
function getCtWidth (width, style) {
|
|
@@ -6569,6 +6569,9 @@ function getWaterfall (weex) {
|
|
|
6569
6569
|
}
|
|
6570
6570
|
gap = gap * scale;
|
|
6571
6571
|
|
|
6572
|
+
leftGap = this.leftGap * scale || 0;
|
|
6573
|
+
rightGap = this.rightGap * scale || 0;
|
|
6574
|
+
|
|
6572
6575
|
width = this.columnWidth;
|
|
6573
6576
|
cnt = this.columnCount;
|
|
6574
6577
|
if (width && width !== 'auto') {
|
|
@@ -6584,17 +6587,17 @@ function getWaterfall (weex) {
|
|
|
6584
6587
|
}
|
|
6585
6588
|
// 1. if columnCount = n then calc w.
|
|
6586
6589
|
else if (cnt !== 'auto' && width === 'auto') {
|
|
6587
|
-
width = (ctWidth - (cnt - 1) * gap) / cnt;
|
|
6590
|
+
width = (ctWidth - (cnt - 1) * gap - leftGap - rightGap) / cnt;
|
|
6588
6591
|
}
|
|
6589
6592
|
// 2. if columnWidth = w then calc n.
|
|
6590
6593
|
else if (cnt === 'auto' && width !== 'auto') {
|
|
6591
|
-
cnt = (ctWidth + gap) / (width + gap);
|
|
6594
|
+
cnt = (ctWidth + gap + leftGap + rightGap) / (width + gap + leftGap + rightGap);
|
|
6592
6595
|
}
|
|
6593
6596
|
// 3. if columnWidth = w and columnCount = n then calc totalWidth
|
|
6594
6597
|
else if (cnt !== 'auto' && width !== 'auto') {
|
|
6595
6598
|
var totalWidth;
|
|
6596
6599
|
var adjustCountAndWidth = function () {
|
|
6597
|
-
totalWidth = cnt * width + (cnt - 1) * gap;
|
|
6600
|
+
totalWidth = cnt * width + (cnt - 1) * gap + leftGap + rightGap;
|
|
6598
6601
|
if (totalWidth < ctWidth) {
|
|
6599
6602
|
width += (ctWidth - totalWidth) / cnt;
|
|
6600
6603
|
}
|
|
@@ -7303,7 +7306,7 @@ var recycleList = {
|
|
|
7303
7306
|
}
|
|
7304
7307
|
};
|
|
7305
7308
|
|
|
7306
|
-
__$styleInject("/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n */\n\nbody > .weex-list,\nbody > .weex-recycle,\nbody > .weex-scroller,\nbody > .weex-waterfall {\n max-height: 100%;\n}\n\n.weex-list-wrapper,\n.weex-recycle-wrapper,\n.weex-scroller-wrapper,\n.weex-waterfall-wrapper {\n -webkit-overflow-scrolling: touch;\n}\n\n.weex-list-wrapper,\n.weex-waterfall-wrapper, \n.weex-recycle-wrapper {\n overflow-y: scroll !important;\n overflow-x: hidden !important;\n align-items: flex-start !important;\n justify-content: flex-start !important;\n}\n\n.weex-list-inner,\n.weex-recycle-inner,\n.weex-scroller-inner,\n.weex-waterfall-inner {\n -webkit-overflow-scrolling: touch;\n align-items: inherit; \n}\n\n.weex-waterfall-inner-columns { \n -webkit-flex-direction: row;\n flex-direction: row;\n -webkit-box-orient: horizontal;\n}\n\n.weex-scroller-wrapper.weex-scroller-vertical,\n.weex-recycle-wrapper.weex-recycle-vertical {\n overflow-x: hidden;\n overflow-y: scroll;\n}\n\n.weex-scroller-wrapper.weex-scroller-horizontal,\n.weex-recycle-wrapper.weex-recycle-horizontal {\n overflow-x: scroll;\n overflow-y: hidden;\n}\n\n.weex-scroller-wrapper.weex-scroller-disabled {\n overflow-x: hidden;\n overflow-y: hidden;\n}\n\n.weex-scroller-horizontal .weex-scroller-inner,\n.weex-recycle-horizontal .weex-recycle-inner {\n -webkit-flex-direction: row;\n flex-direction: row;\n -webkit-box-orient: horizontal;\n height: 100%;\n}\n\n.weex-cell {\n width: 100%;\n}\n\n.weex-refresh,\n.weex-loading {\n -webkit-box-align: center;\n -webkit-align-items: center;\n align-items: center;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n width: 100%;\n overflow: hidden;\n}\n",undefined);
|
|
7309
|
+
__$styleInject("/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n */\n\nbody > .weex-list,\nbody > .weex-recycle,\nbody > .weex-scroller,\nbody > .weex-waterfall {\n max-height: 100%;\n}\n\n.weex-list-wrapper,\n.weex-recycle-wrapper,\n.weex-scroller-wrapper,\n.weex-waterfall-wrapper {\n -webkit-overflow-scrolling: touch;\n}\n\n.weex-list-wrapper,\n.weex-waterfall-wrapper, \n.weex-recycle-wrapper {\n overflow-y: scroll !important;\n overflow-x: hidden !important;\n align-items: flex-start !important;\n justify-content: flex-start !important;\n max-width: 100vw; \n}\n\n.weex-list-inner,\n.weex-recycle-inner,\n.weex-scroller-inner,\n.weex-waterfall-inner {\n -webkit-overflow-scrolling: touch;\n align-items: inherit; \n}\n\n.weex-waterfall-inner-columns { \n -webkit-flex-direction: row;\n flex-direction: row;\n -webkit-box-orient: horizontal;\n max-width: 100vw; \n}\n\n.weex-scroller-wrapper.weex-scroller-vertical,\n.weex-recycle-wrapper.weex-recycle-vertical {\n overflow-x: hidden;\n overflow-y: scroll;\n}\n\n.weex-scroller-wrapper.weex-scroller-horizontal,\n.weex-recycle-wrapper.weex-recycle-horizontal {\n overflow-x: scroll;\n overflow-y: hidden;\n}\n\n.weex-scroller-wrapper.weex-scroller-disabled {\n overflow-x: hidden;\n overflow-y: hidden;\n}\n\n.weex-scroller-horizontal .weex-scroller-inner,\n.weex-recycle-horizontal .weex-recycle-inner {\n -webkit-flex-direction: row;\n flex-direction: row;\n -webkit-box-orient: horizontal;\n height: 100%;\n}\n\n.weex-cell {\n width: 100%;\n}\n\n.weex-refresh,\n.weex-loading {\n -webkit-box-align: center;\n -webkit-align-items: center;\n align-items: center;\n -webkit-box-pack: center;\n -webkit-justify-content: center;\n justify-content: center;\n width: 100%;\n overflow: hidden;\n}\n",undefined);
|
|
7307
7310
|
|
|
7308
7311
|
/*
|
|
7309
7312
|
* Licensed to the Apache Software Foundation (ASF) under one
|
package/package.json
CHANGED