@quicktvui/ai 1.0.6 → 1.0.8

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 (1288) hide show
  1. package/package.json +1 -1
  2. package/rules/.clinerules +28 -4
  3. package/rules/.cursorrules +28 -4
  4. package/rules/.github/copilot-instructions.md +28 -4
  5. package/rules/.source/ESADPlayer/package.json +24 -0
  6. package/rules/.source/ESADPlayer/rollup.config.js +33 -0
  7. package/rules/.source/ESADPlayer/src/component/ESADPlayerViewComponent.ts +466 -0
  8. package/rules/.source/ESADPlayer/src/core/ESADType.ts +6 -0
  9. package/rules/.source/ESADPlayer/src/index.ts +18 -0
  10. package/rules/.source/ESADPlayer/src/index.vue +963 -0
  11. package/rules/.source/ESADPlayer/src/typings/shims-vue.d.ts +6 -0
  12. package/rules/.source/ESADPlayer/tsconfig.json +34 -0
  13. package/rules/.source/ESAudioPlayer/package.json +23 -0
  14. package/rules/.source/ESAudioPlayer/rollup.config.js +33 -0
  15. package/rules/.source/ESAudioPlayer/src/index.ts +10 -0
  16. package/rules/.source/ESAudioPlayer/src/index.vue +1441 -0
  17. package/rules/.source/ESAudioPlayer/src/module/ESAudioPlayer.ts +169 -0
  18. package/rules/.source/ESAudioPlayer/src/module/ESAudioPlayerModule.android.ts +134 -0
  19. package/rules/.source/ESAudioPlayer/src/module/ESAudioPlayerModule.harmony.ts +139 -0
  20. package/rules/.source/ESAudioPlayer/src/module/ESAudioPlayerModule.ts +44 -0
  21. package/rules/.source/ESAudioPlayer/src/typings/shims-vue.d.ts +6 -0
  22. package/rules/.source/ESAudioPlayer/src/utils/ESAudioPlayerDefinitionUtils.ts +36 -0
  23. package/rules/.source/ESAudioPlayer/tsconfig.json +34 -0
  24. package/rules/.source/ESAudioServicePlayer/package.json +23 -0
  25. package/rules/.source/ESAudioServicePlayer/rollup.config.js +33 -0
  26. package/rules/.source/ESAudioServicePlayer/src/index.ts +10 -0
  27. package/rules/.source/ESAudioServicePlayer/src/index.vue +1400 -0
  28. package/rules/.source/ESAudioServicePlayer/src/module/ESAudioServicePlayer.ts +189 -0
  29. package/rules/.source/ESAudioServicePlayer/src/module/ESAudioServicePlayerModule.android.ts +155 -0
  30. package/rules/.source/ESAudioServicePlayer/src/module/ESAudioServicePlayerModule.harmony.ts +163 -0
  31. package/rules/.source/ESAudioServicePlayer/src/module/ESAudioServicePlayerModule.ts +50 -0
  32. package/rules/.source/ESAudioServicePlayer/src/typings/shims-vue.d.ts +6 -0
  33. package/rules/.source/ESAudioServicePlayer/src/utils/ESAudioServicePlayerDefinitionUtils.ts +36 -0
  34. package/rules/.source/ESAudioServicePlayer/tsconfig.json +34 -0
  35. package/rules/.source/ESAxios/CHANGELOG.md +1072 -0
  36. package/rules/.source/ESAxios/LICENSE +7 -0
  37. package/rules/.source/ESAxios/MIGRATION_GUIDE.md +3 -0
  38. package/rules/.source/ESAxios/README.md +1673 -0
  39. package/rules/.source/ESAxios/index.d.cts +549 -0
  40. package/rules/.source/ESAxios/index.d.ts +766 -0
  41. package/rules/.source/ESAxios/index.js +43 -0
  42. package/rules/.source/ESAxios/lib/adapters/README.md +37 -0
  43. package/rules/.source/ESAxios/lib/adapters/adapters.js +80 -0
  44. package/rules/.source/ESAxios/lib/adapters/fetch.js +295 -0
  45. package/rules/.source/ESAxios/lib/axios.js +90 -0
  46. package/rules/.source/ESAxios/lib/cancel/CancelToken.js +135 -0
  47. package/rules/.source/ESAxios/lib/cancel/CanceledError.js +31 -0
  48. package/rules/.source/ESAxios/lib/cancel/isCancel.js +5 -0
  49. package/rules/.source/ESAxios/lib/core/Axios.js +292 -0
  50. package/rules/.source/ESAxios/lib/core/AxiosError.js +108 -0
  51. package/rules/.source/ESAxios/lib/core/AxiosHeaders.js +340 -0
  52. package/rules/.source/ESAxios/lib/core/InterceptorManager.js +71 -0
  53. package/rules/.source/ESAxios/lib/core/README.md +8 -0
  54. package/rules/.source/ESAxios/lib/core/buildFullPath.js +26 -0
  55. package/rules/.source/ESAxios/lib/core/dispatchRequest.js +81 -0
  56. package/rules/.source/ESAxios/lib/core/mergeConfig.js +112 -0
  57. package/rules/.source/ESAxios/lib/core/settle.js +31 -0
  58. package/rules/.source/ESAxios/lib/core/transformData.js +33 -0
  59. package/rules/.source/ESAxios/lib/defaults/index.js +182 -0
  60. package/rules/.source/ESAxios/lib/defaults/transitional.js +7 -0
  61. package/rules/.source/ESAxios/lib/env/README.md +3 -0
  62. package/rules/.source/ESAxios/lib/env/classes/FormData.js +2 -0
  63. package/rules/.source/ESAxios/lib/env/data.js +1 -0
  64. package/rules/.source/ESAxios/lib/helpers/AxiosTransformStream.js +160 -0
  65. package/rules/.source/ESAxios/lib/helpers/AxiosURLSearchParams.js +65 -0
  66. package/rules/.source/ESAxios/lib/helpers/HttpStatusCode.js +71 -0
  67. package/rules/.source/ESAxios/lib/helpers/README.md +7 -0
  68. package/rules/.source/ESAxios/lib/helpers/ZlibHeaderTransformStream.js +29 -0
  69. package/rules/.source/ESAxios/lib/helpers/bind.js +7 -0
  70. package/rules/.source/ESAxios/lib/helpers/buildURL.js +69 -0
  71. package/rules/.source/ESAxios/lib/helpers/callbackify.js +18 -0
  72. package/rules/.source/ESAxios/lib/helpers/combineURLs.js +15 -0
  73. package/rules/.source/ESAxios/lib/helpers/composeSignals.js +61 -0
  74. package/rules/.source/ESAxios/lib/helpers/cookies.js +40 -0
  75. package/rules/.source/ESAxios/lib/helpers/deprecatedMethod.js +31 -0
  76. package/rules/.source/ESAxios/lib/helpers/formDataToJSON.js +95 -0
  77. package/rules/.source/ESAxios/lib/helpers/formDataToStream.js +122 -0
  78. package/rules/.source/ESAxios/lib/helpers/fromDataURI.js +62 -0
  79. package/rules/.source/ESAxios/lib/helpers/isAbsoluteURL.js +15 -0
  80. package/rules/.source/ESAxios/lib/helpers/isAxiosError.js +14 -0
  81. package/rules/.source/ESAxios/lib/helpers/isURLSameOrigin.js +17 -0
  82. package/rules/.source/ESAxios/lib/helpers/null.js +2 -0
  83. package/rules/.source/ESAxios/lib/helpers/parseHeaders.js +69 -0
  84. package/rules/.source/ESAxios/lib/helpers/parseProtocol.js +6 -0
  85. package/rules/.source/ESAxios/lib/helpers/progressEventReducer.js +51 -0
  86. package/rules/.source/ESAxios/lib/helpers/readBlob.js +15 -0
  87. package/rules/.source/ESAxios/lib/helpers/resolveConfig.js +83 -0
  88. package/rules/.source/ESAxios/lib/helpers/speedometer.js +55 -0
  89. package/rules/.source/ESAxios/lib/helpers/spread.js +28 -0
  90. package/rules/.source/ESAxios/lib/helpers/throttle.js +44 -0
  91. package/rules/.source/ESAxios/lib/helpers/toFormData.js +241 -0
  92. package/rules/.source/ESAxios/lib/helpers/toURLEncodedForm.js +25 -0
  93. package/rules/.source/ESAxios/lib/helpers/trackStream.js +89 -0
  94. package/rules/.source/ESAxios/lib/helpers/validator.js +120 -0
  95. package/rules/.source/ESAxios/lib/platform/browser/classes/Blob.js +3 -0
  96. package/rules/.source/ESAxios/lib/platform/browser/classes/FormData.js +3 -0
  97. package/rules/.source/ESAxios/lib/platform/browser/classes/URLSearchParams.js +6 -0
  98. package/rules/.source/ESAxios/lib/platform/browser/index.js +13 -0
  99. package/rules/.source/ESAxios/lib/platform/common/classes/FormData.js +142 -0
  100. package/rules/.source/ESAxios/lib/platform/common/index.js +7 -0
  101. package/rules/.source/ESAxios/lib/platform/common/utils.js +54 -0
  102. package/rules/.source/ESAxios/lib/platform/index.js +7 -0
  103. package/rules/.source/ESAxios/lib/platform/node/classes/FormData.js +3 -0
  104. package/rules/.source/ESAxios/lib/platform/node/classes/URLSearchParams.js +4 -0
  105. package/rules/.source/ESAxios/lib/platform/node/index.js +12 -0
  106. package/rules/.source/ESAxios/lib/utils.js +820 -0
  107. package/rules/.source/ESCore/CHANGELOG.md +7 -0
  108. package/rules/.source/ESCore/package.json +24 -0
  109. package/rules/.source/ESCore/rollup.config.js +28 -0
  110. package/rules/.source/ESCore/src/actionbar/ESActionBar.ts +48 -0
  111. package/rules/.source/ESCore/src/actionbar/ESActionBarModule.android.ts +29 -0
  112. package/rules/.source/ESCore/src/actionbar/ESActionBarModule.harmony.ts +31 -0
  113. package/rules/.source/ESCore/src/actionbar/ESActionBarModule.ts +9 -0
  114. package/rules/.source/ESCore/src/actionbar/index.ts +2 -0
  115. package/rules/.source/ESCore/src/app/ESAppInfo.ts +12 -0
  116. package/rules/.source/ESCore/src/app/ESAppInfoList.ts +9 -0
  117. package/rules/.source/ESCore/src/app/ESAppList.ts +64 -0
  118. package/rules/.source/ESCore/src/app/ESAppListModule.android.ts +55 -0
  119. package/rules/.source/ESCore/src/app/ESAppListModule.harmony.ts +57 -0
  120. package/rules/.source/ESCore/src/app/ESAppListModule.ts +15 -0
  121. package/rules/.source/ESCore/src/app/index.ts +4 -0
  122. package/rules/.source/ESCore/src/application/ESAppContext.ts +99 -0
  123. package/rules/.source/ESCore/src/application/ESAppKeyManager.android.ts +86 -0
  124. package/rules/.source/ESCore/src/application/ESAppKeyManager.harmony.ts +91 -0
  125. package/rules/.source/ESCore/src/application/ESAppKeyManager.ts +23 -0
  126. package/rules/.source/ESCore/src/application/ESAppLifecycleManager.android.ts +199 -0
  127. package/rules/.source/ESCore/src/application/ESAppLifecycleManager.harmony.ts +197 -0
  128. package/rules/.source/ESCore/src/application/ESAppLifecycleManager.ts +36 -0
  129. package/rules/.source/ESCore/src/application/ESAppModuleManager.ts +294 -0
  130. package/rules/.source/ESCore/src/application/ESAppParams.ts +14 -0
  131. package/rules/.source/ESCore/src/application/ESApplication.ts +169 -0
  132. package/rules/.source/ESCore/src/application/index.ts +38 -0
  133. package/rules/.source/ESCore/src/audio/ESAudio.ts +190 -0
  134. package/rules/.source/ESCore/src/audio/ESAudioContentType.ts +7 -0
  135. package/rules/.source/ESCore/src/audio/ESAudioDirection.ts +5 -0
  136. package/rules/.source/ESCore/src/audio/ESAudioDurationHint.ts +7 -0
  137. package/rules/.source/ESCore/src/audio/ESAudioManagerFlag.ts +14 -0
  138. package/rules/.source/ESCore/src/audio/ESAudioModule.android.ts +173 -0
  139. package/rules/.source/ESCore/src/audio/ESAudioModule.harmony.ts +152 -0
  140. package/rules/.source/ESCore/src/audio/ESAudioModule.ts +63 -0
  141. package/rules/.source/ESCore/src/audio/ESAudioStreamType.ts +15 -0
  142. package/rules/.source/ESCore/src/audio/ESAudioUsage.ts +20 -0
  143. package/rules/.source/ESCore/src/audio/index.ts +9 -0
  144. package/rules/.source/ESCore/src/brightness/ESBrightness.ts +69 -0
  145. package/rules/.source/ESCore/src/brightness/ESBrightnessModule.android.ts +73 -0
  146. package/rules/.source/ESCore/src/brightness/ESBrightnessModule.harmony.ts +59 -0
  147. package/rules/.source/ESCore/src/brightness/ESBrightnessModule.ts +15 -0
  148. package/rules/.source/ESCore/src/brightness/index.ts +2 -0
  149. package/rules/.source/ESCore/src/broadcast/ESBroadcast.ts +107 -0
  150. package/rules/.source/ESCore/src/broadcast/ESBroadcastModule.android.ts +42 -0
  151. package/rules/.source/ESCore/src/broadcast/ESBroadcastModule.harmony.ts +45 -0
  152. package/rules/.source/ESCore/src/broadcast/ESBroadcastModule.ts +10 -0
  153. package/rules/.source/ESCore/src/broadcast/ESBroadcastReceiver.ts +5 -0
  154. package/rules/.source/ESCore/src/broadcast/ESIntent.ts +6 -0
  155. package/rules/.source/ESCore/src/broadcast/ESIntentDataAuthority.ts +4 -0
  156. package/rules/.source/ESCore/src/broadcast/ESIntentDataPath.ts +4 -0
  157. package/rules/.source/ESCore/src/broadcast/ESIntentDataSchemeSpecificPart.ts +4 -0
  158. package/rules/.source/ESCore/src/broadcast/ESIntentFilter.ts +13 -0
  159. package/rules/.source/ESCore/src/broadcast/index.ts +8 -0
  160. package/rules/.source/ESCore/src/core/IESComponent.ts +1 -0
  161. package/rules/.source/ESCore/src/core/IESManager.ts +7 -0
  162. package/rules/.source/ESCore/src/core/IESModule.ts +13 -0
  163. package/rules/.source/ESCore/src/core/NeedToTyped.ts +1 -0
  164. package/rules/.source/ESCore/src/core/index.ts +4 -0
  165. package/rules/.source/ESCore/src/database/ESDatabase.ts +63 -0
  166. package/rules/.source/ESCore/src/database/ESDatabaseModule.android.ts +49 -0
  167. package/rules/.source/ESCore/src/database/ESDatabaseModule.harmony.ts +46 -0
  168. package/rules/.source/ESCore/src/database/ESDatabaseModule.ts +23 -0
  169. package/rules/.source/ESCore/src/database/index.ts +2 -0
  170. package/rules/.source/ESCore/src/develop/ESDevelop.ts +75 -0
  171. package/rules/.source/ESCore/src/develop/ESDevelopInfo.ts +9 -0
  172. package/rules/.source/ESCore/src/develop/ESDevelopModule.android.ts +50 -0
  173. package/rules/.source/ESCore/src/develop/ESDevelopModule.harmony.ts +52 -0
  174. package/rules/.source/ESCore/src/develop/ESDevelopModule.ts +14 -0
  175. package/rules/.source/ESCore/src/develop/index.ts +3 -0
  176. package/rules/.source/ESCore/src/device/ESDevice.ts +289 -0
  177. package/rules/.source/ESCore/src/device/ESDeviceInfo.ts +51 -0
  178. package/rules/.source/ESCore/src/device/ESDeviceModule.android.ts +143 -0
  179. package/rules/.source/ESCore/src/device/ESDeviceModule.harmony.ts +116 -0
  180. package/rules/.source/ESCore/src/device/ESDeviceModule.ts +42 -0
  181. package/rules/.source/ESCore/src/device/index.ts +3 -0
  182. package/rules/.source/ESCore/src/display/ESDisplay.ts +61 -0
  183. package/rules/.source/ESCore/src/display/index.ts +2 -0
  184. package/rules/.source/ESCore/src/download/ESDownload.ts +181 -0
  185. package/rules/.source/ESCore/src/download/ESDownloadInfo.ts +14 -0
  186. package/rules/.source/ESCore/src/download/ESDownloadListener.ts +21 -0
  187. package/rules/.source/ESCore/src/download/ESDownloadModule.android.ts +57 -0
  188. package/rules/.source/ESCore/src/download/ESDownloadModule.harmony.ts +66 -0
  189. package/rules/.source/ESCore/src/download/ESDownloadModule.ts +21 -0
  190. package/rules/.source/ESCore/src/download/ESDownloadParams.ts +4 -0
  191. package/rules/.source/ESCore/src/download/ESDownloadState.ts +9 -0
  192. package/rules/.source/ESCore/src/download/ESDownloadStatus.ts +11 -0
  193. package/rules/.source/ESCore/src/download/index.ts +7 -0
  194. package/rules/.source/ESCore/src/error/ESError.ts +88 -0
  195. package/rules/.source/ESCore/src/error/ESErrorListener.ts +9 -0
  196. package/rules/.source/ESCore/src/error/ErrorOptions.ts +16 -0
  197. package/rules/.source/ESCore/src/error/index.ts +2 -0
  198. package/rules/.source/ESCore/src/es/ES.ts +140 -0
  199. package/rules/.source/ESCore/src/es/ESModule.android.ts +166 -0
  200. package/rules/.source/ESCore/src/es/ESModule.harmony.ts +167 -0
  201. package/rules/.source/ESCore/src/es/ESModule.ts +41 -0
  202. package/rules/.source/ESCore/src/es/ESSDKInfo.ts +17 -0
  203. package/rules/.source/ESCore/src/es/ESVersion.ts +14 -0
  204. package/rules/.source/ESCore/src/es/index.ts +4 -0
  205. package/rules/.source/ESCore/src/eventbus/ESEventBus.ts +135 -0
  206. package/rules/.source/ESCore/src/eventbus/ESEventBusArg.ts +2 -0
  207. package/rules/.source/ESCore/src/eventbus/ESEventBusCallback.ts +4 -0
  208. package/rules/.source/ESCore/src/eventbus/ESEventBusContext.ts +2 -0
  209. package/rules/.source/ESCore/src/eventbus/ESEventBusEvent.ts +7 -0
  210. package/rules/.source/ESCore/src/eventbus/index.ts +6 -0
  211. package/rules/.source/ESCore/src/file/ESFile.ts +381 -0
  212. package/rules/.source/ESCore/src/file/ESFileModule.android.ts +334 -0
  213. package/rules/.source/ESCore/src/file/ESFileModule.harmony.ts +343 -0
  214. package/rules/.source/ESCore/src/file/ESFileModule.ts +101 -0
  215. package/rules/.source/ESCore/src/file/ESFileStat.ts +19 -0
  216. package/rules/.source/ESCore/src/file/index.ts +1 -0
  217. package/rules/.source/ESCore/src/focus/ESFocus.ts +56 -0
  218. package/rules/.source/ESCore/src/focus/ESFocusModule.android.ts +35 -0
  219. package/rules/.source/ESCore/src/focus/ESFocusModule.harmony.ts +35 -0
  220. package/rules/.source/ESCore/src/focus/ESFocusModule.ts +12 -0
  221. package/rules/.source/ESCore/src/focus/ESFocusable.ts +1 -0
  222. package/rules/.source/ESCore/src/focus/index.ts +3 -0
  223. package/rules/.source/ESCore/src/global.d.ts +37 -0
  224. package/rules/.source/ESCore/src/hlog/ESHLog.ts +276 -0
  225. package/rules/.source/ESCore/src/hlog/ESHLogModule.ts +130 -0
  226. package/rules/.source/ESCore/src/hlog/ESLogListener.ts +959 -0
  227. package/rules/.source/ESCore/src/hlog/LogPluginHelper.ts +44 -0
  228. package/rules/.source/ESCore/src/hlog/index.ts +6 -0
  229. package/rules/.source/ESCore/src/hlog/listener/OnInitListenerBase.ts +24 -0
  230. package/rules/.source/ESCore/src/hlog/listener/OnUploadListenerBase.ts +39 -0
  231. package/rules/.source/ESCore/src/hlog/listener/RemoveInitListenerBase.ts +17 -0
  232. package/rules/.source/ESCore/src/hlog/listener/RemoveOldUploadListenerBase.ts +21 -0
  233. package/rules/.source/ESCore/src/hlog/listener/RemoveUploadListenerBase.ts +29 -0
  234. package/rules/.source/ESCore/src/hlog/listener/SetInitListenerBase.ts +25 -0
  235. package/rules/.source/ESCore/src/hlog/listener/SetOldUploadListenerBase.ts +33 -0
  236. package/rules/.source/ESCore/src/hlog/listener/SetUploadListenerBase.ts +47 -0
  237. package/rules/.source/ESCore/src/iac/ESIAC.ts +150 -0
  238. package/rules/.source/ESCore/src/iac/ESIACMessage.ts +5 -0
  239. package/rules/.source/ESCore/src/iac/ESIACMessageFilter.ts +3 -0
  240. package/rules/.source/ESCore/src/iac/ESIACModule.android.ts +40 -0
  241. package/rules/.source/ESCore/src/iac/ESIACModule.harmony.ts +63 -0
  242. package/rules/.source/ESCore/src/iac/ESIACModule.ts +15 -0
  243. package/rules/.source/ESCore/src/iac/ESIACReceiver.ts +5 -0
  244. package/rules/.source/ESCore/src/iac/index.ts +5 -0
  245. package/rules/.source/ESCore/src/index.ts +92 -0
  246. package/rules/.source/ESCore/src/key/ESKeyAction.ts +5 -0
  247. package/rules/.source/ESCore/src/key/ESKeyCode.ts +15 -0
  248. package/rules/.source/ESCore/src/key/ESKeyEvent.ts +8 -0
  249. package/rules/.source/ESCore/src/key/index.ts +3 -0
  250. package/rules/.source/ESCore/src/kv/ESKV.ts +104 -0
  251. package/rules/.source/ESCore/src/kv/ESKVModule.android.ts +60 -0
  252. package/rules/.source/ESCore/src/kv/ESKVModule.harmony.ts +80 -0
  253. package/rules/.source/ESCore/src/kv/ESKVModule.ts +28 -0
  254. package/rules/.source/ESCore/src/kv/index.ts +2 -0
  255. package/rules/.source/ESCore/src/local/ESLocalStorage.ts +114 -0
  256. package/rules/.source/ESCore/src/local/ESLocalStorageModule.android.ts +150 -0
  257. package/rules/.source/ESCore/src/local/ESLocalStorageModule.harmony.ts +119 -0
  258. package/rules/.source/ESCore/src/local/ESLocalStorageModule.ts +23 -0
  259. package/rules/.source/ESCore/src/local/index.ts +2 -0
  260. package/rules/.source/ESCore/src/location/ESLocation.ts +89 -0
  261. package/rules/.source/ESCore/src/location/ESLocationInfo.ts +9 -0
  262. package/rules/.source/ESCore/src/location/ESLocationListener.ts +5 -0
  263. package/rules/.source/ESCore/src/location/ESLocationModule.android.ts +53 -0
  264. package/rules/.source/ESCore/src/location/ESLocationModule.harmony.ts +23 -0
  265. package/rules/.source/ESCore/src/location/ESLocationModule.ts +8 -0
  266. package/rules/.source/ESCore/src/location/index.ts +4 -0
  267. package/rules/.source/ESCore/src/log/ESLog.ts +163 -0
  268. package/rules/.source/ESCore/src/log/ESLogModule.android.ts +51 -0
  269. package/rules/.source/ESCore/src/log/ESLogModule.harmony.ts +52 -0
  270. package/rules/.source/ESCore/src/log/ESLogModule.ts +18 -0
  271. package/rules/.source/ESCore/src/log/index.ts +3 -0
  272. package/rules/.source/ESCore/src/network/ESNetwork.ts +102 -0
  273. package/rules/.source/ESCore/src/network/ESNetworkInfo.ts +20 -0
  274. package/rules/.source/ESCore/src/network/ESNetworkInfoState.ts +8 -0
  275. package/rules/.source/ESCore/src/network/ESNetworkInfoType.ts +6 -0
  276. package/rules/.source/ESCore/src/network/ESNetworkListener.ts +5 -0
  277. package/rules/.source/ESCore/src/network/ESNetworkModule.android.ts +38 -0
  278. package/rules/.source/ESCore/src/network/ESNetworkModule.harmony.ts +122 -0
  279. package/rules/.source/ESCore/src/network/ESNetworkModule.ts +13 -0
  280. package/rules/.source/ESCore/src/network/ESWifiInfo.ts +6 -0
  281. package/rules/.source/ESCore/src/network/index.ts +9 -0
  282. package/rules/.source/ESCore/src/page/ESPageParams.ts +14 -0
  283. package/rules/.source/ESCore/src/page/index.ts +1 -0
  284. package/rules/.source/ESCore/src/permission/ESPermission.ts +46 -0
  285. package/rules/.source/ESCore/src/permission/ESPermissionModule.android.ts +33 -0
  286. package/rules/.source/ESCore/src/permission/ESPermissionModule.harmony.ts +33 -0
  287. package/rules/.source/ESCore/src/permission/ESPermissionModule.ts +12 -0
  288. package/rules/.source/ESCore/src/permission/ESRequestPermissionsResult.ts +6 -0
  289. package/rules/.source/ESCore/src/permission/index.ts +3 -0
  290. package/rules/.source/ESCore/src/platform/ESPlatform.ts +63 -0
  291. package/rules/.source/ESCore/src/platform/index.ts +1 -0
  292. package/rules/.source/ESCore/src/plugin/ESPlugin.ts +152 -0
  293. package/rules/.source/ESCore/src/plugin/ESPluginModule.android.ts +20 -0
  294. package/rules/.source/ESCore/src/plugin/ESPluginModule.harmony.ts +24 -0
  295. package/rules/.source/ESCore/src/plugin/ESPluginModule.ts +9 -0
  296. package/rules/.source/ESCore/src/plugin/index.ts +3 -0
  297. package/rules/.source/ESCore/src/power/ESPower.ts +41 -0
  298. package/rules/.source/ESCore/src/power/ESPowerModule.android.ts +31 -0
  299. package/rules/.source/ESCore/src/power/ESPowerModule.harmony.ts +33 -0
  300. package/rules/.source/ESCore/src/power/ESPowerModule.ts +7 -0
  301. package/rules/.source/ESCore/src/power/index.ts +2 -0
  302. package/rules/.source/ESCore/src/provider/ESContentProvider.ts +82 -0
  303. package/rules/.source/ESCore/src/provider/ESContentProviderInfo.ts +8 -0
  304. package/rules/.source/ESCore/src/provider/ESContentProviderModule.android.ts +62 -0
  305. package/rules/.source/ESCore/src/provider/ESContentProviderModule.harmony.ts +62 -0
  306. package/rules/.source/ESCore/src/provider/ESContentProviderModule.ts +29 -0
  307. package/rules/.source/ESCore/src/provider/ESContentProviderResult.ts +4 -0
  308. package/rules/.source/ESCore/src/provider/ESContentValues.ts +3 -0
  309. package/rules/.source/ESCore/src/provider/index.ts +5 -0
  310. package/rules/.source/ESCore/src/router/ESData.ts +3 -0
  311. package/rules/.source/ESCore/src/router/ESParams.ts +3 -0
  312. package/rules/.source/ESCore/src/router/ESRouter.ts +364 -0
  313. package/rules/.source/ESCore/src/router/ESRouterKeyManager.android.ts +107 -0
  314. package/rules/.source/ESCore/src/router/ESRouterKeyManager.harmony.ts +205 -0
  315. package/rules/.source/ESCore/src/router/ESRouterKeyManager.ts +11 -0
  316. package/rules/.source/ESCore/src/router/ESRouterLifecycleManager.ts +301 -0
  317. package/rules/.source/ESCore/src/router/ESRouterManager.ts +221 -0
  318. package/rules/.source/ESCore/src/router/index.ts +9 -0
  319. package/rules/.source/ESCore/src/runtime/ESRuntime.ts +164 -0
  320. package/rules/.source/ESCore/src/runtime/ESRuntimeDeviceModule.android.ts +76 -0
  321. package/rules/.source/ESCore/src/runtime/ESRuntimeDeviceModule.harmony.ts +39 -0
  322. package/rules/.source/ESCore/src/runtime/ESRuntimeDeviceModule.ts +14 -0
  323. package/rules/.source/ESCore/src/runtime/ESRuntimeDeviceType.ts +53 -0
  324. package/rules/.source/ESCore/src/runtime/index.ts +4 -0
  325. package/rules/.source/ESCore/src/service/ESService.ts +34 -0
  326. package/rules/.source/ESCore/src/service/ESServiceModule.android.ts +20 -0
  327. package/rules/.source/ESCore/src/service/ESServiceModule.harmony.ts +19 -0
  328. package/rules/.source/ESCore/src/service/ESServiceModule.ts +5 -0
  329. package/rules/.source/ESCore/src/service/index.ts +2 -0
  330. package/rules/.source/ESCore/src/share/ESShareData.ts +177 -0
  331. package/rules/.source/ESCore/src/share/ESShareDataModule.android.ts +370 -0
  332. package/rules/.source/ESCore/src/share/ESShareDataModule.harmony.ts +201 -0
  333. package/rules/.source/ESCore/src/share/ESShareDataModule.ts +83 -0
  334. package/rules/.source/ESCore/src/share/ESSharedData.ts +9 -0
  335. package/rules/.source/ESCore/src/share/ESSharedDataMode.ts +5 -0
  336. package/rules/.source/ESCore/src/share/ESSharedDataParams.ts +4 -0
  337. package/rules/.source/ESCore/src/share/ESSharedDataType.ts +9 -0
  338. package/rules/.source/ESCore/src/share/index.ts +7 -0
  339. package/rules/.source/ESCore/src/slot/ESSlot.ts +75 -0
  340. package/rules/.source/ESCore/src/slot/ESSlotEvent.ts +4 -0
  341. package/rules/.source/ESCore/src/slot/ESSlotEventName.ts +3 -0
  342. package/rules/.source/ESCore/src/slot/ESSlotParams.ts +14 -0
  343. package/rules/.source/ESCore/src/slot/index.ts +3 -0
  344. package/rules/.source/ESCore/src/theme/ESTheme.ts +88 -0
  345. package/rules/.source/ESCore/src/theme/ESThemeListener.ts +3 -0
  346. package/rules/.source/ESCore/src/theme/index.ts +3 -0
  347. package/rules/.source/ESCore/src/toast/ESToast.ts +47 -0
  348. package/rules/.source/ESCore/src/toast/ESToastModule.android.ts +30 -0
  349. package/rules/.source/ESCore/src/toast/ESToastModule.harmony.ts +30 -0
  350. package/rules/.source/ESCore/src/toast/ESToastModule.ts +9 -0
  351. package/rules/.source/ESCore/src/toast/index.ts +2 -0
  352. package/rules/.source/ESCore/src/upload/ESUpload.ts +226 -0
  353. package/rules/.source/ESCore/src/upload/ESUploadInfo.ts +13 -0
  354. package/rules/.source/ESCore/src/upload/ESUploadListener.ts +21 -0
  355. package/rules/.source/ESCore/src/upload/ESUploadModule.android.ts +60 -0
  356. package/rules/.source/ESCore/src/upload/ESUploadModule.harmony.ts +51 -0
  357. package/rules/.source/ESCore/src/upload/ESUploadModule.ts +19 -0
  358. package/rules/.source/ESCore/src/upload/ESUploadState.ts +9 -0
  359. package/rules/.source/ESCore/src/upload/ESUploadStatus.ts +11 -0
  360. package/rules/.source/ESCore/src/upload/index.ts +6 -0
  361. package/rules/.source/ESCore/src/usb/ESUsbDevice.ts +112 -0
  362. package/rules/.source/ESCore/src/usb/ESUsbDeviceInfo.ts +11 -0
  363. package/rules/.source/ESCore/src/usb/ESUsbDeviceListener.ts +7 -0
  364. package/rules/.source/ESCore/src/usb/ESUsbDeviceModule.android.ts +62 -0
  365. package/rules/.source/ESCore/src/usb/ESUsbDeviceModule.harmony.ts +58 -0
  366. package/rules/.source/ESCore/src/usb/ESUsbDeviceModule.ts +23 -0
  367. package/rules/.source/ESCore/src/usb/index.ts +4 -0
  368. package/rules/.source/ESCore/src/useApi.ts +257 -0
  369. package/rules/.source/ESCore/src/xlog/ESLogUpload.ts +92 -0
  370. package/rules/.source/ESCore/src/xlog/ESLogUploadInfo.ts +12 -0
  371. package/rules/.source/ESCore/src/xlog/ESLogUploadListener.ts +7 -0
  372. package/rules/.source/ESCore/src/xlog/ESXLog.ts +130 -0
  373. package/rules/.source/ESCore/src/xlog/ESXLogModule.android.ts +74 -0
  374. package/rules/.source/ESCore/src/xlog/ESXLogModule.harmony.ts +47 -0
  375. package/rules/.source/ESCore/src/xlog/ESXLogModule.ts +24 -0
  376. package/rules/.source/ESCore/src/xlog/index.ts +6 -0
  377. package/rules/.source/ESCore/tsconfig.json +34 -0
  378. package/rules/.source/ESPlayer/package.json +24 -0
  379. package/rules/.source/ESPlayer/rollup.config.js +28 -0
  380. package/rules/.source/ESPlayer/src/cache/ESPlayerCache.ts +14 -0
  381. package/rules/.source/ESPlayer/src/cache/ESPlayerCacheManager.ts +39 -0
  382. package/rules/.source/ESPlayer/src/core/ESIPlayer.ts +179 -0
  383. package/rules/.source/ESPlayer/src/core/ESIPlayerManager.ts +7 -0
  384. package/rules/.source/ESPlayer/src/core/ESMediaMetadata.ts +8 -0
  385. package/rules/.source/ESPlayer/src/core/ESMediaSource.ts +13 -0
  386. package/rules/.source/ESPlayer/src/core/ESMediaSourceList.ts +15 -0
  387. package/rules/.source/ESPlayer/src/core/ESPlayer.ts +100 -0
  388. package/rules/.source/ESPlayer/src/core/ESPlayerBufferPercentCallback.ts +3 -0
  389. package/rules/.source/ESPlayer/src/core/ESPlayerCDNInfo.ts +5 -0
  390. package/rules/.source/ESPlayer/src/core/ESPlayerCommand.ts +1 -0
  391. package/rules/.source/ESPlayer/src/core/ESPlayerComponentInfo.ts +7 -0
  392. package/rules/.source/ESPlayer/src/core/ESPlayerConfiguration.ts +13 -0
  393. package/rules/.source/ESPlayer/src/core/ESPlayerControlOptions.ts +8 -0
  394. package/rules/.source/ESPlayer/src/core/ESPlayerDurationCallback.ts +3 -0
  395. package/rules/.source/ESPlayer/src/core/ESPlayerMediaMeta.ts +48 -0
  396. package/rules/.source/ESPlayer/src/core/ESPlayerPosition.ts +5 -0
  397. package/rules/.source/ESPlayer/src/core/ESPlayerProgressCallback.ts +3 -0
  398. package/rules/.source/ESPlayer/src/core/ESPlayerState.ts +44 -0
  399. package/rules/.source/ESPlayer/src/core/ESPlayerStatus.ts +10 -0
  400. package/rules/.source/ESPlayer/src/core/ESPlayerTrackInfo.ts +36 -0
  401. package/rules/.source/ESPlayer/src/core/ESPlayerTrackType.ts +5 -0
  402. package/rules/.source/ESPlayer/src/core/M3U8DefinitionInfo.ts +38 -0
  403. package/rules/.source/ESPlayer/src/decode/ESPlayerDecode.ts +12 -0
  404. package/rules/.source/ESPlayer/src/decode/ESPlayerDecodeManager.ts +81 -0
  405. package/rules/.source/ESPlayer/src/definition/ESPlayerDefinition.ts +21 -0
  406. package/rules/.source/ESPlayer/src/definition/ESPlayerDefinitionManager.ts +93 -0
  407. package/rules/.source/ESPlayer/src/definition/ESPlayerDefinitionStrategy.ts +12 -0
  408. package/rules/.source/ESPlayer/src/device/ESPlayerDevice.ts +4 -0
  409. package/rules/.source/ESPlayer/src/device/ESPlayerDeviceManager.ts +41 -0
  410. package/rules/.source/ESPlayer/src/device/ESPlayerDeviceType.ts +53 -0
  411. package/rules/.source/ESPlayer/src/display/ESPlayerDisplay.ts +4 -0
  412. package/rules/.source/ESPlayer/src/display/ESPlayerDisplayManager.ts +63 -0
  413. package/rules/.source/ESPlayer/src/error/ESPlayerError.ts +5 -0
  414. package/rules/.source/ESPlayer/src/error/ESPlayerErrors.ts +8 -0
  415. package/rules/.source/ESPlayer/src/event/ESPlayerEventDefaultListener.ts +127 -0
  416. package/rules/.source/ESPlayer/src/event/ESPlayerEventListener.ts +120 -0
  417. package/rules/.source/ESPlayer/src/event/ESPlayerEventManager.ts +451 -0
  418. package/rules/.source/ESPlayer/src/index.ts +166 -0
  419. package/rules/.source/ESPlayer/src/info/ESPlayerInfo.ts +16 -0
  420. package/rules/.source/ESPlayer/src/injectionSymbols.ts +84 -0
  421. package/rules/.source/ESPlayer/src/interceptor/ESIPlayerInterceptor.ts +11 -0
  422. package/rules/.source/ESPlayer/src/interceptor/ESPlayerInterceptError.ts +8 -0
  423. package/rules/.source/ESPlayer/src/interceptor/ESPlayerInterceptResult.ts +8 -0
  424. package/rules/.source/ESPlayer/src/interceptor/ESPlayerInterceptorManager.ts +95 -0
  425. package/rules/.source/ESPlayer/src/interceptor/ESPlayerInterceptorType.ts +17 -0
  426. package/rules/.source/ESPlayer/src/log/ESPlayerLog.ts +143 -0
  427. package/rules/.source/ESPlayer/src/log/ESPlayerLogModule.ts +43 -0
  428. package/rules/.source/ESPlayer/src/mode/ESPlayerPlayMode.ts +8 -0
  429. package/rules/.source/ESPlayer/src/mode/ESPlayerPlayModeManager.ts +39 -0
  430. package/rules/.source/ESPlayer/src/option/ESPlayerOption.ts +11 -0
  431. package/rules/.source/ESPlayer/src/option/ESPlayerOptionType.ts +14 -0
  432. package/rules/.source/ESPlayer/src/rate/ESPlayerRate.ts +11 -0
  433. package/rules/.source/ESPlayer/src/rate/ESPlayerRateManager.ts +39 -0
  434. package/rules/.source/ESPlayer/src/ratio/ESPlayerAspectRatio.ts +9 -0
  435. package/rules/.source/ESPlayer/src/ratio/ESPlayerAspectRatioManager.ts +39 -0
  436. package/rules/.source/ESPlayer/src/render/ESPlayerRender.ts +5 -0
  437. package/rules/.source/ESPlayer/src/render/ESPlayerRenderManager.ts +36 -0
  438. package/rules/.source/ESPlayer/src/storage/ESPlayerLocalStorageManager.ts +97 -0
  439. package/rules/.source/ESPlayer/src/storage/ESPlayerLocalStorageModule.android.ts +111 -0
  440. package/rules/.source/ESPlayer/src/storage/ESPlayerLocalStorageModule.harmony.ts +111 -0
  441. package/rules/.source/ESPlayer/src/storage/ESPlayerLocalStorageModule.ts +21 -0
  442. package/rules/.source/ESPlayer/src/type/ESPlayerType.ts +18 -0
  443. package/rules/.source/ESPlayer/src/type/ESPlayerTypeManager.ts +81 -0
  444. package/rules/.source/ESPlayer/src/useApi.ts +108 -0
  445. package/rules/.source/ESPlayer/src/view/ESIPlayerView.ts +120 -0
  446. package/rules/.source/ESPlayer/src/view/ESPlayerDefaultView.ts +127 -0
  447. package/rules/.source/ESPlayer/src/view/ESPlayerViewManager.ts +453 -0
  448. package/rules/.source/ESPlayer/src/volume/ESPlayerVolume.ts +4 -0
  449. package/rules/.source/ESPlayer/src/volume/ESPlayerVolumeManager.ts +51 -0
  450. package/rules/.source/ESPlayer/src/window/ESPlayerWindowType.ts +5 -0
  451. package/rules/.source/ESPlayer/tsconfig.json +34 -0
  452. package/rules/.source/ESPlayer/yarn.lock +4 -0
  453. package/rules/.source/ESPlayerManager/package.json +24 -0
  454. package/rules/.source/ESPlayerManager/rollup.config.js +33 -0
  455. package/rules/.source/ESPlayerManager/src/core/ESBuiltinADPlayerType.ts +9 -0
  456. package/rules/.source/ESPlayerManager/src/core/ESBuiltinPlayerType.ts +8 -0
  457. package/rules/.source/ESPlayerManager/src/core/ESIPlayerManager.ts +71 -0
  458. package/rules/.source/ESPlayerManager/src/core/ESMediaItem.ts +47 -0
  459. package/rules/.source/ESPlayerManager/src/core/ESMediaItemList.ts +11 -0
  460. package/rules/.source/ESPlayerManager/src/core/ESPlayerManager.ts +41 -0
  461. package/rules/.source/ESPlayerManager/src/core/ESPlayerManagerConfiguration.ts +6 -0
  462. package/rules/.source/ESPlayerManager/src/core/ESPlayerManagerErrors.ts +6 -0
  463. package/rules/.source/ESPlayerManager/src/event/ESPlayerManagerEventDefaultListener.ts +154 -0
  464. package/rules/.source/ESPlayerManager/src/event/ESPlayerManagerEventListener.ts +37 -0
  465. package/rules/.source/ESPlayerManager/src/event/ESPlayerManagerEventManager.ts +521 -0
  466. package/rules/.source/ESPlayerManager/src/index.ts +37 -0
  467. package/rules/.source/ESPlayerManager/src/index.vue +2676 -0
  468. package/rules/.source/ESPlayerManager/src/injectionSymbols.ts +16 -0
  469. package/rules/.source/ESPlayerManager/src/mode/ESPlayerManagerPlayModeManager.ts +27 -0
  470. package/rules/.source/ESPlayerManager/src/typings/shims-vue.d.ts +6 -0
  471. package/rules/.source/ESPlayerManager/src/useApi.ts +22 -0
  472. package/rules/.source/ESPlayerManager/src/utils/SparseArray.ts +103 -0
  473. package/rules/.source/ESPlayerManager/src/view/ESIPlayerManagerDefaultView.ts +167 -0
  474. package/rules/.source/ESPlayerManager/src/view/ESIPlayerManagerView.ts +44 -0
  475. package/rules/.source/ESPlayerManager/src/view/ESPlayerManagerViewManager.ts +517 -0
  476. package/rules/.source/ESPlayerManager/tsconfig.json +34 -0
  477. package/rules/.source/ESRouter/CHANGELOGG.md +899 -0
  478. package/rules/.source/ESRouter/SECURITY.md +20 -0
  479. package/rules/.source/ESRouter/api-extractor.json +49 -0
  480. package/rules/.source/ESRouter/index.js +7 -0
  481. package/rules/.source/ESRouter/nightwatch.conf.js +240 -0
  482. package/rules/.source/ESRouter/package.json +19 -0
  483. package/rules/.source/ESRouter/rollup.config.mjs +195 -0
  484. package/rules/.source/ESRouter/src/RouterLink.ts +358 -0
  485. package/rules/.source/ESRouter/src/RouterView.ts +794 -0
  486. package/rules/.source/ESRouter/src/SlotView.ts +477 -0
  487. package/rules/.source/ESRouter/src/config.ts +6 -0
  488. package/rules/.source/ESRouter/src/devtools.ts +576 -0
  489. package/rules/.source/ESRouter/src/encoding.ts +147 -0
  490. package/rules/.source/ESRouter/src/errors.ts +200 -0
  491. package/rules/.source/ESRouter/src/es/ESNativeRouter.android.ts +100 -0
  492. package/rules/.source/ESRouter/src/es/ESNativeRouter.harmony.ts +155 -0
  493. package/rules/.source/ESRouter/src/es/ESNativeRouter.ts +24 -0
  494. package/rules/.source/ESRouter/src/es/ESNativeRouterLaunchMode.ts +7 -0
  495. package/rules/.source/ESRouter/src/es/ESNativeRouterSplash.ts +6 -0
  496. package/rules/.source/ESRouter/src/global.d.ts +15 -0
  497. package/rules/.source/ESRouter/src/globalExtensions.ts +83 -0
  498. package/rules/.source/ESRouter/src/history/common.ts +237 -0
  499. package/rules/.source/ESRouter/src/history/es.ts +278 -0
  500. package/rules/.source/ESRouter/src/history/hash.ts +46 -0
  501. package/rules/.source/ESRouter/src/history/html5.ts +354 -0
  502. package/rules/.source/ESRouter/src/history/index.ts +40 -0
  503. package/rules/.source/ESRouter/src/history/memory.ts +127 -0
  504. package/rules/.source/ESRouter/src/index.ts +131 -0
  505. package/rules/.source/ESRouter/src/injectionSymbols.ts +91 -0
  506. package/rules/.source/ESRouter/src/location.ts +251 -0
  507. package/rules/.source/ESRouter/src/log/RouterLog.ts +90 -0
  508. package/rules/.source/ESRouter/src/log/info.ts +9 -0
  509. package/rules/.source/ESRouter/src/matcher/index.ts +533 -0
  510. package/rules/.source/ESRouter/src/matcher/pathMatcher.ts +55 -0
  511. package/rules/.source/ESRouter/src/matcher/pathParserRanker.ts +369 -0
  512. package/rules/.source/ESRouter/src/matcher/pathTokenizer.ts +200 -0
  513. package/rules/.source/ESRouter/src/matcher/types.ts +131 -0
  514. package/rules/.source/ESRouter/src/navigationGuards.ts +409 -0
  515. package/rules/.source/ESRouter/src/page/PageRouteView.ts +11 -0
  516. package/rules/.source/ESRouter/src/page/PageView.ts +12 -0
  517. package/rules/.source/ESRouter/src/query.ts +149 -0
  518. package/rules/.source/ESRouter/src/result/RouteResult.ts +11 -0
  519. package/rules/.source/ESRouter/src/result/RouteResultCallback.ts +5 -0
  520. package/rules/.source/ESRouter/src/router.ts +1930 -0
  521. package/rules/.source/ESRouter/src/scrollBehavior.ts +194 -0
  522. package/rules/.source/ESRouter/src/slot/SlotRootView.ts +11 -0
  523. package/rules/.source/ESRouter/src/slot/SlotView.ts +11 -0
  524. package/rules/.source/ESRouter/src/types/index.ts +605 -0
  525. package/rules/.source/ESRouter/src/types/typeGuards.ts +9 -0
  526. package/rules/.source/ESRouter/src/types/utils.ts +77 -0
  527. package/rules/.source/ESRouter/src/useApi.ts +29 -0
  528. package/rules/.source/ESRouter/src/utils/callbacks.ts +24 -0
  529. package/rules/.source/ESRouter/src/utils/env.ts +1 -0
  530. package/rules/.source/ESRouter/src/utils/index.ts +60 -0
  531. package/rules/.source/ESRouter/src/warning.ts +9 -0
  532. package/rules/.source/ESRouter/tsconfig.json +37 -0
  533. package/rules/.source/ESSoundPoolPlayer/package.json +23 -0
  534. package/rules/.source/ESSoundPoolPlayer/rollup.config.js +33 -0
  535. package/rules/.source/ESSoundPoolPlayer/src/core/ESSoundPoolContentType.ts +7 -0
  536. package/rules/.source/ESSoundPoolPlayer/src/core/ESSoundPoolStreamType.ts +15 -0
  537. package/rules/.source/ESSoundPoolPlayer/src/core/ESSoundPoolUsage.ts +19 -0
  538. package/rules/.source/ESSoundPoolPlayer/src/index.ts +19 -0
  539. package/rules/.source/ESSoundPoolPlayer/src/index.vue +1564 -0
  540. package/rules/.source/ESSoundPoolPlayer/src/module/ESSoundPoolPlayerModul.android.ts +133 -0
  541. package/rules/.source/ESSoundPoolPlayer/src/module/ESSoundPoolPlayerModul.harmony.ts +119 -0
  542. package/rules/.source/ESSoundPoolPlayer/src/module/ESSoundPoolPlayerModule.ts +48 -0
  543. package/rules/.source/ESSoundPoolPlayer/src/typings/shims-vue.d.ts +6 -0
  544. package/rules/.source/ESSoundPoolPlayer/tsconfig.json +34 -0
  545. package/rules/.source/ESVideoPlayer/package.json +26 -0
  546. package/rules/.source/ESVideoPlayer/rollup.config.js +33 -0
  547. package/rules/.source/ESVideoPlayer/src/component/ESVideoPlayerViewComponent.android.ts +948 -0
  548. package/rules/.source/ESVideoPlayer/src/component/ESVideoPlayerViewComponent.harmony.ts +763 -0
  549. package/rules/.source/ESVideoPlayer/src/index.ts +18 -0
  550. package/rules/.source/ESVideoPlayer/src/index.vue +2003 -0
  551. package/rules/.source/ESVideoPlayer/src/typings/shims-vue.d.ts +6 -0
  552. package/rules/.source/ESVideoPlayer/src/utils/ESVideoPlayerDefinitionUtils.ts +36 -0
  553. package/rules/.source/ESVideoPlayer/tsconfig.json +34 -0
  554. package/rules/.source/ESVideoPlayer/tsconfig.json.vite +0 -0
  555. package/rules/.source/ESVideoPlayer/tsconfig.node.json +0 -0
  556. package/rules/.source/ESVideoPlayer/vite.config.ts +29 -0
  557. package/rules/.source/ESVue/CHANGELOG.MD +201 -0
  558. package/rules/.source/ESVue/api-extractor.json +41 -0
  559. package/rules/.source/ESVue/package.json +42 -0
  560. package/rules/.source/ESVue/rollup.config.js +40 -0
  561. package/rules/.source/ESVue/src/built-in-component.ts +650 -0
  562. package/rules/.source/ESVue/src/config/index.ts +109 -0
  563. package/rules/.source/ESVue/src/global.d.ts +636 -0
  564. package/rules/.source/ESVue/src/hooks/lifecycle.ts +248 -0
  565. package/rules/.source/ESVue/src/index.ts +365 -0
  566. package/rules/.source/ESVue/src/modules/attrs.ts +24 -0
  567. package/rules/.source/ESVue/src/modules/class.ts +31 -0
  568. package/rules/.source/ESVue/src/modules/events.ts +119 -0
  569. package/rules/.source/ESVue/src/modules/patch-log.ts +39 -0
  570. package/rules/.source/ESVue/src/modules/style.ts +68 -0
  571. package/rules/.source/ESVue/src/node-ops.ts +153 -0
  572. package/rules/.source/ESVue/src/patch-prop.ts +93 -0
  573. package/rules/.source/ESVue/src/runtime/component/index.ts +83 -0
  574. package/rules/.source/ESVue/src/runtime/document/hippy-document.ts +56 -0
  575. package/rules/.source/ESVue/src/runtime/element/hippy-comment-element.ts +21 -0
  576. package/rules/.source/ESVue/src/runtime/element/hippy-element.ts +1623 -0
  577. package/rules/.source/ESVue/src/runtime/element/hippy-input-element.ts +75 -0
  578. package/rules/.source/ESVue/src/runtime/element/hippy-list-element.ts +306 -0
  579. package/rules/.source/ESVue/src/runtime/event/event-bus.ts +148 -0
  580. package/rules/.source/ESVue/src/runtime/event/hippy-event-dispatcher.ts +391 -0
  581. package/rules/.source/ESVue/src/runtime/event/hippy-event-target.ts +191 -0
  582. package/rules/.source/ESVue/src/runtime/event/hippy-event.ts +317 -0
  583. package/rules/.source/ESVue/src/runtime/native/index.ts +924 -0
  584. package/rules/.source/ESVue/src/runtime/node/hippy-node.ts +722 -0
  585. package/rules/.source/ESVue/src/runtime/node/node-log.ts +39 -0
  586. package/rules/.source/ESVue/src/runtime/render/index.ts +550 -0
  587. package/rules/.source/ESVue/src/runtime/style/css-map.ts +100 -0
  588. package/rules/.source/ESVue/src/runtime/style/css-resolve-auto-style.ts +119 -0
  589. package/rules/.source/ESVue/src/runtime/style/css-resolve-percent-style.ts +111 -0
  590. package/rules/.source/ESVue/src/runtime/style/css-resolve-rem-style.ts +45 -0
  591. package/rules/.source/ESVue/src/runtime/style/css-resolve-scale-style.ts +103 -0
  592. package/rules/.source/ESVue/src/runtime/style/css-resolve-style.ts +24 -0
  593. package/rules/.source/ESVue/src/runtime/style/css-resolve-variables.ts +209 -0
  594. package/rules/.source/ESVue/src/runtime/style/css-resolve-vwvh-style.ts +65 -0
  595. package/rules/.source/ESVue/src/runtime/style/css-resolve-width-height-style.ts +18 -0
  596. package/rules/.source/ESVue/src/runtime/style/css-selectors-match.ts +295 -0
  597. package/rules/.source/ESVue/src/runtime/style/css-selectors.ts +1173 -0
  598. package/rules/.source/ESVue/src/runtime/style/index.ts +154 -0
  599. package/rules/.source/ESVue/src/runtime/style/log.ts +39 -0
  600. package/rules/.source/ESVue/src/runtime/style/parser.ts +291 -0
  601. package/rules/.source/ESVue/src/runtime/text/hippy-text.ts +41 -0
  602. package/rules/.source/ESVue/src/runtime/websocket/websocket.ts +282 -0
  603. package/rules/.source/ESVue/src/types/index.ts +25 -0
  604. package/rules/.source/ESVue/src/types/native-modules/clip-board-module.ts +24 -0
  605. package/rules/.source/ESVue/src/types/native-modules/device-event-module.ts +24 -0
  606. package/rules/.source/ESVue/src/types/native-modules/http.ts +57 -0
  607. package/rules/.source/ESVue/src/types/native-modules/image-loader-module.ts +27 -0
  608. package/rules/.source/ESVue/src/types/native-modules/net-info.ts +29 -0
  609. package/rules/.source/ESVue/src/types/native-modules/network.ts +24 -0
  610. package/rules/.source/ESVue/src/types/native-modules/test-module.ts +23 -0
  611. package/rules/.source/ESVue/src/types/native-modules/ui-manager-module.ts +44 -0
  612. package/rules/.source/ESVue/src/types/native-modules/websocket.ts +49 -0
  613. package/rules/.source/ESVue/src/types/native-modules.ts +41 -0
  614. package/rules/.source/ESVue/src/types/native-node.ts +48 -0
  615. package/rules/.source/ESVue/src/util/event.ts +74 -0
  616. package/rules/.source/ESVue/src/util/i18n.ts +32 -0
  617. package/rules/.source/ESVue/src/util/index.ts +418 -0
  618. package/rules/.source/ESVue/src/util/instance.ts +77 -0
  619. package/rules/.source/ESVue/src/util/log.ts +39 -0
  620. package/rules/.source/ESVue/src/util/node.ts +152 -0
  621. package/rules/.source/ESVue/src/util/rem.ts +54 -0
  622. package/rules/.source/ESVue/src/util/screen.ts +42 -0
  623. package/rules/.source/ESVue/tsconfig.json +34 -0
  624. package/rules/.source/ESVue/tsdoc.json +6 -0
  625. package/rules/.source/ESVue/yarn.lock +4 -0
  626. package/rules/.source/ESVueCssLoader/package.json +27 -0
  627. package/rules/.source/ESVueCssLoader/rollup.config.js +20 -0
  628. package/rules/.source/ESVueCssLoader/src/index.ts +2 -0
  629. package/rules/.source/ESVueCssLoader/src/log/log.ts +38 -0
  630. package/rules/.source/ESVueCssLoader/src/style-parser/color-parser.ts +357 -0
  631. package/rules/.source/ESVueCssLoader/src/style-parser/css-loader.ts +93 -0
  632. package/rules/.source/ESVueCssLoader/src/style-parser/css-parser.ts +1123 -0
  633. package/rules/.source/ESVueCssLoader/src/types.ts +5 -0
  634. package/rules/.source/ESVueCssLoader/src/utils/utils.ts +59 -0
  635. package/rules/.source/ESVueCssLoader/tsconfig.json +34 -0
  636. package/rules/.source/ESVueStyleParser/api-extractor.json +38 -0
  637. package/rules/.source/ESVueStyleParser/package.json +24 -0
  638. package/rules/.source/ESVueStyleParser/rollup.config.js +28 -0
  639. package/rules/.source/ESVueStyleParser/src/index.ts +24 -0
  640. package/rules/.source/ESVueStyleParser/src/style-parser/android-color-parser.ts +143 -0
  641. package/rules/.source/ESVueStyleParser/src/style-parser/color-parser.ts +256 -0
  642. package/rules/.source/ESVueStyleParser/src/style-parser/css-parser.ts +1371 -0
  643. package/rules/.source/ESVueStyleParser/src/style-parser/named-colors.ts +154 -0
  644. package/rules/.source/ESVueStyleParser/src/style-parser/utils.ts +55 -0
  645. package/rules/.source/ESVueStyleParser/src/types.ts +5 -0
  646. package/rules/.source/ESVueStyleParser/tsconfig.json +34 -0
  647. package/rules/.source/component/package.json +24 -0
  648. package/rules/.source/component/rollup.config.js +28 -0
  649. package/rules/.source/component/src/ESAnimationView/ESAnimationViewComponent.ts +51 -0
  650. package/rules/.source/component/src/ESAppIconView/ESAppIconViewComponent.ts +46 -0
  651. package/rules/.source/component/src/ESAppIconView/ESIAppIcon.ts +5 -0
  652. package/rules/.source/component/src/ESCardView/ESCardContainerViewComponent.ts +127 -0
  653. package/rules/.source/component/src/ESCardView/ESCardEvent.ts +3 -0
  654. package/rules/.source/component/src/ESCardView/ESCardViewComponent.ts +54 -0
  655. package/rules/.source/component/src/ESCardView/ESICard.ts +9 -0
  656. package/rules/.source/component/src/ESCardView/ESICardContainer.ts +25 -0
  657. package/rules/.source/component/src/ESChartView/ESBarChartViewComponent.ts +35 -0
  658. package/rules/.source/component/src/ESChartView/ESIChart.ts +3 -0
  659. package/rules/.source/component/src/ESChartView/ESLineChartViewComponent.ts +35 -0
  660. package/rules/.source/component/src/ESDialog/ESDialogComponent.ts +15 -0
  661. package/rules/.source/component/src/ESFastSwiperSlideView/ESFastSwiperSlideViewComponent.ts +46 -0
  662. package/rules/.source/component/src/ESFlexView/ESFlexViewComponent.ts +22 -0
  663. package/rules/.source/component/src/ESGradient/ESGradient.ts +14 -0
  664. package/rules/.source/component/src/ESGradient/ESGradientOrientation.ts +10 -0
  665. package/rules/.source/component/src/ESGradient/ESGradientShape.ts +6 -0
  666. package/rules/.source/component/src/ESGradient/ESGradientType.ts +5 -0
  667. package/rules/.source/component/src/ESItem/ESItemComponent.ts +40 -0
  668. package/rules/.source/component/src/ESItemStoreView/ESItemStoreViewComponent.ts +23 -0
  669. package/rules/.source/component/src/ESLargeListView/ESLargeListViewComponent.ts +136 -0
  670. package/rules/.source/component/src/ESLoading/ESLoadingViewComponent.ts +16 -0
  671. package/rules/.source/component/src/ESLoading/ESLoadingViewElement.android.ts +11 -0
  672. package/rules/.source/component/src/ESLoading/ESLoadingViewElement.harmony.ts +11 -0
  673. package/rules/.source/component/src/ESLottieView/ESLottieViewComponent.android.ts +29 -0
  674. package/rules/.source/component/src/ESLottieView/ESLottieViewComponent.harmony.ts +29 -0
  675. package/rules/.source/component/src/ESMediaSeries/ESIMediaSeries.ts +24 -0
  676. package/rules/.source/component/src/ESMediaSeries/ESMediaSeries.ts +6 -0
  677. package/rules/.source/component/src/ESMediaSeries/ESMediaSeriesComponent.ts +142 -0
  678. package/rules/.source/component/src/ESOrientationSeekBar/ESHorizontalSeekBarViewComponent.ts +1305 -0
  679. package/rules/.source/component/src/ESOrientationSeekBar/ESIHorizontalSeekBar.ts +255 -0
  680. package/rules/.source/component/src/ESOrientationSeekBar/ESIVerticalSeekBar.ts +13 -0
  681. package/rules/.source/component/src/ESOrientationSeekBar/ESVerticalSeekBarViewComponent.ts +1356 -0
  682. package/rules/.source/component/src/ESPlayMarkView/ESPlayMarkViewComponent.ts +21 -0
  683. package/rules/.source/component/src/ESPluginView/ESPluginViewComponent.ts +34 -0
  684. package/rules/.source/component/src/ESProgressBarView/ESProgressBarViewComponent.ts +38 -0
  685. package/rules/.source/component/src/ESQRCodeView/ESQRCodeViewComponent.ts +11 -0
  686. package/rules/.source/component/src/ESReplaceChildView/ESReplaceChildViewComponent.ts +151 -0
  687. package/rules/.source/component/src/ESRippleView/ESRippleViewComponent.ts +45 -0
  688. package/rules/.source/component/src/ESScrollView/ESIScrollView.ts +7 -0
  689. package/rules/.source/component/src/ESScrollView/ESScrollViewComponent.ts +49 -0
  690. package/rules/.source/component/src/ESSeekBarView/ESSeekBarViewElement.android.ts +38 -0
  691. package/rules/.source/component/src/ESSeekBarView/ESSeekBarViewElement.harmony.ts +38 -0
  692. package/rules/.source/component/src/ESSurfaceView/ESSurfaceViewComponent.ts +21 -0
  693. package/rules/.source/component/src/ESSwiftListView/ESSwiftListViewComponent.ts +117 -0
  694. package/rules/.source/component/src/ESSwiperSlideView/ESSwiperSlideViewComponent.ts +31 -0
  695. package/rules/.source/component/src/ESSwiperView/ESSwiperViewComponent.ts +82 -0
  696. package/rules/.source/component/src/ESTVItemView/ESTVItemViewComponent.ts +185 -0
  697. package/rules/.source/component/src/ESTVListView/ESIListView.ts +184 -0
  698. package/rules/.source/component/src/ESTVListView/ESListInitPosition.ts +15 -0
  699. package/rules/.source/component/src/ESTVListView/ESListViewItem.ts +10 -0
  700. package/rules/.source/component/src/ESTVListView/ESListViewItemDecoration.ts +7 -0
  701. package/rules/.source/component/src/ESTVListView/ESListViewItemFunctionParams.ts +7 -0
  702. package/rules/.source/component/src/ESTVListView/ESTVListViewComponent.ts +697 -0
  703. package/rules/.source/component/src/ESTabsView/ESITab.ts +90 -0
  704. package/rules/.source/component/src/ESTabsView/ESTab.ts +7 -0
  705. package/rules/.source/component/src/ESTabsView/ESTabItem.ts +8 -0
  706. package/rules/.source/component/src/ESTabsView/ESTabsViewComponent.ts +383 -0
  707. package/rules/.source/component/src/ESTestView/ESITestAView.ts +1 -0
  708. package/rules/.source/component/src/ESTestView/ESITestGroup.ts +3 -0
  709. package/rules/.source/component/src/ESTestView/ESITestView.ts +3 -0
  710. package/rules/.source/component/src/ESTestView/ESTestAViewComponent.ts +34 -0
  711. package/rules/.source/component/src/ESTestView/ESTestGroupComponent.ts +39 -0
  712. package/rules/.source/component/src/ESTestView/ESTestViewComponent.ts +51 -0
  713. package/rules/.source/component/src/ESTextView/ESTextViewComponent.ts +22 -0
  714. package/rules/.source/component/src/ESTransitionImageView/ESITransitionImage.ts +7 -0
  715. package/rules/.source/component/src/ESTransitionImageView/ESTransitionImageViewComponent.ts +58 -0
  716. package/rules/.source/component/src/ESView/ESDirections.ts +7 -0
  717. package/rules/.source/component/src/ESView/ESIView.ts +6 -0
  718. package/rules/.source/component/src/ESView/ESViewComponent.ts +24 -0
  719. package/rules/.source/component/src/ESView/ESViewCoordinate.ts +4 -0
  720. package/rules/.source/component/src/ESView/ESViewScrollState.ts +5 -0
  721. package/rules/.source/component/src/ESView/ESViewState.ts +16 -0
  722. package/rules/.source/component/src/ESView/ESViewStateCallback.ts +5 -0
  723. package/rules/.source/component/src/ESViewPager/ESIViewPager.ts +8 -0
  724. package/rules/.source/component/src/ESViewPager/ESPageData.ts +7 -0
  725. package/rules/.source/component/src/ESViewPager/ESViewPagerComponent.ts +58 -0
  726. package/rules/.source/component/src/ESWebView/ESWebViewComponent.ts +48 -0
  727. package/rules/.source/component/src/ESX5WebView/ESX5WebViewElement.android.ts +70 -0
  728. package/rules/.source/component/src/ESX5WebView/ESX5WebViewElement.harmony.ts +70 -0
  729. package/rules/.source/component/src/index.ts +180 -0
  730. package/rules/.source/component/src/tv-div/TVDivComponent.ts +131 -0
  731. package/rules/.source/component/src/tv-image/TVImageComponent.ts +126 -0
  732. package/rules/.source/component/src/tv-li/TVLiComponent.ts +10 -0
  733. package/rules/.source/component/src/tv-swiper/TVSwiperComponent.ts +110 -0
  734. package/rules/.source/component/src/tv-ul/TVULComponent.ts +82 -0
  735. package/rules/.source/component/src/typings/index.ts +7 -0
  736. package/rules/.source/component/src/typings/shims-vue.d.ts +6 -0
  737. package/rules/.source/component/tsconfig.json +34 -0
  738. package/rules/.source/hippy/extend_views/CoverFlowHorizontalView.java +203 -0
  739. package/rules/.source/hippy/extend_views/CoverFlowVerticalView.java +203 -0
  740. package/rules/.source/hippy/extend_views/CoverFlowViewController.java +195 -0
  741. package/rules/.source/hippy/extend_views/EngineRootView.java +125 -0
  742. package/rules/.source/hippy/extend_views/ExtendTag.java +83 -0
  743. package/rules/.source/hippy/extend_views/FocusSearchHelper.java +124 -0
  744. package/rules/.source/hippy/extend_views/IRecyclerItemView.java +12 -0
  745. package/rules/.source/hippy/extend_views/JSEventHandleView.java +5 -0
  746. package/rules/.source/hippy/extend_views/MarqueeRelayManager.java +133 -0
  747. package/rules/.source/hippy/extend_views/MarqueeRelayTextView.java +211 -0
  748. package/rules/.source/hippy/extend_views/ProgressBarView.java +83 -0
  749. package/rules/.source/hippy/extend_views/ProgressBarViewController.java +145 -0
  750. package/rules/.source/hippy/extend_views/SeekBarView.java +104 -0
  751. package/rules/.source/hippy/extend_views/SeekBarViewController.java +218 -0
  752. package/rules/.source/hippy/extend_views/StateImageView.java +149 -0
  753. package/rules/.source/hippy/extend_views/StateImageViewController.java +34 -0
  754. package/rules/.source/hippy/extend_views/TVButtonView.java +314 -0
  755. package/rules/.source/hippy/extend_views/TVButtonViewController.java +89 -0
  756. package/rules/.source/hippy/extend_views/TVTextView.java +684 -0
  757. package/rules/.source/hippy/extend_views/TVViewActor.java +811 -0
  758. package/rules/.source/hippy/extend_views/TVViewActorHost.java +6 -0
  759. package/rules/.source/hippy/extend_views/TVViewActor/346/216/245/345/205/245.md +66 -0
  760. package/rules/.source/hippy/extend_views/TemplateUtil.java +336 -0
  761. package/rules/.source/hippy/extend_views/TextButtonNode.java +47 -0
  762. package/rules/.source/hippy/extend_views/TextViewController.java +377 -0
  763. package/rules/.source/hippy/extend_views/fastlist/CenterFlyInAnimator.java +96 -0
  764. package/rules/.source/hippy/extend_views/fastlist/ChildOnScreenScroller.java +548 -0
  765. package/rules/.source/hippy/extend_views/fastlist/ClonedViewTag.java +17 -0
  766. package/rules/.source/hippy/extend_views/fastlist/EventDeliverer.java +55 -0
  767. package/rules/.source/hippy/extend_views/fastlist/FastAdapter.java +4683 -0
  768. package/rules/.source/hippy/extend_views/fastlist/FastAdapterUtil.java +982 -0
  769. package/rules/.source/hippy/extend_views/fastlist/FastFlexNode.java +48 -0
  770. package/rules/.source/hippy/extend_views/fastlist/FastFlexView.java +873 -0
  771. package/rules/.source/hippy/extend_views/fastlist/FastFlexViewController.java +130 -0
  772. package/rules/.source/hippy/extend_views/fastlist/FastItemNode.java +67 -0
  773. package/rules/.source/hippy/extend_views/fastlist/FastItemView.java +306 -0
  774. package/rules/.source/hippy/extend_views/fastlist/FastItemViewController.java +106 -0
  775. package/rules/.source/hippy/extend_views/fastlist/FastListModule.java +95 -0
  776. package/rules/.source/hippy/extend_views/fastlist/FastListNode.java +90 -0
  777. package/rules/.source/hippy/extend_views/fastlist/FastListView.java +2466 -0
  778. package/rules/.source/hippy/extend_views/fastlist/FastListViewController.java +1038 -0
  779. package/rules/.source/hippy/extend_views/fastlist/FastListView/346/270/262/346/237/223/346/265/201/347/250/213/345/233/276.graffle +0 -0
  780. package/rules/.source/hippy/extend_views/fastlist/FastPendingView.java +47 -0
  781. package/rules/.source/hippy/extend_views/fastlist/ItemDecorations.java +71 -0
  782. package/rules/.source/hippy/extend_views/fastlist/ItemStoreNode.java +64 -0
  783. package/rules/.source/hippy/extend_views/fastlist/ItemStoreView.java +13 -0
  784. package/rules/.source/hippy/extend_views/fastlist/ItemStoreViewController.java +45 -0
  785. package/rules/.source/hippy/extend_views/fastlist/ListItemHolder.java +7 -0
  786. package/rules/.source/hippy/extend_views/fastlist/ListViewControlProp.java +41 -0
  787. package/rules/.source/hippy/extend_views/fastlist/MouseRecycleView.java +509 -0
  788. package/rules/.source/hippy/extend_views/fastlist/OnFastItemClickListener.java +12 -0
  789. package/rules/.source/hippy/extend_views/fastlist/OnFastItemFocusChangeListener.java +9 -0
  790. package/rules/.source/hippy/extend_views/fastlist/OnFastScrollStateChangedListener.java +7 -0
  791. package/rules/.source/hippy/extend_views/fastlist/PendingListNode.java +18 -0
  792. package/rules/.source/hippy/extend_views/fastlist/PendingViewController.java +13 -0
  793. package/rules/.source/hippy/extend_views/fastlist/PostHandlerView.java +6 -0
  794. package/rules/.source/hippy/extend_views/fastlist/PostTaskHolder.java +20 -0
  795. package/rules/.source/hippy/extend_views/fastlist/ReplaceChildController.java +105 -0
  796. package/rules/.source/hippy/extend_views/fastlist/ReplaceChildView.java +312 -0
  797. package/rules/.source/hippy/extend_views/fastlist/TVListView.java +3692 -0
  798. package/rules/.source/hippy/extend_views/fastlist/TemplateCodeParser.java +247 -0
  799. package/rules/.source/hippy/extend_views/fastlist/Utils.java +572 -0
  800. package/rules/.source/hippy/extend_views/fastlist/ViewTag.java +317 -0
  801. package/rules/.source/hippy/extend_views/fastlist/VirtualListView.java +8 -0
  802. package/rules/.source/hippy/extend_views/fastlist/diff/FastListDataBindingHelper.java +320 -0
  803. package/rules/.source/hippy/extend_views/fastlist/diff/KeyDiffHelper.java +289 -0
  804. package/rules/.source/hippy/extend_views/fastlist/diff/NoKeyDiffHelper.java +278 -0
  805. package/rules/.source/hippy/extend_views/tag/FontTag.java +53 -0
  806. package/rules/.source/hippy/extend_views/tag/HtmlTag.java +191 -0
  807. package/rules/.source/hippy/extend_views/tag/HtmlTagHandler.java +185 -0
  808. package/rules/.source/hippy/extend_views/tag/SpanTag.java +160 -0
  809. package/rules/.source/hippy/extend_views/tag/TextFontSpan.java +102 -0
  810. package/rules/.source/hippy/extend_views/waterfall/Chunk.java +10 -0
  811. package/rules/.source/hippy/extend_views/waterfall/ChunkGroup.java +5 -0
  812. package/rules/.source/hippy/extend_views/waterfall/Section.java +4 -0
  813. package/rules/.source/hippy/extend_views/waterfall/Tabs.java +5 -0
  814. package/rules/.source/hippy/extend_views/waterfall/WaterfallUtils.java +26 -0
  815. package/rules/.source/hippy/hippy_uimanager/ControllerHolder.java +30 -0
  816. package/rules/.source/hippy/hippy_uimanager/ControllerManager.java +651 -0
  817. package/rules/.source/hippy/hippy_uimanager/ControllerRegistry.java +102 -0
  818. package/rules/.source/hippy/hippy_uimanager/ControllerUpdateManger.java +252 -0
  819. package/rules/.source/hippy/hippy_uimanager/CustomControllerHelper.java +425 -0
  820. package/rules/.source/hippy/hippy_uimanager/DiffUtils.java +526 -0
  821. package/rules/.source/hippy/hippy_uimanager/ExtendViewGroup.java +36 -0
  822. package/rules/.source/hippy/hippy_uimanager/HippyCustomViewCreator.java +29 -0
  823. package/rules/.source/hippy/hippy_uimanager/HippyGroupController.java +83 -0
  824. package/rules/.source/hippy/hippy_uimanager/HippyViewBase.java +27 -0
  825. package/rules/.source/hippy/hippy_uimanager/HippyViewController.java +2189 -0
  826. package/rules/.source/hippy/hippy_uimanager/HippyViewEvent.java +52 -0
  827. package/rules/.source/hippy/hippy_uimanager/IHippyZIndexViewGroup.java +24 -0
  828. package/rules/.source/hippy/hippy_uimanager/InternalExtendViewUtil.java +395 -0
  829. package/rules/.source/hippy/hippy_uimanager/ListItemRenderNode.java +143 -0
  830. package/rules/.source/hippy/hippy_uimanager/ListViewRenderNode.java +44 -0
  831. package/rules/.source/hippy/hippy_uimanager/MatrixUtil.java +470 -0
  832. package/rules/.source/hippy/hippy_uimanager/NativeGestureDispatcher.java +349 -0
  833. package/rules/.source/hippy/hippy_uimanager/NativeGestureProcessor.java +188 -0
  834. package/rules/.source/hippy/hippy_uimanager/PullFooterRenderNode.java +43 -0
  835. package/rules/.source/hippy/hippy_uimanager/PullHeaderRenderNode.java +43 -0
  836. package/rules/.source/hippy/hippy_uimanager/RenderManager.java +304 -0
  837. package/rules/.source/hippy/hippy_uimanager/RenderNode.java +533 -0
  838. package/rules/.source/hippy/hippy_uimanager/StateView.java +17 -0
  839. package/rules/.source/hippy/hippy_uimanager/TransformUtil.java +125 -0
  840. package/rules/.source/hippy/hippy_uimanager/ViewGroupDrawingOrderHelper.java +108 -0
  841. package/rules/.source/hippy/hippy_uimanager/ViewStateProvider.java +10 -0
  842. package/rules/.source/hippy/hippy_views/audioview/AudioPlayManager.java +457 -0
  843. package/rules/.source/hippy/hippy_views/audioview/AudioView.java +225 -0
  844. package/rules/.source/hippy/hippy_views/audioview/AudioViewController.java +135 -0
  845. package/rules/.source/hippy/hippy_views/common/CommonBackgroundDrawable.java +58 -0
  846. package/rules/.source/hippy/hippy_views/common/CommonBorder.java +37 -0
  847. package/rules/.source/hippy/hippy_views/custom/HippyCustomPropsController.java +61 -0
  848. package/rules/.source/hippy/hippy_views/hippylist/HippyRecyclerListAdapter.java +399 -0
  849. package/rules/.source/hippy/hippy_views/hippylist/HippyRecyclerView.java +378 -0
  850. package/rules/.source/hippy/hippy_views/hippylist/HippyRecyclerViewController.java +187 -0
  851. package/rules/.source/hippy/hippy_views/hippylist/HippyRecyclerViewHolder.java +39 -0
  852. package/rules/.source/hippy/hippy_views/hippylist/HippyRecyclerViewWrapper.java +134 -0
  853. package/rules/.source/hippy/hippy_views/hippylist/NodePositionHelper.java +55 -0
  854. package/rules/.source/hippy/hippy_views/hippylist/PreloadHelper.java +54 -0
  855. package/rules/.source/hippy/hippy_views/hippylist/PullFooterEventHelper.java +61 -0
  856. package/rules/.source/hippy/hippy_views/hippylist/PullHeaderEventHelper.java +127 -0
  857. package/rules/.source/hippy/hippy_views/hippylist/RecyclerViewEventHelper.java +394 -0
  858. package/rules/.source/hippy/hippy_views/image/HippyContentDrawable.java +113 -0
  859. package/rules/.source/hippy/hippy_views/image/HippyImageView.java +1608 -0
  860. package/rules/.source/hippy/hippy_views/image/HippyImageViewController.java +382 -0
  861. package/rules/.source/hippy/hippy_views/image/IImageStateListener.java +7 -0
  862. package/rules/.source/hippy/hippy_views/list/ChildOnScreenScroller.java +255 -0
  863. package/rules/.source/hippy/hippy_views/list/HippyListAdapter.java +647 -0
  864. package/rules/.source/hippy/hippy_views/list/HippyListItemView.java +162 -0
  865. package/rules/.source/hippy/hippy_views/list/HippyListItemViewController.java +45 -0
  866. package/rules/.source/hippy/hippy_views/list/HippyListView.java +915 -0
  867. package/rules/.source/hippy/hippy_views/list/HippyListViewController.java +622 -0
  868. package/rules/.source/hippy/hippy_views/list/HippyRecycler.java +31 -0
  869. package/rules/.source/hippy/hippy_views/list/IRecycleItemTypeChange.java +23 -0
  870. package/rules/.source/hippy/hippy_views/list/ItemDecorations.java +70 -0
  871. package/rules/.source/hippy/hippy_views/list/NegativeLongKeyFlinger.java +156 -0
  872. package/rules/.source/hippy/hippy_views/list/NodeHolder.java +34 -0
  873. package/rules/.source/hippy/hippy_views/list/RecycleViewFlinger.java +126 -0
  874. package/rules/.source/hippy/hippy_views/list/TVRecyclerView.java +2070 -0
  875. package/rules/.source/hippy/hippy_views/list/TVSingleLineListView.java +15 -0
  876. package/rules/.source/hippy/hippy_views/modal/HippyModalHostManager.java +102 -0
  877. package/rules/.source/hippy/hippy_views/modal/HippyModalHostView.java +597 -0
  878. package/rules/.source/hippy/hippy_views/modal/ModalHostHelper.java +46 -0
  879. package/rules/.source/hippy/hippy_views/modal/ModalStyleNode.java +34 -0
  880. package/rules/.source/hippy/hippy_views/modal/RequestCloseEvent.java +32 -0
  881. package/rules/.source/hippy/hippy_views/modal/ShowEvent.java +31 -0
  882. package/rules/.source/hippy/hippy_views/navigator/Navigator.java +126 -0
  883. package/rules/.source/hippy/hippy_views/navigator/NavigatorController.java +120 -0
  884. package/rules/.source/hippy/hippy_views/refresh/HippyPullFooterView.java +47 -0
  885. package/rules/.source/hippy/hippy_views/refresh/HippyPullFooterViewController.java +65 -0
  886. package/rules/.source/hippy/hippy_views/refresh/HippyPullHeaderView.java +39 -0
  887. package/rules/.source/hippy/hippy_views/refresh/HippyPullHeaderViewController.java +104 -0
  888. package/rules/.source/hippy/hippy_views/refresh/RefreshWrapper.java +237 -0
  889. package/rules/.source/hippy/hippy_views/refresh/RefreshWrapperController.java +62 -0
  890. package/rules/.source/hippy/hippy_views/refresh/RefreshWrapperItemController.java +39 -0
  891. package/rules/.source/hippy/hippy_views/refresh/RefreshWrapperItemView.java +26 -0
  892. package/rules/.source/hippy/hippy_views/scroll/HippyHorizontalScrollView.java +500 -0
  893. package/rules/.source/hippy/hippy_views/scroll/HippyOnScrollHelper.java +39 -0
  894. package/rules/.source/hippy/hippy_views/scroll/HippyScrollView.java +46 -0
  895. package/rules/.source/hippy/hippy_views/scroll/HippyScrollViewController.java +178 -0
  896. package/rules/.source/hippy/hippy_views/scroll/HippyScrollViewEventHelper.java +92 -0
  897. package/rules/.source/hippy/hippy_views/scroll/HippyVerticalScrollView.java +522 -0
  898. package/rules/.source/hippy/hippy_views/text/HippyTextView.java +512 -0
  899. package/rules/.source/hippy/hippy_views/text/HippyTextViewController.java +77 -0
  900. package/rules/.source/hippy/hippy_views/textinput/HippyTextInput.java +668 -0
  901. package/rules/.source/hippy/hippy_views/textinput/HippyTextInputController.java +528 -0
  902. package/rules/.source/hippy/hippy_views/textinput/TextInputNode.java +115 -0
  903. package/rules/.source/hippy/hippy_views/videoview/APEZProvider.java +287 -0
  904. package/rules/.source/hippy/hippy_views/videoview/APKExpansionSupport.java +82 -0
  905. package/rules/.source/hippy/hippy_views/videoview/PivotPoint.java +13 -0
  906. package/rules/.source/hippy/hippy_views/videoview/ScalableType.java +34 -0
  907. package/rules/.source/hippy/hippy_views/videoview/ScalableVideoView.java +265 -0
  908. package/rules/.source/hippy/hippy_views/videoview/ScaleManager.java +191 -0
  909. package/rules/.source/hippy/hippy_views/videoview/Size.java +19 -0
  910. package/rules/.source/hippy/hippy_views/videoview/VideoHippyView.java +917 -0
  911. package/rules/.source/hippy/hippy_views/videoview/VideoHippyViewController.java +236 -0
  912. package/rules/.source/hippy/hippy_views/videoview/ZipResourceFile.java +427 -0
  913. package/rules/.source/hippy/hippy_views/view/CardRootView.java +28 -0
  914. package/rules/.source/hippy/hippy_views/view/CustomLayoutView.java +10 -0
  915. package/rules/.source/hippy/hippy_views/view/CustomNodeView.java +5 -0
  916. package/rules/.source/hippy/hippy_views/view/DialogViewGroup.java +113 -0
  917. package/rules/.source/hippy/hippy_views/view/HippyViewGroup.java +2042 -0
  918. package/rules/.source/hippy/hippy_views/view/HippyViewGroupController.java +583 -0
  919. package/rules/.source/hippy/hippy_views/view/WindowRoot.java +5 -0
  920. package/rules/.source/hippy/hippy_views/viewpager/HippyViewPager.java +308 -0
  921. package/rules/.source/hippy/hippy_views/viewpager/HippyViewPagerAdapter.java +148 -0
  922. package/rules/.source/hippy/hippy_views/viewpager/HippyViewPagerController.java +246 -0
  923. package/rules/.source/hippy/hippy_views/viewpager/HippyViewPagerItem.java +27 -0
  924. package/rules/.source/hippy/hippy_views/viewpager/HippyViewPagerItemController.java +42 -0
  925. package/rules/.source/hippy/hippy_views/viewpager/ViewPagerPageChangeListener.java +114 -0
  926. package/rules/.source/hippy/hippy_views/viewpager/event/HippyPageItemExposureEvent.java +40 -0
  927. package/rules/.source/hippy/hippy_views/viewpager/event/HippyPageScrollEvent.java +43 -0
  928. package/rules/.source/hippy/hippy_views/viewpager/event/HippyPageScrollStateChangedEvent.java +42 -0
  929. package/rules/.source/hippy/hippy_views/viewpager/event/HippyPageSelectedEvent.java +42 -0
  930. package/rules/.source/hippy/hippy_views/webview/HippyWebView.java +160 -0
  931. package/rules/.source/hippy/hippy_views/webview/HippyWebViewBridge.java +20 -0
  932. package/rules/.source/hippy/hippy_views/webview/HippyWebViewController.java +103 -0
  933. package/rules/.source/hippy/hippy_views/webview/HippyWebViewInner.java +77 -0
  934. package/rules/.source/quicktvui/assets/ic_media_sereis_vip.png +0 -0
  935. package/rules/.source/quicktvui/package.json +38 -0
  936. package/rules/.source/quicktvui/rollup.config.js +33 -0
  937. package/rules/.source/quicktvui/src/animation/QTAnimation.android.ts +1139 -0
  938. package/rules/.source/quicktvui/src/animation/QTAnimation.harmony.ts +1088 -0
  939. package/rules/.source/quicktvui/src/animation/QTIAnimation.ts +336 -0
  940. package/rules/.source/quicktvui/src/animation/QtAnimationAPI.ts +467 -0
  941. package/rules/.source/quicktvui/src/animation/types.ts +97 -0
  942. package/rules/.source/quicktvui/src/app/QTAppIcon.ts +41 -0
  943. package/rules/.source/quicktvui/src/app/QTIAppIcon.ts +5 -0
  944. package/rules/.source/quicktvui/src/app/QtAppIconAPI.ts +56 -0
  945. package/rules/.source/quicktvui/src/assets/vip.png +0 -0
  946. package/rules/.source/quicktvui/src/base/QTIBaseView.ts +95 -0
  947. package/rules/.source/quicktvui/src/base/QtBaseNativeViewAPI.ts +604 -0
  948. package/rules/.source/quicktvui/src/base/QtBaseViewAPI.ts +750 -0
  949. package/rules/.source/quicktvui/src/base/useBaseView.ts +374 -0
  950. package/rules/.source/quicktvui/src/button/QTIButton.ts +3 -0
  951. package/rules/.source/quicktvui/src/button/QtButtonAPI.ts +9 -0
  952. package/rules/.source/quicktvui/src/button/index.vue +223 -0
  953. package/rules/.source/quicktvui/src/canvas/CanvasGradient.ts +84 -0
  954. package/rules/.source/quicktvui/src/canvas/QTCanvasView.ts +468 -0
  955. package/rules/.source/quicktvui/src/canvas/QTICanvasView.ts +141 -0
  956. package/rules/.source/quicktvui/src/canvas/QtCanvasViewAPI.ts +1140 -0
  957. package/rules/.source/quicktvui/src/classified-list-view/QtClassifiedListViewAPI.ts +115 -0
  958. package/rules/.source/quicktvui/src/classified-list-view/core/QTClassifiedListViewItem.ts +11 -0
  959. package/rules/.source/quicktvui/src/classified-list-view/core/QTClassifiedListViewItemDecoration.ts +7 -0
  960. package/rules/.source/quicktvui/src/classified-list-view/core/QTIClassifiedListView.ts +18 -0
  961. package/rules/.source/quicktvui/src/classified-list-view/index.vue +520 -0
  962. package/rules/.source/quicktvui/src/collapse/QtCollapseAPI.ts +60 -0
  963. package/rules/.source/quicktvui/src/collapse/core/QTCollapse.ts +13 -0
  964. package/rules/.source/quicktvui/src/collapse/core/QTCollapseItem.ts +7 -0
  965. package/rules/.source/quicktvui/src/collapse/core/QTICollapse.ts +15 -0
  966. package/rules/.source/quicktvui/src/collapse/core/QTICollapseItem.ts +5 -0
  967. package/rules/.source/quicktvui/src/collapse/index.vue +337 -0
  968. package/rules/.source/quicktvui/src/column/QTIColumn.ts +3 -0
  969. package/rules/.source/quicktvui/src/column/QtColumnAPI.ts +9 -0
  970. package/rules/.source/quicktvui/src/column/index.vue +29 -0
  971. package/rules/.source/quicktvui/src/core/QTEventData.ts +4 -0
  972. package/rules/.source/quicktvui/src/core/QTFlexStyleBackground.ts +4 -0
  973. package/rules/.source/quicktvui/src/core/QTFlexStyleCoordinate.ts +5 -0
  974. package/rules/.source/quicktvui/src/core/QTFlexStyleDecoration.ts +7 -0
  975. package/rules/.source/quicktvui/src/core/QTFlexStyleGradientBackground.ts +6 -0
  976. package/rules/.source/quicktvui/src/core/QTFlexStyleMargin.ts +8 -0
  977. package/rules/.source/quicktvui/src/core/QTFlexStylePadding.ts +8 -0
  978. package/rules/.source/quicktvui/src/core/QTFlexStylePosition.ts +7 -0
  979. package/rules/.source/quicktvui/src/core/QTFlexStyleSize.ts +6 -0
  980. package/rules/.source/quicktvui/src/core/QTFlexStyleSpacing.ts +4 -0
  981. package/rules/.source/quicktvui/src/core/QTFlexStyleText.ts +5 -0
  982. package/rules/.source/quicktvui/src/core/QTFocusable.ts +5 -0
  983. package/rules/.source/quicktvui/src/core/QTLocation.ts +4 -0
  984. package/rules/.source/quicktvui/src/core/QTNativeParams.ts +22 -0
  985. package/rules/.source/quicktvui/src/core/QTPosition.ts +4 -0
  986. package/rules/.source/quicktvui/src/core/QTVisibility.ts +5 -0
  987. package/rules/.source/quicktvui/src/dialog/QTDialog.ts +28 -0
  988. package/rules/.source/quicktvui/src/dialog/QTIDialog.ts +3 -0
  989. package/rules/.source/quicktvui/src/file-browse/QTFileBrowse.ts +76 -0
  990. package/rules/.source/quicktvui/src/file-browse/QTIFileBrowse.ts +13 -0
  991. package/rules/.source/quicktvui/src/focus/QTDescendantFocusability.ts +5 -0
  992. package/rules/.source/quicktvui/src/focus/QTFocusDescendant.ts +5 -0
  993. package/rules/.source/quicktvui/src/focus/QTFocusDirection.ts +8 -0
  994. package/rules/.source/quicktvui/src/focus/QTFocusDirectionName.ts +7 -0
  995. package/rules/.source/quicktvui/src/gradient/QTGradient.ts +14 -0
  996. package/rules/.source/quicktvui/src/gradient/QTGradientOrientation.ts +10 -0
  997. package/rules/.source/quicktvui/src/gradient/QTGradientShape.ts +6 -0
  998. package/rules/.source/quicktvui/src/gradient/QTGradientType.ts +5 -0
  999. package/rules/.source/quicktvui/src/grid-view/QtGridViewAPI.ts +121 -0
  1000. package/rules/.source/quicktvui/src/grid-view/README.md +93 -0
  1001. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItem.ts +4 -0
  1002. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItemDecoration.ts +7 -0
  1003. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItemFunctionParams.ts +7 -0
  1004. package/rules/.source/quicktvui/src/grid-view/core/QTIGridView.ts +23 -0
  1005. package/rules/.source/quicktvui/src/grid-view/index.vue +390 -0
  1006. package/rules/.source/quicktvui/src/image/QTIImage.ts +8 -0
  1007. package/rules/.source/quicktvui/src/image/QTImageResizeMode.ts +7 -0
  1008. package/rules/.source/quicktvui/src/image/QtImageAPI.ts +54 -0
  1009. package/rules/.source/quicktvui/src/image/index.vue +33 -0
  1010. package/rules/.source/quicktvui/src/index.ts +404 -0
  1011. package/rules/.source/quicktvui/src/list/QTIBaseListView.ts +144 -0
  1012. package/rules/.source/quicktvui/src/list/QTListInitPosition.ts +15 -0
  1013. package/rules/.source/quicktvui/src/list/QtBaseListViewAPI.ts +930 -0
  1014. package/rules/.source/quicktvui/src/list/useBaseListView.ts +454 -0
  1015. package/rules/.source/quicktvui/src/list/useListView.ts +294 -0
  1016. package/rules/.source/quicktvui/src/list-indicator/QTIndicatorListViewComponent.ts +553 -0
  1017. package/rules/.source/quicktvui/src/list-indicator/QtIndicatorViewAPI.ts +114 -0
  1018. package/rules/.source/quicktvui/src/list-indicator/core/QTIIndicatorView.ts +21 -0
  1019. package/rules/.source/quicktvui/src/list-item/ESListItemComponent.ts +86 -0
  1020. package/rules/.source/quicktvui/src/list-item/QTIListItem.ts +14 -0
  1021. package/rules/.source/quicktvui/src/list-item/QtListItemAPI.ts +107 -0
  1022. package/rules/.source/quicktvui/src/list-view/QTListViewComponent.ts +389 -0
  1023. package/rules/.source/quicktvui/src/list-view/QtListViewAPI.ts +101 -0
  1024. package/rules/.source/quicktvui/src/list-view/core/QTIListView.ts +19 -0
  1025. package/rules/.source/quicktvui/src/list-view/core/QTListViewItem.ts +12 -0
  1026. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemDecoration.ts +7 -0
  1027. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemFunctionParams.ts +7 -0
  1028. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemState.ts +8 -0
  1029. package/rules/.source/quicktvui/src/loading/QTILoadingView.ts +3 -0
  1030. package/rules/.source/quicktvui/src/loading/QTLoadingView.ts +25 -0
  1031. package/rules/.source/quicktvui/src/loading/QtLoadingAPI.ts +9 -0
  1032. package/rules/.source/quicktvui/src/long-image/QTILongImage.ts +68 -0
  1033. package/rules/.source/quicktvui/src/long-image/QTLongImage.ts +442 -0
  1034. package/rules/.source/quicktvui/src/long-image/QTLongImageEventBean.ts +62 -0
  1035. package/rules/.source/quicktvui/src/long-image/QTLongImageOrientation.ts +19 -0
  1036. package/rules/.source/quicktvui/src/long-image/QTLongImagePositionType.ts +5 -0
  1037. package/rules/.source/quicktvui/src/long-image/QTLongImageScaleType.ts +9 -0
  1038. package/rules/.source/quicktvui/src/long-image/QtLongImageAPI.ts +9 -0
  1039. package/rules/.source/quicktvui/src/long-image/index.vue +397 -0
  1040. package/rules/.source/quicktvui/src/lottie/QTILottieView.ts +62 -0
  1041. package/rules/.source/quicktvui/src/lottie/QTLottieAsyncUpdates.ts +5 -0
  1042. package/rules/.source/quicktvui/src/lottie/QTLottieEvent.ts +5 -0
  1043. package/rules/.source/quicktvui/src/lottie/QTLottieRenderMode.ts +5 -0
  1044. package/rules/.source/quicktvui/src/lottie/QTLottieRepeatMode.ts +5 -0
  1045. package/rules/.source/quicktvui/src/lottie/QTLottieView.android.ts +207 -0
  1046. package/rules/.source/quicktvui/src/lottie/QTLottieView.harmony.ts +207 -0
  1047. package/rules/.source/quicktvui/src/lottie/QtLottieViewAPI.ts +586 -0
  1048. package/rules/.source/quicktvui/src/nav-bar/QTINavBar.ts +11 -0
  1049. package/rules/.source/quicktvui/src/nav-bar/QTNavBar.ts +9 -0
  1050. package/rules/.source/quicktvui/src/nav-bar/QTNavBarItem.ts +9 -0
  1051. package/rules/.source/quicktvui/src/nav-bar/QTNavBarItemType.ts +3 -0
  1052. package/rules/.source/quicktvui/src/nav-bar/QtNavBarAPI.ts +36 -0
  1053. package/rules/.source/quicktvui/src/nav-bar/index.vue +220 -0
  1054. package/rules/.source/quicktvui/src/plugin/QTIPluginView.ts +11 -0
  1055. package/rules/.source/quicktvui/src/plugin/QTPluginView.ts +49 -0
  1056. package/rules/.source/quicktvui/src/plugin/QtPluginViewAPI.ts +44 -0
  1057. package/rules/.source/quicktvui/src/poster/QtPosterAPI.ts +9 -0
  1058. package/rules/.source/quicktvui/src/poster/core/QTIPoster.ts +3 -0
  1059. package/rules/.source/quicktvui/src/poster/core/QTPoster.ts +32 -0
  1060. package/rules/.source/quicktvui/src/poster/core/QTPosterCorner.ts +9 -0
  1061. package/rules/.source/quicktvui/src/poster/core/QTPosterElement.ts +8 -0
  1062. package/rules/.source/quicktvui/src/poster/core/QTPosterImage.ts +7 -0
  1063. package/rules/.source/quicktvui/src/poster/core/QTPosterPlaceholderImg.ts +4 -0
  1064. package/rules/.source/quicktvui/src/poster/core/QTPosterRipple.ts +10 -0
  1065. package/rules/.source/quicktvui/src/poster/core/QTPosterScore.ts +14 -0
  1066. package/rules/.source/quicktvui/src/poster/core/QTPosterShadow.ts +4 -0
  1067. package/rules/.source/quicktvui/src/poster/core/QTPosterShimmer.ts +4 -0
  1068. package/rules/.source/quicktvui/src/poster/core/QTPosterTitle.ts +17 -0
  1069. package/rules/.source/quicktvui/src/poster/index.vue +279 -0
  1070. package/rules/.source/quicktvui/src/poster/qt-poster-corner-title.vue +69 -0
  1071. package/rules/.source/quicktvui/src/poster/qt-poster-focus-title.vue +113 -0
  1072. package/rules/.source/quicktvui/src/progressbar/QTIProgressBar.ts +264 -0
  1073. package/rules/.source/quicktvui/src/progressbar/QTProgressBar.ts +1284 -0
  1074. package/rules/.source/quicktvui/src/progressbar/QtProgressBarAPI.ts +2637 -0
  1075. package/rules/.source/quicktvui/src/qrcode/QTIQRCode.ts +3 -0
  1076. package/rules/.source/quicktvui/src/qrcode/QTQRCodeView.ts +24 -0
  1077. package/rules/.source/quicktvui/src/qrcode/QtQRCodeAPI.ts +9 -0
  1078. package/rules/.source/quicktvui/src/qt/QtAPI.ts +337 -0
  1079. package/rules/.source/quicktvui/src/qt/QtAPIModule.ts +3 -0
  1080. package/rules/.source/quicktvui/src/qt/warning.ts +9 -0
  1081. package/rules/.source/quicktvui/src/qtListen/README.md +76 -0
  1082. package/rules/.source/quicktvui/src/qtListen/effect.ts +141 -0
  1083. package/rules/.source/quicktvui/src/qtListen/index.ts +11 -0
  1084. package/rules/.source/quicktvui/src/qtListen/qtArray.ts +156 -0
  1085. package/rules/.source/quicktvui/src/qtListen/qtDiff.ts +143 -0
  1086. package/rules/.source/quicktvui/src/qtListen/reactive.ts +205 -0
  1087. package/rules/.source/quicktvui/src/qtListen/ref.ts +98 -0
  1088. package/rules/.source/quicktvui/src/qtListen/types.ts +311 -0
  1089. package/rules/.source/quicktvui/src/qtListen/watch.ts +233 -0
  1090. package/rules/.source/quicktvui/src/replace-child/QTIReplaceChildView.ts +5 -0
  1091. package/rules/.source/quicktvui/src/replace-child/QTReplaceChildView.ts +30 -0
  1092. package/rules/.source/quicktvui/src/replace-child/QtReplaceChildViewAPI.ts +37 -0
  1093. package/rules/.source/quicktvui/src/row/QTIRow.ts +3 -0
  1094. package/rules/.source/quicktvui/src/row/QtRowAPI.ts +9 -0
  1095. package/rules/.source/quicktvui/src/row/index.vue +29 -0
  1096. package/rules/.source/quicktvui/src/scroll-view/QTIScrollView.ts +7 -0
  1097. package/rules/.source/quicktvui/src/scroll-view/QTScrollView.ts +45 -0
  1098. package/rules/.source/quicktvui/src/scroll-view/QtScrollViewAPI.ts +62 -0
  1099. package/rules/.source/quicktvui/src/section/index.vue +40 -0
  1100. package/rules/.source/quicktvui/src/seekbar/QTISeekBar.ts +277 -0
  1101. package/rules/.source/quicktvui/src/seekbar/QTSeekBar.ts +1380 -0
  1102. package/rules/.source/quicktvui/src/seekbar/QTSeekBarGravity.ts +5 -0
  1103. package/rules/.source/quicktvui/src/seekbar/QTSeekBarIndicatorMode.ts +6 -0
  1104. package/rules/.source/quicktvui/src/seekbar/QTSeekBarMode.ts +4 -0
  1105. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkGravity.ts +5 -0
  1106. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkLayoutGravity.ts +4 -0
  1107. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkMode.ts +4 -0
  1108. package/rules/.source/quicktvui/src/seekbar/QtSeekBarAPI.ts +2645 -0
  1109. package/rules/.source/quicktvui/src/series/DataAdapter.ts +329 -0
  1110. package/rules/.source/quicktvui/src/series/QTIMediaSeries.ts +33 -0
  1111. package/rules/.source/quicktvui/src/series/QTMediaSeries.ts +9 -0
  1112. package/rules/.source/quicktvui/src/series/QTMediaSeriesData.ts +9 -0
  1113. package/rules/.source/quicktvui/src/series/QTMediaSeriesDataStyle.ts +4 -0
  1114. package/rules/.source/quicktvui/src/series/QTMediaSeriesEvent.ts +7 -0
  1115. package/rules/.source/quicktvui/src/series/QTMediaSeriesGroup.ts +8 -0
  1116. package/rules/.source/quicktvui/src/series/QTMediaSeriesGroupStyle.ts +58 -0
  1117. package/rules/.source/quicktvui/src/series/QTMediaSeriesStyleType.ts +5 -0
  1118. package/rules/.source/quicktvui/src/series/QTMediaSeriesType.ts +8 -0
  1119. package/rules/.source/quicktvui/src/series/QTMediaSeriesVip.ts +4 -0
  1120. package/rules/.source/quicktvui/src/series/QtMediaSeriesAPI.ts +140 -0
  1121. package/rules/.source/quicktvui/src/series/component/media-series.vue +160 -0
  1122. package/rules/.source/quicktvui/src/series/index.vue +316 -0
  1123. package/rules/.source/quicktvui/src/series/item/media-series-number-item.vue +212 -0
  1124. package/rules/.source/quicktvui/src/series/item/media-series-text-item.vue +239 -0
  1125. package/rules/.source/quicktvui/src/tab/QTITab.ts +163 -0
  1126. package/rules/.source/quicktvui/src/tab/QTTab.ts +8 -0
  1127. package/rules/.source/quicktvui/src/tab/QTTabDataManager.ts +620 -0
  1128. package/rules/.source/quicktvui/src/tab/QTTabEvent.ts +11 -0
  1129. package/rules/.source/quicktvui/src/tab/QTTabEventParams.ts +12 -0
  1130. package/rules/.source/quicktvui/src/tab/QTTabIndex.ts +8 -0
  1131. package/rules/.source/quicktvui/src/tab/QTTabItem.ts +5 -0
  1132. package/rules/.source/quicktvui/src/tab/QTTabItemType.ts +3 -0
  1133. package/rules/.source/quicktvui/src/tab/QTTabPage.ts +5 -0
  1134. package/rules/.source/quicktvui/src/tab/QTTabPageData.ts +11 -0
  1135. package/rules/.source/quicktvui/src/tab/QTTabPageDataState.ts +8 -0
  1136. package/rules/.source/quicktvui/src/tab/QTTabPageState.ts +8 -0
  1137. package/rules/.source/quicktvui/src/tab/QtTabAPI.ts +578 -0
  1138. package/rules/.source/quicktvui/src/tab/index.vue +1561 -0
  1139. package/rules/.source/quicktvui/src/tab/useQtTabWatch.ts +203 -0
  1140. package/rules/.source/quicktvui/src/text/QTIText.ts +12 -0
  1141. package/rules/.source/quicktvui/src/text/QTTextSpan.ts +6 -0
  1142. package/rules/.source/quicktvui/src/text/QTTextSpanAttribute.ts +6 -0
  1143. package/rules/.source/quicktvui/src/text/QTTextSpanAttributeType.ts +4 -0
  1144. package/rules/.source/quicktvui/src/text/QtTextAPI.ts +90 -0
  1145. package/rules/.source/quicktvui/src/text/index.vue +44 -0
  1146. package/rules/.source/quicktvui/src/theme/button.css +195 -0
  1147. package/rules/.source/quicktvui/src/typings/shims-vue.d.ts +6 -0
  1148. package/rules/.source/quicktvui/src/ul/QTIUL.ts +34 -0
  1149. package/rules/.source/quicktvui/src/ul/QTULInitPosition.ts +3 -0
  1150. package/rules/.source/quicktvui/src/ul/QtULAPI.ts +232 -0
  1151. package/rules/.source/quicktvui/src/utils/QtVirtualViewAPI.ts +32 -0
  1152. package/rules/.source/quicktvui/src/utils/VirtualView.ts +124 -0
  1153. package/rules/.source/quicktvui/src/utils/functions.ts +1 -0
  1154. package/rules/.source/quicktvui/src/utils/index.ts +3 -0
  1155. package/rules/.source/quicktvui/src/utils/make-installer.ts +16 -0
  1156. package/rules/.source/quicktvui/src/utils/objects.ts +4 -0
  1157. package/rules/.source/quicktvui/src/utils/type.ts +1 -0
  1158. package/rules/.source/quicktvui/src/utils/types.ts +42 -0
  1159. package/rules/.source/quicktvui/src/utils/utils.ts +62 -0
  1160. package/rules/.source/quicktvui/src/utils/vue/index.ts +3 -0
  1161. package/rules/.source/quicktvui/src/utils/vue/install.ts +48 -0
  1162. package/rules/.source/quicktvui/src/utils/vue/props/index.ts +3 -0
  1163. package/rules/.source/quicktvui/src/utils/vue/props/runtime.ts +129 -0
  1164. package/rules/.source/quicktvui/src/utils/vue/props/types.ts +165 -0
  1165. package/rules/.source/quicktvui/src/utils/vue/props/util.ts +10 -0
  1166. package/rules/.source/quicktvui/src/utils/vue/typescript.ts +9 -0
  1167. package/rules/.source/quicktvui/src/view/QTIView.ts +3 -0
  1168. package/rules/.source/quicktvui/src/view/QTIViewVisibility.ts +5 -0
  1169. package/rules/.source/quicktvui/src/view/QTViewEvent.ts +3 -0
  1170. package/rules/.source/quicktvui/src/view/QTViewState.ts +12 -0
  1171. package/rules/.source/quicktvui/src/view/QtViewAPI.ts +9 -0
  1172. package/rules/.source/quicktvui/src/view/index.vue +24 -0
  1173. package/rules/.source/quicktvui/src/waterfall/QtWaterfallAPI.ts +219 -0
  1174. package/rules/.source/quicktvui/src/waterfall/README.md +143 -0
  1175. package/rules/.source/quicktvui/src/waterfall/core/QTIWaterfall.ts +49 -0
  1176. package/rules/.source/quicktvui/src/waterfall/core/QTScrollState.ts +5 -0
  1177. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfall.ts +13 -0
  1178. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardItem.ts +11 -0
  1179. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardPlaceHolder.ts +10 -0
  1180. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardSection.ts +12 -0
  1181. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallDataAdapter.ts +195 -0
  1182. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallDataManager.ts +305 -0
  1183. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallEvent.ts +11 -0
  1184. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallFlexStyle.ts +19 -0
  1185. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallIndex.ts +7 -0
  1186. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallItem.ts +9 -0
  1187. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallItemType.ts +7 -0
  1188. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPlaceholder.ts +5 -0
  1189. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPluginItem.ts +9 -0
  1190. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPluginSection.ts +8 -0
  1191. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallSection.ts +17 -0
  1192. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallSectionType.ts +14 -0
  1193. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallTabItem.ts +10 -0
  1194. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallVisibleType.ts +7 -0
  1195. package/rules/.source/quicktvui/src/waterfall/index.vue +704 -0
  1196. package/rules/.source/quicktvui/src/waterfall/item/card-item.vue +49 -0
  1197. package/rules/.source/quicktvui/src/waterfall/item/plugin-item.vue +52 -0
  1198. package/rules/.source/quicktvui/src/waterfall/section/blank-section.vue +27 -0
  1199. package/rules/.source/quicktvui/src/waterfall/section/card-section.vue +81 -0
  1200. package/rules/.source/quicktvui/src/waterfall/section/end-section.vue +50 -0
  1201. package/rules/.source/quicktvui/src/waterfall/section/flex-section.vue +167 -0
  1202. package/rules/.source/quicktvui/src/waterfall/section/list-section.vue +247 -0
  1203. package/rules/.source/quicktvui/src/waterfall/section/loading-section.vue +34 -0
  1204. package/rules/.source/quicktvui/src/waterfall/section/plugin-section.vue +87 -0
  1205. package/rules/.source/quicktvui/src/waterfall/section/section-title.vue +63 -0
  1206. package/rules/.source/quicktvui/src/waterfall/section/vue-section.vue +44 -0
  1207. package/rules/.source/quicktvui/src/webview/QTIWebView.ts +199 -0
  1208. package/rules/.source/quicktvui/src/webview/QTWebView.ts +957 -0
  1209. package/rules/.source/quicktvui/src/webview/QTWebViewInterceptRule.ts +4 -0
  1210. package/rules/.source/quicktvui/src/webview/QTWebViewLayerType.ts +6 -0
  1211. package/rules/.source/quicktvui/src/webview/QTWebViewSniffingRule.ts +18 -0
  1212. package/rules/.source/quicktvui/src/webview/QtWebViewAPI.ts +1963 -0
  1213. package/rules/.source/quicktvui/src/x5webview/QTIX5WebView.ts +211 -0
  1214. package/rules/.source/quicktvui/src/x5webview/QTX5WebView.ts +1014 -0
  1215. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewInterceptRule.ts +4 -0
  1216. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewLayerType.ts +6 -0
  1217. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewSniffingRule.ts +18 -0
  1218. package/rules/.source/quicktvui/src/x5webview/QtX5WebViewAPI.ts +2015 -0
  1219. package/rules/.source/quicktvui/tsconfig.json +34 -0
  1220. package/rules/.source/quicktvui/web-types.json +1 -0
  1221. package/rules/.source/quicktvui/yarn.lock +72 -0
  1222. package/rules/.source/web/audio/index.ts +9 -0
  1223. package/rules/.source/web/audio/src/audio.ts +34 -0
  1224. package/rules/.source/web/audio/src/audio.vue +146 -0
  1225. package/rules/.source/web/audio/src/instance.ts +3 -0
  1226. package/rules/.source/web/audio-service/index.ts +10 -0
  1227. package/rules/.source/web/audio-service/src/audio-service.ts +34 -0
  1228. package/rules/.source/web/audio-service/src/audio-service.vue +115 -0
  1229. package/rules/.source/web/audio-service/src/instance.ts +3 -0
  1230. package/rules/.source/web/base/index.ts +1 -0
  1231. package/rules/.source/web/base/src/base-types.ts +1 -0
  1232. package/rules/.source/web/component.ts +25 -0
  1233. package/rules/.source/web/docs/h.txt +6 -0
  1234. package/rules/.source/web/docs/video.txt +88 -0
  1235. package/rules/.source/web/h1/index.ts +9 -0
  1236. package/rules/.source/web/h1/src/h1.ts +9 -0
  1237. package/rules/.source/web/h1/src/h1.vue +30 -0
  1238. package/rules/.source/web/h1/src/instance.ts +3 -0
  1239. package/rules/.source/web/h2/index.ts +9 -0
  1240. package/rules/.source/web/h2/src/h2.ts +9 -0
  1241. package/rules/.source/web/h2/src/h2.vue +30 -0
  1242. package/rules/.source/web/h2/src/instance.ts +3 -0
  1243. package/rules/.source/web/h3/index.ts +9 -0
  1244. package/rules/.source/web/h3/src/h3.ts +9 -0
  1245. package/rules/.source/web/h3/src/h3.vue +30 -0
  1246. package/rules/.source/web/h3/src/instance.ts +3 -0
  1247. package/rules/.source/web/h4/index.ts +9 -0
  1248. package/rules/.source/web/h4/src/h4.ts +9 -0
  1249. package/rules/.source/web/h4/src/h4.vue +30 -0
  1250. package/rules/.source/web/h4/src/instance.ts +3 -0
  1251. package/rules/.source/web/h5/index.ts +9 -0
  1252. package/rules/.source/web/h5/src/h5.ts +9 -0
  1253. package/rules/.source/web/h5/src/h5.vue +30 -0
  1254. package/rules/.source/web/h5/src/instance.ts +3 -0
  1255. package/rules/.source/web/h6/index.ts +9 -0
  1256. package/rules/.source/web/h6/src/h6.ts +9 -0
  1257. package/rules/.source/web/h6/src/h6.vue +30 -0
  1258. package/rules/.source/web/h6/src/instance.ts +3 -0
  1259. package/rules/.source/web/index.ts +84 -0
  1260. package/rules/.source/web/package.json +24 -0
  1261. package/rules/.source/web/plugin.ts +3 -0
  1262. package/rules/.source/web/rollup.config.js +37 -0
  1263. package/rules/.source/web/shims-vue.d.ts +6 -0
  1264. package/rules/.source/web/source/index.ts +9 -0
  1265. package/rules/.source/web/source/src/instance.ts +3 -0
  1266. package/rules/.source/web/source/src/source.ts +17 -0
  1267. package/rules/.source/web/source/src/source.vue +19 -0
  1268. package/rules/.source/web/tsconfig.json +34 -0
  1269. package/rules/.source/web/utils/functions.ts +1 -0
  1270. package/rules/.source/web/utils/index.ts +3 -0
  1271. package/rules/.source/web/utils/make-installer.ts +16 -0
  1272. package/rules/.source/web/utils/objects.ts +4 -0
  1273. package/rules/.source/web/utils/types.ts +42 -0
  1274. package/rules/.source/web/utils/vue/index.ts +3 -0
  1275. package/rules/.source/web/utils/vue/install.ts +48 -0
  1276. package/rules/.source/web/utils/vue/props/index.ts +3 -0
  1277. package/rules/.source/web/utils/vue/props/runtime.ts +129 -0
  1278. package/rules/.source/web/utils/vue/props/types.ts +165 -0
  1279. package/rules/.source/web/utils/vue/props/util.ts +10 -0
  1280. package/rules/.source/web/utils/vue/typescript.ts +9 -0
  1281. package/rules/.source/web/video/index.ts +9 -0
  1282. package/rules/.source/web/video/src/instance.ts +3 -0
  1283. package/rules/.source/web/video/src/video.ts +34 -0
  1284. package/rules/.source/web/video/src/video.vue +171 -0
  1285. package/rules/.windsurfrules +28 -4
  1286. package/rules/AGENTS.md +28 -4
  1287. package/rules/CLAUDE.md +28 -3
  1288. package/rules/GEMINI.md +26 -3
@@ -0,0 +1,899 @@
1
+ ## [4.2.2](https://github.com/vuejs/router/compare/v4.2.1...v4.2.2) (2023-05-29)
2
+
3
+ This version contains no code changes.
4
+
5
+ ## [4.2.1](https://github.com/vuejs/router/compare/v4.2.0...v4.2.1) (2023-05-18)
6
+
7
+ ### Bug Fixes
8
+
9
+ - **types:** revert declare module vue ([b8d417a](https://github.com/vuejs/router/commit/b8d417a5b81c94aa5eb252782b07cb2b471d3a4e))
10
+
11
+ # [4.2.0](https://github.com/vuejs/router/compare/v4.1.6...v4.2.0) (2023-05-11)
12
+
13
+ ### Bug Fixes
14
+
15
+ - **location:** correctly parse url ending with . ([cc6e255](https://github.com/vuejs/router/commit/cc6e255b9c579ad975fbc9bd309e7b2f1f80bf82)), closes [#1620](https://github.com/vuejs/router/issues/1620)
16
+ - remove nullish params when resolving ([#1814](https://github.com/vuejs/router/issues/1814)) ([15e20cb](https://github.com/vuejs/router/commit/15e20cbb7baedb42e44e10d5d69ffb2a3124360f))
17
+ - **warn:** avoid redundant usage warn ([#1797](https://github.com/vuejs/router/issues/1797)) ([bbd80ad](https://github.com/vuejs/router/commit/bbd80adb627d4ee3f3e0ef7f7a1f99a2c5e0edf6))
18
+
19
+ ### Features
20
+
21
+ - allow inject within global navigation guards ([909c45b](https://github.com/vuejs/router/commit/909c45be199fbf48e55f3f7e681e93c259e82a14))
22
+ - **warn:** improve infinite redirect warning message ([2abecb7](https://github.com/vuejs/router/commit/2abecb71500e08f11e1686a57110afb71f625433))
23
+ - **warn:** infinite redirection up to 30 ([376edd3](https://github.com/vuejs/router/commit/376edd32c39af004ee3689f569f0da65418c9577)), closes [#1643](https://github.com/vuejs/router/issues/1643)
24
+
25
+ ## [4.1.6](https://github.com/vuejs/router/compare/v4.1.5...v4.1.6) (2022-10-24)
26
+
27
+ ### Features
28
+
29
+ - **matcher:** avoid empty records to be reached ([756f755](https://github.com/vuejs/router/commit/756f755731284f0f1899a2f8b62cb074b6f0f842))
30
+ - **types:** improve link and view slots ([#1544](https://github.com/vuejs/router/issues/1544)) ([4a0cc8b](https://github.com/vuejs/router/commit/4a0cc8b9c1e642cdf47cc007fa5bbebde70afc66))
31
+
32
+ ## [4.1.5](https://github.com/vuejs/router/compare/v4.1.4...v4.1.5) (2022-08-26)
33
+
34
+ ### Features
35
+
36
+ - **warn:** better wording ([4cc3093](https://github.com/vuejs/router/commit/4cc3093d0485cbd968ff096d1878bee40b7e47a9)), closes [#1530](https://github.com/vuejs/router/issues/1530)
37
+ - **warn:** warn against removed params ([fdbaf83](https://github.com/vuejs/router/commit/fdbaf83a5fa359343697ec26f4f4a54aac73b241)), closes [#1527](https://github.com/vuejs/router/issues/1527)
38
+
39
+ ## [4.1.4](https://github.com/vuejs/router/compare/v4.1.3...v4.1.4) (2022-08-22)
40
+
41
+ ## Important Note
42
+
43
+ Changes introduced by e8875705eb8b8a0756544174b85a1a3c2de55ff6.
44
+
45
+ If you were relying on passing `params` that were not defined as part of the `path`, eg: having a route defined as follows:
46
+
47
+ ```js
48
+ {
49
+ path: '/somewhere',
50
+ name: 'somewhere'
51
+ }
52
+ ```
53
+
54
+ And pushing with an _artificial_ param:
55
+
56
+ ```js
57
+ router.push({ name: 'somewhere', params: { oops: 'gets removed' } })
58
+ ```
59
+
60
+ This change will break your app. This behavior has worked in some scenarios but has been **advised against** for years as it's an anti-pattern in routing for many reasons, one of them being reloading the page lose the params. Fortunately, there are multiple alternatives to this anti-pattern:
61
+
62
+ - Putting the data in a store like [pinia](https://pinia.vuejs.org): this is relevant if the data is used across multiple pages
63
+ - Move the data to an actual _param_ by defining it on the route's `path` or pass it as `query` params: this is relevant if you have small pieces of data that can fit in the URL and should be preserved when reloading the page
64
+ - Pass the data as [`state` to save it to the History API state](https://router.vuejs.org/api/interfaces/routelocationoptions.html#state):
65
+
66
+ ```vue
67
+ <router-link :to="{ name: 'somewhere', state: { myData } }">...</router-link>
68
+ <button
69
+ @click="$router.push({ name: 'somewhere', state: { myData } })"
70
+ >...</button>
71
+ ```
72
+
73
+ Note `state` is subject to [History state limitations](https://developer.mozilla.org/en-US/docs/Web/API/History/state).
74
+
75
+ - Pass it as a new property to `to.meta` **during navigation guards**:
76
+
77
+ ```ts
78
+ router.beforeEach(async to => {
79
+ if (to.meta.shouldFetch) {
80
+ // name `data` whatever you want
81
+ to.meta.data = await fetchSomething()
82
+ }
83
+ })
84
+ ```
85
+
86
+ This is known an _transient state_ and since it's in a navigation guard, it will be preserved when reloading the page. [Check the documentation for more details](https://router.vuejs.org/guide/advanced/meta.html#typescript).
87
+
88
+ Fixing #1497, required getting rid of unused params and therefore will broke this long standing anti-pattern usage.
89
+
90
+ ### Bug Fixes
91
+
92
+ - **build:** production mjs import ([53f7206](https://github.com/vuejs/router/commit/53f720622aa273e33c05517fa917cdcfbfba52bc)), closes [#1516](https://github.com/vuejs/router/issues/1516)
93
+ - **build:** remove devtools in cjs production ([5b8983d](https://github.com/vuejs/router/commit/5b8983d04592c1420837c4533ee3b6cf6a07a314)), closes [#1524](https://github.com/vuejs/router/issues/1524)
94
+ - **matcher:** remove unused params ([e887570](https://github.com/vuejs/router/commit/e8875705eb8b8a0756544174b85a1a3c2de55ff6)), closes [#1497](https://github.com/vuejs/router/issues/1497)
95
+
96
+ ### Features
97
+
98
+ - pass state in guards and redirect ([add447b](https://github.com/vuejs/router/commit/add447b4595330750b05e9c1dda07cd5b2e6d41f)), closes [#1472](https://github.com/vuejs/router/issues/1472)
99
+
100
+ ## [4.1.3](https://github.com/vuejs/router/compare/v4.1.2...v4.1.3) (2022-07-27)
101
+
102
+ ### Bug Fixes
103
+
104
+ - allow overriding replace in guards ([f0f448a](https://github.com/vuejs/router/commit/f0f448abe0d9c64e35aec8c1906ef4bf7059577f)), closes [#1471](https://github.com/vuejs/router/issues/1471)
105
+ - avoid restore on cancelled pop navigations ([66491c1](https://github.com/vuejs/router/commit/66491c1fb56de924337ac35a0d235e662d138480))
106
+ - **matcher:** correctly resolve empty paths with optional params ([4d5182a](https://github.com/vuejs/router/commit/4d5182a3e8e74e1bb66b641c39391349be6d963b)), closes [#1475](https://github.com/vuejs/router/issues/1475)
107
+ - **types:** allow redirect with children ([9f0d999](https://github.com/vuejs/router/commit/9f0d9997b681b33b5ad2180399612fba14898372)), closes [#1476](https://github.com/vuejs/router/issues/1476)
108
+
109
+ ## [4.1.2](https://github.com/vuejs/router/compare/v4.1.1...v4.1.2) (2022-07-11)
110
+
111
+ ### Bug Fixes
112
+
113
+ - allow requiring in cjs context ([#1465](https://github.com/vuejs/router/issues/1465)) ([5f3febe](https://github.com/vuejs/router/commit/5f3febe86bf2ee656e64c430f102c19ec081abc7))
114
+ - force relative link in types exports ([8082035](https://github.com/vuejs/router/commit/8082035b097bcb1e50c659a802b127d26c56afa5))
115
+ - **types:** adds ESM export of types ([#1457](https://github.com/vuejs/router/issues/1457)) ([e82a89c](https://github.com/vuejs/router/commit/e82a89c19a367fd91348c0e0f2bbbdacb646d2aa))
116
+ - **types:** allow `symbol` type ([#1460](https://github.com/vuejs/router/issues/1460)) ([0f053db](https://github.com/vuejs/router/commit/0f053db4cbafdac8d5174e9ae841969274f916f1))
117
+
118
+ ### Features
119
+
120
+ - **types:** simplify props types ([2df87ef](https://github.com/vuejs/router/commit/2df87efda150027b5e455958f284db8f755caa1a))
121
+
122
+ ## [4.1.1](https://github.com/vuejs/router/compare/v4.1.0...v4.1.1) (2022-07-05)
123
+
124
+ ### Bug Fixes
125
+
126
+ - remove browser export ([64b1ccf](https://github.com/vuejs/router/commit/64b1ccf25166882af4dffc194bc5b796c472096a))
127
+ - **types:** allow simpler type check of route records ([#1453](https://github.com/vuejs/router/issues/1453)) ([e3078a4](https://github.com/vuejs/router/commit/e3078a4190c799ec4f01fa5c46d64c54c0e95034)), closes [#1452](https://github.com/vuejs/router/issues/1452)
128
+ - **types:** remove unnecessary readonly ([4bb989d](https://github.com/vuejs/router/commit/4bb989d36798243df1eb186c4ec01d9fd97d1f26))
129
+
130
+ # [4.1.0](https://github.com/vuejs/router/compare/v4.0.16...v4.1.0) (2022-07-04)
131
+
132
+ ### Bug Fixes
133
+
134
+ - correctly resolve hash including a search ([136bf21](https://github.com/vuejs/router/commit/136bf2146071d017702c3989f08d26dc5cbe5292)), closes [#1422](https://github.com/vuejs/router/issues/1422)
135
+ - discard params in path redirect ([8d12db4](https://github.com/vuejs/router/commit/8d12db4ffd2406dcc45777a68c6e601546dfce36)), closes [#1401](https://github.com/vuejs/router/issues/1401)
136
+ - resolve relative paths to / ([23e25e5](https://github.com/vuejs/router/commit/23e25e5b55592790805b98e21836bd4e57eb037c)), closes [#1410](https://github.com/vuejs/router/issues/1410)
137
+
138
+ ### Features
139
+
140
+ - **devtools:** add more options in devtools routes ([606f852](https://github.com/vuejs/router/commit/606f852dc9cca1b78e2161a14aa037817936d011)), closes [#1033](https://github.com/vuejs/router/issues/1033)
141
+ - **devtools:** warn against old devtools version ([8462551](https://github.com/vuejs/router/commit/8462551c6b9354772689e56d3718375f3211b0eb)), closes [#1338](https://github.com/vuejs/router/issues/1338)
142
+ - expose RouterView and RouterLink as GlobalComponents ([#1372](https://github.com/vuejs/router/issues/1372)) ([3b3e123](https://github.com/vuejs/router/commit/3b3e123f51d71bfae5d9cb99891e6d2f38f5ed26))
143
+ - loadRouteLocation() ([d352ee4](https://github.com/vuejs/router/commit/d352ee4d76f5e7d60aba03d275df9a35459bd300)), closes [#1048](https://github.com/vuejs/router/issues/1048)
144
+ - **router:** allow pausing listeners ([58460bc](https://github.com/vuejs/router/commit/58460bca1fca9f4c48f101b6c295ad9f42ca397a)), closes [#1270](https://github.com/vuejs/router/issues/1270)
145
+ - **types:** allow extending global types ([31aaf3b](https://github.com/vuejs/router/commit/31aaf3b82aae5c553a0bacd52d0be1c602e0ab30))
146
+ - **view:** handle empty components as pass through ([e07c469](https://github.com/vuejs/router/commit/e07c46938d0cc2ca2bc2b1d07fd543465121b60a))
147
+ - warn against named parent routes ([#1396](https://github.com/vuejs/router/issues/1396)) ([4dab4d0](https://github.com/vuejs/router/commit/4dab4d0e46315d2a5a2763ec2559dfafd843063f))
148
+
149
+ ## [4.0.16](https://github.com/vuejs/router/compare/v4.0.15...v4.0.16) (2022-06-09)
150
+
151
+ ### Bug Fixes
152
+
153
+ - **compat:** force router-link mode to Vue 3 ([#1426](https://github.com/vuejs/router/issues/1426)) ([0478512](https://github.com/vuejs/router/commit/047851299c4c438cc977f6d5d7da455eb69195db))
154
+ - **matcher:** leave catchall routes at the end ([77f0998](https://github.com/vuejs/router/commit/77f099835a237e5b996ff4af19d1488b49990c38)), closes [#1435](https://github.com/vuejs/router/issues/1435)
155
+
156
+ ## [4.0.15](https://github.com/vuejs/router/compare/v4.0.14...v4.0.15) (2022-05-04)
157
+
158
+ ### Bug Fixes
159
+
160
+ - **matcher:** keep trailing slash on empty optional params ([2f1e9b9](https://github.com/vuejs/router/commit/2f1e9b976d7c5c1ada38c57f276304688d31b7e4)), closes [#1357](https://github.com/vuejs/router/issues/1357)
161
+ - setup history listeners once ([faa8562](https://github.com/vuejs/router/commit/faa85624d37367c638fb9272a4130d8524143120)), closes [#1344](https://github.com/vuejs/router/issues/1344)
162
+ - **view:** handle @vue/compat automatically ([92becf6](https://github.com/vuejs/router/commit/92becf6dc6c4ef21985abb52887b4cec626f5c82)), closes [#1315](https://github.com/vuejs/router/issues/1315)
163
+
164
+ ## [4.0.14](https://github.com/vuejs/router/compare/v4.0.13...v4.0.14) (2022-03-10)
165
+
166
+ ### Features
167
+
168
+ - **devtools:** use api.now() ([06ac7bb](https://github.com/vuejs/router/commit/06ac7bbc4caaacaf8f054aa2ee164517b99b18ba))
169
+
170
+ ## [4.0.13](https://github.com/vuejs/router/compare/v4.0.12...v4.0.13) (2022-02-28)
171
+
172
+ ### Bug Fixes
173
+
174
+ - **matcher:** add child before parent when using `addRoute` ([8744bba](https://github.com/vuejs/router/commit/8744bbae7789e236e5308f939fb4b2d946a8ca6d))
175
+ - **ssr:** reject unfinished initial navigation ([509fc0d](https://github.com/vuejs/router/commit/509fc0d5c78b32cbd5ce0c86f716774ad6163cad)), closes [#1305](https://github.com/vuejs/router/issues/1305)
176
+
177
+ ## [4.0.12](https://github.com/vuejs/router/compare/v4.0.11...v4.0.12) (2021-10-14)
178
+
179
+ ### Bug Fixes
180
+
181
+ - **history:** ensure base is normalized in memory history ([#1112](https://github.com/vuejs/router/issues/1112)) ([198a5bd](https://github.com/vuejs/router/commit/198a5bda8354ea6c3121f5fbf92ed93390e70cfb))
182
+
183
+ ### Features
184
+
185
+ - **devtools:** display router view path ([3ce3834](https://github.com/vuejs/router/commit/3ce383402fbaa1539cdfe32cbdd48dfda5fbfa7b)), closes [#1119](https://github.com/vuejs/router/issues/1119)
186
+ - **warn:** improve message for onBeforeRoute\*() ([7d5230e](https://github.com/vuejs/router/commit/7d5230e556002b6ddd17c857ad43608590e9a7bd))
187
+
188
+ ## [4.0.11](https://github.com/vuejs/router/compare/v4.0.10...v4.0.11) (2021-08-09)
189
+
190
+ ### Bug Fixes
191
+
192
+ - **query:** empty object with custom stringify ([4dd2fbf](https://github.com/vuejs/router/commit/4dd2fbfeb486800a7d5fbc384eb567c3c6532f41))
193
+ - **router:** allow null | undefined for params ([ebca15a](https://github.com/vuejs/router/commit/ebca15a0140453c6671fdae7a9864badc650531e))
194
+ - **router:** invalidate ongoing navigation when unmounting ([d8fb7d0](https://github.com/vuejs/router/commit/d8fb7d0ab1694fe86edbd52668f84fb9bb9f4dcf))
195
+ - **types:** Support `undefined` in NavigationGuardNext ([#1059](https://github.com/vuejs/router/issues/1059)) ([6cce232](https://github.com/vuejs/router/commit/6cce232ba0dc5d89f6a53c1af674a8e0c6eb8790))
196
+
197
+ ## [4.0.10](https://github.com/vuejs/router/compare/v4.0.9...v4.0.10) (2021-06-21)
198
+
199
+ ### Features
200
+
201
+ - **devtools:** display components using `useLink()` ([aab8c04](https://github.com/vuejs/router/commit/aab8c0414af6784fc0250fb4b81be4186ff4cfec)), closes [#1003](https://github.com/vuejs/router/issues/1003)
202
+ - **link:** expose useLink on RouterLink as internal ([#1002](https://github.com/vuejs/router/issues/1002)) ([57b1468](https://github.com/vuejs/router/commit/57b1468645248068c76b809efd10f3f42762d52b))
203
+
204
+ ## [4.0.9](https://github.com/vuejs/router/compare/v4.0.8...v4.0.9) (2021-06-16)
205
+
206
+ ### Bug Fixes
207
+
208
+ - **guards:** propagate lazy loading rejections ([3d465cc](https://github.com/vuejs/router/commit/3d465cc128b2f5c109e71386760c7b99e3d71bce))
209
+ - **hash:** force navigation restore on manual navigation ([#921](https://github.com/vuejs/router/issues/921)) ([e08a0d0](https://github.com/vuejs/router/commit/e08a0d0b64d2798164895da430de7edbb66d7ead)), closes [#916](https://github.com/vuejs/router/issues/916)
210
+ - **link:** catch errors ([e7b2156](https://github.com/vuejs/router/commit/e7b2156c7436f18d1a08694f502eb00b10029f1c))
211
+ - **query:** allow arbitrary keys in queries ([a57b5f1](https://github.com/vuejs/router/commit/a57b5f179b8859776550f3b754f972fad8955566)), closes [#880](https://github.com/vuejs/router/issues/880)
212
+ - **warn:** drop unused params on string redirect ([bed24df](https://github.com/vuejs/router/commit/bed24dff90c19a0ee3e335dbe43ed9ddbfc74542)), closes [#951](https://github.com/vuejs/router/issues/951)
213
+
214
+ ### Features
215
+
216
+ - **devtools:** group navigation errors ([a776a84](https://github.com/vuejs/router/commit/a776a8402b7ae5bdc017409f26d4574bcee4858b))
217
+ - **errors:** add to and from to router.onError()` ([c76feab](https://github.com/vuejs/router/commit/c76feabf3703f06bff400d7aa84edede48329b82))
218
+ - **errors:** log errors when no error handlers ([46a354e](https://github.com/vuejs/router/commit/46a354ec5b9359bb1dcd3ac82716e898b3843ae4))
219
+
220
+ ## [4.0.8](https://github.com/vuejs/router/compare/v4.0.6...v4.0.8) (2021-05-13)
221
+
222
+ This release is a correct tag and doesn't contain any extra changes.
223
+
224
+ ## [4.0.7](https://github.com/vuejs/router/compare/v4.0.6...v4.0.7) (2021-05-13)
225
+
226
+ ### Bug Fixes
227
+
228
+ - **$route:** Make $route have an enumerable type ([#912](https://github.com/vuejs/router/issues/912)) ([d90520e](https://github.com/vuejs/router/commit/d90520eb36ca310f52b22caeb88fd8cb06dca04a))
229
+ - **devtools:** stabilize record id ([#897](https://github.com/vuejs/router/issues/897)) ([c6460f0](https://github.com/vuejs/router/commit/c6460f09aab3a834121dc58fc5880c81a65147ef))
230
+ - **history:** make properties enumerable ([8e6ebdf](https://github.com/vuejs/router/commit/8e6ebdf75adc1ab662e46835c5b7f078bc68a93b))
231
+ - **history:** proper destroy in memory history ([9d188aa](https://github.com/vuejs/router/commit/9d188aa165aeb12aa3771aaa56a269f5dad3ccf6))
232
+ - **query:** filter undefined values in arrays ([df25fb5](https://github.com/vuejs/router/commit/df25fb5c34ae4a1540d375ad078705719b56332b))
233
+ - **query:** prevent trailing & in query ([#935](https://github.com/vuejs/router/issues/935)) ([885bb06](https://github.com/vuejs/router/commit/885bb06bb590944f2e58176151f7b7a6acbc1b4e))
234
+ - do not allow invalid hazardous keys in query ([#880](https://github.com/vuejs/router/issues/880)) ([ecd52e0](https://github.com/vuejs/router/commit/ecd52e017ac30fa996d4796974371374f65640d1))
235
+
236
+ ## [4.0.6](https://github.com/vuejs/router/compare/v4.0.5...v4.0.6) (2021-04-06)
237
+
238
+ ### Bug Fixes
239
+
240
+ - **link:** let vue merge attrs ([4142871](https://github.com/vuejs/router/commit/4142871189dbb13e1ce2d6be8d82bd5aa27526a3)), closes [#846](https://github.com/vuejs/router/issues/846)
241
+ - **link:** use flush post in devtools watcher ([4108814](https://github.com/vuejs/router/commit/41088143c62244fe7b198e0907f4f6f98852df62)), closes [#845](https://github.com/vuejs/router/issues/845)
242
+
243
+ ### Features
244
+
245
+ - **types:** allow currentLocation param in resolve ([add6ce9](https://github.com/vuejs/router/commit/add6ce9677ffd2c636e215ffab5ddbdef22b0158))
246
+ - **warn:** throws if history is missing ([#844](https://github.com/vuejs/router/issues/844)) ([dd8bf6c](https://github.com/vuejs/router/commit/dd8bf6cf48db352cef72f419a14d1540818eb6ff))
247
+
248
+ ## [4.0.5](https://github.com/vuejs/router/compare/v4.0.4...v4.0.5) (2021-03-11)
249
+
250
+ ### Bug Fixes
251
+
252
+ - **guards:** avoid enter guards between aliases ([0048b9b](https://github.com/vuejs/router/commit/0048b9b1b0fd0a0652fdabb683309fc5c0d5dbe4))
253
+ - **guards:** ensure beforeRouteUpdate works with aliases ([#819](https://github.com/vuejs/router/issues/819)) ([45ecb20](https://github.com/vuejs/router/commit/45ecb205920be60c9b454dbb55cf4fe213bbc697)), closes [#805](https://github.com/vuejs/router/issues/805)
254
+ - **view:** correctly reuse instance guards ([#795](https://github.com/vuejs/router/issues/795)) ([d4fde59](https://github.com/vuejs/router/commit/d4fde599803a1be9d4823de0e406c9ce66143e2c))
255
+
256
+ ### Features
257
+
258
+ - **devtools:** group navigations ([d3b5dfb](https://github.com/vuejs/router/commit/d3b5dfb6d8a3da96ee93426dc4b5429581e8a739))
259
+
260
+ ## [4.0.4](https://github.com/vuejs/router/compare/v4.0.3...v4.0.4) (2021-02-19)
261
+
262
+ ### Bug Fixes
263
+
264
+ - **devtools:** id and label ([#742](https://github.com/vuejs/router/issues/742)) ([d034307](https://github.com/vuejs/router/commit/d034307444860fb834b0f5b5a1ddd0cce9d6d842))
265
+ - **guards:** vue-class-component call guards on first... ([#755](https://github.com/vuejs/router/issues/755)) ([06f942d](https://github.com/vuejs/router/commit/06f942d0fbe1c5c86dc7e17d38c00d595854bd4f))
266
+ - **matcher:** force leading slash with optional param in multi segments ([11c882f](https://github.com/vuejs/router/commit/11c882f8f3b56d2c87fc095c46eb8050fbbf61df))
267
+ - **warn:** should not warn missing optional params in aliases ([92f8901](https://github.com/vuejs/router/commit/92f8901f54775cb4b3d1f2415b6a2b3ff77eb440))
268
+
269
+ ### Features
270
+
271
+ - **types:** make meta type safe with unknown ([eef0472](https://github.com/vuejs/router/commit/eef0472e3589ed0a6df0528a7b96f1d7bf316843))
272
+
273
+ ## [4.0.3](https://github.com/vuejs/router/compare/v4.0.2...v4.0.3) (2021-01-11)
274
+
275
+ ### Bug Fixes
276
+
277
+ - **hash:** allow base tag different from base parameter ([85b1bff](https://github.com/vuejs/router/commit/85b1bff96fbb6e21cd556b688f6085b6fbfe993f)), closes [#685](https://github.com/vuejs/router/issues/685)
278
+ - **link:** use replace prop ([6edba5c](https://github.com/vuejs/router/commit/6edba5cf676bde94e5ebdb370a4146dc8f6b058e)), closes [#702](https://github.com/vuejs/router/issues/702)
279
+
280
+ ### Features
281
+
282
+ - **types:** expose RouteParamsRaw ([09bbc89](https://github.com/vuejs/router/commit/09bbc895cd422af8354664062b29131ae32472d7))
283
+ - **warn:** more specific warnings ([2cd8d86](https://github.com/vuejs/router/commit/2cd8d867beda6f7c54578d40934774547866e069))
284
+ - **warn:** warn defineAsyncComponent usage in routes ([#682](https://github.com/vuejs/router/issues/682)) ([9520d66](https://github.com/vuejs/router/commit/9520d66112c0f2922f4284cda1e75b316ddf3488))
285
+
286
+ ## [4.0.2](https://github.com/vuejs/router/compare/v4.0.1...v4.0.2) (2020-12-27)
287
+
288
+ ### Bug Fixes
289
+
290
+ - **matcher:** clear customRe after consuming buffer ([#680](https://github.com/vuejs/router/issues/680)) ([4c0b825](https://github.com/vuejs/router/commit/4c0b82507e1f949d55daffd06756615cd704e090)), closes [#679](https://github.com/vuejs/router/issues/679)
291
+ - **router:** allow replace to have query and hash ([6a8ccb6](https://github.com/vuejs/router/commit/6a8ccb6e3b80aef00dda7e73be2afb433d871a32)), closes [#668](https://github.com/vuejs/router/issues/668)
292
+ - **router:** do not restore history when ... ([db267be](https://github.com/vuejs/router/commit/db267be72bace7c99a0c65669ab04ce770e1532c)), closes [#662](https://github.com/vuejs/router/issues/662)
293
+ - **router-view:** disable inheritAttrs ([1e58574](https://github.com/vuejs/router/commit/1e58574e6175f591f7fb24bcfc6e11045e7b0148)), closes [#674](https://github.com/vuejs/router/issues/674)
294
+ - **types:** add missing exported types ([034c71c](https://github.com/vuejs/router/commit/034c71c72ca46d242daf53ae54ab67e6f7800f91))
295
+ - spread operator compatible ([a2f3e91](https://github.com/vuejs/router/commit/a2f3e91cb3e3ae61118d803ce938d6f4eea76116))
296
+
297
+ ## [4.0.1](https://github.com/vuejs/router/compare/v4.0.0...v4.0.1) (2020-12-07)
298
+
299
+ ### Bug Fixes
300
+
301
+ - **build:** rollback rollup plugin commonjs ([9486950](https://github.com/vuejs/router/commit/9486950f3399bda34ab2840b83fd123ac5ce7ce9))
302
+
303
+ # [4.0.0](https://github.com/vuejs/router/compare/v4.0.0-rc.6...v4.0.0) (2020-12-07)
304
+
305
+ ### Bug Fixes
306
+
307
+ - **router-view:** properly use route prop when nested ([b74051a](https://github.com/vuejs/router/commit/b74051a6bde7524d1a7cc6cc1daacb213987faa0))
308
+ - **router-view:** return one node when possible ([d18e500](https://github.com/vuejs/router/commit/d18e500da2ed017be30871628a5cc59324bec15c)), closes [#537](https://github.com/vuejs/router/issues/537)
309
+
310
+ ### Features
311
+
312
+ - expose routerViewLocationKey as internal ([f498646](https://github.com/vuejs/router/commit/f498646c3bc2ad480be7a3d0f11aa11710729911))
313
+
314
+ # [4.0.0-rc.6](https://github.com/vuejs/router/compare/v4.0.0-rc.5...v4.0.0-rc.6) (2020-11-30)
315
+
316
+ ### Bug Fixes
317
+
318
+ - **guards:** correctly reuse guards ([#616](https://github.com/vuejs/router/issues/616)) ([95d44c8](https://github.com/vuejs/router/commit/95d44c8ff2a961e052fd67b2160b87fb32d0ffb4)), closes [#614](https://github.com/vuejs/router/issues/614)
319
+
320
+ ### Features
321
+
322
+ - **devtools:** improve active + match in routes inspector ([9f59489](https://github.com/vuejs/router/commit/9f59489f04cedfca5ba55da019b2dc790e926fd7))
323
+ - **types:** expose `LocationQueryValueRaw` as internal ([dc02850](https://github.com/vuejs/router/commit/dc028500c3e931ed5fd6beedf58b5425f5115b52))
324
+
325
+ # [4.0.0-rc.5](https://github.com/vuejs/router/compare/v4.0.0-rc.4...v4.0.0-rc.5) (2020-11-21)
326
+
327
+ ### Features
328
+
329
+ - **scroll:** allow modifying scrollBehavior in options ([#602](https://github.com/vuejs/router/issues/602)) ([d6651f5](https://github.com/vuejs/router/commit/d6651f5f954c8ecaf1a77ec209d5aba06343e867))
330
+
331
+ # [4.0.0-rc.4](https://github.com/vuejs/router/compare/v4.0.0-rc.3...v4.0.0-rc.4) (2020-11-20)
332
+
333
+ ### Features
334
+
335
+ - expose symbols as internals ([ef62d96](https://github.com/vuejs/router/commit/ef62d9645c456f069699480ae3f2c3dd97b9d30d))
336
+
337
+ # [4.0.0-rc.3](https://github.com/vuejs/router/compare/v4.0.0-rc.2...v4.0.0-rc.3) (2020-11-14)
338
+
339
+ ### Bug Fixes
340
+
341
+ - trigger redirect on popstate ([#592](https://github.com/vuejs/router/issues/592)) ([18dbdc2](https://github.com/vuejs/router/commit/18dbdc2745cf7bd2516d4576a8d6a21de78516ec))
342
+ - **query:** encode space as + ([4d3dd5f](https://github.com/vuejs/router/commit/4d3dd5fd523cefc675aa7e61ed9b06b66e42b80c)), closes [#561](https://github.com/vuejs/router/issues/561)
343
+
344
+ # [4.0.0-rc.2](https://github.com/vuejs/router/compare/v4.0.0-rc.1...v4.0.0-rc.2) (2020-11-05)
345
+
346
+ ### Features
347
+
348
+ - expose injection symbols as internals ([0056aca](https://github.com/vuejs/router/commit/0056aca5b251df2a18bab79e18874a18e0204b4d))
349
+ - **devtools:** add devtools plugin ([894d50d](https://github.com/vuejs/router/commit/894d50d351a40df95a3227840f5485f7e8b90432))
350
+ - **devtools:** add more ([ee07302](https://github.com/vuejs/router/commit/ee0730254522d6162114968e4d62b93e8b6f7f93))
351
+ - **devtools:** better search ([5d68a29](https://github.com/vuejs/router/commit/5d68a29386f34363b38c4138fbeae01ec538285e))
352
+ - **devtools:** support multiple router instances ([2e5d0d4](https://github.com/vuejs/router/commit/2e5d0d4d726ee6329745f34ca463a74820c5aa29))
353
+
354
+ # [4.0.0-rc.1](https://github.com/vuejs/router/compare/v4.0.0-beta.13...v4.0.0-rc.1) (2020-10-23)
355
+
356
+ ### Features
357
+
358
+ - **warn:** improve warning for invalid components ([5985b65](https://github.com/vuejs/router/commit/5985b6560d40412d67311df10343ee6a119a0535)), closes [#517](https://github.com/vuejs/router/issues/517)
359
+
360
+ # [4.0.0-beta.13](https://github.com/vuejs/router/compare/v4.0.0-beta.12...v4.0.0-beta.13) (2020-10-02)
361
+
362
+ ### Bug Fixes
363
+
364
+ - **encoding:** decode hash in string location ([11acb3d](https://github.com/vuejs/router/commit/11acb3dea072592f00a23b912d39c3fcf72dc6c3))
365
+ - **encoding:** differentiate keys and values in query ([a967e42](https://github.com/vuejs/router/commit/a967e427ab3bc5c1e6236b01f484a87b74a92be1))
366
+ - **encoding:** keep decoded hash when resolving ([1a8ffc1](https://github.com/vuejs/router/commit/1a8ffc19b0d2bfc17daec4cb04b96d174c73dd9d))
367
+ - **hash:** only pushState the hash part ([2a14c19](https://github.com/vuejs/router/commit/2a14c19e4f0313996fd075a6821f85d30c5cad66)), closes [#495](https://github.com/vuejs/router/issues/495)
368
+
369
+ ### Features
370
+
371
+ - **warn:** help migrating catch all routes ([14e1eb9](https://github.com/vuejs/router/commit/14e1eb96485f74669f582a87f522d3b13b567c9c))
372
+ - print errors from lazy loading ([f6db91a](https://github.com/vuejs/router/commit/f6db91aaf496b85c80e74727575cc1c2b1d06282)), closes [#497](https://github.com/vuejs/router/issues/497)
373
+
374
+ # [4.0.0-beta.12](https://github.com/vuejs/router/compare/v4.0.0-beta.11...v4.0.0-beta.12) (2020-09-25)
375
+
376
+ ### Bug Fixes
377
+
378
+ - **types:** extend @vue/runtime-core module ([#473](https://github.com/vuejs/router/issues/473)) ([556cd4b](https://github.com/vuejs/router/commit/556cd4b4af3d7ac1aa1c66848f5ab1bc33d13153))
379
+
380
+ # [4.0.0-beta.11](https://github.com/vuejs/router/compare/v4.0.0-beta.10...v4.0.0-beta.11) (2020-09-20)
381
+
382
+ ### Bug Fixes
383
+
384
+ - use post flush in modal example ([2024281](https://github.com/vuejs/router/commit/2024281902d62454d9159c87d4288d691cd0bce8))
385
+ - **guards:** use post watcher for instances ([3234c59](https://github.com/vuejs/router/commit/3234c5924f39fd9497866bfd160407256dc91bfe))
386
+
387
+ # [4.0.0-beta.10](https://github.com/vuejs/router/compare/v4.0.0-beta.9...v4.0.0-beta.10) (2020-09-18)
388
+
389
+ ### Bug Fixes
390
+
391
+ - **history:** gracefully handle empty state ([cbcf2a9](https://github.com/vuejs/router/commit/cbcf2a95a2af001c8aea96f3c76c4c4ef139219f)), closes [#366](https://github.com/vuejs/router/issues/366)
392
+ - **types:** better type for navigate ([0384cb0](https://github.com/vuejs/router/commit/0384cb062d50f6be37512410b4c2d170896dc9cb))
393
+ - **types:** explicit types on navigate ([36d218c](https://github.com/vuejs/router/commit/36d218c15268d0d3d15d4ed3adc75c8cb09ed68b))
394
+ - **types:** fix types for redirect records ([a77f148](https://github.com/vuejs/router/commit/a77f1485323ef3b654077ecb227fd5a0373d3a2f))
395
+ - **warn:** correctly warn against unused next ([47cd7b9](https://github.com/vuejs/router/commit/47cd7b97bb7a3999178a26a4ca1af955178ea5d6))
396
+
397
+ ### Code Refactoring
398
+
399
+ - **types:** Rename ScrollBehavior to RouterScrollBehavior ([9fc0996](https://github.com/vuejs/router/commit/9fc09969db854bc0201454fbecd546637b76213a))
400
+
401
+ ### Features
402
+
403
+ - **router:** remove partial Promise from router.go ([6ed6eee](https://github.com/vuejs/router/commit/6ed6eee38b59eb0b6dec0bcb7d73e24203e20ba4))
404
+ - **types:** allow extending meta fields ([#407](https://github.com/vuejs/router/issues/407)) ([706e84f](https://github.com/vuejs/router/commit/706e84f0099a2a04485dfa98449fdc875442bb49))
405
+ - **warn:** point to scrollBehavior in message ([70ce7fe](https://github.com/vuejs/router/commit/70ce7feefac3fddd2a9641fcc2ccc66b4b108775))
406
+
407
+ ### BREAKING CHANGES
408
+
409
+ - **router:** The `router.go()` methods doesn't return anything
410
+ (like in Vue Router 3) anymore. The existing implementation was wrong as it
411
+ would resolve the promise for the following navigation if `router.go()`
412
+ was called with something that wasn't possible e.g. `router.go(-20)`
413
+ right after entering the application would not do anything. Even worse,
414
+ the promise returned by that call would resolve **after the next
415
+ navigation**. There is no proper native API to implement this
416
+ promise-based api properly, but one can write a version that should work
417
+ in most scenarios by setting up multiple hooks right before calling
418
+ `router.go()`:
419
+
420
+ ```js
421
+ export function go(delta) {
422
+ return new Promise((resolve, reject) => {
423
+ function popStateListener() {
424
+ clearTimeout(timeout)
425
+ }
426
+ window.addEventListener('popstate', popStateListener)
427
+
428
+ function clearHooks() {
429
+ removeAfterEach()
430
+ removeOnError()
431
+ window.removeEventListener('popstate', popStateListener)
432
+ }
433
+
434
+ // if the popstate event is not called, consider this a failure
435
+ const timeout = setTimeout(() => {
436
+ clearHooks()
437
+ reject(new Error('Failed to use router.go()'))
438
+ // It's unclear of what value would always work here
439
+ }, 10)
440
+
441
+ setImmediate
442
+
443
+ const removeAfterEach = router.afterEach((_to, _from, failure) => {
444
+ clearHooks()
445
+ resolve(failure)
446
+ })
447
+ const removeOnError = router.onError(err => {
448
+ clearHooks()
449
+ reject(err)
450
+ })
451
+
452
+ router.go(delta)
453
+ })
454
+ }
455
+ ```
456
+
457
+ - **types:** there is already an existing type named `ScrollBehavior`,
458
+ so we are renaming our type to avoid any confusions and allow the user
459
+ to use both types at the same type (which given what the existing
460
+ `ScrollBehavior` type is designed for, will likely happen).
461
+
462
+ # [4.0.0-beta.9](https://github.com/vuejs/router/compare/v4.0.0-beta.8...v4.0.0-beta.9) (2020-09-01)
463
+
464
+ Build related fixes
465
+
466
+ # [4.0.0-beta.8](https://github.com/vuejs/router/compare/v4.0.0-beta.7...v4.0.0-beta.8) (2020-09-01)
467
+
468
+ ### Bug Fixes
469
+
470
+ - **router-view:** reuse saved instances in different records ([#446](https://github.com/vuejs/router/issues/446)) ([6554171](https://github.com/vuejs/router/commit/65541718b0d5af665fd87dc0e48770cba832a2bb))
471
+ - **types:** add HTML attributes for JSX ([06f3f8f](https://github.com/vuejs/router/commit/06f3f8fd7c3a32da331802fe5d3d19ced17200a3)), closes [#435](https://github.com/vuejs/router/issues/435)
472
+ - **types:** allow components defined via defineComponent ([#421](https://github.com/vuejs/router/issues/421)) ([e47c84c](https://github.com/vuejs/router/commit/e47c84c74a97ae7bb9095ea75f98a6fa8a216532))
473
+
474
+ ### BREAKING CHANGES
475
+
476
+ - **router-view:** `onBeforeRouteLeave` and `onBeforeRouteUpdate` used to
477
+ have access to the component instance through `instance.proxy` but given
478
+ that:
479
+ 1. It has been marked as `internal` (https://github.com/vuejs/vue-next/pull/1849)
480
+ 2. When using `setup`, all variables are accessible on the scope (and
481
+ should be accessed that way because the code minimizes better)
482
+ It has been removed to prevent wrong usage and lighten Vue Router
483
+
484
+ # [4.0.0-beta.7](https://github.com/vuejs/router/compare/v4.0.0-beta.6...v4.0.0-beta.7) (2020-08-19)
485
+
486
+ ### Bug Fixes
487
+
488
+ - **encoding:** encode partial params ([eb04117](https://github.com/vuejs/router/commit/eb041175c02ab0dac093823574a85bbbbf2056eb))
489
+ - **matcher:** avoid trailing slash with optional params ([faf0aab](https://github.com/vuejs/router/commit/faf0aab6451848e5b4330e1d01033137a0c42a5a))
490
+ - **types:** append declare module ([50ad404](https://github.com/vuejs/router/commit/50ad404ae45086f051b01ac552e4a3ab98535633)), closes [#419](https://github.com/vuejs/router/issues/419)
491
+ - **vetur:** update tags/attributes definition ([#408](https://github.com/vuejs/router/issues/408)) ([df8b2b1](https://github.com/vuejs/router/commit/df8b2b140155d1e4ad5d00cd17d57ab2046a75e2))
492
+
493
+ ### Features
494
+
495
+ - **warn:** warn against infinite redirections ([e3dcc8d](https://github.com/vuejs/router/commit/e3dcc8d9477e17f9b92e22787b750edc4658b77a))
496
+
497
+ # [4.0.0-beta.6](https://github.com/vuejs/router/compare/v4.0.0-beta.5...v4.0.0-beta.6) (2020-08-05)
498
+
499
+ ### Bug Fixes
500
+
501
+ - **router:** stack overflow with redirect ([3594011](https://github.com/vuejs/router/commit/359401107078348f0410abbd36cffb3b8d4d8f85)), closes [#404](https://github.com/vuejs/router/issues/404)
502
+
503
+ ### Features
504
+
505
+ - **router-link:** add ariaCurrentValue prop ([23e6e9c](https://github.com/vuejs/router/commit/23e6e9c10b4f9cb9f074ebb4f56d2d99acac9097))
506
+ - add Vetur support ([1f1189f](https://github.com/vuejs/router/commit/1f1189fd23dc6ec318edd5d7e8f225b467d4d386)), closes [#381](https://github.com/vuejs/router/issues/381)
507
+
508
+ # [4.0.0-beta.5](https://github.com/vuejs/router/compare/v4.0.0-beta.4...v4.0.0-beta.5) (2020-08-03)
509
+
510
+ ### Features
511
+
512
+ - resolve simple relative links ([af1deaa](https://github.com/vuejs/router/commit/af1deaab5e0fd1597a7cf7ee9a6d01cac507970d))
513
+ - **url:** simple resolve relative location ([69c44db](https://github.com/vuejs/router/commit/69c44db3fd5363a833675b4b0ef14f97ac691af6))
514
+ - **warn:** warn if guard returns without calling next ([6e16bdd](https://github.com/vuejs/router/commit/6e16bdd6338ea3b7da1f8a0b3000ec880be840d6))
515
+
516
+ # [4.0.0-beta.4](https://github.com/vuejs/router/compare/v4.0.0-beta.3...v4.0.0-beta.4) (2020-07-25)
517
+
518
+ ### Bug Fixes
519
+
520
+ - **router-view:** render the slot when there is no match ([bae42d4](https://github.com/vuejs/router/commit/bae42d41c2240947e5b649e568cad274214c6346)), closes [#385](https://github.com/vuejs/router/issues/385)
521
+ - work on Edge by adding an argument to catch ([#383](https://github.com/vuejs/router/issues/383)) ([9580bea](https://github.com/vuejs/router/commit/9580bead1f03f1be95473e965daa1f1ee78921f3))
522
+
523
+ # [4.0.0-beta.3](https://github.com/vuejs/router/compare/v4.0.0-beta.2...v4.0.0-beta.3) (2020-07-21)
524
+
525
+ ### Bug Fixes
526
+
527
+ - **guards:** call beforeRouteEnter once per named view ([f2846ff](https://github.com/vuejs/router/commit/f2846ff2a0796e58a9b04593909f7a30b7b68bb1))
528
+ - **guards:** remove registered update guards after leaving ([41bffda](https://github.com/vuejs/router/commit/41bffda49c24d560cfe555aa88bcebbbd1d03d68))
529
+ - **guards:** skip update and leave guards of unmounted views ([f22e70a](https://github.com/vuejs/router/commit/f22e70a6d15ce9834c9eb841d9fe9547c5d21e24))
530
+ - **hash:** allow url to contain search params before hash ([ae8b289](https://github.com/vuejs/router/commit/ae8b28934b1c9a092174ebd6fb5aa10aefe1de44)), closes [#378](https://github.com/vuejs/router/issues/378)
531
+
532
+ ### Features
533
+
534
+ - **errors:** export isNavigationFailure ([28a9b25](https://github.com/vuejs/router/commit/28a9b25d976c325d3193cada8034a6e42297e665))
535
+ - **guards:** allow guards to return a value instead of calling next ([#343](https://github.com/vuejs/router/issues/343)) ([5cb209f](https://github.com/vuejs/router/commit/5cb209f3bb53ac0ddf62152f695da610facf4724))
536
+ - **guards:** wip context support in multi apps ([34d7390](https://github.com/vuejs/router/commit/34d7390b946644a128ab6fd03fd821a91fd4782c))
537
+
538
+ # [4.0.0-beta.2](https://github.com/vuejs/router/compare/v4.0.0-beta.1...v4.0.0-beta.2) (2020-07-07)
539
+
540
+ Fix build cache issues
541
+
542
+ # [4.0.0-beta.1](https://github.com/vuejs/router/compare/v4.0.0-alpha.14...v4.0.0-beta.1) (2020-07-03)
543
+
544
+ ### Bug Fixes
545
+
546
+ - **hash:** manual changes should trigger a navigation ([93891ab](https://github.com/vuejs/router/commit/93891abf02fc24d66c6f43926a28f275560fb714)), closes [#346](https://github.com/vuejs/router/issues/346)
547
+ - **router-link:** add missing prop custom in jsx ([c6274ae](https://github.com/vuejs/router/commit/c6274aeaf5ad4ba4f97c82aad3e1819ef20f5d69))
548
+ - **router-view:** preserve keep-alive route guard this context ([#344](https://github.com/vuejs/router/issues/344)) ([994c073](https://github.com/vuejs/router/commit/994c073fd90add30bf16b5268332277f8b082a74))
549
+ - **warn:** warn when RouterView is wrapped with transition ([e4b3fbe](https://github.com/vuejs/router/commit/e4b3fbe8b799b6621537afe365267a18eab9d3cd))
550
+
551
+ ### Code Refactoring
552
+
553
+ - **history:** simplify location as a string ([10a071c](https://github.com/vuejs/router/commit/10a071c85c62b6674929162aa36220bd8c167f27))
554
+ - **router:** remove history property ([aba3a3f](https://github.com/vuejs/router/commit/aba3a3f3a0d860f76d75938ae09616a329c7c13c))
555
+
556
+ ### Features
557
+
558
+ - **guards:** next callback beforeRouteEnter ([d9dad0b](https://github.com/vuejs/router/commit/d9dad0b9467fee9478406899043ee35f30cdf1fb))
559
+
560
+ ### BREAKING CHANGES
561
+
562
+ - **router:** the history property was marked as internal already. Since we
563
+ need to pass the history instance to the router, we always have access to it,
564
+ differently from Vue Router 3 where the history was instantiated internally.
565
+ The history API was also internal (it wasn't documented), so this change
566
+ shouldn't be a problem as people shouldn't be relying on `router.history` in
567
+ their apps. If you think this property is needed, please open an issue to
568
+ discuss the use case. Note it's already accessible as you have to create it:
569
+
570
+ ```js
571
+ export const history = createWebHistory()
572
+ export const router = createRouter({ history, routes: [] })
573
+ ```
574
+
575
+ - **history:** HistoryLocation is just a string now. It was pretty much an
576
+ internal property but it could be used inside `history.state`. It used to be an
577
+ object `{ fullPath: '/the-url' }`. And it's now just the `fullPath` property.
578
+
579
+ # [4.0.0-alpha.14](https://github.com/vuejs/router/compare/v4.0.0-alpha.13...v4.0.0-alpha.14) (2020-07-01)
580
+
581
+ ### Bug Fixes
582
+
583
+ - **hash:** use relative links in hash mode ([32c9590](https://github.com/vuejs/router/commit/32c9590db89e69c8f7c61905a5eaf19df2054e42)), closes [#342](https://github.com/vuejs/router/issues/342)
584
+ - **query:** do not normalize query with custom stringifyQuery ([ea65066](https://github.com/vuejs/router/commit/ea65066e8511d8320ad8de37b32ea9a8028fa9d5)), closes [#328](https://github.com/vuejs/router/issues/328)
585
+ - **query:** isSameRouteLocation compares queries by string ([6e1f0ea](https://github.com/vuejs/router/commit/6e1f0eacf60c7e3d465dd0af68f79dc649269b17)), closes [#328](https://github.com/vuejs/router/issues/328)
586
+
587
+ ### Features
588
+
589
+ - **redirect:** allow redirect on routes witch children ([e57b875](https://github.com/vuejs/router/commit/e57b875dd9d375778a847627434803f4ec79a818))
590
+ - **router:** support multiple apps at the same time ([565ec9d](https://github.com/vuejs/router/commit/565ec9d489b4aad347ee466b781ca85aff76bf2d))
591
+
592
+ # [4.0.0-alpha.13](https://github.com/vuejs/router/compare/v4.0.0-alpha.12...v4.0.0-alpha.13) (2020-06-18)
593
+
594
+ ### Bug Fixes
595
+
596
+ - allow arbitrary selectors starting with # ([14b859d](https://github.com/vuejs/router/commit/14b859dfa6fa5ccefe42c6f834ddd24dd9921a1b))
597
+ - use assign to align with Vue browser support ([#311](https://github.com/vuejs/router/issues/311)) ([f80b670](https://github.com/vuejs/router/commit/f80b670d4dac30323221fcb2f93137ffd874c51b)), closes [#304](https://github.com/vuejs/router/issues/304)
598
+ - **hash:** use location.pathname ([0078147](https://github.com/vuejs/router/commit/007814745dd98bb8cfa53f44d5c308193b2fbb60)), closes [#261](https://github.com/vuejs/router/issues/261)
599
+ - **matcher:** correct check when removing existing records on add ([2c267f5](https://github.com/vuejs/router/commit/2c267f5aceec899c84514571e4fa75dc61441ed4))
600
+ - **matcher:** override records by name when adding ([07100fc](https://github.com/vuejs/router/commit/07100fc1386fb636da3eb1c8196a36f6538eb91f))
601
+ - **scroll:** avoid reusing scroll position ([dfc1fb3](https://github.com/vuejs/router/commit/dfc1fb34a761138a3390ccd5a8a042863018222a))
602
+
603
+ ### Features
604
+
605
+ - **scroll:** allow passing behavior option ([12e9209](https://github.com/vuejs/router/commit/12e92094df46129ddf75d0fa8e3d9816644200de))
606
+ - **scroll:** replace selector with el ([ab8a01c](https://github.com/vuejs/router/commit/ab8a01c0a6eda1bafc293b39cb6c77ed10fb359e))
607
+ - **warn:** warn if component is a promise ([4b2bfa8](https://github.com/vuejs/router/commit/4b2bfa80cd3440441d71e690ca85d0532a4b8428))
608
+ - **warn:** warn when routes are not found ([#279](https://github.com/vuejs/router/issues/279)) ([d125356](https://github.com/vuejs/router/commit/d125356e0f67f906f5f602f0b485f9e1e4f5bf51))
609
+ - allow props for named views ([dbe2344](https://github.com/vuejs/router/commit/dbe2344af5fed39aa4aa8fbfe48b195580d9538b))
610
+ - **warn:** warn multiple params with same name ([5c8cd6e](https://github.com/vuejs/router/commit/5c8cd6e8ae1223e9871252cc617b19424f01c5c2))
611
+
612
+ ### BREAKING CHANGES
613
+
614
+ - **scroll:** this change follows the RFC at
615
+ https://github.com/vuejs/rfcs/pull/176:
616
+
617
+ * `selector` is renamed into `el`
618
+ * `el` also accepts an `Element`
619
+ * `left` and `top` are passed along `el` instead of inside an object
620
+ passed as `offset`
621
+
622
+ - **scroll:** `scrollBehavior` doesn't accept an object with `x` and `y`
623
+ coordinates anymore. Instead it accepts an object like
624
+ [`ScrollToOptions`](https://developer.mozilla.org/en-US/docs/Web/API/ScrollToOptions)
625
+ with `left` and `top` properties. You can now also pass the
626
+ [`behavior`](https://developer.mozilla.org/en-US/docs/Web/API/ScrollToOptions/behavior)
627
+ property to enable smooth scrolling in most browsers.
628
+ - It is now necessary to escape id selectors like
629
+ explained at https://mathiasbynens.be/notes/css-escapes. This was
630
+ necessary to allow selectors like `#container > child`.
631
+
632
+ # [4.0.0-alpha.12](https://github.com/vuejs/router/compare/v4.0.0-alpha.11...v4.0.0-alpha.12) (2020-05-19)
633
+
634
+ ### Bug Fixes
635
+
636
+ - **hash:** allow base with non trailing slash ([f5cc050](https://github.com/vuejs/router/commit/f5cc0505f9e0cc30ff94e362ceb24d300afd684d)), closes [#247](https://github.com/vuejs/router/issues/247)
637
+ - prevent error on initial navigation to //invalid ([e72e4ba](https://github.com/vuejs/router/commit/e72e4ba1cc7b80aa44d3958db259d9e3a351d0fd))
638
+
639
+ ### Features
640
+
641
+ - **warn:** warn multiple leading slashes ([87c5e53](https://github.com/vuejs/router/commit/87c5e53b43c218c83f9db986ac7538d74525ea5b))
642
+
643
+ ### BREAKING CHANGES
644
+
645
+ - **hash:** When providing a base for hash histories, it is now necessary
646
+ to include a trailing slash to create a url that starts with `/#/`, otherwise it
647
+ will result in a url starting with `#/`. This allows users to use the routing
648
+ system directly in simple files without needing to configure a server at all:
649
+ - `https://example.com/file.html` + `base: 'file.html` will produce a final
650
+ url of `https://example.com/file.html#/`
651
+ - `https://example.com/folder` + `base: 'folder` will produce a final url of
652
+ `https://example.com/folder#/`
653
+ - `https://example.com/folder` + `base: 'folder/` will produce a final url of
654
+ `https://example.com/folder/#/`
655
+
656
+ # [4.0.0-alpha.11](https://github.com/vuejs/router/compare/v4.0.0-alpha.10...v4.0.0-alpha.11) (2020-05-12)
657
+
658
+ ### Bug Fixes
659
+
660
+ - **scroll:** change scrollRestoration if scrollBehavior is provided ([5cf2e61](https://github.com/vuejs/router/commit/5cf2e611de2477e92699121573cb162ff98a7b8d))
661
+ - match base in a non-sensitive way ([7087bbc](https://github.com/vuejs/router/commit/7087bbc9c479f2955381d8a823a3ef8f9eed7b5a))
662
+ - **router:** allow multiple router instance ([24d3d49](https://github.com/vuejs/router/commit/24d3d49babcdea751f4c4e7e9a87625f8744a122))
663
+ - **router:** unique first navigation with multi app ([33172af](https://github.com/vuejs/router/commit/33172aff03b7c302699753a8abe5750094bdde26))
664
+
665
+ ### Features
666
+
667
+ - **types:** export NavigationGuardNext ([#229](https://github.com/vuejs/router/issues/229)) ([888bf4d](https://github.com/vuejs/router/commit/888bf4df33d718d74e5835e99d0f1ac4ce3a0ccf))
668
+ - explicit injection symbols in dev mode ([#228](https://github.com/vuejs/router/issues/228)) ([fab88ee](https://github.com/vuejs/router/commit/fab88ee261c49b739545918deab583757aab561e))
669
+ - support jsx and tsx for RouterLink and RouterView ([1d3dce3](https://github.com/vuejs/router/commit/1d3dce3106af700fc95a403f1c229644fe8d85b8)), closes [#226](https://github.com/vuejs/router/issues/226)
670
+ - **router:** allow functional components for routes ([096d864](https://github.com/vuejs/router/commit/096d86498e954345c6bd4d8e82fe54c37d3f869b))
671
+ - **scroll:** scroll to the same location like regular links ([5f22d4f](https://github.com/vuejs/router/commit/5f22d4fa39171906802cc20ada00ec57bdfce880))
672
+ - **warn:** warn if next was called multiple times ([dce2612](https://github.com/vuejs/router/commit/dce2612e495b1d5789cd993a54d24599967a8cf4))
673
+
674
+ # [4.0.0-alpha.10](https://github.com/vuejs/router/compare/v4.0.0-alpha.9...v4.0.0-alpha.10) (2020-05-05)
675
+
676
+ ### Bug Fixes
677
+
678
+ - **scroll:** do not restore on push ([3f79195](https://github.com/vuejs/router/commit/3f7919585117048c379b6dee8af1cc1de5996af0))
679
+
680
+ ### Features
681
+
682
+ - **warn:** warn invalid hash ([fcf2365](https://github.com/vuejs/router/commit/fcf2365556dffa87153c13d31a684070f123ea0e))
683
+ - allow numbers as params ([ef0920a](https://github.com/vuejs/router/commit/ef0920a86574bca10836214015c2317ed11a29b7)), closes [#206](https://github.com/vuejs/router/issues/206)
684
+ - **router:** allow global router classes ([388735b](https://github.com/vuejs/router/commit/388735bc752852e2a9a24f971207fd81fae45fcf))
685
+ - **router:** go, back and forward can be awaited ([eb87757](https://github.com/vuejs/router/commit/eb87757ed189958c8c9955a10ece9306fa99f6d8))
686
+ - **warn:** detect missing param in nested absolute paths ([f5b5949](https://github.com/vuejs/router/commit/f5b59493a4e27bf07bd5a0d2e109bc6750f6f1a9))
687
+ - **warn:** warn for invalid path+params and redirect ([91f4de9](https://github.com/vuejs/router/commit/91f4de9aab99231fb39ed4cc5b4052979afda216))
688
+ - **warn:** warn missing params in alias ([186e275](https://github.com/vuejs/router/commit/186e2755ec0488ff80bdde11a53b0ddc9ee9fc03))
689
+ - **warn:** warn when params are provided alongside path ([8a8ddf1](https://github.com/vuejs/router/commit/8a8ddf1a5e5f2d29733da4fe25e4ddb447b0df30))
690
+
691
+ # [4.0.0-alpha.9](https://github.com/vuejs/router/compare/v4.0.0-alpha.8...v4.0.0-alpha.9) (2020-04-29)
692
+
693
+ - Removed sourcemaps from build
694
+
695
+ # [4.0.0-alpha.8](https://github.com/vuejs/router/compare/v4.0.0-alpha.7...v4.0.0-alpha.8) (2020-04-29)
696
+
697
+ ### Bug Fixes
698
+
699
+ - default matcher options ([cea397b](https://github.com/vuejs/router/commit/cea397b7402cd27ff06013f846bf35966aff6952))
700
+ - **guards:** preserve navigation options when redirecting ([9effd81](https://github.com/vuejs/router/commit/9effd816c51b58cb1103d878799aed6992f78454))
701
+ - **html5:** correctly preserve current history.state ([0586394](https://github.com/vuejs/router/commit/05863948ee86e0f1c9c9ec31c02ad7af17923743)), closes [#180](https://github.com/vuejs/router/issues/180)
702
+ - **link:** make alias of empty child active ([cfe5993](https://github.com/vuejs/router/commit/cfe5993332cc7dc94c5de2f2edb7f2e15c9b7049))
703
+ - encode hash ([85bb7e1](https://github.com/vuejs/router/commit/85bb7e11b1a4326f5048a823ae7d49654b308cdd))
704
+ - **link:** preserve the alias path ([fffa585](https://github.com/vuejs/router/commit/fffa58585ac89e9fb6b648e61e499a9ee3a9e217))
705
+ - **matcher:** merge params ([d8a6b25](https://github.com/vuejs/router/commit/d8a6b2591ac2e37388fb7f4ce8c70922389cedb5)), closes [#189](https://github.com/vuejs/router/issues/189)
706
+ - **router:** make redirect relative to target location ([e878e91](https://github.com/vuejs/router/commit/e878e91af217fde6d2e934857ce895e7abbd5920))
707
+ - **router:** preserve navigation options with redirects ([9732758](https://github.com/vuejs/router/commit/9732758d076eef252f2940ffa44e44fa94e794a0))
708
+ - **view:** render slot with no match ([5873296](https://github.com/vuejs/router/commit/5873296ec96df15f13b0cf02b685ebb36f4e0a41))
709
+
710
+ ### Code Refactoring
711
+
712
+ - Link and View renamed to RouterLink and RouterView ([030bbc4](https://github.com/vuejs/router/commit/030bbc4c3f68d29a9e9d23ee01603394427427a3))
713
+
714
+ ### Features
715
+
716
+ - **link:** make empty child active with adjacent children ([4b813b1](https://github.com/vuejs/router/commit/4b813b1ec387f8be9506f1400b7e83fd5794c7af))
717
+ - **router:** add global pathOptions ([7383564](https://github.com/vuejs/router/commit/73835649f450ffc378b906c72aa5ae8a6a03feb2))
718
+ - add navigation duplicated failure ([9570416](https://github.com/vuejs/router/commit/9570416c75f904a172af07bcf10956fe3385ec13))
719
+ - add onBeforeRouteUpdate ([96c9503](https://github.com/vuejs/router/commit/96c95035653a52f94781808fccbf262a02a3cd79))
720
+ - resolve relative paths ([eae833e](https://github.com/vuejs/router/commit/eae833e0fc1c8e549f2b4cd47b3dcb90484d17d5))
721
+ - **router:** add back,forward,go ([5e927b5](https://github.com/vuejs/router/commit/5e927b5ab8a09c2941edbec7c6af145323c6d3eb))
722
+ - **router:** add beforeResolve ([9697134](https://github.com/vuejs/router/commit/9697134c05f0f4c6fde48a773880946074e95666))
723
+ - **scroll:** handle scroll on reload ([617f131](https://github.com/vuejs/router/commit/617f131d2473952072f345000c3d43556dfe9761))
724
+
725
+ ### Performance Improvements
726
+
727
+ - use index access for strings ([971fea4](https://github.com/vuejs/router/commit/971fea415fcce84ce86d8ace67b65115af3b7ac2))
728
+
729
+ ### BREAKING CHANGES
730
+
731
+ - exported components Link and View have been renamed to be
732
+ include the _Router_ prefix and to have the same export name as their component
733
+ name
734
+
735
+ # [4.0.0-alpha.7](https://github.com/vuejs/router/compare/v4.0.0-alpha.6...v4.0.0-alpha.7) (2020-04-17)
736
+
737
+ ### Features
738
+
739
+ - add `$route` and `$router` types ([a4f80aa](https://github.com/vuejs/router/commit/a4f80aaaafb1bf29a3f4d992e8c6a2bec0f70d62))
740
+ - add guards types ([c7ccd5a](https://github.com/vuejs/router/commit/c7ccd5a0e67d88467fc661474308fbdf55b947ec))
741
+ - refactor navigation to comply with vuejs/rfcs[#150](https://github.com/vuejs/router/issues/150) ([290c3be](https://github.com/vuejs/router/commit/290c3be1f6cb476016f23b77d6fc49987dd84751))
742
+
743
+ ### BREAKING CHANGES
744
+
745
+ - This follows the RFC at https://github.com/vuejs/rfcs/pull/150
746
+ Summary: `router.afterEach` and `router.onError` are now the global equivalent of
747
+ `router.push`/`router.replace` as well as navigation through the interface
748
+ (`history.go()`). A navigation only rejects if there was an unexpected error.
749
+ A navigation failure will still resolve the promise returned by `router.push`
750
+ and be exposed as the resolved value.
751
+
752
+ # [4.0.0-alpha.6](https://github.com/vuejs/router/compare/v4.0.0-alpha.5...v4.0.0-alpha.6) (2020-04-17)
753
+
754
+ ### Bug Fixes
755
+
756
+ - **history:** allow base with / and base tag ([d7c71b5](https://github.com/vuejs/router/commit/d7c71b55ee4a11ecaf3a72f25eb126d118829d3f)), closes [#164](https://github.com/vuejs/router/issues/164)
757
+ - **history:** allow hash history with no origin ([760d216](https://github.com/vuejs/router/commit/760d21672051b6338d40f2cdfdac80dc16209e13)), closes [#163](https://github.com/vuejs/router/issues/163)
758
+ - **scroll:** only apply on browser ([cf53192](https://github.com/vuejs/router/commit/cf53192b77d619b1e43c8decda76d4083d9c17ea))
759
+ - revert history navigation if navigation is cancelled ([d8a0d11](https://github.com/vuejs/router/commit/d8a0d117dbede9b177f06c8ebab201d12dfca0c0))
760
+
761
+ ### Code Refactoring
762
+
763
+ - **router:** merge createHref into resolve ([66b2db9](https://github.com/vuejs/router/commit/66b2db95b6b73433dc3abbe6c6f7f07959429d78))
764
+
765
+ ### Features
766
+
767
+ - add this.\$route ([92dc18d](https://github.com/vuejs/router/commit/92dc18d448ffeb57d9b3f3b303b8ec2991175eb5))
768
+ - add this.\$router ([1807f30](https://github.com/vuejs/router/commit/1807f301053ac93db1e50991f67dcf532990d5c9))
769
+ - **scroll:** handle scroll on popstate ([181efe9](https://github.com/vuejs/router/commit/181efe9f29a200b03e2d8f4759e7854047936824))
770
+ - merge meta fields ([72a052f](https://github.com/vuejs/router/commit/72a052fdf4a198e3ac72779f1b7b8b80d0ac018d))
771
+ - **guards:** support errors in navigation guards ([23ed08d](https://github.com/vuejs/router/commit/23ed08d983f308b7b118f2a235e58d29bf1994ec))
772
+ - **router:** hasRoute ([ca02444](https://github.com/vuejs/router/commit/ca02444c91c8f6b21caf6a71dee5d0f2e3f7e51b))
773
+
774
+ ### Reverts
775
+
776
+ - Revert "test: only call browser.end on the last test" ([d3221f1](https://github.com/vuejs/router/commit/d3221f16978186b09531f7ea0cb5b92b20147181))
777
+
778
+ ### BREAKING CHANGES
779
+
780
+ - **router:** createHref is removed from the router. Instead, resolve
781
+ returns a location object with the corresponding `href` property
782
+
783
+ # [4.0.0-alpha.5](https://github.com/vuejs/router/compare/v4.0.0-alpha.4...v4.0.0-alpha.5) (2020-04-08)
784
+
785
+ ### Bug Fixes
786
+
787
+ - **link:** not active when matched is empty ([acd644d](https://github.com/vuejs/router/commit/acd644db70793da7719b321b2dcdd537ec358f9c))
788
+ - check query and hash when navigating ([3862ad9](https://github.com/vuejs/router/commit/3862ad924bbc734a835577c3a3c71bc3550db29c))
789
+ - ignore order of keys in query and params ([643bd15](https://github.com/vuejs/router/commit/643bd15ceaf9d6314434b15b169171b599b58e1c))
790
+ - skip initial guards with static redirect ([c76bb93](https://github.com/vuejs/router/commit/c76bb938a2c9a1790be98b6ce44ccd153a342141))
791
+ - **types:** add missing exported types ([ec241f7](https://github.com/vuejs/router/commit/ec241f7a93107815d9ffd25d36cbf00b47cb7318)), closes [#147](https://github.com/vuejs/router/issues/147)
792
+
793
+ ### Features
794
+
795
+ - allow symbols as route record name ([f42ab3f](https://github.com/vuejs/router/commit/f42ab3fecfaecddcef0ccf8bb0f7f44ca24d6160))
796
+ - **link:** activeClass and exactActiveClass props ([d53b383](https://github.com/vuejs/router/commit/d53b3832b50131cb83b8c567015780e60addb6c8))
797
+ - **link:** allow `custom` prop ([874510b](https://github.com/vuejs/router/commit/874510be69c3b068970e8a90ae251cf487d6acf9))
798
+
799
+ ### BREAKING CHANGES
800
+
801
+ - Renamed types by removing suffix Normalized and using Raw instead
802
+ - `RouteLocation` -> `RouteLocationRaw`
803
+ - `RouteLocationNormalized` -> `RouteLocation`
804
+ - `RouteLocationNormalized` is now a location that can be displayed (not a static redirect)
805
+ - `RouteLocationNormalizedResolved` -> `RouteLocationNormalizedLoaded`
806
+ - `RouteRecord` -> `RouteRecordRaw`
807
+ - `RouteRecordNormalized` -> `RouteRecord`
808
+ - `RouteRecordNormalized` is now a record that is not a static redirect
809
+
810
+ # [4.0.0-alpha.4](https://github.com/vuejs/router/compare/v4.0.0-alpha.3...v4.0.0-alpha.4) (2020-03-28)
811
+
812
+ ### Bug Fixes
813
+
814
+ - **history:** use current history state when replacing ([5d80209](https://github.com/vuejs/router/commit/5d802094923851102557bfb2583835cc135e16b8))
815
+ - export more types ([1583d48](https://github.com/vuejs/router/commit/1583d480fff2da1caa35c2dd7892c36b57dad734)), closes [#137](https://github.com/vuejs/router/issues/137)
816
+ - **guards:** free instances only if navigation is confirmed ([d0514e1](https://github.com/vuejs/router/commit/d0514e192839c54c4181f80286602e9d37459f4d))
817
+ - **hash:** fix base position for hash routing ([ba40b8f](https://github.com/vuejs/router/commit/ba40b8f0cf2d6d85533e0e7e7daaadd088298f19))
818
+ - initial location with base ([d05208b](https://github.com/vuejs/router/commit/d05208b6c9457931bda8205ba6d9f1d5e39a54c7))
819
+ - **router:** prevent duplicated navigation on aliases ([e825586](https://github.com/vuejs/router/commit/e82558684c0b6b688065032df65604b2c245d395))
820
+
821
+ ### Features
822
+
823
+ - allow passing state to history ([ac1c96f](https://github.com/vuejs/router/commit/ac1c96f176dcad8aac03a86a1dccfbaab4b66520))
824
+ - improve route access ([baf266c](https://github.com/vuejs/router/commit/baf266cd1bd6cafd32d244f185e340bee10af32c))
825
+ - **history:** expose state on html5 ([3f83607](https://github.com/vuejs/router/commit/3f83607c8798960f49cdb5eed8fdfe8adc52fabf))
826
+ - **matcher:** remove aliases alongside the original record ([26b71b2](https://github.com/vuejs/router/commit/26b71b285b743ab8af94b9297fa7037872ae0de6))
827
+ - **router:** support custom parseQuery and stringifyQuery ([#136](https://github.com/vuejs/router/issues/136)) ([5dce7bc](https://github.com/vuejs/router/commit/5dce7bcbfbb4a80bd1edbe061a250fa646f2afd7))
828
+ - **view:** add props option as boolean ([7fe1e7d](https://github.com/vuejs/router/commit/7fe1e7dc7406bddd0924bf7f01709b9113582472))
829
+ - **view:** allow passing props as a function ([494fc5e](https://github.com/vuejs/router/commit/494fc5efb6add93c68ed467bb9a8dc7b3b149fff))
830
+ - **view:** useView to customize router-view ([06b0c34](https://github.com/vuejs/router/commit/06b0c34ee5018aa9d76c0bfcd32ff2c12cd94277))
831
+ - allow true in `next` ([d76c6aa](https://github.com/vuejs/router/commit/d76c6aae115110e2d9c4c072748bd9403080c8bd))
832
+ - invoke guards with the right context ([7053413](https://github.com/vuejs/router/commit/7053413c93bc715d5c2179378367dc12f60a118d))
833
+ - lazy loading ([6ecdc70](https://github.com/vuejs/router/commit/6ecdc70baa6361b8614368196ff2652560b6a0ba))
834
+ - **view:** allow props as object in record ([fd4dc06](https://github.com/vuejs/router/commit/fd4dc0630bdf856f972ed6e9020b70a70ac582b4))
835
+
836
+ ### BREAKING CHANGES
837
+
838
+ - `useRoute` now retrieves a reactive RouteLocationNormalized instead of a Ref<RouteLocationNormalized>.
839
+ This means there is no need to use `.value` when accessing the route. You still need to wrap it with `toRefs` if you want to expose parts of the route:
840
+ ```js
841
+ setup () {
842
+ return { params: toRefs(useRoute()).params }
843
+ }
844
+ ```
845
+
846
+ # [4.0.0-alpha.3](https://github.com/vuejs/router/compare/v4.0.0-alpha.2...v4.0.0-alpha.3) (2020-03-14)
847
+
848
+ ### Bug Fixes
849
+
850
+ - add missing type definitions
851
+
852
+ # [4.0.0-alpha.2](https://github.com/vuejs/router/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2020-03-14)
853
+
854
+ ### Bug Fixes
855
+
856
+ - **history:** correct url when replacing current location ([704b45e](https://github.com/vuejs/router/commit/704b45ea52b10099a765c93ced37d03393a72d17))
857
+ - **link:** allow attrs to override behavior ([4cae9db](https://github.com/vuejs/router/commit/4cae9dbede993a79577691e1df4444a8fe5ca3a0))
858
+ - **link:** allow custom classes ([#134](https://github.com/vuejs/router/issues/134)) ([392c295](https://github.com/vuejs/router/commit/392c295552e5b7dbe1d494c1c3168571e3339153)), closes [#133](https://github.com/vuejs/router/issues/133)
859
+ - **link:** navigate to the alias path ([3284110](https://github.com/vuejs/router/commit/328411079e1aa8a5dc3903ae76a55d634946d9fd))
860
+ - **link:** non active repeatable params ([0ccbc1e](https://github.com/vuejs/router/commit/0ccbc1e9af07a30a149ab14c007f63cbc35a8126))
861
+
862
+ ### Features
863
+
864
+ - add aliasOf to normalized records ([d9f3174](https://github.com/vuejs/router/commit/d9f31748802c39572254691108b0667cfd40e911))
865
+ - handle active/exact in Link ([6f49dce](https://github.com/vuejs/router/commit/6f49dcea35a63785ae08d08787913ab8391cae67))
866
+ - **matcher:** link aliases to their original record ([e9eb648](https://github.com/vuejs/router/commit/e9eb6481e21de61080a96f66fbd8640157d0fd27))
867
+
868
+ # [4.0.0-alpha.1](https://github.com/vuejs/router/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2020-02-26)
869
+
870
+ ### Code Refactoring
871
+
872
+ - rename createHistory and createHashHistory ([7dbebb6](https://github.com/vuejs/router/commit/7dbebb6e2d75ab4aa77019712f2ed251ad62464f))
873
+
874
+ ### Features
875
+
876
+ - add dynamic routing at router level ([a7943c6](https://github.com/vuejs/router/commit/a7943c64383bced7ff90ae92c0498827acdb71f6))
877
+
878
+ ### BREAKING CHANGES
879
+
880
+ - `createHistory` is now named `createWebHistory`.
881
+ `createHashHistory` is now named `createWebHashHistory`.
882
+
883
+ Both createHistory and createHashHistory are renamed to
884
+ better reflect that they must be used in a browser environment while
885
+ createMemoryHistory doesn't.
886
+
887
+ # [4.0.0-alpha.0](https://github.com/vuejs/router/compare/v0.0.11...v4.0.0-alpha.0) (2020-02-26)
888
+
889
+ ## Known issues
890
+
891
+ ### Breaking changes compared to vue-router@3.x
892
+
893
+ - `mode: 'history'` -> `history: createHistory()`
894
+ - Catch all routes (`/*`) must now be defined using a parameter with a custom regex: `/:catchAll(.*)`
895
+
896
+ ### Missing features
897
+
898
+ - `keep-alive` is not yet supported
899
+ - Partial support of per-component navigation guards. No `beforeRouteEnter` yet