@vef-framework/components 1.0.5

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 (499) hide show
  1. package/README.md +27 -0
  2. package/dist/index.d.ts +65 -0
  3. package/dist/index.js +3 -0
  4. package/dist/internal/index.d.ts +1 -0
  5. package/dist/internal/index.js +3 -0
  6. package/dist/internal/utils.d.ts +9 -0
  7. package/dist/internal/utils.js +3 -0
  8. package/dist/vef-access-denied/access-denied-icon.d.ts +4 -0
  9. package/dist/vef-access-denied/access-denied-icon.js +3 -0
  10. package/dist/vef-access-denied/index.d.ts +5 -0
  11. package/dist/vef-access-denied/index.js +29 -0
  12. package/dist/vef-access-denied/props.d.ts +18 -0
  13. package/dist/vef-action-buttons/index.d.ts +6 -0
  14. package/dist/vef-action-buttons/index.js +3 -0
  15. package/dist/vef-action-buttons/props.d.ts +23 -0
  16. package/dist/vef-badge/index.d.ts +5 -0
  17. package/dist/vef-badge/index.js +3 -0
  18. package/dist/vef-badge/props.d.ts +28 -0
  19. package/dist/vef-bool/hooks/use-bool-instance.d.ts +6 -0
  20. package/dist/vef-bool/hooks/use-bool-instance.js +3 -0
  21. package/dist/vef-bool/index.d.ts +4 -0
  22. package/dist/vef-bool/index.js +3 -0
  23. package/dist/vef-bool/props.d.ts +63 -0
  24. package/dist/vef-button/components/base-button.d.ts +9 -0
  25. package/dist/vef-button/components/base-button.js +3 -0
  26. package/dist/vef-button/index.d.ts +4 -0
  27. package/dist/vef-button/index.js +3 -0
  28. package/dist/vef-button/props.d.ts +79 -0
  29. package/dist/vef-card/index.d.ts +5 -0
  30. package/dist/vef-card/index.js +3 -0
  31. package/dist/vef-card/props.d.ts +27 -0
  32. package/dist/vef-card-meta/index.d.ts +5 -0
  33. package/dist/vef-card-meta/index.js +3 -0
  34. package/dist/vef-card-meta/props.d.ts +7 -0
  35. package/dist/vef-checkbox/hooks/use-checkbox-instance.d.ts +11 -0
  36. package/dist/vef-checkbox/hooks/use-checkbox-instance.js +3 -0
  37. package/dist/vef-checkbox/hooks/use-data-options.d.ts +34 -0
  38. package/dist/vef-checkbox/hooks/use-data-options.js +3 -0
  39. package/dist/vef-checkbox/index.d.ts +6 -0
  40. package/dist/vef-checkbox/index.js +5 -0
  41. package/dist/vef-checkbox/props.d.ts +41 -0
  42. package/dist/vef-col/index.d.ts +5 -0
  43. package/dist/vef-col/index.js +3 -0
  44. package/dist/vef-col/props.d.ts +5 -0
  45. package/dist/vef-color-picker/index.d.ts +5 -0
  46. package/dist/vef-color-picker/index.js +3 -0
  47. package/dist/vef-color-picker/props.d.ts +28 -0
  48. package/dist/vef-compact/index.d.ts +5 -0
  49. package/dist/vef-compact/index.js +3 -0
  50. package/dist/vef-compact/props.d.ts +11 -0
  51. package/dist/vef-config-provider/fonts/din/bold.woff2.js +3 -0
  52. package/dist/vef-config-provider/fonts/din/regular.woff2.js +3 -0
  53. package/dist/vef-config-provider/hooks/use-ui-config.d.ts +46 -0
  54. package/dist/vef-config-provider/hooks/use-ui-config.js +3 -0
  55. package/dist/vef-config-provider/index.d.ts +5 -0
  56. package/dist/vef-config-provider/index.js +111 -0
  57. package/dist/vef-config-provider/props.d.ts +24 -0
  58. package/dist/vef-config-provider/reset-style.d.ts +4 -0
  59. package/dist/vef-config-provider/reset-style.js +257 -0
  60. package/dist/vef-config-provider/store.d.ts +12 -0
  61. package/dist/vef-config-provider/store.js +3 -0
  62. package/dist/vef-container/index.d.ts +5 -0
  63. package/dist/vef-container/index.js +3 -0
  64. package/dist/vef-container/props.d.ts +6 -0
  65. package/dist/vef-crud-page/components/crud-actions.d.ts +21 -0
  66. package/dist/vef-crud-page/components/crud-actions.js +3 -0
  67. package/dist/vef-crud-page/components/crud-filter.d.ts +31 -0
  68. package/dist/vef-crud-page/components/crud-filter.js +3 -0
  69. package/dist/vef-crud-page/components/crud-footer.d.ts +31 -0
  70. package/dist/vef-crud-page/components/crud-footer.js +9 -0
  71. package/dist/vef-crud-page/components/crud-form-modal.d.ts +18 -0
  72. package/dist/vef-crud-page/components/crud-form-modal.js +3 -0
  73. package/dist/vef-crud-page/components/crud-header.d.ts +32 -0
  74. package/dist/vef-crud-page/components/crud-header.js +3 -0
  75. package/dist/vef-crud-page/components/crud-table.d.ts +57 -0
  76. package/dist/vef-crud-page/components/crud-table.js +3 -0
  77. package/dist/vef-crud-page/hooks/use-action-buttons.d.ts +16 -0
  78. package/dist/vef-crud-page/hooks/use-action-buttons.js +3 -0
  79. package/dist/vef-crud-page/hooks/use-crud-context.d.ts +8 -0
  80. package/dist/vef-crud-page/hooks/use-crud-context.js +3 -0
  81. package/dist/vef-crud-page/hooks/use-crud-schema.d.ts +17 -0
  82. package/dist/vef-crud-page/hooks/use-crud-schema.js +3 -0
  83. package/dist/vef-crud-page/hooks/use-operation-buttons.d.ts +11 -0
  84. package/dist/vef-crud-page/hooks/use-operation-buttons.js +3 -0
  85. package/dist/vef-crud-page/index.d.ts +6 -0
  86. package/dist/vef-crud-page/index.js +3 -0
  87. package/dist/vef-crud-page/props.d.ts +84 -0
  88. package/dist/vef-crud-page/store.d.ts +119 -0
  89. package/dist/vef-crud-page/store.js +3 -0
  90. package/dist/vef-crud-page/types.d.ts +173 -0
  91. package/dist/vef-divider/index.d.ts +5 -0
  92. package/dist/vef-divider/index.js +3 -0
  93. package/dist/vef-divider/props.d.ts +25 -0
  94. package/dist/vef-drawer/components/action-button-wrapper.d.ts +14 -0
  95. package/dist/vef-drawer/components/action-button-wrapper.js +3 -0
  96. package/dist/vef-drawer/components/button-props.d.ts +15 -0
  97. package/dist/vef-drawer/components/button-props.js +2 -0
  98. package/dist/vef-drawer/components/cancel-action-button.d.ts +4 -0
  99. package/dist/vef-drawer/components/cancel-action-button.js +3 -0
  100. package/dist/vef-drawer/components/ok-action-button.d.ts +4 -0
  101. package/dist/vef-drawer/components/ok-action-button.js +3 -0
  102. package/dist/vef-drawer/context.d.ts +27 -0
  103. package/dist/vef-drawer/context.js +3 -0
  104. package/dist/vef-drawer/index.d.ts +5 -0
  105. package/dist/vef-drawer/index.js +10 -0
  106. package/dist/vef-drawer/props.d.ts +97 -0
  107. package/dist/vef-dropdown/index.d.ts +4 -0
  108. package/dist/vef-dropdown/index.js +3 -0
  109. package/dist/vef-dropdown/props.d.ts +68 -0
  110. package/dist/vef-empty/index.d.ts +5 -0
  111. package/dist/vef-empty/index.js +3 -0
  112. package/dist/vef-empty/props.d.ts +7 -0
  113. package/dist/vef-empty-placeholder/index.d.ts +5 -0
  114. package/dist/vef-empty-placeholder/index.js +7 -0
  115. package/dist/vef-empty-placeholder/props.d.ts +6 -0
  116. package/dist/vef-error/error-icon.d.ts +4 -0
  117. package/dist/vef-error/error-icon.js +3 -0
  118. package/dist/vef-error/index.d.ts +5 -0
  119. package/dist/vef-error/index.js +30 -0
  120. package/dist/vef-error/props.d.ts +18 -0
  121. package/dist/vef-filter/components/action-buttons.d.ts +3 -0
  122. package/dist/vef-filter/components/action-buttons.js +21 -0
  123. package/dist/vef-filter/components/advanced-filter.d.ts +13 -0
  124. package/dist/vef-filter/components/advanced-filter.js +11 -0
  125. package/dist/vef-filter/components/basic-filter.d.ts +14 -0
  126. package/dist/vef-filter/components/basic-filter.js +21 -0
  127. package/dist/vef-filter/components/fields/index.d.ts +9 -0
  128. package/dist/vef-filter/components/fields/index.js +3 -0
  129. package/dist/vef-filter/components/fields/input-number.d.ts +4 -0
  130. package/dist/vef-filter/components/fields/input-number.js +3 -0
  131. package/dist/vef-filter/components/fields/input.d.ts +4 -0
  132. package/dist/vef-filter/components/fields/input.js +3 -0
  133. package/dist/vef-filter/components/fields/props.d.ts +32 -0
  134. package/dist/vef-filter/components/filter-field.d.ts +4 -0
  135. package/dist/vef-filter/components/filter-field.js +3 -0
  136. package/dist/vef-filter/components/filter-item.d.ts +15 -0
  137. package/dist/vef-filter/components/filter-item.js +3 -0
  138. package/dist/vef-filter/event.d.ts +12 -0
  139. package/dist/vef-filter/event.js +3 -0
  140. package/dist/vef-filter/helper.d.ts +10 -0
  141. package/dist/vef-filter/helper.js +3 -0
  142. package/dist/vef-filter/hooks/use-action-handlers.d.ts +20 -0
  143. package/dist/vef-filter/hooks/use-action-handlers.js +3 -0
  144. package/dist/vef-filter/hooks/use-computed-values.d.ts +42 -0
  145. package/dist/vef-filter/hooks/use-computed-values.js +3 -0
  146. package/dist/vef-filter/hooks/use-filter-context.d.ts +8 -0
  147. package/dist/vef-filter/hooks/use-filter-context.js +3 -0
  148. package/dist/vef-filter/hooks/use-filter-initialization.d.ts +7 -0
  149. package/dist/vef-filter/hooks/use-filter-initialization.js +3 -0
  150. package/dist/vef-filter/hooks/use-filter-instance.d.ts +10 -0
  151. package/dist/vef-filter/hooks/use-filter-instance.js +3 -0
  152. package/dist/vef-filter/hooks/use-filter-items.d.ts +13 -0
  153. package/dist/vef-filter/hooks/use-filter-items.js +3 -0
  154. package/dist/vef-filter/hooks/use-filter-values-change.d.ts +11 -0
  155. package/dist/vef-filter/hooks/use-filter-values-change.js +3 -0
  156. package/dist/vef-filter/hooks/use-label-config.d.ts +14 -0
  157. package/dist/vef-filter/hooks/use-label-config.js +3 -0
  158. package/dist/vef-filter/index.d.ts +8 -0
  159. package/dist/vef-filter/index.js +10 -0
  160. package/dist/vef-filter/props.d.ts +106 -0
  161. package/dist/vef-filter/store.d.ts +77 -0
  162. package/dist/vef-filter/store.js +3 -0
  163. package/dist/vef-filter/types.d.ts +224 -0
  164. package/dist/vef-flex/index.d.ts +5 -0
  165. package/dist/vef-flex/index.js +3 -0
  166. package/dist/vef-flex/props.d.ts +12 -0
  167. package/dist/vef-float-button/index.d.ts +5 -0
  168. package/dist/vef-float-button/index.js +3 -0
  169. package/dist/vef-float-button/props.d.ts +26 -0
  170. package/dist/vef-float-button-group/index.d.ts +5 -0
  171. package/dist/vef-float-button-group/index.js +3 -0
  172. package/dist/vef-float-button-group/props.d.ts +11 -0
  173. package/dist/vef-form/components/fields/index.d.ts +10 -0
  174. package/dist/vef-form/components/fields/index.js +3 -0
  175. package/dist/vef-form/components/fields/input-number.d.ts +5 -0
  176. package/dist/vef-form/components/fields/input-number.js +3 -0
  177. package/dist/vef-form/components/fields/input.d.ts +5 -0
  178. package/dist/vef-form/components/fields/input.js +3 -0
  179. package/dist/vef-form/components/fields/props.d.ts +33 -0
  180. package/dist/vef-form/components/form-actions.d.ts +20 -0
  181. package/dist/vef-form/components/form-actions.js +5 -0
  182. package/dist/vef-form/components/form-content.d.ts +18 -0
  183. package/dist/vef-form/components/form-content.js +6 -0
  184. package/dist/vef-form/components/form-field.d.ts +5 -0
  185. package/dist/vef-form/components/form-field.js +3 -0
  186. package/dist/vef-form/components/form-group.d.ts +22 -0
  187. package/dist/vef-form/components/form-group.js +13 -0
  188. package/dist/vef-form/components/form-hidden-item.d.ts +14 -0
  189. package/dist/vef-form/components/form-hidden-item.js +3 -0
  190. package/dist/vef-form/components/form-item.d.ts +18 -0
  191. package/dist/vef-form/components/form-item.js +3 -0
  192. package/dist/vef-form/components/form-row.d.ts +26 -0
  193. package/dist/vef-form/components/form-row.js +3 -0
  194. package/dist/vef-form/event.d.ts +15 -0
  195. package/dist/vef-form/event.js +3 -0
  196. package/dist/vef-form/helper.d.ts +11 -0
  197. package/dist/vef-form/helper.js +3 -0
  198. package/dist/vef-form/hooks/use-action-handlers.d.ts +14 -0
  199. package/dist/vef-form/hooks/use-action-handlers.js +3 -0
  200. package/dist/vef-form/hooks/use-columns-layout.d.ts +12 -0
  201. package/dist/vef-form/hooks/use-columns-layout.js +3 -0
  202. package/dist/vef-form/hooks/use-computed-values.d.ts +42 -0
  203. package/dist/vef-form/hooks/use-computed-values.js +3 -0
  204. package/dist/vef-form/hooks/use-form-context.d.ts +6 -0
  205. package/dist/vef-form/hooks/use-form-context.js +3 -0
  206. package/dist/vef-form/hooks/use-form-initialization.d.ts +14 -0
  207. package/dist/vef-form/hooks/use-form-initialization.js +3 -0
  208. package/dist/vef-form/hooks/use-form-instance.d.ts +10 -0
  209. package/dist/vef-form/hooks/use-form-instance.js +3 -0
  210. package/dist/vef-form/hooks/use-form-values-change.d.ts +11 -0
  211. package/dist/vef-form/hooks/use-form-values-change.js +3 -0
  212. package/dist/vef-form/hooks/use-label-width.d.ts +9 -0
  213. package/dist/vef-form/hooks/use-label-width.js +3 -0
  214. package/dist/vef-form/index.d.ts +8 -0
  215. package/dist/vef-form/index.js +5 -0
  216. package/dist/vef-form/props.d.ts +158 -0
  217. package/dist/vef-form/store.d.ts +89 -0
  218. package/dist/vef-form/store.js +3 -0
  219. package/dist/vef-form/types.d.ts +335 -0
  220. package/dist/vef-form/validation-rules.d.ts +175 -0
  221. package/dist/vef-form/validation-rules.js +3 -0
  222. package/dist/vef-form-drawer/index.d.ts +9 -0
  223. package/dist/vef-form-drawer/index.js +3 -0
  224. package/dist/vef-form-drawer/props.d.ts +17 -0
  225. package/dist/vef-form-modal/index.d.ts +9 -0
  226. package/dist/vef-form-modal/index.js +3 -0
  227. package/dist/vef-form-modal/props.d.ts +20 -0
  228. package/dist/vef-grid/index.d.ts +5 -0
  229. package/dist/vef-grid/index.js +14 -0
  230. package/dist/vef-grid/props.d.ts +25 -0
  231. package/dist/vef-grid/props.js +3 -0
  232. package/dist/vef-grid-item/index.d.ts +5 -0
  233. package/dist/vef-grid-item/index.js +3 -0
  234. package/dist/vef-grid-item/props.d.ts +34 -0
  235. package/dist/vef-icon/index.d.ts +4 -0
  236. package/dist/vef-icon/index.js +3 -0
  237. package/dist/vef-icon/props.d.ts +12 -0
  238. package/dist/vef-input/hooks/use-input-instance.d.ts +12 -0
  239. package/dist/vef-input/hooks/use-input-instance.js +3 -0
  240. package/dist/vef-input/index.d.ts +4 -0
  241. package/dist/vef-input/index.js +3 -0
  242. package/dist/vef-input/props.d.ts +67 -0
  243. package/dist/vef-input-number/hooks/use-input-number-instance.d.ts +12 -0
  244. package/dist/vef-input-number/hooks/use-input-number-instance.js +3 -0
  245. package/dist/vef-input-number/index.d.ts +4 -0
  246. package/dist/vef-input-number/index.js +3 -0
  247. package/dist/vef-input-number/props.d.ts +124 -0
  248. package/dist/vef-loading-placeholder/index.d.ts +5 -0
  249. package/dist/vef-loading-placeholder/index.js +7 -0
  250. package/dist/vef-loading-placeholder/props.d.ts +6 -0
  251. package/dist/vef-login/index.d.ts +5 -0
  252. package/dist/vef-login/index.js +53 -0
  253. package/dist/vef-login/login-icon.d.ts +4 -0
  254. package/dist/vef-login/login-icon.js +3 -0
  255. package/dist/vef-login/props.d.ts +57 -0
  256. package/dist/vef-modal/components/action-button-wrapper.d.ts +14 -0
  257. package/dist/vef-modal/components/action-button-wrapper.js +3 -0
  258. package/dist/vef-modal/components/button-props.d.ts +15 -0
  259. package/dist/vef-modal/components/button-props.js +2 -0
  260. package/dist/vef-modal/components/cancel-action-button.d.ts +4 -0
  261. package/dist/vef-modal/components/cancel-action-button.js +3 -0
  262. package/dist/vef-modal/components/ok-action-button.d.ts +4 -0
  263. package/dist/vef-modal/components/ok-action-button.js +3 -0
  264. package/dist/vef-modal/context.d.ts +27 -0
  265. package/dist/vef-modal/context.js +3 -0
  266. package/dist/vef-modal/index.d.ts +5 -0
  267. package/dist/vef-modal/index.js +6 -0
  268. package/dist/vef-modal/props.d.ts +88 -0
  269. package/dist/vef-not-found/index.d.ts +5 -0
  270. package/dist/vef-not-found/index.js +30 -0
  271. package/dist/vef-not-found/not-found-icon.d.ts +4 -0
  272. package/dist/vef-not-found/not-found-icon.js +3 -0
  273. package/dist/vef-not-found/props.d.ts +18 -0
  274. package/dist/vef-page/index.d.ts +5 -0
  275. package/dist/vef-page/index.js +59 -0
  276. package/dist/vef-page/props.d.ts +29 -0
  277. package/dist/vef-pagination/index.d.ts +4 -0
  278. package/dist/vef-pagination/index.js +3 -0
  279. package/dist/vef-pagination/props.d.ts +59 -0
  280. package/dist/vef-pagination/props.js +3 -0
  281. package/dist/vef-paragraph/index.d.ts +5 -0
  282. package/dist/vef-paragraph/index.js +3 -0
  283. package/dist/vef-paragraph/props.d.ts +55 -0
  284. package/dist/vef-password/hooks/use-password-instance.d.ts +13 -0
  285. package/dist/vef-password/hooks/use-password-instance.js +3 -0
  286. package/dist/vef-password/index.d.ts +4 -0
  287. package/dist/vef-password/index.js +3 -0
  288. package/dist/vef-password/props.d.ts +58 -0
  289. package/dist/vef-popconfirm/index.d.ts +5 -0
  290. package/dist/vef-popconfirm/index.js +3 -0
  291. package/dist/vef-popconfirm/props.d.ts +33 -0
  292. package/dist/vef-popover/index.d.ts +5 -0
  293. package/dist/vef-popover/index.js +3 -0
  294. package/dist/vef-popover/props.d.ts +29 -0
  295. package/dist/vef-radio/hooks/use-data-options.d.ts +35 -0
  296. package/dist/vef-radio/hooks/use-data-options.js +3 -0
  297. package/dist/vef-radio/hooks/use-radio-instance.d.ts +11 -0
  298. package/dist/vef-radio/hooks/use-radio-instance.js +3 -0
  299. package/dist/vef-radio/index.d.ts +7 -0
  300. package/dist/vef-radio/index.js +5 -0
  301. package/dist/vef-radio/props.d.ts +59 -0
  302. package/dist/vef-rate/hooks/use-rate-instance.d.ts +12 -0
  303. package/dist/vef-rate/hooks/use-rate-instance.js +3 -0
  304. package/dist/vef-rate/index.d.ts +4 -0
  305. package/dist/vef-rate/index.js +3 -0
  306. package/dist/vef-rate/props.d.ts +25 -0
  307. package/dist/vef-responsive-container/index.d.ts +4 -0
  308. package/dist/vef-responsive-container/index.js +7 -0
  309. package/dist/vef-responsive-container/props.d.ts +21 -0
  310. package/dist/vef-responsive-item/index.d.ts +4 -0
  311. package/dist/vef-responsive-item/index.js +5 -0
  312. package/dist/vef-responsive-item/props.d.ts +12 -0
  313. package/dist/vef-ribbon/index.d.ts +5 -0
  314. package/dist/vef-ribbon/index.js +3 -0
  315. package/dist/vef-ribbon/props.d.ts +15 -0
  316. package/dist/vef-row/index.d.ts +5 -0
  317. package/dist/vef-row/index.js +3 -0
  318. package/dist/vef-row/props.d.ts +7 -0
  319. package/dist/vef-scroll-area/components/scrollbar.d.ts +2 -0
  320. package/dist/vef-scroll-area/components/scrollbar.js +34 -0
  321. package/dist/vef-scroll-area/index.d.ts +4 -0
  322. package/dist/vef-scroll-area/index.js +10 -0
  323. package/dist/vef-scroll-area/props.d.ts +24 -0
  324. package/dist/vef-select/components/option.d.ts +7 -0
  325. package/dist/vef-select/components/option.js +11 -0
  326. package/dist/vef-select/hooks/use-data-options.d.ts +37 -0
  327. package/dist/vef-select/hooks/use-data-options.js +3 -0
  328. package/dist/vef-select/hooks/use-field-names.d.ts +9 -0
  329. package/dist/vef-select/hooks/use-field-names.js +3 -0
  330. package/dist/vef-select/hooks/use-label-render.d.ts +11 -0
  331. package/dist/vef-select/hooks/use-label-render.js +10 -0
  332. package/dist/vef-select/hooks/use-option-render.d.ts +11 -0
  333. package/dist/vef-select/hooks/use-option-render.js +3 -0
  334. package/dist/vef-select/hooks/use-select-instance.d.ts +11 -0
  335. package/dist/vef-select/hooks/use-select-instance.js +3 -0
  336. package/dist/vef-select/index.d.ts +7 -0
  337. package/dist/vef-select/index.js +3 -0
  338. package/dist/vef-select/props.d.ts +153 -0
  339. package/dist/vef-slider/hooks/use-slider-instance.d.ts +12 -0
  340. package/dist/vef-slider/hooks/use-slider-instance.js +3 -0
  341. package/dist/vef-slider/index.d.ts +4 -0
  342. package/dist/vef-slider/index.js +3 -0
  343. package/dist/vef-slider/props.d.ts +72 -0
  344. package/dist/vef-sortable-list/components/overlay-item.d.ts +9 -0
  345. package/dist/vef-sortable-list/components/overlay-item.js +7 -0
  346. package/dist/vef-sortable-list/components/sortable-item.d.ts +21 -0
  347. package/dist/vef-sortable-list/components/sortable-item.js +7 -0
  348. package/dist/vef-sortable-list/hooks/use-merged-items.d.ts +10 -0
  349. package/dist/vef-sortable-list/hooks/use-merged-items.js +3 -0
  350. package/dist/vef-sortable-list/index.d.ts +7 -0
  351. package/dist/vef-sortable-list/index.js +3 -0
  352. package/dist/vef-sortable-list/props.d.ts +77 -0
  353. package/dist/vef-space/index.d.ts +5 -0
  354. package/dist/vef-space/index.js +3 -0
  355. package/dist/vef-space/props.d.ts +12 -0
  356. package/dist/vef-spin/index.d.ts +5 -0
  357. package/dist/vef-spin/index.js +3 -0
  358. package/dist/vef-spin/props.d.ts +12 -0
  359. package/dist/vef-splitter/index.d.ts +5 -0
  360. package/dist/vef-splitter/index.js +3 -0
  361. package/dist/vef-splitter/props.d.ts +16 -0
  362. package/dist/vef-splitter-panel/index.d.ts +5 -0
  363. package/dist/vef-splitter-panel/index.js +3 -0
  364. package/dist/vef-splitter-panel/props.d.ts +6 -0
  365. package/dist/vef-status/index.d.ts +5 -0
  366. package/dist/vef-status/index.js +3 -0
  367. package/dist/vef-status/props.d.ts +17 -0
  368. package/dist/vef-table/components/columns/bool.d.ts +5 -0
  369. package/dist/vef-table/components/columns/bool.js +3 -0
  370. package/dist/vef-table/components/columns/code.d.ts +4 -0
  371. package/dist/vef-table/components/columns/code.js +3 -0
  372. package/dist/vef-table/components/columns/data-dictionary.d.ts +4 -0
  373. package/dist/vef-table/components/columns/data-dictionary.js +3 -0
  374. package/dist/vef-table/components/columns/enum.d.ts +4 -0
  375. package/dist/vef-table/components/columns/enum.js +3 -0
  376. package/dist/vef-table/components/columns/file.d.ts +4 -0
  377. package/dist/vef-table/components/columns/file.js +3 -0
  378. package/dist/vef-table/components/columns/icon.d.ts +4 -0
  379. package/dist/vef-table/components/columns/icon.js +3 -0
  380. package/dist/vef-table/components/columns/id.d.ts +4 -0
  381. package/dist/vef-table/components/columns/id.js +3 -0
  382. package/dist/vef-table/components/columns/image.d.ts +4 -0
  383. package/dist/vef-table/components/columns/image.js +3 -0
  384. package/dist/vef-table/components/columns/index.d.ts +31 -0
  385. package/dist/vef-table/components/columns/index.js +3 -0
  386. package/dist/vef-table/components/columns/markdown.d.ts +4 -0
  387. package/dist/vef-table/components/columns/markdown.js +3 -0
  388. package/dist/vef-table/components/columns/number.d.ts +4 -0
  389. package/dist/vef-table/components/columns/number.js +3 -0
  390. package/dist/vef-table/components/columns/props.d.ts +24 -0
  391. package/dist/vef-table/components/columns/render.d.ts +4 -0
  392. package/dist/vef-table/components/columns/render.js +3 -0
  393. package/dist/vef-table/components/columns/rich-text.d.ts +4 -0
  394. package/dist/vef-table/components/columns/rich-text.js +3 -0
  395. package/dist/vef-table/components/columns/text.d.ts +4 -0
  396. package/dist/vef-table/components/columns/text.js +3 -0
  397. package/dist/vef-table/components/columns-settings.d.ts +2 -0
  398. package/dist/vef-table/components/columns-settings.js +54 -0
  399. package/dist/vef-table/components/operation-buttons.d.ts +22 -0
  400. package/dist/vef-table/components/operation-buttons.js +12 -0
  401. package/dist/vef-table/components/settings-icon.d.ts +2 -0
  402. package/dist/vef-table/components/settings-icon.js +5 -0
  403. package/dist/vef-table/components/table-footer.d.ts +34 -0
  404. package/dist/vef-table/components/table-footer.js +19 -0
  405. package/dist/vef-table/helper.d.ts +12 -0
  406. package/dist/vef-table/helper.js +3 -0
  407. package/dist/vef-table/hooks/use-computed-batch-buttons.d.ts +13 -0
  408. package/dist/vef-table/hooks/use-computed-batch-buttons.js +3 -0
  409. package/dist/vef-table/hooks/use-computed-columns.d.ts +10 -0
  410. package/dist/vef-table/hooks/use-computed-columns.js +3 -0
  411. package/dist/vef-table/hooks/use-computed-values.d.ts +45 -0
  412. package/dist/vef-table/hooks/use-computed-values.js +3 -0
  413. package/dist/vef-table/hooks/use-data.d.ts +11 -0
  414. package/dist/vef-table/hooks/use-data.js +3 -0
  415. package/dist/vef-table/hooks/use-default-column-configs.d.ts +9 -0
  416. package/dist/vef-table/hooks/use-default-column-configs.js +3 -0
  417. package/dist/vef-table/hooks/use-display-value.d.ts +32 -0
  418. package/dist/vef-table/hooks/use-display-value.js +3 -0
  419. package/dist/vef-table/hooks/use-helper-columns.d.ts +6 -0
  420. package/dist/vef-table/hooks/use-helper-columns.js +3 -0
  421. package/dist/vef-table/hooks/use-merged-value.d.ts +10 -0
  422. package/dist/vef-table/hooks/use-merged-value.js +3 -0
  423. package/dist/vef-table/hooks/use-operation-column-width.d.ts +11 -0
  424. package/dist/vef-table/hooks/use-operation-column-width.js +3 -0
  425. package/dist/vef-table/hooks/use-pagination-props.d.ts +17 -0
  426. package/dist/vef-table/hooks/use-pagination-props.js +3 -0
  427. package/dist/vef-table/hooks/use-row-props.d.ts +11 -0
  428. package/dist/vef-table/hooks/use-row-props.js +3 -0
  429. package/dist/vef-table/hooks/use-row-selection-config.d.ts +11 -0
  430. package/dist/vef-table/hooks/use-row-selection-config.js +3 -0
  431. package/dist/vef-table/hooks/use-table-columns.d.ts +12 -0
  432. package/dist/vef-table/hooks/use-table-columns.js +3 -0
  433. package/dist/vef-table/hooks/use-table-context.d.ts +9 -0
  434. package/dist/vef-table/hooks/use-table-context.js +3 -0
  435. package/dist/vef-table/hooks/use-table-instance.d.ts +10 -0
  436. package/dist/vef-table/hooks/use-table-instance.js +3 -0
  437. package/dist/vef-table/hooks/use-table-summary.d.ts +10 -0
  438. package/dist/vef-table/hooks/use-table-summary.js +3 -0
  439. package/dist/vef-table/hooks/use-table-width.d.ts +9 -0
  440. package/dist/vef-table/hooks/use-table-width.js +3 -0
  441. package/dist/vef-table/index.d.ts +7 -0
  442. package/dist/vef-table/index.js +56 -0
  443. package/dist/vef-table/props.d.ts +330 -0
  444. package/dist/vef-table/store.d.ts +21 -0
  445. package/dist/vef-table/store.js +3 -0
  446. package/dist/vef-table/types.d.ts +481 -0
  447. package/dist/vef-tabs/index.d.ts +5 -0
  448. package/dist/vef-tabs/index.js +3 -0
  449. package/dist/vef-tabs/props.d.ts +12 -0
  450. package/dist/vef-tag/index.d.ts +5 -0
  451. package/dist/vef-tag/index.js +3 -0
  452. package/dist/vef-tag/props.d.ts +20 -0
  453. package/dist/vef-temporal-picker/hooks/use-dayjs-value.d.ts +10 -0
  454. package/dist/vef-temporal-picker/hooks/use-dayjs-value.js +3 -0
  455. package/dist/vef-temporal-picker/hooks/use-temporal-formats.d.ts +8 -0
  456. package/dist/vef-temporal-picker/hooks/use-temporal-formats.js +3 -0
  457. package/dist/vef-temporal-picker/hooks/use-temporal-limit.d.ts +13 -0
  458. package/dist/vef-temporal-picker/hooks/use-temporal-limit.js +3 -0
  459. package/dist/vef-temporal-picker/hooks/use-temporal-picker-instance.d.ts +12 -0
  460. package/dist/vef-temporal-picker/hooks/use-temporal-picker-instance.js +3 -0
  461. package/dist/vef-temporal-picker/index.d.ts +5 -0
  462. package/dist/vef-temporal-picker/index.js +3 -0
  463. package/dist/vef-temporal-picker/props.d.ts +101 -0
  464. package/dist/vef-temporal-range-picker/hooks/use-dayjs-values.d.ts +10 -0
  465. package/dist/vef-temporal-range-picker/hooks/use-dayjs-values.js +3 -0
  466. package/dist/vef-temporal-range-picker/hooks/use-temporal-formats.d.ts +8 -0
  467. package/dist/vef-temporal-range-picker/hooks/use-temporal-formats.js +3 -0
  468. package/dist/vef-temporal-range-picker/hooks/use-temporal-limit.d.ts +13 -0
  469. package/dist/vef-temporal-range-picker/hooks/use-temporal-limit.js +3 -0
  470. package/dist/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.d.ts +12 -0
  471. package/dist/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +3 -0
  472. package/dist/vef-temporal-range-picker/index.d.ts +5 -0
  473. package/dist/vef-temporal-range-picker/index.js +3 -0
  474. package/dist/vef-temporal-range-picker/props.d.ts +82 -0
  475. package/dist/vef-temporal-range-picker/props.js +3 -0
  476. package/dist/vef-text/index.d.ts +5 -0
  477. package/dist/vef-text/index.js +3 -0
  478. package/dist/vef-text/props.d.ts +47 -0
  479. package/dist/vef-textarea/hooks/use-textarea-instance.d.ts +13 -0
  480. package/dist/vef-textarea/hooks/use-textarea-instance.js +3 -0
  481. package/dist/vef-textarea/index.d.ts +4 -0
  482. package/dist/vef-textarea/index.js +3 -0
  483. package/dist/vef-textarea/props.d.ts +58 -0
  484. package/dist/vef-title/index.d.ts +5 -0
  485. package/dist/vef-title/index.js +15 -0
  486. package/dist/vef-title/props.d.ts +39 -0
  487. package/dist/vef-tooltip/index.d.ts +5 -0
  488. package/dist/vef-tooltip/index.js +3 -0
  489. package/dist/vef-tooltip/props.d.ts +30 -0
  490. package/dist/vef-tree-select/hooks/use-change-handler.d.ts +10 -0
  491. package/dist/vef-tree-select/hooks/use-change-handler.js +3 -0
  492. package/dist/vef-tree-select/hooks/use-data-options.d.ts +36 -0
  493. package/dist/vef-tree-select/hooks/use-data-options.js +3 -0
  494. package/dist/vef-tree-select/hooks/use-tree-select-instance.d.ts +11 -0
  495. package/dist/vef-tree-select/hooks/use-tree-select-instance.js +3 -0
  496. package/dist/vef-tree-select/index.d.ts +7 -0
  497. package/dist/vef-tree-select/index.js +3 -0
  498. package/dist/vef-tree-select/props.d.ts +142 -0
  499. package/package.json +56 -0
@@ -0,0 +1,59 @@
1
+ import type { BasicSize, BiConsumer, DataOption, DataOptionConfig, Handler, IdValue, NormalizedDataOption, ObjectType, Provider, PureDataOption, QueryConfig, StringKey } from "@vef-framework/shared";
2
+ import type { RadioGroupProps } from "antd";
3
+ import type { EmptyObject } from "@vef-framework/shared";
4
+ /**
5
+ * The instance of the VefRadio component.
6
+ */
7
+ export interface VefRadioInstance<T extends DataOption<T>> {
8
+ /**
9
+ * The blur method of the radio.
10
+ */
11
+ blur: Handler;
12
+ /**
13
+ * The focus method of the radio.
14
+ */
15
+ focus: Handler;
16
+ /**
17
+ * Get the data options of the radio.
18
+ */
19
+ getDataOptions: Provider<Array<NormalizedDataOption<T>>>;
20
+ }
21
+ /**
22
+ * The variant of the radio.
23
+ */
24
+ export type RadioVariant = "default" | "button";
25
+ /**
26
+ * The button variant of the radio.
27
+ */
28
+ export type RadioButtonVariant = "solid" | "outline";
29
+ /**
30
+ * The props of the VefRadio component.
31
+ */
32
+ export interface VefRadioProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[]> extends QueryConfig<T[], P, R>, DataOptionConfig<StringKey<T>>, Pick<RadioGroupProps, "disabled" | "block"> {
33
+ /**
34
+ * The default value of the radio.
35
+ */
36
+ defaultValue?: IdValue;
37
+ /**
38
+ * The value of the radio.
39
+ */
40
+ value?: IdValue;
41
+ /**
42
+ * The variant of the radio.
43
+ */
44
+ variant?: RadioVariant;
45
+ /**
46
+ * The button variant of the radio.
47
+ * Only works when the variant is `button`.
48
+ */
49
+ buttonVariant?: RadioButtonVariant;
50
+ /**
51
+ * The size of the button.
52
+ * Only works when the variant is `button`.
53
+ */
54
+ buttonSize?: BasicSize;
55
+ /**
56
+ * The change handler of the radio.
57
+ */
58
+ onChange?: BiConsumer<IdValue, NormalizedDataOption<T>>;
59
+ }
@@ -0,0 +1,12 @@
1
+ import type { GetRef, Rate } from "antd";
2
+ import { type ForwardedRef, type RefObject } from "react";
3
+ import type { VefRateInstance } from "../props";
4
+ type RateRef = GetRef<typeof Rate>;
5
+ /**
6
+ * The hook to use rate instance.
7
+ *
8
+ * @param ref - The forwarded ref.
9
+ * @returns The ref object.
10
+ */
11
+ export declare function useRateInstance(ref: ForwardedRef<VefRateInstance>): RefObject<RateRef>;
12
+ export {};
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{useRef as r,useImperativeHandle as u}from"react";function t(t){const c=r(null);return u(t,(()=>({blur:()=>c.current?.blur(),focus:()=>c.current?.focus()}))),c}export{t as useRateInstance};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,4 @@
1
+ import type { VefRateInstance, VefRateProps } from "./props";
2
+ declare const VefRate: import("react").ForwardRefExoticComponent<VefRateProps & import("react").RefAttributes<VefRateInstance>>;
3
+ export type { VefRateInstance, VefRateProps };
4
+ export default VefRate;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as r}from"@emotion/react/jsx-runtime";import{Rate as t}from"antd";import{isFunction as o}from"@vef-framework/shared";import{forwardRef as e,useMemo as a}from"react";import{useRateInstance as m}from"./hooks/use-rate-instance.js";const c=e((({character:e,...c},f)=>{const i=a((()=>o(e)?({index:r})=>e(r):e),[e]),n=m(f);return r(t,{ref:n,character:i,...c})}));export{c as default};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,25 @@
1
+ import type { Handler, Mapper } from "@vef-framework/shared";
2
+ import type { RateProps } from "antd";
3
+ import type { ReactNode } from "react";
4
+ /**
5
+ * The instance of the VefRate component.
6
+ */
7
+ export interface VefRateInstance {
8
+ /**
9
+ * The blur handler of the rate.
10
+ */
11
+ blur?: Handler;
12
+ /**
13
+ * The focus handler of the rate.
14
+ */
15
+ focus?: Handler;
16
+ }
17
+ /**
18
+ * The props of the VefRate component.
19
+ */
20
+ export interface VefRateProps extends Pick<RateProps, "defaultValue" | "value" | "disabled" | "allowClear" | "allowHalf" | "count" | "onBlur" | "onFocus" | "onChange" | "onHoverChange"> {
21
+ /**
22
+ * The character of the rate.
23
+ */
24
+ character?: ReactNode | Mapper<number, ReactNode>;
25
+ }
@@ -0,0 +1,4 @@
1
+ import type { VefResponsiveContainerProps } from "./props";
2
+ declare const VefResponsiveContainer: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<VefResponsiveContainerProps & import("react").RefAttributes<HTMLDivElement>>>;
3
+ export type { VefResponsiveContainerProps };
4
+ export default VefResponsiveContainer;
@@ -0,0 +1,7 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as e}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{useGapSizeNormalizer as o}from"@vef-framework/hooks";import{motion as t}from"motion/react";import{isArray as n}from"@vef-framework/shared";import{forwardRef as i,Children as a,isValidElement as s,useMemo as m,memo as p}from"react";import f from"../vef-responsive-item/index.js";const v=r`
3
+ display: grid;
4
+ grid-template-columns: repeat(var(--vef-responsive-container-auto-mode), minmax(var(--vef-responsive-container-base-width), 1fr));
5
+ gap: var(--vef-responsive-container-gap);
6
+ `,c=p(i((({style:r,baseItemWidth:i=320,autoExpand:p=!0,gap:c=0,children:d,...l},u)=>{if(i%2!=0)throw new Error("VefResponsiveContainer: baseItemWidth must be an even number.");a.forEach(d,(e=>{if(!s(e)||e.type!==f)throw new Error("VefResponsiveContainer: children must be a VefResponsiveItem element.")}));const h=o(),w=m((()=>n(c)?c.map((e=>h(e))).join(" "):h(c)),[c,h]),b=m((()=>{const e=p?"auto-fit":"auto-fill";return{...r,"--vef-responsive-container-auto-mode":e,"--vef-responsive-container-base-width":i/2+"px","--vef-responsive-container-gap":w}}),[p,i,w,r]);return e(t.div,{ref:u,css:v,style:b,...l,children:d})})));c.displayName="VefResponsiveContainer";export{c as default};
7
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,21 @@
1
+ import type { ChildrenProps, GapType } from "@vef-framework/shared";
2
+ import type { HTMLMotionProps } from "motion/react";
3
+ import type { Except } from "@vef-framework/shared";
4
+ /**
5
+ * The props of VefResponsiveContainer component.
6
+ */
7
+ export interface VefResponsiveContainerProps extends Except<HTMLMotionProps<"div">, "children">, Required<ChildrenProps> {
8
+ /**
9
+ * The base width of the responsive item.
10
+ */
11
+ baseItemWidth?: number;
12
+ /**
13
+ * Whether to auto expand the remaining space of the row.
14
+ * @default true
15
+ */
16
+ autoExpand?: boolean;
17
+ /**
18
+ * The gap between the responsive items.
19
+ */
20
+ gap?: GapType;
21
+ }
@@ -0,0 +1,4 @@
1
+ import type { VefResponsiveItemProps } from "./props";
2
+ declare const VefResponsiveItem: import("react").ForwardRefExoticComponent<VefResponsiveItemProps & import("react").RefAttributes<HTMLDivElement>>;
3
+ export type { VefResponsiveItemProps };
4
+ export default VefResponsiveItem;
@@ -0,0 +1,5 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as e}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{motion as t}from"motion/react";import{forwardRef as o,useMemo as i}from"react";const n=r`
3
+ grid-column: span var(--vef-responsive-item-span);
4
+ `,s=o((({style:r,span:o=1,children:s,...m},a)=>{const p=i((()=>({...r,"--vef-responsive-item-span":2*o})),[o,r]);return e(t.div,{ref:a,css:n,style:p,...m,children:s})}));export{s as default};
5
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,12 @@
1
+ import type { ChildrenProps } from "@vef-framework/shared";
2
+ import type { HTMLMotionProps } from "motion/react";
3
+ import type { Except } from "@vef-framework/shared";
4
+ /**
5
+ * The props of VefResponsiveItem component.
6
+ */
7
+ export interface VefResponsiveItemProps extends Except<HTMLMotionProps<"div">, "children">, Required<ChildrenProps> {
8
+ /**
9
+ * The span of the responsive item.
10
+ */
11
+ span?: number;
12
+ }
@@ -0,0 +1,5 @@
1
+ import { type FC } from "react";
2
+ import type { VefRibbonProps } from "./props";
3
+ declare const VefRibbon: FC<VefRibbonProps>;
4
+ export type { VefRibbonProps };
5
+ export default VefRibbon;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as o}from"@emotion/react/jsx-runtime";import{useColorTokens as r}from"@vef-framework/hooks";import{Badge as t}from"antd";import{useMemo as e}from"react";const{Ribbon:n}=t,i=({color:t,position:i="right",children:a})=>{const m=r(),c=e((()=>{if(!t)return{placement:"right"===i?"end":"start",text:a};if(m.has(t))return{color:t?m.get(t):void 0,placement:"right"===i?"end":"start",text:a};throw new Error(`Invalid color value "${t}" of VefRibbon component. Color must be a valid color token.`)}),[a,t,m,i]);return o(n,{...c})};export{i as default};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,15 @@
1
+ import type { ChildrenProps, ColorType, Position } from "@vef-framework/shared";
2
+ /**
3
+ * The props of the VefRibbon component.
4
+ */
5
+ export interface VefRibbonProps extends Required<ChildrenProps> {
6
+ /**
7
+ * The color of the ribbon.
8
+ */
9
+ color?: ColorType;
10
+ /**
11
+ * The position of the ribbon.
12
+ * @default "right"
13
+ */
14
+ position?: Exclude<Position, "center">;
15
+ }
@@ -0,0 +1,5 @@
1
+ import type { FC } from "react";
2
+ import type { VefRowProps } from "./props";
3
+ declare const VefRow: FC<VefRowProps>;
4
+ export type { VefRowProps };
5
+ export default VefRow;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as t}from"@emotion/react/jsx-runtime";import{Row as o}from"antd";const r=r=>t(o,{...r});export{r as default};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,7 @@
1
+ import type { RowProps } from "antd";
2
+ import type { Except } from "@vef-framework/shared";
3
+ /**
4
+ * The props of VefRow component.
5
+ */
6
+ export interface VefRowProps extends Except<RowProps, "prefixCls"> {
7
+ }
@@ -0,0 +1,2 @@
1
+ declare const VefScrollbar: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-scroll-area").ScrollAreaScrollbarProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
2
+ export default VefScrollbar;
@@ -0,0 +1,34 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as r}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{ScrollAreaScrollbar as a,ScrollAreaThumb as e}from"@radix-ui/react-scroll-area";import{themeVariables as i}from"@vef-framework/shared";import{forwardRef as l}from"react";const t=o`
3
+ --vef-scroll-area-scrollbar-padding: 2px;
4
+
5
+ display: flex;
6
+ touch-action: none;
7
+ user-select: none;
8
+ `,n=o`
9
+ height: 100%;
10
+ width: var(--vef-scroll-area-scrollbar-size);
11
+ border-left-width: 1px;
12
+ border-left-color: transparent;
13
+ padding: var(--vef-scroll-area-scrollbar-padding);
14
+ `,c=o`
15
+ flex-direction: column;
16
+ height: var(--vef-scroll-area-scrollbar-size);
17
+ border-top-width: 1px;
18
+ border-top-color: transparent;
19
+ padding: var(--vef-scroll-area-scrollbar-padding);
20
+ `,s=o`
21
+ position: relative;
22
+ z-index: 2;
23
+ flex: 1;
24
+ border-radius: calc(var(--vef-scroll-area-scrollbar-size) - var(--vef-scroll-area-scrollbar-padding) * 2);
25
+ background-color: hsl(240 5.9% 90%);
26
+ transition-property: background-color;
27
+ transition-timing-function: ${i.motionEaseInOutCirc};
28
+ transition-duration: ${i.motionDurationMid};
29
+
30
+ &:hover {
31
+ background-color: hsl(240 5.9% 84%);
32
+ }
33
+ `,d=l((({orientation:o="vertical",...i},l)=>r(a,{ref:l,orientation:o,css:[t,"vertical"===o&&n,"horizontal"===o&&c],...i,children:r(e,{css:s})})));d.displayName="VefScrollbar";export{d as default};
34
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,4 @@
1
+ import type { VefScrollAreaProps } from "./props";
2
+ declare const VefScrollArea: import("react").ForwardRefExoticComponent<VefScrollAreaProps & import("react").RefAttributes<HTMLDivElement>>;
3
+ export type { VefScrollAreaProps };
4
+ export default VefScrollArea;
@@ -0,0 +1,10 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsxs as r,jsx as o}from"@emotion/react/jsx-runtime";import{css as e}from"@emotion/react";import{Root as t,Viewport as i,Corner as l}from"@radix-ui/react-scroll-area";import{forwardRef as a}from"react";import c from"./components/scrollbar.js";const s=e`
3
+ position: relative;
4
+ overflow: hidden;
5
+ `,n=e`
6
+ height: 100%;
7
+ width: 100%;
8
+ border-radius: inherit;
9
+ `;const m=a((({scrollbarSize:e="medium",autoHideScrollbar:a=!0,onScroll:m,children:d,...p},f)=>{const h={"--vef-scroll-area-scrollbar-size":"small"===(u=e)?"10px":"medium"===u?"12px":"14px"};var u;return r(t,{ref:f,css:s,type:a?"hover":"auto",...p,children:[o(i,{css:n,onScroll:m,children:d}),o(c,{orientation:"vertical",style:h}),o(c,{orientation:"horizontal",style:h}),o(l,{})]})}));m.displayName="VefScrollArea";export{m as default};
10
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,24 @@
1
+ import type { Root, ScrollAreaViewportProps } from "@radix-ui/react-scroll-area";
2
+ import type { BasicSize } from "@vef-framework/shared";
3
+ import type { ComponentPropsWithoutRef } from "react";
4
+ /**
5
+ * The props of the VefScrollArea component.
6
+ */
7
+ export interface VefScrollAreaProps extends Pick<ComponentPropsWithoutRef<typeof Root>, "className" | "style" | "children"> {
8
+ /**
9
+ * The size of the scrollbar.
10
+ *
11
+ * @default "medium"
12
+ */
13
+ scrollbarSize?: BasicSize;
14
+ /**
15
+ * Whether to hide the scrollbar automatically.
16
+ *
17
+ * @default true
18
+ */
19
+ autoHideScrollbar?: boolean;
20
+ /**
21
+ * The callback function when the scroll area is scrolled.
22
+ */
23
+ onScroll?: ScrollAreaViewportProps["onScroll"];
24
+ }
@@ -0,0 +1,7 @@
1
+ import { type ReactNode } from "react";
2
+ export interface VefOptionProps {
3
+ label: ReactNode;
4
+ description?: ReactNode;
5
+ }
6
+ declare const VefOptionMemo: import("react").NamedExoticComponent<VefOptionProps>;
7
+ export default VefOptionMemo;
@@ -0,0 +1,11 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsxs as e,jsx as i}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{themeVariables as o}from"@vef-framework/shared";import{memo as l}from"react";import t from"../../vef-text/index.js";const s=r`
3
+ display: flex;
4
+ flex-direction: column;
5
+ row-gap: 4px;
6
+
7
+ > .vef-typography-secondary {
8
+ font-size: ${o.fontSizeSm};
9
+ }
10
+ `,p=l((({label:r,description:o})=>o?e("div",{css:s,children:[i(t,{ellipsis:!0,ellipsisTipPlacement:"right",children:r}),i(t,{ellipsis:!0,color:"secondary",ellipsisTipPlacement:"right",children:o})]}):i(t,{ellipsis:!0,ellipsisTipPlacement:"right",children:r})));p.displayName="VefOption";export{p as default};
11
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,37 @@
1
+ import type { DataOption, ObjectType, PureDataOption } from "@vef-framework/shared";
2
+ import type { EmptyObject, Except } from "@vef-framework/shared";
3
+ import type { VefSelectProps } from "../props";
4
+ /**
5
+ * The hook to use data options.
6
+ */
7
+ export declare function useDataOptions<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject>({ value, grouped, multiple, onChange, ...rest }: Except<VefSelectProps<T, P, R, KK, VK, FP>, "size" | "clearable" | "disabled" | "placeholder" | "variant" | "maxCount" | "onClear" | "onBlur" | "onFocus" | "onSelect" | "onDeselect" | "optionRender">): {
8
+ onFilterKeywordChange: import("radashi").DebounceFunction<[keyword: string]> | undefined;
9
+ normalizedOptions: ({
10
+ [x: string]: any;
11
+ description?: import("react").ReactNode;
12
+ labelText?: string | undefined;
13
+ descriptionText?: string | undefined;
14
+ label: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | null;
15
+ value: import("@vef-framework/shared").IdValue;
16
+ disabled: boolean;
17
+ } & {
18
+ children?: import("@vef-framework/shared").NormalizedDataOption<PureDataOption>[] | undefined;
19
+ labelPinyin?: string;
20
+ descriptionPinyin?: string;
21
+ } & T)[] | ({
22
+ [x: string]: any;
23
+ description?: import("react").ReactNode;
24
+ labelText?: string | undefined;
25
+ descriptionText?: string | undefined;
26
+ label: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | null;
27
+ value: import("@vef-framework/shared").IdValue;
28
+ disabled: boolean;
29
+ } & {
30
+ children?: import("@vef-framework/shared").NormalizedDataOption<PureDataOption>[] | undefined;
31
+ labelPinyin?: string;
32
+ descriptionPinyin?: string;
33
+ } & T)[];
34
+ isLoading: boolean;
35
+ fallbackOptions: T[] | undefined;
36
+ isFallbackOptionsLoading: boolean;
37
+ };
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{useComputedOptions as o}from"@vef-framework/hooks";import{isArray as e,isFunction as a,isNullish as i}from"@vef-framework/shared";import{useLayoutEffect as n}from"react";function r({value:r,grouped:t=!1,multiple:l=!1,onChange:s,...p}){const{onFilterKeywordChange:d,normalizedOptions:f,defaultOption:m,isLoading:u,fallbackOptions:c,isFallbackOptionsLoading:g}=o({...p,isGrouped:t,selectedOptionValues:e(r)?r:r?[r]:[]});return n((()=>{m&&a(s)&&i(r)&&s(l?[m.value]:m.value,l?[m]:m)}),[m,l,s,r]),{onFilterKeywordChange:d,normalizedOptions:f,isLoading:u,fallbackOptions:c,isFallbackOptionsLoading:g}}export{r as useDataOptions};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,9 @@
1
+ import type { SelectProps } from "antd";
2
+ type FieldNames = NonNullable<SelectProps["fieldNames"]>;
3
+ /**
4
+ * The hook to get the field names.
5
+ *
6
+ * @param grouped - Whether the options are grouped.
7
+ */
8
+ export declare function useFieldNames(grouped: boolean): FieldNames;
9
+ export {};
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{useMemo as l}from"react";function e(e){return l((()=>e?{label:"label",value:"value",options:"children",groupLabel:"label"}:{label:"label",value:"value"}),[e])}export{e as useFieldNames};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,11 @@
1
+ import type { DataOption, PureDataOption } from "@vef-framework/shared";
2
+ import type { SelectProps } from "antd";
3
+ type LabelRender = NonNullable<SelectProps["labelRender"]>;
4
+ /**
5
+ * The hook to get the label render.
6
+ *
7
+ * @param isFallbackOptionsLoading - The flag to indicate if the fallback options are loading.
8
+ * @param fallbackOptions - The fallback options.
9
+ */
10
+ export declare function useLabelRender<T extends DataOption<T> = PureDataOption>(isFallbackOptionsLoading: boolean, fallbackOptions?: T[]): LabelRender;
11
+ export {};
@@ -0,0 +1,10 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as i}from"@emotion/react/jsx-runtime";import{LoadingOutlined as r}from"@ant-design/icons";import{css as e}from"@emotion/react";import{useCallback as n}from"react";import t from"../../vef-spin/index.js";const o=e`
3
+ display: inline-flex;
4
+ align-items: center;
5
+
6
+ .vef-spin {
7
+ color: inherit;
8
+ }
9
+ `;function m(e,m){return n((({label:n,value:s})=>{if(n)return n;if(e)return i("span",{css:o,children:i(t,{indicator:i(r,{}),size:"small"})});const l=m?.find((i=>i.value===s));return l?.label??s}),[e,m])}export{m as useLabelRender};
10
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,11 @@
1
+ import type { DataOption, MaybeArray, NormalizedDataOption, PureDataOption } from "@vef-framework/shared";
2
+ import type { SelectProps } from "antd";
3
+ import type { VefSelectProps } from "../props";
4
+ type OptionRender<T extends DataOption<T>> = NonNullable<SelectProps<MaybeArray<string>, NormalizedDataOption<T>>["optionRender"]>;
5
+ /**
6
+ * The hook to get the option render.
7
+ *
8
+ * @param optionRender - The option render.
9
+ */
10
+ export declare function useOptionRender<T extends DataOption<T> = PureDataOption>(optionRender: VefSelectProps<T>["optionRender"]): OptionRender<T>;
11
+ export {};
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as o}from"@emotion/react/jsx-runtime";import{isFunction as r}from"@vef-framework/shared";import{useMemo as e}from"react";import t from"../components/option.js";function i(i){return e((()=>r(i)?({data:o},{index:r})=>i({...o,index:r}):({data:{label:r,description:e}})=>o(t,{description:e,label:r??"Missing Label"})),[i])}export{i as useOptionRender};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,11 @@
1
+ import type { DataOption, NormalizedDataOption } from "@vef-framework/shared";
2
+ import { type ForwardedRef } from "react";
3
+ import type { VefSelectInstance } from "../props";
4
+ /**
5
+ * The hook to get the instance of the select.
6
+ *
7
+ * @param ref - The forwarded ref.
8
+ * @param dataOptions - The data options.
9
+ * @returns The ref of the select.
10
+ */
11
+ export declare function useSelectInstance<T extends DataOption<T>>(ref: ForwardedRef<VefSelectInstance<T>>, dataOptions: Array<NormalizedDataOption<T>>): import("react").RefObject<import("antd").RefSelectProps>;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{useRef as r,useImperativeHandle as t}from"react";function n(n,o){const u=r(null);return t(n,(()=>({blur:()=>{u.current?.blur()},focus:()=>{u.current?.focus({preventScroll:!0})},getDataOptions:()=>o}))),u}export{n as useSelectInstance};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,7 @@
1
+ import type { EmptyObject } from "@vef-framework/shared";
2
+ import { type DataOption, type ObjectType, type PureDataOption } from "@vef-framework/shared";
3
+ import { type FC, type ReactNode, type RefAttributes } from "react";
4
+ import type { VefSelectInstance, VefSelectProps } from "./props";
5
+ declare const VefSelect: (<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject>(props: VefSelectProps<T, P, R, KK, VK, FP> & RefAttributes<VefSelectInstance<T>>) => ReactNode) & Pick<FC, "displayName">;
6
+ export type { VefSelectInstance, VefSelectProps };
7
+ export default VefSelect;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as e}from"@emotion/react/jsx-runtime";import{useOptionFilter as o}from"@vef-framework/hooks";import{styles as r}from"@vef-framework/shared";import{Select as t}from"antd";import{memo as i,forwardRef as n}from"react";import"../internal/index.js";import l from"../vef-loading-placeholder/index.js";import{useDataOptions as a}from"./hooks/use-data-options.js";import{useFieldNames as s}from"./hooks/use-field-names.js";import{useLabelRender as m}from"./hooks/use-label-render.js";import{useOptionRender as d}from"./hooks/use-option-render.js";import{useSelectInstance as p}from"./hooks/use-select-instance.js";import{convertBasicSizeToUiSize as f}from"../internal/utils.js";const u=e("div",{css:{height:140},children:e(l,{})});const c=i(n((function({defaultValue:i,value:n,size:l,clearable:c,disabled:h,placeholder:v,variant:g,onClear:C,onBlur:k,onFocus:b,onChange:j,onSelect:F,onDeselect:x,multiple:w=!1,grouped:O=!1,maxCount:R,optionRender:S,filterable:z=!0,filterFromRemote:V=!1,...y},B){const{onFilterKeywordChange:D,normalizedOptions:L,isLoading:N,fallbackOptions:A,isFallbackOptionsLoading:H}=a({value:n,grouped:O,multiple:w,onChange:j,filterable:z,filterFromRemote:V,...y}),K=d(S),T=o(z,V),W=s(O),q=m(H,A),E=p(B,L);return e(t,{ref:E,defaultActiveFirstOption:!0,allowClear:c,css:r.fullWidth,defaultValue:i,disabled:h,fieldNames:W,filterOption:T,labelRender:q,listHeight:280,loading:N,maxCount:w?R:void 0,maxTagCount:w?"responsive":void 0,mode:w?"multiple":void 0,notFoundContent:N?u:void 0,optionRender:K,options:L,placeholder:v,showSearch:z,size:f(l),value:n,variant:g,onBlur:k,onChange:j,onClear:C,onDeselect:x,onFocus:b,onSearch:D,onSelect:F})})));c.displayName="VefSelect";export{c as default};
3
+ /*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
@@ -0,0 +1,153 @@
1
+ import type { BasicSize, BiConsumer, DataOption, DataOptionConfig, Handler, IdValue, Mapper, MaybeArray, MaybeNull, MaybePromise, NormalizedDataOption, ObjectType, Provider, PureDataOption, QueryApi, QueryConfig, QueryParamsWithKeyword, QueryParamsWithValues, StringKey } from "@vef-framework/shared";
2
+ import type { SelectProps } from "antd";
3
+ import type { ReactNode } from "react";
4
+ import type { EmptyObject } from "@vef-framework/shared";
5
+ /**
6
+ * The instance of the VefSelect component.
7
+ */
8
+ export interface VefSelectInstance<T extends DataOption<T> = PureDataOption> {
9
+ /**
10
+ * Focus the select.
11
+ */
12
+ focus: Handler;
13
+ /**
14
+ * Blur the select.
15
+ */
16
+ blur: Handler;
17
+ /**
18
+ * Get the data options of the select.
19
+ */
20
+ getDataOptions: Provider<Array<NormalizedDataOption<T>>>;
21
+ }
22
+ /**
23
+ * The base props of the VefSelect component.
24
+ */
25
+ interface VefBaseSelectProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T, KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject> extends QueryConfig<T[], QueryParamsWithKeyword<P, KK>, R[]>, DataOptionConfig<StringKey<T>>, Pick<SelectProps<MaybeNull<MaybeArray<IdValue>>, NormalizedDataOption<T>>, "disabled" | "placeholder" | "variant" | "maxCount" | "onClear" | "onBlur" | "onFocus" | "onSelect" | "onDeselect"> {
26
+ /**
27
+ * The size of the select.
28
+ */
29
+ size?: BasicSize;
30
+ /**
31
+ * Whether to allow clear.
32
+ */
33
+ clearable?: boolean;
34
+ /**
35
+ * Whether to allow multiple selection.
36
+ */
37
+ multiple?: boolean;
38
+ /**
39
+ * Whether to allow filter.
40
+ */
41
+ filterable?: boolean;
42
+ /**
43
+ * Whether to filter from remote.
44
+ */
45
+ filterFromRemote?: boolean;
46
+ /**
47
+ * The parameter key of keyword.
48
+ * Only works when `filterFromRemote` is true.
49
+ */
50
+ keywordKey?: KK;
51
+ /**
52
+ * The parameter key of values.
53
+ */
54
+ valuesKey?: VK;
55
+ /**
56
+ * The API of fallback options.
57
+ */
58
+ fallbackOptionsApi?: Readonly<QueryApi<QueryParamsWithValues<FP>, T[]>>;
59
+ /**
60
+ * The API params of fallback options.
61
+ */
62
+ fallbackOptionsApiParams?: FP;
63
+ /**
64
+ * The function to resolve fallback options.
65
+ */
66
+ resolveFallbackOptions?: Mapper<IdValue[], MaybePromise<T[]>>;
67
+ /**
68
+ * Whether the options are grouped.
69
+ */
70
+ grouped?: boolean;
71
+ /**
72
+ * The option render function.
73
+ */
74
+ optionRender?: Mapper<NormalizedDataOption<T> & {
75
+ index: number;
76
+ }, ReactNode>;
77
+ }
78
+ /**
79
+ * The default props of the single select.
80
+ */
81
+ interface VefDefaultSingleSelectProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject> extends VefBaseSelectProps<T, P, R, KK, VK, FP> {
82
+ /**
83
+ * The default value of the select.
84
+ */
85
+ defaultValue?: IdValue;
86
+ /**
87
+ * The value of the select.
88
+ */
89
+ value?: MaybeNull<IdValue>;
90
+ /**
91
+ * Whether to allow clear.
92
+ */
93
+ clearable?: false;
94
+ /**
95
+ * Whether to allow multiple selection.
96
+ */
97
+ multiple?: false;
98
+ /**
99
+ * The change handler.
100
+ */
101
+ onChange?: BiConsumer<IdValue, NormalizedDataOption<T>>;
102
+ }
103
+ /**
104
+ * The clearable props of the single select.
105
+ */
106
+ interface VefClearableSingleSelectProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject> extends VefBaseSelectProps<T, P, R, KK, VK, FP> {
107
+ /***
108
+ * The default value of the select.
109
+ */
110
+ defaultValue?: IdValue;
111
+ /**
112
+ * The value of the select.
113
+ */
114
+ value?: MaybeNull<IdValue>;
115
+ /**
116
+ * Whether to allow clear.
117
+ */
118
+ clearable: true;
119
+ /**
120
+ * Whether to allow multiple selection.
121
+ */
122
+ multiple?: false;
123
+ /**
124
+ * The change handler.
125
+ */
126
+ onChange?: BiConsumer<MaybeNull<IdValue>, MaybeNull<NormalizedDataOption<T>>>;
127
+ }
128
+ /**
129
+ * The props of the multiple select.
130
+ */
131
+ interface VefMultipleSelectProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject> extends VefBaseSelectProps<T, P, R, KK, VK, FP> {
132
+ /**
133
+ * The default value of the select.
134
+ */
135
+ defaultValue?: IdValue[];
136
+ /**
137
+ * The value of the select.
138
+ */
139
+ value?: IdValue[];
140
+ /**
141
+ * Whether to allow multiple selection.
142
+ */
143
+ multiple: true;
144
+ /**
145
+ * The change handler.
146
+ */
147
+ onChange?: BiConsumer<IdValue[], Array<NormalizedDataOption<T>>>;
148
+ }
149
+ /**
150
+ * The props of the VefSelect component.
151
+ */
152
+ export type VefSelectProps<T extends DataOption<T> = PureDataOption, P extends ObjectType = EmptyObject, R = T[], KK extends string = "keyword", VK extends string = "ids", FP extends ObjectType = EmptyObject> = VefDefaultSingleSelectProps<T, P, R, KK, VK, FP> | VefClearableSingleSelectProps<T, P, R, KK, VK, FP> | VefMultipleSelectProps<T, P, R, KK, VK, FP>;
153
+ export {};