@mpxjs/webpack-plugin 2.6.114-alpha.2 → 2.6.114-alpha.5
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/lib/platform/template/wx/index.js +4 -0
- package/lib/runtime/components/tenon/getInnerListeners.js +13 -4
- package/lib/runtime/components/tenon/tenon-button.vue +1 -1
- package/lib/runtime/components/tenon/tenon-image.vue +1 -1
- package/lib/runtime/components/tenon/tenon-input.vue +1 -1
- package/lib/runtime/components/tenon/tenon-switch.vue +1 -1
- package/lib/runtime/components/tenon/tenon-text-area.vue +1 -1
- package/lib/runtime/components/tenon/tenon-text.vue +1 -1
- package/lib/style-compiler/index.js +1 -1
- package/package.json +2 -2
|
@@ -237,6 +237,10 @@ module.exports = function getSpec ({ warn, error }) {
|
|
|
237
237
|
name: 'mpxModelEvent',
|
|
238
238
|
value: modelEvent
|
|
239
239
|
},
|
|
240
|
+
{
|
|
241
|
+
name: 'mpxModelEventId',
|
|
242
|
+
value: Math.random().toString(36).substr(3, 8)
|
|
243
|
+
},
|
|
240
244
|
{
|
|
241
245
|
name: '@mpxModel',
|
|
242
246
|
value: `__model(${stringifyWithResolveComputed(modelValue)}, $event, ${stringify(modelValuePathArr)}, ${stringify(modelFilter)})`
|
|
@@ -87,11 +87,20 @@ function processModel (listeners, context) {
|
|
|
87
87
|
// todo 访问$listeners也会导致上述现象,但是为了事件代理还必须访问$listeners,待后续思考处理
|
|
88
88
|
|
|
89
89
|
const modelEvent = context.$attrs.mpxModelEvent
|
|
90
|
-
|
|
90
|
+
const modelEventId = context.$attrs.mpxModelEventId
|
|
91
|
+
if (modelEvent && modelEventId) {
|
|
91
92
|
// 对于modelEvent,内部获得时间后向外部转发,触发外部listener的同时转发为mpxModel事件
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
|
|
94
|
+
const listener = listeners['onInput']
|
|
95
|
+
|
|
96
|
+
listeners['onInput'] = function (e) {
|
|
97
|
+
Hummer.notifyCenter.triggerEvent(modelEventId, {
|
|
98
|
+
detail: e
|
|
99
|
+
})
|
|
100
|
+
context.$emit('mpxModel', {
|
|
101
|
+
detail: e
|
|
102
|
+
})
|
|
103
|
+
listener && listener.call(this, e)
|
|
95
104
|
}
|
|
96
105
|
// 内部listener不需要mpxModel
|
|
97
106
|
delete listeners.mpxModel
|
|
@@ -29,7 +29,7 @@ module.exports = function (css, map) {
|
|
|
29
29
|
|
|
30
30
|
const transRpxRules = transRpxRulesRaw ? (Array.isArray(transRpxRulesRaw) ? transRpxRulesRaw : [transRpxRulesRaw]) : []
|
|
31
31
|
|
|
32
|
-
const transRpxFn = mpx.webConfig.transRpxFn
|
|
32
|
+
const transRpxFn = mpx.webConfig && mpx.webConfig.transRpxFn
|
|
33
33
|
const testResolveRange = (include = () => true, exclude) => {
|
|
34
34
|
return matchCondition(this.resourcePath, { include, exclude })
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/webpack-plugin",
|
|
3
|
-
"version": "2.6.114-alpha.
|
|
3
|
+
"version": "2.6.114-alpha.5",
|
|
4
4
|
"description": "mpx compile core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mpx"
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"@types/babel-types": "^7.0.4",
|
|
86
86
|
"webpack": "^4.46.0"
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "19cd16b7d2fd80e292b74689fcb5b2529f0504e6"
|
|
89
89
|
}
|