@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
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # The Components of VEF Framework
2
+
3
+ VEF framework designed by Venus is built on top of React, and it provides a set of components that are essential for building a modern web application. These components are designed to be highly customizable and reusable, allowing developers to build complex and dynamic user interfaces with ease.
4
+
5
+ ## Installation
6
+
7
+ To install the VEF framework components, you can use pnpm or any other package manager you like:
8
+
9
+ ```bash
10
+ pnpm add @vef-framework/components
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ To use the VEF framework components in your project, you can import them from the package, for example:
16
+
17
+ ```tsx
18
+ import { VefButton } from "@vef-framework/components";
19
+
20
+ export default function App() {
21
+ return <VefButton>Hello World</VefButton>;
22
+ }
23
+ ```
24
+
25
+ ## Documentation
26
+
27
+ For more details on how to use the VEF framework components, please refer to the [official documentation](https://vef.ilxqx.com/docs).
@@ -0,0 +1,65 @@
1
+ export { default as VefAccessDenied, type VefAccessDeniedProps } from "./vef-access-denied";
2
+ export { default as VefActionButtons, type VefActionButtonsProps } from "./vef-action-buttons";
3
+ export { default as VefBadge, type VefBadgeProps } from "./vef-badge";
4
+ export { default as VefBool, type VefBoolInstance, type VefBoolProps } from "./vef-bool";
5
+ export { default as VefButton, type VefButtonProps } from "./vef-button";
6
+ export { default as VefCard, type VefCardProps } from "./vef-card";
7
+ export { default as VefCardMeta, type VefCardMetaProps } from "./vef-card-meta";
8
+ export { default as VefCheckbox, type VefCheckboxInstance, type VefCheckboxProps } from "./vef-checkbox";
9
+ export { default as VefCol, type VefColProps } from "./vef-col";
10
+ export { default as VefColorPicker, type VefColorPickerProps } from "./vef-color-picker";
11
+ export { default as VefCompact, type VefCompactProps } from "./vef-compact";
12
+ export { default as VefConfigProvider, type VefConfigProviderProps } from "./vef-config-provider";
13
+ export { default as VefContainer, type VefContainerProps } from "./vef-container";
14
+ export { default as VefCrudPage, type VefCrudPageProps } from "./vef-crud-page";
15
+ export { default as VefDrawer, VefDrawerActionButtonWrapper, type VefDrawerActionButtonWrapperProps, type VefDrawerProps } from "./vef-drawer";
16
+ export { default as VefDropdown, type VefDropdownProps } from "./vef-dropdown";
17
+ export { default as VefEmpty, type VefEmptyProps } from "./vef-empty";
18
+ export { default as VefEmptyPlaceholder, type VefEmptyPlaceholderProps } from "./vef-empty-placeholder";
19
+ export { default as VefError, type VefErrorProps } from "./vef-error";
20
+ export { default as VefFilter, type FilterActionButtonConfig, type FilterContext, type FilterItem, type FilterLabelAlign, type FilterLabelPosition, type FilterSchema, type VefFilterInstance, type VefFilterProps } from "./vef-filter";
21
+ export { default as VefFlex, type VefFlexProps } from "./vef-flex";
22
+ export { default as VefFloatButton, type VefFloatButtonProps } from "./vef-float-button";
23
+ export { default as VefFloatButtonGroup, type VefFloatButtonGroupProps } from "./vef-float-button-group";
24
+ export { default as VefForm, type FormActionButtonConfig, type FormColumn, type FormContext, type FormGroup, type FormItem, type FormLabelAlign, type FormLabelPosition, type FormLayoutMode, type FormRow, type FormScene, type FormSchema, type FormTabsUse, type FormValidationRule, type VefFormInstance, type VefFormProps } from "./vef-form";
25
+ export * as validationRules from "./vef-form/validation-rules";
26
+ export { default as VefGrid, type VefGridProps } from "./vef-grid";
27
+ export { default as VefGridItem, type VefGridItemProps } from "./vef-grid-item";
28
+ export { default as VefIcon, type VefIconProps } from "./vef-icon";
29
+ export { default as VefInput, type VefInputInstance, type VefInputProps } from "./vef-input";
30
+ export { default as VefInputNumber, type VefInputNumberInstance, type VefInputNumberProps } from "./vef-input-number";
31
+ export { default as VefLoadingPlaceholder, type VefLoadingPlaceholderProps } from "./vef-loading-placeholder";
32
+ export { default as VefLogin, type VefLoginProps } from "./vef-login";
33
+ export { default as VefModal, VefModalActionButtonWrapper, type VefModalActionButtonWrapperProps, type VefModalProps } from "./vef-modal";
34
+ export * from "./vef-modal/context";
35
+ export { default as VefNotFound, type VefNotFoundProps } from "./vef-not-found";
36
+ export { default as VefPage, type VefPageProps } from "./vef-page";
37
+ export { default as VefPagination, type VefPaginationProps } from "./vef-pagination";
38
+ export { default as VefParagraph, type VefParagraphProps } from "./vef-paragraph";
39
+ export { default as VefPassword, type VefPasswordInstance, type VefPasswordProps } from "./vef-password";
40
+ export { default as VefPopconfirm, type VefPopConfirmProps } from "./vef-popconfirm";
41
+ export { default as VefRadio, type VefRadioInstance, type VefRadioProps } from "./vef-radio";
42
+ export { default as VefRate, type VefRateInstance, type VefRateProps } from "./vef-rate";
43
+ export { default as VefResponsiveContainer, type VefResponsiveContainerProps } from "./vef-responsive-container";
44
+ export { default as VefResponsiveItem, type VefResponsiveItemProps } from "./vef-responsive-item";
45
+ export { default as VefRibbon, type VefRibbonProps } from "./vef-ribbon";
46
+ export { default as VefRow, type VefRowProps } from "./vef-row";
47
+ export { default as VefScrollArea, type VefScrollAreaProps } from "./vef-scroll-area";
48
+ export { default as VefSelect, type VefSelectInstance, type VefSelectProps } from "./vef-select";
49
+ export { default as VefSlider, type VefSliderInstance, type VefSliderProps } from "./vef-slider";
50
+ export { default as VefSortableList, type VefSortableListProps } from "./vef-sortable-list";
51
+ export { default as VefSpace, type VefSpaceProps } from "./vef-space";
52
+ export { default as VefSpin, type VefSpinProps } from "./vef-spin";
53
+ export { default as VefSplitter, type VefSplitterProps } from "./vef-splitter";
54
+ export { default as VefSplitterPanel, type VefSplitterPanelProps } from "./vef-splitter-panel";
55
+ export { default as VefStatus, type VefStatusProps } from "./vef-status";
56
+ export { default as VefTable, type BatchActionButtonContext, type OperationButtonContext, type TableColumn, type TableColumnFixed, type TableContext, type TableRowContext, type TableSchema, type VefTableInstance, type VefTableProps } from "./vef-table";
57
+ export { default as VefTabs, type VefTabsProps } from "./vef-tabs";
58
+ export { default as VefTag, type VefTagProps } from "./vef-tag";
59
+ export { default as VefTemporalPicker, type DisabledTimeProviders, type DisabledTimeType, type TemporalPickerMode, type VefTemporalPickerInstance, type VefTemporalPickerProps } from "./vef-temporal-picker";
60
+ export { default as VefTemporalRangePicker, type TemporalRangePickerMode, type VefTemporalRangePickerInstance, type VefTemporalRangePickerProps } from "./vef-temporal-range-picker";
61
+ export { default as VefText, type VefTextProps } from "./vef-text";
62
+ export { default as VefTextarea, type VefTextareaInstance, type VefTextareaProps } from "./vef-textarea";
63
+ export { default as VefTitle, type VefTitleProps } from "./vef-title";
64
+ export { default as VefTooltip, type VefTooltipProps } from "./vef-tooltip";
65
+ export { default as VefTreeSelect, type VefTreeSelectProps } from "./vef-tree-select";
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ export{default as VefAccessDenied}from"./vef-access-denied/index.js";export{default as VefActionButtons}from"./vef-action-buttons/index.js";export{default as VefBadge}from"./vef-badge/index.js";export{default as VefBool}from"./vef-bool/index.js";export{default as VefButton}from"./vef-button/index.js";export{default as VefCard}from"./vef-card/index.js";export{default as VefCardMeta}from"./vef-card-meta/index.js";export{default as VefCheckbox}from"./vef-checkbox/index.js";export{default as VefCol}from"./vef-col/index.js";export{default as VefColorPicker}from"./vef-color-picker/index.js";export{default as VefCompact}from"./vef-compact/index.js";export{default as VefConfigProvider}from"./vef-config-provider/index.js";export{default as VefContainer}from"./vef-container/index.js";export{default as VefCrudPage}from"./vef-crud-page/index.js";export{default as VefDrawer}from"./vef-drawer/index.js";export{default as VefDropdown}from"./vef-dropdown/index.js";export{default as VefEmpty}from"./vef-empty/index.js";export{default as VefEmptyPlaceholder}from"./vef-empty-placeholder/index.js";export{default as VefError}from"./vef-error/index.js";export{default as VefFilter}from"./vef-filter/index.js";export{default as VefFlex}from"./vef-flex/index.js";export{default as VefFloatButton}from"./vef-float-button/index.js";export{default as VefFloatButtonGroup}from"./vef-float-button-group/index.js";export{default as VefForm}from"./vef-form/index.js";import*as e from"./vef-form/validation-rules.js";export{e as validationRules};export{default as VefGrid}from"./vef-grid/index.js";export{default as VefGridItem}from"./vef-grid-item/index.js";export{default as VefIcon}from"./vef-icon/index.js";export{default as VefInput}from"./vef-input/index.js";export{default as VefInputNumber}from"./vef-input-number/index.js";export{default as VefLoadingPlaceholder}from"./vef-loading-placeholder/index.js";export{default as VefLogin}from"./vef-login/index.js";export{default as VefModal}from"./vef-modal/index.js";export{ModalContextProvider,useModalContext,useModalContextSelector}from"./vef-modal/context.js";export{default as VefNotFound}from"./vef-not-found/index.js";export{default as VefPage}from"./vef-page/index.js";export{default as VefPagination}from"./vef-pagination/index.js";export{default as VefParagraph}from"./vef-paragraph/index.js";export{default as VefPassword}from"./vef-password/index.js";export{default as VefPopconfirm}from"./vef-popconfirm/index.js";export{default as VefRadio}from"./vef-radio/index.js";export{default as VefRate}from"./vef-rate/index.js";export{default as VefResponsiveContainer}from"./vef-responsive-container/index.js";export{default as VefResponsiveItem}from"./vef-responsive-item/index.js";export{default as VefRibbon}from"./vef-ribbon/index.js";export{default as VefRow}from"./vef-row/index.js";export{default as VefScrollArea}from"./vef-scroll-area/index.js";export{default as VefSelect}from"./vef-select/index.js";export{default as VefSlider}from"./vef-slider/index.js";export{default as VefSortableList}from"./vef-sortable-list/index.js";export{default as VefSpace}from"./vef-space/index.js";export{default as VefSpin}from"./vef-spin/index.js";export{default as VefSplitter}from"./vef-splitter/index.js";export{default as VefSplitterPanel}from"./vef-splitter-panel/index.js";export{default as VefStatus}from"./vef-status/index.js";export{default as VefTable}from"./vef-table/index.js";export{VefTabs}from"./vef-tabs/index.js";export{default as VefTag}from"./vef-tag/index.js";export{default as VefTemporalPicker}from"./vef-temporal-picker/index.js";export{default as VefTemporalRangePicker}from"./vef-temporal-range-picker/index.js";export{default as VefText}from"./vef-text/index.js";export{default as VefTextarea}from"./vef-textarea/index.js";export{default as VefTitle}from"./vef-title/index.js";export{default as VefTooltip}from"./vef-tooltip/index.js";export{default as VefTreeSelect}from"./vef-tree-select/index.js";export{default as VefDrawerActionButtonWrapper}from"./vef-drawer/components/action-button-wrapper.js";export{default as VefModalActionButtonWrapper}from"./vef-modal/components/action-button-wrapper.js";
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 @@
1
+ export * from "./utils";
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ export{convertBasicSizeToUiSize}from"./utils.js";
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 { BasicSize, MaybeUndefined } from "@vef-framework/shared";
2
+ import type { SizeType } from "antd/es/config-provider/SizeContext";
3
+ /**
4
+ * Convert the basic size to the UI size.
5
+ *
6
+ * @param size - The basic size.
7
+ * @returns The UI size.
8
+ */
9
+ export declare function convertBasicSizeToUiSize(size: MaybeUndefined<BasicSize>): MaybeUndefined<SizeType>;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ function e(e){return"medium"===e?"middle":e}export{e as convertBasicSizeToUiSize};
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 { SVGProps } from "react";
2
+ declare function SvgAccessDeniedIcon(props: SVGProps<SVGSVGElement>): import("@emotion/react/jsx-runtime").JSX.Element;
3
+ declare const Memo: import("react").MemoExoticComponent<typeof SvgAccessDeniedIcon>;
4
+ export default Memo;
@@ -0,0 +1,3 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsxs as o,jsx as e}from"@emotion/react/jsx-runtime";import{memo as d}from"react";const s=d((function(d){return o("svg",{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...d,children:[o("defs",{children:[o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__a",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__b",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__c",spreadMethod:"pad",x1:0,x2:1,y1:-.031,y2:-.031,children:[e("stop",{offset:0,stopColor:"#fff5de"}),e("stop",{offset:1,stopColor:"#fbd2ac"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__d",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__e",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__f",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__g",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__h",spreadMethod:"pad",x1:.111,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__i",spreadMethod:"pad",x1:.119,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__j",spreadMethod:"pad",x1:1.541,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__k",spreadMethod:"pad",x1:1,x2:0,y1:-.118,y2:-.118,children:[e("stop",{offset:0,stopColor:"#f5dda7"}),e("stop",{offset:1,stopColor:"#fa9a41"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__l",spreadMethod:"pad",x1:.224,x2:.5,y1:-.089,y2:.774,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__m",spreadMethod:"pad",x1:.454,x2:.5,y1:-.115,y2:.786,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__n",spreadMethod:"pad",x1:.477,x2:.5,y1:-.115,y2:.786,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__o",spreadMethod:"pad",x1:.439,x2:.5,y1:-.115,y2:.786,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__p",spreadMethod:"pad",x1:0,x2:1.132,y1:.776,y2:.776,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__q",spreadMethod:"pad",x1:.14,x2:.875,y1:.075,y2:1.075,children:[e("stop",{offset:0,stopColor:"#ffb859"}),e("stop",{offset:1,stopColor:"#f97b61"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__r",spreadMethod:"pad",x1:.021,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__s",spreadMethod:"pad",x1:1,x2:.006,y1:-.03,y2:-.03,children:[e("stop",{offset:0,stopColor:"#f97b61"}),e("stop",{offset:1,stopColor:"#ffb859"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__t",spreadMethod:"pad",x1:1,x2:.006,y1:-.03,y2:-.03,children:[e("stop",{offset:0,stopColor:"#f97b61"}),e("stop",{offset:1,stopColor:"#ffb859"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__u",spreadMethod:"pad",x1:0,x2:.994,y1:-.03,y2:-.03,children:[e("stop",{offset:0,stopColor:"#ffb859"}),e("stop",{offset:1,stopColor:"#f97b61"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__v",spreadMethod:"pad",x1:0,x2:.994,y1:-.03,y2:-.03,children:[e("stop",{offset:0,stopColor:"#ffb859"}),e("stop",{offset:1,stopColor:"#f97b61"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__w",spreadMethod:"pad",x1:.863,x2:0,y1:-.028,y2:-.028,children:[e("stop",{offset:0,stopColor:"#1d181c"}),e("stop",{offset:.3,stopColor:"#2c2422"}),e("stop",{offset:.5,stopColor:"#42352c"}),e("stop",{offset:.7,stopColor:"#57352c"}),e("stop",{offset:1,stopColor:"#923629"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__x",spreadMethod:"pad",x1:.099,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__y",spreadMethod:"pad",x1:.101,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__z",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.434,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__A",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[e("stop",{offset:.032,stopColor:"#afdef9"}),e("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__B",spreadMethod:"pad",x1:.059,x2:.6,y1:.609,y2:.371,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__C",spreadMethod:"pad",x1:.445,x2:.583,y1:-.065,y2:0,children:[e("stop",{offset:.032,stopColor:"#afdef9"}),e("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__D",spreadMethod:"pad",x1:.284,x2:.5,y1:.87,y2:.305,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__E",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[e("stop",{offset:.032,stopColor:"#afdef9"}),e("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__F",spreadMethod:"pad",x1:.802,x2:.402,y1:.781,y2:.012,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__G",spreadMethod:"pad",x1:.17,x2:.731,y1:.776,y2:.273,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__H",spreadMethod:"pad",x1:0,x2:.85,y1:.669,y2:.361,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__I",spreadMethod:"pad",x1:0,x2:.85,y1:.644,y2:.382,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__J",spreadMethod:"pad",x1:0,x2:.85,y1:.639,y2:.385,children:[e("stop",{offset:0,stopColor:"#98d6fa"}),e("stop",{offset:1,stopColor:"#47b0f1"})]})]}),e("path",{d:"M0 0h1024v1024H0Z",fill:"none"}),e("path",{d:"M76.8 581.8 72 559.4l-4.2-23.8-3.6-28.8-1.9-26.5-.2-22.1.3-11.2.8-11.2 1.2-11.2 1.7-11.2 2.1-10.9 2.7-10.6 2.5-7.9 2.8-7.7 3.1-7.4 3.5-7.1 3.9-7 4.3-6.6 4.7-6.3 5.2-6 5.6-5.6 6.1-5.2 6.6-4.8 7.2-4.4 5.9-3 6.4-2.8 6.7-2.5 7.3-2.2 7.7-1.9 17.7-3.4 16.8-2.8 15.8-2.2 16-1.8 29.3-2.5 21.2-1.1 56.2-2.4 22.6-1.8 10.4-1.2 10.3-1.6 9.9-2.2 9.4-2.5 6.9-2.3 6.8-2.7 6.6-3 6.5-3.5 6.1-3.8 6.2-4.3 6-4.9 22.9-21.2 14.4-11.9 12.4-8.6 6.1-3.6 5.6-2.8 5.2-2.2 5.3-1.8 5.2-1.3 10-1.4 10.5-.2 8.1.5 28.8 2.6 7.3.3 7.4-.4 7.5-.9 7.4-1.4 7.5-1.8 7.5-2.2 14.5-5.4 17.6-8.2 9.8-5.2 17.9-10.6 28.7-18.8 12.7-6.2 8.9-3.6 13.3-4.4 15.5-4 17.2-2.7 8.8-.8 9.2-.3 9.5.3 14.3 1.6 14.6 3.3 7.2 2.2 7.1 2.8 7.3 3.4 7.2 3.9 6.9 4.4 6.9 5 6.9 5.8 6.8 6.5 5.1 5.4 10 12.5 9.8 14.9 8.6 16.1 4.2 9.1 4.1 9.9 7.4 21.1 6.4 23.3 3 13 2.8 14 1.5 23.4 2.4 47.1.8 38.6-.5 29.5-.7 14.5-1.2 13.9-3 23.3-1.7 9.5-4.2 17.5-2.7 8.6-3 8-3.2 7.5-3.6 6.9-3.2 5.5-3.5 5-3.6 4.7-3.9 4.3-9.5 9-4.4 4.8-3.4 4.6-2.7 4.3-2.3 4.8-1.6 4.5-1 4.3-.4 4.1.1 4.3.5 4 1 4 1.5 3.8 4 7.2 5.4 6.7 4.2 4 4.6 3.7 5 3.4 5.2 3 5.4 2.6 5.4 2.2 5.6 1.8 5.4 1.4 8.4 1.5 2.5.9 2 1.2 1.5 1.5 1.2 1.7.9 2.5.4 2.8-.2 3.4-.8 4.1-3.1 7.9-2.4 4.6-3.2 5.1-4.5 6.3-5.5 6.8-6.5 7.2-7 6.9-7.8 7-8.7 7.2-9 6.8-9.8 6.6-10.5 6.5-8 4.5-17 8.3-14.3 6-7.4 2.6-9.9 3.1-15.6 4.3-20.1 5-21.6 4.8-25.3 5.1-26.5 4.9-29.4 4.8-30.4 4.4-32.6 4.1-22 2.4-46 4-47 2.8-24 .8-24 .4-23.9-.1-24-.5-23.9-1.1-23.6-1.6-23.3-2.2-17.5-2-17.1-2.4-16.7-2.8-16.4-3.1-16.4-3.6-15.9-4-15.3-4.4L213 802l-8.6-4-8.2-4.4-7.8-4.7-7.4-5.2-7.2-5.5-6.8-5.8-6.5-6.1-6.1-6.4-7.8-8.9-7.2-9.2-6.6-9.5-6.2-9.8-5.8-9.9-5.2-10-4.9-10.2-8.5-19.9-5.4-14.9-4.6-14-4-13.7-6-23.8z",fill:"#47b0f1",fillOpacity:.05}),e("path",{d:"m158 329 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H109l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H106l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H155l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",fill:"url(#access-denied-icon_svg__a)",fillOpacity:.1}),e("path",{d:"m858 159 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H809l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H806l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H855l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",fill:"url(#access-denied-icon_svg__b)",fillOpacity:.1}),e("path",{d:"m514.5 712 32.9.2 31.8.7 30.9 1.1 30.8 1.5 29.5 1.8 28.2 2.2 28.2 2.7 26.5 3 24.8 3.2 24.8 3.7 22.7 3.9 20.7 4 13.5.3 12.9.8 12.4 1.1 12.4 1.6 11.6 1.9 10.9 2.2 10.8 2.6 9.8 2.9 8.8 3.1 8.8 3.6 7.5 3.7 6.5 3.8 4.7 3.2 3.9 3.3 3.3 3.2 2.7 3.3 2.3 3.6 1.6 3.6 1 3.6.3 3.6-.3 3.5-.9 3.5-1.5 3.5-2.2 3.5-2.5 3.2-3.1 3.1-3.8 3.2-4.4 3.2-6.1 3.7-7.2 3.7-8.2 3.5-8.5 3.1-9.3 2.8-10.2 2.7-10.3 2.3-11.1 2-11.8 1.6-27.4 7.1-15.7 3.5.5 6.3-.3 4.4-.8 4.3-1.3 4.3-1.8 4.3-2.5 4.3-5.9 7.8-8.1 8-4.9 3.9-6.2 4.5-7 4.4-7.8 4.3-8.8 4.3-8.6 3.8-19.5 7.3-21.7 6.5-23.3 5.6-12.7 2.4-16.8 2.8-17.6 2.4-18.6 1.9-18.6 1.4-19.3.8-19.9.3-31-.7-14.8-.8-29.1-2.7-14-1.8-26.4-4.4-13.1-2.7-24-6-22.1-7.1-10.2-3.8-9.4-4-8.6-4.1-8.7-4.7-7.6-4.7-6.8-4.7-5.8-4.7-4.6-4.3-4-4.2-3.3-4.3-2.7-4.2-2.2-4.2-28-2.4-26.4-2.6-24.9-2.9-24.9-3.3-23-3.6-21.2-3.7-21.2-4.2-19-4.4-17-4.4-12.9-3.8-11.4-3.7-10-3.8-8.9-3.6-7.4-3.5-6.3-3.5-5.3-3.3-8.3-6.3-3.1-3.2-2.4-3.1-1.8-2.9-1.2-2.9-.7-2.9-.3-2.9.2-2.8.8-2.9 1.1-2.8 1.8-2.9 2.3-3 3-3.1 3.6-3.1 9.5-6.5 6.1-3.3 15.7-7.1 9.7-3.7 11-3.7 12.4-3.7 16.4-4.4 18.4-4.3 20.5-4.2 20.5-3.7 22.3-3.6 24.1-3.3 24.1-3 25.6-2.6 27.2-2.5 55.4-3.7 29.6-1.3 59.9-1.6z",fill:"url(#access-denied-icon_svg__c)"}),e("path",{d:"m686.6 226.6-1.6-3.7-2-3.2-2.4-2.9-2.8-2.6-3-2.2-3.4-1.9-7.1-2.6-3.8-.8-3.8-.4-7.5.3 5.9-2.9 3.3-1.1 3.5-.8 6.9-.7 3.5.2 3.3.5 3.1 1 3 1.4 2.6 1.9 2.3 2.4 2.3-2.3 2.7-1.9 2.9-1.4 3.1-.9 3.3-.6 3.5-.2 7 .7 3.4.8 6.4 2.4 2.8 1.6-7.4-.3-7.6 1.2-7.2 2.7-3.3 1.9-3.1 2.2-2.8 2.5-2.4 2.9-2 3.2z",fill:"url(#access-denied-icon_svg__d)"}),e("path",{d:"m770 214.1-1.1-2.6-3-4.2-2-1.8-2.9-2-3.1-1.6-3.4-1.1-3.5-.6-3.5-.2-3.4.2 3-1.5 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.6-1.7 3.9-2.2 4.5-1.1 2.4-.1 3.6.2 3.6.8 3.4 1.2 3 1.6-3.5-.3-3.4.3-3.6.6-3.4 1.2-3.1 1.5-2.9 2-2.5 2.4-2 2.8z",fill:"url(#access-denied-icon_svg__e)"}),e("path",{d:"m735.2 179.6-1.1-2.6-3-4.2-2-1.8-2.8-2-3.2-1.5-3.4-1.2-3.5-.6-3.4-.2-3.5.3 3-1.6 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.7-1.6 3.8-2.3 4.5-1.1 2.4-.1 3.6.3 3.6.7 3.4 1.2 3 1.6-3.5-.2-3.4.2-3.6.7-3.3 1.1-3.2 1.5-2.9 2-2.5 2.4-2 2.9z",fill:"url(#access-denied-icon_svg__f)"}),e("path",{d:"m840.7 220.1-1.1-2.4-1.4-1.9-3.7-3.1-4.5-1.8-2.5-.5h-4.8l2.9-1.4 3.2-.9 2.3-.3 4.3.3 2 .7 1.8 1.1 1.5 1.5 1.6-1.5 1.7-1 4.2-1 4.4.3 3.3.9 2.8 1.4h-4.8l-2.4.4-4.5 1.9-3.8 3-1.4 2z",fill:"url(#access-denied-icon_svg__g)"}),e("path",{d:"M344.6 778.1v-81.9h27.3v-42.3h-27.3v-203h-44.8v203h-62.6l-3.7-.2-3.2-.7-2.8-1.2-2.5-1.5-2.3-2.2-1.7-2.3-1.2-2.4-.8-2.5-.2-2.6 1.1-10.1 27-177.3h-44.4l-30 192.5-.6 8.6.2 5.8.7 5.2 1.2 4.5 1.5 4 1.9 3.5 3.3 4.6 3.5 4 3.6 3.4 3.7 2.8 4 2.3 4.2 1.8 4.3 1.2 4.7.8 5 .3h86.1v81.9z",fill:"url(#access-denied-icon_svg__h)"}),e("path",{d:"M667.9 711.5h42.9l1.4 3.8 1.7 3.1 2 2.5 2.3 2.1 2.5 1.6 2.9 1.1 3.2.8 3.7.2h70.6l5.2-.3 4.2-.7 3.4-1.1 2.7-1.5 2.1-1.7 1.7-2.1 1.2-2.4.7-2.9.3-3.3v-72l-.3-4.2-.8-3.5-1.3-3-1.6-2.4-2.2-2-2.6-1.6-3.2-1.3-3.9-.8-4.7-.2h-91.4V577h89l5.6-.3 4.4-.8 3.6-1.1 2.9-1.5 2.2-1.8 1.8-2.1 1.2-2.4.8-2.9.3-3.4v-57.8l-.3-4.4-.7-3.7-1.1-3.1-1.4-2.6-1.8-2.2-2.2-1.8-2.6-1.4-3.1-1.1-3.7-.7-4.4-.3h-69.3l-3.7.3-3.3.8-2.8 1.3-2.5 1.8-2.3 2.4-1.9 3-1.7 3.7-1.3 4.5h-43.4l-.4-8.7.3-5.1.8-4.9 1.3-4.8 1.9-4.7 2.5-4.6 3.1-4.6 3.7-4.5 4.4-4.5 3.8-3.2 4.2-2.8 4.4-2.4 4.7-2 5.1-1.5 5.4-1.2 5.9-.7 6.4-.3h81.2l7.6.3 7 .8 6.3 1.3 5.7 1.7 5.2 2.2 4.8 2.5 4.3 3 4 3.4 3.5 3.8 3 4 2.6 4.3 2.1 4.6 1.7 4.9 1.2 5.3.8 5.6.2 6.1v74.1l-.2 4.8-.7 4.9-1.3 5.1-1.8 5.2-2.4 5.4-3.1 5.6 3.3 6 2.5 5.4 1.8 5 1.2 4.6.7 4.2.3 3.8v89.1l-.3 5.7-.7 5.4-1.2 5.1-1.6 4.7-2.1 4.4-2.5 4.1-2.9 3.9-3.5 3.7-4.5 4.1-4.6 3.4-4.5 2.8-4.6 2.3-4.6 1.7-4.6 1.2-4.6.7-4.8.3h-86.9l-7.1-.3-6.6-.7-6-1.2-5.5-1.7-5.1-2.1-4.8-2.4-4.3-2.9-4-3.3-3.7-3.8-3.3-4.2-3.1-4.7-2-3.7-1.8-4.3-1.5-4.7-1.2-5.3-1-5.9z",fill:"url(#access-denied-icon_svg__i)"}),e("path",{d:"M614.8 562H503.2l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.3 1.3 1.8 1 2.3.7 2.9.2h111.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7zM614.8 613h-81.6l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.4 1.3 1.7 1 2.3.7 2.9.2h81.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7z",fill:"#fff"}),e("path",{d:"m383 602.5.2 8 .7 7.8 1 7.6 1.4 7.4 1.8 7.3 2.8 9.1 3.4 8.7 3.9 8.4 4.4 8.1 4.9 7.9 5.4 7.4 5.8 7.1 6.3 6.7 6.7 6.3 7.1 5.8 7.4 5.4 7.9 4.9 8.1 4.4 8.4 3.9 8.7 3.4 9.1 2.8 7.3 1.8 7.4 1.4 7.6 1 7.8.7 8 .2 8-.2 7.8-.7 7.6-1 7.4-1.4 7.3-1.8 9.1-2.8 8.7-3.4 8.4-3.9 8.1-4.4 7.9-4.9 7.4-5.4 7.1-5.8 6.7-6.3 6.3-6.7 5.8-7.1 5.4-7.4 4.9-7.9 4.4-8.1 3.9-8.4 3.4-8.7 2.8-9.1 1.8-7.3 1.4-7.4 1-7.6.7-7.8.2-8-.2-8-.7-7.8-1-7.6-1.4-7.4-1.8-7.3-2.8-9.1-3.4-8.7-3.9-8.4-4.4-8.1-4.9-7.9-5.4-7.4-5.8-7.1-6.3-6.7-6.7-6.3-7.1-5.8-7.4-5.4-7.9-4.9-8.1-4.4-8.4-3.9-8.7-3.4-9.1-2.8-7.3-1.8-7.4-1.4-7.6-1-7.8-.7-8-.2-8 .2-7.8.7-7.6 1-7.4 1.4-7.3 1.8-9.1 2.8-8.7 3.4-8.4 3.9-8.1 4.4-7.9 4.9-7.4 5.4-7.1 5.8-6.7 6.3-6.3 6.7-5.8 7.1-5.4 7.4-4.9 7.9-4.4 8.1-3.9 8.4-3.4 8.7-2.8 9.1-1.8 7.3-1.4 7.4-1 7.6-.7 7.8z",fill:"url(#access-denied-icon_svg__j)"}),e("path",{d:"m422.6 552.8.9 1.9 1.3 1.6 1.8 1.5 4.6 2.1 2.9.7 6.4.5 3.6-.1 7.4-1.2 4-1 7.4-2.9 3.3-1.7 5.8-3.9 4.3-4.2 1.5-2.2 1.1-2.1.7-2.3.1-2.1-.3-2-.9-1.9-1.3-1.7-1.8-1.5-4.6-2.1-6-1.1h-6.9l-7.4 1.2-4 1.1-3.9 1.3-6.8 3.2-3.1 1.9-4.9 4-2.1 2.3-2.6 4.3-.7 2.2-.1 2.1z",fill:"#b6dcf2"}),e("path",{d:"m523 607.5.3 4.3.8 4.1 1.4 3.9 1.8 3.6 2.3 3.3 2.6 3.1 3.1 2.6 3.3 2.3 3.6 1.8 3.9 1.4 4.1.8 4.3.3 4.3-.3 4.1-.8 3.9-1.4 3.6-1.8 3.3-2.3 3.1-2.6 2.6-3.1 2.3-3.3 1.8-3.6 1.4-3.9.8-4.1.3-4.3-.3-4.3-.8-4.1-1.4-3.9-1.8-3.6-2.3-3.3-2.6-3.1-3.1-2.6-3.3-2.3-3.6-1.8-3.9-1.4-4.1-.8-4.3-.3-4.3.3-4.1.8-3.9 1.4-3.6 1.8-3.3 2.3-3.1 2.6-2.6 3.1-2.3 3.3-1.8 3.6-1.4 3.9-.8 4.1z",fill:"#47b0f1"}),e("path",{d:"m610.1 528.8-1.3 2.2-.2 1.4.1 2.3.8 2.5 1.3 2.4 1.9 2.4 2.4 2 2.3 1.4 2.5.9 2.2.3 2.6-.7 1.1-.7 1.3-2.2.3-1.5-.2-2.2-.8-2.5-1.3-2.4-1.9-2.4-2.3-2-2.4-1.4-2.5-.9-2.2-.3-1.4.2zM405 637.5l.3 3.2.8 2.9 1.3 2.7 1.7 2.5 2.1 2.1 2.5 1.7 2.7 1.3 2.9.8 3.2.3 3.2-.3 2.9-.8 2.7-1.3 2.5-1.7 2.1-2.1 1.7-2.5 1.3-2.7.8-2.9.3-3.2-.3-3.2-.8-2.9-1.3-2.7-1.7-2.5-2.1-2.1-2.5-1.7-2.7-1.3-2.9-.8-3.2-.3-3.2.3-2.9.8-2.7 1.3-2.5 1.7-2.1 2.1-1.7 2.5-1.3 2.7-.8 2.9zM520 679l.7 3.8 1.9 3.3 2.8 2.4 1.8.8 3.8.7 3.8-.7 3.3-1.9 2.4-2.8 1.3-3.6v-4l-.5-1.8-1.9-3.3-2.8-2.4-1.8-.8-3.8-.7-3.8.7-3.3 1.9-2.4 2.8-.8 1.8z",fill:"#b6dcf2"}),e("path",{d:"m428.1 793.5 6.2 2.2 3.7 1.7 3.4 2.4.9 1.9-.7 1.9-1.2 1.3-9.6 6-2.2 1.8-1.3 1.6-1 1.8-.3 1.7.1 1.6.5 1.7 2.2 3.2 2.2 2.4 4.4 3.7 8.5 3.9 5.2 1.9 14.6 4 17.2 3.6 20.7 2.8 11.1 1 12.1.6 12.1.2 12.6-.3 13.3-.8 20-2.3 20.8-3.8 9.8-2.4 8.5-2.4 13.4-4.8 6.3-2.9 5.2-2.8 4.2-2.7 3.3-2.6 3.3-3.1 2.5-2.9 1.8-2.8 1.2-2.8.8-2.9.3-2.9v-2.8l-.5-2.7-1.3-3.5-1.7-3.4-2.3-3.3-2.7-3-6.2-5.3-4.7-2.8-7.6-3.8-8.8-3.6-11.3-4.1-12.2-3.8-14.4-3.8-9.9-2.2-22.1-3.9-11.4-1.6-12-1.2-12.6-.8-12.6-.4-13 .2-13.4.6-12 1-19.1 2.3-15.9 3-5.9 1.5-10.2 3.5-3.4 1.6-3.1 1.9-2 1.7-2.7 4.1-2 5-.4 2.4.1 2.4.7 2.3 1.2 2.1 2.1 2.3 3 2.3 3.4 1.9 4.6 2z",fill:"url(#access-denied-icon_svg__k)",fillOpacity:.4}),e("path",{d:"m846.9 766.6-1.1-3.6-1.6-3.2-2.1-2.8-2.7-2.5-3.2-2.1-11.6-4.9-2.9-2.3-.5-.9.1-.8.6-1 1.7-1 5.7-.5 2.4.3 2.4.8 2.6 1.5 1.6 1.3 3.6 4.5 3.3 6.2 1.7 4.5.4 2.2z",fill:"url(#access-denied-icon_svg__l)"}),e("path",{d:"m847.3 767.8-2.8-9.8-2.9-8.3-2.8-7.1-2.7-5.9-2.8-4.8-4-6.1-1-2-.6-2.2-.3-4.1 1.1-3.4.9-1.2 1.3-.8 3-.1 1.6.4 3.2 2 2.7 3.5 1.9 3.6 2.1 5.5 1.9 6.4 1.9 8.9 1.1 9.2.1 7-.4 3.6-.8 3.2-.7 1.5z",fill:"url(#access-denied-icon_svg__m)"}),e("path",{d:"m848.4 763.7 1-4.7.5-5.4-.1-6.3-.7-7.2-1.5-8.3-5-15.6-.7-3.6-.1-3 .3-1.9.6-1.5 1-1.3 1.2-.9 1.9-.7 2.5-.3 2 .5 2.1 1.2 1.2 1.2 2.3 4 .9 2.5 1.2 7.8.1 10.1-.4 7-.9 5.4-3.3 12.9-2.6 8.1-2.1.4z",fill:"url(#access-denied-icon_svg__n)"}),e("path",{d:"m851 766.9-.1-8.5.4-7.5.8-6.8 1.2-5.9 1.5-5.3 1.8-4.7 2.1-4.2 2.4-3.6 3.8-4.4 1.8-1.1 1.9-.7 2.1-.2 1.3.2 2.3 1.5.7 1.2.5 1.7.3 2.6-1.7 6.3-1.7 4.1-2.8 5.5-5.4 8-3.9 5-3.6 5.9-2.3 5.6-1.2 4.4-.7.6z",fill:"url(#access-denied-icon_svg__o)"}),e("path",{d:"m803 769.9 12.3-2.8 2.2-.9 3.7-2.8 2.5-1.3 3.1-1.2 3.3-.8 3.5-.1 2.3.3 2.1.9 2.1 1.3 1.1-1 1.7-.8 1.8-.5 2.1.1 2.5 1.1 1.2 1.1.8-2.2 1.4-1.9 4-3.2 4.4-1.8 2-.4h3.5l2.7.2 2.8.5 3 1.3 1.9 1.2 1.7 1.6 1.7 2.2 1.1 2.5 1 3.2.5 4.2z",fill:"url(#access-denied-icon_svg__p)"}),e("path",{d:"m610 489.6-.3 1.9-.7 2-1.3 1.9-2 2.1-3 2.2-4 2.3-5.1 2.3-11.3 3.7-14.2 3.1-16.2 2.2-17.5 1.1-9.4.2-9.4-.2-17.5-1.1-16.2-2.2-14.2-3.1-11.3-3.7-5.1-2.3-4-2.3-3-2.2-2-2.1-1.3-1.9-.7-2-.3-1.9.3-2 .7-1.9 1.3-2 2-2 3-2.3 4-2.3 5.1-2.3 5.2-1.9 13.2-3.5 14.9-2.6 16.9-1.7 18.4-.5 9.4.1 17.5 1.1 16.2 2.2 14.2 3.1 11.3 3.7 5.1 2.3 4 2.3 3 2.3 2 2 1.3 2 .7 1.9z",fill:"#b6dcf2",fillOpacity:.2,fillRule:"evenodd"}),e("path",{d:"m525.7 290 2.8.4 5.2 1.9 4.5 3.1 2 2 2.9 4.4-.1-.7 1.4 1.2 1 3.4.1 3 1.6.2 1.6 1.9.9 3.5-.1 1.9-.6 1.8-1.1 1.5-2.4 1.2-1.8.3-1.1 2.2-3.8 5.5-2.2 2.7-2.5 2.2v9.6l-19 .3.1-11.3-2.1-2-1.8-2.5-1.9-3.3-1.5-3.4h.4l-2.2-.1-1.6-.4-2.2-1.7-1.1-2.4-.2-2.1.3-2 .7-1.7 1-1.3 1.7-.6.9.2.6-4.6 1-3 1.4-2.8 1.9-2.6 2.1-2 2.3-1.6 2.6-1.3 2.7-.8 2.7-.3zm17.8 14 .5 2.3Zm-.4-2.2.4 2.2z",fill:"#ebb0b0"}),e("path",{d:"m545.7 310.6 2.3-3.1 1-2.2 1.2-3.5.7-3.9.2-4-.4-4-.6-2.6-2.1-4.6-1.6-2-1.8-1.6-3.6-2.3-1.9-.7-5.1-.5-4.7.8-4.6-3-1.9-.8-2.6-.6-3.2.1-4.3 1-4 1.5-1.7.9-2.9 2.6-2.1 2.5-2 3-1.7 3.5-1.4 3.9-.9 4.3-.2 3 .7 4.7 1.3 3.2 5.5 9.2 1.5-1.3 1.3-1.7 4-7.7 2.8-2.9 3.1-2.5 3.3-2.2 3.6-1.8 5.1-.6 3.8-.1 2.4.3 2.1.7 1.9 1.1 1.7 1.4 1.7 2.2 1.7 3.1z",fill:"#131322"}),e("path",{d:"m515.5 335.5 6.5 4.2 3.4.9 1.3-.2 1.5-.7 5.4-4.2 9.1 1.3 5.3 1.3 5.9 2 5.9 2.4 6.3 3 6.1 3.6 6 4.2-.3 20.4-.5 8.6-1.4 13.6-3 16.3-5.4 22.4-9.1 16.2-8.7 13.6-2.7 3-4.3 1.9-4 1.4-3.7.9-7.8.7-10-.5-6.8-.8-3-1.6-4.8-3.6-9.9-8.4-2.6-2.4-1.7-2.7-8.2-17.6-3.8-10.3-2.6-10.4-1.3-29.6-.7-29.5 2.5-3.3 2.6-2.7 2.7-2.3 5.9-3.6 7.7-2.9z",fill:"url(#access-denied-icon_svg__q)"}),e("path",{d:"M512 346.1h23.1l1.6.3 1.2.9.9 1.2.3 1.6v37.8l-.3 1.6-.9 1.3-1.2.8-1.6.3H512l-1.6-.3-1.2-.8-.9-1.3-.3-1.6v-37.8l.3-1.6.9-1.2 1.2-.9z",fill:"url(#access-denied-icon_svg__r)"}),e("path",{d:"m498.4 386.8 1.8-4.6 1.9-3.9 2.1-3.4 2.3-2.8 2.3-1 .4.2.1.4-.9 1.4 4.3-.7 2.1.4 2.6 1.5 2.3 3.1 1.7 5.6-2 4.3-1.5 2.4-4 4.4-4.3 2.7-4.1 1.1-2.2-.4-1.7-.9-1.4-1.3-1-2-.6-2.7z",fill:"#efba9e"}),e("path",{d:"m468.7 355.3 2.7-2.9 2.6-2.1 2.3-1.3 2.2-.7 2.2-.2 2.1.3 2.2.8 2.3 1.5 2.4 2.1 1 1.4 1 2.2.9 3.2.9 5.1.6 6.8.2 7.1-.4 16.5-1.3 17.6-2.9 24.5-2.2 2.3-4 2.9-1.9.8-2.8.6h-2.6l-2.6-.6-2.4-1.1-2.2-1.4-2-1.9-1.8-2.1-2.4-5-2.2-10.6-1.5-9.8-.7-9.1-.1-8.3.5-7.8 1-7.1 1.5-6.6 2-6.1 2.5-5.7z",fill:"url(#access-denied-icon_svg__s)"}),e("path",{d:"m470.7 426.7 1.4-5 1.8-5 2.4-4.8 2.9-4.8 3.6-4.8 4.1-4.8 4.9-4.8 5.6-4.7 1.8-.5 3.5-.1 3.3 1.1 1.4 1.1 1.1 1.4 1 1.8.7 2.4-.1 4.5-1.6 8-1.3 4.8-4 10.5-2.7 5.2-3 4.9-3.4 4.3-2.6 2.6-2.7 2.1-2.9 1.7-4.1.6h-3.2l-2.5-.5-2-.9-1.6-1.3-1.2-1.7-.8-2.2-.5-2.9.1-3.6z",fill:"url(#access-denied-icon_svg__t)"}),e("path",{d:"m550.1 386.8-1.7-4.6-2-3.9-2.1-3.4-2.2-2.8-2.3-1-.5.2v.4l.9 1.4-4.4-.7-2 .4-2.6 1.5-2.3 3.1-1.7 5.6 1.9 4.3 1.5 2.4 4.1 4.4 4.3 2.7 4 1.1 2.3-.4 1.7-.9 1.3-1.3 1-2 .7-2.7z",fill:"#efba9e"}),e("path",{d:"m579.9 355.3-2.8-2.9-2.5-2.1-2.4-1.3-2.2-.7-2.1-.2-2.2.3-2.2.8-2.2 1.5-2.4 2.1-1.1 1.4-1 2.2-.9 3.2-.8 5.1-.6 6.8-.2 7.1.4 16.5 1.2 17.6 3 24.5 2.1 2.3 4.1 2.9 1.9.8 2.8.6h2.6l2.5-.6 2.4-1.1 2.2-1.4 2.1-1.9 1.7-2.1 2.5-5 2.2-10.6 1.4-9.8.8-9.1.1-8.3-.5-7.8-1-7.1-1.5-6.6-2-6.1-2.5-5.7z",fill:"url(#access-denied-icon_svg__u)"}),e("path",{d:"m577.8 426.7-1.3-5-1.9-5-2.3-4.8-3-4.8-3.5-4.8-4.2-4.8-4.8-4.8-5.6-4.7-1.9-.5-3.5-.1-3.2 1.1-1.4 1.1-1.2 1.4-.9 1.8-.7 2.4v4.5l1.6 8 1.4 4.8 4 10.5 2.6 5.2 3.1 4.9 3.4 4.3 2.6 2.6 2.7 2.1 2.8 1.7 4.1.6h3.2l2.6-.5 2-.9 1.5-1.3 1.2-1.7.9-2.2.4-2.9v-3.6z",fill:"url(#access-denied-icon_svg__v)"}),e("path",{d:"m579.2 440.7 4.6-1.3 3.3-.6 3.4-.1 3.8.5 2.4.7 2.4 1.1 2.3 1.7 1.9 2 1.7 2.8 1.6 3.6.8 3.5.2 2.8-.3 2.4-1.6 4.3-1.3 1.6-2.2 2.1-2.3 1.5-2.4 1.2-3.6 1.2-13.7 2.5-6 19-48.4-8.9-48.5 8.9-6-19-15.4-3-4.2-1.8-2.3-1.6-2.2-2.1-2.2-3.6-.7-2.3-.3-2.4.3-2.8.8-3.4 1.5-3.7 1.7-2.8 2-2 2.3-1.7 2.3-1.1 2.4-.7 3.8-.5 3.4.2 3.3.5 57.9 15.6z",fill:"url(#access-denied-icon_svg__w)"}),e("path",{d:"m472.7 479-5.9.4-13.7-.2-2.6.1-4 1-.7.6-.9 1.6-.8 3.8.2 5 .4 2.1 1.5 3 .8.8 1.6.6 1.6-.1 19.7-4.3 7-1.9zm106.1 0 5.9.4 13.8-.2 2.6.1 4 1 .8.7.8 1.5.8 3.8-.1 5-.5 2.2-1.5 3-.7.8-1.7.6-1.6-.1-19.8-4.3-7.1-1.9z",fill:"#333"}),e("path",{d:"m610.8 308.8 7.2-.9.8 5.5.7 1.8 2.3 2.9 3 2 3.7.8 2-.1 5.6-.8 1.8-.7 2.9-2.2 2-3.1.6-1.7.2-4-1.1-3.7-2.3-2.9-3-2-3.7-.8-5.6.5-.9-7.1 7-.6 3.1.4 2.9 1 2.8 1.4 2.4 1.9 2 2.3 1.7 2.6 1.2 2.9.7 3.3.1 3.3-.5 3.1-.9 2.9-1.5 2.8-1.9 2.3-2.3 2.1-2.6 1.7-2.9 1.1-3.3.7-6.5.6-2.7-.3-2.6-.7-2.5-1.1-4.3-3.2-1.8-2.1-1.5-2.3-1.1-2.5-7.6.9-.8-7.2zm-10.8 1.3.9 7.1-7.2.9-.9-7.1z",fill:"url(#access-denied-icon_svg__x)"}),e("path",{d:"m578.8 271.1 3.7-3.7 3.6 3.2 1.8.7 2 .3 2-.3 1.8-.8 1.7-1.3 3.2-3.6.8-1.9.3-1.9-.3-2-.7-1.8-1.3-1.7-1.8-1.4-1.8-.7-2-.3-1.9.3-1.9.8-3.6 3.2-3.7-3.7 3.8-3.4 1.9-1.2 2.2-.7 4.3-.4 4.3 1.1 2 1.1 1.9 1.5 1.5 1.9 1.1 2 .8 2.1.4 4.4-1.2 4.3-1.2 1.9-3.4 3.8-3.3 2.4-3.7 1.2-3.9.1-1.9-.4-3.6-1.6-3.9 3.9-3.7-3.7zm-5.6 5.6 3.7 3.7-3.7 3.7-3.7-3.7z",fill:"url(#access-denied-icon_svg__y)"}),e("path",{d:"m54.2 676.4-7.9-3.2-6.7-2.2-5.6-1.4-4.8-.5h-4l-3.3.5-2.9 1-2.4 1.4-2 1.8-1.7 2.3-1.4 2.8-1 3.5-.7 4.3-.1 5.1.4 6.2 1.3 4.8 1.4 3.8 1.7 3 1.8 2.4 2 1.7 2.1 1.3 6 7.6 4.7 6.8 3.6 5.9 2.6 5.2 1.8 4.6 1.1 4 1.2 7.7 1.2 4.3 2.8 5.2 1.8 2.4 2.2 2.1 2.5 1.9 3 1.5 3.1 1.1 3.6.7 4.2.3 4.2-.3 4.8-.9 10.1-2.7 4.1-.5 3.7.1 3.5.7 3.2 1.3 3.1 1.8 3 2.5 2.8 3.2 2.7 4.1 2.6 5 2.4 6.2 2.2 7.5 4.4 5.2 4.7 4.8 5.2 4.4 5.6 4 6.1 3.5 6.6 3.1 7.1 2.8 7.7 2.2 8.4 1.8 9 1.4 9.8.8 10.6.2 11.5-.3 12.5-1.1 9.1-1.2 7.3-1.6 5.8-1.7 4.5-2 3.5-2.1 2.5-2.1 1.9-2.3 1.2-2.4.7-2.6.1-2.9-.5-3.1-1.2-3.6-2-4-3.1-4.7-4.4-5.4-5.9-6.1-7.6-7-9.8-8-12.1-9.1-12.6-4.8-10-3.4-16.3-4.2-2-1.1-1.9-1.5-1.6-2.1-1.5-2.6-1.2-3.4-1-4.3-.6-5.3-.4-9.8-.7-2.9-1.3-2.9-1.7-2.6-2.3-2.5-2.9-2.5-3.7-2.3-4.6-2.1-11-4.1-4.4-2.2-3.4-2.3-2.5-2.4-1.9-2.5-1.2-2.6-.7-2.8-.1-3 .5-3.3-3.1-4.1-3.1-3.2-3-2.4-3-1.7-3-1.1-3.1-.5h-3.2l-3.3.6-3.6 1.3-3.8 1.9-8.8 6.1L81 679l-4 1.7-3.8 1-3.5.5-3.3-.1-3.2-.6-3-1.2-3.1-1.6z",fill:"url(#access-denied-icon_svg__z)"}),e("path",{d:"m52.6 691.5 48.3 32.2-2.1-9.9-2.2-8.4-2.2-7.1-3.3-8.6 4.4 9.7 3.4 8.8 2.8 9.1.9 4.3.3 3.4 40.2 26.9.5-20.5-.4-6.9-.7-5.2-.8-3.8 1.6 4.6.7 3.5 1.7 13.9.4 9.1-.5 7 37.1 24.7-.4-.4.8-8.1.1-7-.7-6.4 1.2 3.6.8 6.4.4 7.3-.1 6.1 30.6 20.3-3.9 3.9-31.5-22.3-6 2.7-8.1 2-4.5.5h-7.3l6.6-.8 5.5-1.2 4.4-1.5 3.6-1.7 2.8-1.9 2.5 1.5-88.8-62.8.6.6-6.8.8-6.4.2-6-.2-5.7-.6-5.4-1.1-5.2-1.4 1.2-.3 8.8 1.5 4.6.5 5.7.3 8.2-.7 4.6-.9zM94 768.4l4-.2 4.5-.8 5-1.5 5.7-2.3 6.5-3.4 7.2-4.4 8.2-5.7 2.3 2.2-5.5 4-5.4 3.4-5.2 2.7-5.4 2.4-5 1.7-4.7 1.2-4.7.7-4.1.2z",fill:"url(#access-denied-icon_svg__A)"}),e("path",{d:"m89.6 607.3-7.5-4.8-6.3-3.5-5.4-2.4-4.6-1.5-3.9-.8-3.2-.1-2.8.3-2.4.8-2.1 1.2-1.9 1.7-1.5 2.3-1.4 2.8-1 3.6-.7 4.5-.3 5.5.2 6.9 5.3 21.2 1.9 9.3 1.2 8.1.3 5.3v5.1l-.8 7.7.2 7 1.5 7.6 3 8.1 2.1 4 2.7 4 3 3.7 3.7 3.7 4.3 3.5 7.2 4.5 4.4 2 10.9 4.3 4.8 2.4 3.8 2.4 2.8 2.4 2.1 2.5 1.5 2.4.9 2.4.4 2.6-.2 2.7-.7 2.9-1.3 3.2-2.1 3.5-.5 3.4v3.3l.6 3.1 1.2 3.1 1.7 3 2.3 3 3.2 3 4 3 5 3.1 6.1 3 7.5 3 9 3 10.7 2.9 12.6 2.8 14.8 2.7 12.2 1.7 10.1 1.1 8.1.4 11.6-.3 7.7-1.2 3.6-1.2 2.7-1.4 2.1-1.5 1.6-1.6 1.2-1.9.8-2.1.5-2.3v-2.6l-.5-3.4-1-3.9-1.6-4.2-3.1-6.4-3.9-7-9-14.4-5.5-5.9-4-5-2.3-3.4-3.2-5.9-1.5-4.5-.9-4.2-.5-4.3.1-7.6 1.6-10.9.1-3.8-.3-3.8-1.5-4.8-1.4-2.4-1.8-2.2-2.3-2.1-3.2-2.1-3.4-1.8-4.3-1.6-9-2.7-3.2-1.5-2.9-2-2.6-2.5-2.4-3-2.2-3.5-1.9-4.3-1.6-5.1-1.3-5.9-1-7-.4-8.1-.8-3-1.3-2.6-1.6-2.1-2.1-1.8-2.6-1.5-3.3-1.1-3.9-.7-4.9-.3-5.9.4-7.1 1-8.5 1.9-3.6.4h-3.5l-3.6-.6-3.7-1.1-3.7-1.6-3.9-2.3-4-3-4.2-3.7z",fill:"url(#access-denied-icon_svg__B)"}),e("path",{d:"m74.9 624.7 35.5 45.1 1.7-4.9 1.2-4.7.6-4.7.2-4.7-.4-4.7-1-5.1 2.8 9 .6 3.6.1 3.8-.5 4.5-.7 2.9-2.9 7.2 30 38.2 2.8-4.5 2.2-4.7 1.8-5.2 1.3-5.8.8-6.4.3-7.1.7 5.7-.1 4.2-.4 5.2-1 5.3-1.4 5.6-1.4 3.6-3.6 6.6 26.7 33.9 2.2-4.1 2.5-6.3.8-3.7.3-4.1.5 6.2-.3 3.4-1.5 6.1-2.6 5L212 799h-6.2l-38-50.6-8.7 3.2-8.9 1.6-4.3.2-3.9-.3-3.1-.7-4.9-1.7 4.2.8 4.2.3 4.4-.2 4.4-.7 4.7-1.1 4.8-1.8 5-2.3-28.8-38.5.5.9-7.3 2.3-7.1 1.7-7.1 1.1-6.5.6-6.3.1-5.4-.5-3.4-.6-5.3-1.9 3.3 1 3.8.6 4.5.2 5.2-.2 6-.7 6.9-1.4 8.1-2.1 9.2-3-.5.2-32.1-42.9.2.5-5.4.1-5-.5-4.6-.9-4.3-1.5-4-1.9-3.7-2.4-3.6-2.9-3.3-3.4.5-.1 1.3.8 6.5 4.5 3.5 1.8 3.9 1.6 8.3 2 8.2.3z",fill:"url(#access-denied-icon_svg__C)"}),e("path",{d:"m199.2 608.8 3.6-4.5 3.2-3.2 2.9-2.1 2.7-1.3 2.6-.6h2.4l2.4.6 2.5 1.3 2.5 2.1 2.7 3 2.9 4.2 3 5.7 1.1 5.3 2 15.9 1.7 4.8 1.4 2.1 1.8 2 2.5 2.1 2.8 1.7 3.7 1.8 8.9 3.4 3.2 1.8 2.5 1.9 1.9 2.1 1.4 2.2.9 2.5.4 2.6v3l-.7 3.3-1.3 3.8-2 4.4-3 5-1.4 3.8-.6 3.2v2.8l.6 2.4 1.1 2.2 1.6 1.9 2.2 1.7 3.1 1.6 6.7 2.2 2 1.3 1.5 1.5 1 1.8.6 2.2.1 2.6-.5 3.3-1.3 4.1-2.2 5-3.4 6.1-4.8 7.4-2.2 5.7-1.2 4.6-.4 3.7.2 3.1.8 2.4 1.1 2 4.1 3.7 4.4 5.1 3.2 5.8 1.2 3.3 1 3.7.6 4.3.1 4.3-.4 4.8-1 5.6-1.5 5.4-2.4 6.1-3.3 7-2.1 3.5-4.6 5.5-2.4 2.1-3.5 2.3-3.7 1.6-3.7 1-3.9.5h-4l-4-.5-3.9-.9-7.7-2.8-5.5-2.8-5-3.3-4.5-3.7-3.6-3.6-2.1-2.7-2.6-4.6-1-3.3-.7-3.4-.2-3.5.3-5.4 3.2-21.1.2-4.6-.2-2.9-.6-2.5-1-2.3-3.1-3.4-2.3-1.7-13-7.5-7.4-5.2-4.9-5.3-1.9-3-1.4-3.4-1-3.9-.3-2.9.7-7 1-4.2 7.6-10.4 3.4-5.1 1.7-4.5.3-5.3-1.2-6.4-1.5-3.9-4.9-9.9-6.5-11.3-.4-1.6v-1.7l.7-2 3.2-5.4 5.8-8.9 3.3-3.8 3.5-5 3.8-6.4 4.1-8.1z",fill:"url(#access-denied-icon_svg__D)"}),e("path",{d:"m216.1 638.5 11.4 56.9 5.5-8.5 4.4-7.5 3.4-6.6 3.8-8.3-3.8 9.9-3.8 8.6-4.5 8.4-2.4 3.7-2.2 2.7 9.5 47.4 14.8-14.2 4.6-5.1 3.2-4.1 2.1-3.3-2.1 4.3-2 3-8.6 11-6.2 6.8-5.2 4.6 8.7 43.6v-.5l6.2-5.2 5.1-4.8 4.1-5-1.8 3.3-3.9 5.1-4.9 5.5-4.3 4.2 7.2 36h-5.5l-6.5-38.1-6.2-2.3-7.1-4.3-3.5-2.8-5.2-5.1 5.3 4 4.6 3 4.2 2.1 3.8 1.3 3.4.7.6 2.9L224 684.5l-.1.9-5.3-4.3-4.7-4.3-4.1-4.4-3.6-4.5-3.1-4.6-2.6-4.7 1 .6 5.2 7.4 2.9 3.6 3.9 4.2 6.2 5.3 3.9 2.6zM191 722.1l2.9 2.7 3.8 2.6 4.6 2.5 5.7 2.4 6.9 2.2 8.3 2 9.8 1.8v3.1l-6.7-1-6.2-1.5-5.6-1.7-5.5-2.2-4.8-2.3-4.1-2.4-3.8-2.8-3-2.8z",fill:"url(#access-denied-icon_svg__E)"}),e("path",{d:"m938.4 787.5.5-6.1v-5.3l-.5-4.6-.9-4-1.3-3.3-1.7-3-2-2.5-2.3-2.1-2.8-1.8-3.3-1.4-3.7-1.1-4.4-.7 5-.2 4.5.2 4.2.7 3.9 1 3.5 1.4 3.5 1.8 3.1 2.2 2.8 2.5 2.5 2.8 2.2 3.3 1.7 3.3 1.4 3.7 1.1 4 .7 4.4.3 4.8z",fill:"url(#access-denied-icon_svg__F)"}),e("path",{d:"m950.1 787.6 1.1-6.4.5-6-.1-5.4-.6-5.1-1.2-4.6-1.6-4.4-2-4-2.6-3.8-3-3.5-3.7-3.3-4.2-3.1 5.2 1.7 9.3 4.2 4.2 2.5 4 3 3.6 3.4 4.8 6.1 2.1 3.7 3.6 8.4 2.8 10.4 1.1 6.2-14.1.4z",fill:"url(#access-denied-icon_svg__G)"}),e("path",{d:"m977.1 788-.4-6.3.3-5.4.8-4.7 1.2-4.1 1.6-3.6 2.1-3.1 2.4-2.6 2.9-2.3 3.4-1.9 4-1.5 4.6-1.1h-9.8l-3.3.3-6.7 1.4-3.2 1.3-3.2 1.8-3.3 2.3-3 2.8-3 3.6-3.2 4.6-2.7 4.9-2.7 6.1-2.8 7.5 15.2-.3z",fill:"url(#access-denied-icon_svg__H)"}),e("path",{d:"m927.4 802 15.3-.5 5.8-1.3 2.5-1.1 2.1-1.5 1.6-1.9 1-1.6 1.1-4.5.2-3-.3-3.9-.8-3.7-1.3-3.5-1.8-3.3-2.1-3.1-2.6-2.7-3-2.4-3.2-2.1-3.5-1.7-3.8-1.2-3.9-.7-4.2-.3-4.2.3-3.9.7-3.8 1.2-3.5 1.7-3.2 2.1-3 2.4-2.6 2.7-2.1 3.1-1.8 3.3-1.3 3.5-.8 3.7-.3 3.9.2 3 1.3 4.4 1 1.7 1.9 1.9 2.2 1.5 2.8 1.1 6.2 1.3z",fill:"url(#access-denied-icon_svg__I)"}),e("path",{d:"m960.6 802 10.5-.4 4.2-1.4 2.3-2.1.7-1.4.7-4.1-.3-3.2-.9-3-1.4-2.7-1.9-2.5-2.2-2-2.7-1.8-2.9-1.3-3.2-.8-3.5-.3-3.5.3-3.2.8-2.9 1.3-2.7 1.8-2.2 2-1.9 2.5-1.4 2.7-.9 3-.3 3.2.2 2.3.6 1.8.8 1.4 2.5 2.1 4.6 1.4z",fill:"url(#access-denied-icon_svg__J)"})]})}));export{s 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,5 @@
1
+ import type { FC } from "react";
2
+ import type { VefAccessDeniedProps } from "./props";
3
+ declare const VefAccessDenied: FC<VefAccessDeniedProps>;
4
+ export type { VefAccessDeniedProps };
5
+ export default VefAccessDenied;
@@ -0,0 +1,29 @@
1
+ /*! VefFramework version: 1.0.5, build time: 2024-12-10T10:24:47.065Z, made by Venus. */
2
+ import{jsx as e,jsxs as i}from"@emotion/react/jsx-runtime";import{ArrowLeftOutlined as o}from"@ant-design/icons";import{css as r}from"@emotion/react";import{styles as n,themeVariables as t}from"@vef-framework/shared";import c from"../vef-button/index.js";import s from"./access-denied-icon.js";const a=r`
3
+ height: 100%;
4
+ ${n.flexCenter}
5
+ `,d=r`
6
+ width: 40%;
7
+ position: relative;
8
+ top: -60px;
9
+ display: flex;
10
+ flex-direction: column;
11
+ align-items: center;
12
+ justify-content: center;
13
+ row-gap: ${t.margin};
14
+ > svg {
15
+ width: 70%;
16
+ }
17
+
18
+ > span {
19
+ font-size: ${t.fontSizeLg};
20
+ font-weight: 500;
21
+ color: ${t.colorTextTertiary};
22
+ }
23
+
24
+ > span.vef-access-denied-uri {
25
+ padding-left: ${t.paddingSm};
26
+ color: ${t.colorWarningText};
27
+ }
28
+ `,l=({uri:r,title:n="抱歉,您没有权限访问该页面~~~",onNavigateHome:t})=>e("div",{css:a,children:i("div",{css:d,children:[e(s,{}),e("span",{children:n}),r&&i("span",{className:"vef-access-denied-uri",children:["路径:",r]}),e(c,{color:"primary",icon:e(o,{}),size:"large",onClick:t,children:"回到首页"})]})});export{l as default};
29
+ /*! 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,18 @@
1
+ import type { Handler } from "@vef-framework/shared";
2
+ /**
3
+ * The props of the access denied component.
4
+ */
5
+ export interface VefAccessDeniedProps {
6
+ /**
7
+ * The access denied uri.
8
+ */
9
+ uri?: string;
10
+ /**
11
+ * The title of the access denied.
12
+ */
13
+ title?: string;
14
+ /**
15
+ * The handler for navigating to the home page.
16
+ */
17
+ onNavigateHome?: Handler;
18
+ }
@@ -0,0 +1,6 @@
1
+ import { type FC } from "react";
2
+ import type { VefActionButtonsProps } from "./props";
3
+ declare function VefActionButtonsBase<T>({ buttons, context, useFlexContainer, size, }: VefActionButtonsProps<T>): import("@emotion/react/jsx-runtime").JSX.Element | null;
4
+ declare const VefActionButtons: typeof VefActionButtonsBase & Pick<FC, "displayName">;
5
+ export type { VefActionButtonsProps };
6
+ export default VefActionButtons;
@@ -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,Fragment as n}from"@emotion/react/jsx-runtime";import{useAuthorizedItems as i,useComputedActionButtons as e}from"@vef-framework/hooks";import{memo as t}from"react";import r from"../vef-button/index.js";import c from"../vef-flex/index.js";const m=t((function({buttons:t,context:m,useFlexContainer:a=!0,size:l="medium"}){const f=i(t),s=m??{},d=e(f,s);if(0===d.length)return null;const u=d.map((n=>{const{key:i,label:e,icon:t,color:c,disabled:m,requireConfirmation:a,confirmationMode:f,confirmationTitle:d,confirmationContent:u,onClick:p}=n,C=()=>p?.(s);return o(r,a?{requireConfirmation:!0,color:c,confirmationContent:u,confirmationMode:f,confirmationTitle:d,disabled:m,icon:t,size:l,onConfirmationOk:C,children:e}:{color:c,disabled:m,icon:t,size:l,onClick:C,children:e},i)}));return a?o(c,{align:"center",gap:"medium",children:u}):o(n,{children:u})}));m.displayName="VefActionButtons";export{m 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,23 @@
1
+ import type { ActionButton, BasicSize, EmptyObject } from "@vef-framework/shared";
2
+ /**
3
+ * The props of VefActionButtons component.
4
+ */
5
+ export interface VefActionButtonsProps<T = EmptyObject> {
6
+ /**
7
+ * The action buttons.
8
+ */
9
+ buttons: Array<ActionButton<T>>;
10
+ /**
11
+ * The context of the action buttons.
12
+ */
13
+ context?: T;
14
+ /**
15
+ * Whether to use flex container.
16
+ * @default true
17
+ */
18
+ useFlexContainer?: boolean;
19
+ /**
20
+ * The size of the action buttons.
21
+ */
22
+ size?: BasicSize;
23
+ }
@@ -0,0 +1,5 @@
1
+ import { type FC } from "react";
2
+ import type { VefBadgeProps } from "./props";
3
+ declare const VefBadge: FC<VefBadgeProps>;
4
+ export type { VefBadgeProps };
5
+ export default VefBadge;
@@ -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 t}from"@vef-framework/hooks";import{Badge as e}from"antd";import{useMemo as r}from"react";const f=({variant:f="default",count:m,overflowCount:i,showZero:s,size:u,offset:a,color:d})=>{const n=t(),c=r((()=>"dot"===f?{dot:!0,color:d?n.get(d):void 0,size:"medium"===u?"default":u,offset:a}:{count:m,overflowCount:i,showZero:s,size:"medium"===u?"default":u,offset:a,color:d?n.get(d):void 0}),[f,m,i,s,u,a,d,n]);return o(e,{...c})};export{f 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,28 @@
1
+ import type { BasicSize, ColorType } from "@vef-framework/shared";
2
+ import type { BadgeProps } from "antd";
3
+ /**
4
+ * The variant of the badge.
5
+ */
6
+ export type BadgeVariant = "default" | "dot";
7
+ /**
8
+ * The props of the VefBadge component.
9
+ */
10
+ export interface VefBadgeProps extends Pick<BadgeProps, "overflowCount" | "showZero" | "offset"> {
11
+ /**
12
+ * The count of the badge.
13
+ */
14
+ count?: number;
15
+ /**
16
+ * The variant of the badge.
17
+ * @default "default"
18
+ */
19
+ variant?: BadgeVariant;
20
+ /**
21
+ * The color of the badge.
22
+ */
23
+ color?: ColorType;
24
+ /**
25
+ * The size of the badge.
26
+ */
27
+ size?: Exclude<BasicSize, "large">;
28
+ }
@@ -0,0 +1,6 @@
1
+ import { type ForwardedRef } from "react";
2
+ import type { BoolVariant, VefBoolInstance } from "../props";
3
+ export declare function useBoolInstance(variant: BoolVariant, ref: ForwardedRef<VefBoolInstance>): {
4
+ switchRef: import("react").RefObject<HTMLButtonElement>;
5
+ checkboxRef: import("react").RefObject<import("antd").CheckboxRef>;
6
+ };
@@ -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 c}from"react";function u(u,e){const t=r(null),l=r(null);return c(e,(()=>"switch"===u?{focus:()=>{t.current?.focus({preventScroll:!0})},blur:()=>{t.current?.blur()}}:{focus:()=>{l.current?.focus({preventScroll:!0})},blur:()=>{l.current?.blur()}})),{switchRef:t,checkboxRef:l}}export{u as useBoolInstance};
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 { VefBoolInstance, VefBoolProps } from "./props";
2
+ declare const VefBool: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<VefBoolProps & import("react").RefAttributes<VefBoolInstance>>>;
3
+ export type { VefBoolInstance, VefBoolProps };
4
+ export default VefBool;
@@ -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{isFunction as t}from"@vef-framework/shared";import{Switch as a,Checkbox as i}from"antd";import{useMemo as o,memo as r,forwardRef as d}from"react";import{useBoolInstance as n}from"./hooks/use-bool-instance.js";const c=r(d((({defaultValue:r,value:d,disabled:c,size:s,label:f,indeterminate:l,variant:m="switch",loading:h,onChange:u},k)=>{const p=o((()=>{if(t(u))return"switch"===m?e=>u(e):({target:{checked:e}})=>u(e)}),[u,m]),{switchRef:b,checkboxRef:g}=n(m,k);return"switch"===m?e(a,{ref:b,defaultChecked:r,disabled:c,loading:h,size:"medium"===s?"default":s,onChange:p,...void 0===d?{}:{checked:d}}):e(i,{ref:g,defaultChecked:r,disabled:c,indeterminate:l,onChange:p,...void 0===d?{}:{checked:d},children:f})})));c.displayName="VefBool";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,63 @@
1
+ import type { BasicSize, Consumer, Handler } from "@vef-framework/shared";
2
+ import type { ReactNode } from "react";
3
+ /**
4
+ * The variant of the boolean component.
5
+ */
6
+ export type BoolVariant = "switch" | "checkbox";
7
+ /**
8
+ * The instance of the VefBool component.
9
+ */
10
+ export interface VefBoolInstance {
11
+ /**
12
+ * The blur handler.
13
+ */
14
+ blur: Handler;
15
+ /**
16
+ * The focus handler.
17
+ */
18
+ focus: Handler;
19
+ }
20
+ /**
21
+ * The props of the VefBool component.
22
+ */
23
+ export interface VefBoolProps {
24
+ /**
25
+ * The default value of the boolean component.
26
+ */
27
+ defaultValue?: boolean;
28
+ /**
29
+ * The value of the boolean component.
30
+ */
31
+ value?: boolean;
32
+ /**
33
+ * Whether the boolean component is disabled.
34
+ */
35
+ disabled?: boolean;
36
+ /**
37
+ * The size of the boolean component.
38
+ */
39
+ size?: Exclude<BasicSize, "large">;
40
+ /**
41
+ * The variant of the boolean component.
42
+ */
43
+ variant?: BoolVariant;
44
+ /**
45
+ * The label of the boolean component.
46
+ * Only works when the variant is `checkbox`.
47
+ */
48
+ label?: ReactNode;
49
+ /**
50
+ * Whether the boolean component is indeterminate.
51
+ * Only works when the variant is `checkbox`.
52
+ */
53
+ indeterminate?: boolean;
54
+ /**
55
+ * Whether the boolean component is loading.
56
+ * Only works when the variant is `switch`.
57
+ */
58
+ loading?: boolean;
59
+ /**
60
+ * The callback function when the value changes.
61
+ */
62
+ onChange?: Consumer<boolean>;
63
+ }
@@ -0,0 +1,9 @@
1
+ import type { Except } from "@vef-framework/shared";
2
+ import type { VefBaseButtonProps } from "../props";
3
+ /**
4
+ * The props of the base button.
5
+ */
6
+ export interface BaseButtonProps extends Except<VefBaseButtonProps, "tip" | "requireConfirmation"> {
7
+ }
8
+ declare const VefBaseButton: import("react").ForwardRefExoticComponent<BaseButtonProps & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
9
+ export default VefBaseButton;
@@ -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{useColorTokens as o}from"@vef-framework/hooks";import{Button as t,ConfigProvider as e}from"antd";import{forwardRef as i}from"react";import"../../internal/index.js";import{convertBasicSizeToUiSize as a}from"../../internal/utils.js";const n=["default","primary","error"],s=i((({color:i,iconPosition:s,size:l,type:d,variant:m="solid",autoInsertSpace:c,disabled:p,loading:f,...u},h)=>{const y=o(),g="left"===s?"start":"right"===s?"end":void 0;if(!i||n.includes(i))return r(t,{ref:h,autoInsertSpace:c,color:"error"===i?"danger":i,disabled:!f&&p,htmlType:d,iconPosition:g,loading:f,size:a(l),variant:m,...u});if(y.has(i))return r(e,{theme:{token:{colorPrimary:y.get(i)}},children:r(t,{ref:h,autoInsertSpace:c,color:"primary",disabled:!f&&p,htmlType:d,iconPosition:g,loading:f,size:a(l),variant:m,...u})});throw new Error(`Invalid button color: ${i}`)}));s.displayName="VefBaseButton";export{s 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,4 @@
1
+ import type { VefButtonProps } from "./props";
2
+ declare const VefButton: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<VefButtonProps & import("react").RefAttributes<HTMLAnchorElement | HTMLButtonElement>>>;
3
+ export type { VefButtonProps };
4
+ export default VefButton;
@@ -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{useContextDisabled as n}from"@vef-framework/hooks";import{isNullish as i,invokeMaybeAsyncFn as t,defaultMessageTitle as r,showConfirmation as e,omit as a}from"@vef-framework/shared";import{forwardRef as m,useState as f,useMemo as c,memo as l}from"react";import s from"../vef-popconfirm/index.js";import C from"../vef-tooltip/index.js";import p from"./components/base-button.js";const d=l(m((({tip:m,onClick:l,disabled:d=!1,loading:u,...k},b)=>{const[q,v]=f(!1),y=c((()=>{if(k.requireConfirmation){const{onConfirmationOk:o}=k;return i(u)?async()=>{await t(o,{beforeInvoke:()=>{v(!0)},onFinally:()=>{v(!1)}})}:o}}),[k.requireConfirmation,k.onConfirmationOk]),g=c((()=>{if(!k.requireConfirmation)return l&&i(u)?async o=>{await t(l,{beforeInvoke:()=>{v(!0)},onFinally:()=>{v(!1)}},o)}:l;const{confirmationMode:o="simple",confirmationTitle:n=r,confirmationContent:a,onConfirmationCancel:m}=k;return"simple"===o?o=>{o.stopPropagation()}:o=>{o.stopPropagation(),e(n,a,y,{onCancel:m})}}),[u,l,y,k.requireConfirmation,k.confirmationMode,k.confirmationTitle,k.confirmationContent,k.onConfirmationCancel]),h=n()||d,j=o(p,{ref:b,disabled:h,loading:u??q,onClick:g,...a(k,["requireConfirmation","confirmationMode","confirmationTitle","confirmationContent","onConfirmationOk","onConfirmationCancel"])}),w=m?o(C,{content:m,children:j}):j;if(k.requireConfirmation&&"simple"===k.confirmationMode){const{confirmationTitle:n=r,confirmationContent:i,onConfirmationCancel:t}=k;return o(s,{ref:b,content:i,disabled:h,title:n,onCancel:t,onOk:y,children:w})}return w})));d.displayName="VefButton";export{d 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,79 @@
1
+ import type { BasicSize, ColorType, ConfirmationMode, Except, Handler, MaybePromise, Position, Provider } from "@vef-framework/shared";
2
+ import type { ButtonProps } from "antd";
3
+ import type { ButtonHTMLType } from "antd/es/button";
4
+ import type { ReactNode } from "react";
5
+ /**
6
+ * The base props of the VefButton component.
7
+ */
8
+ export interface VefBaseButtonProps extends Except<ButtonProps, "classNames" | "styles" | "prefixCls" | "rootClassName" | "color" | "danger" | "type" | "htmlType" | "ghost" | "iconPosition" | "size"> {
9
+ /**
10
+ * The color type of the button.
11
+ */
12
+ color?: "default" | ColorType;
13
+ /**
14
+ * The position of the icon.
15
+ */
16
+ iconPosition?: Exclude<Position, "center">;
17
+ /**
18
+ * The size of the button.
19
+ */
20
+ size?: BasicSize;
21
+ /**
22
+ * The type of the button.
23
+ */
24
+ type?: ButtonHTMLType;
25
+ /**
26
+ * The tip of the button.
27
+ */
28
+ tip?: ReactNode;
29
+ /**
30
+ * Whether the button requires confirmation.
31
+ */
32
+ requireConfirmation?: boolean;
33
+ }
34
+ /**
35
+ * The props of the VefButton component when it does not require confirmation.
36
+ */
37
+ interface VefDefaultButtonProps extends VefBaseButtonProps {
38
+ /**
39
+ * Whether the button requires confirmation.
40
+ */
41
+ requireConfirmation?: false;
42
+ }
43
+ /**
44
+ * The props of the VefButton component when it requires confirmation.
45
+ */
46
+ interface VefConfirmationButtonProps extends VefBaseButtonProps {
47
+ /**
48
+ * Whether the button requires confirmation.
49
+ */
50
+ requireConfirmation: true;
51
+ /**
52
+ * The mode of the confirmation.
53
+ * @default "simple"
54
+ */
55
+ confirmationMode?: ConfirmationMode;
56
+ /**
57
+ * The title of the confirmation.
58
+ */
59
+ confirmationTitle?: ReactNode;
60
+ /**
61
+ * The content of the confirmation.
62
+ */
63
+ confirmationContent: ReactNode;
64
+ /**
65
+ * The handler when the user clicks the OK button.
66
+ * Only works when `requireConfirmation` is true.
67
+ */
68
+ onConfirmationOk: Provider<MaybePromise<void>>;
69
+ /**
70
+ * The handler when the user clicks the Cancel button.
71
+ * Only works when `requireConfirmation` is true.
72
+ */
73
+ onConfirmationCancel?: Handler;
74
+ }
75
+ /**
76
+ * The props of the VefButton component.
77
+ */
78
+ export type VefButtonProps = VefDefaultButtonProps | VefConfirmationButtonProps;
79
+ export {};
@@ -0,0 +1,5 @@
1
+ import type { FC } from "react";
2
+ import type { VefCardProps } from "./props";
3
+ declare const VefCard: FC<VefCardProps>;
4
+ export type { VefCardProps };
5
+ export default VefCard;
@@ -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{Card as o}from"antd";import{isArray as t}from"@vef-framework/shared";const r=({size:r="medium",showHoverEffect:i=!1,actions:m,nested:a=!1,...s})=>e(o,{actions:t(m)?m:m?[m]:void 0,hoverable:i,size:"medium"===r?"default":r,type:a?"inner":void 0,...s});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,27 @@
1
+ import type { BasicSize, MaybeArray } from "@vef-framework/shared";
2
+ import type { CardProps } from "antd";
3
+ import type { ReactNode } from "react";
4
+ /**
5
+ * The props of the VefCard component.
6
+ */
7
+ export interface VefCardProps extends Pick<CardProps, "title" | "extra" | "bordered" | "cover" | "loading" | "className" | "style" | "children"> {
8
+ /**
9
+ * The size of the card.
10
+ * @default "medium"
11
+ */
12
+ size?: Exclude<BasicSize, "large">;
13
+ /**
14
+ * Whether to show the hover effect.
15
+ * @default false
16
+ */
17
+ showHoverEffect?: boolean;
18
+ /**
19
+ * The actions of the card.
20
+ */
21
+ actions?: MaybeArray<ReactNode>;
22
+ /**
23
+ * Whether the Card is nested in another Card.
24
+ * @default false
25
+ */
26
+ nested?: boolean;
27
+ }
@@ -0,0 +1,5 @@
1
+ import type { FC } from "react";
2
+ import type { VefCardMetaProps } from "./props";
3
+ declare const VefCardMeta: FC<VefCardMetaProps>;
4
+ export type { VefCardMetaProps };
5
+ export default VefCardMeta;
@@ -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{Card as o}from"antd";const{Meta:r}=o,e=({...o})=>t(r,{...o});export{e 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 */