@vef-framework/components 1.0.97 → 1.0.99

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 (674) hide show
  1. package/es/index.js +90 -2
  2. package/es/internal/base.css.js +4 -2
  3. package/es/internal/chart.js +18 -2
  4. package/es/internal/index.js +3 -2
  5. package/es/internal/modern-normalize.css.js +4 -2
  6. package/es/internal/utils.js +6 -2
  7. package/es/vef-access-denied/access-denied-icon.js +928 -2
  8. package/es/vef-access-denied/index.js +45 -10
  9. package/es/vef-action-buttons/index.js +75 -2
  10. package/es/vef-approval-flow-editor/components/edge.js +83 -3
  11. package/es/vef-approval-flow-editor/components/label-value.js +27 -9
  12. package/es/vef-approval-flow-editor/components/node-content.js +45 -11
  13. package/es/vef-approval-flow-editor/components/node-selector.js +33 -5
  14. package/es/vef-approval-flow-editor/components/node-toolbar.js +21 -2
  15. package/es/vef-approval-flow-editor/components/nodes/approval.js +24 -2
  16. package/es/vef-approval-flow-editor/components/nodes/condition.js +24 -2
  17. package/es/vef-approval-flow-editor/components/nodes/end.js +24 -2
  18. package/es/vef-approval-flow-editor/components/nodes/handle.js +24 -2
  19. package/es/vef-approval-flow-editor/components/nodes/index.js +17 -2
  20. package/es/vef-approval-flow-editor/components/nodes/submit.js +24 -2
  21. package/es/vef-approval-flow-editor/components/selector-content.js +48 -10
  22. package/es/vef-approval-flow-editor/components/source-handle.js +40 -2
  23. package/es/vef-approval-flow-editor/components/target-handle.js +9 -2
  24. package/es/vef-approval-flow-editor/constants.js +218 -2
  25. package/es/vef-approval-flow-editor/helper.js +83 -2
  26. package/es/vef-approval-flow-editor/hooks/use-edges-interaction.js +25 -2
  27. package/es/vef-approval-flow-editor/hooks/use-element-selection.js +24 -2
  28. package/es/vef-approval-flow-editor/hooks/use-nodes-interaction.js +51 -2
  29. package/es/vef-approval-flow-editor/index.js +75 -2
  30. package/es/vef-approval-flow-editor/models/edge-node.js +20 -2
  31. package/es/vef-approval-flow-editor/models/flow-node.js +105 -2
  32. package/es/vef-approval-flow-editor/store.js +16 -2
  33. package/es/vef-approval-flow-editor/styles.js +20 -13
  34. package/es/vef-approval-flow-editor/types.js +15 -2
  35. package/es/vef-area-chart/index.js +41 -2
  36. package/es/vef-auto-sizer/index.js +6 -2
  37. package/es/vef-avatar/index.js +20 -2
  38. package/es/vef-avatar-group/index.js +25 -2
  39. package/es/vef-badge/index.js +47 -2
  40. package/es/vef-bar-chart/index.js +41 -2
  41. package/es/vef-bool/hooks/use-bool-instance.js +34 -2
  42. package/es/vef-bool/index.js +60 -2
  43. package/es/vef-breadcrumb/index.js +48 -2
  44. package/es/vef-button/components/base-button.js +73 -2
  45. package/es/vef-button/index.js +151 -2
  46. package/es/vef-card/index.js +25 -2
  47. package/es/vef-card-meta/index.js +12 -2
  48. package/es/vef-chart-container/hooks/use-chart-container-context.js +12 -2
  49. package/es/vef-chart-container/index.js +80 -10
  50. package/es/vef-chart-legend-content/index.js +43 -11
  51. package/es/vef-chart-tooltip-content/index.js +85 -23
  52. package/es/vef-checkbox/hooks/use-checkbox-instance.js +20 -2
  53. package/es/vef-checkbox/hooks/use-data-options.js +40 -2
  54. package/es/vef-checkbox/index.js +88 -4
  55. package/es/vef-col/index.js +11 -2
  56. package/es/vef-color-picker/index.js +46 -2
  57. package/es/vef-compact/index.js +15 -2
  58. package/es/vef-config-provider/global-style.js +23 -16
  59. package/es/vef-config-provider/hooks/use-ui-config.js +126 -2
  60. package/es/vef-config-provider/index.js +121 -4
  61. package/es/vef-config-provider/store.js +21 -2
  62. package/es/vef-container/index.js +18 -2
  63. package/es/vef-crud-page/components/crud-actions.js +32 -2
  64. package/es/vef-crud-page/components/crud-filter.js +54 -2
  65. package/es/vef-crud-page/components/crud-footer.js +116 -4
  66. package/es/vef-crud-page/components/crud-form-modal.js +53 -2
  67. package/es/vef-crud-page/components/crud-header.js +29 -2
  68. package/es/vef-crud-page/components/crud-table.js +76 -2
  69. package/es/vef-crud-page/hooks/use-action-buttons.js +37 -2
  70. package/es/vef-crud-page/hooks/use-crud-context.js +20 -2
  71. package/es/vef-crud-page/hooks/use-crud-schema.js +116 -2
  72. package/es/vef-crud-page/hooks/use-operation-buttons.js +60 -2
  73. package/es/vef-crud-page/index.js +150 -2
  74. package/es/vef-crud-page/store.js +142 -2
  75. package/es/vef-data-grid/index.js +85 -2
  76. package/es/vef-data-table/index.js +9 -2
  77. package/es/vef-divider/index.js +24 -2
  78. package/es/vef-drawer/components/action-button-wrapper.js +49 -2
  79. package/es/vef-drawer/components/button-props.js +2 -1
  80. package/es/vef-drawer/components/cancel-action-button.js +21 -2
  81. package/es/vef-drawer/components/ok-action-button.js +20 -2
  82. package/es/vef-drawer/context.js +15 -2
  83. package/es/vef-drawer/index.js +154 -4
  84. package/es/vef-dropdown/index.js +92 -2
  85. package/es/vef-dynamic-icon/index.js +46 -2
  86. package/es/vef-dynamic-icon/props.js +6 -2
  87. package/es/vef-empty/index.js +37 -2
  88. package/es/vef-empty-placeholder/index.js +19 -5
  89. package/es/vef-error/error-icon.js +757 -2
  90. package/es/vef-error/index.js +48 -10
  91. package/es/vef-filter/components/action-buttons.js +119 -6
  92. package/es/vef-filter/components/advanced-filter.js +71 -9
  93. package/es/vef-filter/components/basic-filter.js +35 -5
  94. package/es/vef-filter/components/fields/index.js +19 -2
  95. package/es/vef-filter/components/fields/input-number.js +90 -2
  96. package/es/vef-filter/components/fields/input.js +67 -2
  97. package/es/vef-filter/components/fields/radio.js +109 -2
  98. package/es/vef-filter/components/fields/select.js +140 -2
  99. package/es/vef-filter/components/fields/tree-select.js +136 -2
  100. package/es/vef-filter/components/filter-field.js +19 -2
  101. package/es/vef-filter/components/filter-item.js +112 -2
  102. package/es/vef-filter/event.js +44 -2
  103. package/es/vef-filter/helper.js +15 -2
  104. package/es/vef-filter/hooks/use-action-handlers.js +70 -2
  105. package/es/vef-filter/hooks/use-computed-values.js +55 -2
  106. package/es/vef-filter/hooks/use-filter-context.js +18 -2
  107. package/es/vef-filter/hooks/use-filter-initialization.js +37 -2
  108. package/es/vef-filter/hooks/use-filter-instance.js +26 -2
  109. package/es/vef-filter/hooks/use-filter-items.js +23 -2
  110. package/es/vef-filter/hooks/use-filter-values-change.js +30 -2
  111. package/es/vef-filter/hooks/use-label-config.js +27 -2
  112. package/es/vef-filter/index.js +141 -3
  113. package/es/vef-filter/store.js +71 -2
  114. package/es/vef-flex/index.js +31 -2
  115. package/es/vef-float-button/index.js +49 -2
  116. package/es/vef-float-button-group/index.js +20 -2
  117. package/es/vef-form/components/fields/icon-select.js +65 -2
  118. package/es/vef-form/components/fields/index.js +25 -2
  119. package/es/vef-form/components/fields/input-number.js +123 -2
  120. package/es/vef-form/components/fields/input.js +132 -2
  121. package/es/vef-form/components/fields/password.js +115 -2
  122. package/es/vef-form/components/fields/radio.js +106 -2
  123. package/es/vef-form/components/fields/select.js +238 -2
  124. package/es/vef-form/components/fields/textarea.js +109 -2
  125. package/es/vef-form/components/fields/tree-select.js +234 -2
  126. package/es/vef-form/components/form-actions.js +58 -4
  127. package/es/vef-form/components/form-content.js +144 -3
  128. package/es/vef-form/components/form-field.js +22 -2
  129. package/es/vef-form/components/form-group.js +64 -4
  130. package/es/vef-form/components/form-hidden-item.js +36 -2
  131. package/es/vef-form/components/form-item.js +79 -2
  132. package/es/vef-form/components/form-row.js +98 -2
  133. package/es/vef-form/event.js +44 -2
  134. package/es/vef-form/helper.js +15 -2
  135. package/es/vef-form/hooks/use-action-handlers.js +130 -2
  136. package/es/vef-form/hooks/use-columns-layout.js +122 -2
  137. package/es/vef-form/hooks/use-computed-values.js +55 -2
  138. package/es/vef-form/hooks/use-form-context.js +14 -2
  139. package/es/vef-form/hooks/use-form-initialization.js +45 -2
  140. package/es/vef-form/hooks/use-form-instance.js +26 -2
  141. package/es/vef-form/hooks/use-form-values-change.js +30 -2
  142. package/es/vef-form/hooks/use-label-width.js +18 -2
  143. package/es/vef-form/index.js +174 -4
  144. package/es/vef-form/store.js +65 -2
  145. package/es/vef-form/validation-rules.js +286 -2
  146. package/es/vef-form-drawer/index.js +98 -2
  147. package/es/vef-form-modal/index.js +95 -2
  148. package/es/vef-generic-select/index.js +81 -2
  149. package/es/vef-grid/index.js +83 -7
  150. package/es/vef-grid/props.js +4 -2
  151. package/es/vef-grid-item/index.js +52 -2
  152. package/es/vef-icon/index.js +50 -2
  153. package/es/vef-icon-select/index.js +146 -12
  154. package/es/vef-input/hooks/use-input-instance.js +15 -2
  155. package/es/vef-input/index.js +64 -2
  156. package/es/vef-input-number/hooks/use-input-number-instance.js +13 -2
  157. package/es/vef-input-number/index.js +148 -2
  158. package/es/vef-layout/common-styles.js +10 -5
  159. package/es/vef-layout/components/content.js +13 -2
  160. package/es/vef-layout/components/font-size.js +68 -2
  161. package/es/vef-layout/components/fullscreen.js +23 -2
  162. package/es/vef-layout/components/header-action-icons.js +29 -7
  163. package/es/vef-layout/components/header-content.js +19 -2
  164. package/es/vef-layout/components/header.js +69 -7
  165. package/es/vef-layout/components/icon-boy.js +69 -2
  166. package/es/vef-layout/components/icon-girl.js +76 -2
  167. package/es/vef-layout/components/icon-menu-fold-left.js +23 -2
  168. package/es/vef-layout/components/icon-menu-unfold-left.js +23 -2
  169. package/es/vef-layout/components/menu-groups.js +123 -16
  170. package/es/vef-layout/components/message.js +11 -2
  171. package/es/vef-layout/components/search.js +11 -2
  172. package/es/vef-layout/components/sider.js +54 -6
  173. package/es/vef-layout/components/title.js +53 -9
  174. package/es/vef-layout/components/user-avatar.js +80 -10
  175. package/es/vef-layout/hooks/use-layout-context.js +10 -2
  176. package/es/vef-layout/index.js +33 -3
  177. package/es/vef-layout/logo.svg.js +4 -2
  178. package/es/vef-layout/store.js +16 -2
  179. package/es/vef-line-chart/index.js +38 -2
  180. package/es/vef-loading-placeholder/index.js +42 -6
  181. package/es/vef-login/index.js +152 -22
  182. package/es/vef-login/login-icon.js +668 -2
  183. package/es/vef-menu/index.js +77 -5
  184. package/es/vef-modal/components/action-button-wrapper.js +49 -2
  185. package/es/vef-modal/components/button-props.js +2 -1
  186. package/es/vef-modal/components/cancel-action-button.js +18 -2
  187. package/es/vef-modal/components/ok-action-button.js +20 -2
  188. package/es/vef-modal/context.js +15 -2
  189. package/es/vef-modal/index.js +239 -3
  190. package/es/vef-not-found/index.js +45 -10
  191. package/es/vef-not-found/not-found-icon.js +844 -2
  192. package/es/vef-page/index.js +87 -11
  193. package/es/vef-pagination/index.js +57 -2
  194. package/es/vef-pagination/props.js +13 -2
  195. package/es/vef-paragraph/index.js +89 -2
  196. package/es/vef-password/hooks/use-password-instance.js +13 -2
  197. package/es/vef-password/index.js +67 -2
  198. package/es/vef-pie-chart/index.js +70 -9
  199. package/es/vef-popconfirm/index.js +56 -2
  200. package/es/vef-popover/index.js +34 -2
  201. package/es/vef-radio/hooks/use-data-options.js +40 -2
  202. package/es/vef-radio/hooks/use-radio-instance.js +20 -2
  203. package/es/vef-radio/index.js +88 -4
  204. package/es/vef-rate/hooks/use-rate-instance.js +13 -2
  205. package/es/vef-rate/index.js +30 -2
  206. package/es/vef-responsive-container/index.js +54 -3
  207. package/es/vef-responsive-item/index.js +23 -3
  208. package/es/vef-ribbon/index.js +38 -2
  209. package/es/vef-row/index.js +12 -2
  210. package/es/vef-scroll-area/components/scrollbar.js +34 -8
  211. package/es/vef-scroll-area/index.js +69 -4
  212. package/es/vef-select/components/option.js +23 -4
  213. package/es/vef-select/hooks/use-data-options.js +47 -2
  214. package/es/vef-select/hooks/use-field-names.js +21 -2
  215. package/es/vef-select/hooks/use-render-label.js +23 -3
  216. package/es/vef-select/hooks/use-render-option.js +19 -2
  217. package/es/vef-select/hooks/use-select-instance.js +20 -2
  218. package/es/vef-select/index.js +100 -2
  219. package/es/vef-slider/hooks/use-slider-instance.js +13 -2
  220. package/es/vef-slider/index.js +34 -2
  221. package/es/vef-sortable-list/components/overlay-item.js +31 -3
  222. package/es/vef-sortable-list/components/sortable-item.js +75 -3
  223. package/es/vef-sortable-list/hooks/use-merged-items.js +21 -2
  224. package/es/vef-sortable-list/index.js +114 -2
  225. package/es/vef-space/index.js +25 -2
  226. package/es/vef-spin/index.js +12 -2
  227. package/es/vef-splitter/index.js +20 -2
  228. package/es/vef-splitter-panel/index.js +12 -2
  229. package/es/vef-status/index.js +37 -2
  230. package/es/vef-table/components/columns/bool.js +91 -2
  231. package/es/vef-table/components/columns/code.js +10 -2
  232. package/es/vef-table/components/columns/data-dictionary.js +92 -2
  233. package/es/vef-table/components/columns/enum.js +101 -2
  234. package/es/vef-table/components/columns/file.js +10 -2
  235. package/es/vef-table/components/columns/icon.js +10 -2
  236. package/es/vef-table/components/columns/id.js +82 -2
  237. package/es/vef-table/components/columns/image.js +11 -2
  238. package/es/vef-table/components/columns/index.js +33 -2
  239. package/es/vef-table/components/columns/markdown.js +10 -2
  240. package/es/vef-table/components/columns/number.js +83 -2
  241. package/es/vef-table/components/columns/render.js +28 -2
  242. package/es/vef-table/components/columns/rich-text.js +10 -2
  243. package/es/vef-table/components/columns/text.js +88 -2
  244. package/es/vef-table/components/columns-settings.js +195 -11
  245. package/es/vef-table/components/operation-buttons.js +230 -3
  246. package/es/vef-table/components/settings-icon.js +19 -4
  247. package/es/vef-table/components/table-footer.js +102 -4
  248. package/es/vef-table/helper.js +15 -2
  249. package/es/vef-table/hooks/use-computed-batch-buttons.js +33 -2
  250. package/es/vef-table/hooks/use-computed-columns.js +20 -2
  251. package/es/vef-table/hooks/use-computed-values.js +38 -2
  252. package/es/vef-table/hooks/use-data.js +57 -2
  253. package/es/vef-table/hooks/use-default-column-configs.js +27 -2
  254. package/es/vef-table/hooks/use-display-value.js +36 -2
  255. package/es/vef-table/hooks/use-helper-columns.js +67 -2
  256. package/es/vef-table/hooks/use-operation-column-width.js +50 -2
  257. package/es/vef-table/hooks/use-pagination-props.js +44 -2
  258. package/es/vef-table/hooks/use-row-props.js +39 -2
  259. package/es/vef-table/hooks/use-row-selection-config.js +112 -2
  260. package/es/vef-table/hooks/use-selected-rows.js +26 -2
  261. package/es/vef-table/hooks/use-table-columns.js +56 -2
  262. package/es/vef-table/hooks/use-table-context.js +21 -2
  263. package/es/vef-table/hooks/use-table-instance.js +15 -2
  264. package/es/vef-table/hooks/use-table-summary.js +42 -2
  265. package/es/vef-table/hooks/use-table-width.js +13 -2
  266. package/es/vef-table/index.js +227 -6
  267. package/es/vef-table/store.js +17 -2
  268. package/es/vef-tabs/index.js +25 -2
  269. package/es/vef-tag/index.js +28 -2
  270. package/es/vef-temporal-picker/helper.js +57 -2
  271. package/es/vef-temporal-picker/hooks/use-dayjs-value.js +18 -2
  272. package/es/vef-temporal-picker/hooks/use-temporal-limit.js +34 -2
  273. package/es/vef-temporal-picker/hooks/use-temporal-picker-instance.js +19 -2
  274. package/es/vef-temporal-picker/index.js +125 -2
  275. package/es/vef-temporal-range-picker/helper.js +57 -2
  276. package/es/vef-temporal-range-picker/hooks/use-dayjs-values.js +23 -2
  277. package/es/vef-temporal-range-picker/hooks/use-temporal-limit.js +34 -2
  278. package/es/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +19 -2
  279. package/es/vef-temporal-range-picker/index.js +128 -2
  280. package/es/vef-temporal-range-picker/props.js +4 -2
  281. package/es/vef-text/index.js +80 -2
  282. package/es/vef-textarea/hooks/use-textarea-instance.js +13 -2
  283. package/es/vef-textarea/index.js +67 -2
  284. package/es/vef-title/index.js +89 -7
  285. package/es/vef-tooltip/index.js +35 -2
  286. package/es/vef-tree-select/hooks/use-change-handler.js +33 -2
  287. package/es/vef-tree-select/hooks/use-data-options.js +45 -2
  288. package/es/vef-tree-select/hooks/use-tree-select-instance.js +20 -2
  289. package/es/vef-tree-select/index.js +89 -2
  290. package/es/vef-virtual-grid/index.js +107 -4
  291. package/es/vef-virtual-list/index.js +215 -5
  292. package/lib/index.cjs +186 -2
  293. package/lib/internal/base.css.cjs +8 -2
  294. package/lib/internal/chart.cjs +22 -2
  295. package/lib/internal/index.cjs +12 -2
  296. package/lib/internal/modern-normalize.css.cjs +8 -2
  297. package/lib/internal/utils.cjs +10 -2
  298. package/lib/vef-access-denied/access-denied-icon.cjs +932 -2
  299. package/lib/vef-access-denied/index.cjs +49 -10
  300. package/lib/vef-access-denied/props.cjs +4 -2
  301. package/lib/vef-action-buttons/index.cjs +79 -2
  302. package/lib/vef-action-buttons/props.cjs +4 -2
  303. package/lib/vef-approval-flow-editor/components/edge.cjs +87 -3
  304. package/lib/vef-approval-flow-editor/components/label-value.cjs +31 -9
  305. package/lib/vef-approval-flow-editor/components/node-content.cjs +49 -11
  306. package/lib/vef-approval-flow-editor/components/node-selector.cjs +37 -5
  307. package/lib/vef-approval-flow-editor/components/node-toolbar.cjs +25 -2
  308. package/lib/vef-approval-flow-editor/components/nodes/approval.cjs +28 -2
  309. package/lib/vef-approval-flow-editor/components/nodes/condition.cjs +28 -2
  310. package/lib/vef-approval-flow-editor/components/nodes/end.cjs +28 -2
  311. package/lib/vef-approval-flow-editor/components/nodes/handle.cjs +28 -2
  312. package/lib/vef-approval-flow-editor/components/nodes/index.cjs +21 -2
  313. package/lib/vef-approval-flow-editor/components/nodes/submit.cjs +28 -2
  314. package/lib/vef-approval-flow-editor/components/selector-content.cjs +52 -10
  315. package/lib/vef-approval-flow-editor/components/source-handle.cjs +44 -2
  316. package/lib/vef-approval-flow-editor/components/target-handle.cjs +13 -2
  317. package/lib/vef-approval-flow-editor/constants.cjs +227 -2
  318. package/lib/vef-approval-flow-editor/helper.cjs +90 -2
  319. package/lib/vef-approval-flow-editor/hooks/use-edges-interaction.cjs +29 -2
  320. package/lib/vef-approval-flow-editor/hooks/use-element-selection.cjs +28 -2
  321. package/lib/vef-approval-flow-editor/hooks/use-nodes-interaction.cjs +55 -2
  322. package/lib/vef-approval-flow-editor/index.cjs +79 -2
  323. package/lib/vef-approval-flow-editor/models/edge-node.cjs +25 -2
  324. package/lib/vef-approval-flow-editor/models/flow-node.cjs +114 -2
  325. package/lib/vef-approval-flow-editor/props.cjs +4 -2
  326. package/lib/vef-approval-flow-editor/store.cjs +22 -2
  327. package/lib/vef-approval-flow-editor/styles.cjs +25 -13
  328. package/lib/vef-approval-flow-editor/types.cjs +20 -2
  329. package/lib/vef-area-chart/index.cjs +45 -2
  330. package/lib/vef-area-chart/props.cjs +4 -2
  331. package/lib/vef-auto-sizer/index.cjs +10 -2
  332. package/lib/vef-auto-sizer/props.cjs +4 -2
  333. package/lib/vef-avatar/index.cjs +24 -2
  334. package/lib/vef-avatar/props.cjs +4 -2
  335. package/lib/vef-avatar-group/index.cjs +29 -2
  336. package/lib/vef-avatar-group/props.cjs +4 -2
  337. package/lib/vef-badge/index.cjs +51 -2
  338. package/lib/vef-badge/props.cjs +4 -2
  339. package/lib/vef-bar-chart/index.cjs +45 -2
  340. package/lib/vef-bar-chart/props.cjs +4 -2
  341. package/lib/vef-bool/hooks/use-bool-instance.cjs +38 -2
  342. package/lib/vef-bool/index.cjs +64 -2
  343. package/lib/vef-bool/props.cjs +4 -2
  344. package/lib/vef-breadcrumb/index.cjs +52 -2
  345. package/lib/vef-breadcrumb/props.cjs +4 -2
  346. package/lib/vef-button/components/base-button.cjs +77 -2
  347. package/lib/vef-button/index.cjs +155 -2
  348. package/lib/vef-button/props.cjs +4 -2
  349. package/lib/vef-card/index.cjs +29 -2
  350. package/lib/vef-card/props.cjs +4 -2
  351. package/lib/vef-card-meta/index.cjs +16 -2
  352. package/lib/vef-card-meta/props.cjs +4 -2
  353. package/lib/vef-chart-container/hooks/use-chart-container-context.cjs +18 -2
  354. package/lib/vef-chart-container/index.cjs +84 -10
  355. package/lib/vef-chart-container/props.cjs +4 -2
  356. package/lib/vef-chart-legend-content/index.cjs +48 -11
  357. package/lib/vef-chart-legend-content/props.cjs +4 -2
  358. package/lib/vef-chart-tooltip-content/index.cjs +89 -23
  359. package/lib/vef-chart-tooltip-content/props.cjs +4 -2
  360. package/lib/vef-checkbox/hooks/use-checkbox-instance.cjs +24 -2
  361. package/lib/vef-checkbox/hooks/use-data-options.cjs +44 -2
  362. package/lib/vef-checkbox/index.cjs +92 -4
  363. package/lib/vef-checkbox/props.cjs +4 -2
  364. package/lib/vef-col/index.cjs +15 -2
  365. package/lib/vef-col/props.cjs +4 -2
  366. package/lib/vef-color-picker/index.cjs +50 -2
  367. package/lib/vef-color-picker/props.cjs +4 -2
  368. package/lib/vef-compact/index.cjs +19 -2
  369. package/lib/vef-compact/props.cjs +4 -2
  370. package/lib/vef-config-provider/global-style.cjs +28 -16
  371. package/lib/vef-config-provider/hooks/use-ui-config.cjs +130 -2
  372. package/lib/vef-config-provider/index.cjs +125 -4
  373. package/lib/vef-config-provider/props.cjs +4 -2
  374. package/lib/vef-config-provider/store.cjs +27 -2
  375. package/lib/vef-container/index.cjs +22 -2
  376. package/lib/vef-container/props.cjs +4 -2
  377. package/lib/vef-crud-page/components/crud-actions.cjs +36 -2
  378. package/lib/vef-crud-page/components/crud-filter.cjs +58 -2
  379. package/lib/vef-crud-page/components/crud-footer.cjs +120 -4
  380. package/lib/vef-crud-page/components/crud-form-modal.cjs +57 -2
  381. package/lib/vef-crud-page/components/crud-header.cjs +33 -2
  382. package/lib/vef-crud-page/components/crud-table.cjs +80 -2
  383. package/lib/vef-crud-page/hooks/use-action-buttons.cjs +41 -2
  384. package/lib/vef-crud-page/hooks/use-crud-context.cjs +24 -2
  385. package/lib/vef-crud-page/hooks/use-crud-schema.cjs +120 -2
  386. package/lib/vef-crud-page/hooks/use-operation-buttons.cjs +64 -2
  387. package/lib/vef-crud-page/index.cjs +154 -2
  388. package/lib/vef-crud-page/props.cjs +4 -2
  389. package/lib/vef-crud-page/store.cjs +148 -2
  390. package/lib/vef-crud-page/types.cjs +4 -2
  391. package/lib/vef-data-grid/index.cjs +89 -2
  392. package/lib/vef-data-grid/props.cjs +4 -2
  393. package/lib/vef-data-table/index.cjs +13 -2
  394. package/lib/vef-data-table/props.cjs +4 -2
  395. package/lib/vef-divider/index.cjs +28 -2
  396. package/lib/vef-divider/props.cjs +4 -2
  397. package/lib/vef-drawer/components/action-button-wrapper.cjs +53 -2
  398. package/lib/vef-drawer/components/button-props.cjs +4 -2
  399. package/lib/vef-drawer/components/cancel-action-button.cjs +25 -2
  400. package/lib/vef-drawer/components/ok-action-button.cjs +24 -2
  401. package/lib/vef-drawer/context.cjs +21 -2
  402. package/lib/vef-drawer/index.cjs +159 -4
  403. package/lib/vef-drawer/props.cjs +4 -2
  404. package/lib/vef-dropdown/index.cjs +96 -2
  405. package/lib/vef-dropdown/props.cjs +4 -2
  406. package/lib/vef-dynamic-icon/index.cjs +50 -2
  407. package/lib/vef-dynamic-icon/props.cjs +10 -2
  408. package/lib/vef-empty/index.cjs +41 -2
  409. package/lib/vef-empty/props.cjs +4 -2
  410. package/lib/vef-empty-placeholder/index.cjs +23 -5
  411. package/lib/vef-empty-placeholder/props.cjs +4 -2
  412. package/lib/vef-error/error-icon.cjs +761 -2
  413. package/lib/vef-error/index.cjs +52 -10
  414. package/lib/vef-error/props.cjs +4 -2
  415. package/lib/vef-filter/components/action-buttons.cjs +123 -6
  416. package/lib/vef-filter/components/advanced-filter.cjs +75 -9
  417. package/lib/vef-filter/components/basic-filter.cjs +39 -5
  418. package/lib/vef-filter/components/fields/index.cjs +23 -2
  419. package/lib/vef-filter/components/fields/input-number.cjs +94 -2
  420. package/lib/vef-filter/components/fields/input.cjs +71 -2
  421. package/lib/vef-filter/components/fields/props.cjs +4 -2
  422. package/lib/vef-filter/components/fields/radio.cjs +113 -2
  423. package/lib/vef-filter/components/fields/select.cjs +144 -2
  424. package/lib/vef-filter/components/fields/tree-select.cjs +140 -2
  425. package/lib/vef-filter/components/filter-field.cjs +23 -2
  426. package/lib/vef-filter/components/filter-item.cjs +116 -2
  427. package/lib/vef-filter/event.cjs +48 -2
  428. package/lib/vef-filter/helper.cjs +19 -2
  429. package/lib/vef-filter/hooks/use-action-handlers.cjs +74 -2
  430. package/lib/vef-filter/hooks/use-computed-values.cjs +59 -2
  431. package/lib/vef-filter/hooks/use-filter-context.cjs +24 -2
  432. package/lib/vef-filter/hooks/use-filter-initialization.cjs +41 -2
  433. package/lib/vef-filter/hooks/use-filter-instance.cjs +30 -2
  434. package/lib/vef-filter/hooks/use-filter-items.cjs +27 -2
  435. package/lib/vef-filter/hooks/use-filter-values-change.cjs +34 -2
  436. package/lib/vef-filter/hooks/use-label-config.cjs +31 -2
  437. package/lib/vef-filter/index.cjs +145 -3
  438. package/lib/vef-filter/props.cjs +4 -2
  439. package/lib/vef-filter/store.cjs +77 -2
  440. package/lib/vef-filter/types.cjs +4 -2
  441. package/lib/vef-flex/index.cjs +35 -2
  442. package/lib/vef-flex/props.cjs +4 -2
  443. package/lib/vef-float-button/index.cjs +53 -2
  444. package/lib/vef-float-button/props.cjs +4 -2
  445. package/lib/vef-float-button-group/index.cjs +24 -2
  446. package/lib/vef-float-button-group/props.cjs +4 -2
  447. package/lib/vef-form/components/fields/icon-select.cjs +69 -2
  448. package/lib/vef-form/components/fields/index.cjs +29 -2
  449. package/lib/vef-form/components/fields/input-number.cjs +127 -2
  450. package/lib/vef-form/components/fields/input.cjs +136 -2
  451. package/lib/vef-form/components/fields/password.cjs +119 -2
  452. package/lib/vef-form/components/fields/props.cjs +4 -2
  453. package/lib/vef-form/components/fields/radio.cjs +110 -2
  454. package/lib/vef-form/components/fields/select.cjs +242 -2
  455. package/lib/vef-form/components/fields/textarea.cjs +113 -2
  456. package/lib/vef-form/components/fields/tree-select.cjs +238 -2
  457. package/lib/vef-form/components/form-actions.cjs +62 -4
  458. package/lib/vef-form/components/form-content.cjs +148 -3
  459. package/lib/vef-form/components/form-field.cjs +26 -2
  460. package/lib/vef-form/components/form-group.cjs +68 -4
  461. package/lib/vef-form/components/form-hidden-item.cjs +40 -2
  462. package/lib/vef-form/components/form-item.cjs +83 -2
  463. package/lib/vef-form/components/form-row.cjs +102 -2
  464. package/lib/vef-form/event.cjs +48 -2
  465. package/lib/vef-form/helper.cjs +19 -2
  466. package/lib/vef-form/hooks/use-action-handlers.cjs +134 -2
  467. package/lib/vef-form/hooks/use-columns-layout.cjs +126 -2
  468. package/lib/vef-form/hooks/use-computed-values.cjs +59 -2
  469. package/lib/vef-form/hooks/use-form-context.cjs +20 -2
  470. package/lib/vef-form/hooks/use-form-initialization.cjs +49 -2
  471. package/lib/vef-form/hooks/use-form-instance.cjs +30 -2
  472. package/lib/vef-form/hooks/use-form-values-change.cjs +34 -2
  473. package/lib/vef-form/hooks/use-label-width.cjs +22 -2
  474. package/lib/vef-form/index.cjs +178 -4
  475. package/lib/vef-form/props.cjs +4 -2
  476. package/lib/vef-form/store.cjs +71 -2
  477. package/lib/vef-form/types.cjs +4 -2
  478. package/lib/vef-form/validation-rules.cjs +312 -2
  479. package/lib/vef-form-drawer/index.cjs +102 -2
  480. package/lib/vef-form-drawer/props.cjs +4 -2
  481. package/lib/vef-form-modal/index.cjs +99 -2
  482. package/lib/vef-form-modal/props.cjs +4 -2
  483. package/lib/vef-generic-select/index.cjs +85 -2
  484. package/lib/vef-generic-select/props.cjs +4 -2
  485. package/lib/vef-grid/index.cjs +87 -7
  486. package/lib/vef-grid/props.cjs +8 -2
  487. package/lib/vef-grid-item/index.cjs +56 -2
  488. package/lib/vef-grid-item/props.cjs +4 -2
  489. package/lib/vef-icon/index.cjs +54 -2
  490. package/lib/vef-icon/props.cjs +4 -2
  491. package/lib/vef-icon-select/index.cjs +150 -12
  492. package/lib/vef-icon-select/props.cjs +4 -2
  493. package/lib/vef-input/hooks/use-input-instance.cjs +19 -2
  494. package/lib/vef-input/index.cjs +68 -2
  495. package/lib/vef-input/props.cjs +4 -2
  496. package/lib/vef-input-number/hooks/use-input-number-instance.cjs +17 -2
  497. package/lib/vef-input-number/index.cjs +152 -2
  498. package/lib/vef-input-number/props.cjs +4 -2
  499. package/lib/vef-layout/common-styles.cjs +14 -5
  500. package/lib/vef-layout/components/content.cjs +17 -2
  501. package/lib/vef-layout/components/font-size.cjs +72 -2
  502. package/lib/vef-layout/components/fullscreen.cjs +27 -2
  503. package/lib/vef-layout/components/header-action-icons.cjs +33 -7
  504. package/lib/vef-layout/components/header-content.cjs +23 -2
  505. package/lib/vef-layout/components/header.cjs +73 -7
  506. package/lib/vef-layout/components/icon-boy.cjs +73 -2
  507. package/lib/vef-layout/components/icon-girl.cjs +80 -2
  508. package/lib/vef-layout/components/icon-menu-fold-left.cjs +27 -2
  509. package/lib/vef-layout/components/icon-menu-unfold-left.cjs +27 -2
  510. package/lib/vef-layout/components/menu-groups.cjs +127 -16
  511. package/lib/vef-layout/components/message.cjs +15 -2
  512. package/lib/vef-layout/components/search.cjs +15 -2
  513. package/lib/vef-layout/components/sider.cjs +58 -6
  514. package/lib/vef-layout/components/title.cjs +57 -9
  515. package/lib/vef-layout/components/user-avatar.cjs +84 -10
  516. package/lib/vef-layout/hooks/use-layout-context.cjs +16 -2
  517. package/lib/vef-layout/index.cjs +37 -3
  518. package/lib/vef-layout/logo.svg.cjs +8 -2
  519. package/lib/vef-layout/props.cjs +4 -2
  520. package/lib/vef-layout/store.cjs +22 -2
  521. package/lib/vef-line-chart/index.cjs +42 -2
  522. package/lib/vef-line-chart/props.cjs +4 -2
  523. package/lib/vef-loading-placeholder/index.cjs +46 -6
  524. package/lib/vef-loading-placeholder/props.cjs +4 -2
  525. package/lib/vef-login/index.cjs +156 -22
  526. package/lib/vef-login/login-icon.cjs +672 -2
  527. package/lib/vef-login/props.cjs +4 -2
  528. package/lib/vef-menu/index.cjs +81 -5
  529. package/lib/vef-menu/props.cjs +4 -2
  530. package/lib/vef-modal/components/action-button-wrapper.cjs +53 -2
  531. package/lib/vef-modal/components/button-props.cjs +4 -2
  532. package/lib/vef-modal/components/cancel-action-button.cjs +22 -2
  533. package/lib/vef-modal/components/ok-action-button.cjs +24 -2
  534. package/lib/vef-modal/context.cjs +21 -2
  535. package/lib/vef-modal/index.cjs +244 -3
  536. package/lib/vef-modal/props.cjs +4 -2
  537. package/lib/vef-not-found/index.cjs +49 -10
  538. package/lib/vef-not-found/not-found-icon.cjs +848 -2
  539. package/lib/vef-not-found/props.cjs +4 -2
  540. package/lib/vef-page/index.cjs +91 -11
  541. package/lib/vef-page/props.cjs +4 -2
  542. package/lib/vef-pagination/index.cjs +61 -2
  543. package/lib/vef-pagination/props.cjs +17 -2
  544. package/lib/vef-paragraph/index.cjs +93 -2
  545. package/lib/vef-paragraph/props.cjs +4 -2
  546. package/lib/vef-password/hooks/use-password-instance.cjs +17 -2
  547. package/lib/vef-password/index.cjs +71 -2
  548. package/lib/vef-password/props.cjs +4 -2
  549. package/lib/vef-pie-chart/index.cjs +74 -9
  550. package/lib/vef-pie-chart/props.cjs +4 -2
  551. package/lib/vef-popconfirm/index.cjs +60 -2
  552. package/lib/vef-popconfirm/props.cjs +4 -2
  553. package/lib/vef-popover/index.cjs +38 -2
  554. package/lib/vef-popover/props.cjs +4 -2
  555. package/lib/vef-radio/hooks/use-data-options.cjs +44 -2
  556. package/lib/vef-radio/hooks/use-radio-instance.cjs +24 -2
  557. package/lib/vef-radio/index.cjs +92 -4
  558. package/lib/vef-radio/props.cjs +4 -2
  559. package/lib/vef-rate/hooks/use-rate-instance.cjs +17 -2
  560. package/lib/vef-rate/index.cjs +34 -2
  561. package/lib/vef-rate/props.cjs +4 -2
  562. package/lib/vef-responsive-container/index.cjs +58 -3
  563. package/lib/vef-responsive-container/props.cjs +4 -2
  564. package/lib/vef-responsive-item/index.cjs +27 -3
  565. package/lib/vef-responsive-item/props.cjs +4 -2
  566. package/lib/vef-ribbon/index.cjs +42 -2
  567. package/lib/vef-ribbon/props.cjs +4 -2
  568. package/lib/vef-row/index.cjs +16 -2
  569. package/lib/vef-row/props.cjs +4 -2
  570. package/lib/vef-scroll-area/components/scrollbar.cjs +38 -8
  571. package/lib/vef-scroll-area/index.cjs +73 -4
  572. package/lib/vef-scroll-area/props.cjs +4 -2
  573. package/lib/vef-select/components/option.cjs +27 -4
  574. package/lib/vef-select/hooks/use-data-options.cjs +51 -2
  575. package/lib/vef-select/hooks/use-field-names.cjs +25 -2
  576. package/lib/vef-select/hooks/use-render-label.cjs +27 -3
  577. package/lib/vef-select/hooks/use-render-option.cjs +23 -2
  578. package/lib/vef-select/hooks/use-select-instance.cjs +24 -2
  579. package/lib/vef-select/index.cjs +104 -2
  580. package/lib/vef-select/props.cjs +4 -2
  581. package/lib/vef-slider/hooks/use-slider-instance.cjs +17 -2
  582. package/lib/vef-slider/index.cjs +38 -2
  583. package/lib/vef-slider/props.cjs +4 -2
  584. package/lib/vef-sortable-list/components/overlay-item.cjs +35 -3
  585. package/lib/vef-sortable-list/components/sortable-item.cjs +79 -3
  586. package/lib/vef-sortable-list/hooks/use-merged-items.cjs +25 -2
  587. package/lib/vef-sortable-list/index.cjs +118 -2
  588. package/lib/vef-sortable-list/props.cjs +4 -2
  589. package/lib/vef-space/index.cjs +29 -2
  590. package/lib/vef-space/props.cjs +4 -2
  591. package/lib/vef-spin/index.cjs +16 -2
  592. package/lib/vef-spin/props.cjs +4 -2
  593. package/lib/vef-splitter/index.cjs +24 -2
  594. package/lib/vef-splitter/props.cjs +4 -2
  595. package/lib/vef-splitter-panel/index.cjs +16 -2
  596. package/lib/vef-splitter-panel/props.cjs +4 -2
  597. package/lib/vef-status/index.cjs +41 -2
  598. package/lib/vef-status/props.cjs +4 -2
  599. package/lib/vef-table/components/columns/bool.cjs +95 -2
  600. package/lib/vef-table/components/columns/code.cjs +14 -2
  601. package/lib/vef-table/components/columns/data-dictionary.cjs +96 -2
  602. package/lib/vef-table/components/columns/enum.cjs +105 -2
  603. package/lib/vef-table/components/columns/file.cjs +14 -2
  604. package/lib/vef-table/components/columns/icon.cjs +14 -2
  605. package/lib/vef-table/components/columns/id.cjs +86 -2
  606. package/lib/vef-table/components/columns/image.cjs +15 -2
  607. package/lib/vef-table/components/columns/index.cjs +37 -2
  608. package/lib/vef-table/components/columns/markdown.cjs +14 -2
  609. package/lib/vef-table/components/columns/number.cjs +87 -2
  610. package/lib/vef-table/components/columns/props.cjs +4 -2
  611. package/lib/vef-table/components/columns/render.cjs +32 -2
  612. package/lib/vef-table/components/columns/rich-text.cjs +14 -2
  613. package/lib/vef-table/components/columns/text.cjs +92 -2
  614. package/lib/vef-table/components/columns-settings.cjs +199 -11
  615. package/lib/vef-table/components/operation-buttons.cjs +234 -3
  616. package/lib/vef-table/components/settings-icon.cjs +23 -4
  617. package/lib/vef-table/components/table-footer.cjs +106 -4
  618. package/lib/vef-table/helper.cjs +19 -2
  619. package/lib/vef-table/hooks/use-computed-batch-buttons.cjs +37 -2
  620. package/lib/vef-table/hooks/use-computed-columns.cjs +24 -2
  621. package/lib/vef-table/hooks/use-computed-values.cjs +42 -2
  622. package/lib/vef-table/hooks/use-data.cjs +61 -2
  623. package/lib/vef-table/hooks/use-default-column-configs.cjs +31 -2
  624. package/lib/vef-table/hooks/use-display-value.cjs +40 -2
  625. package/lib/vef-table/hooks/use-helper-columns.cjs +71 -2
  626. package/lib/vef-table/hooks/use-operation-column-width.cjs +54 -2
  627. package/lib/vef-table/hooks/use-pagination-props.cjs +48 -2
  628. package/lib/vef-table/hooks/use-row-props.cjs +43 -2
  629. package/lib/vef-table/hooks/use-row-selection-config.cjs +116 -2
  630. package/lib/vef-table/hooks/use-selected-rows.cjs +30 -2
  631. package/lib/vef-table/hooks/use-table-columns.cjs +60 -2
  632. package/lib/vef-table/hooks/use-table-context.cjs +27 -2
  633. package/lib/vef-table/hooks/use-table-instance.cjs +19 -2
  634. package/lib/vef-table/hooks/use-table-summary.cjs +46 -2
  635. package/lib/vef-table/hooks/use-table-width.cjs +17 -2
  636. package/lib/vef-table/index.cjs +231 -6
  637. package/lib/vef-table/props.cjs +4 -2
  638. package/lib/vef-table/store.cjs +23 -2
  639. package/lib/vef-table/types.cjs +4 -2
  640. package/lib/vef-tabs/index.cjs +29 -2
  641. package/lib/vef-tabs/props.cjs +4 -2
  642. package/lib/vef-tag/index.cjs +32 -2
  643. package/lib/vef-tag/props.cjs +4 -2
  644. package/lib/vef-temporal-picker/helper.cjs +61 -2
  645. package/lib/vef-temporal-picker/hooks/use-dayjs-value.cjs +22 -2
  646. package/lib/vef-temporal-picker/hooks/use-temporal-limit.cjs +38 -2
  647. package/lib/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +23 -2
  648. package/lib/vef-temporal-picker/index.cjs +129 -2
  649. package/lib/vef-temporal-picker/props.cjs +4 -2
  650. package/lib/vef-temporal-range-picker/helper.cjs +61 -2
  651. package/lib/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +27 -2
  652. package/lib/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +38 -2
  653. package/lib/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +23 -2
  654. package/lib/vef-temporal-range-picker/index.cjs +132 -2
  655. package/lib/vef-temporal-range-picker/props.cjs +8 -2
  656. package/lib/vef-text/index.cjs +84 -2
  657. package/lib/vef-text/props.cjs +4 -2
  658. package/lib/vef-textarea/hooks/use-textarea-instance.cjs +17 -2
  659. package/lib/vef-textarea/index.cjs +71 -2
  660. package/lib/vef-textarea/props.cjs +4 -2
  661. package/lib/vef-title/index.cjs +93 -7
  662. package/lib/vef-title/props.cjs +4 -2
  663. package/lib/vef-tooltip/index.cjs +39 -2
  664. package/lib/vef-tooltip/props.cjs +4 -2
  665. package/lib/vef-tree-select/hooks/use-change-handler.cjs +37 -2
  666. package/lib/vef-tree-select/hooks/use-data-options.cjs +49 -2
  667. package/lib/vef-tree-select/hooks/use-tree-select-instance.cjs +24 -2
  668. package/lib/vef-tree-select/index.cjs +93 -2
  669. package/lib/vef-tree-select/props.cjs +4 -2
  670. package/lib/vef-virtual-grid/index.cjs +111 -4
  671. package/lib/vef-virtual-grid/props.cjs +4 -2
  672. package/lib/vef-virtual-list/index.cjs +219 -5
  673. package/lib/vef-virtual-list/props.cjs +4 -2
  674. package/package.json +4 -4
@@ -1,3 +1,81 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const c=require("@emotion/react/jsx-runtime");const a=require("react").memo((function SvgIconGirl(a){return c.jsxs("svg",{className:"icon-girl_svg__icon",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...a,children:[c.jsx("path",{d:"M512.173.117C229.338.117.237 229.337.237 512.052c0 174.128 86.931 327.934 219.773 420.418v-.004l-.004-.004.091-.3a293 293 0 0 1 10.949-31.267l.191-.471a276 276 0 0 1 3.633-8.245 275 275 0 0 1 5.058-10.544c.633-1.25 1.292-2.488 1.941-3.725a266 266 0 0 1 3.708-6.895c.717-1.279 1.48-2.52 2.217-3.787a280 280 0 0 1 6.595-10.736c1.133-1.758 2.258-3.525 3.433-5.25 1.108-1.637 2.258-3.232 3.395-4.84a285 285 0 0 1 7.282-9.808c.83-1.058 1.65-2.12 2.492-3.17l.266-341.449h.067c-.075-2.437-.183-4.861-.183-7.32 0-.437.029-.866.033-1.303C268.366 329.6 412.07 236.82 512.227 243.623c102.15-6.928 249.827 89.43 241.324 248.352l-.234.13.263 341.527c.646.809 1.287 1.63 1.925 2.446a266 266 0 0 1 4.078 5.34c1.104 1.476 2.18 2.98 3.254 4.48 1.296 1.808 2.587 3.612 3.837 5.457 1.117 1.646 2.183 3.329 3.27 5.004a278 278 0 0 1 5.612 9.049c1.163 1.958 2.333 3.903 3.446 5.89.987 1.763 1.929 3.558 2.879 5.341a294 294 0 0 1 3.028 5.812 290 290 0 0 1 5.6 11.836c.72 1.608 1.45 3.208 2.137 4.833a285 285 0 0 1 3.941 9.803c.237.62.496 1.229.733 1.85 1.5 4.02 2.9 8.099 4.237 12.219.334 1.029.638 2.07.958 3.104.65 2.083 1.325 4.145 1.934 6.253a1 1 0 0 1-.084.054v.004c132.8-92.488 219.735-246.264 219.735-420.35.004-282.72-229.213-511.94-511.927-511.94",fill:"#F4B3B3"}),c.jsx("path",{d:"M276.207 827.129a278 278 0 0 1 8.065-9.061c.23-.25.471-.48.7-.725a278 278 0 0 1 8.074-8.22c.838-.812 1.696-1.612 2.542-2.416a265 265 0 0 1 9.54-8.687c.404-.35.796-.708 1.204-1.058v.054c23.551-20.185 50.69-36.629 80.79-48.69a313 313 0 0 1 24.222-8.557c.717-.22 1.425-.45 2.146-.666a327 327 0 0 1 26.884-6.833c.995-.212 2.004-.396 3.008-.596a344 344 0 0 1 14.64-2.608 356 356 0 0 1 10.323-1.437c1.27-.158 2.533-.337 3.816-.483a362 362 0 0 1 14.148-1.354h26.035v-.117l-.175.004c-130.663 0-236.962-103.987-240.845-233.712h-.067l-.266 341.449c.737-.917 1.5-1.813 2.25-2.717.987-1.183 1.962-2.391 2.966-3.57",fill:"#FECF77"}),c.jsx("path",{d:"m512.173 725.688.175-.005c130.48-.091 236.624-103.878 240.661-233.4-64.013 39.254-230.504-18.197-280.19-105.62-46.423 81.357-125.063 153.36-201.437 105.317-.158-2.913-.15-5.754-.204-8.624 0 .433-.033.866-.033 1.304 0 2.454.112 4.882.183 7.32 3.879 129.72 110.182 233.708 240.845 233.708",fill:"#FCE9EA"}),c.jsx("path",{d:"M472.815 386.664c49.686 87.422 216.177 144.869 280.19 105.62-4.037 129.525-110.178 233.308-240.661 233.4v.116h25.688c4.754.354 9.453.82 14.123 1.35 1.33.154 2.646.337 3.967.5 3.387.429 6.753.891 10.094 1.408a336 336 0 0 1 14.382 2.55c1.191.237 2.387.454 3.57.708a326 326 0 0 1 26.342 6.682c1.155.346 2.292.721 3.438 1.08a313 313 0 0 1 13.315 4.461 314 314 0 0 1 8.76 3.32c30.026 11.874 57.127 28.08 80.687 48.007v-.07c.541.454 1.054.937 1.591 1.395a292 292 0 0 1 4.683 4.112 289 289 0 0 1 4.403 4.066c1.546 1.45 3.092 2.887 4.6 4.37 1.441 1.417 2.837 2.871 4.245 4.32a272 272 0 0 1 7.712 8.254c1.295 1.441 2.6 2.866 3.862 4.337 1.45 1.687 2.853 3.416 4.262 5.14.5.613 1.02 1.217 1.52 1.838l-.262-341.528.233-.129c8.503-158.921-139.174-255.28-241.324-248.352h.059c8.349 29.563-8.303 88.41-39.479 143.045",fill:"#FCBA6F"}),c.jsx("path",{d:"M790.513 894.287c.72 1.608 1.445 3.208 2.137 4.833-.687-1.625-1.416-3.225-2.137-4.833m-27.672-48.39c1.296 1.809 2.587 3.613 3.837 5.458-1.245-1.845-2.541-3.65-3.837-5.458m16.165 25.401c.987 1.763 1.929 3.558 2.879 5.341-.95-1.787-1.888-3.578-2.88-5.34m17.585 37.625c.238.62.496 1.229.733 1.85-.237-.621-.495-1.23-.733-1.85m-79.881-113.06c-23.56-19.928-50.66-36.138-80.686-48.007l.737.287V882.16H385.46V748.989c.55-.225 1.112-.438 1.666-.658-30.104 12.06-57.238 28.504-80.79 48.69v183.818a512 512 0 0 1-86.322-48.37v.005c82.844 57.672 183.527 91.518 292.159 91.518 81.456 0 158.447-19.06 226.817-52.91a509 509 0 0 1-22.28 10.294zm-458.888 55.38c1.108-1.638 2.258-3.233 3.395-4.841-1.137 1.608-2.287 3.207-3.395 4.84m481.376 119.73a511.4 511.4 0 0 0 65.176-38.57v-.004a512 512 0 0 1-65.176 38.574m62.36-47.981c.333 1.029.637 2.07.957 3.104-.316-1.034-.62-2.075-.958-3.104m-559.684-45.078c1.216-2.316 2.433-4.624 3.708-6.895-1.28 2.267-2.492 4.579-3.708 6.895m43.098-60.567c-.229.246-.47.475-.7.725.23-.25.471-.483.7-.725m8.074-8.22c.838-.812 1.696-1.612 2.542-2.416-.846.804-1.704 1.604-2.542 2.416m-16.84 18.002c-1.003 1.179-1.978 2.387-2.961 3.579.983-1.192 1.958-2.4 2.962-3.579m164.172-94.85c.995-.213 2.004-.396 3.008-.596-1 .2-2.013.383-3.008.595m27.967-4.642c1.27-.158 2.533-.337 3.816-.483-1.283.146-2.545.325-3.816.483m-56.997 12.136c.717-.22 1.425-.45 2.146-.666-.721.216-1.43.45-2.146.666m316.04 65.596c1.54 1.45 3.09 2.887 4.599 4.37-1.508-1.483-3.054-2.924-4.6-4.37M610.514 739c1.154.345 2.295.72 3.437 1.078-1.146-.358-2.283-.733-3.437-1.079m-58.36-11.849c1.33.154 2.646.337 3.967.5-1.321-.163-2.633-.346-3.967-.5m28.443 4.458c1.191.237 2.387.454 3.57.708-1.179-.25-2.379-.47-3.57-.708M752.063 831.79c-1.412-1.725-2.816-3.454-4.261-5.141 1.445 1.687 2.85 3.416 4.261 5.14",fill:"#A0D9F6"}),c.jsx("path",{d:"M623.226 743.106a322 322 0 0 0-9.274-3.033c-1.142-.358-2.283-.733-3.437-1.079a330 330 0 0 0-26.343-6.682c-1.183-.254-2.379-.471-3.57-.708a323 323 0 0 0-14.382-2.55 372 372 0 0 0-10.094-1.408c-1.321-.163-2.637-.346-3.966-.5a369 369 0 0 0-14.124-1.35h-51.722a362 362 0 0 0-14.149 1.354c-1.279.146-2.54.325-3.816.483a356 356 0 0 0-14.373 2.092q-5.336.899-10.59 1.954c-1 .2-2.008.383-3.008.595a327 327 0 0 0-26.884 6.833c-.721.216-1.43.446-2.146.666a322 322 0 0 0-13.548 4.508 313 313 0 0 0-10.674 4.05c-.554.22-1.116.433-1.666.658v133.17H636.76V748.144l-.737-.287a322 322 0 0 0-12.798-4.75M512.052 849.093a15.231 15.231 0 1 1-.004-30.467 15.231 15.231 0 0 1 .004 30.467m0-55.151a15.236 15.236 0 1 1 0-30.476 15.236 15.236 0 0 1 0 30.476m-205.72 3.078v-.054c-.408.35-.8.708-1.204 1.058a272 272 0 0 0-9.54 8.687c-.846.804-1.704 1.604-2.542 2.416a278 278 0 0 0-8.074 8.22c-.229.246-.47.475-.7.725a278 278 0 0 0-8.065 9.061c-1.004 1.18-1.98 2.387-2.962 3.579-.75.908-1.513 1.804-2.25 2.716-.842 1.05-1.662 2.112-2.491 3.17a285 285 0 0 0-7.283 9.808c-1.141 1.608-2.291 3.208-3.395 4.84-1.175 1.726-2.296 3.492-3.433 5.25a278 278 0 0 0-6.595 10.736c-.737 1.267-1.496 2.512-2.216 3.787-1.275 2.27-2.492 4.583-3.708 6.895-.65 1.238-1.304 2.475-1.942 3.725a280 280 0 0 0-3.595 7.37c-.496 1.054-.975 2.112-1.462 3.174a287 287 0 0 0-3.633 8.245l-.192.47a292 292 0 0 0-10.949 31.268c-.029.1-.066.2-.091.3l.004.004a512 512 0 0 0 86.322 48.369V797.02zm498.12 135.33c-.608-2.109-1.282-4.171-1.932-6.254-.321-1.034-.625-2.075-.959-3.104a289 289 0 0 0-4.237-12.22c-.237-.62-.495-1.228-.733-1.85a297 297 0 0 0-3.941-9.802c-.692-1.629-1.416-3.225-2.137-4.833a265 265 0 0 0-8.628-17.648c-.954-1.787-1.892-3.578-2.88-5.34-1.116-1.992-2.282-3.933-3.444-5.891a278 278 0 0 0-5.612-9.05c-1.088-1.674-2.158-3.361-3.27-5.003a262 262 0 0 0-3.838-5.458 254 254 0 0 0-7.332-9.82 276 276 0 0 0-1.925-2.445c-.5-.62-1.02-1.224-1.52-1.837-1.413-1.725-2.817-3.454-4.262-5.14-1.263-1.472-2.567-2.896-3.863-4.338a268 268 0 0 0-7.711-8.253c-1.408-1.45-2.804-2.904-4.245-4.32-1.504-1.48-3.054-2.92-4.6-4.37a314 314 0 0 0-4.403-4.067 292 292 0 0 0-4.683-4.112c-.538-.458-1.05-.941-1.592-1.395v185.576a509 509 0 0 0 22.49-10.394 512.5 512.5 0 0 0 65.174-38.575z",fill:"#FEFEFE"}),c.jsx("path",{d:"M496.81600000000003 778.71a15.236 15.236 0 1 0 30.472 0 15.236 15.236 0 1 0-30.472 0M496.821 833.857a15.231 15.231 0 1 0 30.462 0 15.231 15.231 0 1 0-30.462 0",fill:"#A0D9F6"}),c.jsx("path",{d:"M271.378 491.975c76.374 48.044 155.014-23.959 201.437-105.315 31.171-54.631 47.823-113.478 39.475-143.037h-.059c-100.162-6.799-243.865 85.981-241.053 239.729.05 2.87.046 5.715.2 8.623",fill:"#FECF77"})]})}));exports.default=a;
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const react = require('react');
8
+
9
+ function SvgIconGirl(props) {
10
+ return /* @__PURE__ */ jsxRuntime.jsxs(
11
+ "svg",
12
+ {
13
+ className: "icon-girl_svg__icon",
14
+ viewBox: "0 0 1024 1024",
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ ...props,
17
+ children: [
18
+ /* @__PURE__ */ jsxRuntime.jsx(
19
+ "path",
20
+ {
21
+ d: "M512.173.117C229.338.117.237 229.337.237 512.052c0 174.128 86.931 327.934 219.773 420.418v-.004l-.004-.004.091-.3a293 293 0 0 1 10.949-31.267l.191-.471a276 276 0 0 1 3.633-8.245 275 275 0 0 1 5.058-10.544c.633-1.25 1.292-2.488 1.941-3.725a266 266 0 0 1 3.708-6.895c.717-1.279 1.48-2.52 2.217-3.787a280 280 0 0 1 6.595-10.736c1.133-1.758 2.258-3.525 3.433-5.25 1.108-1.637 2.258-3.232 3.395-4.84a285 285 0 0 1 7.282-9.808c.83-1.058 1.65-2.12 2.492-3.17l.266-341.449h.067c-.075-2.437-.183-4.861-.183-7.32 0-.437.029-.866.033-1.303C268.366 329.6 412.07 236.82 512.227 243.623c102.15-6.928 249.827 89.43 241.324 248.352l-.234.13.263 341.527c.646.809 1.287 1.63 1.925 2.446a266 266 0 0 1 4.078 5.34c1.104 1.476 2.18 2.98 3.254 4.48 1.296 1.808 2.587 3.612 3.837 5.457 1.117 1.646 2.183 3.329 3.27 5.004a278 278 0 0 1 5.612 9.049c1.163 1.958 2.333 3.903 3.446 5.89.987 1.763 1.929 3.558 2.879 5.341a294 294 0 0 1 3.028 5.812 290 290 0 0 1 5.6 11.836c.72 1.608 1.45 3.208 2.137 4.833a285 285 0 0 1 3.941 9.803c.237.62.496 1.229.733 1.85 1.5 4.02 2.9 8.099 4.237 12.219.334 1.029.638 2.07.958 3.104.65 2.083 1.325 4.145 1.934 6.253a1 1 0 0 1-.084.054v.004c132.8-92.488 219.735-246.264 219.735-420.35.004-282.72-229.213-511.94-511.927-511.94",
22
+ fill: "#F4B3B3"
23
+ }
24
+ ),
25
+ /* @__PURE__ */ jsxRuntime.jsx(
26
+ "path",
27
+ {
28
+ d: "M276.207 827.129a278 278 0 0 1 8.065-9.061c.23-.25.471-.48.7-.725a278 278 0 0 1 8.074-8.22c.838-.812 1.696-1.612 2.542-2.416a265 265 0 0 1 9.54-8.687c.404-.35.796-.708 1.204-1.058v.054c23.551-20.185 50.69-36.629 80.79-48.69a313 313 0 0 1 24.222-8.557c.717-.22 1.425-.45 2.146-.666a327 327 0 0 1 26.884-6.833c.995-.212 2.004-.396 3.008-.596a344 344 0 0 1 14.64-2.608 356 356 0 0 1 10.323-1.437c1.27-.158 2.533-.337 3.816-.483a362 362 0 0 1 14.148-1.354h26.035v-.117l-.175.004c-130.663 0-236.962-103.987-240.845-233.712h-.067l-.266 341.449c.737-.917 1.5-1.813 2.25-2.717.987-1.183 1.962-2.391 2.966-3.57",
29
+ fill: "#FECF77"
30
+ }
31
+ ),
32
+ /* @__PURE__ */ jsxRuntime.jsx(
33
+ "path",
34
+ {
35
+ d: "m512.173 725.688.175-.005c130.48-.091 236.624-103.878 240.661-233.4-64.013 39.254-230.504-18.197-280.19-105.62-46.423 81.357-125.063 153.36-201.437 105.317-.158-2.913-.15-5.754-.204-8.624 0 .433-.033.866-.033 1.304 0 2.454.112 4.882.183 7.32 3.879 129.72 110.182 233.708 240.845 233.708",
36
+ fill: "#FCE9EA"
37
+ }
38
+ ),
39
+ /* @__PURE__ */ jsxRuntime.jsx(
40
+ "path",
41
+ {
42
+ d: "M472.815 386.664c49.686 87.422 216.177 144.869 280.19 105.62-4.037 129.525-110.178 233.308-240.661 233.4v.116h25.688c4.754.354 9.453.82 14.123 1.35 1.33.154 2.646.337 3.967.5 3.387.429 6.753.891 10.094 1.408a336 336 0 0 1 14.382 2.55c1.191.237 2.387.454 3.57.708a326 326 0 0 1 26.342 6.682c1.155.346 2.292.721 3.438 1.08a313 313 0 0 1 13.315 4.461 314 314 0 0 1 8.76 3.32c30.026 11.874 57.127 28.08 80.687 48.007v-.07c.541.454 1.054.937 1.591 1.395a292 292 0 0 1 4.683 4.112 289 289 0 0 1 4.403 4.066c1.546 1.45 3.092 2.887 4.6 4.37 1.441 1.417 2.837 2.871 4.245 4.32a272 272 0 0 1 7.712 8.254c1.295 1.441 2.6 2.866 3.862 4.337 1.45 1.687 2.853 3.416 4.262 5.14.5.613 1.02 1.217 1.52 1.838l-.262-341.528.233-.129c8.503-158.921-139.174-255.28-241.324-248.352h.059c8.349 29.563-8.303 88.41-39.479 143.045",
43
+ fill: "#FCBA6F"
44
+ }
45
+ ),
46
+ /* @__PURE__ */ jsxRuntime.jsx(
47
+ "path",
48
+ {
49
+ d: "M790.513 894.287c.72 1.608 1.445 3.208 2.137 4.833-.687-1.625-1.416-3.225-2.137-4.833m-27.672-48.39c1.296 1.809 2.587 3.613 3.837 5.458-1.245-1.845-2.541-3.65-3.837-5.458m16.165 25.401c.987 1.763 1.929 3.558 2.879 5.341-.95-1.787-1.888-3.578-2.88-5.34m17.585 37.625c.238.62.496 1.229.733 1.85-.237-.621-.495-1.23-.733-1.85m-79.881-113.06c-23.56-19.928-50.66-36.138-80.686-48.007l.737.287V882.16H385.46V748.989c.55-.225 1.112-.438 1.666-.658-30.104 12.06-57.238 28.504-80.79 48.69v183.818a512 512 0 0 1-86.322-48.37v.005c82.844 57.672 183.527 91.518 292.159 91.518 81.456 0 158.447-19.06 226.817-52.91a509 509 0 0 1-22.28 10.294zm-458.888 55.38c1.108-1.638 2.258-3.233 3.395-4.841-1.137 1.608-2.287 3.207-3.395 4.84m481.376 119.73a511.4 511.4 0 0 0 65.176-38.57v-.004a512 512 0 0 1-65.176 38.574m62.36-47.981c.333 1.029.637 2.07.957 3.104-.316-1.034-.62-2.075-.958-3.104m-559.684-45.078c1.216-2.316 2.433-4.624 3.708-6.895-1.28 2.267-2.492 4.579-3.708 6.895m43.098-60.567c-.229.246-.47.475-.7.725.23-.25.471-.483.7-.725m8.074-8.22c.838-.812 1.696-1.612 2.542-2.416-.846.804-1.704 1.604-2.542 2.416m-16.84 18.002c-1.003 1.179-1.978 2.387-2.961 3.579.983-1.192 1.958-2.4 2.962-3.579m164.172-94.85c.995-.213 2.004-.396 3.008-.596-1 .2-2.013.383-3.008.595m27.967-4.642c1.27-.158 2.533-.337 3.816-.483-1.283.146-2.545.325-3.816.483m-56.997 12.136c.717-.22 1.425-.45 2.146-.666-.721.216-1.43.45-2.146.666m316.04 65.596c1.54 1.45 3.09 2.887 4.599 4.37-1.508-1.483-3.054-2.924-4.6-4.37M610.514 739c1.154.345 2.295.72 3.437 1.078-1.146-.358-2.283-.733-3.437-1.079m-58.36-11.849c1.33.154 2.646.337 3.967.5-1.321-.163-2.633-.346-3.967-.5m28.443 4.458c1.191.237 2.387.454 3.57.708-1.179-.25-2.379-.47-3.57-.708M752.063 831.79c-1.412-1.725-2.816-3.454-4.261-5.141 1.445 1.687 2.85 3.416 4.261 5.14",
50
+ fill: "#A0D9F6"
51
+ }
52
+ ),
53
+ /* @__PURE__ */ jsxRuntime.jsx(
54
+ "path",
55
+ {
56
+ d: "M623.226 743.106a322 322 0 0 0-9.274-3.033c-1.142-.358-2.283-.733-3.437-1.079a330 330 0 0 0-26.343-6.682c-1.183-.254-2.379-.471-3.57-.708a323 323 0 0 0-14.382-2.55 372 372 0 0 0-10.094-1.408c-1.321-.163-2.637-.346-3.966-.5a369 369 0 0 0-14.124-1.35h-51.722a362 362 0 0 0-14.149 1.354c-1.279.146-2.54.325-3.816.483a356 356 0 0 0-14.373 2.092q-5.336.899-10.59 1.954c-1 .2-2.008.383-3.008.595a327 327 0 0 0-26.884 6.833c-.721.216-1.43.446-2.146.666a322 322 0 0 0-13.548 4.508 313 313 0 0 0-10.674 4.05c-.554.22-1.116.433-1.666.658v133.17H636.76V748.144l-.737-.287a322 322 0 0 0-12.798-4.75M512.052 849.093a15.231 15.231 0 1 1-.004-30.467 15.231 15.231 0 0 1 .004 30.467m0-55.151a15.236 15.236 0 1 1 0-30.476 15.236 15.236 0 0 1 0 30.476m-205.72 3.078v-.054c-.408.35-.8.708-1.204 1.058a272 272 0 0 0-9.54 8.687c-.846.804-1.704 1.604-2.542 2.416a278 278 0 0 0-8.074 8.22c-.229.246-.47.475-.7.725a278 278 0 0 0-8.065 9.061c-1.004 1.18-1.98 2.387-2.962 3.579-.75.908-1.513 1.804-2.25 2.716-.842 1.05-1.662 2.112-2.491 3.17a285 285 0 0 0-7.283 9.808c-1.141 1.608-2.291 3.208-3.395 4.84-1.175 1.726-2.296 3.492-3.433 5.25a278 278 0 0 0-6.595 10.736c-.737 1.267-1.496 2.512-2.216 3.787-1.275 2.27-2.492 4.583-3.708 6.895-.65 1.238-1.304 2.475-1.942 3.725a280 280 0 0 0-3.595 7.37c-.496 1.054-.975 2.112-1.462 3.174a287 287 0 0 0-3.633 8.245l-.192.47a292 292 0 0 0-10.949 31.268c-.029.1-.066.2-.091.3l.004.004a512 512 0 0 0 86.322 48.369V797.02zm498.12 135.33c-.608-2.109-1.282-4.171-1.932-6.254-.321-1.034-.625-2.075-.959-3.104a289 289 0 0 0-4.237-12.22c-.237-.62-.495-1.228-.733-1.85a297 297 0 0 0-3.941-9.802c-.692-1.629-1.416-3.225-2.137-4.833a265 265 0 0 0-8.628-17.648c-.954-1.787-1.892-3.578-2.88-5.34-1.116-1.992-2.282-3.933-3.444-5.891a278 278 0 0 0-5.612-9.05c-1.088-1.674-2.158-3.361-3.27-5.003a262 262 0 0 0-3.838-5.458 254 254 0 0 0-7.332-9.82 276 276 0 0 0-1.925-2.445c-.5-.62-1.02-1.224-1.52-1.837-1.413-1.725-2.817-3.454-4.262-5.14-1.263-1.472-2.567-2.896-3.863-4.338a268 268 0 0 0-7.711-8.253c-1.408-1.45-2.804-2.904-4.245-4.32-1.504-1.48-3.054-2.92-4.6-4.37a314 314 0 0 0-4.403-4.067 292 292 0 0 0-4.683-4.112c-.538-.458-1.05-.941-1.592-1.395v185.576a509 509 0 0 0 22.49-10.394 512.5 512.5 0 0 0 65.174-38.575z",
57
+ fill: "#FEFEFE"
58
+ }
59
+ ),
60
+ /* @__PURE__ */ jsxRuntime.jsx(
61
+ "path",
62
+ {
63
+ d: "M496.81600000000003 778.71a15.236 15.236 0 1 0 30.472 0 15.236 15.236 0 1 0-30.472 0M496.821 833.857a15.231 15.231 0 1 0 30.462 0 15.231 15.231 0 1 0-30.462 0",
64
+ fill: "#A0D9F6"
65
+ }
66
+ ),
67
+ /* @__PURE__ */ jsxRuntime.jsx(
68
+ "path",
69
+ {
70
+ d: "M271.378 491.975c76.374 48.044 155.014-23.959 201.437-105.315 31.171-54.631 47.823-113.478 39.475-143.037h-.059c-100.162-6.799-243.865 85.981-241.053 239.729.05 2.87.046 5.715.2 8.623",
71
+ fill: "#FECF77"
72
+ }
73
+ )
74
+ ]
75
+ }
76
+ );
77
+ }
78
+ const Memo = react.memo(SvgIconGirl);
79
+
80
+ exports.default = Memo;
3
81
  /*! 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 */
@@ -1,3 +1,28 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime");exports.default=function VefIconMenuFoldLeft(s){return e.jsx("svg",{"aria-hidden":!0,focusable:!1,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...s,children:e.jsxs("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[e.jsx("path",{d:"M19 5h-14",strokeDasharray:16,strokeDashoffset:16,children:e.jsx("animate",{attributeName:"stroke-dashoffset",dur:"0.2s",fill:"freeze",values:"16;0"})}),e.jsx("path",{d:"M19 12h-9",strokeDasharray:10,strokeDashoffset:10,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.2s",dur:"0.2s",fill:"freeze",values:"10;0"})}),e.jsx("path",{d:"M19 19h-14",strokeDasharray:16,strokeDashoffset:16,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.4s",dur:"0.2s",fill:"freeze",values:"16;0"})}),e.jsx("path",{d:"M7 9l-3 3l3 3",strokeDasharray:10,strokeDashoffset:10,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.6s",dur:"0.2s",fill:"freeze",values:"10;0"})})]})})};
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+
8
+ function VefIconMenuFoldLeft(props) {
9
+ return /* @__PURE__ */ jsxRuntime.jsx(
10
+ "svg",
11
+ {
12
+ "aria-hidden": true,
13
+ focusable: false,
14
+ viewBox: "0 0 24 24",
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ ...props,
17
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, children: [
18
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 5h-14", strokeDasharray: 16, strokeDashoffset: 16, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", dur: "0.2s", fill: "freeze", values: "16;0" }) }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 12h-9", strokeDasharray: 10, strokeDashoffset: 10, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.2s", dur: "0.2s", fill: "freeze", values: "10;0" }) }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 19h-14", strokeDasharray: 16, strokeDashoffset: 16, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.4s", dur: "0.2s", fill: "freeze", values: "16;0" }) }),
21
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 9l-3 3l3 3", strokeDasharray: 10, strokeDashoffset: 10, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.6s", dur: "0.2s", fill: "freeze", values: "10;0" }) })
22
+ ] })
23
+ }
24
+ );
25
+ }
26
+
27
+ exports.default = VefIconMenuFoldLeft;
3
28
  /*! 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 */
@@ -1,3 +1,28 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime");exports.default=function VefIconMenuUnfoldLeft(s){return e.jsx("svg",{"aria-hidden":!0,focusable:!1,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...s,children:e.jsxs("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[e.jsx("path",{d:"M21 9l-3 3l3 3",strokeDasharray:10,strokeDashoffset:10,children:e.jsx("animate",{attributeName:"stroke-dashoffset",dur:"0.2s",fill:"freeze",values:"10;0"})}),e.jsx("path",{d:"M19 5h-14",strokeDasharray:16,strokeDashoffset:16,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.2s",dur:"0.2s",fill:"freeze",values:"16;0"})}),e.jsx("path",{d:"M14 12h-9",strokeDasharray:10,strokeDashoffset:10,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.4s",dur:"0.2s",fill:"freeze",values:"10;0"})}),e.jsx("path",{d:"M19 19h-14",strokeDasharray:16,strokeDashoffset:16,children:e.jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.6s",dur:"0.2s",fill:"freeze",values:"16;0"})})]})})};
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+
8
+ function VefIconMenuUnfoldLeft(props) {
9
+ return /* @__PURE__ */ jsxRuntime.jsx(
10
+ "svg",
11
+ {
12
+ "aria-hidden": true,
13
+ focusable: false,
14
+ viewBox: "0 0 24 24",
15
+ xmlns: "http://www.w3.org/2000/svg",
16
+ ...props,
17
+ children: /* @__PURE__ */ jsxRuntime.jsxs("g", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, children: [
18
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 9l-3 3l3 3", strokeDasharray: 10, strokeDashoffset: 10, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", dur: "0.2s", fill: "freeze", values: "10;0" }) }),
19
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 5h-14", strokeDasharray: 16, strokeDashoffset: 16, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.2s", dur: "0.2s", fill: "freeze", values: "16;0" }) }),
20
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M14 12h-9", strokeDasharray: 10, strokeDashoffset: 10, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.4s", dur: "0.2s", fill: "freeze", values: "10;0" }) }),
21
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 19h-14", strokeDasharray: 16, strokeDashoffset: 16, children: /* @__PURE__ */ jsxRuntime.jsx("animate", { attributeName: "stroke-dashoffset", begin: "0.6s", dur: "0.2s", fill: "freeze", values: "16;0" }) })
22
+ ] })
23
+ }
24
+ );
25
+ }
26
+
27
+ exports.default = VefIconMenuUnfoldLeft;
3
28
  /*! 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 */
@@ -1,34 +1,145 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime"),s=require("@emotion/react"),c=require("@vef-framework/hooks"),i=require("@vef-framework/shared"),l=require("../../vef-text/index.cjs"),n=s.css`
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const react = require('@emotion/react');
8
+ const hooks = require('@vef-framework/hooks');
9
+ const shared = require('@vef-framework/shared');
10
+ const index = require('../../vef-text/index.cjs');
11
+
12
+ const containerStyle = react.css`
3
13
  display: grid;
4
14
  grid-template-columns: 320px 320px;
5
- `,r=s.css`
15
+ `;
16
+ const itemStyle = react.css`
6
17
  display: flex;
7
18
  align-items: center;
8
- gap: ${i.themeVariables.padding};
9
- padding: ${i.themeVariables.padding};
10
- border-radius: ${i.themeVariables.borderRadiusLg};
19
+ gap: ${shared.themeVariables.padding};
20
+ padding: ${shared.themeVariables.padding};
21
+ border-radius: ${shared.themeVariables.borderRadiusLg};
11
22
  cursor: pointer;
12
23
  user-select: none;
13
- transition: background-color ${i.themeVariables.motionDurationMid} ${i.themeVariables.motionEaseInOut};
24
+ transition: background-color ${shared.themeVariables.motionDurationMid} ${shared.themeVariables.motionEaseInOut};
14
25
 
15
26
  &:hover {
16
- background-color: ${i.themeVariables.colorFillContent};
27
+ background-color: ${shared.themeVariables.colorFillContent};
17
28
  }
18
- `,t=s.css`
29
+ `;
30
+ const iconStyle = react.css`
19
31
  flex: none;
20
- ${i.styles.flexCenter}
21
- `,o=s.css`
32
+ ${shared.styles.flexCenter}
33
+ `;
34
+ const metaStyle = react.css`
22
35
  flex: auto;
23
36
  display: flex;
24
37
  flex-direction: column;
25
- gap: ${i.themeVariables.paddingXxs};
26
- color: ${i.themeVariables.colorText};
38
+ gap: ${shared.themeVariables.paddingXxs};
39
+ color: ${shared.themeVariables.colorText};
27
40
  min-width: 0;
28
41
 
29
42
  > span:last-of-type {
30
- color: ${i.themeVariables.colorTextSecondary};
31
- font-size: ${i.themeVariables.fontSizeSm};
43
+ color: ${shared.themeVariables.colorTextSecondary};
44
+ font-size: ${shared.themeVariables.fontSizeSm};
32
45
  }
33
- `;function IconSystem(){const{controlHeightLG:s}=c.useThemeTokens();return e.jsxs("svg",{height:s,viewBox:"0 0 1024 1024",width:s,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{d:"M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z",fill:"#10C7C1","p-id":"1234"}),e.jsx("path",{d:"M757.333333 364.8L725.333333 394.666667c-32 32-85.333333 32-117.333333 0s-32-85.333333 0-119.466667l29.866667-29.866667c17.066667-17.066667 6.4-36.266667-25.6-32-32 4.266667-61.866667 19.2-85.333334 42.666667-36.266667 36.266667-51.2 89.6-40.533333 140.8l-256 258.133333c-32 32-32 85.333333 0 119.466667 32 32 85.333333 32 117.333333 0l256-258.133333c83.2 17.066667 164.266667-34.133333 181.333334-117.333334 0-2.133333 2.133333-6.4 2.133333-8.533333 6.4-32-12.8-42.666667-29.866667-25.6z m-448 369.066667c-10.666667 10.666667-27.733333 10.666667-38.4 0s-10.666667-27.733333 0-40.533334c10.666667-10.666667 29.866667-10.666667 38.4 2.133334 10.666667 10.666667 10.666667 27.733333 0 38.4z m-27.733333-364.8l96 96 38.4-40.533334-96-96-21.333333-40.533333-68.266667-49.066667L192 279.466667l49.066667 68.266666 40.533333 21.333334zM605.866667 576c-6.4-6.4-14.933333-6.4-19.2 0l-59.733334 59.733333c-6.4 6.4-6.4 14.933333 0 19.2l138.666667 140.8c21.333333 21.333333 57.6 21.333333 78.933333 0s21.333333-57.6 0-78.933333c0-2.133333-138.666667-140.8-138.666666-140.8z",fill:"#FFFFFF","p-id":"1235"})]})}function IconMainData(){const{controlHeightLG:s}=c.useThemeTokens();return e.jsxs("svg",{height:s,viewBox:"0 0 1024 1024",width:s,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{d:"M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z",fill:"#9F53E6","p-id":"1388"}),e.jsx("path",{d:"M567.466667 780.8c-4.266667 0-8.533333-2.133333-12.8-6.4l-102.4-162.133333-204.8-14.933334c-6.4 0-10.666667-6.4-12.8-12.8-2.133333-6.4 0-12.8 6.4-17.066666l452.266666-285.866667c4.266667-2.133333 8.533333-4.266667 12.8-2.133333 8.533333 2.133333 10.666667 10.666667 10.666667 17.066666l-132.266667 469.333334c-2.133333 6.4-6.4 10.666667-12.8 12.8-2.133333 2.133333-2.133333 2.133333-4.266666 2.133333z",fill:"#FFFFFF","p-id":"1389"})]})}function IconProcess(){const{controlHeightLG:s}=c.useThemeTokens();return e.jsxs("svg",{height:s,viewBox:"0 0 1024 1024",width:s,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{d:"M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z",fill:"#0EB4F6","p-id":"1696"}),e.jsx("path",{d:"M785.066667 627.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2H682.666667c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-14.933333 6.4-27.733333 14.933333-36.266667 8.533333-8.533333 21.333333-14.933333 36.266667-14.933333 4.266667 0 8.533333-4.266667 8.533333-8.533333v-40.533334c0-8.533333-8.533333-17.066667-17.066667-17.066666h-136.533333c-4.266667 0-8.533333 4.266667-8.533333 8.533333v51.2c0 4.266667 4.266667 8.533333 8.533333 8.533333 27.733333 0 51.2 23.466667 51.2 51.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2h-51.2c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-27.733333 23.466667-51.2 51.2-51.2 4.266667 0 8.533333-4.266667 8.533333-8.533333v-51.2c0-4.266667-4.266667-8.533333-8.533333-8.533333h-136.533333c-8.533333 0-17.066667 8.533333-17.066667 17.066666v40.533334c0 2.133333 0 4.266667 2.133333 6.4s4.266667 2.133333 6.4 2.133333c27.733333 0 51.2 23.466667 51.2 51.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2h-51.2c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-14.933333 6.4-27.733333 14.933334-36.266667 8.533333-8.533333 21.333333-14.933333 36.266666-14.933333 4.266667 0 8.533333-4.266667 8.533334-8.533333v-40.533334c0-27.733333 23.466667-51.2 51.2-51.2h136.533333c4.266667 0 8.533333-4.266667 8.533333-8.533333v-51.2c0-4.266667-4.266667-8.533333-8.533333-8.533333h-25.6c-27.733333 0-51.2-23.466667-51.2-51.2v-102.4c0-27.733333 23.466667-51.2 51.2-51.2h102.4c27.733333 0 51.2 23.466667 51.2 51.2v102.4c0 27.733333-23.466667 51.2-51.2 51.2h-25.6c-4.266667 0-8.533333 4.266667-8.533333 8.533333v51.2c0 4.266667 4.266667 8.533333 8.533333 8.533333h136.533333c27.733333 0 51.2 23.466667 51.2 51.2v40.533334c0 4.266667 4.266667 8.533333 8.533334 8.533333 29.866667 0 51.2 23.466667 51.2 51.2z",fill:"#FFFFFF","p-id":"1697"})]})}function IconBusiness(){const{controlHeightLG:s}=c.useThemeTokens();return e.jsxs("svg",{height:s,viewBox:"0 0 1024 1024",width:s,xmlns:"http://www.w3.org/2000/svg",children:[e.jsx("path",{d:"M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z",fill:"#10C7C1","p-id":"1850"}),e.jsx("path",{d:"M708.266667 258.133333H300.8c-17.066667 0-34.133333 14.933333-34.133333 32v441.6c0 19.2 14.933333 32 34.133333 32h407.466667c19.2 0 34.133333-14.933333 34.133333-32V290.133333c2.133333-17.066667-14.933333-32-34.133333-32zM377.6 512c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666 25.6 10.666667 25.6 23.466666c0 12.8-12.8 23.466667-25.6 23.466667z m0-115.2c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666 25.6 10.666667 25.6 23.466666c0 12.8-12.8 23.466667-25.6 23.466667z m256 115.2h-170.666667c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666h170.666667c12.8 0 25.6 10.666667 25.6 23.466666-2.133333 12.8-12.8 23.466667-25.6 23.466667z m0-115.2h-170.666667c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666h170.666667c12.8 0 25.6 10.666667 25.6 23.466666-2.133333 12.8-12.8 23.466667-25.6 23.466667z",fill:"#FFFFFF","p-id":"1851"})]})}exports.default=function VefMenuGroups(){return e.jsxs("div",{css:n,children:[e.jsxs("div",{css:r,children:[e.jsx("span",{css:t,children:e.jsx(IconSystem,{})}),e.jsxs("div",{css:o,children:[e.jsx(l.default,{children:"系统管理"}),e.jsx(l.default,{color:"secondary",children:"系统全局相关配置"})]})]}),e.jsxs("div",{css:r,children:[e.jsx("span",{css:t,children:e.jsx(IconMainData,{})}),e.jsxs("div",{css:o,children:[e.jsx(l.default,{children:"主数据管理"}),e.jsx(l.default,{ellipsis:!0,color:"secondary",children:"医院、科室、医生、患者等主数据管理"})]})]}),e.jsxs("div",{css:r,children:[e.jsx("span",{css:t,children:e.jsx(IconProcess,{})}),e.jsxs("div",{css:o,children:[e.jsx(l.default,{children:"流程管理"}),e.jsx(l.default,{children:"系统整体涉及的所有流程管理"})]})]}),e.jsxs("div",{css:r,children:[e.jsx("span",{css:t,children:e.jsx(IconBusiness,{})}),e.jsxs("div",{css:o,children:[e.jsx(l.default,{children:"业务管理"}),e.jsx(l.default,{color:"secondary",children:"医疗业务相关管理"})]})]})]})};
46
+ `;
47
+ function IconSystem() {
48
+ const { controlHeightLG } = hooks.useThemeTokens();
49
+ return /* @__PURE__ */ jsxRuntime.jsxs(
50
+ "svg",
51
+ {
52
+ height: controlHeightLG,
53
+ viewBox: "0 0 1024 1024",
54
+ width: controlHeightLG,
55
+ xmlns: "http://www.w3.org/2000/svg",
56
+ children: [
57
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z", fill: "#10C7C1", "p-id": "1234" }),
58
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M757.333333 364.8L725.333333 394.666667c-32 32-85.333333 32-117.333333 0s-32-85.333333 0-119.466667l29.866667-29.866667c17.066667-17.066667 6.4-36.266667-25.6-32-32 4.266667-61.866667 19.2-85.333334 42.666667-36.266667 36.266667-51.2 89.6-40.533333 140.8l-256 258.133333c-32 32-32 85.333333 0 119.466667 32 32 85.333333 32 117.333333 0l256-258.133333c83.2 17.066667 164.266667-34.133333 181.333334-117.333334 0-2.133333 2.133333-6.4 2.133333-8.533333 6.4-32-12.8-42.666667-29.866667-25.6z m-448 369.066667c-10.666667 10.666667-27.733333 10.666667-38.4 0s-10.666667-27.733333 0-40.533334c10.666667-10.666667 29.866667-10.666667 38.4 2.133334 10.666667 10.666667 10.666667 27.733333 0 38.4z m-27.733333-364.8l96 96 38.4-40.533334-96-96-21.333333-40.533333-68.266667-49.066667L192 279.466667l49.066667 68.266666 40.533333 21.333334zM605.866667 576c-6.4-6.4-14.933333-6.4-19.2 0l-59.733334 59.733333c-6.4 6.4-6.4 14.933333 0 19.2l138.666667 140.8c21.333333 21.333333 57.6 21.333333 78.933333 0s21.333333-57.6 0-78.933333c0-2.133333-138.666667-140.8-138.666666-140.8z", fill: "#FFFFFF", "p-id": "1235" })
59
+ ]
60
+ }
61
+ );
62
+ }
63
+ function IconMainData() {
64
+ const { controlHeightLG } = hooks.useThemeTokens();
65
+ return /* @__PURE__ */ jsxRuntime.jsxs(
66
+ "svg",
67
+ {
68
+ height: controlHeightLG,
69
+ viewBox: "0 0 1024 1024",
70
+ width: controlHeightLG,
71
+ xmlns: "http://www.w3.org/2000/svg",
72
+ children: [
73
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z", fill: "#9F53E6", "p-id": "1388" }),
74
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M567.466667 780.8c-4.266667 0-8.533333-2.133333-12.8-6.4l-102.4-162.133333-204.8-14.933334c-6.4 0-10.666667-6.4-12.8-12.8-2.133333-6.4 0-12.8 6.4-17.066666l452.266666-285.866667c4.266667-2.133333 8.533333-4.266667 12.8-2.133333 8.533333 2.133333 10.666667 10.666667 10.666667 17.066666l-132.266667 469.333334c-2.133333 6.4-6.4 10.666667-12.8 12.8-2.133333 2.133333-2.133333 2.133333-4.266666 2.133333z", fill: "#FFFFFF", "p-id": "1389" })
75
+ ]
76
+ }
77
+ );
78
+ }
79
+ function IconProcess() {
80
+ const { controlHeightLG } = hooks.useThemeTokens();
81
+ return /* @__PURE__ */ jsxRuntime.jsxs(
82
+ "svg",
83
+ {
84
+ height: controlHeightLG,
85
+ viewBox: "0 0 1024 1024",
86
+ width: controlHeightLG,
87
+ xmlns: "http://www.w3.org/2000/svg",
88
+ children: [
89
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z", fill: "#0EB4F6", "p-id": "1696" }),
90
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M785.066667 627.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2H682.666667c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-14.933333 6.4-27.733333 14.933333-36.266667 8.533333-8.533333 21.333333-14.933333 36.266667-14.933333 4.266667 0 8.533333-4.266667 8.533333-8.533333v-40.533334c0-8.533333-8.533333-17.066667-17.066667-17.066666h-136.533333c-4.266667 0-8.533333 4.266667-8.533333 8.533333v51.2c0 4.266667 4.266667 8.533333 8.533333 8.533333 27.733333 0 51.2 23.466667 51.2 51.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2h-51.2c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-27.733333 23.466667-51.2 51.2-51.2 4.266667 0 8.533333-4.266667 8.533333-8.533333v-51.2c0-4.266667-4.266667-8.533333-8.533333-8.533333h-136.533333c-8.533333 0-17.066667 8.533333-17.066667 17.066666v40.533334c0 2.133333 0 4.266667 2.133333 6.4s4.266667 2.133333 6.4 2.133333c27.733333 0 51.2 23.466667 51.2 51.2v70.4c0 27.733333-23.466667 51.2-51.2 51.2h-51.2c-27.733333 0-51.2-23.466667-51.2-51.2v-70.4c0-14.933333 6.4-27.733333 14.933334-36.266667 8.533333-8.533333 21.333333-14.933333 36.266666-14.933333 4.266667 0 8.533333-4.266667 8.533334-8.533333v-40.533334c0-27.733333 23.466667-51.2 51.2-51.2h136.533333c4.266667 0 8.533333-4.266667 8.533333-8.533333v-51.2c0-4.266667-4.266667-8.533333-8.533333-8.533333h-25.6c-27.733333 0-51.2-23.466667-51.2-51.2v-102.4c0-27.733333 23.466667-51.2 51.2-51.2h102.4c27.733333 0 51.2 23.466667 51.2 51.2v102.4c0 27.733333-23.466667 51.2-51.2 51.2h-25.6c-4.266667 0-8.533333 4.266667-8.533333 8.533333v51.2c0 4.266667 4.266667 8.533333 8.533333 8.533333h136.533333c27.733333 0 51.2 23.466667 51.2 51.2v40.533334c0 4.266667 4.266667 8.533333 8.533334 8.533333 29.866667 0 51.2 23.466667 51.2 51.2z", fill: "#FFFFFF", "p-id": "1697" })
91
+ ]
92
+ }
93
+ );
94
+ }
95
+ function IconBusiness() {
96
+ const { controlHeightLG } = hooks.useThemeTokens();
97
+ return /* @__PURE__ */ jsxRuntime.jsxs(
98
+ "svg",
99
+ {
100
+ height: controlHeightLG,
101
+ viewBox: "0 0 1024 1024",
102
+ width: controlHeightLG,
103
+ xmlns: "http://www.w3.org/2000/svg",
104
+ children: [
105
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M768 1024H256C115.2 1024 0 908.8 0 768V256C0 115.2 115.2 0 256 0h512c140.8 0 256 115.2 256 256v512c0 140.8-115.2 256-256 256z", fill: "#10C7C1", "p-id": "1850" }),
106
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M708.266667 258.133333H300.8c-17.066667 0-34.133333 14.933333-34.133333 32v441.6c0 19.2 14.933333 32 34.133333 32h407.466667c19.2 0 34.133333-14.933333 34.133333-32V290.133333c2.133333-17.066667-14.933333-32-34.133333-32zM377.6 512c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666 25.6 10.666667 25.6 23.466666c0 12.8-12.8 23.466667-25.6 23.466667z m0-115.2c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666 25.6 10.666667 25.6 23.466666c0 12.8-12.8 23.466667-25.6 23.466667z m256 115.2h-170.666667c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666h170.666667c12.8 0 25.6 10.666667 25.6 23.466666-2.133333 12.8-12.8 23.466667-25.6 23.466667z m0-115.2h-170.666667c-12.8 0-25.6-10.666667-25.6-23.466667s12.8-23.466667 25.6-23.466666h170.666667c12.8 0 25.6 10.666667 25.6 23.466666-2.133333 12.8-12.8 23.466667-25.6 23.466667z", fill: "#FFFFFF", "p-id": "1851" })
107
+ ]
108
+ }
109
+ );
110
+ }
111
+ function VefMenuGroups() {
112
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { css: containerStyle, children: [
113
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: itemStyle, children: [
114
+ /* @__PURE__ */ jsxRuntime.jsx("span", { css: iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(IconSystem, {}) }),
115
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: metaStyle, children: [
116
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: "\u7CFB\u7EDF\u7BA1\u7406" }),
117
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { color: "secondary", children: "\u7CFB\u7EDF\u5168\u5C40\u76F8\u5173\u914D\u7F6E" })
118
+ ] })
119
+ ] }),
120
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: itemStyle, children: [
121
+ /* @__PURE__ */ jsxRuntime.jsx("span", { css: iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(IconMainData, {}) }),
122
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: metaStyle, children: [
123
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: "\u4E3B\u6570\u636E\u7BA1\u7406" }),
124
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { ellipsis: true, color: "secondary", children: "\u533B\u9662\u3001\u79D1\u5BA4\u3001\u533B\u751F\u3001\u60A3\u8005\u7B49\u4E3B\u6570\u636E\u7BA1\u7406" })
125
+ ] })
126
+ ] }),
127
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: itemStyle, children: [
128
+ /* @__PURE__ */ jsxRuntime.jsx("span", { css: iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(IconProcess, {}) }),
129
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: metaStyle, children: [
130
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: "\u6D41\u7A0B\u7BA1\u7406" }),
131
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: "\u7CFB\u7EDF\u6574\u4F53\u6D89\u53CA\u7684\u6240\u6709\u6D41\u7A0B\u7BA1\u7406" })
132
+ ] })
133
+ ] }),
134
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: itemStyle, children: [
135
+ /* @__PURE__ */ jsxRuntime.jsx("span", { css: iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(IconBusiness, {}) }),
136
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { css: metaStyle, children: [
137
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: "\u4E1A\u52A1\u7BA1\u7406" }),
138
+ /* @__PURE__ */ jsxRuntime.jsx(index.default, { color: "secondary", children: "\u533B\u7597\u4E1A\u52A1\u76F8\u5173\u7BA1\u7406" })
139
+ ] })
140
+ ] })
141
+ ] });
142
+ }
143
+
144
+ exports.default = VefMenuGroups;
34
145
  /*! 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 */
@@ -1,3 +1,16 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime"),r=require("lucide-react"),s=require("../../vef-icon/index.cjs"),i=require("../common-styles.cjs");exports.default=function VefMessage(){return e.jsx("div",{css:i.iconStyle,children:e.jsx(s.default,{size:"large",children:e.jsx(r.BellIcon,{})})})};
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const lucideReact = require('lucide-react');
8
+ const index = require('../../vef-icon/index.cjs');
9
+ const commonStyles = require('../common-styles.cjs');
10
+
11
+ function VefMessage() {
12
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { css: commonStyles.iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(index.default, { size: "large", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.BellIcon, {}) }) });
13
+ }
14
+
15
+ exports.default = VefMessage;
3
16
  /*! 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 */
@@ -1,3 +1,16 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime"),r=require("lucide-react"),i=require("../../vef-icon/index.cjs"),t=require("../common-styles.cjs");exports.default=function VefSearch(){return e.jsx("div",{css:t.iconStyle,children:e.jsx(i.default,{size:"large",children:e.jsx(r.SearchIcon,{})})})};
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const lucideReact = require('lucide-react');
8
+ const index = require('../../vef-icon/index.cjs');
9
+ const commonStyles = require('../common-styles.cjs');
10
+
11
+ function VefSearch() {
12
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { css: commonStyles.iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(index.default, { size: "large", children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.SearchIcon, {}) }) });
13
+ }
14
+
15
+ exports.default = VefSearch;
3
16
  /*! 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 */
@@ -1,6 +1,22 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime"),i=require("@emotion/react"),t=require("@vef-framework/shared"),r=require("antd"),n=require("react"),l=require("../../vef-menu/index.cjs"),s=require("../../vef-scroll-area/index.cjs"),o=require("../hooks/use-layout-context.cjs"),a=require("../store.cjs"),u=require("./title.cjs"),{Sider:d}=r.Layout,c=i.css`
3
- border-right: ${t.themeVariables.lineWidth} ${t.themeVariables.lineType} ${t.themeVariables.colorBorderSecondary};
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const react = require('@emotion/react');
8
+ const shared = require('@vef-framework/shared');
9
+ const antd = require('antd');
10
+ const react$1 = require('react');
11
+ const index$1 = require('../../vef-menu/index.cjs');
12
+ const index = require('../../vef-scroll-area/index.cjs');
13
+ const useLayoutContext = require('../hooks/use-layout-context.cjs');
14
+ const store = require('../store.cjs');
15
+ const title = require('./title.cjs');
16
+
17
+ const { Sider } = antd.Layout;
18
+ const siderStyle = react.css`
19
+ border-right: ${shared.themeVariables.lineWidth} ${shared.themeVariables.lineType} ${shared.themeVariables.colorBorderSecondary};
4
20
 
5
21
  > .vef-layout-sider-children {
6
22
  --vef-layout-header-height: 60px;
@@ -37,8 +53,8 @@
37
53
  inset-inline-start: 0;
38
54
  pointer-events: none;
39
55
  width: 0;
40
- height: calc(${t.themeVariables.fontSize} * 0.8);
41
- border-inline-start: 4px ${t.themeVariables.lineType} var(--vef-menu-item-selected-color);
56
+ height: calc(${shared.themeVariables.fontSize} * 0.8);
57
+ border-inline-start: 4px ${shared.themeVariables.lineType} var(--vef-menu-item-selected-color);
42
58
  border-radius: var(--vef-menu-item-border-radius);
43
59
  }
44
60
  }
@@ -47,5 +63,41 @@
47
63
  }
48
64
  }
49
65
  }
50
- `;const m=n.memo((function VefSiderBase(){const[i,t,r,n]=o.useLayoutContextSelector((e=>[e.menuItems,e.defaultOpenedMenuKeys,e.activeMenuKey,e.onActiveMenuKeyChange])),[m,f]=a.useLayoutStore((e=>[e.siderCollapsed,e.setSiderCollapsed]));return e.jsxs(d,{collapsible:!0,breakpoint:"lg",collapsed:m,collapsedWidth:80,css:c,theme:"light",trigger:null,width:220,onCollapse:f,children:[e.jsx(u.default,{}),e.jsx("div",{className:"vef-layout-sider-menu",children:e.jsx(s.default,{scrollbarSize:"small",children:e.jsx(l.default,{inlineExpansion:!0,defaultOpenedKeys:t,inlineCollapsed:m,items:i??[],selectedKeys:r?[r]:[],onSelect:n})})})]})}));m.displayName="VefSider",exports.default=m;
66
+ `;
67
+ function VefSiderBase() {
68
+ const [menuItems, defaultOpenedMenuKeys, activeMenuKey, onActiveMenuKeyChange] = useLayoutContext.useLayoutContextSelector((ctx) => [ctx.menuItems, ctx.defaultOpenedMenuKeys, ctx.activeMenuKey, ctx.onActiveMenuKeyChange]);
69
+ const [siderCollapsed, setSiderCollapsed] = store.useLayoutStore((state) => [state.siderCollapsed, state.setSiderCollapsed]);
70
+ return /* @__PURE__ */ jsxRuntime.jsxs(
71
+ Sider,
72
+ {
73
+ collapsible: true,
74
+ breakpoint: "lg",
75
+ collapsed: siderCollapsed,
76
+ collapsedWidth: 80,
77
+ css: siderStyle,
78
+ theme: "light",
79
+ trigger: null,
80
+ width: 220,
81
+ onCollapse: setSiderCollapsed,
82
+ children: [
83
+ /* @__PURE__ */ jsxRuntime.jsx(title.default, {}),
84
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "vef-layout-sider-menu", children: /* @__PURE__ */ jsxRuntime.jsx(index.default, { scrollbarSize: "small", children: /* @__PURE__ */ jsxRuntime.jsx(
85
+ index$1.default,
86
+ {
87
+ inlineExpansion: true,
88
+ defaultOpenedKeys: defaultOpenedMenuKeys,
89
+ inlineCollapsed: siderCollapsed,
90
+ items: menuItems ?? [],
91
+ selectedKeys: activeMenuKey ? [activeMenuKey] : [],
92
+ onSelect: onActiveMenuKeyChange
93
+ }
94
+ ) }) })
95
+ ]
96
+ }
97
+ );
98
+ }
99
+ const VefSider = react$1.memo(VefSiderBase);
100
+ VefSider.displayName = "VefSider";
101
+
102
+ exports.default = VefSider;
51
103
  /*! 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 */
@@ -1,20 +1,33 @@
1
- /*! VefFramework version: 1.0.97, build time: 2025-03-06T12:24:36.991Z, made by Venus. */
2
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("@emotion/react/jsx-runtime"),t=require("@emotion/react"),i=require("@vef-framework/shared"),o=require("motion/react"),r=require("react"),a=require("../hooks/use-layout-context.cjs"),l=require("../logo.svg.cjs"),s=require("../store.cjs"),n=t.css`
1
+ /*! VefFramework version: 1.0.99, build time: 2025-03-07T13:41:55.865Z, made by Venus. */
2
+ 'use strict';
3
+
4
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
5
+
6
+ const jsxRuntime = require('@emotion/react/jsx-runtime');
7
+ const react = require('@emotion/react');
8
+ const shared = require('@vef-framework/shared');
9
+ const react$1 = require('motion/react');
10
+ const react$2 = require('react');
11
+ const useLayoutContext = require('../hooks/use-layout-context.cjs');
12
+ const logo = require('../logo.svg.cjs');
13
+ const store = require('../store.cjs');
14
+
15
+ const titleStyle = react.css`
3
16
  flex: none;
4
17
  height: var(--vef-layout-header-height);
5
- border-bottom: ${i.themeVariables.lineWidth} ${i.themeVariables.lineType} ${i.themeVariables.colorBorderSecondary};
18
+ border-bottom: ${shared.themeVariables.lineWidth} ${shared.themeVariables.lineType} ${shared.themeVariables.colorBorderSecondary};
6
19
  display: flex;
7
20
  align-items: center;
8
- padding: 0 ${i.themeVariables.paddingSm};
21
+ padding: 0 ${shared.themeVariables.paddingSm};
9
22
  overflow: hidden;
10
23
  user-select: none;
11
24
 
12
25
  > div {
13
26
  flex: none;
14
27
  width: 55px;
15
- height: calc(${i.themeVariables.controlHeight} * 1.2);
28
+ height: calc(${shared.themeVariables.controlHeight} * 1.2);
16
29
  font-size: 0;
17
- ${i.styles.flexCenter}
30
+ ${shared.styles.flexCenter}
18
31
 
19
32
  > img {
20
33
  height: 100%;
@@ -26,13 +39,48 @@
26
39
  flex: auto;
27
40
  margin: 0;
28
41
  font-weight: bold;
29
- font-size: ${i.themeVariables.fontSizeLg};
30
- color: ${i.themeVariables.colorTextSlate};
42
+ font-size: ${shared.themeVariables.fontSizeLg};
43
+ color: ${shared.themeVariables.colorTextSlate};
31
44
  max-width: 156px;
32
45
  white-space: nowrap;
33
46
  overflow: hidden;
34
47
  text-align: center;
35
48
  text-overflow: ellipsis;
36
49
  }
37
- `;const c=r.memo((function VefTitleBase(){const[t,i]=a.useLayoutContextSelector((e=>[e.logo,e.title])),r=s.useLayoutStore((e=>e.siderCollapsed));return e.jsxs("div",{css:n,children:[e.jsx("div",{children:t||e.jsx("img",{alt:"VEF",src:l.default})}),e.jsx(o.AnimatePresence,{initial:!1,children:!r&&e.jsx(o.motion.h3,{layout:!0,animate:{opacity:1,x:0},exit:{opacity:0,x:32},initial:{opacity:0,x:-32},transition:{duration:.2,ease:"easeIn"},children:i||"VEF中后台系统"})})]})}));c.displayName="VefTitle",exports.default=c;
50
+ `;
51
+ const defaultTitle = "VEF\u4E2D\u540E\u53F0\u7CFB\u7EDF";
52
+ function VefTitleBase() {
53
+ const [logo$1, title] = useLayoutContext.useLayoutContextSelector((ctx) => [ctx.logo, ctx.title]);
54
+ const siderCollapsed = store.useLayoutStore((state) => state.siderCollapsed);
55
+ return /* @__PURE__ */ jsxRuntime.jsxs("div", { css: titleStyle, children: [
56
+ /* @__PURE__ */ jsxRuntime.jsx("div", { children: logo$1 || /* @__PURE__ */ jsxRuntime.jsx("img", { alt: "VEF", src: logo.default }) }),
57
+ /* @__PURE__ */ jsxRuntime.jsx(react$1.AnimatePresence, { initial: false, children: !siderCollapsed && /* @__PURE__ */ jsxRuntime.jsx(
58
+ react$1.motion.h3,
59
+ {
60
+ layout: true,
61
+ animate: {
62
+ opacity: 1,
63
+ x: 0
64
+ },
65
+ exit: {
66
+ opacity: 0,
67
+ x: 32
68
+ },
69
+ initial: {
70
+ opacity: 0,
71
+ x: -32
72
+ },
73
+ transition: {
74
+ duration: 0.2,
75
+ ease: "easeIn"
76
+ },
77
+ children: title || defaultTitle
78
+ }
79
+ ) })
80
+ ] });
81
+ }
82
+ const VefTitle = react$2.memo(VefTitleBase);
83
+ VefTitle.displayName = "VefTitle";
84
+
85
+ exports.default = VefTitle;
38
86
  /*! 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 */