@quicktvui/ai 1.0.0

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 (676) hide show
  1. package/README.md +36 -0
  2. package/index.js +2 -0
  3. package/package.json +23 -0
  4. package/postinstall.js +61 -0
  5. package/rules/.claude/commands/create-component.md +39 -0
  6. package/rules/.claude/commands/create-page.md +44 -0
  7. package/rules/.claude/commands/create-project.md +25 -0
  8. package/rules/.claude/commands/lookup-api.md +28 -0
  9. package/rules/.claude/commands/lookup-css.md +53 -0
  10. package/rules/.claude/settings.local.json +11 -0
  11. package/rules/.clinerules +367 -0
  12. package/rules/.cursorrules +367 -0
  13. package/rules/.docs/examples/component/animation/alpha-props.vue +130 -0
  14. package/rules/.docs/examples/component/animation/alpha.vue +169 -0
  15. package/rules/.docs/examples/component/animation/animator-props.vue +101 -0
  16. package/rules/.docs/examples/component/animation/animators-props.vue +145 -0
  17. package/rules/.docs/examples/component/animation/animators.vue +322 -0
  18. package/rules/.docs/examples/component/animation/basic.vue +96 -0
  19. package/rules/.docs/examples/component/animation/interpolator.vue +330 -0
  20. package/rules/.docs/examples/component/animation/listener.vue +151 -0
  21. package/rules/.docs/examples/component/animation/repeat.vue +113 -0
  22. package/rules/.docs/examples/component/animation/rotation-props.vue +148 -0
  23. package/rules/.docs/examples/component/animation/rotation-xy.vue +255 -0
  24. package/rules/.docs/examples/component/animation/rotation.vue +188 -0
  25. package/rules/.docs/examples/component/animation/scale-props.vue +129 -0
  26. package/rules/.docs/examples/component/animation/scale.vue +169 -0
  27. package/rules/.docs/examples/component/animation/translation-props.vue +128 -0
  28. package/rules/.docs/examples/component/animation/translation.vue +169 -0
  29. package/rules/.docs/examples/component/aside/basic.vue +34 -0
  30. package/rules/.docs/examples/component/audio-player/basic.vue +104 -0
  31. package/rules/.docs/examples/component/audio-player/event-global.vue +492 -0
  32. package/rules/.docs/examples/component/audio-player/event.vue +447 -0
  33. package/rules/.docs/examples/component/audio-player/player-manager.vue +100 -0
  34. package/rules/.docs/examples/component/audio-player-service/basic.vue +102 -0
  35. package/rules/.docs/examples/component/audio-player-service/event-global.vue +488 -0
  36. package/rules/.docs/examples/component/audio-player-service/event.vue +420 -0
  37. package/rules/.docs/examples/component/audio-player-service/player-manager.vue +100 -0
  38. package/rules/.docs/examples/component/button/background.vue +28 -0
  39. package/rules/.docs/examples/component/button/basic.vue +13 -0
  40. package/rules/.docs/examples/component/button/border.vue +18 -0
  41. package/rules/.docs/examples/component/button/custom-content.vue +18 -0
  42. package/rules/.docs/examples/component/button/custom-icon-style.vue +25 -0
  43. package/rules/.docs/examples/component/button/custom-icon.vue +19 -0
  44. package/rules/.docs/examples/component/button/custom-net-icon.vue +20 -0
  45. package/rules/.docs/examples/component/button/custom-style.vue +17 -0
  46. package/rules/.docs/examples/component/button/custom-text.vue +23 -0
  47. package/rules/.docs/examples/component/button/disabled.vue +13 -0
  48. package/rules/.docs/examples/component/button/round.vue +13 -0
  49. package/rules/.docs/examples/component/button/size.vue +16 -0
  50. package/rules/.docs/examples/component/button/square.vue +13 -0
  51. package/rules/.docs/examples/component/checkbox-group/basic.vue +97 -0
  52. package/rules/.docs/examples/component/collapse/basic.vue +156 -0
  53. package/rules/.docs/examples/component/column/basic.vue +15 -0
  54. package/rules/.docs/examples/component/container/layout-ahm.vue +48 -0
  55. package/rules/.docs/examples/component/container/layout-ahmf.vue +51 -0
  56. package/rules/.docs/examples/component/container/layout-am.vue +43 -0
  57. package/rules/.docs/examples/component/container/layout-ham.vue +48 -0
  58. package/rules/.docs/examples/component/container/layout-hamf.vue +53 -0
  59. package/rules/.docs/examples/component/container/layout-hm.vue +43 -0
  60. package/rules/.docs/examples/component/container/layout-hmf.vue +46 -0
  61. package/rules/.docs/examples/component/dialog/basic.vue +72 -0
  62. package/rules/.docs/examples/component/div/background-img.vue +49 -0
  63. package/rules/.docs/examples/component/div/background.vue +28 -0
  64. package/rules/.docs/examples/component/div/basic.vue +28 -0
  65. package/rules/.docs/examples/component/div/border.vue +72 -0
  66. package/rules/.docs/examples/component/div/click.vue +66 -0
  67. package/rules/.docs/examples/component/div/focus-background.vue +60 -0
  68. package/rules/.docs/examples/component/div/focus.vue +58 -0
  69. package/rules/.docs/examples/component/div/gradient-background.vue +36 -0
  70. package/rules/.docs/examples/component/footer/basic.vue +34 -0
  71. package/rules/.docs/examples/component/grid-view/basic.vue +59 -0
  72. package/rules/.docs/examples/component/grid-view/page.vue +80 -0
  73. package/rules/.docs/examples/component/grid-view/ref-base.vue +50 -0
  74. package/rules/.docs/examples/component/grid-view/ref-page.vue +102 -0
  75. package/rules/.docs/examples/component/header/basic.vue +39 -0
  76. package/rules/.docs/examples/component/html/alert.vue +28 -0
  77. package/rules/.docs/examples/component/html/audio.vue +24 -0
  78. package/rules/.docs/examples/component/html/h.vue +30 -0
  79. package/rules/.docs/examples/component/html/sound.vue +33 -0
  80. package/rules/.docs/examples/component/html/video.vue +23 -0
  81. package/rules/.docs/examples/component/image/assets.vue +40 -0
  82. package/rules/.docs/examples/component/image/network.vue +36 -0
  83. package/rules/.docs/examples/component/img/assets.vue +40 -0
  84. package/rules/.docs/examples/component/img/network.vue +36 -0
  85. package/rules/.docs/examples/component/indicator-list-view/basic.vue +476 -0
  86. package/rules/.docs/examples/component/input/basic.vue +26 -0
  87. package/rules/.docs/examples/component/list-view/basic.vue +58 -0
  88. package/rules/.docs/examples/component/list-view/ref-basic.vue +33 -0
  89. package/rules/.docs/examples/component/list-view/ref-operations.vue +58 -0
  90. package/rules/.docs/examples/component/list-view/ref-page.vue +82 -0
  91. package/rules/.docs/examples/component/loading/basic.vue +12 -0
  92. package/rules/.docs/examples/component/lottie/basic.vue +83 -0
  93. package/rules/.docs/examples/component/lottie/event.vue +126 -0
  94. package/rules/.docs/examples/component/lottie/local.vue +90 -0
  95. package/rules/.docs/examples/component/lottie/network.vue +82 -0
  96. package/rules/.docs/examples/component/main/basic.vue +34 -0
  97. package/rules/.docs/examples/component/nav-bar/basic.vue +45 -0
  98. package/rules/.docs/examples/component/p/basic.vue +40 -0
  99. package/rules/.docs/examples/component/p/gravity.vue +62 -0
  100. package/rules/.docs/examples/component/player-manager/aspect-ratio.vue +286 -0
  101. package/rules/.docs/examples/component/player-manager/basic.vue +87 -0
  102. package/rules/.docs/examples/component/player-manager/control.vue +356 -0
  103. package/rules/.docs/examples/component/player-manager/custom-player-view.vue +105 -0
  104. package/rules/.docs/examples/component/player-manager/custom-player.vue +100 -0
  105. package/rules/.docs/examples/component/player-manager/decode.vue +218 -0
  106. package/rules/.docs/examples/component/player-manager/definition.vue +199 -0
  107. package/rules/.docs/examples/component/player-manager/event-global.vue +581 -0
  108. package/rules/.docs/examples/component/player-manager/event.vue +632 -0
  109. package/rules/.docs/examples/component/player-manager/image-player.vue +331 -0
  110. package/rules/.docs/examples/component/player-manager/media-item-interceptor.vue +105 -0
  111. package/rules/.docs/examples/component/player-manager/media-item-list-interceptor.vue +104 -0
  112. package/rules/.docs/examples/component/player-manager/media-item-list.vue +268 -0
  113. package/rules/.docs/examples/component/player-manager/media-source-interceptor.vue +115 -0
  114. package/rules/.docs/examples/component/player-manager/media-source-list-interceptor.vue +111 -0
  115. package/rules/.docs/examples/component/player-manager/multi-player.vue +130 -0
  116. package/rules/.docs/examples/component/player-manager/play-mode.vue +260 -0
  117. package/rules/.docs/examples/component/player-manager/play-rate.vue +244 -0
  118. package/rules/.docs/examples/component/player-manager/player-size.vue +119 -0
  119. package/rules/.docs/examples/component/player-manager/player-view.vue +381 -0
  120. package/rules/.docs/examples/component/player-manager/post-roll-ad.vue +189 -0
  121. package/rules/.docs/examples/component/player-manager/previous-roll-ad.vue +172 -0
  122. package/rules/.docs/examples/component/player-manager/start-position.vue +108 -0
  123. package/rules/.docs/examples/component/player-manager/text-left-player.vue +306 -0
  124. package/rules/.docs/examples/component/player-manager/text-right-player.vue +306 -0
  125. package/rules/.docs/examples/component/player-manager/window.vue +140 -0
  126. package/rules/.docs/examples/component/poster/basic.vue +144 -0
  127. package/rules/.docs/examples/component/poster/corner.vue +123 -0
  128. package/rules/.docs/examples/component/poster/decoration.vue +82 -0
  129. package/rules/.docs/examples/component/poster/float-title.vue +103 -0
  130. package/rules/.docs/examples/component/poster/ripple.vue +118 -0
  131. package/rules/.docs/examples/component/poster/score.vue +108 -0
  132. package/rules/.docs/examples/component/poster/shadow.vue +113 -0
  133. package/rules/.docs/examples/component/poster/shimmer.vue +113 -0
  134. package/rules/.docs/examples/component/poster/sub-title.vue +110 -0
  135. package/rules/.docs/examples/component/poster/title.vue +106 -0
  136. package/rules/.docs/examples/component/progress-bar/basic.vue +61 -0
  137. package/rules/.docs/examples/component/qr-code/basic.vue +16 -0
  138. package/rules/.docs/examples/component/radio-group/basic.vue +105 -0
  139. package/rules/.docs/examples/component/rating-bar/basic.vue +152 -0
  140. package/rules/.docs/examples/component/row/basic.vue +15 -0
  141. package/rules/.docs/examples/component/seek-bar/bar.vue +49 -0
  142. package/rules/.docs/examples/component/seek-bar/basic.vue +191 -0
  143. package/rules/.docs/examples/component/seek-bar/indicator.vue +74 -0
  144. package/rules/.docs/examples/component/seek-bar/range-mode.vue +130 -0
  145. package/rules/.docs/examples/component/seek-bar/single-mode.vue +113 -0
  146. package/rules/.docs/examples/component/seek-bar/step.vue +186 -0
  147. package/rules/.docs/examples/component/seek-bar/thumb.vue +148 -0
  148. package/rules/.docs/examples/component/seek-bar/tick-mark.vue +121 -0
  149. package/rules/.docs/examples/component/switch/basic.vue +26 -0
  150. package/rules/.docs/examples/component/tabs/basic.vue +109 -0
  151. package/rules/.docs/examples/component/tabs/custom-tab-item.vue +120 -0
  152. package/rules/.docs/examples/component/tabs/data.vue +121 -0
  153. package/rules/.docs/examples/component/tabs/horizontal.vue +118 -0
  154. package/rules/.docs/examples/component/tabs/item-add.vue +127 -0
  155. package/rules/.docs/examples/component/tabs/item-custom.vue +132 -0
  156. package/rules/.docs/examples/component/tabs/item-delete.vue +123 -0
  157. package/rules/.docs/examples/component/tabs/item-get.vue +124 -0
  158. package/rules/.docs/examples/component/tabs/item-update.vue +129 -0
  159. package/rules/.docs/examples/component/tabs/ref-basic.vue +63 -0
  160. package/rules/.docs/examples/component/tabs/ref-operations.vue +97 -0
  161. package/rules/.docs/examples/component/tabs/ref-page.vue +89 -0
  162. package/rules/.docs/examples/component/tabs/section-add.vue +138 -0
  163. package/rules/.docs/examples/component/tabs/section-delete.vue +126 -0
  164. package/rules/.docs/examples/component/tabs/section-get.vue +128 -0
  165. package/rules/.docs/examples/component/tabs/section-update.vue +137 -0
  166. package/rules/.docs/examples/component/tabs/section-vue.vue +111 -0
  167. package/rules/.docs/examples/component/tabs/single-tab.vue +112 -0
  168. package/rules/.docs/examples/component/text/basic.vue +20 -0
  169. package/rules/.docs/examples/component/text/ellipsize-mode.vue +122 -0
  170. package/rules/.docs/examples/component/text/gravity.vue +119 -0
  171. package/rules/.docs/examples/component/video-player/aspect-ratio.vue +242 -0
  172. package/rules/.docs/examples/component/video-player/basic.vue +82 -0
  173. package/rules/.docs/examples/component/video-player/control.vue +240 -0
  174. package/rules/.docs/examples/component/video-player/decode.vue +174 -0
  175. package/rules/.docs/examples/component/video-player/definition.vue +194 -0
  176. package/rules/.docs/examples/component/video-player/event-global.vue +89 -0
  177. package/rules/.docs/examples/component/video-player/event.vue +448 -0
  178. package/rules/.docs/examples/component/video-player/page.vue +150 -0
  179. package/rules/.docs/examples/component/video-player/play-mode.vue +220 -0
  180. package/rules/.docs/examples/component/video-player/play-rate.vue +198 -0
  181. package/rules/.docs/examples/component/video-player/progress.vue +211 -0
  182. package/rules/.docs/examples/component/video-player/render.vue +187 -0
  183. package/rules/.docs/examples/component/video-player/type.vue +133 -0
  184. package/rules/.docs/examples/component/view/background-img.vue +49 -0
  185. package/rules/.docs/examples/component/view/background.vue +28 -0
  186. package/rules/.docs/examples/component/view/basic.vue +28 -0
  187. package/rules/.docs/examples/component/view/border.vue +72 -0
  188. package/rules/.docs/examples/component/view/click.vue +66 -0
  189. package/rules/.docs/examples/component/view/focus-background.vue +60 -0
  190. package/rules/.docs/examples/component/view/focus.vue +58 -0
  191. package/rules/.docs/examples/component/view/gradient-background.vue +36 -0
  192. package/rules/.docs/examples/component/waterfall/basic.vue +167 -0
  193. package/rules/.docs/examples/component/waterfall/event.vue +154 -0
  194. package/rules/.docs/examples/component/waterfall/item-add.vue +82 -0
  195. package/rules/.docs/examples/component/waterfall/item-card-placeholder.vue +67 -0
  196. package/rules/.docs/examples/component/waterfall/item-card.vue +66 -0
  197. package/rules/.docs/examples/component/waterfall/item-custom.vue +81 -0
  198. package/rules/.docs/examples/component/waterfall/item-decoration.vue +63 -0
  199. package/rules/.docs/examples/component/waterfall/item-delete.vue +90 -0
  200. package/rules/.docs/examples/component/waterfall/item-get.vue +68 -0
  201. package/rules/.docs/examples/component/waterfall/item-update.vue +85 -0
  202. package/rules/.docs/examples/component/waterfall/ref-base.vue +141 -0
  203. package/rules/.docs/examples/component/waterfall/ref-operations.vue +192 -0
  204. package/rules/.docs/examples/component/waterfall/section-add.vue +72 -0
  205. package/rules/.docs/examples/component/waterfall/section-background.vue +94 -0
  206. package/rules/.docs/examples/component/waterfall/section-blank.vue +62 -0
  207. package/rules/.docs/examples/component/waterfall/section-card-placeholder.vue +90 -0
  208. package/rules/.docs/examples/component/waterfall/section-card.vue +83 -0
  209. package/rules/.docs/examples/component/waterfall/section-custom.vue +68 -0
  210. package/rules/.docs/examples/component/waterfall/section-decoration.vue +80 -0
  211. package/rules/.docs/examples/component/waterfall/section-delete.vue +76 -0
  212. package/rules/.docs/examples/component/waterfall/section-end.vue +91 -0
  213. package/rules/.docs/examples/component/waterfall/section-get.vue +74 -0
  214. package/rules/.docs/examples/component/waterfall/section-list.vue +56 -0
  215. package/rules/.docs/examples/component/waterfall/section-tabs-list.vue +149 -0
  216. package/rules/.docs/examples/component/waterfall/section-tabs.vue +153 -0
  217. package/rules/.docs/examples/component/waterfall/section-time.vue +48 -0
  218. package/rules/.docs/examples/component/waterfall/section-update.vue +118 -0
  219. package/rules/.docs/examples/component/waterfall/section-vue.vue +81 -0
  220. package/rules/.docs/examples/component/web-view/basic.vue +54 -0
  221. package/rules/.docs/examples/component/web-view/js-2-vue.vue +49 -0
  222. package/rules/.docs/examples/component/web-view/vue-2-js.vue +60 -0
  223. package/rules/.docs/examples/component/x5-web-view/basic.vue +54 -0
  224. package/rules/.docs/examples/css/gradient/basic.vue +43 -0
  225. package/rules/.docs/examples/css/gradient/corner-radii4.vue +86 -0
  226. package/rules/.docs/examples/css/gradient/corner-radius.vue +86 -0
  227. package/rules/.docs/examples/css/gradient/orientation.vue +168 -0
  228. package/rules/.docs/examples/css/gradient/shape.vue +97 -0
  229. package/rules/.docs/examples/css/gradient/type.vue +83 -0
  230. package/rules/.docs/examples/guide/router/app.vue +52 -0
  231. package/rules/.docs/examples/guide/slot/basic.vue +32 -0
  232. package/rules/.docs/examples/guide/slot/lifecycle.vue +106 -0
  233. package/rules/.docs/examples/module/action-bar/es-basic.vue +51 -0
  234. package/rules/.docs/examples/module/action-bar/qt-basic.vue +47 -0
  235. package/rules/.docs/examples/module/app-list/es-basic.vue +53 -0
  236. package/rules/.docs/examples/module/app-list/qt-basic.vue +50 -0
  237. package/rules/.docs/examples/module/audio/es-basic.vue +71 -0
  238. package/rules/.docs/examples/module/audio/qt-basic.vue +63 -0
  239. package/rules/.docs/examples/module/brightness/es-basic.vue +118 -0
  240. package/rules/.docs/examples/module/brightness/qt-basic.vue +115 -0
  241. package/rules/.docs/examples/module/broadcast/es-basic.vue +340 -0
  242. package/rules/.docs/examples/module/broadcast/qt-basic.vue +331 -0
  243. package/rules/.docs/examples/module/content-provider/es-basic.vue +92 -0
  244. package/rules/.docs/examples/module/content-provider/qt-basic.vue +86 -0
  245. package/rules/.docs/examples/module/develop/es-basic.vue +45 -0
  246. package/rules/.docs/examples/module/develop/qt-basic.vue +43 -0
  247. package/rules/.docs/examples/module/device/es-basic.vue +169 -0
  248. package/rules/.docs/examples/module/device/qt-basic.vue +166 -0
  249. package/rules/.docs/examples/module/display/es-basic.vue +45 -0
  250. package/rules/.docs/examples/module/display/qt-basic.vue +43 -0
  251. package/rules/.docs/examples/module/download/es-basic.vue +174 -0
  252. package/rules/.docs/examples/module/download/qt-basic.vue +168 -0
  253. package/rules/.docs/examples/module/es/es-basic.vue +74 -0
  254. package/rules/.docs/examples/module/es/qt-basic.vue +74 -0
  255. package/rules/.docs/examples/module/event-bus/es-emit.vue +31 -0
  256. package/rules/.docs/examples/module/event-bus/es-off.vue +53 -0
  257. package/rules/.docs/examples/module/event-bus/es-on.vue +56 -0
  258. package/rules/.docs/examples/module/event-bus/es-once.vue +47 -0
  259. package/rules/.docs/examples/module/event-bus/qt-emit.vue +28 -0
  260. package/rules/.docs/examples/module/event-bus/qt-off.vue +51 -0
  261. package/rules/.docs/examples/module/event-bus/qt-on.vue +53 -0
  262. package/rules/.docs/examples/module/event-bus/qt-once.vue +45 -0
  263. package/rules/.docs/examples/module/file/es-basic.vue +188 -0
  264. package/rules/.docs/examples/module/iac/es-basic.vue +211 -0
  265. package/rules/.docs/examples/module/iac/qt-basic.vue +208 -0
  266. package/rules/.docs/examples/module/key/es-back.vue +32 -0
  267. package/rules/.docs/examples/module/key/es-dispatch.vue +34 -0
  268. package/rules/.docs/examples/module/key/es-event.vue +34 -0
  269. package/rules/.docs/examples/module/local-storage/es-basic.vue +92 -0
  270. package/rules/.docs/examples/module/local-storage/qt-basic.vue +86 -0
  271. package/rules/.docs/examples/module/location/es-basic.vue +69 -0
  272. package/rules/.docs/examples/module/location/qt-basic.vue +67 -0
  273. package/rules/.docs/examples/module/log/es-basic.vue +45 -0
  274. package/rules/.docs/examples/module/log/qt-basic.vue +44 -0
  275. package/rules/.docs/examples/module/network/es-basic.vue +64 -0
  276. package/rules/.docs/examples/module/network/qt-basic.vue +60 -0
  277. package/rules/.docs/examples/module/page/es-app-lifecycle.vue +83 -0
  278. package/rules/.docs/examples/module/page/es-page-lifecycle.vue +80 -0
  279. package/rules/.docs/examples/module/page/es-page-state.vue +36 -0
  280. package/rules/.docs/examples/module/permission/es-basic.vue +62 -0
  281. package/rules/.docs/examples/module/permission/qt-basic.vue +59 -0
  282. package/rules/.docs/examples/module/plugin/es-basic.vue +71 -0
  283. package/rules/.docs/examples/module/plugin/qt-basic.vue +69 -0
  284. package/rules/.docs/examples/module/power/es-basic.vue +45 -0
  285. package/rules/.docs/examples/module/power/qt-basic.vue +41 -0
  286. package/rules/.docs/examples/module/runtime/es-basic.vue +42 -0
  287. package/rules/.docs/examples/module/runtime/qt-basic.vue +40 -0
  288. package/rules/.docs/examples/module/service/es-basic.vue +34 -0
  289. package/rules/.docs/examples/module/service/qt-basic.vue +31 -0
  290. package/rules/.docs/examples/module/share-data/es-basic.vue +266 -0
  291. package/rules/.docs/examples/module/share-data/qt-basic.vue +259 -0
  292. package/rules/.docs/examples/module/toast/es-basic.vue +47 -0
  293. package/rules/.docs/examples/module/toast/qt-basic.vue +44 -0
  294. package/rules/.docs/examples/module/upload/es-basic.vue +65 -0
  295. package/rules/.docs/examples/module/upload/qt-basic.vue +63 -0
  296. package/rules/.docs/examples/module/usb/es-basic.vue +138 -0
  297. package/rules/.docs/examples/module/usb/qt-basic.vue +135 -0
  298. package/rules/.docs/examples/module/xlog/es-basic.vue +45 -0
  299. package/rules/.docs/examples/module/xlog/qt-basic.vue +44 -0
  300. package/rules/.docs/examples/test/basic.vue +48 -0
  301. package/rules/.docs/index.md +7 -0
  302. package/rules/.docs/zh-CN/component/animation/alpha.md +22 -0
  303. package/rules/.docs/zh-CN/component/animation/animators.md +227 -0
  304. package/rules/.docs/zh-CN/component/animation/interpolator.md +59 -0
  305. package/rules/.docs/zh-CN/component/animation/introduction.md +101 -0
  306. package/rules/.docs/zh-CN/component/animation/listener.md +175 -0
  307. package/rules/.docs/zh-CN/component/animation/method.md +87 -0
  308. package/rules/.docs/zh-CN/component/animation/props.md +76 -0
  309. package/rules/.docs/zh-CN/component/animation/repeat.md +46 -0
  310. package/rules/.docs/zh-CN/component/animation/rotation-xy.md +17 -0
  311. package/rules/.docs/zh-CN/component/animation/rotation.md +23 -0
  312. package/rules/.docs/zh-CN/component/animation/scale.md +24 -0
  313. package/rules/.docs/zh-CN/component/animation/translation.md +22 -0
  314. package/rules/.docs/zh-CN/component/app-icon.md +22 -0
  315. package/rules/.docs/zh-CN/component/aside.md +14 -0
  316. package/rules/.docs/zh-CN/component/audio-player/basic.md +52 -0
  317. package/rules/.docs/zh-CN/component/audio-player/installation.md +26 -0
  318. package/rules/.docs/zh-CN/component/audio-player/introduction.md +12 -0
  319. package/rules/.docs/zh-CN/component/audio-player/player-manager.md +72 -0
  320. package/rules/.docs/zh-CN/component/audio-service-player/basic.md +52 -0
  321. package/rules/.docs/zh-CN/component/audio-service-player/installation.md +26 -0
  322. package/rules/.docs/zh-CN/component/audio-service-player/introduction.md +13 -0
  323. package/rules/.docs/zh-CN/component/audio-service-player/player-manager.md +71 -0
  324. package/rules/.docs/zh-CN/component/button.md +120 -0
  325. package/rules/.docs/zh-CN/component/card-container.md +24 -0
  326. package/rules/.docs/zh-CN/component/card.md +17 -0
  327. package/rules/.docs/zh-CN/component/checkbox-group.md +57 -0
  328. package/rules/.docs/zh-CN/component/classified-list-view.md +44 -0
  329. package/rules/.docs/zh-CN/component/collapse.md +45 -0
  330. package/rules/.docs/zh-CN/component/column.md +26 -0
  331. package/rules/.docs/zh-CN/component/container.md +81 -0
  332. package/rules/.docs/zh-CN/component/dialog.md +26 -0
  333. package/rules/.docs/zh-CN/component/div.md +234 -0
  334. package/rules/.docs/zh-CN/component/flex-view.md +14 -0
  335. package/rules/.docs/zh-CN/component/footer.md +14 -0
  336. package/rules/.docs/zh-CN/component/grid-view.md +221 -0
  337. package/rules/.docs/zh-CN/component/header.md +15 -0
  338. package/rules/.docs/zh-CN/component/html/alert.md +14 -0
  339. package/rules/.docs/zh-CN/component/html/audio.md +37 -0
  340. package/rules/.docs/zh-CN/component/html/h.md +15 -0
  341. package/rules/.docs/zh-CN/component/html/installation.md +67 -0
  342. package/rules/.docs/zh-CN/component/html/introduction.md +10 -0
  343. package/rules/.docs/zh-CN/component/html/video.md +39 -0
  344. package/rules/.docs/zh-CN/component/image.md +88 -0
  345. package/rules/.docs/zh-CN/component/img.md +118 -0
  346. package/rules/.docs/zh-CN/component/indicator-list-view.md +118 -0
  347. package/rules/.docs/zh-CN/component/input.md +54 -0
  348. package/rules/.docs/zh-CN/component/item-store.md +14 -0
  349. package/rules/.docs/zh-CN/component/item-view.md +14 -0
  350. package/rules/.docs/zh-CN/component/js-view.md +14 -0
  351. package/rules/.docs/zh-CN/component/js2vue.md +43 -0
  352. package/rules/.docs/zh-CN/component/large-list.md +20 -0
  353. package/rules/.docs/zh-CN/component/li.md +16 -0
  354. package/rules/.docs/zh-CN/component/list-item.md +34 -0
  355. package/rules/.docs/zh-CN/component/list-view.md +233 -0
  356. package/rules/.docs/zh-CN/component/loading.md +22 -0
  357. package/rules/.docs/zh-CN/component/lottie/assets.md +19 -0
  358. package/rules/.docs/zh-CN/component/lottie/basic.md +51 -0
  359. package/rules/.docs/zh-CN/component/lottie/event.md +23 -0
  360. package/rules/.docs/zh-CN/component/lottie/introduction.md +93 -0
  361. package/rules/.docs/zh-CN/component/lottie/network.md +12 -0
  362. package/rules/.docs/zh-CN/component/main.md +14 -0
  363. package/rules/.docs/zh-CN/component/media-series.md +44 -0
  364. package/rules/.docs/zh-CN/component/nav-bar.md +51 -0
  365. package/rules/.docs/zh-CN/component/overview.md +20 -0
  366. package/rules/.docs/zh-CN/component/p.md +55 -0
  367. package/rules/.docs/zh-CN/component/play-mark-view.md +25 -0
  368. package/rules/.docs/zh-CN/component/player/global-event.md +24 -0
  369. package/rules/.docs/zh-CN/component/player/interceptor.md +48 -0
  370. package/rules/.docs/zh-CN/component/player/media-player.md +43 -0
  371. package/rules/.docs/zh-CN/component/player/page-player.md +118 -0
  372. package/rules/.docs/zh-CN/component/player/player.md +190 -0
  373. package/rules/.docs/zh-CN/component/player-manager/aspect-ratio.md +51 -0
  374. package/rules/.docs/zh-CN/component/player-manager/basic.md +69 -0
  375. package/rules/.docs/zh-CN/component/player-manager/control.md +32 -0
  376. package/rules/.docs/zh-CN/component/player-manager/custom-control.md +105 -0
  377. package/rules/.docs/zh-CN/component/player-manager/data-structure.md +29 -0
  378. package/rules/.docs/zh-CN/component/player-manager/decode.md +46 -0
  379. package/rules/.docs/zh-CN/component/player-manager/definition.md +85 -0
  380. package/rules/.docs/zh-CN/component/player-manager/event.md +16 -0
  381. package/rules/.docs/zh-CN/component/player-manager/global-event.md +304 -0
  382. package/rules/.docs/zh-CN/component/player-manager/installation.md +33 -0
  383. package/rules/.docs/zh-CN/component/player-manager/introduction.md +207 -0
  384. package/rules/.docs/zh-CN/component/player-manager/media-item-interceptor.md +197 -0
  385. package/rules/.docs/zh-CN/component/player-manager/media-item-list-interceptor.md +189 -0
  386. package/rules/.docs/zh-CN/component/player-manager/media-item-list.md +31 -0
  387. package/rules/.docs/zh-CN/component/player-manager/media-source-interceptor.md +166 -0
  388. package/rules/.docs/zh-CN/component/player-manager/media-source-list-interceptor.md +168 -0
  389. package/rules/.docs/zh-CN/component/player-manager/mode.md +46 -0
  390. package/rules/.docs/zh-CN/component/player-manager/multiple-player.md +124 -0
  391. package/rules/.docs/zh-CN/component/player-manager/player-type.md +38 -0
  392. package/rules/.docs/zh-CN/component/player-manager/player-view.md +31 -0
  393. package/rules/.docs/zh-CN/component/player-manager/player.md +73 -0
  394. package/rules/.docs/zh-CN/component/player-manager/position.md +27 -0
  395. package/rules/.docs/zh-CN/component/player-manager/rate.md +53 -0
  396. package/rules/.docs/zh-CN/component/player-manager/size.md +17 -0
  397. package/rules/.docs/zh-CN/component/player-manager/window.md +65 -0
  398. package/rules/.docs/zh-CN/component/plugin-view.md +21 -0
  399. package/rules/.docs/zh-CN/component/poster.md +102 -0
  400. package/rules/.docs/zh-CN/component/progress-bar.md +347 -0
  401. package/rules/.docs/zh-CN/component/qr-code.md +23 -0
  402. package/rules/.docs/zh-CN/component/radio-group.md +57 -0
  403. package/rules/.docs/zh-CN/component/rating-bar.md +43 -0
  404. package/rules/.docs/zh-CN/component/replace-child.md +20 -0
  405. package/rules/.docs/zh-CN/component/ripple-view.md +14 -0
  406. package/rules/.docs/zh-CN/component/row.md +29 -0
  407. package/rules/.docs/zh-CN/component/scroll-view.md +21 -0
  408. package/rules/.docs/zh-CN/component/seek-bar.md +377 -0
  409. package/rules/.docs/zh-CN/component/surface-view.md +14 -0
  410. package/rules/.docs/zh-CN/component/swift-list.md +21 -0
  411. package/rules/.docs/zh-CN/component/swiper-slide.md +18 -0
  412. package/rules/.docs/zh-CN/component/swiper.md +34 -0
  413. package/rules/.docs/zh-CN/component/switch.md +37 -0
  414. package/rules/.docs/zh-CN/component/tabs-view.md +44 -0
  415. package/rules/.docs/zh-CN/component/tabs.md +286 -0
  416. package/rules/.docs/zh-CN/component/test.md +58 -0
  417. package/rules/.docs/zh-CN/component/text.md +115 -0
  418. package/rules/.docs/zh-CN/component/transition-img.md +22 -0
  419. package/rules/.docs/zh-CN/component/ul.md +83 -0
  420. package/rules/.docs/zh-CN/component/video-player/aspect-ratio.md +49 -0
  421. package/rules/.docs/zh-CN/component/video-player/basic.md +55 -0
  422. package/rules/.docs/zh-CN/component/video-player/control.md +23 -0
  423. package/rules/.docs/zh-CN/component/video-player/decode.md +46 -0
  424. package/rules/.docs/zh-CN/component/video-player/definition.md +85 -0
  425. package/rules/.docs/zh-CN/component/video-player/event.md +16 -0
  426. package/rules/.docs/zh-CN/component/video-player/global-event.md +268 -0
  427. package/rules/.docs/zh-CN/component/video-player/installation.md +33 -0
  428. package/rules/.docs/zh-CN/component/video-player/introduction.md +18 -0
  429. package/rules/.docs/zh-CN/component/video-player/mode.md +50 -0
  430. package/rules/.docs/zh-CN/component/video-player/progress.md +51 -0
  431. package/rules/.docs/zh-CN/component/video-player/rate.md +53 -0
  432. package/rules/.docs/zh-CN/component/video-player/render.md +47 -0
  433. package/rules/.docs/zh-CN/component/video-player/type.md +32 -0
  434. package/rules/.docs/zh-CN/component/view-pager.md +14 -0
  435. package/rules/.docs/zh-CN/component/view.md +234 -0
  436. package/rules/.docs/zh-CN/component/virtual-dom.md +4 -0
  437. package/rules/.docs/zh-CN/component/virtual.md +8 -0
  438. package/rules/.docs/zh-CN/component/vue-section.md +29 -0
  439. package/rules/.docs/zh-CN/component/vue2js.md +47 -0
  440. package/rules/.docs/zh-CN/component/waterfall.md +447 -0
  441. package/rules/.docs/zh-CN/component/web-view.md +100 -0
  442. package/rules/.docs/zh-CN/component/x5web-view.md +100 -0
  443. package/rules/.docs/zh-CN/cooperation/index.md +6 -0
  444. package/rules/.docs/zh-CN/css/color/gradient.md +111 -0
  445. package/rules/.docs/zh-CN/css/color/hsl.md +11 -0
  446. package/rules/.docs/zh-CN/css/color/name.md +151 -0
  447. package/rules/.docs/zh-CN/css/color/rgb.md +16 -0
  448. package/rules/.docs/zh-CN/css/color/transparent.md +9 -0
  449. package/rules/.docs/zh-CN/css/layout/align-items.md +13 -0
  450. package/rules/.docs/zh-CN/css/layout/align-self.md +12 -0
  451. package/rules/.docs/zh-CN/css/layout/background-position-x.md +12 -0
  452. package/rules/.docs/zh-CN/css/layout/background-position-y.md +12 -0
  453. package/rules/.docs/zh-CN/css/layout/background-size.md +12 -0
  454. package/rules/.docs/zh-CN/css/layout/collapsable.md +13 -0
  455. package/rules/.docs/zh-CN/css/layout/display.md +12 -0
  456. package/rules/.docs/zh-CN/css/layout/flex-basis.md +12 -0
  457. package/rules/.docs/zh-CN/css/layout/flex-direction.md +15 -0
  458. package/rules/.docs/zh-CN/css/layout/flex-grow.md +15 -0
  459. package/rules/.docs/zh-CN/css/layout/flex-shrink.md +12 -0
  460. package/rules/.docs/zh-CN/css/layout/flex-wrap.md +12 -0
  461. package/rules/.docs/zh-CN/css/layout/flex.md +12 -0
  462. package/rules/.docs/zh-CN/css/layout/height.md +12 -0
  463. package/rules/.docs/zh-CN/css/layout/justify-content.md +12 -0
  464. package/rules/.docs/zh-CN/css/layout/left.md +13 -0
  465. package/rules/.docs/zh-CN/css/layout/line-height.md +12 -0
  466. package/rules/.docs/zh-CN/css/layout/margin-bottom.md +12 -0
  467. package/rules/.docs/zh-CN/css/layout/margin-horizontal.md +12 -0
  468. package/rules/.docs/zh-CN/css/layout/margin-left.md +12 -0
  469. package/rules/.docs/zh-CN/css/layout/margin-right.md +12 -0
  470. package/rules/.docs/zh-CN/css/layout/margin-top.md +12 -0
  471. package/rules/.docs/zh-CN/css/layout/margin-vertical.md +12 -0
  472. package/rules/.docs/zh-CN/css/layout/margin.md +12 -0
  473. package/rules/.docs/zh-CN/css/layout/max-height.md +10 -0
  474. package/rules/.docs/zh-CN/css/layout/max-width.md +10 -0
  475. package/rules/.docs/zh-CN/css/layout/min-height.md +10 -0
  476. package/rules/.docs/zh-CN/css/layout/min-width.md +10 -0
  477. package/rules/.docs/zh-CN/css/layout/overflow.md +12 -0
  478. package/rules/.docs/zh-CN/css/layout/padding-bottom.md +12 -0
  479. package/rules/.docs/zh-CN/css/layout/padding-horizontal.md +12 -0
  480. package/rules/.docs/zh-CN/css/layout/padding-left.md +12 -0
  481. package/rules/.docs/zh-CN/css/layout/padding-right.md +12 -0
  482. package/rules/.docs/zh-CN/css/layout/padding-top.md +12 -0
  483. package/rules/.docs/zh-CN/css/layout/padding-vertical.md +12 -0
  484. package/rules/.docs/zh-CN/css/layout/padding.md +12 -0
  485. package/rules/.docs/zh-CN/css/layout/position.md +14 -0
  486. package/rules/.docs/zh-CN/css/layout/right.md +13 -0
  487. package/rules/.docs/zh-CN/css/layout/text-align.md +12 -0
  488. package/rules/.docs/zh-CN/css/layout/top.md +12 -0
  489. package/rules/.docs/zh-CN/css/layout/width.md +12 -0
  490. package/rules/.docs/zh-CN/css/layout/z-index.md +12 -0
  491. package/rules/.docs/zh-CN/css/overview.md +8 -0
  492. package/rules/.docs/zh-CN/css/style/background-color.md +10 -0
  493. package/rules/.docs/zh-CN/css/style/border-bottom-color.md +10 -0
  494. package/rules/.docs/zh-CN/css/style/border-bottom-left-radius.md +10 -0
  495. package/rules/.docs/zh-CN/css/style/border-bottom-right-radius.md +10 -0
  496. package/rules/.docs/zh-CN/css/style/border-bottom-width.md +10 -0
  497. package/rules/.docs/zh-CN/css/style/border-color.md +10 -0
  498. package/rules/.docs/zh-CN/css/style/border-left-color.md +10 -0
  499. package/rules/.docs/zh-CN/css/style/border-left-width.md +10 -0
  500. package/rules/.docs/zh-CN/css/style/border-radius.md +10 -0
  501. package/rules/.docs/zh-CN/css/style/border-right-color.md +10 -0
  502. package/rules/.docs/zh-CN/css/style/border-right-width.md +10 -0
  503. package/rules/.docs/zh-CN/css/style/border-style.md +10 -0
  504. package/rules/.docs/zh-CN/css/style/border-top-color.md +10 -0
  505. package/rules/.docs/zh-CN/css/style/border-top-left-radius.md +10 -0
  506. package/rules/.docs/zh-CN/css/style/border-top-right-radius.md +10 -0
  507. package/rules/.docs/zh-CN/css/style/border-top-width.md +10 -0
  508. package/rules/.docs/zh-CN/css/style/border-width.md +10 -0
  509. package/rules/.docs/zh-CN/css/style/box-shadow.md +10 -0
  510. package/rules/.docs/zh-CN/css/style/color.md +10 -0
  511. package/rules/.docs/zh-CN/css/style/font-family.md +10 -0
  512. package/rules/.docs/zh-CN/css/style/font-size.md +10 -0
  513. package/rules/.docs/zh-CN/css/style/font-style.md +10 -0
  514. package/rules/.docs/zh-CN/css/style/font-weight.md +10 -0
  515. package/rules/.docs/zh-CN/css/style/letter-spacing.md +10 -0
  516. package/rules/.docs/zh-CN/css/style/opacity.md +10 -0
  517. package/rules/.docs/zh-CN/css/style/text-decoration-color.md +10 -0
  518. package/rules/.docs/zh-CN/css/style/text-decoration-line.md +10 -0
  519. package/rules/.docs/zh-CN/css/style/text-decoration.md +12 -0
  520. package/rules/.docs/zh-CN/css/style/tint-color.md +10 -0
  521. package/rules/.docs/zh-CN/css/style/visibility.md +10 -0
  522. package/rules/.docs/zh-CN/guide/basic/appendix.md +35 -0
  523. package/rules/.docs/zh-CN/guide/basic/dev-debug.md +94 -0
  524. package/rules/.docs/zh-CN/guide/basic/dev-tools.md +22 -0
  525. package/rules/.docs/zh-CN/guide/basic/installation.md +144 -0
  526. package/rules/.docs/zh-CN/guide/basic/language.md +10 -0
  527. package/rules/.docs/zh-CN/guide/basic/package-manager.md +8 -0
  528. package/rules/.docs/zh-CN/guide/basic/quick-start.md +150 -0
  529. package/rules/.docs/zh-CN/guide/changelog.md +20 -0
  530. package/rules/.docs/zh-CN/guide/commit-examples.md +90 -0
  531. package/rules/.docs/zh-CN/guide/compile/obfuscator.md +56 -0
  532. package/rules/.docs/zh-CN/guide/compile/pack.md +8 -0
  533. package/rules/.docs/zh-CN/guide/compile/resource.md +96 -0
  534. package/rules/.docs/zh-CN/guide/compile/split-chunks.md +66 -0
  535. package/rules/.docs/zh-CN/guide/dark-mode.md +84 -0
  536. package/rules/.docs/zh-CN/guide/design.md +34 -0
  537. package/rules/.docs/zh-CN/guide/dev-faq.md +41 -0
  538. package/rules/.docs/zh-CN/guide/dev-guide.md +55 -0
  539. package/rules/.docs/zh-CN/guide/device/ch.md +18 -0
  540. package/rules/.docs/zh-CN/guide/device/haier.md +12 -0
  541. package/rules/.docs/zh-CN/guide/device/hisense.md +24 -0
  542. package/rules/.docs/zh-CN/guide/device/huawei.md +16 -0
  543. package/rules/.docs/zh-CN/guide/device/konka.md +12 -0
  544. package/rules/.docs/zh-CN/guide/device/le.md +19 -0
  545. package/rules/.docs/zh-CN/guide/device/skyworth.md +25 -0
  546. package/rules/.docs/zh-CN/guide/device/tcl.md +21 -0
  547. package/rules/.docs/zh-CN/guide/device/tencent.md +24 -0
  548. package/rules/.docs/zh-CN/guide/device/tmall.md +18 -0
  549. package/rules/.docs/zh-CN/guide/device/xiaomi.md +46 -0
  550. package/rules/.docs/zh-CN/guide/faq/dev-faq.md +100 -0
  551. package/rules/.docs/zh-CN/guide/faq/develop-faq.md +39 -0
  552. package/rules/.docs/zh-CN/guide/faq/launch-params-faq.md +119 -0
  553. package/rules/.docs/zh-CN/guide/faq/layout-style-faq.md +66 -0
  554. package/rules/.docs/zh-CN/guide/focus/auto-focus.md +94 -0
  555. package/rules/.docs/zh-CN/guide/focus/basic.md +133 -0
  556. package/rules/.docs/zh-CN/guide/focus/debug-tool.md +40 -0
  557. package/rules/.docs/zh-CN/guide/focus/focus-method.md +317 -0
  558. package/rules/.docs/zh-CN/guide/focus/list-auto-focus.md +94 -0
  559. package/rules/.docs/zh-CN/guide/focus/request-focus.md +10 -0
  560. package/rules/.docs/zh-CN/guide/interaction/click.md +39 -0
  561. package/rules/.docs/zh-CN/guide/interaction/focus.md +44 -0
  562. package/rules/.docs/zh-CN/guide/key/back.md +65 -0
  563. package/rules/.docs/zh-CN/guide/key/dispatch-key-event.md +41 -0
  564. package/rules/.docs/zh-CN/guide/key/key-event.md +87 -0
  565. package/rules/.docs/zh-CN/guide/layout/adapter.md +33 -0
  566. package/rules/.docs/zh-CN/guide/layout/layout.md +42 -0
  567. package/rules/.docs/zh-CN/guide/layout/style.md +64 -0
  568. package/rules/.docs/zh-CN/guide/layout/theming.md +154 -0
  569. package/rules/.docs/zh-CN/guide/migration.md +25 -0
  570. package/rules/.docs/zh-CN/guide/namespace.md +69 -0
  571. package/rules/.docs/zh-CN/guide/nav.md +73 -0
  572. package/rules/.docs/zh-CN/guide/network/axios.md +47 -0
  573. package/rules/.docs/zh-CN/guide/network/fetch.md +70 -0
  574. package/rules/.docs/zh-CN/guide/network/websocket.md +107 -0
  575. package/rules/.docs/zh-CN/guide/node/install.md +179 -0
  576. package/rules/.docs/zh-CN/guide/npm/install.md +74 -0
  577. package/rules/.docs/zh-CN/guide/overview.md +41 -0
  578. package/rules/.docs/zh-CN/guide/page/application-lifecycle.md +37 -0
  579. package/rules/.docs/zh-CN/guide/page/lifecycle.md +32 -0
  580. package/rules/.docs/zh-CN/guide/page/page-lifecycle.md +35 -0
  581. package/rules/.docs/zh-CN/guide/page/page-state.md +31 -0
  582. package/rules/.docs/zh-CN/guide/page/type.md +49 -0
  583. package/rules/.docs/zh-CN/guide/publish/hub.md +31 -0
  584. package/rules/.docs/zh-CN/guide/publish/release-apk.md +51 -0
  585. package/rules/.docs/zh-CN/guide/publish/release-rpk.md +45 -0
  586. package/rules/.docs/zh-CN/guide/router/async.md +25 -0
  587. package/rules/.docs/zh-CN/guide/router/entry.md +60 -0
  588. package/rules/.docs/zh-CN/guide/router/error.md +25 -0
  589. package/rules/.docs/zh-CN/guide/router/install.md +70 -0
  590. package/rules/.docs/zh-CN/guide/router/introduction.md +35 -0
  591. package/rules/.docs/zh-CN/guide/router/launch.md +88 -0
  592. package/rules/.docs/zh-CN/guide/router/limit.md +33 -0
  593. package/rules/.docs/zh-CN/guide/router/native.md +104 -0
  594. package/rules/.docs/zh-CN/guide/router/result.md +42 -0
  595. package/rules/.docs/zh-CN/guide/sfc-component/async-component.md +88 -0
  596. package/rules/.docs/zh-CN/guide/sfc-component/native-component.md +127 -0
  597. package/rules/.docs/zh-CN/guide/slot/develop.md +42 -0
  598. package/rules/.docs/zh-CN/guide/slot/install.md +59 -0
  599. package/rules/.docs/zh-CN/guide/slot/introduction.md +45 -0
  600. package/rules/.docs/zh-CN/guide/slot/lifecycle.md +18 -0
  601. package/rules/.docs/zh-CN/guide/slot/project.md +22 -0
  602. package/rules/.docs/zh-CN/guide/test.md +8 -0
  603. package/rules/.docs/zh-CN/guide/theming.md +254 -0
  604. package/rules/.docs/zh-CN/guide/translation.md +39 -0
  605. package/rules/.docs/zh-CN/index.md +9 -0
  606. package/rules/.docs/zh-CN/module/action-bar.md +32 -0
  607. package/rules/.docs/zh-CN/module/app-list.md +57 -0
  608. package/rules/.docs/zh-CN/module/audio.md +45 -0
  609. package/rules/.docs/zh-CN/module/brightness.md +33 -0
  610. package/rules/.docs/zh-CN/module/broadcast.md +77 -0
  611. package/rules/.docs/zh-CN/module/content-provider.md +64 -0
  612. package/rules/.docs/zh-CN/module/develop.md +45 -0
  613. package/rules/.docs/zh-CN/module/device.md +108 -0
  614. package/rules/.docs/zh-CN/module/display.md +33 -0
  615. package/rules/.docs/zh-CN/module/download.md +97 -0
  616. package/rules/.docs/zh-CN/module/es.md +74 -0
  617. package/rules/.docs/zh-CN/module/event-bus.md +68 -0
  618. package/rules/.docs/zh-CN/module/file.md +62 -0
  619. package/rules/.docs/zh-CN/module/iac.md +51 -0
  620. package/rules/.docs/zh-CN/module/local-storage.md +35 -0
  621. package/rules/.docs/zh-CN/module/location.md +48 -0
  622. package/rules/.docs/zh-CN/module/log.md +52 -0
  623. package/rules/.docs/zh-CN/module/network.md +77 -0
  624. package/rules/.docs/zh-CN/module/overview.md +10 -0
  625. package/rules/.docs/zh-CN/module/permission.md +42 -0
  626. package/rules/.docs/zh-CN/module/plugin.md +38 -0
  627. package/rules/.docs/zh-CN/module/power.md +51 -0
  628. package/rules/.docs/zh-CN/module/runtime.md +41 -0
  629. package/rules/.docs/zh-CN/module/service.md +33 -0
  630. package/rules/.docs/zh-CN/module/share-data.md +85 -0
  631. package/rules/.docs/zh-CN/module/toast.md +30 -0
  632. package/rules/.docs/zh-CN/module/upload.md +53 -0
  633. package/rules/.docs/zh-CN/module/usb.md +52 -0
  634. package/rules/.docs/zh-CN/module/xlog.md +48 -0
  635. package/rules/.docs/zh-CN/resource/runtime.md +88 -0
  636. package/rules/.docs/zh-CN/resource/test-flight.md +27 -0
  637. package/rules/.docs/zh-CN/runtime/runtime.md +81 -0
  638. package/rules/.docs/zh-CN/runtime/test-flight.md +23 -0
  639. package/rules/.docs/zh-CN/sample/ai-dev.md +250 -0
  640. package/rules/.docs/zh-CN/sample/api-demo.md +26 -0
  641. package/rules/.docs/zh-CN/sample/app-list.md +12 -0
  642. package/rules/.docs/zh-CN/sample/hello-tv.md +98 -0
  643. package/rules/.docs/zh-CN/sdk/cus_component.md +249 -0
  644. package/rules/.docs/zh-CN/sdk/cus_module.md +163 -0
  645. package/rules/.docs/zh-CN/sdk/cus_splash.md +97 -0
  646. package/rules/.docs/zh-CN/sdk/empty.md +0 -0
  647. package/rules/.docs/zh-CN/sdk/first_implementation.md +15 -0
  648. package/rules/.docs/zh-CN/sdk/first_init.md +13 -0
  649. package/rules/.docs/zh-CN/sdk/first_start_app.md +4 -0
  650. package/rules/.docs/zh-CN/sdk/light-card.md +116 -0
  651. package/rules/.docs/zh-CN/sdk/overview.md +5 -0
  652. package/rules/.docs/zh-CN/tool/api/overview.md +103 -0
  653. package/rules/.docs/zh-CN/tool/cli/adb.md +32 -0
  654. package/rules/.docs/zh-CN/tool/cli/build.md +14 -0
  655. package/rules/.docs/zh-CN/tool/cli/clean.md +12 -0
  656. package/rules/.docs/zh-CN/tool/cli/config.md +37 -0
  657. package/rules/.docs/zh-CN/tool/cli/create.md +28 -0
  658. package/rules/.docs/zh-CN/tool/cli/debug.md +30 -0
  659. package/rules/.docs/zh-CN/tool/cli/info.md +14 -0
  660. package/rules/.docs/zh-CN/tool/cli/installation.md +12 -0
  661. package/rules/.docs/zh-CN/tool/cli/introduction.md +26 -0
  662. package/rules/.docs/zh-CN/tool/cli/logcat.md +10 -0
  663. package/rules/.docs/zh-CN/tool/cli/migrate.md +12 -0
  664. package/rules/.docs/zh-CN/tool/cli/pack.md +14 -0
  665. package/rules/.docs/zh-CN/tool/cli/preview.md +18 -0
  666. package/rules/.docs/zh-CN/tool/cli/publish.md +12 -0
  667. package/rules/.docs/zh-CN/tool/cli/setup.md +58 -0
  668. package/rules/.docs/zh-CN/tool/cli/start.md +54 -0
  669. package/rules/.docs/zh-CN/tool/cli/test.md +22 -0
  670. package/rules/.docs/zh-CN/tool/cli/upgrade.md +12 -0
  671. package/rules/.github/copilot-instructions.md +456 -0
  672. package/rules/.windsurfrules +367 -0
  673. package/rules/AGENTS.md +456 -0
  674. package/rules/AI_HANDOFF.md +376 -0
  675. package/rules/CLAUDE.md +836 -0
  676. package/rules/GEMINI.md +463 -0
@@ -0,0 +1,53 @@
1
+ ---
2
+ title: PlayerManager
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # 播放倍速
7
+
8
+ 内置倍速如下:
9
+
10
+ * 0.5倍速:`ES_PLAYER_RATE_0_5 = '0.5'`
11
+ * 0.75倍速:`ES_PLAYER_RATE_0_7_5 = '0.75'`
12
+ * 1倍速:`ES_PLAYER_RATE_1 = '1'`
13
+ * 1.2倍速:`ES_PLAYER_RATE_1_2 = '1.2'`
14
+ * 1.25倍速:`ES_PLAYER_RATE_1_2_5 = '1.25'`
15
+ * 1.5倍速:`ES_PLAYER_RATE_1_5 = '1.5'`
16
+ * 1.75倍速:`ES_PLAYER_RATE_1_7_5 = '1.75'`
17
+ * 2.0倍速:`ES_PLAYER_RATE_2 = '2.0'`
18
+ * 2.5倍速:`ES_PLAYER_RATE_2_5 = '2.5'`
19
+
20
+ ## 监听倍速事件
21
+
22
+ * 支持的倍速列表:`onPlayerPlayRateListChanged`
23
+ * 当倍速发生变化:`onPlayerPlayRateChanged`
24
+
25
+ ::: tip 播放器事件
26
+ [点击查看详细事件说明](/zh-CN/component/player/player#Events)
27
+ :::
28
+
29
+ ## 获取当前倍速
30
+
31
+ ```ts
32
+ const playerRateManager = useESPlayerRateManager()
33
+ playerRateManager.getPlayRate()
34
+ ```
35
+
36
+ ## 设置倍速
37
+
38
+ ```ts
39
+ playerManager.value?.setPlayRate(ESPlayerRate.ES_PLAYER_RATE_0_5)
40
+ ```
41
+
42
+ 或者
43
+
44
+ ```ts
45
+ const playerRateManager = useESPlayerRateManager()
46
+ playerRateManager.setPlayRate(ESPlayerRate.ES_PLAYER_RATE_0_5)
47
+ ```
48
+
49
+ :::demo ## 完整示例
50
+
51
+ component/player-manager/play-rate
52
+
53
+ :::
@@ -0,0 +1,17 @@
1
+ ---
2
+ title: PlayerManager
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # 播放尺寸切换
7
+
8
+ `setSize`方法用于设置播放器显示的尺寸(单位px)。
9
+
10
+ 调用方法如下:
11
+ `playerManager.value?.setSize(1920, 1080)`
12
+
13
+ :::demo ## 完整示例
14
+
15
+ component/player-manager/player-size
16
+
17
+ :::
@@ -0,0 +1,65 @@
1
+ ---
2
+ title: PlayerManager
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # 播放窗口切换
7
+
8
+ 播放窗口切换常用于视频播放预览和正式观看之间的切换。
9
+
10
+ 内置窗口尺寸类型如下:
11
+
12
+ * 小屏窗口:`ES_PLAYER_WINDOW_TYPE_SMALL = 1`(默认)
13
+ * 全屏窗口`ES_PLAYER_WINDOW_TYPE_FULL = 2`
14
+ * 浮动窗口:`ES_PLAYER_WINDOW_TYPE_FLOAT = 3`
15
+
16
+ ## 小屏窗口
17
+
18
+ `smallWindowWidth`和`smallWindowHeight`属性用来设置小屏窗口的尺寸。
19
+
20
+ ```vue
21
+
22
+ <es-player-manager
23
+ :smallWindowWidth='570'
24
+ :smallWindowHeight='324'>
25
+ </es-player-manager>
26
+ ```
27
+
28
+ 调用`playerManager.value?.setSmallWindow()`
29
+ 或者`playerManager.value?.setWindowType(ESPlayerWindowType.ES_PLAYER_WINDOW_TYPE_SMALL)`方法就可以切换视频窗口到小屏尺寸。
30
+
31
+ ## 全屏窗口
32
+
33
+ `fullWindowWidth`和`fullWindowHeight`属性用来设置全屏窗口的尺寸。
34
+
35
+ ```vue
36
+
37
+ <es-player-manager
38
+ :fullWindowWidth='1920'
39
+ :fullWindowHeight='1080'>
40
+ </es-player-manager>
41
+ ```
42
+
43
+ 调用`playerManager.value?.setFullWindow()`
44
+ 或者`playerManager.value?.setWindowType(ESPlayerWindowType.ES_PLAYER_WINDOW_TYPE_FULL)`方法就可以切换视频窗口到全屏尺寸。
45
+
46
+ ## 浮动窗口
47
+
48
+ `floatWindowWidth`和`floatWindowHeight`属性用来设置浮动窗口的尺寸。
49
+
50
+ ```vue
51
+
52
+ <es-player-manager
53
+ :floatWindowWidth='192'
54
+ :floatWindowHeight='108'>
55
+ </es-player-manager>
56
+ ```
57
+
58
+ 调用`playerManager.value?.setFloatWindow()`
59
+ 或者`playerManager.value?.setWindowType(ESPlayerWindowType.ES_PLAYER_WINDOW_TYPE_FLOAT)`方法就可以切换视频窗口到浮动窗口尺寸。
60
+
61
+ :::demo ## 完整示例
62
+
63
+ component/player-manager/window
64
+
65
+ :::
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: PluginView
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # PluginView
7
+
8
+ ## API
9
+
10
+ ### Events
11
+
12
+ | Name | Description | Type |
13
+ | ------------------- | ---------------- | ----------------------------------------------- |
14
+ | onPluginLoadSuccess | 加载插件成功 | ^[Function]`(event: QTPluginViewEvent) => void` |
15
+ | onPluginLoadError | 加载插件失败 | ^[Function]`(event: QTPluginViewEvent) => void` |
16
+
17
+ ### Exposes
18
+
19
+ | Method | Description | Type |
20
+ |------------------------------|--------------------------------|-------------------------------------------------------------------------------|
21
+ | dispatchFunction | 调用插件方法 | ^[Function]`(funName: string, params: Array<any>) => void` |
@@ -0,0 +1,102 @@
1
+ ---
2
+ title: Poster
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # Poster
7
+
8
+ :::demo ## 基础用法
9
+
10
+ component/poster/basic
11
+
12
+ :::
13
+
14
+ :::demo ## 间距
15
+
16
+ component/poster/decoration
17
+
18
+ :::
19
+
20
+ :::demo ## 主标题
21
+
22
+ component/poster/title
23
+
24
+ :::
25
+
26
+ :::demo ## 次标题
27
+
28
+ component/poster/sub-title
29
+
30
+ :::
31
+
32
+ :::demo ## 浮动标题
33
+
34
+ component/poster/float-title
35
+
36
+ :::
37
+
38
+ :::demo ## 角标
39
+
40
+ component/poster/corner
41
+
42
+ :::
43
+
44
+ :::demo ## 评分
45
+
46
+ component/poster/score
47
+
48
+ :::
49
+
50
+ :::demo ## 阴影
51
+
52
+ component/poster/shadow
53
+
54
+ :::
55
+
56
+ :::demo ## 高光
57
+
58
+ component/poster/shimmer
59
+
60
+ :::
61
+
62
+ :::demo ## 水波
63
+
64
+ component/poster/ripple
65
+
66
+ :::
67
+
68
+ ## API
69
+
70
+ ### DataStructure
71
+
72
+ 用来描述海报信息
73
+
74
+ | Name | Description | Type | Default |
75
+ | ------------ | ------------------| --------------------------------------------------------|---------|
76
+ | focus | 焦点 | ^[QTFocusable] | 否 |
77
+ | image | 图片 | ^[QTPosterImage] | 否 |
78
+ | shadow | 阴影 | ^[QTPosterShadow] | 否 |
79
+ | shimmer | 流光 | ^[QTPosterShimmer] | 否 |
80
+ | title | 标题 | ^[QTPosterTitle] | 否 |
81
+ | focusTitle | 焦点状态标题 | ^[QTPosterTitle] | 否 |
82
+ | subTitle | 副标题 | ^[QTPosterTitle] | 否 |
83
+ | floatTitle | 浮动标题 | ^[QTPosterTitle] | 否 |
84
+ | ripple | 水波纹 | ^[QTPosterRipple] | 否 |
85
+ | corner | 角标 | ^[QTPosterCorner] | 否 |
86
+ | score | 评分 | ^[QTPosterScore] | 否 |
87
+ | titleStyle | 标题样式 | ^[QTFlexStyleMargin & QTFlexStylePadding & QTFlexStyleSize]| 否 |
88
+ | titleFocusStyle| 焦点状态标题样式 | ^[QTFlexStyleMargin & QTFlexStylePadding & QTFlexStyleSize] | 否 |
89
+
90
+ ### Attributes
91
+
92
+ | Name | Description | Type | Default |
93
+ | ------------------------------- | ----------------- | ---------------------| ------- |
94
+ | requestFirstFocus | 请求焦点 | ^[boolean] | false |
95
+ | loadDelay | 加载延迟事件 | ^[number] | 500 |
96
+ | type | 类型 | ^[number] | 10001 |
97
+ | borderRadius | 圆角 | ^[number] | 8 |
98
+ | rippleColor | 水波纹颜色 | ^[string] | - |
99
+ | focusBgColor | 焦点背景色 | ^[QTGradient] | - |
100
+ | focusTitleColor | 标题焦点色 | ^[string] | - |
101
+ | focusSubTitleColor | 副标题焦点色 | ^[string] | - |
102
+ | floatTitleBgColor | 浮动标题背景色 | ^[object]`string[]` | - |
@@ -0,0 +1,347 @@
1
+ ---
2
+ title: ProgressBar
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # ProgressBar
7
+
8
+ :::demo ## 基础用法
9
+
10
+ component/progress-bar/basic
11
+
12
+ :::
13
+
14
+ ## API
15
+
16
+ ### DataStructure
17
+
18
+ #### QTSeekBarMode
19
+
20
+ 进度条的模式
21
+
22
+ | Name | Description | Type | Default |
23
+ | -------------- | ------------------| ----------------------------|---------|
24
+ | QT_SEEK_BAR_MODE_SINGLE | 单进度条模式 | ^[QTSeekBarMode] | |
25
+ | QT_SEEK_BAR_MODE_RANGE | 双进度条模式 | ^[QTSeekBarMode] | |
26
+
27
+ #### QTSeekBarGravity
28
+
29
+ 进度条的位置
30
+
31
+ | Name | Description | Type | Default |
32
+ | -------------- | ------------------| ----------------------------|---------|
33
+ | QT_SEEK_BAR_GRAVITY_TOP | 顶部 | ^[QTSeekBarGravity] | |
34
+ | QT_SEEK_BAR_GRAVITY_BOTTOM | 底部 | ^[QTSeekBarGravity] | |
35
+ | QT_SEEK_BAR_GRAVITY_CENTER | 居中 | ^[QTSeekBarGravity] | |
36
+
37
+ #### QTSeekBarIndicatorMode
38
+
39
+ 进度条指示器模式
40
+
41
+ | Name | Description | Type | Default |
42
+ | -------------- | ------------------| ----------------------------|---------|
43
+ | QT_SEEK_BAR_INDICATION_MODE_SHOW_WHEN_TOUCH | 触摸时显示 | ^[QTSeekBarIndicatorMode] | |
44
+ | QT_SEEK_BAR_INDICATION_MODE_ALWAYS_HIDE | 一直隐藏 | ^[QTSeekBarIndicatorMode] | |
45
+ | QT_SEEK_BAR_INDICATION_MODE_ALWAYS_SHOW_AFTER_TOUCH | 触摸后显示 | ^[QTSeekBarIndicatorMode] | |
46
+ | QT_SEEK_BAR_INDICATION_MODE_ALWAYS_SHOW | 一直显示 | ^[QTSeekBarIndicatorMode] | |
47
+
48
+ #### QTSeekBarTickMarkMode
49
+
50
+ 进度条刻度模式
51
+
52
+ | Name | Description | Type | Default |
53
+ | -------------- | ------------------| ----------------------------|---------|
54
+ | QT_SEEK_BAR_TICK_MARK_MODE_NUMBER | 数字 | ^[QTSeekBarTickMarkMode] | |
55
+ | QT_SEEK_BAR_TICK_MARK_MODE_OTHER | 其他 | ^[QTSeekBarTickMarkMode] | |
56
+
57
+ #### QTSeekBarTickMarkGravity
58
+
59
+ 进度条刻度位置
60
+
61
+ | Name | Description | Type | Default |
62
+ | -------------- | ------------------| ----------------------------|---------|
63
+ | QT_SEEK_BAR_TICK_MARK_GRAVITY_LEFT | 左 | ^[QTSeekBarIndicatorMode] | |
64
+ | QT_SEEK_BAR_TICK_MARK_GRAVITY_CENTER | 居中 | ^[QTSeekBarIndicatorMode] | |
65
+ | QT_SEEK_BAR_TICK_MARK_GRAVITY_RIGHT | 右 | ^[QTSeekBarIndicatorMode] | |
66
+
67
+ #### QTSeekBarTickMarkLayoutGravity
68
+
69
+ 进度条刻度布局位置
70
+
71
+ | Name | Description | Type | Default |
72
+ | -------------- | ------------------| ----------------------------|---------|
73
+ | QT_SEEK_BAR_TICK_MARK_LAYOUT_GRAVITY_TOP | 上 | ^[QTSeekBarTickMarkLayoutGravity] | |
74
+ | QT_SEEK_BAR_TICK_MARK_LAYOUT_GRAVITY_BOTTOM | 下 | ^[QTSeekBarTickMarkLayoutGravity] | |
75
+
76
+ ### Attributes
77
+
78
+ | Name | Description | Type | Default |
79
+ | ------------------------------- | ----------------------------------------- | --------------------------------------------------| ------- |
80
+ | backgroundColor | 背景颜色 | ^[string] | - |
81
+ | cornerRadius | 圆角 | ^[number] | - |
82
+ | secondColor | 第二颜色 | ^[string] | - |
83
+ | show | 是否显示 | ^[boolean] | true |
84
+ | maxProgress | 总长度 | ^[number] | - |
85
+ | secondProgress | 第二总长度 | ^[number] | - |
86
+ | color | 颜色 | ^[object]`{startColor: string, endColor: string}`| - |
87
+ | visible | 该方法用于设置是否可见 | ^[boolean] |
88
+ | focusable | 该方法用于设置是否能获取焦点 | ^[boolean] |
89
+ | clickable | 该方法用于设置是否可点击 | ^[boolean] |
90
+ | leftSeekBarVisible | 该方法用于设置左进度条是否可见 | ^[boolean] |
91
+ | rightSeekBarVisible | 该方法用于设置右进度条是否可见 | ^[boolean] |
92
+ | seekBarMode | 该方法用于设置进度条模式 | ^[QTSeekBarMode] |
93
+ | progress | 该方法用于设置进度条进度 | ^[number] |
94
+ | rangeProgress | 该方法用于设置范围进度 | ^[object]`{leftProgress: number, rightProgress: number}` |
95
+ | range | 该方法用于设置进度条范围 | ^[object]`{min: number, max: number, minInterval: number}` |
96
+ | gravity | 该方法用于设置进度条位置 | ^[QTSeekBarGravity] |
97
+ | progressWidth | 该方法用于设置进度条宽度 | ^[number] |
98
+ | progressHeight | 该方法用于设置进度条高度 | ^[number] |
99
+ | progressLeft | 该方法用于设置进度条左边距 | ^[number] |
100
+ | progressRight | 该方法用于设置进度条右边距 | ^[number] |
101
+ | progressTop | 该方法用于设置进度条顶边距 | ^[number] |
102
+ | progressBottom | 该方法用于设置进度条底边距 | ^[number] |
103
+ | progressRadius | 该方法用于设置进度条圆角 | ^[number] |
104
+ | progressColor | 该方法用于设置进度条颜色 | ^[number] |
105
+ | progressDefaultColor | 该方法用于设置进度条默认颜色 | ^[number] |
106
+ | progressDrawable | 该方法用于设置进度条默认渐变图 | ^[ESGradient] |
107
+ | progressDefaultDrawable | 该方法用于设置进度条默认渐变图 | ^[ESGradient] |
108
+ | progressUrl | 该方法用于设置进度条图片地址 | ^[string] |
109
+ | progressDefaultUrl | 该方法用于设置进度条默认图片地址 | ^[string] |
110
+ | showIndicator | 该方法用于设置是否显示进度条指示器 | ^[boolean] |
111
+ | showLeftIndicator | 该方法用于设置是否显示左进度条指示器 | ^[boolean] |
112
+ | showRightIndicator | 该方法用于设置是否显示右进度条指示器 | ^[boolean] |
113
+ | indicatorShowMode | 该方法用于设置进度条指示器模式 | ^[QTSeekBarIndicatorMode] |
114
+ | leftIndicatorShowMode | 该方法用于设置进度条左指示器模式 | ^[QTSeekBarIndicatorMode] |
115
+ | rightIndicatorShowMode | 该方法用于设置进度条右指示器模式 | ^[QTSeekBarIndicatorMode] |
116
+ | indicatorWidth | 该方法用于设置进度条指示器宽度 | ^[number] |
117
+ | leftIndicatorWidth | 该方法用于设置进度条左指示器宽度 | ^[number] |
118
+ | rightIndicatorWidth | 该方法用于设置进度条右指示器宽度 | ^[number] |
119
+ | indicatorHeight | 该方法用于设置进度条指示器高度 | ^[number] |
120
+ | leftIndicatorHeight | 该方法用于设置进度条左指示器高度 | ^[number] |
121
+ | rightIndicatorHeight | 该方法用于设置进度条右指示器高度 | ^[number] |
122
+ | indicatorTextDecimalFormat | 该方法用于设置进度条指示器数字格式 | ^[string] |
123
+ | leftIndicatorTextDecimalFormat | 该方法用于设置进度条左指示器数字格式 | ^[string] |
124
+ | rightIndicatorTextDecimalFormat | 该方法用于设置进度条右指示器数字格式 | ^[string] |
125
+ | indicatorTextStringFormat | 该方法用于设置进度条指示器文字格式 | ^[string] |
126
+ | leftIndicatorTextStringFormat | 该方法用于设置进度条左指示器文字格式 | ^[string] |
127
+ | rightIndicatorTextStringFormat | 该方法用于设置进度条右指示器文字格式 | ^[string] |
128
+ | indicatorMargin | 该方法用于设置进度条指示器Margin | ^[number] |
129
+ | leftIndicatorMargin | 该方法用于设置进度条左指示器Margin | ^[number] |
130
+ | rightIndicatorMargin | 该方法用于设置进度条右指示器Margin | ^[number] |
131
+ | indicatorPaddingBottom | 该方法用于设置进度条指示器底部边距 | ^[number] |
132
+ | leftIndicatorPaddingBottom | 该方法用于设置进度条左指示器底部边距 | ^[number] |
133
+ | rightIndicatorPaddingBottom | 该方法用于设置进度条右指示器底部边距 | ^[number] |
134
+ | indicatorPaddingTop | 该方法用于设置进度条指示器顶部边距 | ^[number] |
135
+ | leftIndicatorPaddingTop | 该方法用于设置进度条左指示器顶部边距 | ^[number] |
136
+ | rightIndicatorPaddingTop | 该方法用于设置进度条右指示器顶部边距 | ^[number] |
137
+ | indicatorPaddingLeft | 该方法用于设置进度条指示器左边边距 | ^[number] |
138
+ | leftIndicatorPaddingLeft | 该方法用于设置进度条左指示器左边边距 | ^[number] |
139
+ | rightIndicatorPaddingLeft | 该方法用于设置进度条右指示器左边边距 | ^[number] |
140
+ | indicatorPaddingRight | 该方法用于设置进度条指示器右边边距 | ^[number] |
141
+ | leftIndicatorPaddingRight | 该方法用于设置进度条左指示器右边边距 | ^[number] |
142
+ | rightIndicatorPaddingRight | 该方法用于设置进度条右指示器右边边距 | ^[number] |
143
+ | indicatorBackgroundColor | 该方法用于设置进度条指示器背景颜色 | ^[number] |
144
+ | leftIndicatorBackgroundColor | 该方法用于设置进度条左指示器背景颜色 | ^[number] |
145
+ | rightIndicatorBackgroundColor | 该方法用于设置进度条右指示器背景颜色 | ^[number] |
146
+ | indicatorRadius | 该方法用于设置进度条指示器圆角 | ^[number] |
147
+ | leftIndicatorRadius | 该方法用于设置进度条左指示器圆角 | ^[number] |
148
+ | rightIndicatorRadius | 该方法用于设置进度条右指示器圆角 | ^[number] |
149
+ | indicatorTextSize | 该方法用于设置进度条指示器文字大小 | ^[number] |
150
+ | leftIndicatorTextSize | 该方法用于设置进度条左指示器文字大小 | ^[number] |
151
+ | rightIndicatorTextSize | 该方法用于设置进度条右指示器文字大小 | ^[number] |
152
+ | indicatorTextColor | 该方法用于设置进度条指示器文字颜色 | ^[number] |
153
+ | leftIndicatorTextColor | 该方法用于设置进度条左指示器文字颜色 | ^[number] |
154
+ | rightIndicatorTextColor | 该方法用于设置进度条右指示器文字颜色 | ^[number] |
155
+ | indicatorArrowSize | 该方法用于设置进度条指示器箭头的尺寸 | ^[number] |
156
+ | leftIndicatorArrowSize | 该方法用于设置进度条左指示器箭头的尺寸 | ^[number] |
157
+ | rightIndicatorArrowSize | 该方法用于设置进度条右指示器箭头的尺寸 | ^[number] |
158
+ | indicatorDrawable | 该方法用于设置进度条指示器图片 | ^[ESGradient] |
159
+ | leftIndicatorDrawable | 该方法用于设置进度条左指示器图片 | ^[ESGradient] |
160
+ | rightIndicatorDrawable | 该方法用于设置进度条右指示器图片 | ^[ESGradient] |
161
+ | indicatorUrl | 该方法用于设置进度条指示器图片网络地址 | ^[string] |
162
+ | leftIndicatorUrl | 该方法用于设置进度条左指示器图片网络地址 | ^[string] |
163
+ | rightIndicatorUrl | 该方法用于设置进度条右指示器图片网络地址 | ^[string] |
164
+ | thumbWidth | 该方法用于设置进度条滑块的宽度 | ^[number] |
165
+ | leftThumbWidth | 该方法用于设置进度条左滑块的宽度 | ^[number] |
166
+ | rightThumbWidth | 该方法用于设置进度条右滑块的宽度 | ^[number] |
167
+ | thumbHeight | 该方法用于设置进度条滑块的高度 | ^[number] |
168
+ | leftThumbHeight | 该方法用于设置进度条左滑块的高度 | ^[number] |
169
+ | rightThumbHeight | 该方法用于设置进度条右滑块的高度 | ^[number] |
170
+ | thumbScaleRatio | 该方法用于设置进度条滑块的变形度 | ^[number] |
171
+ | leftThumbScaleRatio | 该方法用于设置进度条左滑块的变形度 | ^[number] |
172
+ | rightThumbScaleRatio | 该方法用于设置进度条右滑块的变形度 | ^[number] |
173
+ | thumbActivate | 该方法用于激活进度条滑块 | ^[boolean] |
174
+ | leftThumbActivate | 该方法用于激活进度条左滑块 | ^[boolean] |
175
+ | rightThumbActivate | 该方法用于激活进度条右滑块 | ^[boolean] |
176
+ | thumbDrawable | 该方法用于设置进度条滑块图片 | ^[ESGradient] |
177
+ | leftThumbDrawable | 该方法用于设置进度条左滑块图片 | ^[ESGradient] |
178
+ | rightThumbDrawable | 该方法用于设置进度条右滑块图片 | ^[ESGradient] |
179
+ | thumbUrl | 该方法用于设置进度条滑块图片地址 | ^[string] |
180
+ | leftThumbUrl | 该方法用于设置进度条左滑块图片地址 | ^[string] |
181
+ | rightThumbUrl | 该方法用于设置进度条右滑块图片地址 | ^[string] |
182
+ | thumbInactivatedDrawable | 该方法用于设置进度条滑块非激活状态图片 | ^[ESGradient] |
183
+ | leftThumbInactivatedDrawable | 该方法用于设置进度条左滑块非激活状态图片 | ^[ESGradient] |
184
+ | rightThumbInactivatedDrawable | 该方法用于设置进度条右滑块非激活状态图片 | ^[ESGradient] |
185
+ | thumbInactivatedUrl | 该方法用于设置进度条滑块非激活状态图片地址 | ^[string] |
186
+ | leftThumbInactivatedUrl | 该方法用于设置进度条左滑块非激活状态图片地址 | ^[string] |
187
+ | rightThumbInactivatedUrl | 该方法用于设置进度条右滑块非激活状态图片地址 | ^[string] |
188
+ | tickMarkMode | 该方法用于设置进度条刻度模式 | ^[QTSeekBarTickMarkMode] |
189
+ | tickMarkGravity | 该方法用于设置进度条刻度位置 | ^[QTSeekBarTickMarkGravity] |
190
+ | tickMarkLayoutGravity | 该方法用于设置进度条刻度在父视图位置 | ^[QTSeekBarTickMarkLayoutGravity] |
191
+ | tickMarkTextArray | 该方法用于设置进度条刻度文字 | ^[Array<string>] |
192
+ | tickMarkTextMargin | 该方法用于设置进度条刻度文字Margin | ^[number] |
193
+ | tickMarkTextSize | 该方法用于设置进度条刻度文字大小 | ^[number] |
194
+ | tickMarkTextColor | 该方法用于设置进度条刻度文字颜色 | ^[number] |
195
+ | tickMarkInRangeTextColor | 该方法用于设置进度条刻度文字颜色 | ^[number] |
196
+ | steps | 该方法用于设置进度条步长个数 | ^[number] |
197
+ | stepsWidth | 该方法用于设置进度条步长宽度 | ^[number] |
198
+ | stepsHeight | 该方法用于设置进度条步长高度 | ^[number] |
199
+ | stepsRadius | 该方法用于设置进度条步长圆角 | ^[number] |
200
+ | stepsColor | 该方法用于设置进度条步长颜色 | ^[number] |
201
+ | stepsAutoBonding | 该方法用于设置进度条步长自动粘合 | ^[boolean] |
202
+ | stepsDrawable | 该方法用于设置进度条步长图片 | ^[Array<ESGradient>] |
203
+ | stepsUrl | 该方法用于设置进度条步长图片地址 | ^[Array<string>] |
204
+
205
+ ### Events
206
+
207
+ | Name | Description | Type |
208
+ | ------------------------ | ----------------| ----------------------------------------------------- |
209
+ | onFocusChanged | 焦点变化 | ^[Function]`(isFocused: boolean) => void` |
210
+ | onProgressChanged | 进度变化 | ^[Function]`(progress: number) => void` |
211
+
212
+ ### Exposes
213
+
214
+ | Name | Description | Type |
215
+ | -------------------------------- | --------------------------- | -----------------------------------------------|
216
+ | setFocusable | 该方法用于设置是否能获取焦点 | ^[Function]`(focusable: boolean) => void` |
217
+ | setClickable | 该方法用于设置是否可点击 | ^[Function]`(clickable: boolean) => void` |
218
+ | requestFocus | 该方法用于请求焦点 | ^[Function]`() => void` |
219
+ | setVisible | 该方法用于设置是否可见 | ^[Function]`(visible: boolean) => void` |
220
+ | setLeftSeekBarVisible | 该方法用于设置左进度条是否可见 | ^[Function]`(visible: boolean) => void` |
221
+ | setSeekBarMode | 该方法用于设置进度条模式 | ^[Function]`(mode: QTSeekBarMode) => void` |
222
+ | setProgress | 该方法用于设置进度条进度 | ^[Function]`(progress: number) => void` |
223
+ | setSecondProgress | 该方法用于设置次进度条进度 | ^[Function]`(progress: number) => void` |
224
+ | show | 该方法用于设置是否显示进度条 | ^[Function]`(value: boolean) => void` |
225
+ | setMaxProgress | 该方法用于设置进度条最大进度 | ^[Function]`(progress: number) => void` |
226
+ | setRangeProgress | 该方法用于设置范围进度 | ^[Function]`(leftValue: number, rightValue: number) => void` |
227
+ | getProgress | 该方法用于获取进度 | ^[Function]`() => void` |
228
+ | getLeftProgress | 该方法用于获取左进度条进度 | ^[Function]`() => void` |
229
+ | getRightProgress | 该方法用于获取右进度条进度 | ^[Function]`() => void` |
230
+ | setRange | 该方法用于设置进度条范围 | ^[Function]`(min: number, max: number, minInterval: number) => void` |
231
+ | setGravity | 该方法用于设置进度条位置 | ^[Function]`(gravity: QTSeekBarGravity) => void` |
232
+ | setProgressWidth | 该方法用于设置进度条宽度 | ^[Function]`(progressWidth: number) => void` |
233
+ | setProgressHeight | 该方法用于设置进度条高度 | ^[Function]`(progressHeight: number) => void` |
234
+ | setProgressRadius | 该方法用于设置进度条圆角 | ^[Function]`(progressRadius: number) => void` |
235
+ | setProgressColor | 该方法用于设置进度条颜色 | ^[Function]`(progressColor: number) => void` |
236
+ | setProgressDefaultColor | 该方法用于设置进度条默认颜色 | ^[Function]`(defaultProgressColor: number) => void` |
237
+ | setProgressDefaultDrawable | 该方法用于设置进度条默认渐变图 | ^[Function]`(progressDefaultDrawable: ESGradient) => void` |
238
+ | setProgressUrl | 该方法用于设置进度条图片地址 | ^[Function]`(progressUrl: string) => void` |
239
+ | setProgressDefaultUrl | 该方法用于设置进度条默认图片地址 | ^[Function]`(progressDefaultUrl: string) => void` |
240
+ | showIndicator | 该方法用于设置是否显示进度条指示器 | ^[Function]`(showIndicator: boolean) => void` |
241
+ | showLeftIndicator | 该方法用于设置是否显示左进度条指示器 | ^[Function]`(showLeftIndicator: boolean) => void` |
242
+ | showRightIndicator | 该方法用于设置是否显示右进度条指示器 | ^[Function]`(showRightIndicator: boolean) => void` |
243
+ | setIndicatorShowMode | 该方法用于设置进度条指示器模式 | ^[Function]`(indicatorShowMode: QTSeekBarIndicatorMode) => void` |
244
+ | setLeftIndicatorShowMode | 该方法用于设置进度条左指示器模式 | ^[Function]`(indicatorShowMode: QTSeekBarIndicatorMode) => void` |
245
+ | setRightIndicatorShowMode | 该方法用于设置进度条右指示器模式 | ^[Function]`(indicatorShowMode: QTSeekBarIndicatorMode) => void` |
246
+ | setIndicatorWidth | 该方法用于设置进度条指示器宽度 | ^[Function]`(indicatorWidth: number) => void` |
247
+ | setLeftIndicatorWidth | 该方法用于设置进度条左指示器宽度 | ^[Function]`(indicatorWidth: number) => void` |
248
+ | setRightIndicatorWidth | 该方法用于设置进度条右指示器宽度 | ^[Function]`(indicatorWidth: number) => void` |
249
+ | setIndicatorHeight | 该方法用于设置进度条指示器高度 | ^[Function]`(indicatorHeight: number) => void` |
250
+ | setLeftIndicatorHeight | 该方法用于设置进度条左指示器高度 | ^[Function]`(indicatorHeight: number) => void` |
251
+ | setRightIndicatorHeight | 该方法用于设置进度条右指示器高度 | ^[Function]`(indicatorHeight: number) => void` |
252
+ | setIndicatorTextDecimalFormat | 该方法用于设置进度条指示器数字格式 | ^[Function]`(formatPattern: string) => void` |
253
+ | setLeftIndicatorTextDecimalFormat | 该方法用于设置进度条左指示器数字格式 | ^[Function]`(formatPattern: string) => void` |
254
+ | setRightIndicatorTextDecimalFormat | 该方法用于设置进度条右指示器数字格式 | ^[Function]`(formatPattern: string) => void` |
255
+ | setIndicatorTextStringFormat | 该方法用于设置进度条指示器文字格式 | ^[Function]`(formatPattern: string) => void` |
256
+ | setLeftIndicatorTextStringFormat | 该方法用于设置进度条左指示器文字格式 | ^[Function]`(formatPattern: string) => void` |
257
+ | setRightIndicatorTextStringFormat | 该方法用于设置进度条右指示器文字格式 | ^[Function]`(formatPattern: string) => void` |
258
+ | setIndicatorMargin | 该方法用于设置进度条指示器Margin | ^[Function]`(indicatorMargin: number) => void` |
259
+ | setLeftIndicatorMargin | 该方法用于设置进度条左指示器Margin | ^[Function]`(indicatorMargin: number) => void` |
260
+ | setRightIndicatorMargin | 该方法用于设置进度条右指示器Margin | ^[Function]`(indicatorMargin: number) => void` |
261
+ | setIndicatorPaddingBottom | 该方法用于设置进度条指示器底部边距 | ^[Function]`(indicatorPaddingBottom: number) => void` |
262
+ | setLeftIndicatorPaddingBottom | 该方法用于设置进度条左指示器底部边距 | ^[Function]`(indicatorPaddingBottom: number) => void` |
263
+ | setRightIndicatorPaddingBottom | 该方法用于设置进度条右指示器底部边距 | ^[Function]`(indicatorPaddingBottom: number) => void` |
264
+ | setIndicatorPaddingTop | 该方法用于设置进度条指示器顶部边距 | ^[Function]`(indicatorPaddingTop: number) => void` |
265
+ | setLeftIndicatorPaddingTop | 该方法用于设置进度条左指示器顶部边距 | ^[Function]`(indicatorPaddingTop: number) => void` |
266
+ | setRightIndicatorPaddingTop | 该方法用于设置进度条右指示器顶部边距 | ^[Function]`(indicatorPaddingTop: number) => void` |
267
+ | setIndicatorPaddingLeft | 该方法用于设置进度条指示器左边边距 | ^[Function]`(indicatorPaddingLeft: number) => void` |
268
+ | setLeftIndicatorPaddingLeft | 该方法用于设置进度条左指示器左边边距 | ^[Function]`(indicatorPaddingLeft: number) => void` |
269
+ | setRightIndicatorPaddingLeft | 该方法用于设置进度条右指示器左边边距 | ^[Function]`(indicatorPaddingLeft: number) => void` |
270
+ | setIndicatorPaddingRight | 该方法用于设置进度条指示器右边边距 | ^[Function]`(indicatorPaddingRight: number) => void` |
271
+ | setLeftIndicatorPaddingRight | 该方法用于设置进度条左指示器右边边距 | ^[Function]`(indicatorPaddingRight: number) => void` |
272
+ | setRightIndicatorPaddingRight | 该方法用于设置进度条右指示器右边边距 | ^[Function]`(indicatorPaddingRight: number) => void` |
273
+ | setIndicatorBackgroundColor | 该方法用于设置进度条指示器背景颜色 | ^[Function]`(indicatorBackgroundColor: number) => void` |
274
+ | setLeftIndicatorBackgroundColor | 该方法用于设置进度条左指示器背景颜色 | ^[Function]`(indicatorBackgroundColor: number) => void` |
275
+ | setRightIndicatorBackgroundColor | 该方法用于设置进度条右指示器背景颜色 | ^[Function]`(indicatorBackgroundColor: number) => void` |
276
+ | setIndicatorRadius | 该方法用于设置进度条指示器圆角 | ^[Function]`(indicatorRadius: number) => void` |
277
+ | setLeftIndicatorRadius | 该方法用于设置进度条左指示器圆角 | ^[Function]`(indicatorRadius: number) => void` |
278
+ | setRightIndicatorRadius | 该方法用于设置进度条右指示器圆角 | ^[Function]`(indicatorRadius: number) => void` |
279
+ | setIndicatorTextSize | 该方法用于设置进度条指示器文字大小 | ^[Function]`(indicatorTextSize: number) => void` |
280
+ | setLeftIndicatorTextSize | 该方法用于设置进度条左指示器文字大小 | ^[Function]`(indicatorTextSize: number) => void` |
281
+ | setRightIndicatorTextSize | 该方法用于设置进度条右指示器文字大小 | ^[Function]`(indicatorTextSize: number) => void` |
282
+ | setIndicatorTextColor | 该方法用于设置进度条指示器文字颜色 | ^[Function]`(indicatorTextColor: number) => void` |
283
+ | setLeftIndicatorTextColor | 该方法用于设置进度条左指示器文字颜色 | ^[Function]`(indicatorTextColor: number) => void` |
284
+ | setRightIndicatorTextColor | 该方法用于设置进度条右指示器文字颜色 | ^[Function]`(indicatorTextColor: number) => void` |
285
+ | setIndicatorArrowSize | 该方法用于设置进度条指示器箭头的尺寸 | ^[Function]`(indicatorArrowSize: number) => void` |
286
+ | setLeftIndicatorArrowSize | 该方法用于设置进度条左指示器箭头的尺寸 | ^[Function]`(indicatorArrowSize: number) => void` |
287
+ | setRightIndicatorArrowSize | 该方法用于设置进度条右指示器箭头的尺寸 | ^[Function]`(indicatorArrowSize: number) => void` |
288
+ | setIndicatorDrawable | 该方法用于设置进度条指示器图片 | ^[Function]`(indicatorDrawable: ESGradient) => void` |
289
+ | setLeftIndicatorDrawable | 该方法用于设置进度条左指示器图片 | ^[Function]`(indicatorDrawable: ESGradient) => void` |
290
+ | setRightIndicatorDrawable | 该方法用于设置进度条右指示器图片 | ^[Function]`(indicatorDrawable: ESGradient) => void` |
291
+ | setIndicatorUrl | 该方法用于设置进度条指示器图片网络地址 | ^[Function]`(indicatorUrl: string) => void` |
292
+ | setLeftIndicatorUrl | 该方法用于设置进度条左指示器图片网络地址 | ^[Function]`(indicatorUrl: string) => void` |
293
+ | setRightIndicatorUrl | 该方法用于设置进度条右指示器图片网络地址 | ^[Function]`(indicatorUrl: string) => void` |
294
+ | setThumbWidth | 该方法用于设置进度条滑块的宽度 | ^[Function]`(thumbWidth: number) => void` |
295
+ | setLeftThumbWidth | 该方法用于设置进度条左滑块的宽度 | ^[Function]`(thumbWidth: number) => void` |
296
+ | setRightThumbWidth | 该方法用于设置进度条右滑块的宽度 | ^[Function]`(thumbWidth: number) => void` |
297
+ | setThumbHeight | 该方法用于设置进度条滑块的高度 | ^[Function]`(thumbHeight: number) => void` |
298
+ | setLeftThumbHeight | 该方法用于设置进度条左滑块的高度 | ^[Function]`(thumbHeight: number) => void` |
299
+ | setRightThumbHeight | 该方法用于设置进度条右滑块的高度 | ^[Function]`(thumbHeight: number) => void` |
300
+ | scaleThumb | 该方法用于进度条滑块形变 | ^[Function]`() => void` |
301
+ | scaleLeftThumb | 该方法用于进度条左滑块形变 | ^[Function]`() => void` |
302
+ | scaleRightThumb | 该方法用于进度条右滑块形变 | ^[Function]`() => void` |
303
+ | resetThumb | 该方法用于重置进度条滑块 | ^[Function]`() => void` |
304
+ | resetLeftThumb | 该方法用于重置进度条左滑块 | ^[Function]`() => void` |
305
+ | resetRightThumb | 该方法用于重置进度条右滑块 | ^[Function]`() => void` |
306
+ | setThumbScaleRatio | 该方法用于设置进度条滑块的变形度 | ^[Function]`(thumbScaleRatio: number) => void` |
307
+ | setLeftThumbScaleRatio | 该方法用于设置进度条左滑块的变形度 | ^[Function]`(thumbScaleRatio: number) => void` |
308
+ | setRightThumbScaleRatio | 该方法用于设置进度条右滑块的变形度 | ^[Function]`(thumbScaleRatio: number) => void` |
309
+ | setThumbActivate | 该方法用于激活进度条滑块 | ^[Function]`(activate: boolean) => void` |
310
+ | setLeftThumbActivate | 该方法用于激活进度条左滑块 | ^[Function]`(activate: boolean) => void` |
311
+ | setRightThumbActivate | 该方法用于激活进度条右滑块 | ^[Function]`(activate: boolean) => void` |
312
+ | setThumbDrawable | 该方法用于设置进度条滑块图片 | ^[Function]`(drawable: ESGradient) => void` |
313
+ | setLeftThumbDrawable | 该方法用于设置进度条左滑块图片 | ^[Function]`(drawable: ESGradient) => void` |
314
+ | setRightThumbDrawable | 该方法用于设置进度条右滑块图片 | ^[Function]`(drawable: ESGradient) => void` |
315
+ | setThumbUrl | 该方法用于设置进度条滑块图片地址 | ^[Function]`(url: string) => void` |
316
+ | setLeftThumbUrl | 该方法用于设置进度条左滑块图片地址 | ^[Function]`(url: string) => void` |
317
+ | setRightThumbUrl | 该方法用于设置进度条右滑块图片地址 | ^[Function]`(url: string) => void` |
318
+ | setThumbInactivatedDrawable | 该方法用于设置进度条滑块非激活状态图片 | ^[Function]`(drawable: ESGradient) => void` |
319
+ | setLeftThumbInactivatedDrawable | 该方法用于设置进度条左滑块非激活状态图片 | ^[Function]`(drawable: ESGradient) => void` |
320
+ | setRightThumbInactivatedDrawable | 该方法用于设置进度条右滑块非激活状态图片 | ^[Function]`(drawable: ESGradient) => void` |
321
+ | setThumbInactivatedUrl | 该方法用于设置进度条滑块非激活状态图片地址 | ^[Function]`(url: string) => void` |
322
+ | setLeftThumbInactivatedUrl | 该方法用于设置进度条左滑块非激活状态图片地址 | ^[Function]`(url: string) => void` |
323
+ | setRightThumbInactivatedUrl | 该方法用于设置进度条右滑块非激活状态图片地址 | ^[Function]`(url: string) => void` |
324
+ | setTickMarkMode | 该方法用于设置进度条刻度模式 | ^[Function]`(tickMarkMode: QTSeekBarTickMarkMode) => void` |
325
+ | setTickMarkGravity | 该方法用于设置进度条刻度位置 | ^[Function]`(tickMarkGravity: QTSeekBarTickMarkGravity) => void` |
326
+ | setTickMarkLayoutGravity | 该方法用于设置进度条刻度在父视图位置 | ^[Function]`(tickMarkLayoutGravity: QTSeekBarTickMarkLayoutGravity) => void` |
327
+ | setTickMarkTextArray | 该方法用于设置进度条刻度文字 | ^[Function]`(tickMarkTextArray: Array<string>) => void` |
328
+ | setTickMarkTextMargin | 该方法用于设置进度条刻度文字Margin | ^[Function]`(tickMarkTextMargin: number) => void` |
329
+ | setTickMarkTextSize | 该方法用于设置进度条刻度文字大小 | ^[Function]`(tickMarkTextSize: number) => void` |
330
+ | setTickMarkInRangeTextColor | 该方法用于设置进度条刻度文字颜色 | ^[Function]`(tickMarkInRangeTextColor: number) => void` |
331
+ | setSteps | 该方法用于设置进度条步长个数 | ^[Function]`(steps: number) => void` |
332
+ | setStepsWidth | 该方法用于设置进度条步长宽度 | ^[Function]`(stepsWidth: number) => void` |
333
+ | setStepsHeight | 该方法用于设置进度条步长高度 | ^[Function]`(stepsHeight: number) => void` |
334
+ | setStepsRadius | 该方法用于设置进度条步长圆角 | ^[Function]`(stepsRadius: number) => void` |
335
+ | setStepsColor | 该方法用于设置进度条步长颜色 | ^[Function]`(stepsColor: number) => void` |
336
+ | setStepsDrawable | 该方法用于设置进度条步长图片 | ^[Function]`(drawableArray: Array<ESGradient>) => void` |
337
+ | setStepsUrl | 该方法用于设置进度条步长图片地址 | ^[Function]`(urlArray: Array<string>) => void` |
338
+ | setStepsAutoBonding | 该方法用于设置进度条步长自动粘合 | ^[Function]`(stepsAutoBonding: boolean) => void` |
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
@@ -0,0 +1,23 @@
1
+ ---
2
+ title: QrCode
3
+ lang: zh-CN
4
+ ---
5
+
6
+ # QrCode
7
+
8
+ :::demo ## 基础用法
9
+
10
+ component/qr-code/basic
11
+
12
+ :::
13
+
14
+ <img src="/component/qr-code/qrcode_component.png" />
15
+
16
+ ## API
17
+
18
+ ### Attributes
19
+
20
+ | Name | Description | Type | Default |
21
+ | -------------------- | ----------------- | -----------| ------- |
22
+ | content | 二维码内容 | ^[string] | — |
23
+ | optimize | 优化 | ^[boolean] | false |