@quicktvui/ai 1.0.6 → 1.0.7

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 (1092) hide show
  1. package/package.json +1 -1
  2. package/rules/.clinerules +3 -2
  3. package/rules/.cursorrules +3 -2
  4. package/rules/.github/copilot-instructions.md +3 -2
  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/quicktvui/assets/ic_media_sereis_vip.png +0 -0
  739. package/rules/.source/quicktvui/package.json +38 -0
  740. package/rules/.source/quicktvui/rollup.config.js +33 -0
  741. package/rules/.source/quicktvui/src/animation/QTAnimation.android.ts +1139 -0
  742. package/rules/.source/quicktvui/src/animation/QTAnimation.harmony.ts +1088 -0
  743. package/rules/.source/quicktvui/src/animation/QTIAnimation.ts +336 -0
  744. package/rules/.source/quicktvui/src/animation/QtAnimationAPI.ts +467 -0
  745. package/rules/.source/quicktvui/src/animation/types.ts +97 -0
  746. package/rules/.source/quicktvui/src/app/QTAppIcon.ts +41 -0
  747. package/rules/.source/quicktvui/src/app/QTIAppIcon.ts +5 -0
  748. package/rules/.source/quicktvui/src/app/QtAppIconAPI.ts +56 -0
  749. package/rules/.source/quicktvui/src/assets/vip.png +0 -0
  750. package/rules/.source/quicktvui/src/base/QTIBaseView.ts +95 -0
  751. package/rules/.source/quicktvui/src/base/QtBaseNativeViewAPI.ts +604 -0
  752. package/rules/.source/quicktvui/src/base/QtBaseViewAPI.ts +750 -0
  753. package/rules/.source/quicktvui/src/base/useBaseView.ts +374 -0
  754. package/rules/.source/quicktvui/src/button/QTIButton.ts +3 -0
  755. package/rules/.source/quicktvui/src/button/QtButtonAPI.ts +9 -0
  756. package/rules/.source/quicktvui/src/button/index.vue +223 -0
  757. package/rules/.source/quicktvui/src/canvas/CanvasGradient.ts +84 -0
  758. package/rules/.source/quicktvui/src/canvas/QTCanvasView.ts +468 -0
  759. package/rules/.source/quicktvui/src/canvas/QTICanvasView.ts +141 -0
  760. package/rules/.source/quicktvui/src/canvas/QtCanvasViewAPI.ts +1140 -0
  761. package/rules/.source/quicktvui/src/classified-list-view/QtClassifiedListViewAPI.ts +115 -0
  762. package/rules/.source/quicktvui/src/classified-list-view/core/QTClassifiedListViewItem.ts +11 -0
  763. package/rules/.source/quicktvui/src/classified-list-view/core/QTClassifiedListViewItemDecoration.ts +7 -0
  764. package/rules/.source/quicktvui/src/classified-list-view/core/QTIClassifiedListView.ts +18 -0
  765. package/rules/.source/quicktvui/src/classified-list-view/index.vue +520 -0
  766. package/rules/.source/quicktvui/src/collapse/QtCollapseAPI.ts +60 -0
  767. package/rules/.source/quicktvui/src/collapse/core/QTCollapse.ts +13 -0
  768. package/rules/.source/quicktvui/src/collapse/core/QTCollapseItem.ts +7 -0
  769. package/rules/.source/quicktvui/src/collapse/core/QTICollapse.ts +15 -0
  770. package/rules/.source/quicktvui/src/collapse/core/QTICollapseItem.ts +5 -0
  771. package/rules/.source/quicktvui/src/collapse/index.vue +337 -0
  772. package/rules/.source/quicktvui/src/column/QTIColumn.ts +3 -0
  773. package/rules/.source/quicktvui/src/column/QtColumnAPI.ts +9 -0
  774. package/rules/.source/quicktvui/src/column/index.vue +29 -0
  775. package/rules/.source/quicktvui/src/core/QTEventData.ts +4 -0
  776. package/rules/.source/quicktvui/src/core/QTFlexStyleBackground.ts +4 -0
  777. package/rules/.source/quicktvui/src/core/QTFlexStyleCoordinate.ts +5 -0
  778. package/rules/.source/quicktvui/src/core/QTFlexStyleDecoration.ts +7 -0
  779. package/rules/.source/quicktvui/src/core/QTFlexStyleGradientBackground.ts +6 -0
  780. package/rules/.source/quicktvui/src/core/QTFlexStyleMargin.ts +8 -0
  781. package/rules/.source/quicktvui/src/core/QTFlexStylePadding.ts +8 -0
  782. package/rules/.source/quicktvui/src/core/QTFlexStylePosition.ts +7 -0
  783. package/rules/.source/quicktvui/src/core/QTFlexStyleSize.ts +6 -0
  784. package/rules/.source/quicktvui/src/core/QTFlexStyleSpacing.ts +4 -0
  785. package/rules/.source/quicktvui/src/core/QTFlexStyleText.ts +5 -0
  786. package/rules/.source/quicktvui/src/core/QTFocusable.ts +5 -0
  787. package/rules/.source/quicktvui/src/core/QTLocation.ts +4 -0
  788. package/rules/.source/quicktvui/src/core/QTNativeParams.ts +22 -0
  789. package/rules/.source/quicktvui/src/core/QTPosition.ts +4 -0
  790. package/rules/.source/quicktvui/src/core/QTVisibility.ts +5 -0
  791. package/rules/.source/quicktvui/src/dialog/QTDialog.ts +28 -0
  792. package/rules/.source/quicktvui/src/dialog/QTIDialog.ts +3 -0
  793. package/rules/.source/quicktvui/src/file-browse/QTFileBrowse.ts +76 -0
  794. package/rules/.source/quicktvui/src/file-browse/QTIFileBrowse.ts +13 -0
  795. package/rules/.source/quicktvui/src/focus/QTDescendantFocusability.ts +5 -0
  796. package/rules/.source/quicktvui/src/focus/QTFocusDescendant.ts +5 -0
  797. package/rules/.source/quicktvui/src/focus/QTFocusDirection.ts +8 -0
  798. package/rules/.source/quicktvui/src/focus/QTFocusDirectionName.ts +7 -0
  799. package/rules/.source/quicktvui/src/gradient/QTGradient.ts +14 -0
  800. package/rules/.source/quicktvui/src/gradient/QTGradientOrientation.ts +10 -0
  801. package/rules/.source/quicktvui/src/gradient/QTGradientShape.ts +6 -0
  802. package/rules/.source/quicktvui/src/gradient/QTGradientType.ts +5 -0
  803. package/rules/.source/quicktvui/src/grid-view/QtGridViewAPI.ts +121 -0
  804. package/rules/.source/quicktvui/src/grid-view/README.md +93 -0
  805. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItem.ts +4 -0
  806. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItemDecoration.ts +7 -0
  807. package/rules/.source/quicktvui/src/grid-view/core/QTGridViewItemFunctionParams.ts +7 -0
  808. package/rules/.source/quicktvui/src/grid-view/core/QTIGridView.ts +23 -0
  809. package/rules/.source/quicktvui/src/grid-view/index.vue +390 -0
  810. package/rules/.source/quicktvui/src/image/QTIImage.ts +8 -0
  811. package/rules/.source/quicktvui/src/image/QTImageResizeMode.ts +7 -0
  812. package/rules/.source/quicktvui/src/image/QtImageAPI.ts +54 -0
  813. package/rules/.source/quicktvui/src/image/index.vue +33 -0
  814. package/rules/.source/quicktvui/src/index.ts +404 -0
  815. package/rules/.source/quicktvui/src/list/QTIBaseListView.ts +144 -0
  816. package/rules/.source/quicktvui/src/list/QTListInitPosition.ts +15 -0
  817. package/rules/.source/quicktvui/src/list/QtBaseListViewAPI.ts +930 -0
  818. package/rules/.source/quicktvui/src/list/useBaseListView.ts +454 -0
  819. package/rules/.source/quicktvui/src/list/useListView.ts +294 -0
  820. package/rules/.source/quicktvui/src/list-indicator/QTIndicatorListViewComponent.ts +553 -0
  821. package/rules/.source/quicktvui/src/list-indicator/QtIndicatorViewAPI.ts +114 -0
  822. package/rules/.source/quicktvui/src/list-indicator/core/QTIIndicatorView.ts +21 -0
  823. package/rules/.source/quicktvui/src/list-item/ESListItemComponent.ts +86 -0
  824. package/rules/.source/quicktvui/src/list-item/QTIListItem.ts +14 -0
  825. package/rules/.source/quicktvui/src/list-item/QtListItemAPI.ts +107 -0
  826. package/rules/.source/quicktvui/src/list-view/QTListViewComponent.ts +389 -0
  827. package/rules/.source/quicktvui/src/list-view/QtListViewAPI.ts +101 -0
  828. package/rules/.source/quicktvui/src/list-view/core/QTIListView.ts +19 -0
  829. package/rules/.source/quicktvui/src/list-view/core/QTListViewItem.ts +12 -0
  830. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemDecoration.ts +7 -0
  831. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemFunctionParams.ts +7 -0
  832. package/rules/.source/quicktvui/src/list-view/core/QTListViewItemState.ts +8 -0
  833. package/rules/.source/quicktvui/src/loading/QTILoadingView.ts +3 -0
  834. package/rules/.source/quicktvui/src/loading/QTLoadingView.ts +25 -0
  835. package/rules/.source/quicktvui/src/loading/QtLoadingAPI.ts +9 -0
  836. package/rules/.source/quicktvui/src/long-image/QTILongImage.ts +68 -0
  837. package/rules/.source/quicktvui/src/long-image/QTLongImage.ts +442 -0
  838. package/rules/.source/quicktvui/src/long-image/QTLongImageEventBean.ts +62 -0
  839. package/rules/.source/quicktvui/src/long-image/QTLongImageOrientation.ts +19 -0
  840. package/rules/.source/quicktvui/src/long-image/QTLongImagePositionType.ts +5 -0
  841. package/rules/.source/quicktvui/src/long-image/QTLongImageScaleType.ts +9 -0
  842. package/rules/.source/quicktvui/src/long-image/QtLongImageAPI.ts +9 -0
  843. package/rules/.source/quicktvui/src/long-image/index.vue +397 -0
  844. package/rules/.source/quicktvui/src/lottie/QTILottieView.ts +62 -0
  845. package/rules/.source/quicktvui/src/lottie/QTLottieAsyncUpdates.ts +5 -0
  846. package/rules/.source/quicktvui/src/lottie/QTLottieEvent.ts +5 -0
  847. package/rules/.source/quicktvui/src/lottie/QTLottieRenderMode.ts +5 -0
  848. package/rules/.source/quicktvui/src/lottie/QTLottieRepeatMode.ts +5 -0
  849. package/rules/.source/quicktvui/src/lottie/QTLottieView.android.ts +207 -0
  850. package/rules/.source/quicktvui/src/lottie/QTLottieView.harmony.ts +207 -0
  851. package/rules/.source/quicktvui/src/lottie/QtLottieViewAPI.ts +586 -0
  852. package/rules/.source/quicktvui/src/nav-bar/QTINavBar.ts +11 -0
  853. package/rules/.source/quicktvui/src/nav-bar/QTNavBar.ts +9 -0
  854. package/rules/.source/quicktvui/src/nav-bar/QTNavBarItem.ts +9 -0
  855. package/rules/.source/quicktvui/src/nav-bar/QTNavBarItemType.ts +3 -0
  856. package/rules/.source/quicktvui/src/nav-bar/QtNavBarAPI.ts +36 -0
  857. package/rules/.source/quicktvui/src/nav-bar/index.vue +220 -0
  858. package/rules/.source/quicktvui/src/plugin/QTIPluginView.ts +11 -0
  859. package/rules/.source/quicktvui/src/plugin/QTPluginView.ts +49 -0
  860. package/rules/.source/quicktvui/src/plugin/QtPluginViewAPI.ts +44 -0
  861. package/rules/.source/quicktvui/src/poster/QtPosterAPI.ts +9 -0
  862. package/rules/.source/quicktvui/src/poster/core/QTIPoster.ts +3 -0
  863. package/rules/.source/quicktvui/src/poster/core/QTPoster.ts +32 -0
  864. package/rules/.source/quicktvui/src/poster/core/QTPosterCorner.ts +9 -0
  865. package/rules/.source/quicktvui/src/poster/core/QTPosterElement.ts +8 -0
  866. package/rules/.source/quicktvui/src/poster/core/QTPosterImage.ts +7 -0
  867. package/rules/.source/quicktvui/src/poster/core/QTPosterPlaceholderImg.ts +4 -0
  868. package/rules/.source/quicktvui/src/poster/core/QTPosterRipple.ts +10 -0
  869. package/rules/.source/quicktvui/src/poster/core/QTPosterScore.ts +14 -0
  870. package/rules/.source/quicktvui/src/poster/core/QTPosterShadow.ts +4 -0
  871. package/rules/.source/quicktvui/src/poster/core/QTPosterShimmer.ts +4 -0
  872. package/rules/.source/quicktvui/src/poster/core/QTPosterTitle.ts +17 -0
  873. package/rules/.source/quicktvui/src/poster/index.vue +279 -0
  874. package/rules/.source/quicktvui/src/poster/qt-poster-corner-title.vue +69 -0
  875. package/rules/.source/quicktvui/src/poster/qt-poster-focus-title.vue +113 -0
  876. package/rules/.source/quicktvui/src/progressbar/QTIProgressBar.ts +264 -0
  877. package/rules/.source/quicktvui/src/progressbar/QTProgressBar.ts +1284 -0
  878. package/rules/.source/quicktvui/src/progressbar/QtProgressBarAPI.ts +2637 -0
  879. package/rules/.source/quicktvui/src/qrcode/QTIQRCode.ts +3 -0
  880. package/rules/.source/quicktvui/src/qrcode/QTQRCodeView.ts +24 -0
  881. package/rules/.source/quicktvui/src/qrcode/QtQRCodeAPI.ts +9 -0
  882. package/rules/.source/quicktvui/src/qt/QtAPI.ts +337 -0
  883. package/rules/.source/quicktvui/src/qt/QtAPIModule.ts +3 -0
  884. package/rules/.source/quicktvui/src/qt/warning.ts +9 -0
  885. package/rules/.source/quicktvui/src/qtListen/README.md +76 -0
  886. package/rules/.source/quicktvui/src/qtListen/effect.ts +141 -0
  887. package/rules/.source/quicktvui/src/qtListen/index.ts +11 -0
  888. package/rules/.source/quicktvui/src/qtListen/qtArray.ts +156 -0
  889. package/rules/.source/quicktvui/src/qtListen/qtDiff.ts +143 -0
  890. package/rules/.source/quicktvui/src/qtListen/reactive.ts +205 -0
  891. package/rules/.source/quicktvui/src/qtListen/ref.ts +98 -0
  892. package/rules/.source/quicktvui/src/qtListen/types.ts +311 -0
  893. package/rules/.source/quicktvui/src/qtListen/watch.ts +233 -0
  894. package/rules/.source/quicktvui/src/replace-child/QTIReplaceChildView.ts +5 -0
  895. package/rules/.source/quicktvui/src/replace-child/QTReplaceChildView.ts +30 -0
  896. package/rules/.source/quicktvui/src/replace-child/QtReplaceChildViewAPI.ts +37 -0
  897. package/rules/.source/quicktvui/src/row/QTIRow.ts +3 -0
  898. package/rules/.source/quicktvui/src/row/QtRowAPI.ts +9 -0
  899. package/rules/.source/quicktvui/src/row/index.vue +29 -0
  900. package/rules/.source/quicktvui/src/scroll-view/QTIScrollView.ts +7 -0
  901. package/rules/.source/quicktvui/src/scroll-view/QTScrollView.ts +45 -0
  902. package/rules/.source/quicktvui/src/scroll-view/QtScrollViewAPI.ts +62 -0
  903. package/rules/.source/quicktvui/src/section/index.vue +40 -0
  904. package/rules/.source/quicktvui/src/seekbar/QTISeekBar.ts +277 -0
  905. package/rules/.source/quicktvui/src/seekbar/QTSeekBar.ts +1380 -0
  906. package/rules/.source/quicktvui/src/seekbar/QTSeekBarGravity.ts +5 -0
  907. package/rules/.source/quicktvui/src/seekbar/QTSeekBarIndicatorMode.ts +6 -0
  908. package/rules/.source/quicktvui/src/seekbar/QTSeekBarMode.ts +4 -0
  909. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkGravity.ts +5 -0
  910. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkLayoutGravity.ts +4 -0
  911. package/rules/.source/quicktvui/src/seekbar/QTSeekBarTickMarkMode.ts +4 -0
  912. package/rules/.source/quicktvui/src/seekbar/QtSeekBarAPI.ts +2645 -0
  913. package/rules/.source/quicktvui/src/series/DataAdapter.ts +329 -0
  914. package/rules/.source/quicktvui/src/series/QTIMediaSeries.ts +33 -0
  915. package/rules/.source/quicktvui/src/series/QTMediaSeries.ts +9 -0
  916. package/rules/.source/quicktvui/src/series/QTMediaSeriesData.ts +9 -0
  917. package/rules/.source/quicktvui/src/series/QTMediaSeriesDataStyle.ts +4 -0
  918. package/rules/.source/quicktvui/src/series/QTMediaSeriesEvent.ts +7 -0
  919. package/rules/.source/quicktvui/src/series/QTMediaSeriesGroup.ts +8 -0
  920. package/rules/.source/quicktvui/src/series/QTMediaSeriesGroupStyle.ts +58 -0
  921. package/rules/.source/quicktvui/src/series/QTMediaSeriesStyleType.ts +5 -0
  922. package/rules/.source/quicktvui/src/series/QTMediaSeriesType.ts +8 -0
  923. package/rules/.source/quicktvui/src/series/QTMediaSeriesVip.ts +4 -0
  924. package/rules/.source/quicktvui/src/series/QtMediaSeriesAPI.ts +140 -0
  925. package/rules/.source/quicktvui/src/series/component/media-series.vue +160 -0
  926. package/rules/.source/quicktvui/src/series/index.vue +316 -0
  927. package/rules/.source/quicktvui/src/series/item/media-series-number-item.vue +212 -0
  928. package/rules/.source/quicktvui/src/series/item/media-series-text-item.vue +239 -0
  929. package/rules/.source/quicktvui/src/tab/QTITab.ts +163 -0
  930. package/rules/.source/quicktvui/src/tab/QTTab.ts +8 -0
  931. package/rules/.source/quicktvui/src/tab/QTTabDataManager.ts +620 -0
  932. package/rules/.source/quicktvui/src/tab/QTTabEvent.ts +11 -0
  933. package/rules/.source/quicktvui/src/tab/QTTabEventParams.ts +12 -0
  934. package/rules/.source/quicktvui/src/tab/QTTabIndex.ts +8 -0
  935. package/rules/.source/quicktvui/src/tab/QTTabItem.ts +5 -0
  936. package/rules/.source/quicktvui/src/tab/QTTabItemType.ts +3 -0
  937. package/rules/.source/quicktvui/src/tab/QTTabPage.ts +5 -0
  938. package/rules/.source/quicktvui/src/tab/QTTabPageData.ts +11 -0
  939. package/rules/.source/quicktvui/src/tab/QTTabPageDataState.ts +8 -0
  940. package/rules/.source/quicktvui/src/tab/QTTabPageState.ts +8 -0
  941. package/rules/.source/quicktvui/src/tab/QtTabAPI.ts +578 -0
  942. package/rules/.source/quicktvui/src/tab/index.vue +1561 -0
  943. package/rules/.source/quicktvui/src/tab/useQtTabWatch.ts +203 -0
  944. package/rules/.source/quicktvui/src/text/QTIText.ts +12 -0
  945. package/rules/.source/quicktvui/src/text/QTTextSpan.ts +6 -0
  946. package/rules/.source/quicktvui/src/text/QTTextSpanAttribute.ts +6 -0
  947. package/rules/.source/quicktvui/src/text/QTTextSpanAttributeType.ts +4 -0
  948. package/rules/.source/quicktvui/src/text/QtTextAPI.ts +90 -0
  949. package/rules/.source/quicktvui/src/text/index.vue +44 -0
  950. package/rules/.source/quicktvui/src/theme/button.css +195 -0
  951. package/rules/.source/quicktvui/src/typings/shims-vue.d.ts +6 -0
  952. package/rules/.source/quicktvui/src/ul/QTIUL.ts +34 -0
  953. package/rules/.source/quicktvui/src/ul/QTULInitPosition.ts +3 -0
  954. package/rules/.source/quicktvui/src/ul/QtULAPI.ts +232 -0
  955. package/rules/.source/quicktvui/src/utils/QtVirtualViewAPI.ts +32 -0
  956. package/rules/.source/quicktvui/src/utils/VirtualView.ts +124 -0
  957. package/rules/.source/quicktvui/src/utils/functions.ts +1 -0
  958. package/rules/.source/quicktvui/src/utils/index.ts +3 -0
  959. package/rules/.source/quicktvui/src/utils/make-installer.ts +16 -0
  960. package/rules/.source/quicktvui/src/utils/objects.ts +4 -0
  961. package/rules/.source/quicktvui/src/utils/type.ts +1 -0
  962. package/rules/.source/quicktvui/src/utils/types.ts +42 -0
  963. package/rules/.source/quicktvui/src/utils/utils.ts +62 -0
  964. package/rules/.source/quicktvui/src/utils/vue/index.ts +3 -0
  965. package/rules/.source/quicktvui/src/utils/vue/install.ts +48 -0
  966. package/rules/.source/quicktvui/src/utils/vue/props/index.ts +3 -0
  967. package/rules/.source/quicktvui/src/utils/vue/props/runtime.ts +129 -0
  968. package/rules/.source/quicktvui/src/utils/vue/props/types.ts +165 -0
  969. package/rules/.source/quicktvui/src/utils/vue/props/util.ts +10 -0
  970. package/rules/.source/quicktvui/src/utils/vue/typescript.ts +9 -0
  971. package/rules/.source/quicktvui/src/view/QTIView.ts +3 -0
  972. package/rules/.source/quicktvui/src/view/QTIViewVisibility.ts +5 -0
  973. package/rules/.source/quicktvui/src/view/QTViewEvent.ts +3 -0
  974. package/rules/.source/quicktvui/src/view/QTViewState.ts +12 -0
  975. package/rules/.source/quicktvui/src/view/QtViewAPI.ts +9 -0
  976. package/rules/.source/quicktvui/src/view/index.vue +24 -0
  977. package/rules/.source/quicktvui/src/waterfall/QtWaterfallAPI.ts +219 -0
  978. package/rules/.source/quicktvui/src/waterfall/README.md +143 -0
  979. package/rules/.source/quicktvui/src/waterfall/core/QTIWaterfall.ts +49 -0
  980. package/rules/.source/quicktvui/src/waterfall/core/QTScrollState.ts +5 -0
  981. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfall.ts +13 -0
  982. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardItem.ts +11 -0
  983. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardPlaceHolder.ts +10 -0
  984. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallCardSection.ts +12 -0
  985. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallDataAdapter.ts +195 -0
  986. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallDataManager.ts +305 -0
  987. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallEvent.ts +11 -0
  988. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallFlexStyle.ts +19 -0
  989. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallIndex.ts +7 -0
  990. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallItem.ts +9 -0
  991. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallItemType.ts +7 -0
  992. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPlaceholder.ts +5 -0
  993. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPluginItem.ts +9 -0
  994. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallPluginSection.ts +8 -0
  995. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallSection.ts +17 -0
  996. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallSectionType.ts +14 -0
  997. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallTabItem.ts +10 -0
  998. package/rules/.source/quicktvui/src/waterfall/core/QTWaterfallVisibleType.ts +7 -0
  999. package/rules/.source/quicktvui/src/waterfall/index.vue +704 -0
  1000. package/rules/.source/quicktvui/src/waterfall/item/card-item.vue +49 -0
  1001. package/rules/.source/quicktvui/src/waterfall/item/plugin-item.vue +52 -0
  1002. package/rules/.source/quicktvui/src/waterfall/section/blank-section.vue +27 -0
  1003. package/rules/.source/quicktvui/src/waterfall/section/card-section.vue +81 -0
  1004. package/rules/.source/quicktvui/src/waterfall/section/end-section.vue +50 -0
  1005. package/rules/.source/quicktvui/src/waterfall/section/flex-section.vue +167 -0
  1006. package/rules/.source/quicktvui/src/waterfall/section/list-section.vue +247 -0
  1007. package/rules/.source/quicktvui/src/waterfall/section/loading-section.vue +34 -0
  1008. package/rules/.source/quicktvui/src/waterfall/section/plugin-section.vue +87 -0
  1009. package/rules/.source/quicktvui/src/waterfall/section/section-title.vue +63 -0
  1010. package/rules/.source/quicktvui/src/waterfall/section/vue-section.vue +44 -0
  1011. package/rules/.source/quicktvui/src/webview/QTIWebView.ts +199 -0
  1012. package/rules/.source/quicktvui/src/webview/QTWebView.ts +957 -0
  1013. package/rules/.source/quicktvui/src/webview/QTWebViewInterceptRule.ts +4 -0
  1014. package/rules/.source/quicktvui/src/webview/QTWebViewLayerType.ts +6 -0
  1015. package/rules/.source/quicktvui/src/webview/QTWebViewSniffingRule.ts +18 -0
  1016. package/rules/.source/quicktvui/src/webview/QtWebViewAPI.ts +1963 -0
  1017. package/rules/.source/quicktvui/src/x5webview/QTIX5WebView.ts +211 -0
  1018. package/rules/.source/quicktvui/src/x5webview/QTX5WebView.ts +1014 -0
  1019. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewInterceptRule.ts +4 -0
  1020. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewLayerType.ts +6 -0
  1021. package/rules/.source/quicktvui/src/x5webview/QTX5WebViewSniffingRule.ts +18 -0
  1022. package/rules/.source/quicktvui/src/x5webview/QtX5WebViewAPI.ts +2015 -0
  1023. package/rules/.source/quicktvui/tsconfig.json +34 -0
  1024. package/rules/.source/quicktvui/web-types.json +1 -0
  1025. package/rules/.source/quicktvui/yarn.lock +72 -0
  1026. package/rules/.source/web/audio/index.ts +9 -0
  1027. package/rules/.source/web/audio/src/audio.ts +34 -0
  1028. package/rules/.source/web/audio/src/audio.vue +146 -0
  1029. package/rules/.source/web/audio/src/instance.ts +3 -0
  1030. package/rules/.source/web/audio-service/index.ts +10 -0
  1031. package/rules/.source/web/audio-service/src/audio-service.ts +34 -0
  1032. package/rules/.source/web/audio-service/src/audio-service.vue +115 -0
  1033. package/rules/.source/web/audio-service/src/instance.ts +3 -0
  1034. package/rules/.source/web/base/index.ts +1 -0
  1035. package/rules/.source/web/base/src/base-types.ts +1 -0
  1036. package/rules/.source/web/component.ts +25 -0
  1037. package/rules/.source/web/docs/h.txt +6 -0
  1038. package/rules/.source/web/docs/video.txt +88 -0
  1039. package/rules/.source/web/h1/index.ts +9 -0
  1040. package/rules/.source/web/h1/src/h1.ts +9 -0
  1041. package/rules/.source/web/h1/src/h1.vue +30 -0
  1042. package/rules/.source/web/h1/src/instance.ts +3 -0
  1043. package/rules/.source/web/h2/index.ts +9 -0
  1044. package/rules/.source/web/h2/src/h2.ts +9 -0
  1045. package/rules/.source/web/h2/src/h2.vue +30 -0
  1046. package/rules/.source/web/h2/src/instance.ts +3 -0
  1047. package/rules/.source/web/h3/index.ts +9 -0
  1048. package/rules/.source/web/h3/src/h3.ts +9 -0
  1049. package/rules/.source/web/h3/src/h3.vue +30 -0
  1050. package/rules/.source/web/h3/src/instance.ts +3 -0
  1051. package/rules/.source/web/h4/index.ts +9 -0
  1052. package/rules/.source/web/h4/src/h4.ts +9 -0
  1053. package/rules/.source/web/h4/src/h4.vue +30 -0
  1054. package/rules/.source/web/h4/src/instance.ts +3 -0
  1055. package/rules/.source/web/h5/index.ts +9 -0
  1056. package/rules/.source/web/h5/src/h5.ts +9 -0
  1057. package/rules/.source/web/h5/src/h5.vue +30 -0
  1058. package/rules/.source/web/h5/src/instance.ts +3 -0
  1059. package/rules/.source/web/h6/index.ts +9 -0
  1060. package/rules/.source/web/h6/src/h6.ts +9 -0
  1061. package/rules/.source/web/h6/src/h6.vue +30 -0
  1062. package/rules/.source/web/h6/src/instance.ts +3 -0
  1063. package/rules/.source/web/index.ts +84 -0
  1064. package/rules/.source/web/package.json +24 -0
  1065. package/rules/.source/web/plugin.ts +3 -0
  1066. package/rules/.source/web/rollup.config.js +37 -0
  1067. package/rules/.source/web/shims-vue.d.ts +6 -0
  1068. package/rules/.source/web/source/index.ts +9 -0
  1069. package/rules/.source/web/source/src/instance.ts +3 -0
  1070. package/rules/.source/web/source/src/source.ts +17 -0
  1071. package/rules/.source/web/source/src/source.vue +19 -0
  1072. package/rules/.source/web/tsconfig.json +34 -0
  1073. package/rules/.source/web/utils/functions.ts +1 -0
  1074. package/rules/.source/web/utils/index.ts +3 -0
  1075. package/rules/.source/web/utils/make-installer.ts +16 -0
  1076. package/rules/.source/web/utils/objects.ts +4 -0
  1077. package/rules/.source/web/utils/types.ts +42 -0
  1078. package/rules/.source/web/utils/vue/index.ts +3 -0
  1079. package/rules/.source/web/utils/vue/install.ts +48 -0
  1080. package/rules/.source/web/utils/vue/props/index.ts +3 -0
  1081. package/rules/.source/web/utils/vue/props/runtime.ts +129 -0
  1082. package/rules/.source/web/utils/vue/props/types.ts +165 -0
  1083. package/rules/.source/web/utils/vue/props/util.ts +10 -0
  1084. package/rules/.source/web/utils/vue/typescript.ts +9 -0
  1085. package/rules/.source/web/video/index.ts +9 -0
  1086. package/rules/.source/web/video/src/instance.ts +3 -0
  1087. package/rules/.source/web/video/src/video.ts +34 -0
  1088. package/rules/.source/web/video/src/video.vue +171 -0
  1089. package/rules/.windsurfrules +3 -2
  1090. package/rules/AGENTS.md +3 -2
  1091. package/rules/CLAUDE.md +3 -2
  1092. package/rules/GEMINI.md +3 -2
@@ -0,0 +1,1072 @@
1
+ # Changelog
2
+
3
+ ## [1.7.9](https://github.com/axios/axios/compare/v1.7.8...v1.7.9) (2024-12-04)
4
+
5
+
6
+ ### Reverts
7
+
8
+ * Revert "fix(types): export CJS types from ESM (#6218)" (#6729) ([c44d2f2](https://github.com/axios/axios/commit/c44d2f2316ad289b38997657248ba10de11deb6c)), closes [#6218](https://github.com/axios/axios/issues/6218) [#6729](https://github.com/axios/axios/issues/6729)
9
+
10
+ ### Contributors to this release
11
+
12
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+596/-108 (#6729 )")
13
+
14
+ ## [1.7.8](https://github.com/axios/axios/compare/v1.7.7...v1.7.8) (2024-11-25)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * allow passing a callback as paramsSerializer to buildURL ([#6680](https://github.com/axios/axios/issues/6680)) ([eac4619](https://github.com/axios/axios/commit/eac4619fe2e0926e876cd260ee21e3690381dbb5))
20
+ * **core:** fixed config merging bug ([#6668](https://github.com/axios/axios/issues/6668)) ([5d99fe4](https://github.com/axios/axios/commit/5d99fe4491202a6268c71e5dcc09192359d73cea))
21
+ * fixed width form to not shrink after 'Send Request' button is clicked ([#6644](https://github.com/axios/axios/issues/6644)) ([7ccd5fd](https://github.com/axios/axios/commit/7ccd5fd42402102d38712c32707bf055be72ab54))
22
+ * **http:** add support for File objects as payload in http adapter ([#6588](https://github.com/axios/axios/issues/6588)) ([#6605](https://github.com/axios/axios/issues/6605)) ([6841d8d](https://github.com/axios/axios/commit/6841d8d18ddc71cc1bd202ffcfddb3f95622eef3))
23
+ * **http:** fixed proxy-from-env module import ([#5222](https://github.com/axios/axios/issues/5222)) ([12b3295](https://github.com/axios/axios/commit/12b32957f1258aee94ef859809ed39f8f88f9dfa))
24
+ * **http:** use `globalThis.TextEncoder` when available ([#6634](https://github.com/axios/axios/issues/6634)) ([df956d1](https://github.com/axios/axios/commit/df956d18febc9100a563298dfdf0f102c3d15410))
25
+ * ios11 breaks when build ([#6608](https://github.com/axios/axios/issues/6608)) ([7638952](https://github.com/axios/axios/commit/763895270f7b50c7c780c3c9807ae8635de952cd))
26
+ * **types:** add missing types for mergeConfig function ([#6590](https://github.com/axios/axios/issues/6590)) ([00de614](https://github.com/axios/axios/commit/00de614cd07b7149af335e202aef0e076c254f49))
27
+ * **types:** export CJS types from ESM ([#6218](https://github.com/axios/axios/issues/6218)) ([c71811b](https://github.com/axios/axios/commit/c71811b00f2fcff558e4382ba913bdac4ad7200e))
28
+ * updated stream aborted error message to be more clear ([#6615](https://github.com/axios/axios/issues/6615)) ([cc3217a](https://github.com/axios/axios/commit/cc3217a612024d83a663722a56d7a98d8759c6d5))
29
+ * use URL API instead of DOM to fix a potential vulnerability warning; ([#6714](https://github.com/axios/axios/issues/6714)) ([0a8d6e1](https://github.com/axios/axios/commit/0a8d6e19da5b9899a2abafaaa06a75ee548597db))
30
+
31
+ ### Contributors to this release
32
+
33
+ - <img src="https://avatars.githubusercontent.com/u/779047?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Remco Haszing](https://github.com/remcohaszing "+108/-596 (#6218 )")
34
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+281/-19 (#6640 #6619 )")
35
+ - <img src="https://avatars.githubusercontent.com/u/140250471?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aayush Yadav](https://github.com/aayushyadav020 "+124/-111 (#6617 )")
36
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+12/-65 (#6714 )")
37
+ - <img src="https://avatars.githubusercontent.com/u/479715?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ell Bradshaw](https://github.com/cincodenada "+29/-0 (#6489 )")
38
+ - <img src="https://avatars.githubusercontent.com/u/60218780?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Amit Saini](https://github.com/amitsainii "+13/-3 (#5237 )")
39
+ - <img src="https://avatars.githubusercontent.com/u/19817867?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Tommaso Paulon](https://github.com/guuido "+14/-1 (#6680 )")
40
+ - <img src="https://avatars.githubusercontent.com/u/63336443?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Akki](https://github.com/Aakash-Rana "+5/-5 (#6668 )")
41
+ - <img src="https://avatars.githubusercontent.com/u/20028934?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Sampo Silvennoinen](https://github.com/stscoundrel "+3/-3 (#6633 )")
42
+ - <img src="https://avatars.githubusercontent.com/u/1174718?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kasper Isager Dalsgarð](https://github.com/kasperisager "+2/-2 (#6634 )")
43
+ - <img src="https://avatars.githubusercontent.com/u/3709715?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Christian Clauss](https://github.com/cclauss "+4/-0 (#6683 )")
44
+ - <img src="https://avatars.githubusercontent.com/u/1639119?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Pavan Welihinda](https://github.com/pavan168 "+2/-2 (#5222 )")
45
+ - <img src="https://avatars.githubusercontent.com/u/5742900?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Taylor Flatt](https://github.com/taylorflatt "+2/-2 (#6615 )")
46
+ - <img src="https://avatars.githubusercontent.com/u/79452224?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Kenzo Wada](https://github.com/Kenzo-Wada "+2/-2 (#6608 )")
47
+ - <img src="https://avatars.githubusercontent.com/u/50064240?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ngole Lawson](https://github.com/echelonnought "+3/-0 (#6644 )")
48
+ - <img src="https://avatars.githubusercontent.com/u/1262198?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Haven](https://github.com/Baoyx007 "+3/-0 (#6590 )")
49
+ - <img src="https://avatars.githubusercontent.com/u/149003676?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Shrivali Dutt](https://github.com/shrivalidutt "+1/-1 (#6637 )")
50
+ - <img src="https://avatars.githubusercontent.com/u/1304290?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Henco Appel](https://github.com/hencoappel "+1/-1 (#6605 )")
51
+
52
+ ## [1.7.7](https://github.com/axios/axios/compare/v1.7.6...v1.7.7) (2024-08-31)
53
+
54
+
55
+ ### Bug Fixes
56
+
57
+ * **fetch:** fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; ([#6584](https://github.com/axios/axios/issues/6584)) ([d198085](https://github.com/axios/axios/commit/d1980854fee1765cd02fa0787adf5d6e34dd9dcf))
58
+ * **http:** fixed support for IPv6 literal strings in url ([#5731](https://github.com/axios/axios/issues/5731)) ([364993f](https://github.com/axios/axios/commit/364993f0d8bc6e0e06f76b8a35d2d0a35cab054c))
59
+
60
+ ### Contributors to this release
61
+
62
+ - <img src="https://avatars.githubusercontent.com/u/10539109?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rishi556](https://github.com/Rishi556 "+39/-1 (#5731 )")
63
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+27/-7 (#6584 )")
64
+
65
+ ## [1.7.6](https://github.com/axios/axios/compare/v1.7.5...v1.7.6) (2024-08-30)
66
+
67
+
68
+ ### Bug Fixes
69
+
70
+ * **fetch:** fix content length calculation for FormData payload; ([#6524](https://github.com/axios/axios/issues/6524)) ([085f568](https://github.com/axios/axios/commit/085f56861a83e9ac02c140ad9d68dac540dfeeaa))
71
+ * **fetch:** optimize signals composing logic; ([#6582](https://github.com/axios/axios/issues/6582)) ([df9889b](https://github.com/axios/axios/commit/df9889b83c2cc37e9e6189675a73ab70c60f031f))
72
+
73
+ ### Contributors to this release
74
+
75
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+98/-46 (#6582 )")
76
+ - <img src="https://avatars.githubusercontent.com/u/3534453?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jacques Germishuys](https://github.com/jacquesg "+5/-1 (#6524 )")
77
+ - <img src="https://avatars.githubusercontent.com/u/53894505?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [kuroino721](https://github.com/kuroino721 "+3/-1 (#6575 )")
78
+
79
+ ## [1.7.5](https://github.com/axios/axios/compare/v1.7.4...v1.7.5) (2024-08-23)
80
+
81
+
82
+ ### Bug Fixes
83
+
84
+ * **adapter:** fix undefined reference to hasBrowserEnv ([#6572](https://github.com/axios/axios/issues/6572)) ([7004707](https://github.com/axios/axios/commit/7004707c4180b416341863bd86913fe4fc2f1df1))
85
+ * **core:** add the missed implementation of AxiosError#status property; ([#6573](https://github.com/axios/axios/issues/6573)) ([6700a8a](https://github.com/axios/axios/commit/6700a8adac06942205f6a7a21421ecb36c4e0852))
86
+ * **core:** fix `ReferenceError: navigator is not defined` for custom environments; ([#6567](https://github.com/axios/axios/issues/6567)) ([fed1a4b](https://github.com/axios/axios/commit/fed1a4b2d78ed4a588c84e09d32749ed01dc2794))
87
+ * **fetch:** fix credentials handling in Cloudflare workers ([#6533](https://github.com/axios/axios/issues/6533)) ([550d885](https://github.com/axios/axios/commit/550d885eb90fd156add7b93bbdc54d30d2f9a98d))
88
+
89
+ ### Contributors to this release
90
+
91
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+187/-83 (#6573 #6567 #6566 #6564 #6563 #6557 #6556 #6555 #6554 #6552 )")
92
+ - <img src="https://avatars.githubusercontent.com/u/2495809?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Antonin Bas](https://github.com/antoninbas "+6/-6 (#6572 )")
93
+ - <img src="https://avatars.githubusercontent.com/u/5406212?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Hans Otto Wirtz](https://github.com/hansottowirtz "+4/-1 (#6533 )")
94
+
95
+ ## [1.7.4](https://github.com/axios/axios/compare/v1.7.3...v1.7.4) (2024-08-13)
96
+
97
+
98
+ ### Bug Fixes
99
+
100
+ * **sec:** CVE-2024-39338 ([#6539](https://github.com/axios/axios/issues/6539)) ([#6543](https://github.com/axios/axios/issues/6543)) ([6b6b605](https://github.com/axios/axios/commit/6b6b605eaf73852fb2dae033f1e786155959de3a))
101
+ * **sec:** disregard protocol-relative URL to remediate SSRF ([#6539](https://github.com/axios/axios/issues/6539)) ([07a661a](https://github.com/axios/axios/commit/07a661a2a6b9092c4aa640dcc7f724ec5e65bdda))
102
+
103
+ ### Contributors to this release
104
+
105
+ - <img src="https://avatars.githubusercontent.com/u/31389480?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lev Pachmanov](https://github.com/levpachmanov "+47/-11 (#6543 )")
106
+ - <img src="https://avatars.githubusercontent.com/u/41283691?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Đỗ Trọng Hải](https://github.com/hainenber "+49/-4 (#6539 )")
107
+
108
+ ## [1.7.3](https://github.com/axios/axios/compare/v1.7.2...v1.7.3) (2024-08-01)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * **adapter:** fix progress event emitting; ([#6518](https://github.com/axios/axios/issues/6518)) ([e3c76fc](https://github.com/axios/axios/commit/e3c76fc9bdd03aa4d98afaf211df943e2031453f))
114
+ * **fetch:** fix withCredentials request config ([#6505](https://github.com/axios/axios/issues/6505)) ([85d4d0e](https://github.com/axios/axios/commit/85d4d0ea0aae91082f04e303dec46510d1b4e787))
115
+ * **xhr:** return original config on errors from XHR adapter ([#6515](https://github.com/axios/axios/issues/6515)) ([8966ee7](https://github.com/axios/axios/commit/8966ee7ea62ecbd6cfb39a905939bcdab5cf6388))
116
+
117
+ ### Contributors to this release
118
+
119
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+211/-159 (#6518 #6519 )")
120
+ - <img src="https://avatars.githubusercontent.com/u/10867286?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Valerii Sidorenko](https://github.com/ValeraS "+3/-3 (#6515 )")
121
+ - <img src="https://avatars.githubusercontent.com/u/8599535?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [prianYu](https://github.com/prianyu "+2/-2 (#6505 )")
122
+
123
+ ## [1.7.2](https://github.com/axios/axios/compare/v1.7.1...v1.7.2) (2024-05-21)
124
+
125
+
126
+ ### Bug Fixes
127
+
128
+ * **fetch:** enhance fetch API detection; ([#6413](https://github.com/axios/axios/issues/6413)) ([4f79aef](https://github.com/axios/axios/commit/4f79aef81b7c4644328365bfc33acf0a9ef595bc))
129
+
130
+ ### Contributors to this release
131
+
132
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+3/-3 (#6413 )")
133
+
134
+ ## [1.7.1](https://github.com/axios/axios/compare/v1.7.0...v1.7.1) (2024-05-20)
135
+
136
+
137
+ ### Bug Fixes
138
+
139
+ * **fetch:** fixed ReferenceError issue when TextEncoder is not available in the environment; ([#6410](https://github.com/axios/axios/issues/6410)) ([733f15f](https://github.com/axios/axios/commit/733f15fe5bd2d67e1fadaee82e7913b70d45dc5e))
140
+
141
+ ### Contributors to this release
142
+
143
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+14/-9 (#6410 )")
144
+
145
+ # [1.7.0](https://github.com/axios/axios/compare/v1.7.0-beta.2...v1.7.0) (2024-05-19)
146
+
147
+
148
+ ### Features
149
+
150
+ * **adapter:** add fetch adapter; ([#6371](https://github.com/axios/axios/issues/6371)) ([a3ff99b](https://github.com/axios/axios/commit/a3ff99b59d8ec2ab5dd049e68c043617a4072e42))
151
+
152
+ ### Bug Fixes
153
+
154
+ * **core/axios:** handle un-writable error stack ([#6362](https://github.com/axios/axios/issues/6362)) ([81e0455](https://github.com/axios/axios/commit/81e0455b7b57fbaf2be16a73ebe0e6591cc6d8f9))
155
+
156
+ ### Contributors to this release
157
+
158
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+1015/-127 (#6371 )")
159
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+30/-14 ()")
160
+ - <img src="https://avatars.githubusercontent.com/u/16711696?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Alexandre ABRIOUX](https://github.com/alexandre-abrioux "+56/-6 (#6362 )")
161
+
162
+ # [1.7.0-beta.2](https://github.com/axios/axios/compare/v1.7.0-beta.1...v1.7.0-beta.2) (2024-05-19)
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * **fetch:** capitalize HTTP method names; ([#6395](https://github.com/axios/axios/issues/6395)) ([ad3174a](https://github.com/axios/axios/commit/ad3174a3515c3c2573f4bcb94818d582826f3914))
168
+ * **fetch:** fix & optimize progress capturing for cases when the request data has a nullish value or zero data length ([#6400](https://github.com/axios/axios/issues/6400)) ([95a3e8e](https://github.com/axios/axios/commit/95a3e8e346cfd6a5548e171f2341df3235d0e26b))
169
+ * **fetch:** fix headers getting from a stream response; ([#6401](https://github.com/axios/axios/issues/6401)) ([870e0a7](https://github.com/axios/axios/commit/870e0a76f60d0094774a6a63fa606eec52a381af))
170
+
171
+ ### Contributors to this release
172
+
173
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+99/-46 (#6405 #6404 #6401 #6400 #6395 )")
174
+
175
+ # [1.7.0-beta.1](https://github.com/axios/axios/compare/v1.7.0-beta.0...v1.7.0-beta.1) (2024-05-07)
176
+
177
+
178
+ ### Bug Fixes
179
+
180
+ * **core/axios:** handle un-writable error stack ([#6362](https://github.com/axios/axios/issues/6362)) ([81e0455](https://github.com/axios/axios/commit/81e0455b7b57fbaf2be16a73ebe0e6591cc6d8f9))
181
+ * **fetch:** fix cases when ReadableStream or Response.body are not available; ([#6377](https://github.com/axios/axios/issues/6377)) ([d1d359d](https://github.com/axios/axios/commit/d1d359da347704e8b28d768e61515a3e96c5b072))
182
+ * **fetch:** treat fetch-related TypeError as an AxiosError.ERR_NETWORK error; ([#6380](https://github.com/axios/axios/issues/6380)) ([bb5f9a5](https://github.com/axios/axios/commit/bb5f9a5ab768452de9e166dc28d0ffc234245ef1))
183
+
184
+ ### Contributors to this release
185
+
186
+ - <img src="https://avatars.githubusercontent.com/u/16711696?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Alexandre ABRIOUX](https://github.com/alexandre-abrioux "+56/-6 (#6362 )")
187
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+42/-17 (#6380 #6377 )")
188
+
189
+ # [1.7.0-beta.0](https://github.com/axios/axios/compare/v1.6.8...v1.7.0-beta.0) (2024-04-28)
190
+
191
+
192
+ ### Features
193
+
194
+ * **adapter:** add fetch adapter; ([#6371](https://github.com/axios/axios/issues/6371)) ([a3ff99b](https://github.com/axios/axios/commit/a3ff99b59d8ec2ab5dd049e68c043617a4072e42))
195
+
196
+ ### Contributors to this release
197
+
198
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+1015/-127 (#6371 )")
199
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+30/-14 ()")
200
+
201
+ ## [1.6.8](https://github.com/axios/axios/compare/v1.6.7...v1.6.8) (2024-03-15)
202
+
203
+
204
+ ### Bug Fixes
205
+
206
+ * **AxiosHeaders:** fix AxiosHeaders conversion to an object during config merging ([#6243](https://github.com/axios/axios/issues/6243)) ([2656612](https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb))
207
+ * **import:** use named export for EventEmitter; ([7320430](https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1))
208
+ * **vulnerability:** update follow-redirects to 1.15.6 ([#6300](https://github.com/axios/axios/issues/6300)) ([8786e0f](https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27))
209
+
210
+ ### Contributors to this release
211
+
212
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+4572/-3446 (#6238 )")
213
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+30/-0 (#6231 )")
214
+ - <img src="https://avatars.githubusercontent.com/u/68230846?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Mitchell](https://github.com/Creaous "+9/-9 (#6300 )")
215
+ - <img src="https://avatars.githubusercontent.com/u/53797821?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Emmanuel](https://github.com/mannoeu "+2/-2 (#6196 )")
216
+ - <img src="https://avatars.githubusercontent.com/u/44109284?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Lucas Keller](https://github.com/ljkeller "+3/-0 (#6194 )")
217
+ - <img src="https://avatars.githubusercontent.com/u/72791488?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Aditya Mogili](https://github.com/ADITYA-176 "+1/-1 ()")
218
+ - <img src="https://avatars.githubusercontent.com/u/46135319?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Miroslav Petrov](https://github.com/petrovmiroslav "+1/-1 (#6243 )")
219
+
220
+ ## [1.6.7](https://github.com/axios/axios/compare/v1.6.6...v1.6.7) (2024-01-25)
221
+
222
+
223
+ ### Bug Fixes
224
+
225
+ * capture async stack only for rejections with native error objects; ([#6203](https://github.com/axios/axios/issues/6203)) ([1a08f90](https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0))
226
+
227
+ ### Contributors to this release
228
+
229
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+30/-26 (#6203 )")
230
+ - <img src="https://avatars.githubusercontent.com/u/73059627?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [zhoulixiang](https://github.com/zh-lx "+0/-3 (#6186 )")
231
+
232
+ ## [1.6.6](https://github.com/axios/axios/compare/v1.6.5...v1.6.6) (2024-01-24)
233
+
234
+
235
+ ### Bug Fixes
236
+
237
+ * fixed missed dispatchBeforeRedirect argument ([#5778](https://github.com/axios/axios/issues/5778)) ([a1938ff](https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39))
238
+ * wrap errors to improve async stack trace ([#5987](https://github.com/axios/axios/issues/5987)) ([123f354](https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab))
239
+
240
+ ### Contributors to this release
241
+
242
+ - <img src="https://avatars.githubusercontent.com/u/1186084?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ilya Priven](https://github.com/ikonst "+91/-8 (#5987 )")
243
+ - <img src="https://avatars.githubusercontent.com/u/1884246?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Zao Soula](https://github.com/zaosoula "+6/-6 (#5778 )")
244
+
245
+ ## [1.6.5](https://github.com/axios/axios/compare/v1.6.4...v1.6.5) (2024-01-05)
246
+
247
+
248
+ ### Bug Fixes
249
+
250
+ * **ci:** refactor notify action as a job of publish action; ([#6176](https://github.com/axios/axios/issues/6176)) ([0736f95](https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c))
251
+ * **dns:** fixed lookup error handling; ([#6175](https://github.com/axios/axios/issues/6175)) ([f4f2b03](https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be))
252
+
253
+ ### Contributors to this release
254
+
255
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+41/-6 (#6176 #6175 )")
256
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+6/-1 ()")
257
+
258
+ ## [1.6.4](https://github.com/axios/axios/compare/v1.6.3...v1.6.4) (2024-01-03)
259
+
260
+
261
+ ### Bug Fixes
262
+
263
+ * **security:** fixed formToJSON prototype pollution vulnerability; ([#6167](https://github.com/axios/axios/issues/6167)) ([3c0c11c](https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e))
264
+ * **security:** fixed security vulnerability in follow-redirects ([#6163](https://github.com/axios/axios/issues/6163)) ([75af1cd](https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8))
265
+
266
+ ### Contributors to this release
267
+
268
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+34/-6 ()")
269
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+34/-3 (#6172 #6167 )")
270
+ - <img src="https://avatars.githubusercontent.com/u/1402060?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Guy Nesher](https://github.com/gnesher "+10/-10 (#6163 )")
271
+
272
+ ## [1.6.3](https://github.com/axios/axios/compare/v1.6.2...v1.6.3) (2023-12-26)
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * Regular Expression Denial of Service (ReDoS) ([#6132](https://github.com/axios/axios/issues/6132)) ([5e7ad38](https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d))
278
+
279
+ ### Contributors to this release
280
+
281
+ - <img src="https://avatars.githubusercontent.com/u/4814473?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jay](https://github.com/jasonsaayman "+15/-6 (#6145 )")
282
+ - <img src="https://avatars.githubusercontent.com/u/22686401?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Willian Agostini](https://github.com/WillianAgostini "+17/-2 (#6132 )")
283
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+3/-0 (#6084 )")
284
+
285
+ ## [1.6.2](https://github.com/axios/axios/compare/v1.6.1...v1.6.2) (2023-11-14)
286
+
287
+
288
+ ### Features
289
+
290
+ * **withXSRFToken:** added withXSRFToken option as a workaround to achieve the old `withCredentials` behavior; ([#6046](https://github.com/axios/axios/issues/6046)) ([cff9967](https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc))
291
+
292
+ ### PRs
293
+ - feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old &#x60;withCredentials&#x60; behavior; ( [#6046](https://api.github.com/repos/axios/axios/pulls/6046) )
294
+ ```
295
+
296
+ 📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour.
297
+ You should now use withXSRFToken along with withCredential to get the old behavior.
298
+ This functionality is considered as a fix.
299
+ ```
300
+
301
+ ### Contributors to this release
302
+
303
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+271/-146 (#6081 #6080 #6079 #6078 #6046 #6064 #6063 )")
304
+ - <img src="https://avatars.githubusercontent.com/u/79681367?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Ng Choon Khon (CK)](https://github.com/ckng0221 "+4/-4 (#6073 )")
305
+ - <img src="https://avatars.githubusercontent.com/u/9162827?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Muhammad Noman](https://github.com/mnomanmemon "+2/-2 (#6048 )")
306
+
307
+ ## [1.6.1](https://github.com/axios/axios/compare/v1.6.0...v1.6.1) (2023-11-08)
308
+
309
+
310
+ ### Bug Fixes
311
+
312
+ * **formdata:** fixed content-type header normalization for non-standard browser environments; ([#6056](https://github.com/axios/axios/issues/6056)) ([dd465ab](https://github.com/axios/axios/commit/dd465ab22bbfa262c6567be6574bf46a057d5288))
313
+ * **platform:** fixed emulated browser detection in node.js environment; ([#6055](https://github.com/axios/axios/issues/6055)) ([3dc8369](https://github.com/axios/axios/commit/3dc8369e505e32a4e12c22f154c55fd63ac67fbb))
314
+
315
+ ### Contributors to this release
316
+
317
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+432/-65 (#6059 #6056 #6055 )")
318
+ - <img src="https://avatars.githubusercontent.com/u/3982806?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Fabian Meyer](https://github.com/meyfa "+5/-2 (#5835 )")
319
+
320
+ ### PRs
321
+ - feat(withXSRFToken): added withXSRFToken option as a workaround to achieve the old &#x60;withCredentials&#x60; behavior; ( [#6046](https://api.github.com/repos/axios/axios/pulls/6046) )
322
+ ```
323
+
324
+ 📢 This PR added &#x27;withXSRFToken&#x27; option as a replacement for old withCredentials behaviour.
325
+ You should now use withXSRFToken along with withCredential to get the old behavior.
326
+ This functionality is considered as a fix.
327
+ ```
328
+
329
+ # [1.6.0](https://github.com/axios/axios/compare/v1.5.1...v1.6.0) (2023-10-26)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * **CSRF:** fixed CSRF vulnerability CVE-2023-45857 ([#6028](https://github.com/axios/axios/issues/6028)) ([96ee232](https://github.com/axios/axios/commit/96ee232bd3ee4de2e657333d4d2191cd389e14d0))
335
+ * **dns:** fixed lookup function decorator to work properly in node v20; ([#6011](https://github.com/axios/axios/issues/6011)) ([5aaff53](https://github.com/axios/axios/commit/5aaff532a6b820bb9ab6a8cd0f77131b47e2adb8))
336
+ * **types:** fix AxiosHeaders types; ([#5931](https://github.com/axios/axios/issues/5931)) ([a1c8ad0](https://github.com/axios/axios/commit/a1c8ad008b3c13d53e135bbd0862587fb9d3fc09))
337
+
338
+ ### PRs
339
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
340
+ ```
341
+
342
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
343
+ ```
344
+
345
+ ### Contributors to this release
346
+
347
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+449/-114 (#6032 #6021 #6011 #5932 #5931 )")
348
+ - <img src="https://avatars.githubusercontent.com/u/63700910?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Valentin Panov](https://github.com/valentin-panov "+4/-4 (#6028 )")
349
+ - <img src="https://avatars.githubusercontent.com/u/76877078?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Rinku Chaudhari](https://github.com/therealrinku "+1/-1 (#5889 )")
350
+
351
+ ## [1.5.1](https://github.com/axios/axios/compare/v1.5.0...v1.5.1) (2023-09-26)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * **adapters:** improved adapters loading logic to have clear error messages; ([#5919](https://github.com/axios/axios/issues/5919)) ([e410779](https://github.com/axios/axios/commit/e4107797a7a1376f6209fbecfbbce73d3faa7859))
357
+ * **formdata:** fixed automatic addition of the `Content-Type` header for FormData in non-browser environments; ([#5917](https://github.com/axios/axios/issues/5917)) ([bc9af51](https://github.com/axios/axios/commit/bc9af51b1886d1b3529617702f2a21a6c0ed5d92))
358
+ * **headers:** allow `content-encoding` header to handle case-insensitive values ([#5890](https://github.com/axios/axios/issues/5890)) ([#5892](https://github.com/axios/axios/issues/5892)) ([4c89f25](https://github.com/axios/axios/commit/4c89f25196525e90a6e75eda9cb31ae0a2e18acd))
359
+ * **types:** removed duplicated code ([9e62056](https://github.com/axios/axios/commit/9e6205630e1c9cf863adf141c0edb9e6d8d4b149))
360
+
361
+ ### Contributors to this release
362
+
363
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+89/-18 (#5919 #5917 )")
364
+ - <img src="https://avatars.githubusercontent.com/u/110460234?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [David Dallas](https://github.com/DavidJDallas "+11/-5 ()")
365
+ - <img src="https://avatars.githubusercontent.com/u/71556073?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Sean Sattler](https://github.com/fb-sean "+2/-8 ()")
366
+ - <img src="https://avatars.githubusercontent.com/u/4294069?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Mustafa Ateş Uzun](https://github.com/0o001 "+4/-4 ()")
367
+ - <img src="https://avatars.githubusercontent.com/u/132928043?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Przemyslaw Motacki](https://github.com/sfc-gh-pmotacki "+2/-1 (#5892 )")
368
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan "+1/-1 ()")
369
+
370
+ ### PRs
371
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
372
+ ```
373
+
374
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
375
+ ```
376
+
377
+ # [1.5.0](https://github.com/axios/axios/compare/v1.4.0...v1.5.0) (2023-08-26)
378
+
379
+
380
+ ### Bug Fixes
381
+
382
+ * **adapter:** make adapter loading error more clear by using platform-specific adapters explicitly ([#5837](https://github.com/axios/axios/issues/5837)) ([9a414bb](https://github.com/axios/axios/commit/9a414bb6c81796a95c6c7fe668637825458e8b6d))
383
+ * **dns:** fixed `cacheable-lookup` integration; ([#5836](https://github.com/axios/axios/issues/5836)) ([b3e327d](https://github.com/axios/axios/commit/b3e327dcc9277bdce34c7ef57beedf644b00d628))
384
+ * **headers:** added support for setting header names that overlap with class methods; ([#5831](https://github.com/axios/axios/issues/5831)) ([d8b4ca0](https://github.com/axios/axios/commit/d8b4ca0ea5f2f05efa4edfe1e7684593f9f68273))
385
+ * **headers:** fixed common Content-Type header merging; ([#5832](https://github.com/axios/axios/issues/5832)) ([8fda276](https://github.com/axios/axios/commit/8fda2766b1e6bcb72c3fabc146223083ef13ce17))
386
+
387
+
388
+ ### Features
389
+
390
+ * export getAdapter function ([#5324](https://github.com/axios/axios/issues/5324)) ([ca73eb8](https://github.com/axios/axios/commit/ca73eb878df0ae2dace81fe3a7f1fb5986231bf1))
391
+ * **export:** export adapters without `unsafe` prefix ([#5839](https://github.com/axios/axios/issues/5839)) ([1601f4a](https://github.com/axios/axios/commit/1601f4a27a81ab47fea228f1e244b2c4e3ce28bf))
392
+
393
+ ### Contributors to this release
394
+
395
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+66/-29 (#5839 #5837 #5836 #5832 #5831 )")
396
+ - <img src="https://avatars.githubusercontent.com/u/102841186?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [夜葬](https://github.com/geekact "+42/-0 (#5324 )")
397
+ - <img src="https://avatars.githubusercontent.com/u/65978976?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Jonathan Budiman](https://github.com/JBudiman00 "+30/-0 (#5788 )")
398
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan "+3/-5 (#5791 )")
399
+
400
+ ### PRs
401
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
402
+ ```
403
+
404
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
405
+ ```
406
+
407
+ # [1.4.0](https://github.com/axios/axios/compare/v1.3.6...v1.4.0) (2023-04-27)
408
+
409
+
410
+ ### Bug Fixes
411
+
412
+ * **formdata:** add `multipart/form-data` content type for FormData payload on custom client environments; ([#5678](https://github.com/axios/axios/issues/5678)) ([bbb61e7](https://github.com/axios/axios/commit/bbb61e70cb1185adfb1cbbb86eaf6652c48d89d1))
413
+ * **package:** export package internals with unsafe path prefix; ([#5677](https://github.com/axios/axios/issues/5677)) ([df38c94](https://github.com/axios/axios/commit/df38c949f26414d88ba29ec1e353c4d4f97eaf09))
414
+
415
+
416
+ ### Features
417
+
418
+ * **dns:** added support for a custom lookup function; ([#5339](https://github.com/axios/axios/issues/5339)) ([2701911](https://github.com/axios/axios/commit/2701911260a1faa5cc5e1afe437121b330a3b7bb))
419
+ * **types:** export `AxiosHeaderValue` type. ([#5525](https://github.com/axios/axios/issues/5525)) ([726f1c8](https://github.com/axios/axios/commit/726f1c8e00cffa0461a8813a9bdcb8f8b9d762cf))
420
+
421
+
422
+ ### Performance Improvements
423
+
424
+ * **merge-config:** optimize mergeConfig performance by avoiding duplicate key visits; ([#5679](https://github.com/axios/axios/issues/5679)) ([e6f7053](https://github.com/axios/axios/commit/e6f7053bf1a3e87cf1f9da8677e12e3fe829d68e))
425
+
426
+ ### Contributors to this release
427
+
428
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+151/-16 (#5684 #5339 #5679 #5678 #5677 )")
429
+ - <img src="https://avatars.githubusercontent.com/u/47537704?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Arthur Fiorette](https://github.com/arthurfiorette "+19/-19 (#5525 )")
430
+ - <img src="https://avatars.githubusercontent.com/u/43876655?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [PIYUSH NEGI](https://github.com/npiyush97 "+2/-18 (#5670 )")
431
+
432
+ ### PRs
433
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
434
+ ```
435
+
436
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
437
+ ```
438
+
439
+ ## [1.3.6](https://github.com/axios/axios/compare/v1.3.5...v1.3.6) (2023-04-19)
440
+
441
+
442
+ ### Bug Fixes
443
+
444
+ * **types:** added transport to RawAxiosRequestConfig ([#5445](https://github.com/axios/axios/issues/5445)) ([6f360a2](https://github.com/axios/axios/commit/6f360a2531d8d70363fd9becef6a45a323f170e2))
445
+ * **utils:** make isFormData detection logic stricter to avoid unnecessary calling of the `toString` method on the target; ([#5661](https://github.com/axios/axios/issues/5661)) ([aa372f7](https://github.com/axios/axios/commit/aa372f7306295dfd1100c1c2c77ce95c95808e76))
446
+
447
+ ### Contributors to this release
448
+
449
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+48/-10 (#5665 #5661 #5663 )")
450
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan "+2/-0 (#5445 )")
451
+
452
+ ### PRs
453
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
454
+ ```
455
+
456
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
457
+ ```
458
+
459
+ ## [1.3.5](https://github.com/axios/axios/compare/v1.3.4...v1.3.5) (2023-04-05)
460
+
461
+
462
+ ### Bug Fixes
463
+
464
+ * **headers:** fixed isValidHeaderName to support full list of allowed characters; ([#5584](https://github.com/axios/axios/issues/5584)) ([e7decef](https://github.com/axios/axios/commit/e7decef6a99f4627e27ed9ea5b00ce8e201c3841))
465
+ * **params:** re-added the ability to set the function as `paramsSerializer` config; ([#5633](https://github.com/axios/axios/issues/5633)) ([a56c866](https://github.com/axios/axios/commit/a56c8661209d5ce5a645a05f294a0e08a6c1f6b3))
466
+
467
+ ### Contributors to this release
468
+
469
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+28/-10 (#5633 #5584 )")
470
+
471
+ ### PRs
472
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
473
+ ```
474
+
475
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
476
+ ```
477
+
478
+ ## [1.3.4](https://github.com/axios/axios/compare/v1.3.3...v1.3.4) (2023-02-22)
479
+
480
+
481
+ ### Bug Fixes
482
+
483
+ * **blob:** added a check to make sure the Blob class is available in the browser's global scope; ([#5548](https://github.com/axios/axios/issues/5548)) ([3772c8f](https://github.com/axios/axios/commit/3772c8fe74112a56e3e9551f894d899bc3a9443a))
484
+ * **http:** fixed regression bug when handling synchronous errors inside the adapter; ([#5564](https://github.com/axios/axios/issues/5564)) ([a3b246c](https://github.com/axios/axios/commit/a3b246c9de5c3bc4b5a742e15add55b375479451))
485
+
486
+ ### Contributors to this release
487
+
488
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+38/-26 (#5564 )")
489
+ - <img src="https://avatars.githubusercontent.com/u/19550000?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [lcysgsg](https://github.com/lcysgsg "+4/-0 (#5548 )")
490
+ - <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://github.com/Cadienvan "+3/-0 (#5444 )")
491
+
492
+ ### PRs
493
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
494
+ ```
495
+
496
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
497
+ ```
498
+
499
+ ## [1.3.3](https://github.com/axios/axios/compare/v1.3.2...v1.3.3) (2023-02-13)
500
+
501
+
502
+ ### Bug Fixes
503
+
504
+ * **formdata:** added a check to make sure the FormData class is available in the browser's global scope; ([#5545](https://github.com/axios/axios/issues/5545)) ([a6dfa72](https://github.com/axios/axios/commit/a6dfa72010db5ad52db8bd13c0f98e537e8fd05d))
505
+ * **formdata:** fixed setting NaN as Content-Length for form payload in some cases; ([#5535](https://github.com/axios/axios/issues/5535)) ([c19f7bf](https://github.com/axios/axios/commit/c19f7bf770f90ae8307f4ea3104f227056912da1))
506
+ * **headers:** fixed the filtering logic of the clear method; ([#5542](https://github.com/axios/axios/issues/5542)) ([ea87ebf](https://github.com/axios/axios/commit/ea87ebfe6d1699af072b9e7cd40faf8f14b0ab93))
507
+
508
+ ### Contributors to this release
509
+
510
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+11/-7 (#5545 #5535 #5542 )")
511
+ - <img src="https://avatars.githubusercontent.com/u/19842213?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [陈若枫](https://github.com/ruofee "+2/-2 (#5467 )")
512
+
513
+ ### PRs
514
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
515
+ ```
516
+
517
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
518
+ ```
519
+
520
+ ## [1.3.2](https://github.com/axios/axios/compare/v1.3.1...v1.3.2) (2023-02-03)
521
+
522
+
523
+ ### Bug Fixes
524
+
525
+ * **http:** treat http://localhost as base URL for relative paths to avoid `ERR_INVALID_URL` error; ([#5528](https://github.com/axios/axios/issues/5528)) ([128d56f](https://github.com/axios/axios/commit/128d56f4a0fb8f5f2ed6e0dd80bc9225fee9538c))
526
+ * **http:** use explicit import instead of TextEncoder global; ([#5530](https://github.com/axios/axios/issues/5530)) ([6b3c305](https://github.com/axios/axios/commit/6b3c305fc40c56428e0afabedc6f4d29c2830f6f))
527
+
528
+ ### Contributors to this release
529
+
530
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+2/-1 (#5530 #5528 )")
531
+
532
+ ### PRs
533
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
534
+ ```
535
+
536
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
537
+ ```
538
+
539
+ ## [1.3.1](https://github.com/axios/axios/compare/v1.3.0...v1.3.1) (2023-02-01)
540
+
541
+
542
+ ### Bug Fixes
543
+
544
+ * **formdata:** add hotfix to use the asynchronous API to compute the content-length header value; ([#5521](https://github.com/axios/axios/issues/5521)) ([96d336f](https://github.com/axios/axios/commit/96d336f527619f21da012fe1f117eeb53e5a2120))
545
+ * **serializer:** fixed serialization of array-like objects; ([#5518](https://github.com/axios/axios/issues/5518)) ([08104c0](https://github.com/axios/axios/commit/08104c028c0f9353897b1b6691d74c440fd0c32d))
546
+
547
+ ### Contributors to this release
548
+
549
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+27/-8 (#5521 #5518 )")
550
+
551
+ ### PRs
552
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
553
+ ```
554
+
555
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
556
+ ```
557
+
558
+ # [1.3.0](https://github.com/axios/axios/compare/v1.2.6...v1.3.0) (2023-01-31)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * **headers:** fixed & optimized clear method; ([#5507](https://github.com/axios/axios/issues/5507)) ([9915635](https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959))
564
+ * **http:** add zlib headers if missing ([#5497](https://github.com/axios/axios/issues/5497)) ([65e8d1e](https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c))
565
+
566
+
567
+ ### Features
568
+
569
+ * **fomdata:** added support for spec-compliant FormData & Blob types; ([#5316](https://github.com/axios/axios/issues/5316)) ([6ac574e](https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953))
570
+
571
+ ### Contributors to this release
572
+
573
+ - <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+352/-67 (#5514 #5512 #5510 #5509 #5508 #5316 #5507 )")
574
+ - <img src="https://avatars.githubusercontent.com/u/35015993?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [ItsNotGoodName](https://github.com/ItsNotGoodName "+43/-2 (#5497 )")
575
+
576
+ ### PRs
577
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
578
+ ```
579
+
580
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
581
+ ```
582
+
583
+ ## [1.2.6](https://github.com/axios/axios/compare/v1.2.5...v1.2.6) (2023-01-28)
584
+
585
+
586
+ ### Bug Fixes
587
+
588
+ * **headers:** added missed Authorization accessor; ([#5502](https://github.com/axios/axios/issues/5502)) ([342c0ba](https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26))
589
+ * **types:** fixed `CommonRequestHeadersList` & `CommonResponseHeadersList` types to be private in commonJS; ([#5503](https://github.com/axios/axios/issues/5503)) ([5a3d0a3](https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c))
590
+
591
+ ### Contributors to this release
592
+
593
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+24/-9 (#5503 #5502 )")
594
+
595
+ ### PRs
596
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
597
+ ```
598
+
599
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
600
+ ```
601
+
602
+ ## [1.2.5](https://github.com/axios/axios/compare/v1.2.4...v1.2.5) (2023-01-26)
603
+
604
+
605
+ ### Bug Fixes
606
+
607
+ * **types:** fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; ([#5499](https://github.com/axios/axios/issues/5499)) ([580f1e8](https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22))
608
+
609
+ ### Contributors to this release
610
+
611
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+82/-54 (#5499 )")
612
+ - ![avatar](https://avatars.githubusercontent.com/u/20516159?v&#x3D;4&amp;s&#x3D;16) [Elliot Ford](https://github.com/EFord36 "+1/-1 (#5462 )")
613
+
614
+ ### PRs
615
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
616
+ ```
617
+
618
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
619
+ ```
620
+
621
+ ## [1.2.4](https://github.com/axios/axios/compare/v1.2.3...v1.2.4) (2023-01-22)
622
+
623
+
624
+ ### Bug Fixes
625
+
626
+ * **types:** renamed `RawAxiosRequestConfig` back to `AxiosRequestConfig`; ([#5486](https://github.com/axios/axios/issues/5486)) ([2a71f49](https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0))
627
+ * **types:** fix `AxiosRequestConfig` generic; ([#5478](https://github.com/axios/axios/issues/5478)) ([9bce81b](https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b))
628
+
629
+ ### Contributors to this release
630
+
631
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+242/-108 (#5486 #5482 )")
632
+ - ![avatar](https://avatars.githubusercontent.com/u/9430821?v&#x3D;4&amp;s&#x3D;16) [Daniel Hillmann](https://github.com/hilleer "+1/-1 (#5478 )")
633
+
634
+ ### PRs
635
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
636
+ ```
637
+
638
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
639
+ ```
640
+
641
+ ## [1.2.3](https://github.com/axios/axios/compare/1.2.2...1.2.3) (2023-01-10)
642
+
643
+
644
+ ### Bug Fixes
645
+
646
+ * **types:** fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; ([#5420](https://github.com/axios/axios/issues/5420)) ([0811963](https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc))
647
+
648
+ ### Contributors to this release
649
+
650
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+938/-442 (#5456 #5455 #5453 #5451 #5449 #5447 #5446 #5443 #5442 #5439 #5420 )")
651
+
652
+ ### PRs
653
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
654
+ ```
655
+
656
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
657
+ ```
658
+
659
+ ## [1.2.2] - 2022-12-29
660
+
661
+ ### Fixed
662
+ - fix(ci): fix release script inputs [#5392](https://github.com/axios/axios/pull/5392)
663
+ - fix(ci): prerelease scipts [#5377](https://github.com/axios/axios/pull/5377)
664
+ - fix(ci): release scripts [#5376](https://github.com/axios/axios/pull/5376)
665
+ - fix(ci): typescript tests [#5375](https://github.com/axios/axios/pull/5375)
666
+ - fix: Brotli decompression [#5353](https://github.com/axios/axios/pull/5353)
667
+ - fix: add missing HttpStatusCode [#5345](https://github.com/axios/axios/pull/5345)
668
+
669
+ ### Chores
670
+ - chore(ci): set conventional-changelog header config [#5406](https://github.com/axios/axios/pull/5406)
671
+ - chore(ci): fix automatic contributors resolving [#5403](https://github.com/axios/axios/pull/5403)
672
+ - chore(ci): improved logging for the contributors list generator [#5398](https://github.com/axios/axios/pull/5398)
673
+ - chore(ci): fix release action [#5397](https://github.com/axios/axios/pull/5397)
674
+ - chore(ci): fix version bump script by adding bump argument for target version [#5393](https://github.com/axios/axios/pull/5393)
675
+ - chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 [#5342](https://github.com/axios/axios/pull/5342)
676
+ - chore(ci): GitHub Actions Release script [#5384](https://github.com/axios/axios/pull/5384)
677
+ - chore(ci): release scripts [#5364](https://github.com/axios/axios/pull/5364)
678
+
679
+ ### Contributors to this release
680
+ - ![avatar](https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;16) [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
681
+ - ![avatar](https://avatars.githubusercontent.com/u/1652293?v&#x3D;4&amp;s&#x3D;16) [Winnie](https://github.com/winniehell)
682
+
683
+ ## [1.2.1] - 2022-12-05
684
+
685
+ ### Changed
686
+ - feat(exports): export mergeConfig [#5151](https://github.com/axios/axios/pull/5151)
687
+
688
+ ### Fixed
689
+ - fix(CancelledError): include config [#4922](https://github.com/axios/axios/pull/4922)
690
+ - fix(general): removing multiple/trailing/leading whitespace [#5022](https://github.com/axios/axios/pull/5022)
691
+ - fix(headers): decompression for responses without Content-Length header [#5306](https://github.com/axios/axios/pull/5306)
692
+ - fix(webWorker): exception to sending form data in web worker [#5139](https://github.com/axios/axios/pull/5139)
693
+
694
+ ### Refactors
695
+ - refactor(types): AxiosProgressEvent.event type to any [#5308](https://github.com/axios/axios/pull/5308)
696
+ - refactor(types): add missing types for static AxiosError.from method [#4956](https://github.com/axios/axios/pull/4956)
697
+
698
+ ### Chores
699
+ - chore(docs): remove README link to non-existent upgrade guide [#5307](https://github.com/axios/axios/pull/5307)
700
+ - chore(docs): typo in issue template name [#5159](https://github.com/axios/axios/pull/5159)
701
+
702
+ ### Contributors to this release
703
+
704
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
705
+ - [Zachary Lysobey](https://github.com/zachlysobey)
706
+ - [Kevin Ennis](https://github.com/kevincennis)
707
+ - [Philipp Loose](https://github.com/phloose)
708
+ - [secondl1ght](https://github.com/secondl1ght)
709
+ - [wenzheng](https://github.com/0x30)
710
+ - [Ivan Barsukov](https://github.com/ovarn)
711
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
712
+
713
+ ### PRs
714
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
715
+ ```
716
+
717
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
718
+ ```
719
+
720
+ ## [1.2.0] - 2022-11-10
721
+
722
+ ### Changed
723
+
724
+ - changed: refactored module exports [#5162](https://github.com/axios/axios/pull/5162)
725
+ - change: re-added support for loading Axios with require('axios').default [#5225](https://github.com/axios/axios/pull/5225)
726
+
727
+ ### Fixed
728
+
729
+ - fix: improve AxiosHeaders class [#5224](https://github.com/axios/axios/pull/5224)
730
+ - fix: TypeScript type definitions for commonjs [#5196](https://github.com/axios/axios/pull/5196)
731
+ - fix: type definition of use method on AxiosInterceptorManager to match the the README [#5071](https://github.com/axios/axios/pull/5071)
732
+ - fix: __dirname is not defined in the sandbox [#5269](https://github.com/axios/axios/pull/5269)
733
+ - fix: AxiosError.toJSON method to avoid circular references [#5247](https://github.com/axios/axios/pull/5247)
734
+ - fix: Z_BUF_ERROR when content-encoding is set but the response body is empty [#5250](https://github.com/axios/axios/pull/5250)
735
+
736
+ ### Refactors
737
+ - refactor: allowing adapters to be loaded by name [#5277](https://github.com/axios/axios/pull/5277)
738
+
739
+ ### Chores
740
+
741
+ - chore: force CI restart [#5243](https://github.com/axios/axios/pull/5243)
742
+ - chore: update ECOSYSTEM.md [#5077](https://github.com/axios/axios/pull/5077)
743
+ - chore: update get/index.html [#5116](https://github.com/axios/axios/pull/5116)
744
+ - chore: update Sandbox UI/UX [#5205](https://github.com/axios/axios/pull/5205)
745
+ - chore:(actions): remove git credentials after checkout [#5235](https://github.com/axios/axios/pull/5235)
746
+ - chore(actions): bump actions/dependency-review-action from 2 to 3 [#5266](https://github.com/axios/axios/pull/5266)
747
+ - chore(packages): bump loader-utils from 1.4.1 to 1.4.2 [#5295](https://github.com/axios/axios/pull/5295)
748
+ - chore(packages): bump engine.io from 6.2.0 to 6.2.1 [#5294](https://github.com/axios/axios/pull/5294)
749
+ - chore(packages): bump socket.io-parser from 4.0.4 to 4.0.5 [#5241](https://github.com/axios/axios/pull/5241)
750
+ - chore(packages): bump loader-utils from 1.4.0 to 1.4.1 [#5245](https://github.com/axios/axios/pull/5245)
751
+ - chore(docs): update Resources links in README [#5119](https://github.com/axios/axios/pull/5119)
752
+ - chore(docs): update the link for JSON url [#5265](https://github.com/axios/axios/pull/5265)
753
+ - chore(docs): fix broken links [#5218](https://github.com/axios/axios/pull/5218)
754
+ - chore(docs): update and rename UPGRADE_GUIDE.md to MIGRATION_GUIDE.md [#5170](https://github.com/axios/axios/pull/5170)
755
+ - chore(docs): typo fix line #856 and #920 [#5194](https://github.com/axios/axios/pull/5194)
756
+ - chore(docs): typo fix #800 [#5193](https://github.com/axios/axios/pull/5193)
757
+ - chore(docs): fix typos [#5184](https://github.com/axios/axios/pull/5184)
758
+ - chore(docs): fix punctuation in README.md [#5197](https://github.com/axios/axios/pull/5197)
759
+ - chore(docs): update readme in the Handling Errors section - issue reference #5260 [#5261](https://github.com/axios/axios/pull/5261)
760
+ - chore: remove \b from filename [#5207](https://github.com/axios/axios/pull/5207)
761
+ - chore(docs): update CHANGELOG.md [#5137](https://github.com/axios/axios/pull/5137)
762
+ - chore: add sideEffects false to package.json [#5025](https://github.com/axios/axios/pull/5025)
763
+
764
+ ### Contributors to this release
765
+
766
+ - [Maddy Miller](https://github.com/me4502)
767
+ - [Amit Saini](https://github.com/amitsainii)
768
+ - [ecyrbe](https://github.com/ecyrbe)
769
+ - [Ikko Ashimine](https://github.com/eltociear)
770
+ - [Geeth Gunnampalli](https://github.com/thetechie7)
771
+ - [Shreem Asati](https://github.com/shreem-123)
772
+ - [Frieder Bluemle](https://github.com/friederbluemle)
773
+ - [윤세영](https://github.com/yunseyeong)
774
+ - [Claudio Busatto](https://github.com/cjcbusatto)
775
+ - [Remco Haszing](https://github.com/remcohaszing)
776
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
777
+ - [Csaba Maulis](https://github.com/om4csaba)
778
+ - [MoPaMo](https://github.com/MoPaMo)
779
+ - [Daniel Fjeldstad](https://github.com/w3bdesign)
780
+ - [Adrien Brunet](https://github.com/adrien-may)
781
+ - [Frazer Smith](https://github.com/Fdawgs)
782
+ - [HaiTao](https://github.com/836334258)
783
+ - [AZM](https://github.com/aziyatali)
784
+ - [relbns](https://github.com/relbns)
785
+
786
+ ### PRs
787
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
788
+ ```
789
+
790
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
791
+ ```
792
+
793
+ ## [1.1.3] - 2022-10-15
794
+
795
+ ### Added
796
+
797
+ - Added custom params serializer support [#5113](https://github.com/axios/axios/pull/5113)
798
+
799
+ ### Fixed
800
+
801
+ - Fixed top-level export to keep them in-line with static properties [#5109](https://github.com/axios/axios/pull/5109)
802
+ - Stopped including null values to query string. [#5108](https://github.com/axios/axios/pull/5108)
803
+ - Restored proxy config backwards compatibility with 0.x [#5097](https://github.com/axios/axios/pull/5097)
804
+ - Added back AxiosHeaders in AxiosHeaderValue [#5103](https://github.com/axios/axios/pull/5103)
805
+ - Pin CDN install instructions to a specific version [#5060](https://github.com/axios/axios/pull/5060)
806
+ - Handling of array values fixed for AxiosHeaders [#5085](https://github.com/axios/axios/pull/5085)
807
+
808
+ ### Chores
809
+
810
+ - docs: match badge style, add link to them [#5046](https://github.com/axios/axios/pull/5046)
811
+ - chore: fixing comments typo [#5054](https://github.com/axios/axios/pull/5054)
812
+ - chore: update issue template [#5061](https://github.com/axios/axios/pull/5061)
813
+ - chore: added progress capturing section to the docs; [#5084](https://github.com/axios/axios/pull/5084)
814
+
815
+ ### Contributors to this release
816
+
817
+ - [Jason Saayman](https://github.com/jasonsaayman)
818
+ - [scarf](https://github.com/scarf005)
819
+ - [Lenz Weber-Tronic](https://github.com/phryneas)
820
+ - [Arvindh](https://github.com/itsarvindh)
821
+ - [Félix Legrelle](https://github.com/FelixLgr)
822
+ - [Patrick Petrovic](https://github.com/ppati000)
823
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
824
+ - [littledian](https://github.com/littledian)
825
+ - [ChronosMasterOfAllTime](https://github.com/ChronosMasterOfAllTime)
826
+
827
+ ### PRs
828
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
829
+ ```
830
+
831
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
832
+ ```
833
+
834
+ ## [1.1.2] - 2022-10-07
835
+
836
+ ### Fixed
837
+
838
+ - Fixed broken exports for UMD builds.
839
+
840
+ ### Contributors to this release
841
+
842
+ - [Jason Saayman](https://github.com/jasonsaayman)
843
+
844
+ ### PRs
845
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
846
+ ```
847
+
848
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
849
+ ```
850
+
851
+ ## [1.1.1] - 2022-10-07
852
+
853
+ ### Fixed
854
+
855
+ - Fixed broken exports for common js. This fix breaks a prior fix, I will fix both issues ASAP but the commonJS use is more impactful.
856
+
857
+ ### Contributors to this release
858
+
859
+ - [Jason Saayman](https://github.com/jasonsaayman)
860
+
861
+ ### PRs
862
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
863
+ ```
864
+
865
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
866
+ ```
867
+
868
+ ## [1.1.0] - 2022-10-06
869
+
870
+ ### Fixed
871
+
872
+ - Fixed missing exports in type definition index.d.ts [#5003](https://github.com/axios/axios/pull/5003)
873
+ - Fixed query params composing [#5018](https://github.com/axios/axios/pull/5018)
874
+ - Fixed GenericAbortSignal interface by making it more generic [#5021](https://github.com/axios/axios/pull/5021)
875
+ - Fixed adding "clear" to AxiosInterceptorManager [#5010](https://github.com/axios/axios/pull/5010)
876
+ - Fixed commonjs & umd exports [#5030](https://github.com/axios/axios/pull/5030)
877
+ - Fixed inability to access response headers when using axios 1.x with Jest [#5036](https://github.com/axios/axios/pull/5036)
878
+
879
+ ### Contributors to this release
880
+
881
+ - [Trim21](https://github.com/trim21)
882
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
883
+ - [shingo.sasaki](https://github.com/s-sasaki-0529)
884
+ - [Ivan Pepelko](https://github.com/ivanpepelko)
885
+ - [Richard Kořínek](https://github.com/risa)
886
+
887
+ ### PRs
888
+ - CVE 2023 45857 ( [#6028](https://api.github.com/repos/axios/axios/pulls/6028) )
889
+ ```
890
+
891
+ ⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459
892
+ ```
893
+
894
+ ## [1.0.0] - 2022-10-04
895
+
896
+ ### Added
897
+
898
+ - Added stack trace to AxiosError [#4624](https://github.com/axios/axios/pull/4624)
899
+ - Add AxiosError to AxiosStatic [#4654](https://github.com/axios/axios/pull/4654)
900
+ - Replaced Rollup as our build runner [#4596](https://github.com/axios/axios/pull/4596)
901
+ - Added generic TS types for the exposed toFormData helper [#4668](https://github.com/axios/axios/pull/4668)
902
+ - Added listen callback function [#4096](https://github.com/axios/axios/pull/4096)
903
+ - Added instructions for installing using PNPM [#4207](https://github.com/axios/axios/pull/4207)
904
+ - Added generic AxiosAbortSignal TS interface to avoid importing AbortController polyfill [#4229](https://github.com/axios/axios/pull/4229)
905
+ - Added axios-url-template in ECOSYSTEM.md [#4238](https://github.com/axios/axios/pull/4238)
906
+ - Added a clear() function to the request and response interceptors object so a user can ensure that all interceptors have been removed from an axios instance [#4248](https://github.com/axios/axios/pull/4248)
907
+ - Added react hook plugin [#4319](https://github.com/axios/axios/pull/4319)
908
+ - Adding HTTP status code for transformResponse [#4580](https://github.com/axios/axios/pull/4580)
909
+ - Added blob to the list of protocols supported by the browser [#4678](https://github.com/axios/axios/pull/4678)
910
+ - Resolving proxy from env on redirect [#4436](https://github.com/axios/axios/pull/4436)
911
+ - Added enhanced toFormData implementation with additional options [4704](https://github.com/axios/axios/pull/4704)
912
+ - Adding Canceler parameters config and request [#4711](https://github.com/axios/axios/pull/4711)
913
+ - Added automatic payload serialization to application/x-www-form-urlencoded [#4714](https://github.com/axios/axios/pull/4714)
914
+ - Added the ability for webpack users to overwrite built-ins [#4715](https://github.com/axios/axios/pull/4715)
915
+ - Added string[] to AxiosRequestHeaders type [#4322](https://github.com/axios/axios/pull/4322)
916
+ - Added the ability for the url-encoded-form serializer to respect the formSerializer config [#4721](https://github.com/axios/axios/pull/4721)
917
+ - Added isCancel type assert [#4293](https://github.com/axios/axios/pull/4293)
918
+ - Added data URL support for node.js [#4725](https://github.com/axios/axios/pull/4725)
919
+ - Adding types for progress event callbacks [#4675](https://github.com/axios/axios/pull/4675)
920
+ - URL params serializer [#4734](https://github.com/axios/axios/pull/4734)
921
+ - Added axios.formToJSON method [#4735](https://github.com/axios/axios/pull/4735)
922
+ - Bower platform add data protocol [#4804](https://github.com/axios/axios/pull/4804)
923
+ - Use WHATWG URL API instead of url.parse() [#4852](https://github.com/axios/axios/pull/4852)
924
+ - Add ENUM containing Http Status Codes to typings [#4903](https://github.com/axios/axios/pull/4903)
925
+ - Improve typing of timeout in index.d.ts [#4934](https://github.com/axios/axios/pull/4934)
926
+
927
+ ### Changed
928
+
929
+ - Updated AxiosError.config to be optional in the type definition [#4665](https://github.com/axios/axios/pull/4665)
930
+ - Updated README emphasizing the URLSearchParam built-in interface over other solutions [#4590](https://github.com/axios/axios/pull/4590)
931
+ - Include request and config when creating a CanceledError instance [#4659](https://github.com/axios/axios/pull/4659)
932
+ - Changed func-names eslint rule to as-needed [#4492](https://github.com/axios/axios/pull/4492)
933
+ - Replacing deprecated substr() with slice() as substr() is deprecated [#4468](https://github.com/axios/axios/pull/4468)
934
+ - Updating HTTP links in README.md to use HTTPS [#4387](https://github.com/axios/axios/pull/4387)
935
+ - Updated to a better trim() polyfill [#4072](https://github.com/axios/axios/pull/4072)
936
+ - Updated types to allow specifying partial default headers on instance create [#4185](https://github.com/axios/axios/pull/4185)
937
+ - Expanded isAxiosError types [#4344](https://github.com/axios/axios/pull/4344)
938
+ - Updated type definition for axios instance methods [#4224](https://github.com/axios/axios/pull/4224)
939
+ - Updated eslint config [#4722](https://github.com/axios/axios/pull/4722)
940
+ - Updated Docs [#4742](https://github.com/axios/axios/pull/4742)
941
+ - Refactored Axios to use ES2017 [#4787](https://github.com/axios/axios/pull/4787)
942
+
943
+
944
+ ### Deprecated
945
+ - There are multiple deprecations, refactors and fixes provided in this release. Please read through the full release notes to see how this may impact your project and use case.
946
+
947
+ ### Removed
948
+
949
+ - Removed incorrect argument for NetworkError constructor [#4656](https://github.com/axios/axios/pull/4656)
950
+ - Removed Webpack [#4596](https://github.com/axios/axios/pull/4596)
951
+ - Removed function that transform arguments to array [#4544](https://github.com/axios/axios/pull/4544)
952
+
953
+ ### Fixed
954
+
955
+ - Fixed grammar in README [#4649](https://github.com/axios/axios/pull/4649)
956
+ - Fixed code error in README [#4599](https://github.com/axios/axios/pull/4599)
957
+ - Optimized the code that checks cancellation [#4587](https://github.com/axios/axios/pull/4587)
958
+ - Fix url pointing to defaults.js in README [#4532](https://github.com/axios/axios/pull/4532)
959
+ - Use type alias instead of interface for AxiosPromise [#4505](https://github.com/axios/axios/pull/4505)
960
+ - Fix some word spelling and lint style in code comments [#4500](https://github.com/axios/axios/pull/4500)
961
+ - Edited readme with 3 updated browser icons of Chrome, FireFox and Safari [#4414](https://github.com/axios/axios/pull/4414)
962
+ - Bump follow-redirects from 1.14.9 to 1.15.0 [#4673](https://github.com/axios/axios/pull/4673)
963
+ - Fixing http tests to avoid hanging when assertions fail [#4435](https://github.com/axios/axios/pull/4435)
964
+ - Fix TS definition for AxiosRequestTransformer [#4201](https://github.com/axios/axios/pull/4201)
965
+ - Fix grammatical issues in README [#4232](https://github.com/axios/axios/pull/4232)
966
+ - Fixing instance.defaults.headers type [#4557](https://github.com/axios/axios/pull/4557)
967
+ - Fixed race condition on immediate requests cancellation [#4261](https://github.com/axios/axios/pull/4261)
968
+ - Fixing Z_BUF_ERROR when no content [#4701](https://github.com/axios/axios/pull/4701)
969
+ - Fixing proxy beforeRedirect regression [#4708](https://github.com/axios/axios/pull/4708)
970
+ - Fixed AxiosError status code type [#4717](https://github.com/axios/axios/pull/4717)
971
+ - Fixed AxiosError stack capturing [#4718](https://github.com/axios/axios/pull/4718)
972
+ - Fixing AxiosRequestHeaders typings [#4334](https://github.com/axios/axios/pull/4334)
973
+ - Fixed max body length defaults [#4731](https://github.com/axios/axios/pull/4731)
974
+ - Fixed toFormData Blob issue on node>v17 [#4728](https://github.com/axios/axios/pull/4728)
975
+ - Bump grunt from 1.5.2 to 1.5.3 [#4743](https://github.com/axios/axios/pull/4743)
976
+ - Fixing content-type header repeated [#4745](https://github.com/axios/axios/pull/4745)
977
+ - Fixed timeout error message for http [4738](https://github.com/axios/axios/pull/4738)
978
+ - Request ignores false, 0 and empty string as body values [#4785](https://github.com/axios/axios/pull/4785)
979
+ - Added back missing minified builds [#4805](https://github.com/axios/axios/pull/4805)
980
+ - Fixed a type error [#4815](https://github.com/axios/axios/pull/4815)
981
+ - Fixed a regression bug with unsubscribing from cancel token; [#4819](https://github.com/axios/axios/pull/4819)
982
+ - Remove repeated compression algorithm [#4820](https://github.com/axios/axios/pull/4820)
983
+ - The error of calling extend to pass parameters [#4857](https://github.com/axios/axios/pull/4857)
984
+ - SerializerOptions.indexes allows boolean | null | undefined [#4862](https://github.com/axios/axios/pull/4862)
985
+ - Require interceptors to return values [#4874](https://github.com/axios/axios/pull/4874)
986
+ - Removed unused imports [#4949](https://github.com/axios/axios/pull/4949)
987
+ - Allow null indexes on formSerializer and paramsSerializer [#4960](https://github.com/axios/axios/pull/4960)
988
+
989
+ ### Chores
990
+ - Set permissions for GitHub actions [#4765](https://github.com/axios/axios/pull/4765)
991
+ - Included githubactions in the dependabot config [#4770](https://github.com/axios/axios/pull/4770)
992
+ - Included dependency review [#4771](https://github.com/axios/axios/pull/4771)
993
+ - Update security.md [#4784](https://github.com/axios/axios/pull/4784)
994
+ - Remove unnecessary spaces [#4854](https://github.com/axios/axios/pull/4854)
995
+ - Simplify the import path of AxiosError [#4875](https://github.com/axios/axios/pull/4875)
996
+ - Fix Gitpod dead link [#4941](https://github.com/axios/axios/pull/4941)
997
+ - Enable syntax highlighting for a code block [#4970](https://github.com/axios/axios/pull/4970)
998
+ - Using Logo Axios in Readme.md [#4993](https://github.com/axios/axios/pull/4993)
999
+ - Fix markup for note in README [#4825](https://github.com/axios/axios/pull/4825)
1000
+ - Fix typo and formatting, add colons [#4853](https://github.com/axios/axios/pull/4853)
1001
+ - Fix typo in readme [#4942](https://github.com/axios/axios/pull/4942)
1002
+
1003
+ ### Security
1004
+
1005
+ - Update SECURITY.md [#4687](https://github.com/axios/axios/pull/4687)
1006
+
1007
+ ### Contributors to this release
1008
+
1009
+ - [Bertrand Marron](https://github.com/tusbar)
1010
+ - [Dmitriy Mozgovoy](https://github.com/DigitalBrainJS)
1011
+ - [Dan Mooney](https://github.com/danmooney)
1012
+ - [Michael Li](https://github.com/xiaoyu-tamu)
1013
+ - [aong](https://github.com/yxwzaxns)
1014
+ - [Des Preston](https://github.com/despreston)
1015
+ - [Ted Robertson](https://github.com/tredondo)
1016
+ - [zhoulixiang](https://github.com/zh-lx)
1017
+ - [Arthur Fiorette](https://github.com/arthurfiorette)
1018
+ - [Kumar Shanu](https://github.com/Kr-Shanu)
1019
+ - [JALAL](https://github.com/JLL32)
1020
+ - [Jingyi Lin](https://github.com/MageeLin)
1021
+ - [Philipp Loose](https://github.com/phloose)
1022
+ - [Alexander Shchukin](https://github.com/sashsvamir)
1023
+ - [Dave Cardwell](https://github.com/davecardwell)
1024
+ - [Cat Scarlet](https://github.com/catscarlet)
1025
+ - [Luca Pizzini](https://github.com/lpizzinidev)
1026
+ - [Kai](https://github.com/Schweinepriester)
1027
+ - [Maxime Bargiel](https://github.com/mbargiel)
1028
+ - [Brian Helba](https://github.com/brianhelba)
1029
+ - [reslear](https://github.com/reslear)
1030
+ - [Jamie Slome](https://github.com/JamieSlome)
1031
+ - [Landro3](https://github.com/Landro3)
1032
+ - [rafw87](https://github.com/rafw87)
1033
+ - [Afzal Sayed](https://github.com/afzalsayed96)
1034
+ - [Koki Oyatsu](https://github.com/kaishuu0123)
1035
+ - [Dave](https://github.com/wangcch)
1036
+ - [暴走老七](https://github.com/baozouai)
1037
+ - [Spencer](https://github.com/spalger)
1038
+ - [Adrian Wieprzkowicz](https://github.com/Argeento)
1039
+ - [Jamie Telin](https://github.com/lejahmie)
1040
+ - [毛呆](https://github.com/aweikalee)
1041
+ - [Kirill Shakirov](https://github.com/turisap)
1042
+ - [Rraji Abdelbari](https://github.com/estarossa0)
1043
+ - [Jelle Schutter](https://github.com/jelleschutter)
1044
+ - [Tom Ceuppens](https://github.com/KyorCode)
1045
+ - [Johann Cooper](https://github.com/JohannCooper)
1046
+ - [Dimitris Halatsis](https://github.com/mitsos1os)
1047
+ - [chenjigeng](https://github.com/chenjigeng)
1048
+ - [João Gabriel Quaresma](https://github.com/joaoGabriel55)
1049
+ - [Victor Augusto](https://github.com/VictorAugDB)
1050
+ - [neilnaveen](https://github.com/neilnaveen)
1051
+ - [Pavlos](https://github.com/psmoros)
1052
+ - [Kiryl Valkovich](https://github.com/visortelle)
1053
+ - [Naveen](https://github.com/naveensrinivasan)
1054
+ - [wenzheng](https://github.com/0x30)
1055
+ - [hcwhan](https://github.com/hcwhan)
1056
+ - [Bassel Rachid](https://github.com/basselworkforce)
1057
+ - [Grégoire Pineau](https://github.com/lyrixx)
1058
+ - [felipedamin](https://github.com/felipedamin)
1059
+ - [Karl Horky](https://github.com/karlhorky)
1060
+ - [Yue JIN](https://github.com/kingyue737)
1061
+ - [Usman Ali Siddiqui](https://github.com/usman250994)
1062
+ - [WD](https://github.com/techbirds)
1063
+ - [Günther Foidl](https://github.com/gfoidl)
1064
+ - [Stephen Jennings](https://github.com/jennings)
1065
+ - [C.T.Lin](https://github.com/chentsulin)
1066
+ - [mia-z](https://github.com/mia-z)
1067
+ - [Parth Banathia](https://github.com/Parth0105)
1068
+ - [parth0105pluang](https://github.com/parth0105pluang)
1069
+ - [Marco Weber](https://github.com/mrcwbr)
1070
+ - [Luca Pizzini](https://github.com/lpizzinidev)
1071
+ - [Willian Agostini](https://github.com/WillianAgostini)
1072
+ - [Huyen Nguyen](https://github.com/huyenltnguyen)