@mpxjs/webpack-plugin 2.10.15-prelease.1 → 2.10.16-beta.10

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.
Files changed (257) hide show
  1. package/lib/config.js +60 -0
  2. package/lib/dependencies/AppEntryDependency.js +2 -2
  3. package/lib/dependencies/RecordModuleIdMapDependency.js +49 -0
  4. package/lib/dependencies/ResolveDependency.js +1 -1
  5. package/lib/file-loader.js +13 -3
  6. package/lib/helpers.js +2 -0
  7. package/lib/index.js +40 -15
  8. package/lib/json-compiler/helper.js +72 -2
  9. package/lib/json-compiler/index.js +16 -56
  10. package/lib/json-compiler/plugin.js +2 -2
  11. package/lib/loader.js +10 -4
  12. package/lib/native-loader.js +6 -3
  13. package/lib/platform/json/wx/index.js +30 -29
  14. package/lib/platform/style/wx/index.js +8 -1
  15. package/lib/platform/template/wx/component-config/ad.js +5 -0
  16. package/lib/platform/template/wx/component-config/button.js +21 -5
  17. package/lib/platform/template/wx/component-config/camera.js +25 -3
  18. package/lib/platform/template/wx/component-config/canvas.js +8 -1
  19. package/lib/platform/template/wx/component-config/component.js +31 -33
  20. package/lib/platform/template/wx/component-config/cover-image.js +7 -2
  21. package/lib/platform/template/wx/component-config/cover-view.js +3 -1
  22. package/lib/platform/template/wx/component-config/fix-component-name.js +2 -2
  23. package/lib/platform/template/wx/component-config/form.js +27 -2
  24. package/lib/platform/template/wx/component-config/image.js +5 -0
  25. package/lib/platform/template/wx/component-config/input.js +10 -0
  26. package/lib/platform/template/wx/component-config/label.js +10 -2
  27. package/lib/platform/template/wx/component-config/map.js +11 -0
  28. package/lib/platform/template/wx/component-config/movable-area.js +4 -1
  29. package/lib/platform/template/wx/component-config/movable-view.js +17 -2
  30. package/lib/platform/template/wx/component-config/navigator.js +26 -0
  31. package/lib/platform/template/wx/component-config/picker-view.js +12 -0
  32. package/lib/platform/template/wx/component-config/picker.js +3 -1
  33. package/lib/platform/template/wx/component-config/progress.js +11 -1
  34. package/lib/platform/template/wx/component-config/rich-text.js +5 -0
  35. package/lib/platform/template/wx/component-config/scroll-view.js +12 -1
  36. package/lib/platform/template/wx/component-config/slider.js +8 -0
  37. package/lib/platform/template/wx/component-config/swiper-item.js +5 -2
  38. package/lib/platform/template/wx/component-config/swiper.js +10 -0
  39. package/lib/platform/template/wx/component-config/text.js +5 -0
  40. package/lib/platform/template/wx/component-config/textarea.js +19 -2
  41. package/lib/platform/template/wx/component-config/unsupported.js +10 -1
  42. package/lib/platform/template/wx/component-config/video.js +10 -0
  43. package/lib/platform/template/wx/index.js +21 -1
  44. package/lib/react/index.js +2 -0
  45. package/lib/react/processJSON.js +39 -71
  46. package/lib/react/processStyles.js +3 -2
  47. package/lib/react/processTemplate.js +8 -6
  48. package/lib/react/script-helper.js +6 -16
  49. package/lib/react/style-helper.js +10 -2
  50. package/lib/runtime/components/react/context.ts +13 -6
  51. package/lib/runtime/components/react/dist/context.d.ts +76 -0
  52. package/lib/runtime/components/react/dist/context.d.ts.map +1 -0
  53. package/lib/runtime/components/react/dist/context.js +1 -0
  54. package/lib/runtime/components/react/dist/event.config.d.ts +8 -0
  55. package/lib/runtime/components/react/dist/event.config.d.ts.map +1 -0
  56. package/lib/runtime/components/react/dist/getInnerListeners.d.ts +8 -0
  57. package/lib/runtime/components/react/dist/getInnerListeners.d.ts.map +1 -0
  58. package/lib/runtime/components/react/dist/mpx-async-suspense.d.ts +13 -0
  59. package/lib/runtime/components/react/dist/mpx-async-suspense.d.ts.map +1 -0
  60. package/lib/runtime/components/react/dist/mpx-button.d.ts +69 -0
  61. package/lib/runtime/components/react/dist/mpx-button.d.ts.map +1 -0
  62. package/lib/runtime/components/react/dist/mpx-camera.d.ts +27 -0
  63. package/lib/runtime/components/react/dist/mpx-camera.d.ts.map +1 -0
  64. package/lib/runtime/components/react/dist/mpx-camera.jsx +197 -0
  65. package/lib/runtime/components/react/dist/mpx-canvas/Bus.d.ts +24 -0
  66. package/lib/runtime/components/react/dist/mpx-canvas/Bus.d.ts.map +1 -0
  67. package/lib/runtime/components/react/dist/mpx-canvas/CanvasGradient.d.ts +8 -0
  68. package/lib/runtime/components/react/dist/mpx-canvas/CanvasGradient.d.ts.map +1 -0
  69. package/lib/runtime/components/react/dist/mpx-canvas/CanvasRenderingContext2D.d.ts +7 -0
  70. package/lib/runtime/components/react/dist/mpx-canvas/CanvasRenderingContext2D.d.ts.map +1 -0
  71. package/lib/runtime/components/react/dist/mpx-canvas/Image.d.ts +21 -0
  72. package/lib/runtime/components/react/dist/mpx-canvas/Image.d.ts.map +1 -0
  73. package/lib/runtime/components/react/dist/mpx-canvas/ImageData.d.ts +9 -0
  74. package/lib/runtime/components/react/dist/mpx-canvas/ImageData.d.ts.map +1 -0
  75. package/lib/runtime/components/react/dist/mpx-canvas/constructorsRegistry.d.ts +11 -0
  76. package/lib/runtime/components/react/dist/mpx-canvas/constructorsRegistry.d.ts.map +1 -0
  77. package/lib/runtime/components/react/dist/mpx-canvas/html.d.ts +3 -0
  78. package/lib/runtime/components/react/dist/mpx-canvas/html.d.ts.map +1 -0
  79. package/lib/runtime/components/react/dist/mpx-canvas/index.d.ts +33 -0
  80. package/lib/runtime/components/react/dist/mpx-canvas/index.d.ts.map +1 -0
  81. package/lib/runtime/components/react/dist/mpx-canvas/utils.d.ts +53 -0
  82. package/lib/runtime/components/react/dist/mpx-canvas/utils.d.ts.map +1 -0
  83. package/lib/runtime/components/react/dist/mpx-checkbox-group.d.ts +21 -0
  84. package/lib/runtime/components/react/dist/mpx-checkbox-group.d.ts.map +1 -0
  85. package/lib/runtime/components/react/dist/mpx-checkbox.d.ts +33 -0
  86. package/lib/runtime/components/react/dist/mpx-checkbox.d.ts.map +1 -0
  87. package/lib/runtime/components/react/dist/mpx-form.d.ts +28 -0
  88. package/lib/runtime/components/react/dist/mpx-form.d.ts.map +1 -0
  89. package/lib/runtime/components/react/dist/mpx-icon/index.d.ts +19 -0
  90. package/lib/runtime/components/react/dist/mpx-icon/index.d.ts.map +1 -0
  91. package/lib/runtime/components/react/dist/mpx-image.d.ts +22 -0
  92. package/lib/runtime/components/react/dist/mpx-image.d.ts.map +1 -0
  93. package/lib/runtime/components/react/dist/mpx-image.jsx +81 -37
  94. package/lib/runtime/components/react/dist/mpx-inline-text.d.ts +8 -0
  95. package/lib/runtime/components/react/dist/mpx-inline-text.d.ts.map +1 -0
  96. package/lib/runtime/components/react/dist/mpx-input.d.ts +51 -0
  97. package/lib/runtime/components/react/dist/mpx-input.d.ts.map +1 -0
  98. package/lib/runtime/components/react/dist/mpx-input.jsx +37 -11
  99. package/lib/runtime/components/react/dist/mpx-keyboard-avoiding-view.d.ts +13 -0
  100. package/lib/runtime/components/react/dist/mpx-keyboard-avoiding-view.d.ts.map +1 -0
  101. package/lib/runtime/components/react/dist/mpx-keyboard-avoiding-view.jsx +61 -50
  102. package/lib/runtime/components/react/dist/mpx-label.d.ts +21 -0
  103. package/lib/runtime/components/react/dist/mpx-label.d.ts.map +1 -0
  104. package/lib/runtime/components/react/dist/mpx-movable-area.d.ts +21 -0
  105. package/lib/runtime/components/react/dist/mpx-movable-area.d.ts.map +1 -0
  106. package/lib/runtime/components/react/dist/mpx-movable-view.d.ts +66 -0
  107. package/lib/runtime/components/react/dist/mpx-movable-view.d.ts.map +1 -0
  108. package/lib/runtime/components/react/dist/mpx-nav.d.ts +9 -0
  109. package/lib/runtime/components/react/dist/mpx-nav.d.ts.map +1 -0
  110. package/lib/runtime/components/react/dist/mpx-nav.jsx +132 -0
  111. package/lib/runtime/components/react/dist/mpx-navigator.d.ts +10 -0
  112. package/lib/runtime/components/react/dist/mpx-navigator.d.ts.map +1 -0
  113. package/lib/runtime/components/react/dist/mpx-picker/date.d.ts +7 -0
  114. package/lib/runtime/components/react/dist/mpx-picker/date.d.ts.map +1 -0
  115. package/lib/runtime/components/react/dist/mpx-picker/dateData.d.ts +8 -0
  116. package/lib/runtime/components/react/dist/mpx-picker/dateData.d.ts.map +1 -0
  117. package/lib/runtime/components/react/dist/mpx-picker/index.d.ts +7 -0
  118. package/lib/runtime/components/react/dist/mpx-picker/index.d.ts.map +1 -0
  119. package/lib/runtime/components/react/dist/mpx-picker/multiSelector.d.ts +7 -0
  120. package/lib/runtime/components/react/dist/mpx-picker/multiSelector.d.ts.map +1 -0
  121. package/lib/runtime/components/react/dist/mpx-picker/region.d.ts +7 -0
  122. package/lib/runtime/components/react/dist/mpx-picker/region.d.ts.map +1 -0
  123. package/lib/runtime/components/react/dist/mpx-picker/regionData.d.ts +3 -0
  124. package/lib/runtime/components/react/dist/mpx-picker/regionData.d.ts.map +1 -0
  125. package/lib/runtime/components/react/dist/mpx-picker/selector.d.ts +7 -0
  126. package/lib/runtime/components/react/dist/mpx-picker/selector.d.ts.map +1 -0
  127. package/lib/runtime/components/react/dist/mpx-picker/time.d.ts +7 -0
  128. package/lib/runtime/components/react/dist/mpx-picker/time.d.ts.map +1 -0
  129. package/lib/runtime/components/react/dist/mpx-picker/type.d.ts +107 -0
  130. package/lib/runtime/components/react/dist/mpx-picker/type.d.ts.map +1 -0
  131. package/lib/runtime/components/react/dist/mpx-picker-view/index.d.ts +33 -0
  132. package/lib/runtime/components/react/dist/mpx-picker-view/index.d.ts.map +1 -0
  133. package/lib/runtime/components/react/dist/mpx-picker-view/index.jsx +4 -3
  134. package/lib/runtime/components/react/dist/mpx-picker-view/pickerVIewContext.d.ts +9 -0
  135. package/lib/runtime/components/react/dist/mpx-picker-view/pickerVIewContext.d.ts.map +1 -0
  136. package/lib/runtime/components/react/dist/mpx-picker-view-column/index.d.ts +24 -0
  137. package/lib/runtime/components/react/dist/mpx-picker-view-column/index.d.ts.map +1 -0
  138. package/lib/runtime/components/react/dist/mpx-picker-view-column/index.jsx +12 -18
  139. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItem.d.ts +15 -0
  140. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItem.d.ts.map +1 -0
  141. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItem.jsx +8 -11
  142. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItemLite.d.ts +14 -0
  143. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItemLite.d.ts.map +1 -0
  144. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewColumnItemLite.jsx +20 -0
  145. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewFaces.d.ts +17 -0
  146. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewFaces.d.ts.map +1 -0
  147. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewIndicator.d.ts +13 -0
  148. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewIndicator.d.ts.map +1 -0
  149. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewMask.d.ts +12 -0
  150. package/lib/runtime/components/react/dist/mpx-picker-view-column/pickerViewMask.d.ts.map +1 -0
  151. package/lib/runtime/components/react/dist/mpx-popup/index.d.ts +23 -0
  152. package/lib/runtime/components/react/dist/mpx-popup/index.d.ts.map +1 -0
  153. package/lib/runtime/components/react/dist/mpx-popup/popupBase.d.ts +17 -0
  154. package/lib/runtime/components/react/dist/mpx-popup/popupBase.d.ts.map +1 -0
  155. package/lib/runtime/components/react/dist/mpx-portal/index.d.ts +16 -0
  156. package/lib/runtime/components/react/dist/mpx-portal/index.d.ts.map +1 -0
  157. package/lib/runtime/components/react/dist/mpx-portal/index.jsx +5 -1
  158. package/lib/runtime/components/react/dist/mpx-portal/portal-host.d.ts +30 -0
  159. package/lib/runtime/components/react/dist/mpx-portal/portal-host.d.ts.map +1 -0
  160. package/lib/runtime/components/react/dist/mpx-portal/portal-manager.d.ts +10 -0
  161. package/lib/runtime/components/react/dist/mpx-portal/portal-manager.d.ts.map +1 -0
  162. package/lib/runtime/components/react/dist/mpx-progress.d.ts +24 -0
  163. package/lib/runtime/components/react/dist/mpx-progress.d.ts.map +1 -0
  164. package/lib/runtime/components/react/dist/mpx-radio-group.d.ts +21 -0
  165. package/lib/runtime/components/react/dist/mpx-radio-group.d.ts.map +1 -0
  166. package/lib/runtime/components/react/dist/mpx-radio.d.ts +27 -0
  167. package/lib/runtime/components/react/dist/mpx-radio.d.ts.map +1 -0
  168. package/lib/runtime/components/react/dist/mpx-rich-text/html.d.ts +2 -0
  169. package/lib/runtime/components/react/dist/mpx-rich-text/html.d.ts.map +1 -0
  170. package/lib/runtime/components/react/dist/mpx-rich-text/index.d.ts +25 -0
  171. package/lib/runtime/components/react/dist/mpx-rich-text/index.d.ts.map +1 -0
  172. package/lib/runtime/components/react/dist/mpx-root-portal.d.ts +15 -0
  173. package/lib/runtime/components/react/dist/mpx-root-portal.d.ts.map +1 -0
  174. package/lib/runtime/components/react/dist/mpx-scroll-view.d.ts +55 -0
  175. package/lib/runtime/components/react/dist/mpx-scroll-view.d.ts.map +1 -0
  176. package/lib/runtime/components/react/dist/mpx-scroll-view.jsx +6 -14
  177. package/lib/runtime/components/react/dist/mpx-simple-text.d.ts +8 -0
  178. package/lib/runtime/components/react/dist/mpx-simple-text.d.ts.map +1 -0
  179. package/lib/runtime/components/react/dist/mpx-simple-view.d.ts +8 -0
  180. package/lib/runtime/components/react/dist/mpx-simple-view.d.ts.map +1 -0
  181. package/lib/runtime/components/react/dist/mpx-slider.d.ts +31 -0
  182. package/lib/runtime/components/react/dist/mpx-slider.d.ts.map +1 -0
  183. package/lib/runtime/components/react/dist/mpx-sticky-header.d.ts +18 -0
  184. package/lib/runtime/components/react/dist/mpx-sticky-header.d.ts.map +1 -0
  185. package/lib/runtime/components/react/dist/mpx-sticky-section.d.ts +16 -0
  186. package/lib/runtime/components/react/dist/mpx-sticky-section.d.ts.map +1 -0
  187. package/lib/runtime/components/react/dist/mpx-swiper-item.d.ts +19 -0
  188. package/lib/runtime/components/react/dist/mpx-swiper-item.d.ts.map +1 -0
  189. package/lib/runtime/components/react/dist/mpx-swiper.d.ts +53 -0
  190. package/lib/runtime/components/react/dist/mpx-swiper.d.ts.map +1 -0
  191. package/lib/runtime/components/react/dist/mpx-swiper.jsx +9 -5
  192. package/lib/runtime/components/react/dist/mpx-switch.d.ts +27 -0
  193. package/lib/runtime/components/react/dist/mpx-switch.d.ts.map +1 -0
  194. package/lib/runtime/components/react/dist/mpx-text.d.ts +23 -0
  195. package/lib/runtime/components/react/dist/mpx-text.d.ts.map +1 -0
  196. package/lib/runtime/components/react/dist/mpx-text.jsx +33 -5
  197. package/lib/runtime/components/react/dist/mpx-textarea.d.ts +8 -0
  198. package/lib/runtime/components/react/dist/mpx-textarea.d.ts.map +1 -0
  199. package/lib/runtime/components/react/dist/mpx-video.d.ts +102 -0
  200. package/lib/runtime/components/react/dist/mpx-video.d.ts.map +1 -0
  201. package/lib/runtime/components/react/dist/mpx-view.d.ts +35 -0
  202. package/lib/runtime/components/react/dist/mpx-view.d.ts.map +1 -0
  203. package/lib/runtime/components/react/dist/mpx-view.jsx +1 -1
  204. package/lib/runtime/components/react/dist/mpx-web-view.d.ts +23 -0
  205. package/lib/runtime/components/react/dist/mpx-web-view.d.ts.map +1 -0
  206. package/lib/runtime/components/react/dist/mpx-web-view.jsx +1 -1
  207. package/lib/runtime/components/react/dist/parser.d.ts +40 -0
  208. package/lib/runtime/components/react/dist/parser.d.ts.map +1 -0
  209. package/lib/runtime/components/react/dist/useAnimationHooks.d.ts +33 -0
  210. package/lib/runtime/components/react/dist/useAnimationHooks.d.ts.map +1 -0
  211. package/lib/runtime/components/react/dist/useNodesRef.d.ts +12 -0
  212. package/lib/runtime/components/react/dist/useNodesRef.d.ts.map +1 -0
  213. package/lib/runtime/components/react/dist/utils.d.ts +123 -0
  214. package/lib/runtime/components/react/dist/utils.d.ts.map +1 -0
  215. package/lib/runtime/components/react/dist/utils.jsx +16 -6
  216. package/lib/runtime/components/react/mpx-camera.tsx +275 -0
  217. package/lib/runtime/components/react/mpx-image.tsx +89 -42
  218. package/lib/runtime/components/react/mpx-input.tsx +44 -17
  219. package/lib/runtime/components/react/mpx-keyboard-avoiding-view.tsx +69 -49
  220. package/lib/runtime/components/react/mpx-nav.tsx +155 -0
  221. package/lib/runtime/components/react/mpx-picker-view/index.tsx +5 -2
  222. package/lib/runtime/components/react/mpx-picker-view-column/index.tsx +26 -21
  223. package/lib/runtime/components/react/mpx-picker-view-column/pickerViewColumnItem.tsx +8 -12
  224. package/lib/runtime/components/react/mpx-picker-view-column/pickerViewColumnItemLite.tsx +55 -0
  225. package/lib/runtime/components/react/mpx-portal/index.tsx +8 -2
  226. package/lib/runtime/components/react/mpx-scroll-view.tsx +6 -17
  227. package/lib/runtime/components/react/mpx-swiper.tsx +9 -5
  228. package/lib/runtime/components/react/mpx-text.tsx +38 -5
  229. package/lib/runtime/components/react/mpx-view.tsx +1 -1
  230. package/lib/runtime/components/react/mpx-web-view.tsx +1 -1
  231. package/lib/runtime/components/react/types/common.d.ts +19 -0
  232. package/lib/runtime/components/react/utils.tsx +15 -6
  233. package/lib/runtime/components/web/mpx-input.vue +0 -14
  234. package/lib/runtime/stringify.wxs +2 -2
  235. package/lib/script-setup-compiler/index.js +2 -2
  236. package/lib/style-compiler/index.js +3 -2
  237. package/lib/style-compiler/load-postcss-config.js +1 -1
  238. package/lib/style-compiler/plugins/trans-special.js +10 -2
  239. package/lib/style-compiler/strip-conditional-loader.js +178 -15
  240. package/lib/template-compiler/bind-this.js +2 -2
  241. package/lib/template-compiler/compiler.js +267 -71
  242. package/lib/template-compiler/gen-node-react.js +18 -6
  243. package/lib/template-compiler/index.js +12 -10
  244. package/lib/template-compiler/parse-exps.js +1 -1
  245. package/lib/utils/const.js +2 -1
  246. package/lib/utils/dom-tag-config.js +6 -6
  247. package/lib/utils/env.js +6 -1
  248. package/lib/utils/get-build-tag-component.js +35 -0
  249. package/lib/utils/pre-process-json.js +5 -0
  250. package/lib/web/index.js +2 -0
  251. package/lib/web/processJSON.js +44 -16
  252. package/lib/web/processScript.js +1 -1
  253. package/lib/web/processTemplate.js +6 -4
  254. package/lib/web/script-helper.js +19 -9
  255. package/lib/wxs/pre-loader.js +1 -1
  256. package/lib/wxss/loader.js +1 -9
  257. package/package.json +15 -4
@@ -9,6 +9,9 @@ module.exports = function ({ print }) {
9
9
  const androidPropLog = print({ platform: 'android', tag: TAG_NAME, isError: false })
10
10
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
11
11
  const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
12
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
13
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
14
+
12
15
  return {
13
16
  test: TAG_NAME,
14
17
  web (tag, { el }) {
@@ -36,7 +39,18 @@ module.exports = function ({ print }) {
36
39
  harmony: harmonyPropLog
37
40
  },
38
41
  {
39
- test: /^(damping|friction|scale|scale-min|scale-max|scale-value)$/,
42
+ test: /^(inertia)$/,
43
+ ks: ksPropLog
44
+ },
45
+ {
46
+ test: /^(damping|friction)$/,
47
+ ios: iosPropLog,
48
+ android: androidPropLog,
49
+ harmony: harmonyPropLog,
50
+ ks: ksPropLog
51
+ },
52
+ {
53
+ test: /^(scale|scale-min|scale-max|scale-value)$/,
40
54
  ios: iosPropLog,
41
55
  android: androidPropLog,
42
56
  harmony: harmonyPropLog
@@ -45,7 +59,8 @@ module.exports = function ({ print }) {
45
59
  event: [
46
60
  {
47
61
  test: /^(htouchmove|vtouchmove)$/,
48
- ali: aliEventLog
62
+ ali: aliEventLog,
63
+ ks: ksEventLog
49
64
  },
50
65
  {
51
66
  test: /^(bindscale)$/,
@@ -22,6 +22,16 @@ module.exports = function ({ print }) {
22
22
  const qaEventLog = print({ platform: 'qa', tag: TAG_NAME, isError: false, type: 'event' })
23
23
  const qaPropLog = print({ platform: 'qa', tag: TAG_NAME, isError: false })
24
24
  const qaValueLogError = print({ platform: 'qa', tag: TAG_NAME, isError: true, type: 'value' })
25
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
26
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
27
+ const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
28
+ const iosEventLog = print({ platform: 'ios', tag: TAG_NAME, isError: false, type: 'event' })
29
+ const androidPropLog = print({ platform: 'android', tag: TAG_NAME, isError: false })
30
+ const androidEventLog = print({ platform: 'android', tag: TAG_NAME, isError: false, type: 'event' })
31
+ const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
32
+ const harmonyEventLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false, type: 'event' })
33
+ const jdPropLog = print({ platform: 'jd', tag: TAG_NAME, isError: false })
34
+
25
35
  return {
26
36
  test: TAG_NAME,
27
37
  web (tag, { el }) {
@@ -103,6 +113,18 @@ module.exports = function ({ print }) {
103
113
  {
104
114
  test: /^(target|app-id|path|extra-data|version)$/,
105
115
  web: webPropLog
116
+ },
117
+ {
118
+ test: /^(short-link)$/,
119
+ ks: ksPropLog,
120
+ web: webPropLog,
121
+ ios: iosPropLog,
122
+ android: androidPropLog,
123
+ harmony: harmonyPropLog,
124
+ jd: jdPropLog,
125
+ ali: aliPropLog,
126
+ tt: ttPropLog,
127
+ qa: qaPropLog
106
128
  }
107
129
  ],
108
130
  event: [
@@ -112,6 +134,10 @@ module.exports = function ({ print }) {
112
134
  tt: ttEventLog,
113
135
  web: webEventLog,
114
136
  qa: qaEventLog,
137
+ ks: ksEventLog,
138
+ ios: iosEventLog,
139
+ android: androidEventLog,
140
+ harmony: harmonyEventLog,
115
141
  jd (eventName) {
116
142
  const eventMap = {
117
143
  success: 'success',
@@ -9,6 +9,8 @@ module.exports = function ({ print }) {
9
9
  const iosEventLog = print({ platform: 'ios', tag: TAG_NAME, isError: false, type: 'event' })
10
10
  const androidEventLog = print({ platform: 'android', tag: TAG_NAME, isError: false, type: 'event' })
11
11
  const harmonyEventLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false, type: 'event' })
12
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
13
+ const webEventLog = print({ platform: 'web', tag: TAG_NAME, isError: false, type: 'event' })
12
14
 
13
15
  return {
14
16
  test: TAG_NAME,
@@ -44,6 +46,16 @@ module.exports = function ({ print }) {
44
46
  ios: iosEventLog,
45
47
  android: androidEventLog,
46
48
  harmony: harmonyEventLog
49
+ },
50
+ {
51
+ test: /^(immediate-change)$/,
52
+ swan: baiduEventLog,
53
+ ks: ksEventLog,
54
+ ios: iosEventLog,
55
+ android: androidEventLog,
56
+ harmony: harmonyEventLog,
57
+ web: webEventLog,
58
+ jd: jdEventLog
47
59
  }
48
60
  ]
49
61
  }
@@ -11,6 +11,7 @@ module.exports = function ({ print }) {
11
11
  const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
12
12
  const androidPropLog = print({ platform: 'android', tag: TAG_NAME, isError: false })
13
13
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
14
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
14
15
 
15
16
  return {
16
17
  test: TAG_NAME,
@@ -49,7 +50,8 @@ module.exports = function ({ print }) {
49
50
  qa: qaPropLog,
50
51
  ios: iosPropLog,
51
52
  android: androidPropLog,
52
- harmony: harmonyPropLog
53
+ harmony: harmonyPropLog,
54
+ ks: ksPropLog
53
55
  }
54
56
  ],
55
57
  event: [
@@ -10,6 +10,7 @@ module.exports = function ({ print }) {
10
10
  const jdPropLog = print({ platform: 'jd', tag: TAG_NAME, isError: false })
11
11
  const jdEventLog = print({ platform: 'jd', tag: TAG_NAME, isError: false, type: 'event' })
12
12
  const qqPropLog = print({ platform: 'qq', tag: TAG_NAME, isError: false })
13
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
13
14
 
14
15
  return {
15
16
  test: TAG_NAME,
@@ -55,6 +56,14 @@ module.exports = function ({ print }) {
55
56
  }
56
57
  obj.name = propsMap[obj.name]
57
58
  return obj
59
+ },
60
+ ks (obj) {
61
+ const propsMap = {
62
+ activeColor: 'active-color',
63
+ backgroundColor: 'background-color'
64
+ }
65
+ obj.name = propsMap[obj.name]
66
+ return obj
58
67
  }
59
68
  },
60
69
  {
@@ -76,7 +85,8 @@ module.exports = function ({ print }) {
76
85
  ali: aliEventLog,
77
86
  swan: baiduEventLog,
78
87
  tt: ttEventLog,
79
- jd: jdEventLog
88
+ jd: jdEventLog,
89
+ ks: ksEventLog
80
90
  }
81
91
  ]
82
92
  }
@@ -5,6 +5,7 @@ module.exports = function ({ print }) {
5
5
  const baiduPropLog = print({ platform: 'baidu', tag: TAG_NAME, isError: false })
6
6
  const ttPropLog = print({ platform: 'bytedance', tag: TAG_NAME, isError: false })
7
7
  const jdPropLog = print({ platform: 'jd', tag: TAG_NAME, isError: false })
8
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
8
9
 
9
10
  return {
10
11
  test: TAG_NAME,
@@ -35,6 +36,10 @@ module.exports = function ({ print }) {
35
36
  {
36
37
  test: /^(nodes)$/,
37
38
  jd: jdPropLog
39
+ },
40
+ {
41
+ test: /^(user-select)$/,
42
+ ks: ksPropLog
38
43
  }
39
44
  ]
40
45
  }
@@ -18,6 +18,8 @@ module.exports = function ({ print }) {
18
18
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
19
19
  const iosEventLog = print({ platform: 'ios', tag: TAG_NAME, isError: false, type: 'event' })
20
20
  const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
21
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
22
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
21
23
 
22
24
  return {
23
25
  test: TAG_NAME,
@@ -67,6 +69,10 @@ module.exports = function ({ print }) {
67
69
  {
68
70
  test: /^(refresher-default-style|refresher-background)$/,
69
71
  ios: iosPropLog
72
+ },
73
+ {
74
+ test: /^(scroll-into-view-offset|enable-back-to-top|enable-passive|refresher-enabled|refresher-threshold|refresher-default-style|refresher-background|refresher-triggered|bounces|fast-deceleration|enable-flex|enhanced|paging-enabled|using-sticky|type|associative-container|reverse|clip|enable-back-to-top|cache-extent|min-drag-distance|scroll-into-view-within-extent|scroll-into-view-alignment|padding|refresher-two-level-enabled|refresher-two-level-triggered|refresher-two-level-threshold|refresher-two-level-close-threshold|refresher-two-level-close-threshold|refresher-two-level-scroll-enabled|refresher-ballistic-refresh-enabled|refresher-two-level-pinned|scroll-anchoring)$/,
75
+ ks: ksPropLog
70
76
  }
71
77
  ],
72
78
  event: [
@@ -90,13 +96,18 @@ module.exports = function ({ print }) {
90
96
  ali: aliEventLog,
91
97
  tt: ttEventLog,
92
98
  qq: qqEventLog,
93
- swan: baiduEventLog
99
+ swan: baiduEventLog,
100
+ ks: ksEventLog
94
101
  },
95
102
  {
96
103
  test: /^(refresherpulling|refresherrestore|refresherabort)$/,
97
104
  android: androidEventLog,
98
105
  ios: iosEventLog,
99
106
  harmony: harmonyEventLog
107
+ },
108
+ {
109
+ test: /^(scrollstart|scrollend|refresherwillrefresh|refresherstatuschange)$/,
110
+ ks: ksEventLog
100
111
  }
101
112
  ]
102
113
  }
@@ -60,6 +60,14 @@ module.exports = function ({ print }) {
60
60
  }
61
61
  obj.name = propsMap[obj.name]
62
62
  return obj
63
+ },
64
+ ks (obj) {
65
+ const propsMap = {
66
+ activeColor: 'active-color',
67
+ backgroundColor: 'background-color'
68
+ }
69
+ obj.name = propsMap[obj.name]
70
+ return obj
63
71
  }
64
72
  }
65
73
  ]
@@ -9,6 +9,7 @@ module.exports = function ({ print }) {
9
9
  const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
10
10
  const androidPropLog = print({ platform: 'android', tag: TAG_NAME, isError: false })
11
11
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
12
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
12
13
 
13
14
  return {
14
15
  test: TAG_NAME,
@@ -34,7 +35,8 @@ module.exports = function ({ print }) {
34
35
  ali: aliPropLog,
35
36
  ios: iosPropLog,
36
37
  android: androidPropLog,
37
- harmony: harmonyPropLog
38
+ harmony: harmonyPropLog,
39
+ ks: ksPropLog
38
40
  },
39
41
  {
40
42
  test: /^(skip-hidden-item-layout)$/,
@@ -42,7 +44,8 @@ module.exports = function ({ print }) {
42
44
  ali: aliPropLog,
43
45
  tt: ttPropLog,
44
46
  swan: baiduPropLog,
45
- qq: qqPropLog
47
+ qq: qqPropLog,
48
+ ks: ksPropLog
46
49
  }
47
50
  ]
48
51
  }
@@ -7,6 +7,7 @@ module.exports = function ({ print }) {
7
7
  const qqPropLog = print({ platform: 'qq', tag: TAG_NAME, isError: false })
8
8
  const ttPropLog = print({ platform: 'bytedance', tag: TAG_NAME, isError: false })
9
9
  const webPropLog = print({ platform: 'web', tag: TAG_NAME, isError: false })
10
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
10
11
  const jdEventLog = print({ platform: 'jd', tag: TAG_NAME, isError: false, type: 'event' })
11
12
  const jdPropLog = print({ platform: 'jd', tag: TAG_NAME, isError: false })
12
13
  const qaPropLog = print({ platform: 'qa', tag: TAG_NAME, isError: false })
@@ -16,6 +17,7 @@ module.exports = function ({ print }) {
16
17
  const androidEventLog = print({ platform: 'android', tag: TAG_NAME, isError: false, type: 'event' })
17
18
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
18
19
  const harmonyEventLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false, type: 'event' })
20
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
19
21
 
20
22
  return {
21
23
  test: TAG_NAME,
@@ -69,6 +71,10 @@ module.exports = function ({ print }) {
69
71
  ios: iosPropLog,
70
72
  android: androidPropLog,
71
73
  harmony: harmonyPropLog
74
+ },
75
+ {
76
+ test: /^(snap-to-edge|previous-margin|next-margin|display-multiple-items|direction|layout-type|transformer-type|indicator-type|indicator-margin|indicator-spacing|indicator-radius|indicator-width|indicator-height|indicator-alignment|indicator-offset|scroll-with-animation|cache-extent)$/,
77
+ ks: ksPropLog
72
78
  }
73
79
  ],
74
80
  event: [
@@ -95,6 +101,10 @@ module.exports = function ({ print }) {
95
101
  ios: iosEventLog,
96
102
  android: androidEventLog,
97
103
  harmony: harmonyEventLog
104
+ },
105
+ {
106
+ test: /^(onscrollstart|onscrollupdate|onscrollend)$/,
107
+ ks: ksEventLog
98
108
  }
99
109
  ]
100
110
  }
@@ -9,6 +9,7 @@ module.exports = function ({ print }) {
9
9
  const iosPropLog = print({ platform: 'ios', tag: TAG_NAME, isError: false })
10
10
  const androidPropLog = print({ platform: 'android', tag: TAG_NAME, isError: false })
11
11
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
12
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
12
13
 
13
14
  return {
14
15
  test: TAG_NAME,
@@ -74,6 +75,10 @@ module.exports = function ({ print }) {
74
75
  el.isSimple = true
75
76
  return false
76
77
  }
78
+ },
79
+ {
80
+ test: /^(user-select|overflow|max-lines|decode)$/,
81
+ ks: ksPropLog
77
82
  }
78
83
  ]
79
84
  }
@@ -23,6 +23,8 @@ module.exports = function ({ print }) {
23
23
  const harmonyValueLogError = print({ platform: 'harmony', tag: TAG_NAME, isError: true, type: 'value' })
24
24
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
25
25
  const harmonyEventLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false, type: 'event' })
26
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
27
+ const ksEventLog = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
26
28
 
27
29
  return {
28
30
  test: TAG_NAME,
@@ -95,12 +97,17 @@ module.exports = function ({ print }) {
95
97
  ios: iosPropLog,
96
98
  android: androidPropLog,
97
99
  harmony: harmonyPropLog
100
+ },
101
+ {
102
+ test: /^(cursor-spacing|cursor|selection-start|selection-end|adjust-position|hold-keyboard|disable-default-padding|confirm-hold|adjust-keyboard-to|placeholder-class|show-confirm-bar)$/,
103
+ ks: ksPropLog
98
104
  }
99
105
  ],
100
106
  event: [
101
107
  {
102
108
  test: /^(confirm|linechange)$/,
103
- web: webEventLog
109
+ web: webEventLog,
110
+ ks: ksEventLog
104
111
  },
105
112
  {
106
113
  test: /^keyboardheightchange$/,
@@ -124,7 +131,17 @@ module.exports = function ({ print }) {
124
131
  test: /^keyboard.+$/,
125
132
  ios: iosEventLog,
126
133
  android: androidEventLog,
127
- harmony: harmonyEventLog
134
+ harmony: harmonyEventLog,
135
+ ks: ksEventLog
136
+ },
137
+ {
138
+ test: /^(selectionchange)$/,
139
+ ks: ksEventLog,
140
+ ali: aliEventLog,
141
+ jd: jdEventLog,
142
+ qq: qqEventLog,
143
+ tt: ttEventLog,
144
+ web: webEventLog
128
145
  }
129
146
  ]
130
147
  }
@@ -6,12 +6,14 @@ const BAIDU_UNSUPPORTED_TAG_NAME_ARR = ['functional-page-navigator', 'live-pushe
6
6
  const QQ_UNSUPPORTED_TAG_NAME_ARR = ['functional-page-navigator', 'official-account', 'editor']
7
7
  // 头条小程序不支持的标签集合
8
8
  const TT_UNSUPPORTED_TAG_NAME_ARR = ['movable-view', 'cover-image', 'cover-view', 'movable-area', 'open-data', 'official-account', 'editor', 'functional-page-navigator', 'audio', 'live-pusher']
9
+ // 快手小程序不支持的标签集合
10
+ const KS_UNSUPPORTED_TAG_NAME_ARR = ['match-media', 'page-container', 'root-portal', 'selection', 'functional-page-navigator', 'editor', 'editor-portal', 'keyboard-accessory', 'live-player', 'live-pusher', 'voip-room', 'channel-live', 'channel-video', 'ad-custom', 'official-account', 'official-account-publisher', 'open-data', 'store-coupon', 'store-gift', 'store-home', 'store-product']
9
11
  // 京东小程序不支持的标签集合
10
12
  const JD_UNSUPPORTED_TAG_NAME_ARR = ['functional-page-navigator', 'live-pusher', 'live-player', 'rich-text', 'audio', 'video', 'camera']
11
13
  // 快应用不支持的标签集合
12
14
  const QA_UNSUPPORTED_TAG_NAME_ARR = ['movable-view', 'movable-area', 'open-data', 'official-account', 'editor', 'functional-page-navigator', 'live-player', 'live-pusher', 'ad', 'cover-image']
13
15
  // RN不支持的标签集合
14
- const RN_UNSUPPORTED_TAG_NAME_ARR = ['open-data', 'official-account', 'editor', 'functional-page-navigator', 'live-player', 'live-pusher', 'ad', 'audio', 'camera', 'match-media', 'page-container', 'editor', 'keyboard-accessory', 'map']
16
+ const RN_UNSUPPORTED_TAG_NAME_ARR = ['open-data', 'official-account', 'editor', 'functional-page-navigator', 'live-player', 'live-pusher', 'ad', 'audio', 'match-media', 'page-container', 'editor', 'keyboard-accessory', 'map']
15
17
 
16
18
  /**
17
19
  * @param {function(object): function} print
@@ -22,6 +24,7 @@ module.exports = function ({ print }) {
22
24
  const baiduUnsupportedTagError = print({ platform: 'baidu', isError: true, type: 'tag' })
23
25
  const qqUnsupportedTagError = print({ platform: 'qq', isError: true, type: 'tag' })
24
26
  const ttUnsupportedTagError = print({ platform: 'bytedance', isError: true, type: 'tag' })
27
+ const ksUnsupportedTagError = print({ platform: 'ks', isError: true, type: 'tag' })
25
28
  const jdUnsupportedTagError = print({ platform: 'jd', isError: true, type: 'tag' })
26
29
  const qaUnsupportedTagError = print({ platform: 'qa', isError: true, type: 'tag' })
27
30
  const iosUnsupportedTagError = print({ platform: 'ios', isError: true, type: 'tag' })
@@ -32,6 +35,7 @@ module.exports = function ({ print }) {
32
35
  const baiduUnsupportedExp = new RegExp('^(' + BAIDU_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
33
36
  const qqUnsupportedExp = new RegExp('^(' + QQ_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
34
37
  const ttUnsupportedExp = new RegExp('^(' + TT_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
38
+ const ksUnsupportedExp = new RegExp('^(' + KS_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
35
39
  const jdUnsupportedExp = new RegExp('^(' + JD_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
36
40
  const qaUnsupportedExp = new RegExp('^(' + QA_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
37
41
  const iosUnsupportedExp = new RegExp('^(' + RN_UNSUPPORTED_TAG_NAME_ARR.join('|') + ')$')
@@ -59,6 +63,11 @@ module.exports = function ({ print }) {
59
63
  test: ttUnsupportedExp,
60
64
  tt: ttUnsupportedTagError
61
65
  },
66
+ {
67
+ supportedModes: ['ks'],
68
+ test: ksUnsupportedExp,
69
+ ks: ksUnsupportedTagError
70
+ },
62
71
  {
63
72
  supportedModes: ['jd'],
64
73
  test: jdUnsupportedExp,
@@ -17,6 +17,8 @@ module.exports = function ({ print }) {
17
17
  const androidEventLogError = print({ platform: 'android', tag: TAG_NAME, isError: false, type: 'event' })
18
18
  const harmonyPropLog = print({ platform: 'harmony', tag: TAG_NAME, isError: false })
19
19
  const harmonyEventLogError = print({ platform: 'harmony', tag: TAG_NAME, isError: false, type: 'event' })
20
+ const ksPropLog = print({ platform: 'ks', tag: TAG_NAME, isError: false })
21
+ const ksEventLogError = print({ platform: 'ks', tag: TAG_NAME, isError: false, type: 'event' })
20
22
  return {
21
23
  test: TAG_NAME,
22
24
  web (tag, { el }) {
@@ -74,6 +76,10 @@ module.exports = function ({ print }) {
74
76
  test: /^(duration|enable-danmu|danmu-btn|page-gesture|direction|show-progress|show-fullscreen-btn|show-center-play-btn|enable-progress-gesture|show-mute-btn|title|play-btn-position|enable-play-gesture|auto-pause-if-navigate|auto-pause-if-open-native|vslide-gesture|vslide-gesture-in-fullscreen|show-bottom-progress|ad-unit-id|poster-for-crawler|show-casting-button|picture-in-picture-mode|picture-in-picture-show-progress| picture-in-picture-init-position|enable-auto-rotation|show-snapshot-button|show-screen-lock-button|show-background-playback-button|background-poster|referrer-policy|is-live)$/,
75
77
  android: androidPropLog,
76
78
  harmony: harmonyPropLog
79
+ },
80
+ {
81
+ test: /^(duration|danmu-list|enable-danmu|danmu-btn|auto-pause-if-navigate|auto-pause-if-open-native|ad-unit-id|poster-for-crawler|picture-in-picture-mode|picture-in-picture-show-progress|picture-in-picture-init-position|enable-auto-rotation|show-snapshot-button|show-background-playback-button|background-poster|is-drm|is-live|provision-url|certificate-url|license-url|preferred-peak-bit-rate)$/,
82
+ ks: ksPropLog
77
83
  }
78
84
  ],
79
85
  event: [
@@ -117,6 +123,10 @@ module.exports = function ({ print }) {
117
123
  test: /^(progress|enterpictureinpicture|leavepictureinpicture|castinguserselect|castingstatechange|castinginterrupt)$/,
118
124
  android: androidEventLogError,
119
125
  harmony: harmonyEventLogError
126
+ },
127
+ {
128
+ test: /^(waiting|controlstoggle|enterpictureinpicture|leavepictureinpicture|seekcomplete|castinguserselect)$/,
129
+ ks: ksEventLogError
120
130
  }
121
131
  ]
122
132
  }
@@ -62,7 +62,7 @@ module.exports = function getSpec ({ warn, error }) {
62
62
  }
63
63
 
64
64
  const spec = {
65
- supportedModes: ['ali', 'swan', 'qq', 'tt', 'web', 'qa', 'jd', 'dd', 'ios', 'android', 'harmony'],
65
+ supportedModes: ['ali', 'swan', 'qq', 'tt', 'ks', 'web', 'qa', 'jd', 'dd', 'ios', 'android', 'harmony'],
66
66
  // props预处理
67
67
  preProps: [],
68
68
  // props后处理
@@ -325,6 +325,13 @@ module.exports = function getSpec ({ warn, error }) {
325
325
  value
326
326
  }
327
327
  },
328
+ ks ({ name, value }) {
329
+ const dir = this.test.exec(name)[1]
330
+ return {
331
+ name: 'ks:' + dir,
332
+ value
333
+ }
334
+ },
328
335
  dd ({ name, value }) {
329
336
  const dir = this.test.exec(name)[1]
330
337
  return {
@@ -413,6 +420,19 @@ module.exports = function getSpec ({ warn, error }) {
413
420
  value
414
421
  }
415
422
  },
423
+ ks ({ name, value }, { eventRules }) {
424
+ const match = this.test.exec(name)
425
+ const prefix = match[1]
426
+ const eventName = match[2]
427
+ const modifierStr = match[3] || ''
428
+ let rPrefix = runRules(spec.event.prefix, prefix, { mode: 'ks' })
429
+ const rEventName = runRules(eventRules, eventName, { mode: 'ks' })
430
+ if (rEventName.includes('-')) rPrefix += ':'
431
+ return {
432
+ name: rPrefix + rEventName + modifierStr,
433
+ value
434
+ }
435
+ },
416
436
  dd ({ name, value }, { eventRules }) {
417
437
  const match = this.test.exec(name)
418
438
  const prefix = match[1]
@@ -21,6 +21,7 @@ module.exports = function ({
21
21
  hasComment,
22
22
  isNative,
23
23
  usingComponentsInfo,
24
+ originalUsingComponents,
24
25
  componentGenerics,
25
26
  autoScope,
26
27
  callback
@@ -53,6 +54,7 @@ module.exports = function ({
53
54
  moduleId,
54
55
  ctorType,
55
56
  usingComponentsInfo,
57
+ originalUsingComponents,
56
58
  componentGenerics
57
59
  }, callback)
58
60
  },