@dolphinweex/weex-vue-render 0.2.70 → 0.2.72
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 +4 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -3061,7 +3061,9 @@ var scaleStyles = [
|
|
|
3061
3061
|
'min-height',
|
|
3062
3062
|
'minHeight',
|
|
3063
3063
|
'max-height',
|
|
3064
|
-
'maxHeight'
|
|
3064
|
+
'maxHeight',
|
|
3065
|
+
'transform-origin',
|
|
3066
|
+
'transformOrigin',
|
|
3065
3067
|
];
|
|
3066
3068
|
|
|
3067
3069
|
var vendorReg = /webkit|moz/i;
|
|
@@ -11293,6 +11295,7 @@ var dom = {
|
|
|
11293
11295
|
var appendCss = utils$3.appendCss;
|
|
11294
11296
|
key = camelToKebab(key);
|
|
11295
11297
|
var stylesText = '';
|
|
11298
|
+
styles["fontDisplay"] = "block"
|
|
11296
11299
|
for (var k in styles) {
|
|
11297
11300
|
if (styles.hasOwnProperty(k)) {
|
|
11298
11301
|
stylesText += camelToKebab(k) + ':' + styles[k] + ';';
|
package/package.json
CHANGED