bitboss-ui 0.1.0 → 0.1.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 (630) hide show
  1. package/README.md +18 -1
  2. package/dist/components/BaseButton/BaseButton.vue.d.ts +205 -0
  3. package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +152 -0
  4. package/dist/components/BaseCheckboxGroup/BaseCheckboxGroup.vue.d.ts +229 -0
  5. package/dist/components/BaseDatePicker/BaseDatePicker.vue.d.ts +88 -0
  6. package/dist/components/BaseDatePickerInput/BaseDatePickerInput.vue.d.ts +128 -0
  7. package/dist/components/BaseDialog/BaseDialog.vue.d.ts +174 -0
  8. package/dist/components/BaseInputContainer/BaseInputContainer.vue.d.ts +133 -0
  9. package/dist/components/BaseNumberInput/BaseNumberInput.vue.d.ts +145 -0
  10. package/dist/components/BaseRadio/BaseRadio.vue.d.ts +126 -0
  11. package/dist/components/BaseRadioGroup/BaseRadioGroup.vue.d.ts +205 -0
  12. package/dist/components/BaseSelect/BaseSelect.vue.d.ts +298 -0
  13. package/dist/components/BaseSlider/BaseSlider.vue.d.ts +135 -0
  14. package/dist/components/BaseSwitch/BaseSwitch.vue.d.ts +129 -0
  15. package/dist/components/BaseSwitchGroup/BaseSwitchGroup.vue.d.ts +181 -0
  16. package/dist/components/BaseTextInput/BaseTextInput.vue.d.ts +119 -0
  17. package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +108 -0
  18. package/dist/components/BbAccordion/BbAccordion.vue.d.ts +40 -0
  19. package/dist/components/BbBadge/BbBadge.vue.d.ts +48 -0
  20. package/dist/components/BbButton/BbButton.vue.d.ts +169 -0
  21. package/dist/components/BbCheckbox/BbCheckbox.vue.d.ts +185 -0
  22. package/dist/components/BbCheckboxGroup/BbCheckboxGroup.vue.d.ts +222 -0
  23. package/dist/components/BbChip/BbChip.vue.d.ts +33 -0
  24. package/dist/components/BbCollapsible/BbCollapsible.vue.d.ts +31 -0
  25. package/dist/components/BbConfirm/BbConfirm.vue.d.ts +23 -0
  26. package/dist/components/BbDatePickerInput/BbDatePickerInput.vue.d.ts +183 -0
  27. package/dist/components/BbDialog/BbDialog.vue.d.ts +120 -0
  28. package/dist/components/BbDropdown/BbDropdown.vue.d.ts +168 -0
  29. package/dist/components/BbDropdownButton/BbDropdownButton.vue.d.ts +115 -0
  30. package/dist/components/BbDropzone/BbDropzone.vue.d.ts +154 -0
  31. package/dist/components/BbIcon/BbIcon.vue.d.ts +34 -0
  32. package/dist/components/BbIntersection/BbIntersection.vue.d.ts +58 -0
  33. package/dist/components/BbNumberInput/BbNumberInput.vue.d.ts +192 -0
  34. package/dist/components/BbOffCanvas/BbOffCanvas.vue.d.ts +173 -0
  35. package/dist/components/BbPagination/BbPagination.vue.d.ts +71 -0
  36. package/dist/components/BbProgress/BbProgress.vue.d.ts +37 -0
  37. package/dist/components/BbRadio/BbRadio.vue.d.ts +166 -0
  38. package/dist/components/BbRadioGroup/BbRadioGroup.vue.d.ts +224 -0
  39. package/dist/components/BbRatio/BbRatio.vue.d.ts +24 -0
  40. package/dist/components/BbSelect/BbSelect.vue.d.ts +313 -0
  41. package/dist/components/BbSlider/BbSlider.vue.d.ts +166 -0
  42. package/dist/components/BbSmoothHeight/BbSmoothHeight.vue.d.ts +66 -0
  43. package/dist/components/BbSpinner/BbSpinner.vue.d.ts +25 -0
  44. package/dist/components/BbSwitch/BbSwitch.vue.d.ts +164 -0
  45. package/dist/components/BbSwitchGroup/BbSwitchGroup.vue.d.ts +195 -0
  46. package/dist/components/BbTab/BbTab.vue.d.ts +73 -0
  47. package/dist/components/BbTable/BbTable.vue.d.ts +331 -0
  48. package/dist/components/BbTextInput/BbTextInput.vue.d.ts +157 -0
  49. package/dist/components/BbTextarea/BbTextarea.vue.d.ts +164 -0
  50. package/dist/components/BbTooltip/BbTooltip.vue.d.ts +82 -0
  51. package/dist/components/BbTree/BbTree.vue.d.ts +91 -0
  52. package/dist/composables/useConfirm.d.ts +48 -0
  53. package/dist/composables/useItemText.d.ts +3 -0
  54. package/dist/composables/useItemValue.d.ts +3 -0
  55. package/dist/composables/useOptions.d.ts +13 -0
  56. package/dist/composables/useRoute.d.ts +3 -0
  57. package/dist/composables/useRouter.d.ts +2 -0
  58. package/dist/index.d.ts +99 -8
  59. package/dist/index.js +148 -0
  60. package/dist/index.js.map +1 -0
  61. package/dist/index10.js +173 -0
  62. package/dist/index10.js.map +1 -0
  63. package/dist/index100.js +6 -0
  64. package/dist/index100.js.map +1 -0
  65. package/dist/index101.js +6 -0
  66. package/dist/index101.js.map +1 -0
  67. package/dist/index102.js +6 -0
  68. package/dist/index102.js.map +1 -0
  69. package/dist/index103.js +6 -0
  70. package/dist/index103.js.map +1 -0
  71. package/dist/index104.js +6 -0
  72. package/dist/index104.js.map +1 -0
  73. package/dist/index105.js +6 -0
  74. package/dist/index105.js.map +1 -0
  75. package/dist/index106.js +6 -0
  76. package/dist/index106.js.map +1 -0
  77. package/dist/index107.js +6 -0
  78. package/dist/index107.js.map +1 -0
  79. package/dist/index108.js +6 -0
  80. package/dist/index108.js.map +1 -0
  81. package/dist/index109.js +6 -0
  82. package/dist/index109.js.map +1 -0
  83. package/dist/index11.js +5 -0
  84. package/dist/index11.js.map +1 -0
  85. package/dist/index110.js +6 -0
  86. package/dist/index110.js.map +1 -0
  87. package/dist/index111.js +6 -0
  88. package/dist/index111.js.map +1 -0
  89. package/dist/index112.js +6 -0
  90. package/dist/index112.js.map +1 -0
  91. package/dist/index113.js +6 -0
  92. package/dist/index113.js.map +1 -0
  93. package/dist/index114.js +6 -0
  94. package/dist/index114.js.map +1 -0
  95. package/dist/index115.js +6 -0
  96. package/dist/index115.js.map +1 -0
  97. package/dist/index116.js +6 -0
  98. package/dist/index116.js.map +1 -0
  99. package/dist/index117.js +6 -0
  100. package/dist/index117.js.map +1 -0
  101. package/dist/index118.js +6 -0
  102. package/dist/index118.js.map +1 -0
  103. package/dist/index119.js +5 -0
  104. package/dist/index119.js.map +1 -0
  105. package/dist/index12.js +235 -0
  106. package/dist/index12.js.map +1 -0
  107. package/dist/index120.js +6 -0
  108. package/dist/index120.js.map +1 -0
  109. package/dist/index121.js +5 -0
  110. package/dist/index121.js.map +1 -0
  111. package/dist/index122.js +6 -0
  112. package/dist/index122.js.map +1 -0
  113. package/dist/index123.js +6 -0
  114. package/dist/index123.js.map +1 -0
  115. package/dist/index124.js +6 -0
  116. package/dist/index124.js.map +1 -0
  117. package/dist/index125.js +6 -0
  118. package/dist/index125.js.map +1 -0
  119. package/dist/index126.js +6 -0
  120. package/dist/index126.js.map +1 -0
  121. package/dist/index127.js +6 -0
  122. package/dist/index127.js.map +1 -0
  123. package/dist/index128.js +6 -0
  124. package/dist/index128.js.map +1 -0
  125. package/dist/index129.js +5 -0
  126. package/dist/index129.js.map +1 -0
  127. package/dist/index13.js +5 -0
  128. package/dist/index13.js.map +1 -0
  129. package/dist/index130.js +6 -0
  130. package/dist/index130.js.map +1 -0
  131. package/dist/index131.js +6 -0
  132. package/dist/index131.js.map +1 -0
  133. package/dist/index132.js +6 -0
  134. package/dist/index132.js.map +1 -0
  135. package/dist/index133.js +6 -0
  136. package/dist/index133.js.map +1 -0
  137. package/dist/index134.js +6 -0
  138. package/dist/index134.js.map +1 -0
  139. package/dist/index135.js +6 -0
  140. package/dist/index135.js.map +1 -0
  141. package/dist/index136.js +6 -0
  142. package/dist/index136.js.map +1 -0
  143. package/dist/index137.js +6 -0
  144. package/dist/index137.js.map +1 -0
  145. package/dist/index138.js +6 -0
  146. package/dist/index138.js.map +1 -0
  147. package/dist/index139.js +6 -0
  148. package/dist/index139.js.map +1 -0
  149. package/dist/index14.js +115 -0
  150. package/dist/index14.js.map +1 -0
  151. package/dist/index140.js +5 -0
  152. package/dist/index140.js.map +1 -0
  153. package/dist/index141.js +6 -0
  154. package/dist/index141.js.map +1 -0
  155. package/dist/index142.js +5 -0
  156. package/dist/index142.js.map +1 -0
  157. package/dist/index143.js +6 -0
  158. package/dist/index143.js.map +1 -0
  159. package/dist/index144.js +6 -0
  160. package/dist/index144.js.map +1 -0
  161. package/dist/index145.js +6 -0
  162. package/dist/index145.js.map +1 -0
  163. package/dist/index146.js +6 -0
  164. package/dist/index146.js.map +1 -0
  165. package/dist/index147.js +6 -0
  166. package/dist/index147.js.map +1 -0
  167. package/dist/index148.js +6 -0
  168. package/dist/index148.js.map +1 -0
  169. package/dist/index149.js +6 -0
  170. package/dist/index149.js.map +1 -0
  171. package/dist/index15.js +5 -0
  172. package/dist/index15.js.map +1 -0
  173. package/dist/index150.js +6 -0
  174. package/dist/index150.js.map +1 -0
  175. package/dist/index151.js +5 -0
  176. package/dist/index151.js.map +1 -0
  177. package/dist/index152.js +7 -0
  178. package/dist/index152.js.map +1 -0
  179. package/dist/index153.js +11 -0
  180. package/dist/index153.js.map +1 -0
  181. package/dist/index154.js +5 -0
  182. package/dist/index154.js.map +1 -0
  183. package/dist/index155.js +5 -0
  184. package/dist/index155.js.map +1 -0
  185. package/dist/index156.js +8 -0
  186. package/dist/index156.js.map +1 -0
  187. package/dist/index157.js +22 -0
  188. package/dist/index157.js.map +1 -0
  189. package/dist/index158.js +23 -0
  190. package/dist/index158.js.map +1 -0
  191. package/dist/index159.js +32 -0
  192. package/dist/index159.js.map +1 -0
  193. package/dist/index16.js +133 -0
  194. package/dist/index16.js.map +1 -0
  195. package/dist/index160.js +5 -0
  196. package/dist/index160.js.map +1 -0
  197. package/dist/index161.js +5 -0
  198. package/dist/index161.js.map +1 -0
  199. package/dist/index162.js +5 -0
  200. package/dist/index162.js.map +1 -0
  201. package/dist/index163.js +19 -0
  202. package/dist/index163.js.map +1 -0
  203. package/dist/index164.js +16 -0
  204. package/dist/index164.js.map +1 -0
  205. package/dist/index165.js +5 -0
  206. package/dist/index165.js.map +1 -0
  207. package/dist/index166.js +6 -0
  208. package/dist/index166.js.map +1 -0
  209. package/dist/index167.js +5 -0
  210. package/dist/index167.js.map +1 -0
  211. package/dist/index168.js +9 -0
  212. package/dist/index168.js.map +1 -0
  213. package/dist/index169.js +353 -0
  214. package/dist/index169.js.map +1 -0
  215. package/dist/index17.js +5 -0
  216. package/dist/index17.js.map +1 -0
  217. package/dist/index170.js +137 -0
  218. package/dist/index170.js.map +1 -0
  219. package/dist/index171.js +189 -0
  220. package/dist/index171.js.map +1 -0
  221. package/dist/index172.js +26 -0
  222. package/dist/index172.js.map +1 -0
  223. package/dist/index173.js +331 -0
  224. package/dist/index173.js.map +1 -0
  225. package/dist/index174.js +5 -0
  226. package/dist/index174.js.map +1 -0
  227. package/dist/index175.js +24 -0
  228. package/dist/index175.js.map +1 -0
  229. package/dist/index176.js +6 -0
  230. package/dist/index176.js.map +1 -0
  231. package/dist/index177.js +6 -0
  232. package/dist/index177.js.map +1 -0
  233. package/dist/index178.js +41 -0
  234. package/dist/index178.js.map +1 -0
  235. package/dist/index179.js +31 -0
  236. package/dist/index179.js.map +1 -0
  237. package/dist/index18.js +93 -0
  238. package/dist/index18.js.map +1 -0
  239. package/dist/index180.js +16 -0
  240. package/dist/index180.js.map +1 -0
  241. package/dist/index181.js +12 -0
  242. package/dist/index181.js.map +1 -0
  243. package/dist/index182.js +99 -0
  244. package/dist/index182.js.map +1 -0
  245. package/dist/index183.js +7 -0
  246. package/dist/index183.js.map +1 -0
  247. package/dist/index184.js +298 -0
  248. package/dist/index184.js.map +1 -0
  249. package/dist/index185.js +9 -0
  250. package/dist/index185.js.map +1 -0
  251. package/dist/index186.js +5 -0
  252. package/dist/index186.js.map +1 -0
  253. package/dist/index187.js +5 -0
  254. package/dist/index187.js.map +1 -0
  255. package/dist/index188.js +5 -0
  256. package/dist/index188.js.map +1 -0
  257. package/dist/index189.js +5 -0
  258. package/dist/index189.js.map +1 -0
  259. package/dist/index19.js +5 -0
  260. package/dist/index19.js.map +1 -0
  261. package/dist/index190.js +238 -0
  262. package/dist/index190.js.map +1 -0
  263. package/dist/index191.js +92 -0
  264. package/dist/index191.js.map +1 -0
  265. package/dist/index192.js +5 -0
  266. package/dist/index192.js.map +1 -0
  267. package/dist/index193.js +120 -0
  268. package/dist/index193.js.map +1 -0
  269. package/dist/index194.js +109 -0
  270. package/dist/index194.js.map +1 -0
  271. package/dist/index195.js +82 -0
  272. package/dist/index195.js.map +1 -0
  273. package/dist/index196.js +227 -0
  274. package/dist/index196.js.map +1 -0
  275. package/dist/index197.js +261 -0
  276. package/dist/index197.js.map +1 -0
  277. package/dist/index198.js +41 -0
  278. package/dist/index198.js.map +1 -0
  279. package/dist/index199.js +5 -0
  280. package/dist/index199.js.map +1 -0
  281. package/dist/index2.js +64 -0
  282. package/dist/index2.js.map +1 -0
  283. package/dist/index20.js +210 -0
  284. package/dist/index20.js.map +1 -0
  285. package/dist/index200.js +5 -0
  286. package/dist/index200.js.map +1 -0
  287. package/dist/index201.js +5 -0
  288. package/dist/index201.js.map +1 -0
  289. package/dist/index202.js +12 -0
  290. package/dist/index202.js.map +1 -0
  291. package/dist/index203.js +9 -0
  292. package/dist/index203.js.map +1 -0
  293. package/dist/index21.js +5 -0
  294. package/dist/index21.js.map +1 -0
  295. package/dist/index22.js +607 -0
  296. package/dist/index22.js.map +1 -0
  297. package/dist/index23.js +5 -0
  298. package/dist/index23.js.map +1 -0
  299. package/dist/index24.js +147 -0
  300. package/dist/index24.js.map +1 -0
  301. package/dist/index25.js +5 -0
  302. package/dist/index25.js.map +1 -0
  303. package/dist/index26.js +118 -0
  304. package/dist/index26.js.map +1 -0
  305. package/dist/index27.js +5 -0
  306. package/dist/index27.js.map +1 -0
  307. package/dist/index28.js +241 -0
  308. package/dist/index28.js.map +1 -0
  309. package/dist/index29.js +5 -0
  310. package/dist/index29.js.map +1 -0
  311. package/dist/index3.js +5 -0
  312. package/dist/index3.js.map +1 -0
  313. package/dist/index30.js +83 -0
  314. package/dist/index30.js.map +1 -0
  315. package/dist/index31.js +5 -0
  316. package/dist/index31.js.map +1 -0
  317. package/dist/index32.js +60 -0
  318. package/dist/index32.js.map +1 -0
  319. package/dist/index33.js +5 -0
  320. package/dist/index33.js.map +1 -0
  321. package/dist/index34.js +46 -0
  322. package/dist/index34.js.map +1 -0
  323. package/dist/index35.js +5 -0
  324. package/dist/index35.js.map +1 -0
  325. package/dist/index36.js +46 -0
  326. package/dist/index36.js.map +1 -0
  327. package/dist/index37.js +5 -0
  328. package/dist/index37.js.map +1 -0
  329. package/dist/index38.js +46 -0
  330. package/dist/index38.js.map +1 -0
  331. package/dist/index39.js +5 -0
  332. package/dist/index39.js.map +1 -0
  333. package/dist/index4.js +131 -0
  334. package/dist/index4.js.map +1 -0
  335. package/dist/index40.js +92 -0
  336. package/dist/index40.js.map +1 -0
  337. package/dist/index41.js +5 -0
  338. package/dist/index41.js.map +1 -0
  339. package/dist/index42.js +105 -0
  340. package/dist/index42.js.map +1 -0
  341. package/dist/index43.js +5 -0
  342. package/dist/index43.js.map +1 -0
  343. package/dist/index44.js +86 -0
  344. package/dist/index44.js.map +1 -0
  345. package/dist/index45.js +5 -0
  346. package/dist/index45.js.map +1 -0
  347. package/dist/index46.js +88 -0
  348. package/dist/index46.js.map +1 -0
  349. package/dist/index47.js +5 -0
  350. package/dist/index47.js.map +1 -0
  351. package/dist/index48.js +48 -0
  352. package/dist/index48.js.map +1 -0
  353. package/dist/index49.js +5 -0
  354. package/dist/index49.js.map +1 -0
  355. package/dist/index5.js +5 -0
  356. package/dist/index5.js.map +1 -0
  357. package/dist/index50.js +291 -0
  358. package/dist/index50.js.map +1 -0
  359. package/dist/index51.js +5 -0
  360. package/dist/index51.js.map +1 -0
  361. package/dist/index52.js +107 -0
  362. package/dist/index52.js.map +1 -0
  363. package/dist/index53.js +5 -0
  364. package/dist/index53.js.map +1 -0
  365. package/dist/index54.js +221 -0
  366. package/dist/index54.js.map +1 -0
  367. package/dist/index55.js +5 -0
  368. package/dist/index55.js.map +1 -0
  369. package/dist/index56.js +52 -0
  370. package/dist/index56.js.map +1 -0
  371. package/dist/index57.js +5 -0
  372. package/dist/index57.js.map +1 -0
  373. package/dist/index58.js +47 -0
  374. package/dist/index58.js.map +1 -0
  375. package/dist/index59.js +99 -0
  376. package/dist/index59.js.map +1 -0
  377. package/dist/index6.js +243 -0
  378. package/dist/index6.js.map +1 -0
  379. package/dist/index60.js +5 -0
  380. package/dist/index60.js.map +1 -0
  381. package/dist/index61.js +221 -0
  382. package/dist/index61.js.map +1 -0
  383. package/dist/index62.js +5 -0
  384. package/dist/index62.js.map +1 -0
  385. package/dist/index63.js +141 -0
  386. package/dist/index63.js.map +1 -0
  387. package/dist/index64.js +5 -0
  388. package/dist/index64.js.map +1 -0
  389. package/dist/index65.js +25 -0
  390. package/dist/index65.js.map +1 -0
  391. package/dist/index66.js +5 -0
  392. package/dist/index66.js.map +1 -0
  393. package/dist/index67.js +84 -0
  394. package/dist/index67.js.map +1 -0
  395. package/dist/index68.js +5 -0
  396. package/dist/index68.js.map +1 -0
  397. package/dist/index69.js +105 -0
  398. package/dist/index69.js.map +1 -0
  399. package/dist/index7.js +5 -0
  400. package/dist/index7.js.map +1 -0
  401. package/dist/index70.js +5 -0
  402. package/dist/index70.js.map +1 -0
  403. package/dist/index71.js +24 -0
  404. package/dist/index71.js.map +1 -0
  405. package/dist/index72.js +5 -0
  406. package/dist/index72.js.map +1 -0
  407. package/dist/index73.js +123 -0
  408. package/dist/index73.js.map +1 -0
  409. package/dist/index74.js +5 -0
  410. package/dist/index74.js.map +1 -0
  411. package/dist/index75.js +88 -0
  412. package/dist/index75.js.map +1 -0
  413. package/dist/index76.js +5 -0
  414. package/dist/index76.js.map +1 -0
  415. package/dist/index77.js +92 -0
  416. package/dist/index77.js.map +1 -0
  417. package/dist/index78.js +5 -0
  418. package/dist/index78.js.map +1 -0
  419. package/dist/index79.js +105 -0
  420. package/dist/index79.js.map +1 -0
  421. package/dist/index8.js +436 -0
  422. package/dist/index8.js.map +1 -0
  423. package/dist/index80.js +5 -0
  424. package/dist/index80.js.map +1 -0
  425. package/dist/index81.js +116 -0
  426. package/dist/index81.js.map +1 -0
  427. package/dist/index82.js +5 -0
  428. package/dist/index82.js.map +1 -0
  429. package/dist/index83.js +387 -0
  430. package/dist/index83.js.map +1 -0
  431. package/dist/index84.js +5 -0
  432. package/dist/index84.js.map +1 -0
  433. package/dist/index85.js +84 -0
  434. package/dist/index85.js.map +1 -0
  435. package/dist/index86.js +5 -0
  436. package/dist/index86.js.map +1 -0
  437. package/dist/index87.js +84 -0
  438. package/dist/index87.js.map +1 -0
  439. package/dist/index88.js +5 -0
  440. package/dist/index88.js.map +1 -0
  441. package/dist/index89.js +120 -0
  442. package/dist/index89.js.map +1 -0
  443. package/dist/index9.js +5 -0
  444. package/dist/index9.js.map +1 -0
  445. package/dist/index90.js +5 -0
  446. package/dist/index90.js.map +1 -0
  447. package/dist/index91.js +95 -0
  448. package/dist/index91.js.map +1 -0
  449. package/dist/index92.js +5 -0
  450. package/dist/index92.js.map +1 -0
  451. package/dist/index93.js +41 -0
  452. package/dist/index93.js.map +1 -0
  453. package/dist/index94.js +40 -0
  454. package/dist/index94.js.map +1 -0
  455. package/dist/index95.js +50 -0
  456. package/dist/index95.js.map +1 -0
  457. package/dist/index96.js +46 -0
  458. package/dist/index96.js.map +1 -0
  459. package/dist/index97.js +6 -0
  460. package/dist/index97.js.map +1 -0
  461. package/dist/index98.js +6 -0
  462. package/dist/index98.js.map +1 -0
  463. package/dist/index99.js +6 -0
  464. package/dist/index99.js.map +1 -0
  465. package/dist/style.css +1 -0
  466. package/dist/types/Classes.d.ts +1 -0
  467. package/dist/utilities/functions/add.d.ts +1 -0
  468. package/dist/utilities/functions/capitalize.d.ts +4 -0
  469. package/dist/utilities/functions/clamp.d.ts +9 -0
  470. package/dist/utilities/functions/cloneDeep.d.ts +1 -0
  471. package/dist/utilities/functions/curry.d.ts +3 -3
  472. package/dist/utilities/functions/debounce.d.ts +2 -0
  473. package/dist/utilities/functions/deburr.d.ts +1 -0
  474. package/dist/utilities/functions/drop.d.ts +1 -0
  475. package/dist/utilities/functions/empty.d.ts +5 -0
  476. package/dist/utilities/functions/findInTree.d.ts +4 -0
  477. package/dist/utilities/functions/findRight.d.ts +4 -0
  478. package/dist/utilities/functions/findRightIndex.d.ts +4 -0
  479. package/dist/utilities/functions/flattenTree.d.ts +1 -0
  480. package/dist/utilities/functions/flow.d.ts +1 -0
  481. package/dist/utilities/functions/get.d.ts +2 -0
  482. package/dist/utilities/functions/groupBy.d.ts +4 -0
  483. package/dist/utilities/functions/gt.d.ts +7 -0
  484. package/dist/utilities/functions/head.d.ts +2 -0
  485. package/dist/utilities/functions/identity.d.ts +1 -0
  486. package/dist/utilities/functions/includes.d.ts +1 -0
  487. package/dist/utilities/functions/indexBy.d.ts +4 -0
  488. package/dist/utilities/functions/initial.d.ts +1 -0
  489. package/dist/utilities/functions/isNil.d.ts +6 -0
  490. package/dist/utilities/functions/isNotNil.d.ts +6 -0
  491. package/dist/utilities/functions/last.d.ts +2 -0
  492. package/dist/utilities/functions/lt.d.ts +7 -0
  493. package/dist/utilities/functions/makeUrl.d.ts +1 -0
  494. package/dist/utilities/functions/mapKeys.d.ts +5 -0
  495. package/dist/utilities/functions/mapValues.d.ts +1 -0
  496. package/dist/utilities/functions/matchesPropertyInsensitive.d.ts +1 -0
  497. package/dist/utilities/functions/mean.d.ts +4 -0
  498. package/dist/utilities/functions/merge.d.ts +1 -0
  499. package/dist/utilities/functions/negate.d.ts +4 -0
  500. package/dist/utilities/functions/noop.d.ts +1 -0
  501. package/dist/utilities/functions/omit.d.ts +2 -0
  502. package/dist/utilities/functions/overEvery.d.ts +4 -0
  503. package/dist/utilities/functions/percentage.d.ts +33 -0
  504. package/dist/utilities/functions/pick.d.ts +1 -0
  505. package/dist/utilities/functions/pickBy.d.ts +1 -0
  506. package/dist/utilities/functions/replace.d.ts +1 -0
  507. package/dist/utilities/functions/replaceInTree.d.ts +4 -0
  508. package/dist/utilities/functions/retry.d.ts +5 -0
  509. package/dist/utilities/functions/roundToTheNearest.d.ts +8 -0
  510. package/dist/utilities/functions/set.d.ts +17 -0
  511. package/dist/utilities/functions/snakeCase.d.ts +1 -0
  512. package/dist/utilities/functions/throttle.d.ts +1 -0
  513. package/dist/utilities/functions/tryTo.d.ts +2 -0
  514. package/dist/utilities/functions/wait.d.ts +2 -0
  515. package/dist/utilities/functions/waitFor.d.ts +2 -0
  516. package/dist/utilities/functions/when.d.ts +9 -0
  517. package/package.json +75 -92
  518. package/dist/bitboss-ui.es.js +0 -392
  519. package/dist/bitboss-ui.umd.js +0 -1
  520. package/dist/components/inertia/InLink.vue.d.ts +0 -55
  521. package/dist/components/inertia/index.d.ts +0 -57
  522. package/dist/components/standalone/BaseInput.vue.d.ts +0 -2
  523. package/dist/components/standalone/BbBreadcrumbs.vue.d.ts +0 -22
  524. package/dist/components/standalone/BbButton.vue.d.ts +0 -2
  525. package/dist/components/standalone/BbLink.vue.d.ts +0 -75
  526. package/dist/default-theme.css +0 -3241
  527. package/src/assets/css/themes/barebone/components/BBCollapsible/index.css +0 -23
  528. package/src/assets/css/themes/barebone/components/BBLInk/index.css +0 -8
  529. package/src/assets/css/themes/barebone/components/BaseCheckbox/index.css +0 -42
  530. package/src/assets/css/themes/barebone/components/BaseCheckboxGroup/index.css +0 -28
  531. package/src/assets/css/themes/barebone/components/BaseDialog/index.css +0 -89
  532. package/src/assets/css/themes/barebone/components/BaseInput/index.css +0 -15
  533. package/src/assets/css/themes/barebone/components/BaseInputContainer/index.css +0 -52
  534. package/src/assets/css/themes/barebone/components/BaseNumberInput/index.css +0 -44
  535. package/src/assets/css/themes/barebone/components/BaseRadio/index.css +0 -33
  536. package/src/assets/css/themes/barebone/components/BaseRadioGroup/index.css +0 -29
  537. package/src/assets/css/themes/barebone/components/BaseSelect/index.css +0 -96
  538. package/src/assets/css/themes/barebone/components/BaseSlider/index.css +0 -47
  539. package/src/assets/css/themes/barebone/components/BaseSwitch/index.css +0 -51
  540. package/src/assets/css/themes/barebone/components/BaseTable/index.css +0 -123
  541. package/src/assets/css/themes/barebone/components/BaseTextarea/index.css +0 -17
  542. package/src/assets/css/themes/barebone/components/BbBadge/index.css +0 -62
  543. package/src/assets/css/themes/barebone/components/BbButton/index.css +0 -27
  544. package/src/assets/css/themes/barebone/components/BbChip/index.css +0 -11
  545. package/src/assets/css/themes/barebone/components/BbSpinner/index.css +0 -20
  546. package/src/assets/css/themes/barebone/index.css +0 -24
  547. package/src/assets/css/themes/default/colors/alert.css +0 -35
  548. package/src/assets/css/themes/default/colors/index.css +0 -2
  549. package/src/assets/css/themes/default/colors/palette.css +0 -114
  550. package/src/assets/css/themes/default/components/badge/index.css +0 -13
  551. package/src/assets/css/themes/default/components/badge/mixins.css +0 -31
  552. package/src/assets/css/themes/default/components/breadcrumb/index.css +0 -24
  553. package/src/assets/css/themes/default/components/button/index.css +0 -60
  554. package/src/assets/css/themes/default/components/button/mixins.css +0 -39
  555. package/src/assets/css/themes/default/components/dialog/index.css +0 -19
  556. package/src/assets/css/themes/default/components/form-controls/checkbox.css +0 -51
  557. package/src/assets/css/themes/default/components/form-controls/index.css +0 -5
  558. package/src/assets/css/themes/default/components/form-controls/input.css +0 -72
  559. package/src/assets/css/themes/default/components/form-controls/radio.css +0 -51
  560. package/src/assets/css/themes/default/components/form-controls/switch.css +0 -27
  561. package/src/assets/css/themes/default/components/form-controls/textarea.css +0 -15
  562. package/src/assets/css/themes/default/components/label/index.css +0 -3
  563. package/src/assets/css/themes/default/components/link/index.css +0 -27
  564. package/src/assets/css/themes/default/components/modal/index.css +0 -79
  565. package/src/assets/css/themes/default/components/popover/index.css +0 -34
  566. package/src/assets/css/themes/default/components/select/index.css +0 -95
  567. package/src/assets/css/themes/default/components/spinner/index.css +0 -19
  568. package/src/assets/css/themes/default/components/table/index.css +0 -117
  569. package/src/assets/css/themes/default/components/tooltip/index.css +0 -35
  570. package/src/assets/css/themes/default/index.css +0 -26
  571. package/src/assets/css/themes/default/typography/index.css +0 -74
  572. package/src/components/inertia/InLink.vue +0 -22
  573. package/src/components/inertia/index.ts +0 -7
  574. package/src/components/standalone/BBCollapsible.vue +0 -116
  575. package/src/components/standalone/BaseCheckbox.vue +0 -174
  576. package/src/components/standalone/BaseCheckboxGroup.vue +0 -400
  577. package/src/components/standalone/BaseConfirm.vue +0 -59
  578. package/src/components/standalone/BaseDialog.vue +0 -354
  579. package/src/components/standalone/BaseInputContainer.vue +0 -125
  580. package/src/components/standalone/BaseNumberInput.stories.ts +0 -97
  581. package/src/components/standalone/BaseNumberInput.vue +0 -185
  582. package/src/components/standalone/BaseRadio.vue +0 -130
  583. package/src/components/standalone/BaseRadioGroup.vue +0 -343
  584. package/src/components/standalone/BaseSelect.stories.ts +0 -159
  585. package/src/components/standalone/BaseSelect.vue +0 -1214
  586. package/src/components/standalone/BaseSlider.vue +0 -185
  587. package/src/components/standalone/BaseSwitch.vue +0 -134
  588. package/src/components/standalone/BaseTable.vue +0 -661
  589. package/src/components/standalone/BaseTextInput.stories.ts +0 -97
  590. package/src/components/standalone/BaseTextInput.vue +0 -80
  591. package/src/components/standalone/BaseTextarea.stories.ts +0 -97
  592. package/src/components/standalone/BaseTextarea.vue +0 -118
  593. package/src/components/standalone/BbBadge.stories.ts +0 -104
  594. package/src/components/standalone/BbBadge.vue +0 -59
  595. package/src/components/standalone/BbBreadcrumbs.vue +0 -45
  596. package/src/components/standalone/BbButton.stories.ts +0 -89
  597. package/src/components/standalone/BbButton.vue +0 -114
  598. package/src/components/standalone/BbCheckbox.vue +0 -50
  599. package/src/components/standalone/BbChip.vue +0 -34
  600. package/src/components/standalone/BbD1.vue +0 -7
  601. package/src/components/standalone/BbD2.vue +0 -7
  602. package/src/components/standalone/BbD3.vue +0 -7
  603. package/src/components/standalone/BbDialog.vue +0 -139
  604. package/src/components/standalone/BbH1.vue +0 -7
  605. package/src/components/standalone/BbH2.vue +0 -7
  606. package/src/components/standalone/BbH3.vue +0 -7
  607. package/src/components/standalone/BbH4.vue +0 -7
  608. package/src/components/standalone/BbH5.vue +0 -7
  609. package/src/components/standalone/BbH6.vue +0 -7
  610. package/src/components/standalone/BbLabel.vue +0 -13
  611. package/src/components/standalone/BbLink.stories.ts +0 -103
  612. package/src/components/standalone/BbLink.vue +0 -76
  613. package/src/components/standalone/BbModal.stories.ts +0 -171
  614. package/src/components/standalone/BbModal.vue +0 -80
  615. package/src/components/standalone/BbPopover.stories.ts +0 -389
  616. package/src/components/standalone/BbPopover.vue +0 -194
  617. package/src/components/standalone/BbRadio.vue +0 -51
  618. package/src/components/standalone/BbSmall.vue +0 -7
  619. package/src/components/standalone/BbSpinner.stories.ts +0 -95
  620. package/src/components/standalone/BbSpinner.vue +0 -45
  621. package/src/components/standalone/BbSwitch.vue +0 -64
  622. package/src/components/standalone/BbTable.stories.ts +0 -457
  623. package/src/components/standalone/BbTable.vue +0 -264
  624. package/src/components/standalone/BbTooltip.stories.ts +0 -311
  625. package/src/components/standalone/BbTooltip.vue +0 -39
  626. package/src/components/standalone/index.ts +0 -17
  627. package/src/composables/useConfirm.ts +0 -128
  628. package/src/composables/useItemText.ts +0 -15
  629. package/src/composables/useItemValue.ts +0 -12
  630. package/src/composables/useOptions.ts +0 -18
package/README.md CHANGED
@@ -1 +1,18 @@
1
- # BitBoss UI kit
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
+
5
+ ## Recommended IDE Setup
6
+
7
+ - [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8
+
9
+ ## Type Support For `.vue` Imports in TS
10
+
11
+ TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
12
+
13
+ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
14
+
15
+ 1. Disable the built-in TypeScript Extension
16
+ 1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
17
+ 2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
18
+ 2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
@@ -0,0 +1,205 @@
1
+ import type { RouterLinkProps } from "vue-router";
2
+ import type { InertiaLinkProps } from "@inertiajs/vue3";
3
+ type VoidHTMLElements = "area" | "base" | "br" | "col" | "command" | "embed" | "hr" | "img" | "input" | "keygen" | "link" | "meta" | "param" | "source" | "track" | "wbr";
4
+ export interface BaseButtonProps {
5
+ activeClass?: RouterLinkProps["activeClass"];
6
+ ariaCurrentValue?: RouterLinkProps["ariaCurrentValue"];
7
+ block?: boolean;
8
+ custom?: RouterLinkProps["custom"];
9
+ data?: InertiaLinkProps["data"];
10
+ disabled?: boolean;
11
+ exactActiveClass?: RouterLinkProps["exactActiveClass"];
12
+ headers?: InertiaLinkProps["headers"];
13
+ href?: string | InertiaLinkProps["href"];
14
+ method?: InertiaLinkProps["method"];
15
+ onBefore?: InertiaLinkProps["onBefore"];
16
+ onCancel?: InertiaLinkProps["onCancel"];
17
+ onCancelToken?: InertiaLinkProps["onCancelToken"];
18
+ onFinish?: InertiaLinkProps["onFinish"];
19
+ only?: InertiaLinkProps["only"];
20
+ onProgress?: InertiaLinkProps["onProgress"];
21
+ onStart?: InertiaLinkProps["onStart"];
22
+ onSuccess?: InertiaLinkProps["onSuccess"];
23
+ preserveScroll?: InertiaLinkProps["preserveScroll"];
24
+ preserveState?: InertiaLinkProps["preserveState"];
25
+ queryStringArrayFormat?: InertiaLinkProps["queryStringArrayFormat"];
26
+ replace?: RouterLinkProps["replace"];
27
+ tag?: keyof Omit<HTMLElementTagNameMap, VoidHTMLElements> | "";
28
+ target?: string;
29
+ to?: RouterLinkProps["to"];
30
+ type?: "button" | "submit" | "reset";
31
+ }
32
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
33
+ activeClass: {
34
+ type: import("vue").PropType<string>;
35
+ };
36
+ ariaCurrentValue: {
37
+ type: import("vue").PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
38
+ };
39
+ custom: {
40
+ type: import("vue").PropType<boolean>;
41
+ };
42
+ data: {
43
+ type: import("vue").PropType<object>;
44
+ };
45
+ exactActiveClass: {
46
+ type: import("vue").PropType<string>;
47
+ };
48
+ headers: {
49
+ type: import("vue").PropType<object>;
50
+ };
51
+ href: {
52
+ type: import("vue").PropType<string>;
53
+ };
54
+ method: {
55
+ type: import("vue").PropType<import("@inertiajs/core").Method>;
56
+ };
57
+ onBefore: {
58
+ type: import("vue").PropType<() => void>;
59
+ };
60
+ onCancel: {
61
+ type: import("vue").PropType<() => void>;
62
+ };
63
+ onCancelToken: {
64
+ type: import("vue").PropType<(cancelToken: import("axios").CancelTokenSource) => void>;
65
+ };
66
+ onFinish: {
67
+ type: import("vue").PropType<() => void>;
68
+ };
69
+ only: {
70
+ type: import("vue").PropType<string[]>;
71
+ };
72
+ onProgress: {
73
+ type: import("vue").PropType<(progress: import("axios").AxiosProgressEvent) => void>;
74
+ };
75
+ onStart: {
76
+ type: import("vue").PropType<() => void>;
77
+ };
78
+ onSuccess: {
79
+ type: import("vue").PropType<() => void>;
80
+ };
81
+ preserveScroll: {
82
+ type: import("vue").PropType<boolean | ((props: import("@inertiajs/core").PageProps) => boolean)>;
83
+ };
84
+ preserveState: {
85
+ type: import("vue").PropType<boolean | ((props: import("@inertiajs/core").PageProps) => boolean) | null>;
86
+ };
87
+ queryStringArrayFormat: {
88
+ type: import("vue").PropType<"brackets" | "indices">;
89
+ };
90
+ replace: {
91
+ type: import("vue").PropType<boolean>;
92
+ };
93
+ to: {
94
+ type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
95
+ };
96
+ block: {
97
+ type: import("vue").PropType<boolean>;
98
+ };
99
+ disabled: {
100
+ type: import("vue").PropType<boolean>;
101
+ };
102
+ tag: {
103
+ type: import("vue").PropType<"" | "object" | "time" | "data" | "a" | "abbr" | "address" | "article" | "aside" | "audio" | "b" | "bdi" | "bdo" | "blockquote" | "body" | "button" | "canvas" | "caption" | "cite" | "code" | "colgroup" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "html" | "i" | "iframe" | "ins" | "kbd" | "label" | "legend" | "li" | "main" | "map" | "mark" | "menu" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "search" | "section" | "select" | "slot" | "small" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "title" | "tr" | "u" | "ul" | "var" | "video">;
104
+ default: string;
105
+ };
106
+ target: {
107
+ type: import("vue").PropType<string>;
108
+ };
109
+ type: {
110
+ type: import("vue").PropType<"button" | "submit" | "reset">;
111
+ default: string;
112
+ };
113
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
114
+ activeClass: {
115
+ type: import("vue").PropType<string>;
116
+ };
117
+ ariaCurrentValue: {
118
+ type: import("vue").PropType<"page" | "step" | "location" | "date" | "time" | "true" | "false">;
119
+ };
120
+ custom: {
121
+ type: import("vue").PropType<boolean>;
122
+ };
123
+ data: {
124
+ type: import("vue").PropType<object>;
125
+ };
126
+ exactActiveClass: {
127
+ type: import("vue").PropType<string>;
128
+ };
129
+ headers: {
130
+ type: import("vue").PropType<object>;
131
+ };
132
+ href: {
133
+ type: import("vue").PropType<string>;
134
+ };
135
+ method: {
136
+ type: import("vue").PropType<import("@inertiajs/core").Method>;
137
+ };
138
+ onBefore: {
139
+ type: import("vue").PropType<() => void>;
140
+ };
141
+ onCancel: {
142
+ type: import("vue").PropType<() => void>;
143
+ };
144
+ onCancelToken: {
145
+ type: import("vue").PropType<(cancelToken: import("axios").CancelTokenSource) => void>;
146
+ };
147
+ onFinish: {
148
+ type: import("vue").PropType<() => void>;
149
+ };
150
+ only: {
151
+ type: import("vue").PropType<string[]>;
152
+ };
153
+ onProgress: {
154
+ type: import("vue").PropType<(progress: import("axios").AxiosProgressEvent) => void>;
155
+ };
156
+ onStart: {
157
+ type: import("vue").PropType<() => void>;
158
+ };
159
+ onSuccess: {
160
+ type: import("vue").PropType<() => void>;
161
+ };
162
+ preserveScroll: {
163
+ type: import("vue").PropType<boolean | ((props: import("@inertiajs/core").PageProps) => boolean)>;
164
+ };
165
+ preserveState: {
166
+ type: import("vue").PropType<boolean | ((props: import("@inertiajs/core").PageProps) => boolean) | null>;
167
+ };
168
+ queryStringArrayFormat: {
169
+ type: import("vue").PropType<"brackets" | "indices">;
170
+ };
171
+ replace: {
172
+ type: import("vue").PropType<boolean>;
173
+ };
174
+ to: {
175
+ type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
176
+ };
177
+ block: {
178
+ type: import("vue").PropType<boolean>;
179
+ };
180
+ disabled: {
181
+ type: import("vue").PropType<boolean>;
182
+ };
183
+ tag: {
184
+ type: import("vue").PropType<"" | "object" | "time" | "data" | "a" | "abbr" | "address" | "article" | "aside" | "audio" | "b" | "bdi" | "bdo" | "blockquote" | "body" | "button" | "canvas" | "caption" | "cite" | "code" | "colgroup" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "html" | "i" | "iframe" | "ins" | "kbd" | "label" | "legend" | "li" | "main" | "map" | "mark" | "menu" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "search" | "section" | "select" | "slot" | "small" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "title" | "tr" | "u" | "ul" | "var" | "video">;
185
+ default: string;
186
+ };
187
+ target: {
188
+ type: import("vue").PropType<string>;
189
+ };
190
+ type: {
191
+ type: import("vue").PropType<"button" | "submit" | "reset">;
192
+ default: string;
193
+ };
194
+ }>>, {
195
+ tag: "" | "object" | "time" | "data" | "a" | "abbr" | "address" | "article" | "aside" | "audio" | "b" | "bdi" | "bdo" | "blockquote" | "body" | "button" | "canvas" | "caption" | "cite" | "code" | "colgroup" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "html" | "i" | "iframe" | "ins" | "kbd" | "label" | "legend" | "li" | "main" | "map" | "mark" | "menu" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "search" | "section" | "select" | "slot" | "small" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "title" | "tr" | "u" | "ul" | "var" | "video";
196
+ type: "button" | "submit" | "reset";
197
+ }, {}>, {
198
+ default?(_: {}): any;
199
+ }>;
200
+ export default _default;
201
+ type __VLS_WithTemplateSlots<T, S> = T & {
202
+ new (): {
203
+ $slots: S;
204
+ };
205
+ };
@@ -0,0 +1,152 @@
1
+ export interface BaseCheckboxProps {
2
+ autofocus?: boolean;
3
+ checked?: boolean;
4
+ color?: string;
5
+ disabled?: boolean;
6
+ hasErrors?: boolean;
7
+ id?: string;
8
+ indeterminate?: boolean;
9
+ modelValue?: any;
10
+ name?: string;
11
+ readonly?: boolean;
12
+ submitWhenFalse?: boolean;
13
+ trueValue?: any;
14
+ falseValue?: any;
15
+ }
16
+ export type BaseCheckboxEvents = {
17
+ (e: 'blur', event: FocusEvent): void;
18
+ (e: 'change', event: Event): void;
19
+ (e: 'click', event: MouseEvent): void;
20
+ (e: 'focus', event: FocusEvent): void;
21
+ (e: 'input', event: Event): void;
22
+ (e: 'keydown', event: KeyboardEvent): void;
23
+ (e: 'mousedown', event: MouseEvent): void;
24
+ (e: 'mouseup', event: MouseEvent): void;
25
+ (e: 'update:modelValue', value: any): void;
26
+ };
27
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
28
+ disabled: {
29
+ type: import("vue").PropType<boolean>;
30
+ };
31
+ name: {
32
+ type: import("vue").PropType<string>;
33
+ };
34
+ autofocus: {
35
+ type: import("vue").PropType<boolean>;
36
+ };
37
+ checked: {
38
+ type: import("vue").PropType<boolean>;
39
+ };
40
+ color: {
41
+ type: import("vue").PropType<string>;
42
+ };
43
+ hasErrors: {
44
+ type: import("vue").PropType<boolean>;
45
+ };
46
+ id: {
47
+ type: import("vue").PropType<string>;
48
+ };
49
+ indeterminate: {
50
+ type: import("vue").PropType<boolean>;
51
+ };
52
+ modelValue: {
53
+ type: import("vue").PropType<any>;
54
+ };
55
+ readonly: {
56
+ type: import("vue").PropType<boolean>;
57
+ };
58
+ submitWhenFalse: {
59
+ type: import("vue").PropType<boolean>;
60
+ };
61
+ trueValue: {
62
+ type: import("vue").PropType<any>;
63
+ default: boolean;
64
+ };
65
+ falseValue: {
66
+ type: import("vue").PropType<any>;
67
+ default: boolean;
68
+ };
69
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
70
+ change: (event: Event) => void;
71
+ click: (event: MouseEvent) => void;
72
+ focus: (event: FocusEvent) => void;
73
+ input: (event: Event) => void;
74
+ keydown: (event: KeyboardEvent) => void;
75
+ mousedown: (event: MouseEvent) => void;
76
+ mouseup: (event: MouseEvent) => void;
77
+ "update:modelValue": (value: any) => void;
78
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
79
+ disabled: {
80
+ type: import("vue").PropType<boolean>;
81
+ };
82
+ name: {
83
+ type: import("vue").PropType<string>;
84
+ };
85
+ autofocus: {
86
+ type: import("vue").PropType<boolean>;
87
+ };
88
+ checked: {
89
+ type: import("vue").PropType<boolean>;
90
+ };
91
+ color: {
92
+ type: import("vue").PropType<string>;
93
+ };
94
+ hasErrors: {
95
+ type: import("vue").PropType<boolean>;
96
+ };
97
+ id: {
98
+ type: import("vue").PropType<string>;
99
+ };
100
+ indeterminate: {
101
+ type: import("vue").PropType<boolean>;
102
+ };
103
+ modelValue: {
104
+ type: import("vue").PropType<any>;
105
+ };
106
+ readonly: {
107
+ type: import("vue").PropType<boolean>;
108
+ };
109
+ submitWhenFalse: {
110
+ type: import("vue").PropType<boolean>;
111
+ };
112
+ trueValue: {
113
+ type: import("vue").PropType<any>;
114
+ default: boolean;
115
+ };
116
+ falseValue: {
117
+ type: import("vue").PropType<any>;
118
+ default: boolean;
119
+ };
120
+ }>> & {
121
+ onInput?: ((event: Event) => any) | undefined;
122
+ onChange?: ((event: Event) => any) | undefined;
123
+ onClick?: ((event: MouseEvent) => any) | undefined;
124
+ onFocus?: ((event: FocusEvent) => any) | undefined;
125
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
126
+ onMousedown?: ((event: MouseEvent) => any) | undefined;
127
+ onMouseup?: ((event: MouseEvent) => any) | undefined;
128
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
129
+ }, {
130
+ trueValue: any;
131
+ falseValue: any;
132
+ }, {}>, {
133
+ icon?(_: {
134
+ checked: boolean;
135
+ disabled: boolean;
136
+ falseValue: any;
137
+ focused: boolean;
138
+ hasErrors: boolean;
139
+ id: string | undefined;
140
+ name: string | undefined;
141
+ parsedValue: any;
142
+ readonly: boolean;
143
+ trueValue: any;
144
+ value: any;
145
+ }): any;
146
+ }>;
147
+ export default _default;
148
+ type __VLS_WithTemplateSlots<T, S> = T & {
149
+ new (): {
150
+ $slots: S;
151
+ };
152
+ };
@@ -0,0 +1,229 @@
1
+ export interface BaseCheckboxGroupProps {
2
+ autofocus?: boolean;
3
+ color?: string;
4
+ dependencies?: any[];
5
+ depsDebounceTime?: number;
6
+ direction?: "horizontal" | "vertical";
7
+ disabled?: boolean;
8
+ enforceCoherence?: boolean;
9
+ hasErrors?: boolean;
10
+ hideLabel?: boolean;
11
+ id?: string;
12
+ items: any[] | ((prefill: boolean, modelValue?: any[]) => Promise<any[]>) | ((prefill: boolean, modelValue?: any[]) => any[]);
13
+ itemText?: string | ((item: any) => string);
14
+ itemValue?: string | ((item: any) => any);
15
+ loadingText?: string;
16
+ modelValue?: any;
17
+ modelValueDebounceTime?: number;
18
+ name?: string;
19
+ noDataText?: string;
20
+ readonly?: boolean;
21
+ }
22
+ export type BaseOption = {
23
+ color?: string;
24
+ disabled?: boolean;
25
+ hasErrors?: boolean;
26
+ hideLabel?: boolean;
27
+ id?: string;
28
+ jsonValue: string;
29
+ name?: string;
30
+ original: any;
31
+ readonly?: boolean;
32
+ text: string;
33
+ value: any;
34
+ };
35
+ export type Option = BaseOption & {
36
+ index: number;
37
+ selected: boolean;
38
+ selectedIndex: number;
39
+ };
40
+ export type BaseCheckboxGroupEvents = {
41
+ (e: "blur", event: FocusEvent): void;
42
+ (e: "change", event: Event): void;
43
+ (e: "click", event: MouseEvent): void;
44
+ (e: "focus", event: FocusEvent): void;
45
+ (e: "inactive"): void;
46
+ (e: "input", event: Event): void;
47
+ (e: "keydown", event: KeyboardEvent): void;
48
+ (e: "mousedown", event: MouseEvent): void;
49
+ (e: "mouseup", event: MouseEvent): void;
50
+ (e: "update:modelValue", value: any): void;
51
+ };
52
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
53
+ disabled: {
54
+ type: import("vue").PropType<boolean>;
55
+ };
56
+ name: {
57
+ type: import("vue").PropType<string>;
58
+ };
59
+ autofocus: {
60
+ type: import("vue").PropType<boolean>;
61
+ };
62
+ color: {
63
+ type: import("vue").PropType<string>;
64
+ };
65
+ hasErrors: {
66
+ type: import("vue").PropType<boolean>;
67
+ };
68
+ id: {
69
+ type: import("vue").PropType<string>;
70
+ };
71
+ modelValue: {
72
+ type: import("vue").PropType<any>;
73
+ };
74
+ readonly: {
75
+ type: import("vue").PropType<boolean>;
76
+ };
77
+ direction: {
78
+ type: import("vue").PropType<"horizontal" | "vertical">;
79
+ default: string;
80
+ };
81
+ dependencies: {
82
+ type: import("vue").PropType<any[]>;
83
+ };
84
+ depsDebounceTime: {
85
+ type: import("vue").PropType<number>;
86
+ default: number;
87
+ };
88
+ enforceCoherence: {
89
+ type: import("vue").PropType<boolean>;
90
+ };
91
+ hideLabel: {
92
+ type: import("vue").PropType<boolean>;
93
+ };
94
+ items: {
95
+ type: import("vue").PropType<any[] | ((prefill: boolean, modelValue?: any[] | undefined) => Promise<any[]>) | ((prefill: boolean, modelValue?: any[] | undefined) => any[])>;
96
+ required: true;
97
+ default: () => never[];
98
+ };
99
+ itemText: {
100
+ type: import("vue").PropType<string | ((item: any) => string)>;
101
+ };
102
+ itemValue: {
103
+ type: import("vue").PropType<string | ((item: any) => any)>;
104
+ };
105
+ loadingText: {
106
+ type: import("vue").PropType<string>;
107
+ default: string;
108
+ };
109
+ modelValueDebounceTime: {
110
+ type: import("vue").PropType<number>;
111
+ default: number;
112
+ };
113
+ noDataText: {
114
+ type: import("vue").PropType<string>;
115
+ default: string;
116
+ };
117
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
118
+ click: (event: MouseEvent) => void;
119
+ focus: (event: FocusEvent) => void;
120
+ inactive: () => void;
121
+ input: (event: Event) => void;
122
+ keydown: (event: KeyboardEvent) => void;
123
+ mousedown: (event: MouseEvent) => void;
124
+ mouseup: (event: MouseEvent) => void;
125
+ "update:modelValue": (value: any) => void;
126
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
127
+ disabled: {
128
+ type: import("vue").PropType<boolean>;
129
+ };
130
+ name: {
131
+ type: import("vue").PropType<string>;
132
+ };
133
+ autofocus: {
134
+ type: import("vue").PropType<boolean>;
135
+ };
136
+ color: {
137
+ type: import("vue").PropType<string>;
138
+ };
139
+ hasErrors: {
140
+ type: import("vue").PropType<boolean>;
141
+ };
142
+ id: {
143
+ type: import("vue").PropType<string>;
144
+ };
145
+ modelValue: {
146
+ type: import("vue").PropType<any>;
147
+ };
148
+ readonly: {
149
+ type: import("vue").PropType<boolean>;
150
+ };
151
+ direction: {
152
+ type: import("vue").PropType<"horizontal" | "vertical">;
153
+ default: string;
154
+ };
155
+ dependencies: {
156
+ type: import("vue").PropType<any[]>;
157
+ };
158
+ depsDebounceTime: {
159
+ type: import("vue").PropType<number>;
160
+ default: number;
161
+ };
162
+ enforceCoherence: {
163
+ type: import("vue").PropType<boolean>;
164
+ };
165
+ hideLabel: {
166
+ type: import("vue").PropType<boolean>;
167
+ };
168
+ items: {
169
+ type: import("vue").PropType<any[] | ((prefill: boolean, modelValue?: any[] | undefined) => Promise<any[]>) | ((prefill: boolean, modelValue?: any[] | undefined) => any[])>;
170
+ required: true;
171
+ default: () => never[];
172
+ };
173
+ itemText: {
174
+ type: import("vue").PropType<string | ((item: any) => string)>;
175
+ };
176
+ itemValue: {
177
+ type: import("vue").PropType<string | ((item: any) => any)>;
178
+ };
179
+ loadingText: {
180
+ type: import("vue").PropType<string>;
181
+ default: string;
182
+ };
183
+ modelValueDebounceTime: {
184
+ type: import("vue").PropType<number>;
185
+ default: number;
186
+ };
187
+ noDataText: {
188
+ type: import("vue").PropType<string>;
189
+ default: string;
190
+ };
191
+ }>> & {
192
+ onInput?: ((event: Event) => any) | undefined;
193
+ onClick?: ((event: MouseEvent) => any) | undefined;
194
+ onFocus?: ((event: FocusEvent) => any) | undefined;
195
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
196
+ onMousedown?: ((event: MouseEvent) => any) | undefined;
197
+ onMouseup?: ((event: MouseEvent) => any) | undefined;
198
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
199
+ onInactive?: (() => any) | undefined;
200
+ }, {
201
+ direction: "horizontal" | "vertical";
202
+ depsDebounceTime: number;
203
+ items: any[] | ((prefill: boolean, modelValue?: any[] | undefined) => Promise<any[]>) | ((prefill: boolean, modelValue?: any[] | undefined) => any[]);
204
+ loadingText: string;
205
+ modelValueDebounceTime: number;
206
+ noDataText: string;
207
+ }, {}>, Partial<Record<string, (_: {
208
+ loading: boolean;
209
+ }) => any>> & Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: any) => any>> & {
210
+ prepend?(_: {}): any;
211
+ "option:prepend"?(_: {
212
+ item: any;
213
+ }): any;
214
+ label?(_: {
215
+ text: string;
216
+ item: any;
217
+ checked: boolean;
218
+ }): any;
219
+ "option:append"?(_: {
220
+ item: any;
221
+ }): any;
222
+ append?(_: {}): any;
223
+ }>;
224
+ export default _default;
225
+ type __VLS_WithTemplateSlots<T, S> = T & {
226
+ new (): {
227
+ $slots: S;
228
+ };
229
+ };