@dolphinweex/weex-vue-render 0.2.94 → 0.2.95

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.
@@ -5122,6 +5122,7 @@ var style = {
5122
5122
  }
5123
5123
  // 辅助函数:将kebab-case转换为camelCase
5124
5124
  const kebabToCamel = (str) => {
5125
+ if (str.startsWith('--')) return str;
5125
5126
  return str.replace(/-([a-z])/g, (match, letter) => letter.toUpperCase())
5126
5127
  }
5127
5128
 
package/package.json CHANGED
@@ -49,5 +49,5 @@
49
49
  "type": "git",
50
50
  "url": "git+ssh://git@github.com/weexteam/weex-vue-render.git"
51
51
  },
52
- "version": "0.2.94"
52
+ "version": "0.2.95"
53
53
  }