zartui 0.1.112 → 3.0.2

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 (594) hide show
  1. package/README.md +6 -2
  2. package/es/badge/Badge.d.ts +66 -0
  3. package/es/badge/Badge.mjs +95 -0
  4. package/es/badge/index.css +1 -0
  5. package/es/badge/index.d.ts +49 -0
  6. package/es/badge/index.mjs +8 -0
  7. package/es/badge/style/index.d.ts +1 -0
  8. package/es/badge/style/index.mjs +2 -0
  9. package/es/button/Button.d.ts +154 -0
  10. package/es/button/Button.mjs +166 -0
  11. package/es/button/index.css +1 -0
  12. package/es/button/index.d.ts +113 -0
  13. package/es/button/index.mjs +8 -0
  14. package/es/button/style/index.d.ts +1 -0
  15. package/es/button/style/index.mjs +5 -0
  16. package/es/button/types.d.ts +5 -0
  17. package/es/button/types.mjs +0 -0
  18. package/es/cell/Cell.d.ts +128 -0
  19. package/es/cell/Cell.mjs +132 -0
  20. package/es/cell/index.css +1 -0
  21. package/es/cell/index.d.ts +74 -0
  22. package/es/cell/index.mjs +8 -0
  23. package/es/cell/style/index.d.ts +1 -0
  24. package/es/cell/style/index.mjs +4 -0
  25. package/es/col/Col.d.ts +38 -0
  26. package/es/col/Col.mjs +63 -0
  27. package/es/col/index.css +1 -0
  28. package/es/col/index.d.ts +31 -0
  29. package/es/col/index.mjs +8 -0
  30. package/es/col/style/index.d.ts +1 -0
  31. package/es/col/style/index.mjs +3 -0
  32. package/es/composables/on-popup-reopen.d.ts +3 -0
  33. package/es/composables/on-popup-reopen.mjs +16 -0
  34. package/es/composables/use-expose.d.ts +1 -0
  35. package/es/composables/use-expose.mjs +11 -0
  36. package/es/composables/use-height.d.ts +2 -0
  37. package/es/composables/use-height.mjs +20 -0
  38. package/es/composables/use-id.d.ts +1 -0
  39. package/es/composables/use-id.mjs +13 -0
  40. package/es/composables/use-lazy-render.d.ts +2 -0
  41. package/es/composables/use-lazy-render.mjs +17 -0
  42. package/es/composables/use-lock-scroll.d.ts +2 -0
  43. package/es/composables/use-lock-scroll.mjs +56 -0
  44. package/es/composables/use-placeholder.d.ts +3 -0
  45. package/es/composables/use-placeholder.mjs +14 -0
  46. package/es/composables/use-refs.d.ts +2 -0
  47. package/es/composables/use-refs.mjs +20 -0
  48. package/es/composables/use-route.d.ts +13 -0
  49. package/es/composables/use-route.mjs +29 -0
  50. package/es/composables/use-tab-status.d.ts +3 -0
  51. package/es/composables/use-tab-status.mjs +7 -0
  52. package/es/composables/use-touch.d.ts +16 -0
  53. package/es/composables/use-touch.mjs +61 -0
  54. package/es/composables/use-visibility-change.d.ts +2 -0
  55. package/es/composables/use-visibility-change.mjs +30 -0
  56. package/es/config-provider/ConfigProvider.d.ts +47 -0
  57. package/es/config-provider/ConfigProvider.mjs +64 -0
  58. package/es/config-provider/index.d.ts +33 -0
  59. package/es/config-provider/index.mjs +8 -0
  60. package/es/config-provider/style/index.d.ts +1 -0
  61. package/es/config-provider/style/index.mjs +1 -0
  62. package/es/divider/Divider.d.ts +40 -0
  63. package/es/divider/Divider.mjs +31 -0
  64. package/es/divider/index.css +1 -0
  65. package/es/divider/index.d.ts +32 -0
  66. package/es/divider/index.mjs +8 -0
  67. package/es/divider/style/index.d.ts +1 -0
  68. package/es/divider/style/index.mjs +2 -0
  69. package/es/empty/Empty.d.ts +29 -0
  70. package/es/empty/Empty.mjs +58 -0
  71. package/es/empty/Images.d.ts +4 -0
  72. package/es/empty/Images.mjs +2104 -0
  73. package/es/empty/index.css +1 -0
  74. package/es/empty/index.d.ts +24 -0
  75. package/es/empty/index.mjs +8 -0
  76. package/es/empty/style/index.d.ts +1 -0
  77. package/es/empty/style/index.mjs +2 -0
  78. package/es/icon/Icon.d.ts +45 -0
  79. package/es/icon/Icon.mjs +59 -0
  80. package/es/icon/config.d.ts +41 -0
  81. package/es/icon/config.mjs +139 -0
  82. package/es/icon/index.css +1 -0
  83. package/es/icon/index.d.ts +35 -0
  84. package/es/icon/index.mjs +8 -0
  85. package/es/icon/style/index.d.ts +1 -0
  86. package/es/icon/style/index.mjs +3 -0
  87. package/es/index.d.ts +35 -0
  88. package/es/index.mjs +105 -0
  89. package/es/list/List.d.ts +74 -0
  90. package/es/list/List.mjs +147 -0
  91. package/es/list/index.css +1 -0
  92. package/es/list/index.d.ts +59 -0
  93. package/es/list/index.mjs +8 -0
  94. package/es/list/style/index.d.ts +1 -0
  95. package/es/list/style/index.mjs +4 -0
  96. package/es/list/types.d.ts +7 -0
  97. package/es/list/types.mjs +0 -0
  98. package/es/loading/Loading.d.ts +39 -0
  99. package/es/loading/Loading.mjs +114 -0
  100. package/es/loading/index.css +1 -0
  101. package/es/loading/index.d.ts +31 -0
  102. package/es/loading/index.mjs +8 -0
  103. package/es/loading/style/index.d.ts +1 -0
  104. package/es/loading/style/index.mjs +2 -0
  105. package/es/locale/index.d.ts +7 -0
  106. package/es/locale/index.mjs +24 -0
  107. package/es/locale/lang/en-US.d.ts +62 -0
  108. package/es/locale/lang/en-US.mjs +64 -0
  109. package/es/locale/lang/zh-CN.d.ts +62 -0
  110. package/es/locale/lang/zh-CN.mjs +64 -0
  111. package/es/locale/style/index.d.ts +1 -0
  112. package/es/locale/style/index.mjs +1 -0
  113. package/es/notice-bar/NoticeBar.d.ts +71 -0
  114. package/es/notice-bar/NoticeBar.mjs +165 -0
  115. package/es/notice-bar/index.css +1 -0
  116. package/es/notice-bar/index.d.ts +56 -0
  117. package/es/notice-bar/index.mjs +8 -0
  118. package/es/notice-bar/style/index.d.ts +1 -0
  119. package/es/notice-bar/style/index.mjs +4 -0
  120. package/es/notice-bar/types.d.ts +7 -0
  121. package/es/notice-bar/types.mjs +0 -0
  122. package/es/notify/Notify.d.ts +134 -0
  123. package/es/notify/Notify.mjs +44 -0
  124. package/es/notify/function-call.d.ts +6 -0
  125. package/es/notify/function-call.mjs +68 -0
  126. package/es/notify/index.css +1 -0
  127. package/es/notify/index.d.ts +99 -0
  128. package/es/notify/index.mjs +18 -0
  129. package/es/notify/style/index.d.ts +1 -0
  130. package/es/notify/style/index.mjs +6 -0
  131. package/es/notify/types.d.ts +17 -0
  132. package/es/notify/types.mjs +0 -0
  133. package/es/number-keyboard/NumberKeyboard.d.ts +162 -0
  134. package/es/number-keyboard/NumberKeyboard.mjs +243 -0
  135. package/es/number-keyboard/NumberKeyboardKey.d.ts +24 -0
  136. package/es/number-keyboard/NumberKeyboardKey.mjs +89 -0
  137. package/es/number-keyboard/index.css +1 -0
  138. package/es/number-keyboard/index.d.ts +119 -0
  139. package/es/number-keyboard/index.mjs +8 -0
  140. package/es/number-keyboard/style/index.d.ts +1 -0
  141. package/es/number-keyboard/style/index.mjs +9 -0
  142. package/es/overlay/Overlay.d.ts +51 -0
  143. package/es/overlay/Overlay.mjs +47 -0
  144. package/es/overlay/index.css +1 -0
  145. package/es/overlay/index.d.ts +40 -0
  146. package/es/overlay/index.mjs +8 -0
  147. package/es/overlay/style/index.d.ts +1 -0
  148. package/es/overlay/style/index.mjs +2 -0
  149. package/es/password-input/PasswordInput.d.ts +63 -0
  150. package/es/password-input/PasswordInput.mjs +78 -0
  151. package/es/password-input/index.css +1 -0
  152. package/es/password-input/index.d.ts +49 -0
  153. package/es/password-input/index.mjs +8 -0
  154. package/es/password-input/style/index.d.ts +1 -0
  155. package/es/password-input/style/index.mjs +2 -0
  156. package/es/popup/Popup.d.ts +165 -0
  157. package/es/popup/Popup.mjs +205 -0
  158. package/es/popup/index.css +1 -0
  159. package/es/popup/index.d.ts +123 -0
  160. package/es/popup/index.mjs +8 -0
  161. package/es/popup/shared.d.ts +30 -0
  162. package/es/popup/shared.mjs +22 -0
  163. package/es/popup/style/index.d.ts +1 -0
  164. package/es/popup/style/index.mjs +5 -0
  165. package/es/popup/types.d.ts +8 -0
  166. package/es/popup/types.mjs +0 -0
  167. package/es/pull-refresh/PullRefresh.d.ts +75 -0
  168. package/es/pull-refresh/PullRefresh.mjs +191 -0
  169. package/es/pull-refresh/index.css +1 -0
  170. package/es/pull-refresh/index.d.ts +58 -0
  171. package/es/pull-refresh/index.mjs +8 -0
  172. package/es/pull-refresh/style/index.d.ts +1 -0
  173. package/es/pull-refresh/style/index.mjs +3 -0
  174. package/es/rate/Rate.d.ts +107 -0
  175. package/es/rate/Rate.mjs +217 -0
  176. package/es/rate/index.css +1 -0
  177. package/es/rate/index.d.ts +80 -0
  178. package/es/rate/index.mjs +8 -0
  179. package/es/rate/style/index.d.ts +1 -0
  180. package/es/rate/style/index.mjs +4 -0
  181. package/es/row/Row.d.ts +64 -0
  182. package/es/row/Row.mjs +91 -0
  183. package/es/row/index.css +1 -0
  184. package/es/row/index.d.ts +42 -0
  185. package/es/row/index.mjs +8 -0
  186. package/es/row/style/index.d.ts +1 -0
  187. package/es/row/style/index.mjs +2 -0
  188. package/es/stepper/Stepper.d.ts +181 -0
  189. package/es/stepper/Stepper.mjs +258 -0
  190. package/es/stepper/index.css +1 -0
  191. package/es/stepper/index.d.ts +132 -0
  192. package/es/stepper/index.mjs +8 -0
  193. package/es/stepper/style/index.d.ts +1 -0
  194. package/es/stepper/style/index.mjs +4 -0
  195. package/es/sticky/Sticky.d.ts +58 -0
  196. package/es/sticky/Sticky.mjs +119 -0
  197. package/es/sticky/index.css +1 -0
  198. package/es/sticky/index.d.ts +45 -0
  199. package/es/sticky/index.mjs +8 -0
  200. package/es/sticky/style/index.d.ts +1 -0
  201. package/es/sticky/style/index.mjs +2 -0
  202. package/es/style/animation.css +1 -0
  203. package/es/style/base.css +1 -0
  204. package/es/style/css-variables.css +1 -0
  205. package/es/style/mixins/clearfix.css +0 -0
  206. package/es/style/mixins/ellipsis.css +0 -0
  207. package/es/style/mixins/hairline.css +0 -0
  208. package/es/style/normalize.css +1 -0
  209. package/es/swipe/Swipe.d.ts +121 -0
  210. package/es/swipe/Swipe.mjs +353 -0
  211. package/es/swipe/index.css +1 -0
  212. package/es/swipe/index.d.ts +90 -0
  213. package/es/swipe/index.mjs +8 -0
  214. package/es/swipe/style/index.d.ts +1 -0
  215. package/es/swipe/style/index.mjs +2 -0
  216. package/es/swipe/types.d.ts +31 -0
  217. package/es/swipe/types.mjs +0 -0
  218. package/es/swipe-item/SwipeItem.d.ts +2 -0
  219. package/es/swipe-item/SwipeItem.mjs +82 -0
  220. package/es/swipe-item/index.css +1 -0
  221. package/es/swipe-item/index.d.ts +7 -0
  222. package/es/swipe-item/index.mjs +8 -0
  223. package/es/swipe-item/style/index.d.ts +1 -0
  224. package/es/swipe-item/style/index.mjs +3 -0
  225. package/es/switch/Switch.d.ts +58 -0
  226. package/es/switch/Switch.mjs +85 -0
  227. package/es/switch/index.css +1 -0
  228. package/es/switch/index.d.ts +46 -0
  229. package/es/switch/index.mjs +8 -0
  230. package/es/switch/style/index.d.ts +1 -0
  231. package/es/switch/style/index.mjs +3 -0
  232. package/es/tab/Tab.d.ts +58 -0
  233. package/es/tab/Tab.mjs +113 -0
  234. package/es/tab/index.css +1 -0
  235. package/es/tab/index.d.ts +45 -0
  236. package/es/tab/index.mjs +8 -0
  237. package/es/tab/style/index.d.ts +1 -0
  238. package/es/tab/style/index.mjs +7 -0
  239. package/es/tabs/Tabs.d.ts +154 -0
  240. package/es/tabs/Tabs.mjs +352 -0
  241. package/es/tabs/TabsContent.d.ts +43 -0
  242. package/es/tabs/TabsContent.mjs +64 -0
  243. package/es/tabs/TabsTitle.d.ts +45 -0
  244. package/es/tabs/TabsTitle.mjs +90 -0
  245. package/es/tabs/index.css +1 -0
  246. package/es/tabs/index.d.ts +114 -0
  247. package/es/tabs/index.mjs +8 -0
  248. package/es/tabs/style/index.d.ts +1 -0
  249. package/es/tabs/style/index.mjs +5 -0
  250. package/es/tabs/types.d.ts +23 -0
  251. package/es/tabs/types.mjs +0 -0
  252. package/es/tabs/utils.d.ts +3 -0
  253. package/es/tabs/utils.mjs +37 -0
  254. package/es/toast/Toast.d.ts +112 -0
  255. package/es/toast/Toast.mjs +119 -0
  256. package/es/toast/function-call.d.ts +10 -0
  257. package/es/toast/function-call.mjs +142 -0
  258. package/es/toast/index.css +1 -0
  259. package/es/toast/index.d.ts +79 -0
  260. package/es/toast/index.mjs +26 -0
  261. package/es/toast/lock-click.d.ts +1 -0
  262. package/es/toast/lock-click.mjs +17 -0
  263. package/es/toast/style/index.d.ts +1 -0
  264. package/es/toast/style/index.mjs +7 -0
  265. package/es/toast/types.d.ts +36 -0
  266. package/es/toast/types.mjs +0 -0
  267. package/es/utils/basic.d.ts +18 -0
  268. package/es/utils/basic.mjs +32 -0
  269. package/es/utils/constant.d.ts +8 -0
  270. package/es/utils/constant.mjs +18 -0
  271. package/es/utils/create.d.ts +17 -0
  272. package/es/utils/create.mjs +50 -0
  273. package/es/utils/deep-assign.d.ts +3 -0
  274. package/es/utils/deep-assign.mjs +22 -0
  275. package/es/utils/deep-clone.d.ts +1 -0
  276. package/es/utils/deep-clone.mjs +20 -0
  277. package/es/utils/dom.d.ts +12 -0
  278. package/es/utils/dom.mjs +67 -0
  279. package/es/utils/format.d.ts +13 -0
  280. package/es/utils/format.mjs +120 -0
  281. package/es/utils/index.d.ts +9 -0
  282. package/es/utils/index.mjs +9 -0
  283. package/es/utils/interceptor.d.ts +6 -0
  284. package/es/utils/interceptor.mjs +29 -0
  285. package/es/utils/mount-component.d.ts +14 -0
  286. package/es/utils/mount-component.mjs +39 -0
  287. package/es/utils/props.d.ts +31 -0
  288. package/es/utils/props.mjs +36 -0
  289. package/es/utils/validate.d.ts +9 -0
  290. package/es/utils/validate.mjs +22 -0
  291. package/es/utils/with-install.d.ts +13 -0
  292. package/es/utils/with-install.mjs +12 -0
  293. package/es/vue-sfc-shim.d.ts +6 -0
  294. package/es/vue-tsx-shim.d.ts +16 -0
  295. package/lib/badge/Badge.d.ts +66 -0
  296. package/lib/badge/Badge.js +114 -0
  297. package/lib/badge/index.css +1 -0
  298. package/lib/badge/index.d.ts +49 -0
  299. package/lib/badge/index.js +33 -0
  300. package/lib/badge/style/index.d.ts +1 -0
  301. package/lib/badge/style/index.js +2 -0
  302. package/lib/button/Button.d.ts +154 -0
  303. package/lib/button/Button.js +185 -0
  304. package/lib/button/index.css +1 -0
  305. package/lib/button/index.d.ts +113 -0
  306. package/lib/button/index.js +33 -0
  307. package/lib/button/style/index.d.ts +1 -0
  308. package/lib/button/style/index.js +5 -0
  309. package/lib/button/types.d.ts +5 -0
  310. package/lib/button/types.js +15 -0
  311. package/lib/cell/Cell.d.ts +128 -0
  312. package/lib/cell/Cell.js +151 -0
  313. package/lib/cell/index.css +1 -0
  314. package/lib/cell/index.d.ts +74 -0
  315. package/lib/cell/index.js +33 -0
  316. package/lib/cell/style/index.d.ts +1 -0
  317. package/lib/cell/style/index.js +4 -0
  318. package/lib/col/Col.d.ts +38 -0
  319. package/lib/col/Col.js +82 -0
  320. package/lib/col/index.css +1 -0
  321. package/lib/col/index.d.ts +31 -0
  322. package/lib/col/index.js +33 -0
  323. package/lib/col/style/index.d.ts +1 -0
  324. package/lib/col/style/index.js +3 -0
  325. package/lib/composables/on-popup-reopen.d.ts +3 -0
  326. package/lib/composables/on-popup-reopen.js +35 -0
  327. package/lib/composables/use-expose.d.ts +1 -0
  328. package/lib/composables/use-expose.js +30 -0
  329. package/lib/composables/use-height.d.ts +2 -0
  330. package/lib/composables/use-height.js +39 -0
  331. package/lib/composables/use-id.d.ts +1 -0
  332. package/lib/composables/use-id.js +32 -0
  333. package/lib/composables/use-lazy-render.d.ts +2 -0
  334. package/lib/composables/use-lazy-render.js +36 -0
  335. package/lib/composables/use-lock-scroll.d.ts +2 -0
  336. package/lib/composables/use-lock-scroll.js +75 -0
  337. package/lib/composables/use-placeholder.d.ts +3 -0
  338. package/lib/composables/use-placeholder.js +33 -0
  339. package/lib/composables/use-refs.d.ts +2 -0
  340. package/lib/composables/use-refs.js +39 -0
  341. package/lib/composables/use-route.d.ts +13 -0
  342. package/lib/composables/use-route.js +46 -0
  343. package/lib/composables/use-tab-status.d.ts +3 -0
  344. package/lib/composables/use-tab-status.js +26 -0
  345. package/lib/composables/use-touch.d.ts +16 -0
  346. package/lib/composables/use-touch.js +80 -0
  347. package/lib/composables/use-visibility-change.d.ts +2 -0
  348. package/lib/composables/use-visibility-change.js +49 -0
  349. package/lib/config-provider/ConfigProvider.d.ts +47 -0
  350. package/lib/config-provider/ConfigProvider.js +83 -0
  351. package/lib/config-provider/index.d.ts +33 -0
  352. package/lib/config-provider/index.js +33 -0
  353. package/lib/config-provider/style/index.d.ts +1 -0
  354. package/lib/config-provider/style/index.js +1 -0
  355. package/lib/divider/Divider.d.ts +40 -0
  356. package/lib/divider/Divider.js +50 -0
  357. package/lib/divider/index.css +1 -0
  358. package/lib/divider/index.d.ts +32 -0
  359. package/lib/divider/index.js +33 -0
  360. package/lib/divider/style/index.d.ts +1 -0
  361. package/lib/divider/style/index.js +2 -0
  362. package/lib/empty/Empty.d.ts +29 -0
  363. package/lib/empty/Empty.js +77 -0
  364. package/lib/empty/Images.d.ts +4 -0
  365. package/lib/empty/Images.js +2123 -0
  366. package/lib/empty/index.css +1 -0
  367. package/lib/empty/index.d.ts +24 -0
  368. package/lib/empty/index.js +33 -0
  369. package/lib/empty/style/index.d.ts +1 -0
  370. package/lib/empty/style/index.js +2 -0
  371. package/lib/icon/Icon.d.ts +45 -0
  372. package/lib/icon/Icon.js +78 -0
  373. package/lib/icon/config.d.ts +41 -0
  374. package/lib/icon/config.js +158 -0
  375. package/lib/icon/index.css +1 -0
  376. package/lib/icon/index.d.ts +35 -0
  377. package/lib/icon/index.js +33 -0
  378. package/lib/icon/style/index.d.ts +1 -0
  379. package/lib/icon/style/index.js +3 -0
  380. package/lib/index.css +1 -0
  381. package/lib/index.d.ts +35 -0
  382. package/lib/index.js +125 -0
  383. package/lib/list/List.d.ts +74 -0
  384. package/lib/list/List.js +166 -0
  385. package/lib/list/index.css +1 -0
  386. package/lib/list/index.d.ts +59 -0
  387. package/lib/list/index.js +33 -0
  388. package/lib/list/style/index.d.ts +1 -0
  389. package/lib/list/style/index.js +4 -0
  390. package/lib/list/types.d.ts +7 -0
  391. package/lib/list/types.js +15 -0
  392. package/lib/loading/Loading.d.ts +39 -0
  393. package/lib/loading/Loading.js +133 -0
  394. package/lib/loading/index.css +1 -0
  395. package/lib/loading/index.d.ts +31 -0
  396. package/lib/loading/index.js +33 -0
  397. package/lib/loading/style/index.d.ts +1 -0
  398. package/lib/loading/style/index.js +2 -0
  399. package/lib/locale/index.d.ts +7 -0
  400. package/lib/locale/index.js +49 -0
  401. package/lib/locale/lang/en-US.d.ts +62 -0
  402. package/lib/locale/lang/en-US.js +83 -0
  403. package/lib/locale/lang/zh-CN.d.ts +62 -0
  404. package/lib/locale/lang/zh-CN.js +83 -0
  405. package/lib/locale/style/index.d.ts +1 -0
  406. package/lib/locale/style/index.js +1 -0
  407. package/lib/notice-bar/NoticeBar.d.ts +71 -0
  408. package/lib/notice-bar/NoticeBar.js +190 -0
  409. package/lib/notice-bar/index.css +1 -0
  410. package/lib/notice-bar/index.d.ts +56 -0
  411. package/lib/notice-bar/index.js +33 -0
  412. package/lib/notice-bar/style/index.d.ts +1 -0
  413. package/lib/notice-bar/style/index.js +4 -0
  414. package/lib/notice-bar/types.d.ts +7 -0
  415. package/lib/notice-bar/types.js +15 -0
  416. package/lib/notify/Notify.d.ts +134 -0
  417. package/lib/notify/Notify.js +63 -0
  418. package/lib/notify/function-call.d.ts +6 -0
  419. package/lib/notify/function-call.js +93 -0
  420. package/lib/notify/index.css +1 -0
  421. package/lib/notify/index.d.ts +99 -0
  422. package/lib/notify/index.js +38 -0
  423. package/lib/notify/style/index.d.ts +1 -0
  424. package/lib/notify/style/index.js +6 -0
  425. package/lib/notify/types.d.ts +17 -0
  426. package/lib/notify/types.js +15 -0
  427. package/lib/number-keyboard/NumberKeyboard.d.ts +162 -0
  428. package/lib/number-keyboard/NumberKeyboard.js +268 -0
  429. package/lib/number-keyboard/NumberKeyboardKey.d.ts +24 -0
  430. package/lib/number-keyboard/NumberKeyboardKey.js +114 -0
  431. package/lib/number-keyboard/index.css +1 -0
  432. package/lib/number-keyboard/index.d.ts +119 -0
  433. package/lib/number-keyboard/index.js +33 -0
  434. package/lib/number-keyboard/style/index.d.ts +1 -0
  435. package/lib/number-keyboard/style/index.js +9 -0
  436. package/lib/overlay/Overlay.d.ts +51 -0
  437. package/lib/overlay/Overlay.js +66 -0
  438. package/lib/overlay/index.css +1 -0
  439. package/lib/overlay/index.d.ts +40 -0
  440. package/lib/overlay/index.js +33 -0
  441. package/lib/overlay/style/index.d.ts +1 -0
  442. package/lib/overlay/style/index.js +2 -0
  443. package/lib/password-input/PasswordInput.d.ts +63 -0
  444. package/lib/password-input/PasswordInput.js +97 -0
  445. package/lib/password-input/index.css +1 -0
  446. package/lib/password-input/index.d.ts +49 -0
  447. package/lib/password-input/index.js +33 -0
  448. package/lib/password-input/style/index.d.ts +1 -0
  449. package/lib/password-input/style/index.js +2 -0
  450. package/lib/popup/Popup.d.ts +165 -0
  451. package/lib/popup/Popup.js +224 -0
  452. package/lib/popup/index.css +1 -0
  453. package/lib/popup/index.d.ts +123 -0
  454. package/lib/popup/index.js +33 -0
  455. package/lib/popup/shared.d.ts +30 -0
  456. package/lib/popup/shared.js +41 -0
  457. package/lib/popup/style/index.d.ts +1 -0
  458. package/lib/popup/style/index.js +5 -0
  459. package/lib/popup/types.d.ts +8 -0
  460. package/lib/popup/types.js +15 -0
  461. package/lib/pull-refresh/PullRefresh.d.ts +75 -0
  462. package/lib/pull-refresh/PullRefresh.js +210 -0
  463. package/lib/pull-refresh/index.css +1 -0
  464. package/lib/pull-refresh/index.d.ts +58 -0
  465. package/lib/pull-refresh/index.js +33 -0
  466. package/lib/pull-refresh/style/index.d.ts +1 -0
  467. package/lib/pull-refresh/style/index.js +3 -0
  468. package/lib/rate/Rate.d.ts +107 -0
  469. package/lib/rate/Rate.js +236 -0
  470. package/lib/rate/index.css +1 -0
  471. package/lib/rate/index.d.ts +80 -0
  472. package/lib/rate/index.js +33 -0
  473. package/lib/rate/style/index.d.ts +1 -0
  474. package/lib/rate/style/index.js +4 -0
  475. package/lib/row/Row.d.ts +64 -0
  476. package/lib/row/Row.js +110 -0
  477. package/lib/row/index.css +1 -0
  478. package/lib/row/index.d.ts +42 -0
  479. package/lib/row/index.js +33 -0
  480. package/lib/row/style/index.d.ts +1 -0
  481. package/lib/row/style/index.js +2 -0
  482. package/lib/stepper/Stepper.d.ts +181 -0
  483. package/lib/stepper/Stepper.js +283 -0
  484. package/lib/stepper/index.css +1 -0
  485. package/lib/stepper/index.d.ts +132 -0
  486. package/lib/stepper/index.js +33 -0
  487. package/lib/stepper/style/index.d.ts +1 -0
  488. package/lib/stepper/style/index.js +4 -0
  489. package/lib/sticky/Sticky.d.ts +58 -0
  490. package/lib/sticky/Sticky.js +138 -0
  491. package/lib/sticky/index.css +1 -0
  492. package/lib/sticky/index.d.ts +45 -0
  493. package/lib/sticky/index.js +33 -0
  494. package/lib/sticky/style/index.d.ts +1 -0
  495. package/lib/sticky/style/index.js +2 -0
  496. package/lib/style/animation.css +1 -0
  497. package/lib/style/base.css +1 -0
  498. package/lib/style/css-variables.css +1 -0
  499. package/lib/style/mixins/clearfix.css +0 -0
  500. package/lib/style/mixins/ellipsis.css +0 -0
  501. package/lib/style/mixins/hairline.css +0 -0
  502. package/lib/style/normalize.css +1 -0
  503. package/lib/swipe/Swipe.d.ts +121 -0
  504. package/lib/swipe/Swipe.js +372 -0
  505. package/lib/swipe/index.css +1 -0
  506. package/lib/swipe/index.d.ts +90 -0
  507. package/lib/swipe/index.js +33 -0
  508. package/lib/swipe/style/index.d.ts +1 -0
  509. package/lib/swipe/style/index.js +2 -0
  510. package/lib/swipe/types.d.ts +31 -0
  511. package/lib/swipe/types.js +15 -0
  512. package/lib/swipe-item/SwipeItem.d.ts +2 -0
  513. package/lib/swipe-item/SwipeItem.js +101 -0
  514. package/lib/swipe-item/index.css +1 -0
  515. package/lib/swipe-item/index.d.ts +7 -0
  516. package/lib/swipe-item/index.js +33 -0
  517. package/lib/swipe-item/style/index.d.ts +1 -0
  518. package/lib/swipe-item/style/index.js +3 -0
  519. package/lib/switch/Switch.d.ts +58 -0
  520. package/lib/switch/Switch.js +104 -0
  521. package/lib/switch/index.css +1 -0
  522. package/lib/switch/index.d.ts +46 -0
  523. package/lib/switch/index.js +33 -0
  524. package/lib/switch/style/index.d.ts +1 -0
  525. package/lib/switch/style/index.js +3 -0
  526. package/lib/tab/Tab.d.ts +58 -0
  527. package/lib/tab/Tab.js +132 -0
  528. package/lib/tab/index.css +1 -0
  529. package/lib/tab/index.d.ts +45 -0
  530. package/lib/tab/index.js +33 -0
  531. package/lib/tab/style/index.d.ts +1 -0
  532. package/lib/tab/style/index.js +7 -0
  533. package/lib/tabs/Tabs.d.ts +154 -0
  534. package/lib/tabs/Tabs.js +377 -0
  535. package/lib/tabs/TabsContent.d.ts +43 -0
  536. package/lib/tabs/TabsContent.js +83 -0
  537. package/lib/tabs/TabsTitle.d.ts +45 -0
  538. package/lib/tabs/TabsTitle.js +109 -0
  539. package/lib/tabs/index.css +1 -0
  540. package/lib/tabs/index.d.ts +114 -0
  541. package/lib/tabs/index.js +33 -0
  542. package/lib/tabs/style/index.d.ts +1 -0
  543. package/lib/tabs/style/index.js +5 -0
  544. package/lib/tabs/types.d.ts +23 -0
  545. package/lib/tabs/types.js +15 -0
  546. package/lib/tabs/utils.d.ts +3 -0
  547. package/lib/tabs/utils.js +56 -0
  548. package/lib/toast/Toast.d.ts +112 -0
  549. package/lib/toast/Toast.js +138 -0
  550. package/lib/toast/function-call.d.ts +10 -0
  551. package/lib/toast/function-call.js +167 -0
  552. package/lib/toast/index.css +1 -0
  553. package/lib/toast/index.d.ts +79 -0
  554. package/lib/toast/index.js +42 -0
  555. package/lib/toast/lock-click.d.ts +1 -0
  556. package/lib/toast/lock-click.js +36 -0
  557. package/lib/toast/style/index.d.ts +1 -0
  558. package/lib/toast/style/index.js +7 -0
  559. package/lib/toast/types.d.ts +36 -0
  560. package/lib/toast/types.js +15 -0
  561. package/lib/utils/basic.d.ts +18 -0
  562. package/lib/utils/basic.js +51 -0
  563. package/lib/utils/constant.d.ts +8 -0
  564. package/lib/utils/constant.js +37 -0
  565. package/lib/utils/create.d.ts +17 -0
  566. package/lib/utils/create.js +75 -0
  567. package/lib/utils/deep-assign.d.ts +3 -0
  568. package/lib/utils/deep-assign.js +41 -0
  569. package/lib/utils/deep-clone.d.ts +1 -0
  570. package/lib/utils/deep-clone.js +39 -0
  571. package/lib/utils/dom.d.ts +12 -0
  572. package/lib/utils/dom.js +86 -0
  573. package/lib/utils/format.d.ts +13 -0
  574. package/lib/utils/format.js +139 -0
  575. package/lib/utils/index.d.ts +9 -0
  576. package/lib/utils/index.js +25 -0
  577. package/lib/utils/interceptor.d.ts +6 -0
  578. package/lib/utils/interceptor.js +48 -0
  579. package/lib/utils/mount-component.d.ts +14 -0
  580. package/lib/utils/mount-component.js +58 -0
  581. package/lib/utils/props.d.ts +31 -0
  582. package/lib/utils/props.js +55 -0
  583. package/lib/utils/validate.d.ts +9 -0
  584. package/lib/utils/validate.js +41 -0
  585. package/lib/utils/with-install.d.ts +13 -0
  586. package/lib/utils/with-install.js +31 -0
  587. package/lib/vue-sfc-shim.d.ts +6 -0
  588. package/lib/vue-tsx-shim.d.ts +16 -0
  589. package/lib/web-types.json +3197 -0
  590. package/lib/zartui.cjs.js +6740 -0
  591. package/lib/zartui.es.js +6740 -0
  592. package/lib/zartui.js +6974 -0
  593. package/lib/zartui.min.js +1 -0
  594. package/package.json +50 -61
@@ -0,0 +1 @@
1
+ body{--zt-empty-padding: var(--zt-padding-xl) 0;--zt-empty-image-width: 240px;--zt-empty-image-height: 220px;--zt-empty-description-margin-top: var(--zt-padding-lg);--zt-empty-description-padding: 0 60px;--zt-empty-description-color: var(--zt-text-color);--zt-empty-description-font-size: var(--zt-font-size-lg);--zt-empty-description-line-height: var(--zt-line-height-md);--zt-empty-bottom-margin-top: 24px}.zt-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;box-sizing:border-box;padding:var(--zt-empty-padding)}.zt-empty__image{width:var(--zt-empty-image-width);height:var(--zt-empty-image-height)}.zt-empty__image img{width:100%;height:100%}.zt-empty__description{margin-top:var(--zt-empty-description-margin-top);padding:var(--zt-empty-description-padding);color:var(--zt-empty-description-color);font-size:var(--zt-empty-description-font-size);line-height:var(--zt-empty-description-line-height)}.zt-empty__bottom{margin-top:var(--zt-empty-bottom-margin-top)}
@@ -0,0 +1,24 @@
1
+ export declare const Empty: import("../utils").WithInstall<import("vue").DefineComponent<{
2
+ image: {
3
+ type: import("vue").PropType<string>;
4
+ default: string;
5
+ };
6
+ imageSize: import("vue").PropType<import("../utils").Numeric | [import("../utils").Numeric, import("../utils").Numeric]>;
7
+ description: StringConstructor;
8
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
+ image: {
10
+ type: import("vue").PropType<string>;
11
+ default: string;
12
+ };
13
+ imageSize: import("vue").PropType<import("../utils").Numeric | [import("../utils").Numeric, import("../utils").Numeric]>;
14
+ description: StringConstructor;
15
+ }>>, {
16
+ image: string;
17
+ }>>;
18
+ export default Empty;
19
+ export type { EmptyProps } from './Empty';
20
+ declare module 'vue' {
21
+ interface GlobalComponents {
22
+ ZtEmpty: typeof Empty;
23
+ }
24
+ }
@@ -0,0 +1,8 @@
1
+ import { withInstall } from "../utils/index.mjs";
2
+ import _Empty from "./Empty.mjs";
3
+ const Empty = withInstall(_Empty);
4
+ var stdin_default = Empty;
5
+ export {
6
+ Empty,
7
+ stdin_default as default
8
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import "../../style/base.css";
2
+ import "../index.css";
@@ -0,0 +1,45 @@
1
+ import { type PropType, type ExtractPropTypes } from 'vue';
2
+ import { BadgeProps } from '../badge';
3
+ declare const iconProps: {
4
+ dot: BooleanConstructor;
5
+ tag: {
6
+ type: PropType<keyof HTMLElementTagNameMap>;
7
+ default: keyof HTMLElementTagNameMap;
8
+ };
9
+ name: StringConstructor;
10
+ size: (NumberConstructor | StringConstructor)[];
11
+ badge: (NumberConstructor | StringConstructor)[];
12
+ color: StringConstructor;
13
+ badgeProps: PropType<Partial<BadgeProps>>;
14
+ classPrefix: StringConstructor;
15
+ };
16
+ export declare type IconProps = ExtractPropTypes<typeof iconProps>;
17
+ declare const _default: import("vue").DefineComponent<{
18
+ dot: BooleanConstructor;
19
+ tag: {
20
+ type: PropType<keyof HTMLElementTagNameMap>;
21
+ default: keyof HTMLElementTagNameMap;
22
+ };
23
+ name: StringConstructor;
24
+ size: (NumberConstructor | StringConstructor)[];
25
+ badge: (NumberConstructor | StringConstructor)[];
26
+ color: StringConstructor;
27
+ badgeProps: PropType<Partial<BadgeProps>>;
28
+ classPrefix: StringConstructor;
29
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
30
+ dot: BooleanConstructor;
31
+ tag: {
32
+ type: PropType<keyof HTMLElementTagNameMap>;
33
+ default: keyof HTMLElementTagNameMap;
34
+ };
35
+ name: StringConstructor;
36
+ size: (NumberConstructor | StringConstructor)[];
37
+ badge: (NumberConstructor | StringConstructor)[];
38
+ color: StringConstructor;
39
+ badgeProps: PropType<Partial<BadgeProps>>;
40
+ classPrefix: StringConstructor;
41
+ }>>, {
42
+ dot: boolean;
43
+ tag: keyof HTMLElementTagNameMap;
44
+ }>;
45
+ export default _default;
@@ -0,0 +1,59 @@
1
+ import { mergeProps as _mergeProps, createVNode as _createVNode } from "vue";
2
+ import { inject, computed, defineComponent } from "vue";
3
+ import { addUnit, numericProp, makeStringProp, createNamespace } from "../utils/index.mjs";
4
+ import { Badge } from "../badge/index.mjs";
5
+ import { CONFIG_PROVIDER_KEY } from "../config-provider/ConfigProvider.mjs";
6
+ const [name, bem] = createNamespace("icon");
7
+ const isImage = (name2) => name2 == null ? void 0 : name2.includes("/");
8
+ const iconProps = {
9
+ dot: Boolean,
10
+ tag: makeStringProp("i"),
11
+ name: String,
12
+ size: numericProp,
13
+ badge: numericProp,
14
+ color: String,
15
+ badgeProps: Object,
16
+ classPrefix: String
17
+ };
18
+ var stdin_default = defineComponent({
19
+ name,
20
+ props: iconProps,
21
+ setup(props, {
22
+ slots
23
+ }) {
24
+ const config = inject(CONFIG_PROVIDER_KEY, null);
25
+ const classPrefix = computed(() => props.classPrefix || (config == null ? void 0 : config.iconPrefix) || bem());
26
+ return () => {
27
+ const {
28
+ tag,
29
+ dot,
30
+ name: name2,
31
+ size,
32
+ badge,
33
+ color
34
+ } = props;
35
+ const isImageIcon = isImage(name2);
36
+ return _createVNode(Badge, _mergeProps({
37
+ "dot": dot,
38
+ "tag": tag,
39
+ "class": [classPrefix.value, isImageIcon ? "" : `${classPrefix.value}-${name2}`],
40
+ "style": {
41
+ color,
42
+ fontSize: addUnit(size)
43
+ },
44
+ "content": badge
45
+ }, props.badgeProps), {
46
+ default: () => {
47
+ var _a;
48
+ return [(_a = slots.default) == null ? void 0 : _a.call(slots), isImageIcon && _createVNode("img", {
49
+ "class": bem("image"),
50
+ "src": name2
51
+ }, null)];
52
+ }
53
+ });
54
+ };
55
+ }
56
+ });
57
+ export {
58
+ stdin_default as default
59
+ };
@@ -0,0 +1,41 @@
1
+ declare namespace _default {
2
+ const name: string;
3
+ namespace demo {
4
+ const basicIcon: {
5
+ name: string;
6
+ props: {
7
+ size: string;
8
+ };
9
+ }[];
10
+ const logoIcon: ({
11
+ name: string;
12
+ props: {
13
+ size: string;
14
+ dot: boolean;
15
+ badge?: undefined;
16
+ };
17
+ } | {
18
+ name: string;
19
+ props: {
20
+ size: string;
21
+ badge: string;
22
+ dot?: undefined;
23
+ };
24
+ })[];
25
+ const colorIcon: {
26
+ name: string;
27
+ props: {
28
+ size: string;
29
+ color: string;
30
+ };
31
+ }[];
32
+ const sizeIcon: {
33
+ name: string;
34
+ props: {
35
+ size: string;
36
+ };
37
+ }[];
38
+ }
39
+ const all: string[];
40
+ }
41
+ export default _default;
@@ -0,0 +1,139 @@
1
+ var stdin_default = {
2
+ name: "zart-icon",
3
+ demo: {
4
+ basicIcon: [
5
+ {
6
+ name: "keyboard-s",
7
+ props: {
8
+ size: "32"
9
+ }
10
+ }
11
+ ],
12
+ logoIcon: [
13
+ {
14
+ name: "broadcast",
15
+ props: {
16
+ size: "32",
17
+ dot: true
18
+ }
19
+ },
20
+ {
21
+ name: "broadcast",
22
+ props: {
23
+ size: "32",
24
+ badge: "9"
25
+ }
26
+ },
27
+ {
28
+ name: "broadcast",
29
+ props: {
30
+ size: "32",
31
+ badge: "99+"
32
+ }
33
+ }
34
+ ],
35
+ colorIcon: [
36
+ {
37
+ name: "scan",
38
+ props: {
39
+ size: "32",
40
+ color: "red"
41
+ }
42
+ }
43
+ ],
44
+ sizeIcon: [
45
+ {
46
+ name: "setting",
47
+ props: {
48
+ size: "32"
49
+ }
50
+ },
51
+ {
52
+ name: "setting",
53
+ props: {
54
+ size: "40"
55
+ }
56
+ }
57
+ ]
58
+ },
59
+ all: [
60
+ "stop-r",
61
+ "site",
62
+ "time-interval",
63
+ "play-r",
64
+ "backspace",
65
+ "keyboard-shrink",
66
+ "edit",
67
+ "broadcast",
68
+ "smile",
69
+ "top-mark",
70
+ "call",
71
+ "mission",
72
+ "keyboard-s",
73
+ "question-r",
74
+ "microphone-in-talk",
75
+ "setting",
76
+ "hompage-person-s",
77
+ "department",
78
+ "copy",
79
+ "sweep",
80
+ "select-multiple",
81
+ "share",
82
+ "quote",
83
+ "help-r",
84
+ "play-small",
85
+ "check-r",
86
+ "scan",
87
+ "check-blank-r",
88
+ "eye-closed",
89
+ "eye",
90
+ "deadline-r",
91
+ "clock",
92
+ "menu",
93
+ "navigation",
94
+ "scroll-button",
95
+ "tag",
96
+ "location",
97
+ "spinner-shrink",
98
+ "pause",
99
+ "download",
100
+ "spinner-expand",
101
+ "more-miniprogram",
102
+ "close-miniprogram",
103
+ "share-o",
104
+ "locate",
105
+ "more-plugin",
106
+ "keyboard-arrow-down",
107
+ "keyboard-arrow-up",
108
+ "play",
109
+ "clear",
110
+ "more",
111
+ "warning",
112
+ "microphone",
113
+ "arrow-right",
114
+ "at",
115
+ "menu-s",
116
+ "warning-r",
117
+ "like",
118
+ "delete",
119
+ "filter",
120
+ "clear-r",
121
+ "volume-on",
122
+ "calendar",
123
+ "minus",
124
+ "success-r",
125
+ "star",
126
+ "star-half",
127
+ "shrink",
128
+ "sort",
129
+ "search",
130
+ "plus",
131
+ "minus-s",
132
+ "success",
133
+ "volume-off",
134
+ "expand"
135
+ ]
136
+ };
137
+ export {
138
+ stdin_default as default
139
+ };
@@ -0,0 +1 @@
1
+ .zt-icon{position:relative;display:inline-block;font: 14px/1 zart-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.zt-icon:before{display:inline-block}.zt-icon-stop-r:before{content:"\e66e"}.zt-icon-back:before{content:"\e675"}.zt-icon-home:before{content:"\e665"}.zt-icon-message:before{content:"\e667"}.zt-icon-me:before{content:"\e672"}.zt-icon-contact:before{content:"\e673"}.zt-icon-tab-default:before{content:"\e674"}.zt-icon-down:before{content:"\e640"}.zt-icon-site:before{content:"\e66f"}.zt-icon-time-interval:before{content:"\e670"}.zt-icon-play-r:before{content:"\e671"}.zt-icon-backspace:before{content:"\e66c"}.zt-icon-keyboard-shrink:before{content:"\e66d"}.zt-icon-edit:before{content:"\e66b"}.zt-icon-broadcast:before{content:"\e65e"}.zt-icon-smile:before{content:"\e65f"}.zt-icon-top-mark:before{content:"\e660"}.zt-icon-call:before{content:"\e661"}.zt-icon-mission:before{content:"\e662"}.zt-icon-keyboard-s:before{content:"\e663"}.zt-icon-question-r:before{content:"\e664"}.zt-icon-microphone-in-talk:before{content:"\e666"}.zt-icon-setting:before{content:"\e668"}.zt-icon-hompage-person-s:before{content:"\e669"}.zt-icon-department:before{content:"\e66a"}.zt-icon-copy:before{content:"\e659"}.zt-icon-sweep:before{content:"\e65a"}.zt-icon-select-multiple:before{content:"\e65b"}.zt-icon-share:before{content:"\e65c"}.zt-icon-quote:before{content:"\e65d"}.zt-icon-help-r:before{content:"\e658"}.zt-icon-play-small:before{content:"\e654"}.zt-icon-check-r:before{content:"\e655"}.zt-icon-scan:before{content:"\e656"}.zt-icon-check-blank-r:before{content:"\e657"}.zt-icon-eye-closed:before{content:"\e641"}.zt-icon-eye:before{content:"\e644"}.zt-icon-deadline-r:before{content:"\e650"}.zt-icon-clock:before{content:"\e651"}.zt-icon-menu:before{content:"\e652"}.zt-icon-navigation:before{content:"\e653"}.zt-icon-scroll-button:before{content:"\e630"}.zt-icon-tag:before{content:"\e632"}.zt-icon-location:before{content:"\e642"}.zt-icon-spinner-shrink:before{content:"\e643"}.zt-icon-pause:before{content:"\e645"}.zt-icon-download:before{content:"\e646"}.zt-icon-spinner-expand:before{content:"\e647"}.zt-icon-more-miniprogram:before{content:"\e648"}.zt-icon-close-miniprogram:before{content:"\e649"}.zt-icon-share-o:before{content:"\e64a"}.zt-icon-locate:before{content:"\e64b"}.zt-icon-more-plugin:before{content:"\e64c"}.zt-icon-keyboard-arrow-down:before{content:"\e64d"}.zt-icon-keyboard-arrow-up:before{content:"\e64e"}.zt-icon-play:before{content:"\e64f"}.zt-icon-clear:before{content:"\e62b"}.zt-icon-more:before{content:"\e628"}.zt-icon-warning:before{content:"\e63c"}.zt-icon-microphone:before{content:"\e63d"}.zt-icon-arrow-right:before{content:"\e63e"}.zt-icon-at:before{content:"\e63f"}.zt-icon-menu-s:before{content:"\e623"}.zt-icon-warning-r:before{content:"\e625"}.zt-icon-like:before{content:"\e626"}.zt-icon-delete:before{content:"\e627"}.zt-icon-filter:before{content:"\e629"}.zt-icon-clear-r:before{content:"\e62a"}.zt-icon-volume-on:before{content:"\e62c"}.zt-icon-calendar:before{content:"\e62d"}.zt-icon-minus:before{content:"\e62e"}.zt-icon-success-r:before{content:"\e62f"}.zt-icon-star:before{content:"\e631"}.zt-icon-star-half:before{content:"\e633"}.zt-icon-shrink:before{content:"\e634"}.zt-icon-sort:before{content:"\e635"}.zt-icon-search:before{content:"\e636"}.zt-icon-plus:before{content:"\e637"}.zt-icon-minus-s:before{content:"\e638"}.zt-icon-success:before{content:"\e639"}.zt-icon-volume-off:before{content:"\e63a"}.zt-icon-expand:before{content:"\e63b"}@font-face{font-weight:400;font-family:zart-icon;font-style:normal;font-display:auto;src:url(data:application/x-font-woff2;charset=utf-8;base64,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) format("woff2"),url(//at.alicdn.com/t/c/font_3563889_e38ksj5llmp.woff?t=1661248798119) format("woff"),url(//at.alicdn.com/t/c/font_3563889_e38ksj5llmp.ttf?t=1661248798119) format("truetype")}.zt-icon__image{display:block;width:1em;height:1em;object-fit:contain}
@@ -0,0 +1,35 @@
1
+ export declare const Icon: import("../utils").WithInstall<import("vue").DefineComponent<{
2
+ dot: BooleanConstructor;
3
+ tag: {
4
+ type: import("vue").PropType<keyof HTMLElementTagNameMap>;
5
+ default: keyof HTMLElementTagNameMap;
6
+ };
7
+ name: StringConstructor;
8
+ size: (NumberConstructor | StringConstructor)[];
9
+ badge: (NumberConstructor | StringConstructor)[];
10
+ color: StringConstructor;
11
+ badgeProps: import("vue").PropType<Partial<import("..").BadgeProps>>;
12
+ classPrefix: StringConstructor;
13
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ dot: BooleanConstructor;
15
+ tag: {
16
+ type: import("vue").PropType<keyof HTMLElementTagNameMap>;
17
+ default: keyof HTMLElementTagNameMap;
18
+ };
19
+ name: StringConstructor;
20
+ size: (NumberConstructor | StringConstructor)[];
21
+ badge: (NumberConstructor | StringConstructor)[];
22
+ color: StringConstructor;
23
+ badgeProps: import("vue").PropType<Partial<import("..").BadgeProps>>;
24
+ classPrefix: StringConstructor;
25
+ }>>, {
26
+ dot: boolean;
27
+ tag: keyof HTMLElementTagNameMap;
28
+ }>>;
29
+ export default Icon;
30
+ export type { IconProps } from './Icon';
31
+ declare module 'vue' {
32
+ interface GlobalComponents {
33
+ ZtIcon: typeof Icon;
34
+ }
35
+ }
@@ -0,0 +1,8 @@
1
+ import { withInstall } from "../utils/index.mjs";
2
+ import _Icon from "./Icon.mjs";
3
+ const Icon = withInstall(_Icon);
4
+ var stdin_default = Icon;
5
+ export {
6
+ Icon,
7
+ stdin_default as default
8
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import "../../style/base.css";
2
+ import "../../badge/index.css";
3
+ import "../index.css";
package/es/index.d.ts ADDED
@@ -0,0 +1,35 @@
1
+ export * from "./badge";
2
+ export * from "./button";
3
+ export * from "./cell";
4
+ export * from "./col";
5
+ export * from "./config-provider";
6
+ export * from "./divider";
7
+ export * from "./empty";
8
+ export * from "./icon";
9
+ export * from "./list";
10
+ export * from "./loading";
11
+ export * from "./locale";
12
+ export * from "./notice-bar";
13
+ export * from "./notify";
14
+ export * from "./number-keyboard";
15
+ export * from "./overlay";
16
+ export * from "./password-input";
17
+ export * from "./popup";
18
+ export * from "./pull-refresh";
19
+ export * from "./rate";
20
+ export * from "./row";
21
+ export * from "./stepper";
22
+ export * from "./sticky";
23
+ export * from "./swipe";
24
+ export * from "./swipe-item";
25
+ export * from "./switch";
26
+ export * from "./tab";
27
+ export * from "./tabs";
28
+ export * from "./toast";
29
+ declare namespace _default {
30
+ export { install };
31
+ export { version };
32
+ }
33
+ export default _default;
34
+ export function install(app: any): void;
35
+ export const version: "3.0.2";
package/es/index.mjs ADDED
@@ -0,0 +1,105 @@
1
+ import { Badge } from "./badge/index.mjs";
2
+ import { Button } from "./button/index.mjs";
3
+ import { Cell } from "./cell/index.mjs";
4
+ import { Col } from "./col/index.mjs";
5
+ import { ConfigProvider } from "./config-provider/index.mjs";
6
+ import { Divider } from "./divider/index.mjs";
7
+ import { Empty } from "./empty/index.mjs";
8
+ import { Icon } from "./icon/index.mjs";
9
+ import { List } from "./list/index.mjs";
10
+ import { Loading } from "./loading/index.mjs";
11
+ import { Locale } from "./locale/index.mjs";
12
+ import { NoticeBar } from "./notice-bar/index.mjs";
13
+ import { Notify } from "./notify/index.mjs";
14
+ import { NumberKeyboard } from "./number-keyboard/index.mjs";
15
+ import { Overlay } from "./overlay/index.mjs";
16
+ import { PasswordInput } from "./password-input/index.mjs";
17
+ import { Popup } from "./popup/index.mjs";
18
+ import { PullRefresh } from "./pull-refresh/index.mjs";
19
+ import { Rate } from "./rate/index.mjs";
20
+ import { Row } from "./row/index.mjs";
21
+ import { Stepper } from "./stepper/index.mjs";
22
+ import { Sticky } from "./sticky/index.mjs";
23
+ import { Swipe } from "./swipe/index.mjs";
24
+ import { SwipeItem } from "./swipe-item/index.mjs";
25
+ import { Switch } from "./switch/index.mjs";
26
+ import { Tab } from "./tab/index.mjs";
27
+ import { Tabs } from "./tabs/index.mjs";
28
+ import { Toast } from "./toast/index.mjs";
29
+ const version = "3.0.2";
30
+ function install(app) {
31
+ const components = [
32
+ Badge,
33
+ Button,
34
+ Cell,
35
+ Col,
36
+ ConfigProvider,
37
+ Divider,
38
+ Empty,
39
+ Icon,
40
+ List,
41
+ Loading,
42
+ Locale,
43
+ NoticeBar,
44
+ Notify,
45
+ NumberKeyboard,
46
+ Overlay,
47
+ PasswordInput,
48
+ Popup,
49
+ PullRefresh,
50
+ Rate,
51
+ Row,
52
+ Stepper,
53
+ Sticky,
54
+ Swipe,
55
+ SwipeItem,
56
+ Switch,
57
+ Tab,
58
+ Tabs,
59
+ Toast
60
+ ];
61
+ components.forEach((item) => {
62
+ if (item.install) {
63
+ app.use(item);
64
+ } else if (item.name) {
65
+ app.component(item.name, item);
66
+ }
67
+ });
68
+ }
69
+ export * from "./badge/index.mjs";
70
+ export * from "./button/index.mjs";
71
+ export * from "./cell/index.mjs";
72
+ export * from "./col/index.mjs";
73
+ export * from "./config-provider/index.mjs";
74
+ export * from "./divider/index.mjs";
75
+ export * from "./empty/index.mjs";
76
+ export * from "./icon/index.mjs";
77
+ export * from "./list/index.mjs";
78
+ export * from "./loading/index.mjs";
79
+ export * from "./locale/index.mjs";
80
+ export * from "./notice-bar/index.mjs";
81
+ export * from "./notify/index.mjs";
82
+ export * from "./number-keyboard/index.mjs";
83
+ export * from "./overlay/index.mjs";
84
+ export * from "./password-input/index.mjs";
85
+ export * from "./popup/index.mjs";
86
+ export * from "./pull-refresh/index.mjs";
87
+ export * from "./rate/index.mjs";
88
+ export * from "./row/index.mjs";
89
+ export * from "./stepper/index.mjs";
90
+ export * from "./sticky/index.mjs";
91
+ export * from "./swipe/index.mjs";
92
+ export * from "./swipe-item/index.mjs";
93
+ export * from "./switch/index.mjs";
94
+ export * from "./tab/index.mjs";
95
+ export * from "./tabs/index.mjs";
96
+ export * from "./toast/index.mjs";
97
+ var stdin_default = {
98
+ install,
99
+ version
100
+ };
101
+ export {
102
+ stdin_default as default,
103
+ install,
104
+ version
105
+ };
@@ -0,0 +1,74 @@
1
+ import { ExtractPropTypes } from 'vue';
2
+ import type { ListDirection } from './types';
3
+ declare const listProps: {
4
+ error: BooleanConstructor;
5
+ offset: {
6
+ type: (NumberConstructor | StringConstructor)[];
7
+ default: number;
8
+ };
9
+ loading: BooleanConstructor;
10
+ finished: BooleanConstructor;
11
+ errorText: StringConstructor;
12
+ direction: {
13
+ type: import("vue").PropType<ListDirection>;
14
+ default: ListDirection;
15
+ };
16
+ loadingText: StringConstructor;
17
+ finishedText: StringConstructor;
18
+ immediateCheck: {
19
+ type: BooleanConstructor;
20
+ default: true;
21
+ };
22
+ };
23
+ export declare type ListProps = ExtractPropTypes<typeof listProps>;
24
+ declare const _default: import("vue").DefineComponent<{
25
+ error: BooleanConstructor;
26
+ offset: {
27
+ type: (NumberConstructor | StringConstructor)[];
28
+ default: number;
29
+ };
30
+ loading: BooleanConstructor;
31
+ finished: BooleanConstructor;
32
+ errorText: StringConstructor;
33
+ direction: {
34
+ type: import("vue").PropType<ListDirection>;
35
+ default: ListDirection;
36
+ };
37
+ loadingText: StringConstructor;
38
+ finishedText: StringConstructor;
39
+ immediateCheck: {
40
+ type: BooleanConstructor;
41
+ default: true;
42
+ };
43
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load" | "update:error" | "update:loading")[], "load" | "update:error" | "update:loading", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
44
+ error: BooleanConstructor;
45
+ offset: {
46
+ type: (NumberConstructor | StringConstructor)[];
47
+ default: number;
48
+ };
49
+ loading: BooleanConstructor;
50
+ finished: BooleanConstructor;
51
+ errorText: StringConstructor;
52
+ direction: {
53
+ type: import("vue").PropType<ListDirection>;
54
+ default: ListDirection;
55
+ };
56
+ loadingText: StringConstructor;
57
+ finishedText: StringConstructor;
58
+ immediateCheck: {
59
+ type: BooleanConstructor;
60
+ default: true;
61
+ };
62
+ }>> & {
63
+ onLoad?: ((...args: any[]) => any) | undefined;
64
+ "onUpdate:error"?: ((...args: any[]) => any) | undefined;
65
+ "onUpdate:loading"?: ((...args: any[]) => any) | undefined;
66
+ }, {
67
+ offset: string | number;
68
+ loading: boolean;
69
+ direction: ListDirection;
70
+ error: boolean;
71
+ finished: boolean;
72
+ immediateCheck: boolean;
73
+ }>;
74
+ export default _default;