@vef-framework/components 1.0.121 → 1.0.123
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.
- package/cjs/index.cjs +194 -0
- package/cjs/internal/base.css.cjs +7 -0
- package/cjs/internal/chart.cjs +21 -0
- package/cjs/internal/index.cjs +10 -0
- package/cjs/internal/modern-normalize.css.cjs +7 -0
- package/cjs/internal/utils.cjs +9 -0
- package/cjs/vef-access-denied/access-denied-icon.cjs +933 -0
- package/cjs/vef-access-denied/index.cjs +68 -0
- package/cjs/vef-access-denied/props.cjs +4 -0
- package/cjs/vef-action-buttons/index.cjs +80 -0
- package/cjs/vef-action-buttons/props.cjs +4 -0
- package/cjs/vef-approval-flow-editor/components/edge.cjs +92 -0
- package/cjs/vef-approval-flow-editor/components/label-value.cjs +41 -0
- package/cjs/vef-approval-flow-editor/components/node-content.cjs +56 -0
- package/cjs/vef-approval-flow-editor/components/node-selector.cjs +46 -0
- package/cjs/vef-approval-flow-editor/components/node-toolbar.cjs +26 -0
- package/cjs/vef-approval-flow-editor/components/nodes/approval.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/condition.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/end.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/handle.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/nodes/index.cjs +20 -0
- package/cjs/vef-approval-flow-editor/components/nodes/submit.cjs +29 -0
- package/cjs/vef-approval-flow-editor/components/selector-content.cjs +68 -0
- package/cjs/vef-approval-flow-editor/components/source-handle.cjs +45 -0
- package/cjs/vef-approval-flow-editor/components/target-handle.cjs +14 -0
- package/cjs/vef-approval-flow-editor/constants.cjs +226 -0
- package/cjs/vef-approval-flow-editor/helper.cjs +89 -0
- package/cjs/vef-approval-flow-editor/hooks/use-edges-interaction.cjs +28 -0
- package/cjs/vef-approval-flow-editor/hooks/use-element-selection.cjs +27 -0
- package/cjs/vef-approval-flow-editor/hooks/use-nodes-interaction.cjs +54 -0
- package/cjs/vef-approval-flow-editor/index.cjs +80 -0
- package/cjs/vef-approval-flow-editor/models/edge-node.cjs +24 -0
- package/cjs/vef-approval-flow-editor/models/flow-node.cjs +113 -0
- package/cjs/vef-approval-flow-editor/props.cjs +4 -0
- package/cjs/vef-approval-flow-editor/store.cjs +21 -0
- package/cjs/vef-approval-flow-editor/styles.cjs +53 -0
- package/cjs/vef-approval-flow-editor/types.cjs +19 -0
- package/cjs/vef-area-chart/index.cjs +46 -0
- package/cjs/vef-area-chart/props.cjs +4 -0
- package/cjs/vef-auto-sizer/index.cjs +11 -0
- package/cjs/vef-auto-sizer/props.cjs +4 -0
- package/cjs/vef-avatar/index.cjs +25 -0
- package/cjs/vef-avatar/props.cjs +4 -0
- package/cjs/vef-avatar-group/index.cjs +30 -0
- package/cjs/vef-avatar-group/props.cjs +4 -0
- package/cjs/vef-badge/index.cjs +52 -0
- package/cjs/vef-badge/props.cjs +4 -0
- package/cjs/vef-bar-chart/index.cjs +46 -0
- package/cjs/vef-bar-chart/props.cjs +4 -0
- package/cjs/vef-bool/hooks/use-bool-instance.cjs +37 -0
- package/cjs/vef-bool/index.cjs +65 -0
- package/cjs/vef-bool/props.cjs +4 -0
- package/cjs/vef-breadcrumb/index.cjs +53 -0
- package/cjs/vef-breadcrumb/props.cjs +4 -0
- package/cjs/vef-button/components/base-button.cjs +78 -0
- package/cjs/vef-button/index.cjs +156 -0
- package/cjs/vef-button/props.cjs +4 -0
- package/cjs/vef-card/index.cjs +30 -0
- package/cjs/vef-card/props.cjs +4 -0
- package/cjs/vef-card-meta/index.cjs +17 -0
- package/cjs/vef-card-meta/props.cjs +4 -0
- package/cjs/vef-chart-container/hooks/use-chart-container-context.cjs +17 -0
- package/cjs/vef-chart-container/index.cjs +128 -0
- package/cjs/vef-chart-container/props.cjs +4 -0
- package/cjs/vef-chart-legend-content/index.cjs +55 -0
- package/cjs/vef-chart-legend-content/props.cjs +4 -0
- package/cjs/vef-chart-tooltip-content/index.cjs +110 -0
- package/cjs/vef-chart-tooltip-content/props.cjs +4 -0
- package/cjs/vef-checkbox/hooks/use-checkbox-instance.cjs +23 -0
- package/cjs/vef-checkbox/hooks/use-data-options.cjs +43 -0
- package/cjs/vef-checkbox/index.cjs +93 -0
- package/cjs/vef-checkbox/props.cjs +4 -0
- package/cjs/vef-code-editor/hooks/use-change-handler.cjs +13 -0
- package/cjs/vef-code-editor/hooks/use-config-extensions.cjs +51 -0
- package/cjs/vef-code-editor/hooks/use-height-props.cjs +23 -0
- package/cjs/vef-code-editor/hooks/use-language-extensions.cjs +120 -0
- package/cjs/vef-code-editor/hooks/use-setup-options.cjs +40 -0
- package/cjs/vef-code-editor/index.cjs +62 -0
- package/cjs/vef-code-editor/props.cjs +4 -0
- package/cjs/vef-code-editor/styles.cjs +146 -0
- package/cjs/vef-col/index.cjs +16 -0
- package/cjs/vef-col/props.cjs +4 -0
- package/cjs/vef-color-picker/index.cjs +51 -0
- package/cjs/vef-color-picker/props.cjs +4 -0
- package/cjs/vef-compact/index.cjs +20 -0
- package/cjs/vef-compact/props.cjs +4 -0
- package/cjs/vef-config-provider/global-style.cjs +185 -0
- package/cjs/vef-config-provider/hooks/use-ui-config.cjs +129 -0
- package/cjs/vef-config-provider/index.cjs +128 -0
- package/cjs/vef-config-provider/props.cjs +4 -0
- package/cjs/vef-config-provider/store.cjs +26 -0
- package/cjs/vef-container/index.cjs +23 -0
- package/cjs/vef-container/props.cjs +4 -0
- package/cjs/vef-crud-page/components/crud-actions.cjs +37 -0
- package/cjs/vef-crud-page/components/crud-filter.cjs +59 -0
- package/cjs/vef-crud-page/components/crud-footer.cjs +125 -0
- package/cjs/vef-crud-page/components/crud-form-modal.cjs +58 -0
- package/cjs/vef-crud-page/components/crud-header.cjs +34 -0
- package/cjs/vef-crud-page/components/crud-table.cjs +81 -0
- package/cjs/vef-crud-page/hooks/use-action-buttons.cjs +40 -0
- package/cjs/vef-crud-page/hooks/use-crud-context.cjs +23 -0
- package/cjs/vef-crud-page/hooks/use-crud-schema.cjs +119 -0
- package/cjs/vef-crud-page/hooks/use-operation-buttons.cjs +63 -0
- package/cjs/vef-crud-page/index.cjs +155 -0
- package/cjs/vef-crud-page/props.cjs +4 -0
- package/cjs/vef-crud-page/store.cjs +147 -0
- package/cjs/vef-crud-page/types.cjs +4 -0
- package/cjs/vef-data-grid/index.cjs +90 -0
- package/cjs/vef-data-grid/props.cjs +4 -0
- package/cjs/vef-data-table/index.cjs +14 -0
- package/cjs/vef-data-table/props.cjs +4 -0
- package/cjs/vef-divider/index.cjs +29 -0
- package/cjs/vef-divider/props.cjs +4 -0
- package/cjs/vef-drawer/components/action-button-wrapper.cjs +54 -0
- package/cjs/vef-drawer/components/button-props.cjs +4 -0
- package/cjs/vef-drawer/components/cancel-action-button.cjs +26 -0
- package/cjs/vef-drawer/components/ok-action-button.cjs +25 -0
- package/cjs/vef-drawer/context.cjs +20 -0
- package/cjs/vef-drawer/index.cjs +165 -0
- package/cjs/vef-drawer/props.cjs +4 -0
- package/cjs/vef-dropdown/index.cjs +97 -0
- package/cjs/vef-dropdown/props.cjs +4 -0
- package/cjs/vef-dynamic-icon/index.cjs +51 -0
- package/cjs/vef-dynamic-icon/props.cjs +9 -0
- package/cjs/vef-empty/index.cjs +42 -0
- package/cjs/vef-empty/props.cjs +4 -0
- package/cjs/vef-empty-placeholder/index.cjs +25 -0
- package/cjs/vef-empty-placeholder/props.cjs +4 -0
- package/cjs/vef-error/error-icon.cjs +762 -0
- package/cjs/vef-error/index.cjs +72 -0
- package/cjs/vef-error/props.cjs +4 -0
- package/cjs/vef-filter/components/action-buttons.cjs +140 -0
- package/cjs/vef-filter/components/advanced-filter.cjs +77 -0
- package/cjs/vef-filter/components/basic-filter.cjs +55 -0
- package/cjs/vef-filter/components/fields/index.cjs +22 -0
- package/cjs/vef-filter/components/fields/input-number.cjs +95 -0
- package/cjs/vef-filter/components/fields/input.cjs +72 -0
- package/cjs/vef-filter/components/fields/props.cjs +4 -0
- package/cjs/vef-filter/components/fields/radio.cjs +114 -0
- package/cjs/vef-filter/components/fields/select.cjs +145 -0
- package/cjs/vef-filter/components/fields/tree-select.cjs +141 -0
- package/cjs/vef-filter/components/filter-field.cjs +24 -0
- package/cjs/vef-filter/components/filter-item.cjs +117 -0
- package/cjs/vef-filter/event.cjs +47 -0
- package/cjs/vef-filter/helper.cjs +18 -0
- package/cjs/vef-filter/hooks/use-action-handlers.cjs +73 -0
- package/cjs/vef-filter/hooks/use-computed-values.cjs +58 -0
- package/cjs/vef-filter/hooks/use-filter-context.cjs +23 -0
- package/cjs/vef-filter/hooks/use-filter-initialization.cjs +40 -0
- package/cjs/vef-filter/hooks/use-filter-instance.cjs +29 -0
- package/cjs/vef-filter/hooks/use-filter-items.cjs +26 -0
- package/cjs/vef-filter/hooks/use-filter-values-change.cjs +33 -0
- package/cjs/vef-filter/hooks/use-label-config.cjs +30 -0
- package/cjs/vef-filter/index.cjs +152 -0
- package/cjs/vef-filter/props.cjs +4 -0
- package/cjs/vef-filter/store.cjs +76 -0
- package/cjs/vef-filter/types.cjs +4 -0
- package/cjs/vef-flex/index.cjs +36 -0
- package/cjs/vef-flex/props.cjs +4 -0
- package/cjs/vef-float-button/index.cjs +54 -0
- package/cjs/vef-float-button/props.cjs +4 -0
- package/cjs/vef-float-button-group/index.cjs +25 -0
- package/cjs/vef-float-button-group/props.cjs +4 -0
- package/cjs/vef-form/components/fields/icon-select.cjs +70 -0
- package/cjs/vef-form/components/fields/index.cjs +28 -0
- package/cjs/vef-form/components/fields/input-number.cjs +128 -0
- package/cjs/vef-form/components/fields/input.cjs +137 -0
- package/cjs/vef-form/components/fields/password.cjs +120 -0
- package/cjs/vef-form/components/fields/props.cjs +4 -0
- package/cjs/vef-form/components/fields/radio.cjs +111 -0
- package/cjs/vef-form/components/fields/select.cjs +243 -0
- package/cjs/vef-form/components/fields/textarea.cjs +114 -0
- package/cjs/vef-form/components/fields/tree-select.cjs +239 -0
- package/cjs/vef-form/components/form-actions.cjs +63 -0
- package/cjs/vef-form/components/form-content.cjs +151 -0
- package/cjs/vef-form/components/form-field.cjs +27 -0
- package/cjs/vef-form/components/form-group.cjs +77 -0
- package/cjs/vef-form/components/form-hidden-item.cjs +41 -0
- package/cjs/vef-form/components/form-item.cjs +84 -0
- package/cjs/vef-form/components/form-row.cjs +103 -0
- package/cjs/vef-form/event.cjs +47 -0
- package/cjs/vef-form/helper.cjs +18 -0
- package/cjs/vef-form/hooks/use-action-handlers.cjs +133 -0
- package/cjs/vef-form/hooks/use-columns-layout.cjs +125 -0
- package/cjs/vef-form/hooks/use-computed-values.cjs +58 -0
- package/cjs/vef-form/hooks/use-form-context.cjs +19 -0
- package/cjs/vef-form/hooks/use-form-initialization.cjs +48 -0
- package/cjs/vef-form/hooks/use-form-instance.cjs +29 -0
- package/cjs/vef-form/hooks/use-form-values-change.cjs +33 -0
- package/cjs/vef-form/hooks/use-label-width.cjs +21 -0
- package/cjs/vef-form/index.cjs +179 -0
- package/cjs/vef-form/props.cjs +4 -0
- package/cjs/vef-form/store.cjs +70 -0
- package/cjs/vef-form/types.cjs +4 -0
- package/cjs/vef-form/validation-rules.cjs +311 -0
- package/cjs/vef-form-drawer/index.cjs +103 -0
- package/cjs/vef-form-drawer/props.cjs +4 -0
- package/cjs/vef-form-modal/index.cjs +100 -0
- package/cjs/vef-form-modal/props.cjs +4 -0
- package/cjs/vef-generic-select/index.cjs +86 -0
- package/cjs/vef-generic-select/props.cjs +4 -0
- package/cjs/vef-grid/index.cjs +94 -0
- package/cjs/vef-grid/props.cjs +7 -0
- package/cjs/vef-grid-item/index.cjs +57 -0
- package/cjs/vef-grid-item/props.cjs +4 -0
- package/cjs/vef-icon/index.cjs +55 -0
- package/cjs/vef-icon/props.cjs +4 -0
- package/cjs/vef-icon-select/index.cjs +180 -0
- package/cjs/vef-icon-select/props.cjs +4 -0
- package/cjs/vef-input/hooks/use-input-instance.cjs +18 -0
- package/cjs/vef-input/index.cjs +69 -0
- package/cjs/vef-input/props.cjs +4 -0
- package/cjs/vef-input-number/hooks/use-input-number-instance.cjs +16 -0
- package/cjs/vef-input-number/index.cjs +153 -0
- package/cjs/vef-input-number/props.cjs +4 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-change-handler.cjs +13 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-editor-options.cjs +34 -0
- package/cjs/vef-intellisense-code-editor/hooks/use-path.cjs +33 -0
- package/cjs/vef-intellisense-code-editor/index.cjs +47 -0
- package/cjs/vef-intellisense-code-editor/loader.cjs +142 -0
- package/cjs/vef-intellisense-code-editor/props.cjs +4 -0
- package/cjs/vef-intellisense-code-editor/styles.cjs +29 -0
- package/cjs/vef-intellisense-code-editor/themes/github-light.json.cjs +7 -0
- package/cjs/vef-json-viewer/index.cjs +41 -0
- package/cjs/vef-json-viewer/props.cjs +4 -0
- package/cjs/vef-layout/common-styles.cjs +13 -0
- package/cjs/vef-layout/components/content.cjs +18 -0
- package/cjs/vef-layout/components/font-size.cjs +73 -0
- package/cjs/vef-layout/components/fullscreen.cjs +28 -0
- package/cjs/vef-layout/components/header-action-icons.cjs +43 -0
- package/cjs/vef-layout/components/header-content.cjs +24 -0
- package/cjs/vef-layout/components/header.cjs +80 -0
- package/cjs/vef-layout/components/icon-boy.cjs +74 -0
- package/cjs/vef-layout/components/icon-girl.cjs +81 -0
- package/cjs/vef-layout/components/icon-menu-fold-left.cjs +28 -0
- package/cjs/vef-layout/components/icon-menu-unfold-left.cjs +28 -0
- package/cjs/vef-layout/components/menu-groups.cjs +145 -0
- package/cjs/vef-layout/components/message.cjs +16 -0
- package/cjs/vef-layout/components/search.cjs +16 -0
- package/cjs/vef-layout/components/sider.cjs +103 -0
- package/cjs/vef-layout/components/title.cjs +86 -0
- package/cjs/vef-layout/components/user-avatar.cjs +92 -0
- package/cjs/vef-layout/hooks/use-layout-context.cjs +15 -0
- package/cjs/vef-layout/index.cjs +41 -0
- package/cjs/vef-layout/logo.svg.cjs +7 -0
- package/cjs/vef-layout/props.cjs +4 -0
- package/cjs/vef-layout/store.cjs +21 -0
- package/cjs/vef-line-chart/index.cjs +43 -0
- package/cjs/vef-line-chart/props.cjs +4 -0
- package/cjs/vef-loading-placeholder/index.cjs +49 -0
- package/cjs/vef-loading-placeholder/props.cjs +4 -0
- package/cjs/vef-login/index.cjs +190 -0
- package/cjs/vef-login/login-icon.cjs +673 -0
- package/cjs/vef-login/props.cjs +4 -0
- package/cjs/vef-menu/index.cjs +84 -0
- package/cjs/vef-menu/props.cjs +4 -0
- package/cjs/vef-modal/components/action-button-wrapper.cjs +54 -0
- package/cjs/vef-modal/components/button-props.cjs +4 -0
- package/cjs/vef-modal/components/cancel-action-button.cjs +23 -0
- package/cjs/vef-modal/components/ok-action-button.cjs +25 -0
- package/cjs/vef-modal/context.cjs +20 -0
- package/cjs/vef-modal/index.cjs +247 -0
- package/cjs/vef-modal/props.cjs +4 -0
- package/cjs/vef-not-found/index.cjs +69 -0
- package/cjs/vef-not-found/not-found-icon.cjs +849 -0
- package/cjs/vef-not-found/props.cjs +4 -0
- package/cjs/vef-page/index.cjs +140 -0
- package/cjs/vef-page/props.cjs +4 -0
- package/cjs/vef-pagination/index.cjs +62 -0
- package/cjs/vef-pagination/props.cjs +16 -0
- package/cjs/vef-paragraph/index.cjs +94 -0
- package/cjs/vef-paragraph/props.cjs +4 -0
- package/cjs/vef-password/hooks/use-password-instance.cjs +16 -0
- package/cjs/vef-password/index.cjs +72 -0
- package/cjs/vef-password/props.cjs +4 -0
- package/cjs/vef-pie-chart/index.cjs +75 -0
- package/cjs/vef-pie-chart/props.cjs +4 -0
- package/cjs/vef-popconfirm/index.cjs +61 -0
- package/cjs/vef-popconfirm/props.cjs +4 -0
- package/cjs/vef-popover/index.cjs +39 -0
- package/cjs/vef-popover/props.cjs +4 -0
- package/cjs/vef-radio/hooks/use-data-options.cjs +43 -0
- package/cjs/vef-radio/hooks/use-radio-instance.cjs +23 -0
- package/cjs/vef-radio/index.cjs +93 -0
- package/cjs/vef-radio/props.cjs +4 -0
- package/cjs/vef-rate/hooks/use-rate-instance.cjs +16 -0
- package/cjs/vef-rate/index.cjs +35 -0
- package/cjs/vef-rate/props.cjs +4 -0
- package/cjs/vef-responsive-container/index.cjs +62 -0
- package/cjs/vef-responsive-container/props.cjs +4 -0
- package/cjs/vef-responsive-item/index.cjs +29 -0
- package/cjs/vef-responsive-item/props.cjs +4 -0
- package/cjs/vef-ribbon/index.cjs +43 -0
- package/cjs/vef-ribbon/props.cjs +4 -0
- package/cjs/vef-row/index.cjs +17 -0
- package/cjs/vef-row/props.cjs +4 -0
- package/cjs/vef-scroll-area/components/scrollbar.cjs +64 -0
- package/cjs/vef-scroll-area/index.cjs +82 -0
- package/cjs/vef-scroll-area/props.cjs +4 -0
- package/cjs/vef-segment/index.cjs +41 -0
- package/cjs/vef-segment/props.cjs +4 -0
- package/cjs/vef-select/components/option.cjs +34 -0
- package/cjs/vef-select/hooks/use-data-options.cjs +50 -0
- package/cjs/vef-select/hooks/use-field-names.cjs +24 -0
- package/cjs/vef-select/hooks/use-render-label.cjs +32 -0
- package/cjs/vef-select/hooks/use-render-option.cjs +22 -0
- package/cjs/vef-select/hooks/use-select-instance.cjs +23 -0
- package/cjs/vef-select/index.cjs +105 -0
- package/cjs/vef-select/props.cjs +4 -0
- package/cjs/vef-slider/hooks/use-slider-instance.cjs +16 -0
- package/cjs/vef-slider/index.cjs +39 -0
- package/cjs/vef-slider/props.cjs +4 -0
- package/cjs/vef-sortable-list/components/overlay-item.cjs +39 -0
- package/cjs/vef-sortable-list/components/sortable-item.cjs +83 -0
- package/cjs/vef-sortable-list/hooks/use-merged-items.cjs +24 -0
- package/cjs/vef-sortable-list/index.cjs +119 -0
- package/cjs/vef-sortable-list/props.cjs +4 -0
- package/cjs/vef-space/index.cjs +30 -0
- package/cjs/vef-space/props.cjs +4 -0
- package/cjs/vef-spin/index.cjs +17 -0
- package/cjs/vef-spin/props.cjs +4 -0
- package/cjs/vef-splitter/index.cjs +25 -0
- package/cjs/vef-splitter/props.cjs +4 -0
- package/cjs/vef-splitter-panel/index.cjs +17 -0
- package/cjs/vef-splitter-panel/props.cjs +4 -0
- package/cjs/vef-status/index.cjs +42 -0
- package/cjs/vef-status/props.cjs +4 -0
- package/cjs/vef-table/components/columns/bool.cjs +96 -0
- package/cjs/vef-table/components/columns/code.cjs +15 -0
- package/cjs/vef-table/components/columns/data-dictionary.cjs +97 -0
- package/cjs/vef-table/components/columns/enum.cjs +106 -0
- package/cjs/vef-table/components/columns/file.cjs +15 -0
- package/cjs/vef-table/components/columns/icon.cjs +15 -0
- package/cjs/vef-table/components/columns/id.cjs +87 -0
- package/cjs/vef-table/components/columns/image.cjs +16 -0
- package/cjs/vef-table/components/columns/index.cjs +36 -0
- package/cjs/vef-table/components/columns/markdown.cjs +15 -0
- package/cjs/vef-table/components/columns/number.cjs +88 -0
- package/cjs/vef-table/components/columns/props.cjs +4 -0
- package/cjs/vef-table/components/columns/render.cjs +33 -0
- package/cjs/vef-table/components/columns/rich-text.cjs +15 -0
- package/cjs/vef-table/components/columns/text.cjs +93 -0
- package/cjs/vef-table/components/columns-settings.cjs +242 -0
- package/cjs/vef-table/components/operation-buttons.cjs +243 -0
- package/cjs/vef-table/components/settings-icon.cjs +24 -0
- package/cjs/vef-table/components/table-footer.cjs +121 -0
- package/cjs/vef-table/helper.cjs +18 -0
- package/cjs/vef-table/hooks/use-computed-batch-buttons.cjs +36 -0
- package/cjs/vef-table/hooks/use-computed-columns.cjs +23 -0
- package/cjs/vef-table/hooks/use-computed-values.cjs +41 -0
- package/cjs/vef-table/hooks/use-data.cjs +60 -0
- package/cjs/vef-table/hooks/use-default-column-configs.cjs +30 -0
- package/cjs/vef-table/hooks/use-display-value.cjs +39 -0
- package/cjs/vef-table/hooks/use-helper-columns.cjs +70 -0
- package/cjs/vef-table/hooks/use-operation-column-width.cjs +53 -0
- package/cjs/vef-table/hooks/use-pagination-props.cjs +47 -0
- package/cjs/vef-table/hooks/use-row-props.cjs +42 -0
- package/cjs/vef-table/hooks/use-row-selection-config.cjs +115 -0
- package/cjs/vef-table/hooks/use-selected-rows.cjs +29 -0
- package/cjs/vef-table/hooks/use-table-columns.cjs +59 -0
- package/cjs/vef-table/hooks/use-table-context.cjs +26 -0
- package/cjs/vef-table/hooks/use-table-instance.cjs +18 -0
- package/cjs/vef-table/hooks/use-table-summary.cjs +45 -0
- package/cjs/vef-table/hooks/use-table-width.cjs +16 -0
- package/cjs/vef-table/index.cjs +281 -0
- package/cjs/vef-table/props.cjs +4 -0
- package/cjs/vef-table/store.cjs +22 -0
- package/cjs/vef-table/types.cjs +4 -0
- package/cjs/vef-tabs/index.cjs +30 -0
- package/cjs/vef-tabs/props.cjs +4 -0
- package/cjs/vef-tag/index.cjs +33 -0
- package/cjs/vef-tag/props.cjs +4 -0
- package/cjs/vef-temporal-picker/helper.cjs +60 -0
- package/cjs/vef-temporal-picker/hooks/use-dayjs-value.cjs +21 -0
- package/cjs/vef-temporal-picker/hooks/use-temporal-limit.cjs +37 -0
- package/cjs/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +22 -0
- package/cjs/vef-temporal-picker/index.cjs +130 -0
- package/cjs/vef-temporal-picker/props.cjs +4 -0
- package/cjs/vef-temporal-range-picker/helper.cjs +60 -0
- package/cjs/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +26 -0
- package/cjs/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +37 -0
- package/cjs/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +22 -0
- package/cjs/vef-temporal-range-picker/index.cjs +133 -0
- package/cjs/vef-temporal-range-picker/props.cjs +7 -0
- package/cjs/vef-text/index.cjs +85 -0
- package/cjs/vef-text/props.cjs +4 -0
- package/cjs/vef-textarea/hooks/use-textarea-instance.cjs +16 -0
- package/cjs/vef-textarea/index.cjs +72 -0
- package/cjs/vef-textarea/props.cjs +4 -0
- package/cjs/vef-title/index.cjs +101 -0
- package/cjs/vef-title/props.cjs +4 -0
- package/cjs/vef-tooltip/index.cjs +40 -0
- package/cjs/vef-tooltip/props.cjs +4 -0
- package/cjs/vef-tree-select/hooks/use-change-handler.cjs +36 -0
- package/cjs/vef-tree-select/hooks/use-data-options.cjs +48 -0
- package/cjs/vef-tree-select/hooks/use-tree-select-instance.cjs +23 -0
- package/cjs/vef-tree-select/index.cjs +94 -0
- package/cjs/vef-tree-select/props.cjs +4 -0
- package/cjs/vef-virtual-grid/index.cjs +121 -0
- package/cjs/vef-virtual-grid/props.cjs +4 -0
- package/cjs/vef-virtual-list/index.cjs +234 -0
- package/cjs/vef-virtual-list/props.cjs +4 -0
- package/esm/index.js +97 -0
- package/esm/internal/base.css.js +3 -0
- package/esm/internal/chart.js +19 -0
- package/esm/internal/index.js +5 -0
- package/esm/internal/modern-normalize.css.js +3 -0
- package/esm/internal/utils.js +7 -0
- package/esm/vef-access-denied/access-denied-icon.js +929 -0
- package/esm/vef-access-denied/index.js +64 -0
- package/esm/vef-access-denied/props.js +2 -0
- package/esm/vef-action-buttons/index.js +76 -0
- package/esm/vef-action-buttons/props.js +2 -0
- package/esm/vef-approval-flow-editor/components/edge.js +88 -0
- package/esm/vef-approval-flow-editor/components/label-value.js +37 -0
- package/esm/vef-approval-flow-editor/components/node-content.js +52 -0
- package/esm/vef-approval-flow-editor/components/node-selector.js +42 -0
- package/esm/vef-approval-flow-editor/components/node-toolbar.js +22 -0
- package/esm/vef-approval-flow-editor/components/nodes/approval.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/condition.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/end.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/handle.js +25 -0
- package/esm/vef-approval-flow-editor/components/nodes/index.js +18 -0
- package/esm/vef-approval-flow-editor/components/nodes/submit.js +25 -0
- package/esm/vef-approval-flow-editor/components/selector-content.js +64 -0
- package/esm/vef-approval-flow-editor/components/source-handle.js +41 -0
- package/esm/vef-approval-flow-editor/components/target-handle.js +10 -0
- package/esm/vef-approval-flow-editor/constants.js +219 -0
- package/esm/vef-approval-flow-editor/helper.js +84 -0
- package/esm/vef-approval-flow-editor/hooks/use-edges-interaction.js +26 -0
- package/esm/vef-approval-flow-editor/hooks/use-element-selection.js +25 -0
- package/esm/vef-approval-flow-editor/hooks/use-nodes-interaction.js +52 -0
- package/esm/vef-approval-flow-editor/index.js +76 -0
- package/esm/vef-approval-flow-editor/models/edge-node.js +21 -0
- package/esm/vef-approval-flow-editor/models/flow-node.js +106 -0
- package/esm/vef-approval-flow-editor/props.js +2 -0
- package/esm/vef-approval-flow-editor/store.js +17 -0
- package/esm/vef-approval-flow-editor/styles.js +50 -0
- package/esm/vef-approval-flow-editor/types.js +16 -0
- package/esm/vef-area-chart/index.js +42 -0
- package/esm/vef-area-chart/props.js +2 -0
- package/esm/vef-auto-sizer/index.js +7 -0
- package/esm/vef-auto-sizer/props.js +2 -0
- package/esm/vef-avatar/index.js +21 -0
- package/esm/vef-avatar/props.js +2 -0
- package/esm/vef-avatar-group/index.js +26 -0
- package/esm/vef-avatar-group/props.js +2 -0
- package/esm/vef-badge/index.js +48 -0
- package/esm/vef-badge/props.js +2 -0
- package/esm/vef-bar-chart/index.js +42 -0
- package/esm/vef-bar-chart/props.js +2 -0
- package/esm/vef-bool/hooks/use-bool-instance.js +35 -0
- package/esm/vef-bool/index.js +61 -0
- package/esm/vef-bool/props.js +2 -0
- package/esm/vef-breadcrumb/index.js +49 -0
- package/esm/vef-breadcrumb/props.js +2 -0
- package/esm/vef-button/components/base-button.js +74 -0
- package/esm/vef-button/index.js +152 -0
- package/esm/vef-button/props.js +2 -0
- package/esm/vef-card/index.js +26 -0
- package/esm/vef-card/props.js +2 -0
- package/esm/vef-card-meta/index.js +13 -0
- package/esm/vef-card-meta/props.js +2 -0
- package/esm/vef-chart-container/hooks/use-chart-container-context.js +13 -0
- package/esm/vef-chart-container/index.js +124 -0
- package/esm/vef-chart-container/props.js +2 -0
- package/esm/vef-chart-legend-content/index.js +50 -0
- package/esm/vef-chart-legend-content/props.js +2 -0
- package/esm/vef-chart-tooltip-content/index.js +106 -0
- package/esm/vef-chart-tooltip-content/props.js +2 -0
- package/esm/vef-checkbox/hooks/use-checkbox-instance.js +21 -0
- package/esm/vef-checkbox/hooks/use-data-options.js +41 -0
- package/esm/vef-checkbox/index.js +89 -0
- package/esm/vef-checkbox/props.js +2 -0
- package/esm/vef-code-editor/hooks/use-change-handler.js +11 -0
- package/esm/vef-code-editor/hooks/use-config-extensions.js +49 -0
- package/esm/vef-code-editor/hooks/use-height-props.js +21 -0
- package/esm/vef-code-editor/hooks/use-language-extensions.js +118 -0
- package/esm/vef-code-editor/hooks/use-setup-options.js +38 -0
- package/esm/vef-code-editor/index.js +58 -0
- package/esm/vef-code-editor/props.js +2 -0
- package/esm/vef-code-editor/styles.js +144 -0
- package/esm/vef-col/index.js +12 -0
- package/esm/vef-col/props.js +2 -0
- package/esm/vef-color-picker/index.js +47 -0
- package/esm/vef-color-picker/props.js +2 -0
- package/esm/vef-compact/index.js +16 -0
- package/esm/vef-compact/props.js +2 -0
- package/esm/vef-config-provider/global-style.js +182 -0
- package/esm/vef-config-provider/hooks/use-ui-config.js +127 -0
- package/esm/vef-config-provider/index.js +124 -0
- package/esm/vef-config-provider/props.js +2 -0
- package/esm/vef-config-provider/store.js +22 -0
- package/esm/vef-container/index.js +19 -0
- package/esm/vef-container/props.js +2 -0
- package/esm/vef-crud-page/components/crud-actions.js +33 -0
- package/esm/vef-crud-page/components/crud-filter.js +55 -0
- package/esm/vef-crud-page/components/crud-footer.js +121 -0
- package/esm/vef-crud-page/components/crud-form-modal.js +54 -0
- package/esm/vef-crud-page/components/crud-header.js +30 -0
- package/esm/vef-crud-page/components/crud-table.js +77 -0
- package/esm/vef-crud-page/hooks/use-action-buttons.js +38 -0
- package/esm/vef-crud-page/hooks/use-crud-context.js +21 -0
- package/esm/vef-crud-page/hooks/use-crud-schema.js +117 -0
- package/esm/vef-crud-page/hooks/use-operation-buttons.js +61 -0
- package/esm/vef-crud-page/index.js +151 -0
- package/esm/vef-crud-page/props.js +2 -0
- package/esm/vef-crud-page/store.js +143 -0
- package/esm/vef-crud-page/types.js +2 -0
- package/esm/vef-data-grid/index.js +86 -0
- package/esm/vef-data-grid/props.js +2 -0
- package/esm/vef-data-table/index.js +10 -0
- package/esm/vef-data-table/props.js +2 -0
- package/esm/vef-divider/index.js +25 -0
- package/esm/vef-divider/props.js +2 -0
- package/esm/vef-drawer/components/action-button-wrapper.js +50 -0
- package/esm/vef-drawer/components/button-props.js +2 -0
- package/esm/vef-drawer/components/cancel-action-button.js +22 -0
- package/esm/vef-drawer/components/ok-action-button.js +21 -0
- package/esm/vef-drawer/context.js +16 -0
- package/esm/vef-drawer/index.js +160 -0
- package/esm/vef-drawer/props.js +2 -0
- package/esm/vef-dropdown/index.js +93 -0
- package/esm/vef-dropdown/props.js +2 -0
- package/esm/vef-dynamic-icon/index.js +47 -0
- package/esm/vef-dynamic-icon/props.js +7 -0
- package/esm/vef-empty/index.js +38 -0
- package/esm/vef-empty/props.js +2 -0
- package/esm/vef-empty-placeholder/index.js +21 -0
- package/esm/vef-empty-placeholder/props.js +2 -0
- package/esm/vef-error/error-icon.js +758 -0
- package/esm/vef-error/index.js +68 -0
- package/esm/vef-error/props.js +2 -0
- package/esm/vef-filter/components/action-buttons.js +136 -0
- package/esm/vef-filter/components/advanced-filter.js +73 -0
- package/esm/vef-filter/components/basic-filter.js +51 -0
- package/esm/vef-filter/components/fields/index.js +20 -0
- package/esm/vef-filter/components/fields/input-number.js +91 -0
- package/esm/vef-filter/components/fields/input.js +68 -0
- package/esm/vef-filter/components/fields/props.js +2 -0
- package/esm/vef-filter/components/fields/radio.js +110 -0
- package/esm/vef-filter/components/fields/select.js +141 -0
- package/esm/vef-filter/components/fields/tree-select.js +137 -0
- package/esm/vef-filter/components/filter-field.js +20 -0
- package/esm/vef-filter/components/filter-item.js +113 -0
- package/esm/vef-filter/event.js +45 -0
- package/esm/vef-filter/helper.js +16 -0
- package/esm/vef-filter/hooks/use-action-handlers.js +71 -0
- package/esm/vef-filter/hooks/use-computed-values.js +56 -0
- package/esm/vef-filter/hooks/use-filter-context.js +19 -0
- package/esm/vef-filter/hooks/use-filter-initialization.js +38 -0
- package/esm/vef-filter/hooks/use-filter-instance.js +27 -0
- package/esm/vef-filter/hooks/use-filter-items.js +24 -0
- package/esm/vef-filter/hooks/use-filter-values-change.js +31 -0
- package/esm/vef-filter/hooks/use-label-config.js +28 -0
- package/esm/vef-filter/index.js +148 -0
- package/esm/vef-filter/props.js +2 -0
- package/esm/vef-filter/store.js +72 -0
- package/esm/vef-filter/types.js +2 -0
- package/esm/vef-flex/index.js +32 -0
- package/esm/vef-flex/props.js +2 -0
- package/esm/vef-float-button/index.js +50 -0
- package/esm/vef-float-button/props.js +2 -0
- package/esm/vef-float-button-group/index.js +21 -0
- package/esm/vef-float-button-group/props.js +2 -0
- package/esm/vef-form/components/fields/icon-select.js +66 -0
- package/esm/vef-form/components/fields/index.js +26 -0
- package/esm/vef-form/components/fields/input-number.js +124 -0
- package/esm/vef-form/components/fields/input.js +133 -0
- package/esm/vef-form/components/fields/password.js +116 -0
- package/esm/vef-form/components/fields/props.js +2 -0
- package/esm/vef-form/components/fields/radio.js +107 -0
- package/esm/vef-form/components/fields/select.js +239 -0
- package/esm/vef-form/components/fields/textarea.js +110 -0
- package/esm/vef-form/components/fields/tree-select.js +235 -0
- package/esm/vef-form/components/form-actions.js +59 -0
- package/esm/vef-form/components/form-content.js +147 -0
- package/esm/vef-form/components/form-field.js +23 -0
- package/esm/vef-form/components/form-group.js +73 -0
- package/esm/vef-form/components/form-hidden-item.js +37 -0
- package/esm/vef-form/components/form-item.js +80 -0
- package/esm/vef-form/components/form-row.js +99 -0
- package/esm/vef-form/event.js +45 -0
- package/esm/vef-form/helper.js +16 -0
- package/esm/vef-form/hooks/use-action-handlers.js +131 -0
- package/esm/vef-form/hooks/use-columns-layout.js +123 -0
- package/esm/vef-form/hooks/use-computed-values.js +56 -0
- package/esm/vef-form/hooks/use-form-context.js +15 -0
- package/esm/vef-form/hooks/use-form-initialization.js +46 -0
- package/esm/vef-form/hooks/use-form-instance.js +27 -0
- package/esm/vef-form/hooks/use-form-values-change.js +31 -0
- package/esm/vef-form/hooks/use-label-width.js +19 -0
- package/esm/vef-form/index.js +175 -0
- package/esm/vef-form/props.js +2 -0
- package/esm/vef-form/store.js +66 -0
- package/esm/vef-form/types.js +2 -0
- package/esm/vef-form/validation-rules.js +287 -0
- package/esm/vef-form-drawer/index.js +99 -0
- package/esm/vef-form-drawer/props.js +2 -0
- package/esm/vef-form-modal/index.js +96 -0
- package/esm/vef-form-modal/props.js +2 -0
- package/esm/vef-generic-select/index.js +82 -0
- package/esm/vef-generic-select/props.js +2 -0
- package/esm/vef-grid/index.js +90 -0
- package/esm/vef-grid/props.js +5 -0
- package/esm/vef-grid-item/index.js +53 -0
- package/esm/vef-grid-item/props.js +2 -0
- package/esm/vef-icon/index.js +51 -0
- package/esm/vef-icon/props.js +2 -0
- package/esm/vef-icon-select/index.js +176 -0
- package/esm/vef-icon-select/props.js +2 -0
- package/esm/vef-input/hooks/use-input-instance.js +16 -0
- package/esm/vef-input/index.js +65 -0
- package/esm/vef-input/props.js +2 -0
- package/esm/vef-input-number/hooks/use-input-number-instance.js +14 -0
- package/esm/vef-input-number/index.js +149 -0
- package/esm/vef-input-number/props.js +2 -0
- package/esm/vef-intellisense-code-editor/hooks/use-change-handler.js +11 -0
- package/esm/vef-intellisense-code-editor/hooks/use-editor-options.js +32 -0
- package/esm/vef-intellisense-code-editor/hooks/use-path.js +31 -0
- package/esm/vef-intellisense-code-editor/index.js +43 -0
- package/esm/vef-intellisense-code-editor/loader.js +121 -0
- package/esm/vef-intellisense-code-editor/props.js +2 -0
- package/esm/vef-intellisense-code-editor/styles.js +27 -0
- package/esm/vef-intellisense-code-editor/themes/github-light.json.js +3 -0
- package/esm/vef-json-viewer/index.js +37 -0
- package/esm/vef-json-viewer/props.js +2 -0
- package/esm/vef-layout/common-styles.js +11 -0
- package/esm/vef-layout/components/content.js +14 -0
- package/esm/vef-layout/components/font-size.js +69 -0
- package/esm/vef-layout/components/fullscreen.js +24 -0
- package/esm/vef-layout/components/header-action-icons.js +39 -0
- package/esm/vef-layout/components/header-content.js +20 -0
- package/esm/vef-layout/components/header.js +76 -0
- package/esm/vef-layout/components/icon-boy.js +70 -0
- package/esm/vef-layout/components/icon-girl.js +77 -0
- package/esm/vef-layout/components/icon-menu-fold-left.js +24 -0
- package/esm/vef-layout/components/icon-menu-unfold-left.js +24 -0
- package/esm/vef-layout/components/menu-groups.js +141 -0
- package/esm/vef-layout/components/message.js +12 -0
- package/esm/vef-layout/components/search.js +12 -0
- package/esm/vef-layout/components/sider.js +99 -0
- package/esm/vef-layout/components/title.js +82 -0
- package/esm/vef-layout/components/user-avatar.js +88 -0
- package/esm/vef-layout/hooks/use-layout-context.js +11 -0
- package/esm/vef-layout/index.js +37 -0
- package/esm/vef-layout/logo.svg.js +3 -0
- package/esm/vef-layout/props.js +2 -0
- package/esm/vef-layout/store.js +17 -0
- package/esm/vef-line-chart/index.js +39 -0
- package/esm/vef-line-chart/props.js +2 -0
- package/esm/vef-loading-placeholder/index.js +45 -0
- package/esm/vef-loading-placeholder/props.js +2 -0
- package/esm/vef-login/index.js +186 -0
- package/esm/vef-login/login-icon.js +669 -0
- package/esm/vef-login/props.js +2 -0
- package/esm/vef-menu/index.js +80 -0
- package/esm/vef-menu/props.js +2 -0
- package/esm/vef-modal/components/action-button-wrapper.js +50 -0
- package/esm/vef-modal/components/button-props.js +2 -0
- package/esm/vef-modal/components/cancel-action-button.js +19 -0
- package/esm/vef-modal/components/ok-action-button.js +21 -0
- package/esm/vef-modal/context.js +16 -0
- package/esm/vef-modal/index.js +242 -0
- package/esm/vef-modal/props.js +2 -0
- package/esm/vef-not-found/index.js +65 -0
- package/esm/vef-not-found/not-found-icon.js +845 -0
- package/esm/vef-not-found/props.js +2 -0
- package/esm/vef-page/index.js +136 -0
- package/esm/vef-page/props.js +2 -0
- package/esm/vef-pagination/index.js +58 -0
- package/esm/vef-pagination/props.js +14 -0
- package/esm/vef-paragraph/index.js +90 -0
- package/esm/vef-paragraph/props.js +2 -0
- package/esm/vef-password/hooks/use-password-instance.js +14 -0
- package/esm/vef-password/index.js +68 -0
- package/esm/vef-password/props.js +2 -0
- package/esm/vef-pie-chart/index.js +71 -0
- package/esm/vef-pie-chart/props.js +2 -0
- package/esm/vef-popconfirm/index.js +57 -0
- package/esm/vef-popconfirm/props.js +2 -0
- package/esm/vef-popover/index.js +35 -0
- package/esm/vef-popover/props.js +2 -0
- package/esm/vef-radio/hooks/use-data-options.js +41 -0
- package/esm/vef-radio/hooks/use-radio-instance.js +21 -0
- package/esm/vef-radio/index.js +89 -0
- package/esm/vef-radio/props.js +2 -0
- package/esm/vef-rate/hooks/use-rate-instance.js +14 -0
- package/esm/vef-rate/index.js +31 -0
- package/esm/vef-rate/props.js +2 -0
- package/esm/vef-responsive-container/index.js +58 -0
- package/esm/vef-responsive-container/props.js +2 -0
- package/esm/vef-responsive-item/index.js +25 -0
- package/esm/vef-responsive-item/props.js +2 -0
- package/esm/vef-ribbon/index.js +39 -0
- package/esm/vef-ribbon/props.js +2 -0
- package/esm/vef-row/index.js +13 -0
- package/esm/vef-row/props.js +2 -0
- package/esm/vef-scroll-area/components/scrollbar.js +60 -0
- package/esm/vef-scroll-area/index.js +78 -0
- package/esm/vef-scroll-area/props.js +2 -0
- package/esm/vef-segment/index.js +37 -0
- package/esm/vef-segment/props.js +2 -0
- package/esm/vef-select/components/option.js +30 -0
- package/esm/vef-select/hooks/use-data-options.js +48 -0
- package/esm/vef-select/hooks/use-field-names.js +22 -0
- package/esm/vef-select/hooks/use-render-label.js +30 -0
- package/esm/vef-select/hooks/use-render-option.js +20 -0
- package/esm/vef-select/hooks/use-select-instance.js +21 -0
- package/esm/vef-select/index.js +101 -0
- package/esm/vef-select/props.js +2 -0
- package/esm/vef-slider/hooks/use-slider-instance.js +14 -0
- package/esm/vef-slider/index.js +35 -0
- package/esm/vef-slider/props.js +2 -0
- package/esm/vef-sortable-list/components/overlay-item.js +35 -0
- package/esm/vef-sortable-list/components/sortable-item.js +79 -0
- package/esm/vef-sortable-list/hooks/use-merged-items.js +22 -0
- package/esm/vef-sortable-list/index.js +115 -0
- package/esm/vef-sortable-list/props.js +2 -0
- package/esm/vef-space/index.js +26 -0
- package/esm/vef-space/props.js +2 -0
- package/esm/vef-spin/index.js +13 -0
- package/esm/vef-spin/props.js +2 -0
- package/esm/vef-splitter/index.js +21 -0
- package/esm/vef-splitter/props.js +2 -0
- package/esm/vef-splitter-panel/index.js +13 -0
- package/esm/vef-splitter-panel/props.js +2 -0
- package/esm/vef-status/index.js +38 -0
- package/esm/vef-status/props.js +2 -0
- package/esm/vef-table/components/columns/bool.js +92 -0
- package/esm/vef-table/components/columns/code.js +11 -0
- package/esm/vef-table/components/columns/data-dictionary.js +93 -0
- package/esm/vef-table/components/columns/enum.js +102 -0
- package/esm/vef-table/components/columns/file.js +11 -0
- package/esm/vef-table/components/columns/icon.js +11 -0
- package/esm/vef-table/components/columns/id.js +83 -0
- package/esm/vef-table/components/columns/image.js +12 -0
- package/esm/vef-table/components/columns/index.js +34 -0
- package/esm/vef-table/components/columns/markdown.js +11 -0
- package/esm/vef-table/components/columns/number.js +84 -0
- package/esm/vef-table/components/columns/props.js +2 -0
- package/esm/vef-table/components/columns/render.js +29 -0
- package/esm/vef-table/components/columns/rich-text.js +11 -0
- package/esm/vef-table/components/columns/text.js +89 -0
- package/esm/vef-table/components/columns-settings.js +238 -0
- package/esm/vef-table/components/operation-buttons.js +239 -0
- package/esm/vef-table/components/settings-icon.js +20 -0
- package/esm/vef-table/components/table-footer.js +117 -0
- package/esm/vef-table/helper.js +16 -0
- package/esm/vef-table/hooks/use-computed-batch-buttons.js +34 -0
- package/esm/vef-table/hooks/use-computed-columns.js +21 -0
- package/esm/vef-table/hooks/use-computed-values.js +39 -0
- package/esm/vef-table/hooks/use-data.js +58 -0
- package/esm/vef-table/hooks/use-default-column-configs.js +28 -0
- package/esm/vef-table/hooks/use-display-value.js +37 -0
- package/esm/vef-table/hooks/use-helper-columns.js +68 -0
- package/esm/vef-table/hooks/use-operation-column-width.js +51 -0
- package/esm/vef-table/hooks/use-pagination-props.js +45 -0
- package/esm/vef-table/hooks/use-row-props.js +40 -0
- package/esm/vef-table/hooks/use-row-selection-config.js +113 -0
- package/esm/vef-table/hooks/use-selected-rows.js +27 -0
- package/esm/vef-table/hooks/use-table-columns.js +57 -0
- package/esm/vef-table/hooks/use-table-context.js +22 -0
- package/esm/vef-table/hooks/use-table-instance.js +16 -0
- package/esm/vef-table/hooks/use-table-summary.js +43 -0
- package/esm/vef-table/hooks/use-table-width.js +14 -0
- package/esm/vef-table/index.js +277 -0
- package/esm/vef-table/props.js +2 -0
- package/esm/vef-table/store.js +18 -0
- package/esm/vef-table/types.js +2 -0
- package/esm/vef-tabs/index.js +26 -0
- package/esm/vef-tabs/props.js +2 -0
- package/esm/vef-tag/index.js +29 -0
- package/esm/vef-tag/props.js +2 -0
- package/esm/vef-temporal-picker/helper.js +58 -0
- package/esm/vef-temporal-picker/hooks/use-dayjs-value.js +19 -0
- package/esm/vef-temporal-picker/hooks/use-temporal-limit.js +35 -0
- package/esm/vef-temporal-picker/hooks/use-temporal-picker-instance.js +20 -0
- package/esm/vef-temporal-picker/index.js +126 -0
- package/esm/vef-temporal-picker/props.js +2 -0
- package/esm/vef-temporal-range-picker/helper.js +58 -0
- package/esm/vef-temporal-range-picker/hooks/use-dayjs-values.js +24 -0
- package/esm/vef-temporal-range-picker/hooks/use-temporal-limit.js +35 -0
- package/esm/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +20 -0
- package/esm/vef-temporal-range-picker/index.js +129 -0
- package/esm/vef-temporal-range-picker/props.js +5 -0
- package/esm/vef-text/index.js +81 -0
- package/esm/vef-text/props.js +2 -0
- package/esm/vef-textarea/hooks/use-textarea-instance.js +14 -0
- package/esm/vef-textarea/index.js +68 -0
- package/esm/vef-textarea/props.js +2 -0
- package/esm/vef-title/index.js +97 -0
- package/esm/vef-title/props.js +2 -0
- package/esm/vef-tooltip/index.js +36 -0
- package/esm/vef-tooltip/props.js +2 -0
- package/esm/vef-tree-select/hooks/use-change-handler.js +34 -0
- package/esm/vef-tree-select/hooks/use-data-options.js +46 -0
- package/esm/vef-tree-select/hooks/use-tree-select-instance.js +21 -0
- package/esm/vef-tree-select/index.js +90 -0
- package/esm/vef-tree-select/props.js +2 -0
- package/esm/vef-virtual-grid/index.js +117 -0
- package/esm/vef-virtual-grid/props.js +2 -0
- package/esm/vef-virtual-list/index.js +230 -0
- package/esm/vef-virtual-list/props.js +2 -0
- package/package.json +14 -13
- package/types/vef-dynamic-icon/props.d.ts +1 -1
- package/es/index.js +0 -1
- package/es/internal/base.css.js +0 -491
- package/es/internal/chart.js +0 -1
- package/es/internal/index.js +0 -1
- package/es/internal/modern-normalize.css.js +0 -214
- package/es/internal/utils.js +0 -1
- package/es/vef-access-denied/access-denied-icon.js +0 -1
- package/es/vef-access-denied/index.js +0 -27
- package/es/vef-action-buttons/index.js +0 -1
- package/es/vef-approval-flow-editor/components/edge.js +0 -6
- package/es/vef-approval-flow-editor/components/label-value.js +0 -17
- package/es/vef-approval-flow-editor/components/node-content.js +0 -16
- package/es/vef-approval-flow-editor/components/node-selector.js +0 -12
- package/es/vef-approval-flow-editor/components/node-toolbar.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/approval.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/condition.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/end.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/handle.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/index.js +0 -1
- package/es/vef-approval-flow-editor/components/nodes/submit.js +0 -1
- package/es/vef-approval-flow-editor/components/selector-content.js +0 -24
- package/es/vef-approval-flow-editor/components/source-handle.js +0 -1
- package/es/vef-approval-flow-editor/components/target-handle.js +0 -1
- package/es/vef-approval-flow-editor/constants.js +0 -1
- package/es/vef-approval-flow-editor/helper.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-edges-interaction.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-element-selection.js +0 -1
- package/es/vef-approval-flow-editor/hooks/use-nodes-interaction.js +0 -1
- package/es/vef-approval-flow-editor/index.js +0 -1
- package/es/vef-approval-flow-editor/models/edge-node.js +0 -1
- package/es/vef-approval-flow-editor/models/flow-node.js +0 -1
- package/es/vef-approval-flow-editor/store.js +0 -1
- package/es/vef-approval-flow-editor/styles.js +0 -41
- package/es/vef-approval-flow-editor/types.js +0 -1
- package/es/vef-area-chart/index.js +0 -1
- package/es/vef-auto-sizer/index.js +0 -1
- package/es/vef-avatar/index.js +0 -1
- package/es/vef-avatar-group/index.js +0 -1
- package/es/vef-badge/index.js +0 -1
- package/es/vef-bar-chart/index.js +0 -1
- package/es/vef-bool/hooks/use-bool-instance.js +0 -1
- package/es/vef-bool/index.js +0 -1
- package/es/vef-breadcrumb/index.js +0 -1
- package/es/vef-button/components/base-button.js +0 -1
- package/es/vef-button/index.js +0 -1
- package/es/vef-card/index.js +0 -1
- package/es/vef-card-meta/index.js +0 -1
- package/es/vef-chart-container/hooks/use-chart-container-context.js +0 -1
- package/es/vef-chart-container/index.js +0 -57
- package/es/vef-chart-legend-content/index.js +0 -16
- package/es/vef-chart-tooltip-content/index.js +0 -42
- package/es/vef-checkbox/hooks/use-checkbox-instance.js +0 -1
- package/es/vef-checkbox/hooks/use-data-options.js +0 -1
- package/es/vef-checkbox/index.js +0 -3
- package/es/vef-code-editor/hooks/use-change-handler.js +0 -1
- package/es/vef-code-editor/hooks/use-config-extensions.js +0 -1
- package/es/vef-code-editor/hooks/use-height-props.js +0 -1
- package/es/vef-code-editor/hooks/use-language-extensions.js +0 -1
- package/es/vef-code-editor/hooks/use-setup-options.js +0 -1
- package/es/vef-code-editor/index.js +0 -1
- package/es/vef-code-editor/styles.js +0 -137
- package/es/vef-col/index.js +0 -1
- package/es/vef-color-picker/index.js +0 -1
- package/es/vef-compact/index.js +0 -1
- package/es/vef-config-provider/global-style.js +0 -173
- package/es/vef-config-provider/hooks/use-ui-config.js +0 -1
- package/es/vef-config-provider/index.js +0 -5
- package/es/vef-config-provider/store.js +0 -1
- package/es/vef-container/index.js +0 -1
- package/es/vef-crud-page/components/crud-actions.js +0 -1
- package/es/vef-crud-page/components/crud-filter.js +0 -1
- package/es/vef-crud-page/components/crud-footer.js +0 -7
- package/es/vef-crud-page/components/crud-form-modal.js +0 -1
- package/es/vef-crud-page/components/crud-header.js +0 -1
- package/es/vef-crud-page/components/crud-table.js +0 -1
- package/es/vef-crud-page/hooks/use-action-buttons.js +0 -1
- package/es/vef-crud-page/hooks/use-crud-context.js +0 -1
- package/es/vef-crud-page/hooks/use-crud-schema.js +0 -1
- package/es/vef-crud-page/hooks/use-operation-buttons.js +0 -1
- package/es/vef-crud-page/index.js +0 -1
- package/es/vef-crud-page/store.js +0 -1
- package/es/vef-data-grid/index.js +0 -1
- package/es/vef-data-table/index.js +0 -1
- package/es/vef-divider/index.js +0 -1
- package/es/vef-drawer/components/action-button-wrapper.js +0 -1
- package/es/vef-drawer/components/button-props.js +0 -1
- package/es/vef-drawer/components/cancel-action-button.js +0 -1
- package/es/vef-drawer/components/ok-action-button.js +0 -1
- package/es/vef-drawer/context.js +0 -1
- package/es/vef-drawer/index.js +0 -8
- package/es/vef-dropdown/index.js +0 -1
- package/es/vef-dynamic-icon/index.js +0 -1
- package/es/vef-dynamic-icon/props.js +0 -1
- package/es/vef-empty/index.js +0 -1
- package/es/vef-empty-placeholder/index.js +0 -5
- package/es/vef-error/error-icon.js +0 -1
- package/es/vef-error/index.js +0 -28
- package/es/vef-filter/components/action-buttons.js +0 -19
- package/es/vef-filter/components/advanced-filter.js +0 -9
- package/es/vef-filter/components/basic-filter.js +0 -19
- package/es/vef-filter/components/fields/index.js +0 -1
- package/es/vef-filter/components/fields/input-number.js +0 -1
- package/es/vef-filter/components/fields/input.js +0 -1
- package/es/vef-filter/components/fields/radio.js +0 -1
- package/es/vef-filter/components/fields/select.js +0 -1
- package/es/vef-filter/components/fields/tree-select.js +0 -1
- package/es/vef-filter/components/filter-field.js +0 -1
- package/es/vef-filter/components/filter-item.js +0 -1
- package/es/vef-filter/event.js +0 -1
- package/es/vef-filter/helper.js +0 -1
- package/es/vef-filter/hooks/use-action-handlers.js +0 -1
- package/es/vef-filter/hooks/use-computed-values.js +0 -1
- package/es/vef-filter/hooks/use-filter-context.js +0 -1
- package/es/vef-filter/hooks/use-filter-initialization.js +0 -1
- package/es/vef-filter/hooks/use-filter-instance.js +0 -1
- package/es/vef-filter/hooks/use-filter-items.js +0 -1
- package/es/vef-filter/hooks/use-filter-values-change.js +0 -1
- package/es/vef-filter/hooks/use-label-config.js +0 -1
- package/es/vef-filter/index.js +0 -8
- package/es/vef-filter/store.js +0 -1
- package/es/vef-flex/index.js +0 -1
- package/es/vef-float-button/index.js +0 -1
- package/es/vef-float-button-group/index.js +0 -1
- package/es/vef-form/components/fields/icon-select.js +0 -1
- package/es/vef-form/components/fields/index.js +0 -1
- package/es/vef-form/components/fields/input-number.js +0 -1
- package/es/vef-form/components/fields/input.js +0 -1
- package/es/vef-form/components/fields/password.js +0 -1
- package/es/vef-form/components/fields/radio.js +0 -1
- package/es/vef-form/components/fields/select.js +0 -1
- package/es/vef-form/components/fields/textarea.js +0 -1
- package/es/vef-form/components/fields/tree-select.js +0 -1
- package/es/vef-form/components/form-actions.js +0 -3
- package/es/vef-form/components/form-content.js +0 -4
- package/es/vef-form/components/form-field.js +0 -1
- package/es/vef-form/components/form-group.js +0 -11
- package/es/vef-form/components/form-hidden-item.js +0 -1
- package/es/vef-form/components/form-item.js +0 -1
- package/es/vef-form/components/form-row.js +0 -1
- package/es/vef-form/event.js +0 -1
- package/es/vef-form/helper.js +0 -1
- package/es/vef-form/hooks/use-action-handlers.js +0 -1
- package/es/vef-form/hooks/use-columns-layout.js +0 -1
- package/es/vef-form/hooks/use-computed-values.js +0 -1
- package/es/vef-form/hooks/use-form-context.js +0 -1
- package/es/vef-form/hooks/use-form-initialization.js +0 -1
- package/es/vef-form/hooks/use-form-instance.js +0 -1
- package/es/vef-form/hooks/use-form-values-change.js +0 -1
- package/es/vef-form/hooks/use-label-width.js +0 -1
- package/es/vef-form/index.js +0 -3
- package/es/vef-form/store.js +0 -1
- package/es/vef-form/validation-rules.js +0 -1
- package/es/vef-form-drawer/index.js +0 -1
- package/es/vef-form-modal/index.js +0 -1
- package/es/vef-generic-select/index.js +0 -1
- package/es/vef-grid/index.js +0 -24
- package/es/vef-grid/props.js +0 -1
- package/es/vef-grid-item/index.js +0 -1
- package/es/vef-icon/index.js +0 -1
- package/es/vef-icon-select/index.js +0 -40
- package/es/vef-input/hooks/use-input-instance.js +0 -1
- package/es/vef-input/index.js +0 -1
- package/es/vef-input-number/hooks/use-input-number-instance.js +0 -1
- package/es/vef-input-number/index.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-change-handler.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-editor-options.js +0 -1
- package/es/vef-intellisense-code-editor/hooks/use-path.js +0 -1
- package/es/vef-intellisense-code-editor/index.js +0 -1
- package/es/vef-intellisense-code-editor/loader.js +0 -1
- package/es/vef-intellisense-code-editor/styles.js +0 -20
- package/es/vef-intellisense-code-editor/themes/github-light.json.js +0 -349
- package/es/vef-json-viewer/index.js +0 -1
- package/es/vef-layout/common-styles.js +0 -4
- package/es/vef-layout/components/content.js +0 -1
- package/es/vef-layout/components/font-size.js +0 -1
- package/es/vef-layout/components/fullscreen.js +0 -1
- package/es/vef-layout/components/header-action-icons.js +0 -15
- package/es/vef-layout/components/header-content.js +0 -1
- package/es/vef-layout/components/header.js +0 -12
- package/es/vef-layout/components/icon-boy.js +0 -1
- package/es/vef-layout/components/icon-girl.js +0 -1
- package/es/vef-layout/components/icon-menu-fold-left.js +0 -1
- package/es/vef-layout/components/icon-menu-unfold-left.js +0 -1
- package/es/vef-layout/components/menu-groups.js +0 -32
- package/es/vef-layout/components/message.js +0 -1
- package/es/vef-layout/components/search.js +0 -1
- package/es/vef-layout/components/sider.js +0 -49
- package/es/vef-layout/components/title.js +0 -36
- package/es/vef-layout/components/user-avatar.js +0 -16
- package/es/vef-layout/hooks/use-layout-context.js +0 -1
- package/es/vef-layout/index.js +0 -5
- package/es/vef-layout/logo.svg.js +0 -1
- package/es/vef-layout/store.js +0 -1
- package/es/vef-line-chart/index.js +0 -1
- package/es/vef-loading-placeholder/index.js +0 -7
- package/es/vef-login/index.js +0 -54
- package/es/vef-login/login-icon.js +0 -1
- package/es/vef-menu/index.js +0 -6
- package/es/vef-modal/components/action-button-wrapper.js +0 -1
- package/es/vef-modal/components/button-props.js +0 -1
- package/es/vef-modal/components/cancel-action-button.js +0 -1
- package/es/vef-modal/components/ok-action-button.js +0 -1
- package/es/vef-modal/context.js +0 -1
- package/es/vef-modal/index.js +0 -4
- package/es/vef-not-found/index.js +0 -28
- package/es/vef-not-found/not-found-icon.js +0 -1
- package/es/vef-page/index.js +0 -58
- package/es/vef-pagination/index.js +0 -1
- package/es/vef-pagination/props.js +0 -1
- package/es/vef-paragraph/index.js +0 -1
- package/es/vef-password/hooks/use-password-instance.js +0 -1
- package/es/vef-password/index.js +0 -1
- package/es/vef-pie-chart/index.js +0 -8
- package/es/vef-popconfirm/index.js +0 -1
- package/es/vef-popover/index.js +0 -1
- package/es/vef-radio/hooks/use-data-options.js +0 -1
- package/es/vef-radio/hooks/use-radio-instance.js +0 -1
- package/es/vef-radio/index.js +0 -3
- package/es/vef-rate/hooks/use-rate-instance.js +0 -1
- package/es/vef-rate/index.js +0 -1
- package/es/vef-responsive-container/index.js +0 -5
- package/es/vef-responsive-item/index.js +0 -3
- package/es/vef-ribbon/index.js +0 -1
- package/es/vef-row/index.js +0 -1
- package/es/vef-scroll-area/components/scrollbar.js +0 -32
- package/es/vef-scroll-area/index.js +0 -11
- package/es/vef-segment/index.js +0 -1
- package/es/vef-select/components/option.js +0 -9
- package/es/vef-select/hooks/use-data-options.js +0 -1
- package/es/vef-select/hooks/use-field-names.js +0 -1
- package/es/vef-select/hooks/use-render-label.js +0 -8
- package/es/vef-select/hooks/use-render-option.js +0 -1
- package/es/vef-select/hooks/use-select-instance.js +0 -1
- package/es/vef-select/index.js +0 -1
- package/es/vef-slider/hooks/use-slider-instance.js +0 -1
- package/es/vef-slider/index.js +0 -1
- package/es/vef-sortable-list/components/overlay-item.js +0 -5
- package/es/vef-sortable-list/components/sortable-item.js +0 -5
- package/es/vef-sortable-list/hooks/use-merged-items.js +0 -1
- package/es/vef-sortable-list/index.js +0 -1
- package/es/vef-space/index.js +0 -1
- package/es/vef-spin/index.js +0 -1
- package/es/vef-splitter/index.js +0 -1
- package/es/vef-splitter-panel/index.js +0 -1
- package/es/vef-status/index.js +0 -1
- package/es/vef-table/components/columns/bool.js +0 -1
- package/es/vef-table/components/columns/code.js +0 -1
- package/es/vef-table/components/columns/data-dictionary.js +0 -1
- package/es/vef-table/components/columns/enum.js +0 -1
- package/es/vef-table/components/columns/file.js +0 -1
- package/es/vef-table/components/columns/icon.js +0 -1
- package/es/vef-table/components/columns/id.js +0 -1
- package/es/vef-table/components/columns/image.js +0 -1
- package/es/vef-table/components/columns/index.js +0 -1
- package/es/vef-table/components/columns/markdown.js +0 -1
- package/es/vef-table/components/columns/number.js +0 -1
- package/es/vef-table/components/columns/render.js +0 -1
- package/es/vef-table/components/columns/rich-text.js +0 -1
- package/es/vef-table/components/columns/text.js +0 -1
- package/es/vef-table/components/columns-settings.js +0 -52
- package/es/vef-table/components/operation-buttons.js +0 -10
- package/es/vef-table/components/settings-icon.js +0 -3
- package/es/vef-table/components/table-footer.js +0 -17
- package/es/vef-table/helper.js +0 -1
- package/es/vef-table/hooks/use-computed-batch-buttons.js +0 -1
- package/es/vef-table/hooks/use-computed-columns.js +0 -1
- package/es/vef-table/hooks/use-computed-values.js +0 -1
- package/es/vef-table/hooks/use-data.js +0 -1
- package/es/vef-table/hooks/use-default-column-configs.js +0 -1
- package/es/vef-table/hooks/use-display-value.js +0 -1
- package/es/vef-table/hooks/use-helper-columns.js +0 -1
- package/es/vef-table/hooks/use-operation-column-width.js +0 -1
- package/es/vef-table/hooks/use-pagination-props.js +0 -1
- package/es/vef-table/hooks/use-row-props.js +0 -1
- package/es/vef-table/hooks/use-row-selection-config.js +0 -1
- package/es/vef-table/hooks/use-selected-rows.js +0 -1
- package/es/vef-table/hooks/use-table-columns.js +0 -1
- package/es/vef-table/hooks/use-table-context.js +0 -1
- package/es/vef-table/hooks/use-table-instance.js +0 -1
- package/es/vef-table/hooks/use-table-summary.js +0 -1
- package/es/vef-table/hooks/use-table-width.js +0 -1
- package/es/vef-table/index.js +0 -54
- package/es/vef-table/store.js +0 -1
- package/es/vef-tabs/index.js +0 -1
- package/es/vef-tag/index.js +0 -1
- package/es/vef-temporal-picker/helper.js +0 -1
- package/es/vef-temporal-picker/hooks/use-dayjs-value.js +0 -1
- package/es/vef-temporal-picker/hooks/use-temporal-limit.js +0 -1
- package/es/vef-temporal-picker/hooks/use-temporal-picker-instance.js +0 -1
- package/es/vef-temporal-picker/index.js +0 -1
- package/es/vef-temporal-range-picker/helper.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-dayjs-values.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-temporal-limit.js +0 -1
- package/es/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +0 -1
- package/es/vef-temporal-range-picker/index.js +0 -1
- package/es/vef-temporal-range-picker/props.js +0 -1
- package/es/vef-text/index.js +0 -1
- package/es/vef-textarea/hooks/use-textarea-instance.js +0 -1
- package/es/vef-textarea/index.js +0 -1
- package/es/vef-title/index.js +0 -13
- package/es/vef-tooltip/index.js +0 -1
- package/es/vef-tree-select/hooks/use-change-handler.js +0 -1
- package/es/vef-tree-select/hooks/use-data-options.js +0 -1
- package/es/vef-tree-select/hooks/use-tree-select-instance.js +0 -1
- package/es/vef-tree-select/index.js +0 -1
- package/es/vef-virtual-grid/index.js +0 -12
- package/es/vef-virtual-list/index.js +0 -18
- package/lib/index.cjs +0 -1
- package/lib/internal/base.css.cjs +0 -491
- package/lib/internal/chart.cjs +0 -1
- package/lib/internal/index.cjs +0 -1
- package/lib/internal/modern-normalize.css.cjs +0 -214
- package/lib/internal/utils.cjs +0 -1
- package/lib/vef-access-denied/access-denied-icon.cjs +0 -1
- package/lib/vef-access-denied/index.cjs +0 -27
- package/lib/vef-access-denied/props.cjs +0 -1
- package/lib/vef-action-buttons/index.cjs +0 -1
- package/lib/vef-action-buttons/props.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/edge.cjs +0 -6
- package/lib/vef-approval-flow-editor/components/label-value.cjs +0 -17
- package/lib/vef-approval-flow-editor/components/node-content.cjs +0 -16
- package/lib/vef-approval-flow-editor/components/node-selector.cjs +0 -12
- package/lib/vef-approval-flow-editor/components/node-toolbar.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/approval.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/condition.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/end.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/index.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/nodes/submit.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/selector-content.cjs +0 -24
- package/lib/vef-approval-flow-editor/components/source-handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/components/target-handle.cjs +0 -1
- package/lib/vef-approval-flow-editor/constants.cjs +0 -1
- package/lib/vef-approval-flow-editor/helper.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-edges-interaction.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-element-selection.cjs +0 -1
- package/lib/vef-approval-flow-editor/hooks/use-nodes-interaction.cjs +0 -1
- package/lib/vef-approval-flow-editor/index.cjs +0 -1
- package/lib/vef-approval-flow-editor/models/edge-node.cjs +0 -1
- package/lib/vef-approval-flow-editor/models/flow-node.cjs +0 -1
- package/lib/vef-approval-flow-editor/props.cjs +0 -1
- package/lib/vef-approval-flow-editor/store.cjs +0 -1
- package/lib/vef-approval-flow-editor/styles.cjs +0 -41
- package/lib/vef-approval-flow-editor/types.cjs +0 -1
- package/lib/vef-area-chart/index.cjs +0 -1
- package/lib/vef-area-chart/props.cjs +0 -1
- package/lib/vef-auto-sizer/index.cjs +0 -1
- package/lib/vef-auto-sizer/props.cjs +0 -1
- package/lib/vef-avatar/index.cjs +0 -1
- package/lib/vef-avatar/props.cjs +0 -1
- package/lib/vef-avatar-group/index.cjs +0 -1
- package/lib/vef-avatar-group/props.cjs +0 -1
- package/lib/vef-badge/index.cjs +0 -1
- package/lib/vef-badge/props.cjs +0 -1
- package/lib/vef-bar-chart/index.cjs +0 -1
- package/lib/vef-bar-chart/props.cjs +0 -1
- package/lib/vef-bool/hooks/use-bool-instance.cjs +0 -1
- package/lib/vef-bool/index.cjs +0 -1
- package/lib/vef-bool/props.cjs +0 -1
- package/lib/vef-breadcrumb/index.cjs +0 -1
- package/lib/vef-breadcrumb/props.cjs +0 -1
- package/lib/vef-button/components/base-button.cjs +0 -1
- package/lib/vef-button/index.cjs +0 -1
- package/lib/vef-button/props.cjs +0 -1
- package/lib/vef-card/index.cjs +0 -1
- package/lib/vef-card/props.cjs +0 -1
- package/lib/vef-card-meta/index.cjs +0 -1
- package/lib/vef-card-meta/props.cjs +0 -1
- package/lib/vef-chart-container/hooks/use-chart-container-context.cjs +0 -1
- package/lib/vef-chart-container/index.cjs +0 -57
- package/lib/vef-chart-container/props.cjs +0 -1
- package/lib/vef-chart-legend-content/index.cjs +0 -16
- package/lib/vef-chart-legend-content/props.cjs +0 -1
- package/lib/vef-chart-tooltip-content/index.cjs +0 -42
- package/lib/vef-chart-tooltip-content/props.cjs +0 -1
- package/lib/vef-checkbox/hooks/use-checkbox-instance.cjs +0 -1
- package/lib/vef-checkbox/hooks/use-data-options.cjs +0 -1
- package/lib/vef-checkbox/index.cjs +0 -3
- package/lib/vef-checkbox/props.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-config-extensions.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-height-props.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-language-extensions.cjs +0 -1
- package/lib/vef-code-editor/hooks/use-setup-options.cjs +0 -1
- package/lib/vef-code-editor/index.cjs +0 -1
- package/lib/vef-code-editor/props.cjs +0 -1
- package/lib/vef-code-editor/styles.cjs +0 -137
- package/lib/vef-col/index.cjs +0 -1
- package/lib/vef-col/props.cjs +0 -1
- package/lib/vef-color-picker/index.cjs +0 -1
- package/lib/vef-color-picker/props.cjs +0 -1
- package/lib/vef-compact/index.cjs +0 -1
- package/lib/vef-compact/props.cjs +0 -1
- package/lib/vef-config-provider/global-style.cjs +0 -173
- package/lib/vef-config-provider/hooks/use-ui-config.cjs +0 -1
- package/lib/vef-config-provider/index.cjs +0 -5
- package/lib/vef-config-provider/props.cjs +0 -1
- package/lib/vef-config-provider/store.cjs +0 -1
- package/lib/vef-container/index.cjs +0 -1
- package/lib/vef-container/props.cjs +0 -1
- package/lib/vef-crud-page/components/crud-actions.cjs +0 -1
- package/lib/vef-crud-page/components/crud-filter.cjs +0 -1
- package/lib/vef-crud-page/components/crud-footer.cjs +0 -7
- package/lib/vef-crud-page/components/crud-form-modal.cjs +0 -1
- package/lib/vef-crud-page/components/crud-header.cjs +0 -1
- package/lib/vef-crud-page/components/crud-table.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-action-buttons.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-crud-context.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-crud-schema.cjs +0 -1
- package/lib/vef-crud-page/hooks/use-operation-buttons.cjs +0 -1
- package/lib/vef-crud-page/index.cjs +0 -1
- package/lib/vef-crud-page/props.cjs +0 -1
- package/lib/vef-crud-page/store.cjs +0 -1
- package/lib/vef-crud-page/types.cjs +0 -1
- package/lib/vef-data-grid/index.cjs +0 -1
- package/lib/vef-data-grid/props.cjs +0 -1
- package/lib/vef-data-table/index.cjs +0 -1
- package/lib/vef-data-table/props.cjs +0 -1
- package/lib/vef-divider/index.cjs +0 -1
- package/lib/vef-divider/props.cjs +0 -1
- package/lib/vef-drawer/components/action-button-wrapper.cjs +0 -1
- package/lib/vef-drawer/components/button-props.cjs +0 -1
- package/lib/vef-drawer/components/cancel-action-button.cjs +0 -1
- package/lib/vef-drawer/components/ok-action-button.cjs +0 -1
- package/lib/vef-drawer/context.cjs +0 -1
- package/lib/vef-drawer/index.cjs +0 -8
- package/lib/vef-drawer/props.cjs +0 -1
- package/lib/vef-dropdown/index.cjs +0 -1
- package/lib/vef-dropdown/props.cjs +0 -1
- package/lib/vef-dynamic-icon/index.cjs +0 -1
- package/lib/vef-dynamic-icon/props.cjs +0 -1
- package/lib/vef-empty/index.cjs +0 -1
- package/lib/vef-empty/props.cjs +0 -1
- package/lib/vef-empty-placeholder/index.cjs +0 -5
- package/lib/vef-empty-placeholder/props.cjs +0 -1
- package/lib/vef-error/error-icon.cjs +0 -1
- package/lib/vef-error/index.cjs +0 -28
- package/lib/vef-error/props.cjs +0 -1
- package/lib/vef-filter/components/action-buttons.cjs +0 -19
- package/lib/vef-filter/components/advanced-filter.cjs +0 -9
- package/lib/vef-filter/components/basic-filter.cjs +0 -19
- package/lib/vef-filter/components/fields/index.cjs +0 -1
- package/lib/vef-filter/components/fields/input-number.cjs +0 -1
- package/lib/vef-filter/components/fields/input.cjs +0 -1
- package/lib/vef-filter/components/fields/props.cjs +0 -1
- package/lib/vef-filter/components/fields/radio.cjs +0 -1
- package/lib/vef-filter/components/fields/select.cjs +0 -1
- package/lib/vef-filter/components/fields/tree-select.cjs +0 -1
- package/lib/vef-filter/components/filter-field.cjs +0 -1
- package/lib/vef-filter/components/filter-item.cjs +0 -1
- package/lib/vef-filter/event.cjs +0 -1
- package/lib/vef-filter/helper.cjs +0 -1
- package/lib/vef-filter/hooks/use-action-handlers.cjs +0 -1
- package/lib/vef-filter/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-context.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-initialization.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-instance.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-items.cjs +0 -1
- package/lib/vef-filter/hooks/use-filter-values-change.cjs +0 -1
- package/lib/vef-filter/hooks/use-label-config.cjs +0 -1
- package/lib/vef-filter/index.cjs +0 -8
- package/lib/vef-filter/props.cjs +0 -1
- package/lib/vef-filter/store.cjs +0 -1
- package/lib/vef-filter/types.cjs +0 -1
- package/lib/vef-flex/index.cjs +0 -1
- package/lib/vef-flex/props.cjs +0 -1
- package/lib/vef-float-button/index.cjs +0 -1
- package/lib/vef-float-button/props.cjs +0 -1
- package/lib/vef-float-button-group/index.cjs +0 -1
- package/lib/vef-float-button-group/props.cjs +0 -1
- package/lib/vef-form/components/fields/icon-select.cjs +0 -1
- package/lib/vef-form/components/fields/index.cjs +0 -1
- package/lib/vef-form/components/fields/input-number.cjs +0 -1
- package/lib/vef-form/components/fields/input.cjs +0 -1
- package/lib/vef-form/components/fields/password.cjs +0 -1
- package/lib/vef-form/components/fields/props.cjs +0 -1
- package/lib/vef-form/components/fields/radio.cjs +0 -1
- package/lib/vef-form/components/fields/select.cjs +0 -1
- package/lib/vef-form/components/fields/textarea.cjs +0 -1
- package/lib/vef-form/components/fields/tree-select.cjs +0 -1
- package/lib/vef-form/components/form-actions.cjs +0 -3
- package/lib/vef-form/components/form-content.cjs +0 -4
- package/lib/vef-form/components/form-field.cjs +0 -1
- package/lib/vef-form/components/form-group.cjs +0 -11
- package/lib/vef-form/components/form-hidden-item.cjs +0 -1
- package/lib/vef-form/components/form-item.cjs +0 -1
- package/lib/vef-form/components/form-row.cjs +0 -1
- package/lib/vef-form/event.cjs +0 -1
- package/lib/vef-form/helper.cjs +0 -1
- package/lib/vef-form/hooks/use-action-handlers.cjs +0 -1
- package/lib/vef-form/hooks/use-columns-layout.cjs +0 -1
- package/lib/vef-form/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-form/hooks/use-form-context.cjs +0 -1
- package/lib/vef-form/hooks/use-form-initialization.cjs +0 -1
- package/lib/vef-form/hooks/use-form-instance.cjs +0 -1
- package/lib/vef-form/hooks/use-form-values-change.cjs +0 -1
- package/lib/vef-form/hooks/use-label-width.cjs +0 -1
- package/lib/vef-form/index.cjs +0 -3
- package/lib/vef-form/props.cjs +0 -1
- package/lib/vef-form/store.cjs +0 -1
- package/lib/vef-form/types.cjs +0 -1
- package/lib/vef-form/validation-rules.cjs +0 -1
- package/lib/vef-form-drawer/index.cjs +0 -1
- package/lib/vef-form-drawer/props.cjs +0 -1
- package/lib/vef-form-modal/index.cjs +0 -1
- package/lib/vef-form-modal/props.cjs +0 -1
- package/lib/vef-generic-select/index.cjs +0 -1
- package/lib/vef-generic-select/props.cjs +0 -1
- package/lib/vef-grid/index.cjs +0 -24
- package/lib/vef-grid/props.cjs +0 -1
- package/lib/vef-grid-item/index.cjs +0 -1
- package/lib/vef-grid-item/props.cjs +0 -1
- package/lib/vef-icon/index.cjs +0 -1
- package/lib/vef-icon/props.cjs +0 -1
- package/lib/vef-icon-select/index.cjs +0 -40
- package/lib/vef-icon-select/props.cjs +0 -1
- package/lib/vef-input/hooks/use-input-instance.cjs +0 -1
- package/lib/vef-input/index.cjs +0 -1
- package/lib/vef-input/props.cjs +0 -1
- package/lib/vef-input-number/hooks/use-input-number-instance.cjs +0 -1
- package/lib/vef-input-number/index.cjs +0 -1
- package/lib/vef-input-number/props.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-editor-options.cjs +0 -1
- package/lib/vef-intellisense-code-editor/hooks/use-path.cjs +0 -1
- package/lib/vef-intellisense-code-editor/index.cjs +0 -1
- package/lib/vef-intellisense-code-editor/loader.cjs +0 -1
- package/lib/vef-intellisense-code-editor/props.cjs +0 -1
- package/lib/vef-intellisense-code-editor/styles.cjs +0 -20
- package/lib/vef-intellisense-code-editor/themes/github-light.json.cjs +0 -349
- package/lib/vef-json-viewer/index.cjs +0 -1
- package/lib/vef-json-viewer/props.cjs +0 -1
- package/lib/vef-layout/common-styles.cjs +0 -4
- package/lib/vef-layout/components/content.cjs +0 -1
- package/lib/vef-layout/components/font-size.cjs +0 -1
- package/lib/vef-layout/components/fullscreen.cjs +0 -1
- package/lib/vef-layout/components/header-action-icons.cjs +0 -15
- package/lib/vef-layout/components/header-content.cjs +0 -1
- package/lib/vef-layout/components/header.cjs +0 -12
- package/lib/vef-layout/components/icon-boy.cjs +0 -1
- package/lib/vef-layout/components/icon-girl.cjs +0 -1
- package/lib/vef-layout/components/icon-menu-fold-left.cjs +0 -1
- package/lib/vef-layout/components/icon-menu-unfold-left.cjs +0 -1
- package/lib/vef-layout/components/menu-groups.cjs +0 -32
- package/lib/vef-layout/components/message.cjs +0 -1
- package/lib/vef-layout/components/search.cjs +0 -1
- package/lib/vef-layout/components/sider.cjs +0 -49
- package/lib/vef-layout/components/title.cjs +0 -36
- package/lib/vef-layout/components/user-avatar.cjs +0 -16
- package/lib/vef-layout/hooks/use-layout-context.cjs +0 -1
- package/lib/vef-layout/index.cjs +0 -5
- package/lib/vef-layout/logo.svg.cjs +0 -1
- package/lib/vef-layout/props.cjs +0 -1
- package/lib/vef-layout/store.cjs +0 -1
- package/lib/vef-line-chart/index.cjs +0 -1
- package/lib/vef-line-chart/props.cjs +0 -1
- package/lib/vef-loading-placeholder/index.cjs +0 -7
- package/lib/vef-loading-placeholder/props.cjs +0 -1
- package/lib/vef-login/index.cjs +0 -54
- package/lib/vef-login/login-icon.cjs +0 -1
- package/lib/vef-login/props.cjs +0 -1
- package/lib/vef-menu/index.cjs +0 -6
- package/lib/vef-menu/props.cjs +0 -1
- package/lib/vef-modal/components/action-button-wrapper.cjs +0 -1
- package/lib/vef-modal/components/button-props.cjs +0 -1
- package/lib/vef-modal/components/cancel-action-button.cjs +0 -1
- package/lib/vef-modal/components/ok-action-button.cjs +0 -1
- package/lib/vef-modal/context.cjs +0 -1
- package/lib/vef-modal/index.cjs +0 -4
- package/lib/vef-modal/props.cjs +0 -1
- package/lib/vef-not-found/index.cjs +0 -28
- package/lib/vef-not-found/not-found-icon.cjs +0 -1
- package/lib/vef-not-found/props.cjs +0 -1
- package/lib/vef-page/index.cjs +0 -58
- package/lib/vef-page/props.cjs +0 -1
- package/lib/vef-pagination/index.cjs +0 -1
- package/lib/vef-pagination/props.cjs +0 -1
- package/lib/vef-paragraph/index.cjs +0 -1
- package/lib/vef-paragraph/props.cjs +0 -1
- package/lib/vef-password/hooks/use-password-instance.cjs +0 -1
- package/lib/vef-password/index.cjs +0 -1
- package/lib/vef-password/props.cjs +0 -1
- package/lib/vef-pie-chart/index.cjs +0 -8
- package/lib/vef-pie-chart/props.cjs +0 -1
- package/lib/vef-popconfirm/index.cjs +0 -1
- package/lib/vef-popconfirm/props.cjs +0 -1
- package/lib/vef-popover/index.cjs +0 -1
- package/lib/vef-popover/props.cjs +0 -1
- package/lib/vef-radio/hooks/use-data-options.cjs +0 -1
- package/lib/vef-radio/hooks/use-radio-instance.cjs +0 -1
- package/lib/vef-radio/index.cjs +0 -3
- package/lib/vef-radio/props.cjs +0 -1
- package/lib/vef-rate/hooks/use-rate-instance.cjs +0 -1
- package/lib/vef-rate/index.cjs +0 -1
- package/lib/vef-rate/props.cjs +0 -1
- package/lib/vef-responsive-container/index.cjs +0 -5
- package/lib/vef-responsive-container/props.cjs +0 -1
- package/lib/vef-responsive-item/index.cjs +0 -3
- package/lib/vef-responsive-item/props.cjs +0 -1
- package/lib/vef-ribbon/index.cjs +0 -1
- package/lib/vef-ribbon/props.cjs +0 -1
- package/lib/vef-row/index.cjs +0 -1
- package/lib/vef-row/props.cjs +0 -1
- package/lib/vef-scroll-area/components/scrollbar.cjs +0 -32
- package/lib/vef-scroll-area/index.cjs +0 -11
- package/lib/vef-scroll-area/props.cjs +0 -1
- package/lib/vef-segment/index.cjs +0 -1
- package/lib/vef-segment/props.cjs +0 -1
- package/lib/vef-select/components/option.cjs +0 -9
- package/lib/vef-select/hooks/use-data-options.cjs +0 -1
- package/lib/vef-select/hooks/use-field-names.cjs +0 -1
- package/lib/vef-select/hooks/use-render-label.cjs +0 -8
- package/lib/vef-select/hooks/use-render-option.cjs +0 -1
- package/lib/vef-select/hooks/use-select-instance.cjs +0 -1
- package/lib/vef-select/index.cjs +0 -1
- package/lib/vef-select/props.cjs +0 -1
- package/lib/vef-slider/hooks/use-slider-instance.cjs +0 -1
- package/lib/vef-slider/index.cjs +0 -1
- package/lib/vef-slider/props.cjs +0 -1
- package/lib/vef-sortable-list/components/overlay-item.cjs +0 -5
- package/lib/vef-sortable-list/components/sortable-item.cjs +0 -5
- package/lib/vef-sortable-list/hooks/use-merged-items.cjs +0 -1
- package/lib/vef-sortable-list/index.cjs +0 -1
- package/lib/vef-sortable-list/props.cjs +0 -1
- package/lib/vef-space/index.cjs +0 -1
- package/lib/vef-space/props.cjs +0 -1
- package/lib/vef-spin/index.cjs +0 -1
- package/lib/vef-spin/props.cjs +0 -1
- package/lib/vef-splitter/index.cjs +0 -1
- package/lib/vef-splitter/props.cjs +0 -1
- package/lib/vef-splitter-panel/index.cjs +0 -1
- package/lib/vef-splitter-panel/props.cjs +0 -1
- package/lib/vef-status/index.cjs +0 -1
- package/lib/vef-status/props.cjs +0 -1
- package/lib/vef-table/components/columns/bool.cjs +0 -1
- package/lib/vef-table/components/columns/code.cjs +0 -1
- package/lib/vef-table/components/columns/data-dictionary.cjs +0 -1
- package/lib/vef-table/components/columns/enum.cjs +0 -1
- package/lib/vef-table/components/columns/file.cjs +0 -1
- package/lib/vef-table/components/columns/icon.cjs +0 -1
- package/lib/vef-table/components/columns/id.cjs +0 -1
- package/lib/vef-table/components/columns/image.cjs +0 -1
- package/lib/vef-table/components/columns/index.cjs +0 -1
- package/lib/vef-table/components/columns/markdown.cjs +0 -1
- package/lib/vef-table/components/columns/number.cjs +0 -1
- package/lib/vef-table/components/columns/props.cjs +0 -1
- package/lib/vef-table/components/columns/render.cjs +0 -1
- package/lib/vef-table/components/columns/rich-text.cjs +0 -1
- package/lib/vef-table/components/columns/text.cjs +0 -1
- package/lib/vef-table/components/columns-settings.cjs +0 -52
- package/lib/vef-table/components/operation-buttons.cjs +0 -10
- package/lib/vef-table/components/settings-icon.cjs +0 -3
- package/lib/vef-table/components/table-footer.cjs +0 -17
- package/lib/vef-table/helper.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-batch-buttons.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-computed-values.cjs +0 -1
- package/lib/vef-table/hooks/use-data.cjs +0 -1
- package/lib/vef-table/hooks/use-default-column-configs.cjs +0 -1
- package/lib/vef-table/hooks/use-display-value.cjs +0 -1
- package/lib/vef-table/hooks/use-helper-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-operation-column-width.cjs +0 -1
- package/lib/vef-table/hooks/use-pagination-props.cjs +0 -1
- package/lib/vef-table/hooks/use-row-props.cjs +0 -1
- package/lib/vef-table/hooks/use-row-selection-config.cjs +0 -1
- package/lib/vef-table/hooks/use-selected-rows.cjs +0 -1
- package/lib/vef-table/hooks/use-table-columns.cjs +0 -1
- package/lib/vef-table/hooks/use-table-context.cjs +0 -1
- package/lib/vef-table/hooks/use-table-instance.cjs +0 -1
- package/lib/vef-table/hooks/use-table-summary.cjs +0 -1
- package/lib/vef-table/hooks/use-table-width.cjs +0 -1
- package/lib/vef-table/index.cjs +0 -54
- package/lib/vef-table/props.cjs +0 -1
- package/lib/vef-table/store.cjs +0 -1
- package/lib/vef-table/types.cjs +0 -1
- package/lib/vef-tabs/index.cjs +0 -1
- package/lib/vef-tabs/props.cjs +0 -1
- package/lib/vef-tag/index.cjs +0 -1
- package/lib/vef-tag/props.cjs +0 -1
- package/lib/vef-temporal-picker/helper.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-dayjs-value.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-temporal-limit.cjs +0 -1
- package/lib/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +0 -1
- package/lib/vef-temporal-picker/index.cjs +0 -1
- package/lib/vef-temporal-picker/props.cjs +0 -1
- package/lib/vef-temporal-range-picker/helper.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +0 -1
- package/lib/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +0 -1
- package/lib/vef-temporal-range-picker/index.cjs +0 -1
- package/lib/vef-temporal-range-picker/props.cjs +0 -1
- package/lib/vef-text/index.cjs +0 -1
- package/lib/vef-text/props.cjs +0 -1
- package/lib/vef-textarea/hooks/use-textarea-instance.cjs +0 -1
- package/lib/vef-textarea/index.cjs +0 -1
- package/lib/vef-textarea/props.cjs +0 -1
- package/lib/vef-title/index.cjs +0 -13
- package/lib/vef-title/props.cjs +0 -1
- package/lib/vef-tooltip/index.cjs +0 -1
- package/lib/vef-tooltip/props.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-change-handler.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-data-options.cjs +0 -1
- package/lib/vef-tree-select/hooks/use-tree-select-instance.cjs +0 -1
- package/lib/vef-tree-select/index.cjs +0 -1
- package/lib/vef-tree-select/props.cjs +0 -1
- package/lib/vef-virtual-grid/index.cjs +0 -12
- package/lib/vef-virtual-grid/props.cjs +0 -1
- package/lib/vef-virtual-list/index.cjs +0 -18
- package/lib/vef-virtual-list/props.cjs +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{SearchOutlined}from"@ant-design/icons";import{isFunction,styles}from"@vef-framework/shared";import{Select}from"antd";import{LeafIcon}from"lucide-react";import{useState,useDeferredValue,useCallback,useMemo,cloneElement}from"react";import"../internal/index.js";import VefIcon from"../vef-icon/index.js";import{convertBasicSizeToUiSize}from"../internal/utils.js";const dropdownStyle={"--vef-select-option-padding":0};function VefGenericSelect({value,size,renderLabel,placeholder,disabled,clearable,loading,variant,children,onClear}){const[opened,setOpened]=useState(!1),[focused,setFocused]=useState(!1),[keyword,setKeyword]=useState(),deferredKeyword=useDeferredValue(keyword),handleBlur=useCallback(()=>{setFocused(!1)},[]),handleFocus=useCallback(()=>{setFocused(!0)},[]),handleConfirm=useCallback(()=>{setOpened(!1)},[]),renderLabelToUse=useMemo(()=>{if(isFunction(renderLabel))return({value:value2})=>renderLabel?.(value2)},[renderLabel]),suffixIcon=focused&&opened?jsx(SearchOutlined,{}):jsx(VefIcon,{children:jsx(LeafIcon,{})}),childrenToUse=cloneElement(children,{keyword:deferredKeyword,onConfirm:handleConfirm});return jsx(Select,{showSearch:!0,allowClear:clearable,css:styles.fullWidth,disabled,dropdownStyle,labelRender:renderLabelToUse,loading,notFoundContent:childrenToUse,open:opened,placeholder,popupMatchSelectWidth:!1,searchValue:keyword,size:convertBasicSizeToUiSize(size),suffixIcon,value,variant,onBlur:handleBlur,onClear,onDropdownVisibleChange:setOpened,onFocus:handleFocus,onSearch:setKeyword})}/*! 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 */export{VefGenericSelect as default};
|
package/es/vef-grid/index.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{useGapSizeNormalizer,useElementSize}from"@vef-framework/hooks";import{breakpoints,isArray}from"@vef-framework/shared";import clsx from"clsx";import{useMemo,useRef,useEffect}from"react";import{useContainerQuery}from"react-container-query";const GRID_COLUMNS=24,gridStyle=css`
|
|
2
|
-
display: grid;
|
|
3
|
-
grid: auto-flow / repeat(${GRID_COLUMNS}, minmax(0, 1fr));
|
|
4
|
-
|
|
5
|
-
> * {
|
|
6
|
-
grid-column: span ${GRID_COLUMNS};
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
${Array.from({length:GRID_COLUMNS}).map((_,index)=>`
|
|
10
|
-
> .vef-grid-item-${index+1} {
|
|
11
|
-
grid-column: span ${index+1};
|
|
12
|
-
}
|
|
13
|
-
`)}
|
|
14
|
-
|
|
15
|
-
${breakpoints.map(breakpoint=>`
|
|
16
|
-
&.vef-container-${breakpoint} {
|
|
17
|
-
${Array.from({length:GRID_COLUMNS}).map((_,index)=>`
|
|
18
|
-
> .vef-grid-item-${breakpoint}-${index+1} {
|
|
19
|
-
grid-column: span ${index+1};
|
|
20
|
-
}
|
|
21
|
-
`)}
|
|
22
|
-
}
|
|
23
|
-
`)}
|
|
24
|
-
`;function VefGrid({baseWidth=240,gap,children}){const query=useMemo(()=>({"vef-container-xs":{minWidth:0},"vef-container-sm":{minWidth:baseWidth*2},"vef-container-md":{minWidth:baseWidth*3},"vef-container-lg":{minWidth:baseWidth*4},"vef-container-xl":{minWidth:baseWidth*5},"vef-container-xxl":{minWidth:baseWidth*6}}),[baseWidth]),containerRef=useRef(null),[classNames,setRef]=useContainerQuery(query,{width:baseWidth*2}),normalizeGapSize=useGapSizeNormalizer(),[rowGap,columnGap]=useMemo(()=>{if(isArray(gap))return[normalizeGapSize(gap[0]),normalizeGapSize(gap[1])];if(gap){const normalizedGap=normalizeGapSize(gap);return[normalizedGap,normalizedGap]}return[0,0]},[gap,normalizeGapSize]);useEffect(()=>{setRef(containerRef.current)},[containerRef,setRef]);const containerSize=useElementSize(containerRef),gapStyle=useMemo(()=>(containerSize?.width??baseWidth*2)>GRID_COLUMNS*columnGap?{gap:`${rowGap}px ${columnGap}px`}:{gap:`${rowGap}px ${Math.floor((containerSize?.width??baseWidth*2)/GRID_COLUMNS)}px`},[containerSize?.width,baseWidth,columnGap,rowGap]);return jsx("div",{ref:containerRef,className:clsx(classNames),css:gridStyle,style:gapStyle,children})}/*! 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 */export{VefGrid as default};
|
package/es/vef-grid/props.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */const BREAKPOINTS=["xs","sm","md","lg","xl","xxl"];/*! 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 */export{BREAKPOINTS};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import clsx from"clsx";import{useMemo}from"react";function VefGridItem({span,xs,sm,md,lg,xl,xxl,children}){const classNames=useMemo(()=>{const classNames2=[];return span&&classNames2.push(`vef-grid-item-${span}`),xs&&classNames2.push(`vef-grid-item-xs-${xs}`),sm&&classNames2.push(`vef-grid-item-sm-${sm}`),md&&classNames2.push(`vef-grid-item-md-${md}`),lg&&classNames2.push(`vef-grid-item-lg-${lg}`),xl&&classNames2.push(`vef-grid-item-xl-${xl}`),xxl&&classNames2.push(`vef-grid-item-xxl-${xxl}`),classNames2},[span,xs,sm,md,lg,xl,xxl]);return jsx("div",{className:clsx(classNames),children})}/*! 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 */export{VefGridItem as default};
|
package/es/vef-icon/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import Icon from"@ant-design/icons";import{useColorTokens}from"@vef-framework/hooks";import{themeVariables,omit}from"@vef-framework/shared";import{forwardRef,useMemo,Suspense,cloneElement,memo}from"react";const VefIconBase=forwardRef(({size,color,children,...restProps},ref)=>{const colorTokens=useColorTokens(),style=useMemo(()=>{const style2={},fontSize=size==="small"?themeVariables.fontSizeSm:size==="medium"?themeVariables.fontSize:size==="large"?themeVariables.fontSizeLg:size==="huge"?themeVariables.fontSizeXl:void 0;return fontSize&&(style2.fontSize=fontSize),color&&(style2.color=colorTokens.get(color)),style2},[size,color,colorTokens]);return jsx(Icon,{ref,style,component:props=>{const svgProps=omit(props,["fill"]);if(children.type===Suspense){const{children:icon}=children.props;return cloneElement(children,{children:cloneElement(icon,svgProps)})}return cloneElement(children,svgProps)},...restProps})}),VefIcon=memo(VefIconBase);VefIcon.displayName="VefIcon";/*! 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 */export{VefIcon as default};
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{useThemeTokens}from"@vef-framework/hooks";import{themeVariables,trim,cluster,isUndefined}from"@vef-framework/shared";import{useMemo,useCallback,memo,useState}from"react";import VefDynamicIcon from"../vef-dynamic-icon/index.js";import{dynamicIconNames}from"../vef-dynamic-icon/props.js";import VefEmptyPlaceholder from"../vef-empty-placeholder/index.js";import VefGenericSelect from"../vef-generic-select/index.js";import VefSpace from"../vef-space/index.js";import VefText from"../vef-text/index.js";import VefVirtualGrid from"../vef-virtual-grid/index.js";const iconsStyle=css`
|
|
2
|
-
color: ${themeVariables.colorTextSlate};
|
|
3
|
-
|
|
4
|
-
.vef-icon-select-wrapper {
|
|
5
|
-
padding: calc(${themeVariables.paddingXxs} + 2px) ${themeVariables.paddingXs};
|
|
6
|
-
}
|
|
7
|
-
`,iconItemStyle=css`
|
|
8
|
-
height: 100%;
|
|
9
|
-
display: flex;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
align-items: center;
|
|
12
|
-
background-color: ${themeVariables.colorFillContent};
|
|
13
|
-
border-radius: ${themeVariables.borderRadius};
|
|
14
|
-
transition: background-color ${themeVariables.motionDurationMid} ${themeVariables.motionEaseInOut};
|
|
15
|
-
&:hover {
|
|
16
|
-
cursor: pointer;
|
|
17
|
-
background-color: ${themeVariables.colorFillContentHover};
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&.vef-icon-select-item-selected {
|
|
21
|
-
background-color: ${themeVariables.colorPrimaryBg};
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.vef-icon {
|
|
25
|
-
font-size: 28px;
|
|
26
|
-
}
|
|
27
|
-
`,iconItemSize=60,iconNames=Array.from(dynamicIconNames);function VefIconsContentBase({value,onChange,keyword,onConfirm}){const{paddingXS,paddingXXS}=useThemeTokens(),filteredIcons=useMemo(()=>{const trimmedKeyword=trim(keyword);return trimmedKeyword?cluster(iconNames.filter(name=>name.includes(trimmedKeyword)),6):cluster(iconNames,6)},[keyword]),[width,height]=useMemo(()=>[6*iconItemSize+12*5+paddingXS*2,5*iconItemSize+12*4+(paddingXXS+2)*2],[paddingXXS,paddingXS]),renderItem=useCallback(({item})=>{const isSelected=item===value;return jsx("div",{className:isSelected?"vef-icon-select-item-selected":void 0,css:iconItemStyle,title:item,onClick:()=>{if(isSelected){onConfirm?.();return}onChange(item),onConfirm?.()},children:jsx(VefDynamicIcon,{name:item})})},[onChange,onConfirm,value]),emptyPlaceholderStyle=useMemo(()=>({width,height}),[width,height]);return filteredIcons.length===0?jsx("div",{css:iconsStyle,children:jsx("div",{className:"vef-icon-select-wrapper",style:emptyPlaceholderStyle,children:jsx(VefEmptyPlaceholder,{description:"暂无图标",presetIcon:"simple"})})}):jsx("div",{css:iconsStyle,children:jsx(VefVirtualGrid,{className:"vef-icon-select-wrapper",columnWidth:iconItemSize,gap:"small",height,items:filteredIcons,renderItem,rowHeight:iconItemSize,width})})}const VefIconsContent=memo(VefIconsContentBase);VefIconsContent.displayName="VefIconsContent";const labelStyle=css`
|
|
28
|
-
width: 100%;
|
|
29
|
-
|
|
30
|
-
.vef-space-item:last-of-type {
|
|
31
|
-
min-width: 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.vef-typography {
|
|
35
|
-
line-height: inherit;
|
|
36
|
-
font-size: inherit;
|
|
37
|
-
font-family: inherit;
|
|
38
|
-
color: inherit;
|
|
39
|
-
}
|
|
40
|
-
`;function renderLabel(name){return jsxs(VefSpace,{css:labelStyle,children:[jsx(VefDynamicIcon,{name}),jsx(VefText,{ellipsis:!0,children:name})]})}function VefIconSelect({defaultValue,value,size,placeholder,disabled,clearable,variant,onChange,onClear}){const[internalValue,setInternalValue]=useState(defaultValue??null),handleChange=useCallback(changedValue=>{if(isUndefined(value)){setInternalValue(changedValue);return}onChange?.(changedValue)},[onChange,value]),handleClear=useCallback(()=>{handleChange(null),onClear?.()},[handleChange,onClear]);return jsx(VefGenericSelect,{clearable,disabled,placeholder,renderLabel,size,value:value??internalValue,variant,onClear:handleClear,children:jsx(VefIconsContent,{value:isUndefined(value)?internalValue:value,onChange:handleChange})})}/*! 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 */export{VefIconSelect as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useRef,useImperativeHandle}from"react";function useInputInstance(ref){const inputRef=useRef(null);return useImperativeHandle(ref,()=>({blur:()=>inputRef.current?.blur(),focus:()=>inputRef.current?.focus({preventScroll:!0}),input:inputRef.current?.input??null,nativeElement:inputRef.current?.nativeElement??null})),inputRef}/*! 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 */export{useInputInstance};
|
package/es/vef-input/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{isFunction}from"@vef-framework/shared";import{Input}from"antd";import{forwardRef,useMemo}from"react";import"../internal/index.js";import{useInputInstance}from"./hooks/use-input-instance.js";import{convertBasicSizeToUiSize}from"../internal/utils.js";function normalizeValue(value){return value===""?null:value}const VefInput=forwardRef(({defaultValue,value,clearable,size,showCount,prepend,append,onChange,onEnterKeyPress,onBlur,onFocus,...restProps},ref)=>{const eventHandlers=useMemo(()=>({onChange:isFunction(onChange)?event=>onChange(normalizeValue(event.target.value)):void 0,onPressEnter:isFunction(onEnterKeyPress)?event=>onEnterKeyPress(normalizeValue(event.target.value)):void 0,onBlur:isFunction(onBlur)?event=>onBlur(normalizeValue(event.target.value)):void 0,onFocus:isFunction(onFocus)?event=>onFocus(normalizeValue(event.target.value)):void 0}),[onChange,onEnterKeyPress,onBlur,onFocus]),inputRef=useInputInstance(ref);return jsx(Input,{ref:inputRef,addonAfter:append,addonBefore:prepend,allowClear:clearable,defaultValue,showCount,size:convertBasicSizeToUiSize(size),type:"text",value,...restProps,...eventHandlers})});VefInput.displayName="VefInput";/*! 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 */export{VefInput as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useRef,useImperativeHandle}from"react";function useInputNumberInstance(ref){const inputNumberRef=useRef(null);return useImperativeHandle(ref,()=>({blur:()=>inputNumberRef.current?.blur(),focus:()=>inputNumberRef.current?.focus({preventScroll:!0})})),inputNumberRef}/*! 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 */export{useInputNumberInstance};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{isFunction,styles}from"@vef-framework/shared";import{InputNumber}from"antd";import{forwardRef,useMemo}from"react";import"../internal/index.js";import{useInputNumberInstance}from"./hooks/use-input-number-instance.js";import{convertBasicSizeToUiSize}from"../internal/utils.js";function normalizeValue(value,useStringFormat){const number=Number.parseFloat(value);return Number.isNaN(number)?null:useStringFormat?`${number}`:number}const VefInputNumber=forwardRef(({size,showControls,step,min,max,prepend,append,...restProps},ref)=>{const eventHandlerGroup=useMemo(()=>{const{useStringFormat:useStringFormat2}=restProps;if(useStringFormat2){const{onChange:onChange3,onEnterKeyPress:onEnterKeyPress3,onBlur:onBlur3,onFocus:onFocus3}=restProps;return{stringFormat:!0,onChange:isFunction(onChange3)?value2=>onChange3(value2):void 0,onPressEnter:isFunction(onEnterKeyPress3)?event=>onEnterKeyPress3(normalizeValue(event.target.value,!0)):void 0,onBlur:isFunction(onBlur3)?event=>onBlur3(normalizeValue(event.target.value,!0)):void 0,onFocus:isFunction(onFocus3)?event=>onFocus3(normalizeValue(event.target.value,!0)):void 0}}const{onChange:onChange2,onEnterKeyPress:onEnterKeyPress2,onBlur:onBlur2,onFocus:onFocus2}=restProps;return{stringFormat:!1,onChange:isFunction(onChange2)?value2=>onChange2(value2):void 0,onPressEnter:isFunction(onEnterKeyPress2)?event=>onEnterKeyPress2(normalizeValue(event.target.value,!1)):void 0,onBlur:isFunction(onBlur2)?event=>onBlur2(normalizeValue(event.target.value,!1)):void 0,onFocus:isFunction(onFocus2)?event=>onFocus2(normalizeValue(event.target.value,!1)):void 0}},[restProps]),inputNumberRef=useInputNumberInstance(ref),{useStringFormat}=restProps;if(useStringFormat){const{useStringFormat:useStringFormat2,defaultValue:defaultValue2,value:value2,onChange:onChange2,onEnterKeyPress:onEnterKeyPress2,onBlur:onBlur2,onFocus:onFocus2,...commonProps2}=restProps,{stringFormat:stringFormat2}=eventHandlerGroup;if(stringFormat2){const{stringFormat:stringFormat3,...eventHandlers}=eventHandlerGroup;return jsx(InputNumber,{ref:inputNumberRef,stringMode:!0,addonAfter:append,addonBefore:prepend,controls:showControls,css:styles.fullWidth,defaultValue:defaultValue2,max:`${max}`,min:`${min}`,size:convertBasicSizeToUiSize(size),step:`${step}`,value:value2,...commonProps2,...eventHandlers})}return}const{useStringFormat:_,defaultValue,value,onChange,onEnterKeyPress,onBlur,onFocus,...commonProps}=restProps,{stringFormat}=eventHandlerGroup;if(!stringFormat){const{stringFormat:stringFormat2,...eventHandlers}=eventHandlerGroup;return jsx(InputNumber,{ref:inputNumberRef,addonAfter:append,addonBefore:prepend,controls:showControls,css:styles.fullWidth,defaultValue,max,min,step,value,...commonProps,...eventHandlers})}});VefInputNumber.displayName="VefInputNumber";/*! 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 */export{VefInputNumber as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useCallback}from"react";function useChangeHandler(onChange){return useCallback(value=>{onChange?.(value??"")},[onChange])}/*! 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 */export{useChangeHandler};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useThemeTokens}from"@vef-framework/hooks";import{useMemo}from"react";function useEditorOptions(placeholder,disabled,tabSize){const{fontSize}=useThemeTokens();return useMemo(()=>({placeholder,readOnly:disabled,accessibilitySupport:"off",ariaRequired:!1,lineNumbers:"on",minimap:{enabled:!1},tabSize,fontSize,autoClosingBrackets:"languageDefined",autoClosingComments:"languageDefined",autoClosingDelete:"auto",autoClosingOvertype:"auto",autoClosingQuotes:"languageDefined",autoIndent:"full",autoSurround:"languageDefined",lineNumbersMinChars:3,lineDecorationsWidth:0,fixedOverflowWidgets:!0}),[placeholder,disabled,tabSize,fontSize])}/*! 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 */export{useEditorOptions};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useMemo}from"react";function usePath(path,language){return useMemo(()=>{if(!path)switch(language){case"typescript":return"index.ts";case"javascript":return"index.js";case"json":return"index.json";case"html":return"index.html";case"css":return"index.css";case"scss":return"index.scss";case"less":return"index.less";default:return"index"}return path},[path,language])}/*! 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 */export{usePath};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{Editor}from"@monaco-editor/react";import VefSpin from"../vef-spin/index.js";import{useChangeHandler}from"./hooks/use-change-handler.js";import{useEditorOptions}from"./hooks/use-editor-options.js";import{usePath}from"./hooks/use-path.js";import{editorStyle}from"./styles.js";function VefIntellisenseCodeEditor({value,language,path,placeholder,disabled,height=320,tabSize=2,onChange}){const handleChange=useChangeHandler(onChange),options=useEditorOptions(placeholder,disabled,tabSize),codePath=usePath(path,language);return jsx(Editor,{saveViewState:!0,css:editorStyle,height,keepCurrentModel:!1,language,loading:jsx(VefSpin,{}),options,path:codePath,theme:"github-light",value,width:"100%",onChange:handleChange})}/*! 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 */export{VefIntellisenseCodeEditor as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{loader}from"@monaco-editor/react";import*as monaco from"monaco-editor";import EditorWorker from"monaco-editor/esm/vs/editor/editor.worker?worker";import CssWorker from"monaco-editor/esm/vs/language/css/css.worker?worker";import HtmlWorker from"monaco-editor/esm/vs/language/html/html.worker?worker";import JsonWorker from"monaco-editor/esm/vs/language/json/json.worker?worker";import TsWorker from"monaco-editor/esm/vs/language/typescript/ts.worker?worker";import github_light_default from"./themes/github-light.json.js";self.MonacoEnvironment={getWorker(_,label){return label==="json"?new JsonWorker:label==="css"||label==="scss"||label==="less"?new CssWorker:label==="html"||label==="handlebars"||label==="razor"?new HtmlWorker:label==="typescript"||label==="javascript"?new TsWorker:new EditorWorker}},monaco.editor.defineTheme("github-light",github_light_default),monaco.languages.typescript.typescriptDefaults.setInlayHintsOptions({includeInlayVariableTypeHints:!0,includeInlayEnumMemberValueHints:!0,includeInlayFunctionParameterTypeHints:!0,includeInlayPropertyDeclarationTypeHints:!0,includeInlayFunctionLikeReturnTypeHints:!0,includeInlayParameterNameHints:"all",includeInlayParameterNameHintsWhenArgumentMatchesName:!0}),monaco.languages.typescript.typescriptDefaults.setEagerModelSync(!0),monaco.languages.typescript.typescriptDefaults.setDiagnosticsOptions({noSemanticValidation:!1,noSuggestionDiagnostics:!1,noSyntaxValidation:!1,onlyVisible:!1}),monaco.languages.typescript.typescriptDefaults.setCompilerOptions({target:monaco.languages.typescript.ScriptTarget.ES2020,lib:["ES2020"],module:monaco.languages.typescript.ModuleKind.ESNext,moduleResolution:monaco.languages.typescript.ModuleResolutionKind.NodeJs,jsx:monaco.languages.typescript.JsxEmit.React,strict:!0,skipLibCheck:!0,esModuleInterop:!0,noEmit:!0,baseUrl:".",noFallthroughCasesInSwitch:!0,allowSyntheticDefaultImports:!0}),monaco.languages.typescript.javascriptDefaults.setModeConfiguration({inlayHints:!0,codeActions:!0,completionItems:!0,definitions:!0,diagnostics:!0,documentHighlights:!0,documentSymbols:!0,hovers:!0,references:!0,onTypeFormattingEdits:!0,rename:!0,signatureHelp:!0,documentRangeFormattingEdits:!0}),monaco.languages.typescript.javascriptDefaults.setInlayHintsOptions({includeInlayVariableTypeHints:!0,includeInlayEnumMemberValueHints:!0,includeInlayFunctionParameterTypeHints:!0,includeInlayPropertyDeclarationTypeHints:!0,includeInlayFunctionLikeReturnTypeHints:!0,includeInlayParameterNameHints:"all",includeInlayParameterNameHintsWhenArgumentMatchesName:!0}),monaco.languages.typescript.javascriptDefaults.setEagerModelSync(!0),monaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({noSemanticValidation:!1,noSuggestionDiagnostics:!1,noSyntaxValidation:!1,onlyVisible:!1}),monaco.languages.typescript.javascriptDefaults.setCompilerOptions({target:monaco.languages.typescript.ScriptTarget.ES2020,lib:["ES2020"],module:monaco.languages.typescript.ModuleKind.ESNext,moduleResolution:monaco.languages.typescript.ModuleResolutionKind.NodeJs,jsx:monaco.languages.typescript.JsxEmit.React,strict:!0,skipLibCheck:!0,esModuleInterop:!0,noEmit:!0,allowJs:!0,baseUrl:".",noFallthroughCasesInSwitch:!0,allowSyntheticDefaultImports:!0}),monaco.languages.json.jsonDefaults.setDiagnosticsOptions({validate:!0});function initializeIntellisenseCodeEditor(){loader.config({"vs/nls":{availableLanguages:{"*":"zh-cn"}},monaco}),loader.init()}/*! 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 */export{initializeIntellisenseCodeEditor};
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{css}from"@emotion/react";import{themeVariables}from"@vef-framework/shared";const editorStyle=css`
|
|
2
|
-
border-width: ${themeVariables.lineWidth};
|
|
3
|
-
border-style: ${themeVariables.lineType};
|
|
4
|
-
border-color: ${themeVariables.colorBorder};
|
|
5
|
-
border-radius: ${themeVariables.borderRadius};
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
|
|
8
|
-
&:not(:has(> .monaco-editor.focused)) {
|
|
9
|
-
border-color: ${themeVariables.colorBorder};
|
|
10
|
-
|
|
11
|
-
&:hover {
|
|
12
|
-
border-color: ${themeVariables.colorPrimaryHover};
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&:has(.monaco-editor.focused) {
|
|
17
|
-
border-color: ${themeVariables.colorPrimary};
|
|
18
|
-
box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
|
|
19
|
-
}
|
|
20
|
-
`;/*! 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 */export{editorStyle};
|
|
@@ -1,349 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */var github_light_default=`{
|
|
2
|
-
"base": "vs",
|
|
3
|
-
"inherit": true,
|
|
4
|
-
"rules": [
|
|
5
|
-
{
|
|
6
|
-
"background": "ffffff",
|
|
7
|
-
"token": ""
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"foreground": "6a737d",
|
|
11
|
-
"token": "comment"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"foreground": "6a737d",
|
|
15
|
-
"token": "punctuation.definition.comment"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"foreground": "6a737d",
|
|
19
|
-
"token": "string.comment"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"foreground": "005cc5",
|
|
23
|
-
"token": "constant"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"foreground": "005cc5",
|
|
27
|
-
"token": "entity.name.constant"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"foreground": "005cc5",
|
|
31
|
-
"token": "variable.other.constant"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"foreground": "005cc5",
|
|
35
|
-
"token": "variable.language"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"foreground": "6f42c1",
|
|
39
|
-
"token": "entity"
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"foreground": "6f42c1",
|
|
43
|
-
"token": "entity.name"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"foreground": "24292e",
|
|
47
|
-
"token": "variable.parameter.function"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"foreground": "22863a",
|
|
51
|
-
"token": "entity.name.tag"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"foreground": "d73a49",
|
|
55
|
-
"token": "keyword"
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"foreground": "d73a49",
|
|
59
|
-
"token": "storage"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"foreground": "d73a49",
|
|
63
|
-
"token": "storage.type"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"foreground": "24292e",
|
|
67
|
-
"token": "storage.modifier.package"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"foreground": "24292e",
|
|
71
|
-
"token": "storage.modifier.import"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"foreground": "24292e",
|
|
75
|
-
"token": "storage.type.java"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"foreground": "032f62",
|
|
79
|
-
"token": "string"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"foreground": "032f62",
|
|
83
|
-
"token": "punctuation.definition.string"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"foreground": "032f62",
|
|
87
|
-
"token": "string punctuation.section.embedded source"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"foreground": "005cc5",
|
|
91
|
-
"token": "support"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"foreground": "005cc5",
|
|
95
|
-
"token": "meta.property-name"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"foreground": "e36209",
|
|
99
|
-
"token": "variable"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"foreground": "24292e",
|
|
103
|
-
"token": "variable.other"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"foreground": "b31d28",
|
|
107
|
-
"fontStyle": "bold italic underline",
|
|
108
|
-
"token": "invalid.broken"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"foreground": "b31d28",
|
|
112
|
-
"fontStyle": "bold italic underline",
|
|
113
|
-
"token": "invalid.deprecated"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"foreground": "fafbfc",
|
|
117
|
-
"background": "b31d28",
|
|
118
|
-
"fontStyle": "italic underline",
|
|
119
|
-
"token": "invalid.illegal"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"foreground": "fafbfc",
|
|
123
|
-
"background": "d73a49",
|
|
124
|
-
"fontStyle": "italic underline",
|
|
125
|
-
"token": "carriage-return"
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
"foreground": "b31d28",
|
|
129
|
-
"fontStyle": "bold italic underline",
|
|
130
|
-
"token": "invalid.unimplemented"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"foreground": "b31d28",
|
|
134
|
-
"token": "message.error"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"foreground": "24292e",
|
|
138
|
-
"token": "string source"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"foreground": "005cc5",
|
|
142
|
-
"token": "string variable"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"foreground": "032f62",
|
|
146
|
-
"token": "source.regexp"
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"foreground": "032f62",
|
|
150
|
-
"token": "string.regexp"
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"foreground": "032f62",
|
|
154
|
-
"token": "string.regexp.character-class"
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"foreground": "032f62",
|
|
158
|
-
"token": "string.regexp constant.character.escape"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"foreground": "032f62",
|
|
162
|
-
"token": "string.regexp source.ruby.embedded"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
"foreground": "032f62",
|
|
166
|
-
"token": "string.regexp string.regexp.arbitrary-repitition"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"foreground": "22863a",
|
|
170
|
-
"fontStyle": "bold",
|
|
171
|
-
"token": "string.regexp constant.character.escape"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"foreground": "005cc5",
|
|
175
|
-
"token": "support.constant"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"foreground": "005cc5",
|
|
179
|
-
"token": "support.variable"
|
|
180
|
-
},
|
|
181
|
-
{
|
|
182
|
-
"foreground": "005cc5",
|
|
183
|
-
"token": "meta.module-reference"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"foreground": "735c0f",
|
|
187
|
-
"token": "markup.list"
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
"foreground": "005cc5",
|
|
191
|
-
"fontStyle": "bold",
|
|
192
|
-
"token": "markup.heading"
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
"foreground": "005cc5",
|
|
196
|
-
"fontStyle": "bold",
|
|
197
|
-
"token": "markup.heading entity.name"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"foreground": "22863a",
|
|
201
|
-
"token": "markup.quote"
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
"foreground": "24292e",
|
|
205
|
-
"fontStyle": "italic",
|
|
206
|
-
"token": "markup.italic"
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"foreground": "24292e",
|
|
210
|
-
"fontStyle": "bold",
|
|
211
|
-
"token": "markup.bold"
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"foreground": "005cc5",
|
|
215
|
-
"token": "markup.raw"
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
"foreground": "b31d28",
|
|
219
|
-
"background": "ffeef0",
|
|
220
|
-
"token": "markup.deleted"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
"foreground": "b31d28",
|
|
224
|
-
"background": "ffeef0",
|
|
225
|
-
"token": "meta.diff.header.from-file"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"foreground": "b31d28",
|
|
229
|
-
"background": "ffeef0",
|
|
230
|
-
"token": "punctuation.definition.deleted"
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"foreground": "22863a",
|
|
234
|
-
"background": "f0fff4",
|
|
235
|
-
"token": "markup.inserted"
|
|
236
|
-
},
|
|
237
|
-
{
|
|
238
|
-
"foreground": "22863a",
|
|
239
|
-
"background": "f0fff4",
|
|
240
|
-
"token": "meta.diff.header.to-file"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
"foreground": "22863a",
|
|
244
|
-
"background": "f0fff4",
|
|
245
|
-
"token": "punctuation.definition.inserted"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"foreground": "e36209",
|
|
249
|
-
"background": "ffebda",
|
|
250
|
-
"token": "markup.changed"
|
|
251
|
-
},
|
|
252
|
-
{
|
|
253
|
-
"foreground": "e36209",
|
|
254
|
-
"background": "ffebda",
|
|
255
|
-
"token": "punctuation.definition.changed"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"foreground": "f6f8fa",
|
|
259
|
-
"background": "005cc5",
|
|
260
|
-
"token": "markup.ignored"
|
|
261
|
-
},
|
|
262
|
-
{
|
|
263
|
-
"foreground": "f6f8fa",
|
|
264
|
-
"background": "005cc5",
|
|
265
|
-
"token": "markup.untracked"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"foreground": "6f42c1",
|
|
269
|
-
"fontStyle": "bold",
|
|
270
|
-
"token": "meta.diff.range"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"foreground": "005cc5",
|
|
274
|
-
"token": "meta.diff.header"
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"foreground": "005cc5",
|
|
278
|
-
"fontStyle": "bold",
|
|
279
|
-
"token": "meta.separator"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"foreground": "005cc5",
|
|
283
|
-
"token": "meta.output"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"foreground": "586069",
|
|
287
|
-
"token": "brackethighlighter.tag"
|
|
288
|
-
},
|
|
289
|
-
{
|
|
290
|
-
"foreground": "586069",
|
|
291
|
-
"token": "brackethighlighter.curly"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"foreground": "586069",
|
|
295
|
-
"token": "brackethighlighter.round"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"foreground": "586069",
|
|
299
|
-
"token": "brackethighlighter.square"
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"foreground": "586069",
|
|
303
|
-
"token": "brackethighlighter.angle"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"foreground": "586069",
|
|
307
|
-
"token": "brackethighlighter.quote"
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
"foreground": "b31d28",
|
|
311
|
-
"token": "brackethighlighter.unmatched"
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"foreground": "b31d28",
|
|
315
|
-
"token": "sublimelinter.mark.error"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"foreground": "e36209",
|
|
319
|
-
"token": "sublimelinter.mark.warning"
|
|
320
|
-
},
|
|
321
|
-
{
|
|
322
|
-
"foreground": "959da5",
|
|
323
|
-
"token": "sublimelinter.gutter-mark"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"foreground": "032f62",
|
|
327
|
-
"fontStyle": "underline",
|
|
328
|
-
"token": "constant.other.reference.link"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"foreground": "032f62",
|
|
332
|
-
"fontStyle": "underline",
|
|
333
|
-
"token": "string.other.link"
|
|
334
|
-
}
|
|
335
|
-
],
|
|
336
|
-
"colors": {
|
|
337
|
-
"editor.foreground": "#24292e",
|
|
338
|
-
"editor.background": "#fafafa",
|
|
339
|
-
"editor.selectionBackground": "#c8c8fa",
|
|
340
|
-
"editor.inactiveSelectionBackground": "#fafbfc",
|
|
341
|
-
"editor.lineHighlightBackground": "#fafbfc",
|
|
342
|
-
"editorCursor.foreground": "#24292e",
|
|
343
|
-
"editorWhitespace.foreground": "#959da5",
|
|
344
|
-
"editorIndentGuide.background": "#959da5",
|
|
345
|
-
"editorIndentGuide.activeBackground": "#24292e",
|
|
346
|
-
"editor.selectionHighlightBorder": "#fafbfc"
|
|
347
|
-
}
|
|
348
|
-
}
|
|
349
|
-
`;/*! 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 */export{github_light_default as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import JsonViewer from"@microlink/react-json-view";function VefJsonViewer({data,sortKeys=!1,escapeStrings=!1,collapsed=!1,collapseStringsAfterLength=200,groupArraysAfterLength=100}){return jsx(JsonViewer,{displayArrayKey:!0,displayObjectSize:!0,enableClipboard:!0,collapsed,collapseStringsAfterLength,displayDataTypes:!1,escapeStrings,groupArraysAfterLength,iconStyle:"square",quotesOnKeys:!1,sortKeys,src:data,onAdd:!1,onDelete:!1,onEdit:!1,onSelect:!1})}/*! 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 */export{VefJsonViewer as default};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{css}from"@emotion/react";import{themeVariables,styles}from"@vef-framework/shared";const iconStyle=css`
|
|
2
|
-
padding: ${themeVariables.paddingXs};
|
|
3
|
-
${styles.flexCenter}
|
|
4
|
-
`;/*! 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 */export{iconStyle};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{Layout}from"antd";import{memo}from"react";const{Content}=Layout;function VefContentBase({children}){return jsx(Content,{children})}const VefContent=memo(VefContentBase);VefContent.displayName="VefContent";/*! 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 */export{VefContent as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs}from"@emotion/react/jsx-runtime";import{useConfigStore}from"../../vef-config-provider/store.js";import VefDropdown from"../../vef-dropdown/index.js";import VefIcon from"../../vef-icon/index.js";import{iconStyle}from"../common-styles.js";function IconFontSize(props){return jsx("svg",{height:24,viewBox:"0 0 24 24",width:24,xmlns:"http://www.w3.org/2000/svg",...props,children:jsxs("g",{fill:"none",fillRule:"evenodd",children:[jsx("path",{d:"m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z"}),jsx("path",{d:"M21 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1.911.412a4 4 0 1 1 0-6.824A1 1 0 0 1 21 12M8 4c.732 0 1.381.473 1.605 1.17l4.347 13.524a1 1 0 0 1-1.904.612L10.664 15H5.336l-1.384 4.306a1 1 0 0 1-1.904-.612L6.395 5.17A1.69 1.69 0 0 1 8 4m10 10a2 2 0 1 0 0 4a2 2 0 0 0 0-4M8 6.712L5.979 13h4.042z",fill:"currentColor"})]})})}function IconFontSizeDecrease(props){return jsx("svg",{height:24,viewBox:"0 0 24 24",width:24,xmlns:"http://www.w3.org/2000/svg",...props,children:jsx("path",{d:"M4 19V8.5a3.5 3.5 0 1 1 7 0V19m-7-6h7m10-1h-6",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2})})}function IconFontSizeIncrease(props){return jsx("svg",{height:24,viewBox:"0 0 24 24",width:24,xmlns:"http://www.w3.org/2000/svg",...props,children:jsx("path",{d:"M4 19V8.5a3.5 3.5 0 1 1 7 0V19m-7-6h7m7-4v6m3-3h-6",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2})})}const menuItems=[{key:"medium",type:"item",label:"默认字号",icon:jsx(VefIcon,{children:jsx(IconFontSizeDecrease,{})})},{key:"large",type:"item",label:"大字号",icon:jsx(VefIcon,{children:jsx(IconFontSizeIncrease,{})})}];function VefFontSize(){const[fontSize,setFontSize]=useConfigStore(state=>[state.fontSize,state.setFontSize]);return jsx(VefDropdown,{selectable:!0,items:menuItems,selectedKeys:[fontSize],onChange:([fontSize2])=>setFontSize(fontSize2),children:jsx("div",{css:iconStyle,children:jsx(VefIcon,{size:"large",children:jsx(IconFontSize,{})})})})}/*! 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 */export{VefFontSize as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{MinimizeIcon,MaximizeIcon}from"lucide-react";import{useState,useCallback}from"react";import VefIcon from"../../vef-icon/index.js";import VefTooltip from"../../vef-tooltip/index.js";import{iconStyle}from"../common-styles.js";function VefFullscreen(){const[isFullscreen,setIsFullscreen]=useState(!1),handleClick=useCallback(()=>{isFullscreen?(document.exitFullscreen(),setIsFullscreen(!1)):(document.body.requestFullscreen(),setIsFullscreen(!0))},[isFullscreen]);return jsx(VefTooltip,{content:isFullscreen?"退出全屏":"全屏",delay:.5,children:jsx("div",{css:iconStyle,onClick:handleClick,children:jsx(VefIcon,{size:"large",children:isFullscreen?jsx(MinimizeIcon,{}):jsx(MaximizeIcon,{})})})})}/*! 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 */export{VefFullscreen as default};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsxs,jsx}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{themeVariables}from"@vef-framework/shared";import VefDivider from"../../vef-divider/index.js";import VefFontSize from"./font-size.js";import VefFullscreen from"./fullscreen.js";import VefMessage from"./message.js";import VefSearch from"./search.js";import VefUserAvatar from"./user-avatar.js";const wrapperStyle=css`
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
column-gap: ${themeVariables.marginXxs};
|
|
5
|
-
|
|
6
|
-
> div:not(.vef-divider) {
|
|
7
|
-
border-radius: ${themeVariables.borderRadius};
|
|
8
|
-
transition: background-color ${themeVariables.motionDurationMid} ${themeVariables.motionEaseInOut};
|
|
9
|
-
|
|
10
|
-
&:hover {
|
|
11
|
-
cursor: pointer;
|
|
12
|
-
background-color: ${themeVariables.colorFillTertiary};
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
`;function VefHeaderActionIcons(){return jsxs("div",{css:wrapperStyle,children:[jsx(VefDivider,{orientation:"vertical"}),jsx(VefSearch,{}),jsx(VefFontSize,{}),jsx(VefFullscreen,{}),jsx(VefMessage,{}),jsx(VefUserAvatar,{})]})}/*! 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 */export{VefHeaderActionIcons as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx}from"@emotion/react/jsx-runtime";import{isArray}from"@vef-framework/shared";import VefBreadcrumb from"../../vef-breadcrumb/index.js";import{useLayoutContextSelector}from"../hooks/use-layout-context.js";function VefHeaderContent(){const[breadcrumbItems,onBreadcrumbClick]=useLayoutContextSelector(ctx=>[ctx.breadcrumbItems,ctx.onBreadcrumbClick]);return jsx("div",{children:isArray(breadcrumbItems)&&breadcrumbItems.length>0&&jsx(VefBreadcrumb,{items:breadcrumbItems,onClick:onBreadcrumbClick})})}VefHeaderContent.displayName="VefHeaderContent";/*! 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 */export{VefHeaderContent as default};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{themeVariables,styles}from"@vef-framework/shared";import{Layout}from"antd";import{memo}from"react";import VefButton from"../../vef-button/index.js";import VefIcon from"../../vef-icon/index.js";import VefPopover from"../../vef-popover/index.js";import{useLayoutStore}from"../store.js";import VefHeaderActionIcons from"./header-action-icons.js";import VefHeaderContent from"./header-content.js";import VefIconMenuFoldLeft from"./icon-menu-fold-left.js";import VefIconMenuUnfoldLeft from"./icon-menu-unfold-left.js";import VefMenuGroups from"./menu-groups.js";const{Header}=Layout,headerStyle=css`
|
|
2
|
-
--vef-layout-header-height: 60px;
|
|
3
|
-
--vef-layout-header-padding: 0 ${themeVariables.paddingSm};
|
|
4
|
-
|
|
5
|
-
line-height: unset;
|
|
6
|
-
background-color: ${themeVariables.colorBgContainer};
|
|
7
|
-
border-bottom: ${themeVariables.lineWidth} ${themeVariables.lineType} ${themeVariables.colorBorderSecondary};
|
|
8
|
-
display: grid;
|
|
9
|
-
grid-template-columns: max-content minmax(min-content, 1fr) max-content;
|
|
10
|
-
align-items: center;
|
|
11
|
-
column-gap: ${themeVariables.margin};
|
|
12
|
-
`;function IconApps(props){return jsx("svg",{viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...props,children:jsxs("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.8,children:[jsx("rect",{height:6.5,rx:2,width:6.5,x:3.75,y:3.75}),jsx("path",{d:"M15.586 3.818a2 2 0 0 1 2.828 0l1.768 1.768a2 2 0 0 1 0 2.828l-1.768 1.768a2 2 0 0 1-2.828 0l-1.768-1.768a2 2 0 0 1 0-2.828z"}),jsx("rect",{height:6.5,rx:1.5,width:6.5,x:3.75,y:13.75}),jsx("rect",{height:6.5,rx:2,width:6.5,x:13.75,y:13.75})]})})}function VefHeaderBase(){const[siderCollapsed,setSiderCollapsed]=useLayoutStore(state=>[state.siderCollapsed,state.setSiderCollapsed]);return jsxs(Header,{css:headerStyle,children:[jsxs("div",{css:styles.flexCenter,children:[jsx(VefButton,{color:"default",variant:"text",icon:jsx(VefIcon,{size:"huge",children:siderCollapsed?jsx(VefIconMenuUnfoldLeft,{}):jsx(VefIconMenuFoldLeft,{})}),onClick:()=>setSiderCollapsed(!siderCollapsed)}),jsx(VefPopover,{content:jsx(VefMenuGroups,{}),placement:"bottomRight",trigger:"click",children:jsx(VefButton,{color:"default",variant:"text",icon:jsx(VefIcon,{size:"huge",children:jsx(IconApps,{})})})})]}),jsx(VefHeaderContent,{}),jsx(VefHeaderActionIcons,{})]})}const VefHeader=memo(VefHeaderBase);VefHeader.displayName="VefHeader";/*! 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 */export{VefHeader as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsxs,jsx}from"@emotion/react/jsx-runtime";import{memo}from"react";function SvgIconBoy(props){return jsxs("svg",{className:"icon-boy_svg__icon",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...props,children:[jsx("path",{d:"M512.002 0C229.382 0 .237 229.145.237 511.765.237 685.839 87.185 839.597 220 932.046c25.884-90.133 91.287-158.031 180.288-189.033a306 306 0 0 1 11.245-3.682c.6-.183 1.19-.383 1.795-.562a325 325 0 0 1 27.058-6.868c.933-.196 1.874-.37 2.807-.558a345 345 0 0 1 14.722-2.62 351 351 0 0 1 10.429-1.453c1.254-.158 2.499-.33 3.757-.47a355 355 0 0 1 14.168-1.359h51.705c4.757.354 9.454.82 14.123 1.35 1.32.154 2.628.333 3.94.5a345 345 0 0 1 14.393 2.099c3.415.574 6.806 1.2 10.167 1.87 1.149.229 2.315.441 3.456.683a328 328 0 0 1 26.446 6.709c1.067.317 2.116.662 3.178.991 3.224 1 6.426 2.045 9.592 3.14 89.284 30.882 154.903 98.838 180.9 189.147 132.722-92.466 219.603-246.166 219.603-420.174C1023.763 229.14 794.622 0 512.002 0m0 725.32c-130.373 0-236.491-103.56-240.743-232.896-.146-.092-.292-.167-.438-.259-4.993-93.353 43.813-165.065 105.598-206.971.358-.246.703-.5 1.062-.741 2.357-1.583 4.747-3.082 7.138-4.578.937-.587 1.853-1.199 2.799-1.77 38.04-23.106 79.896-35.18 116.717-34.48 2.62-.087 5.23-.2 7.871-.2 2.507 0 4.977.113 7.468.188 28.237-.487 59.406 6.534 89.563 20.212a241 241 0 0 1 61.725 39.377c50.227 43.089 86.59 107.847 82.188 188.963l-.2.117c-4.186 129.399-110.329 233.039-240.748 233.039",fill:"#A0D9F6"}),jsx("path",{d:"M376.414 285.194c.354-.242.704-.504 1.062-.741-.358.241-.703.5-1.062.74m143.051-41.581c-2.49-.075-4.96-.187-7.467-.187-2.64 0-5.252.112-7.871.2 2.523.05 5.043.104 7.517.27a156 156 0 0 1 7.821-.283M472.28 386.726c-46.308 81.238-124.764 153.205-201.025 105.698 4.253 129.336 110.37 232.897 240.744 232.897 130.42 0 236.566-103.64 240.748-233.039-63.725 39.66-230.815-17.875-280.467-105.556m-87.664-106.85c.937-.584 1.857-1.2 2.799-1.77-.95.574-1.862 1.186-2.8 1.77m224.413-16.051a260.3 260.3 0 0 1 61.726 39.377 241.1 241.1 0 0 0-61.726-39.377",fill:"#FCE9EA"}),jsx("path",{d:"M610.498 738.656c1.067.317 2.116.662 3.178.991-1.062-.329-2.111-.674-3.178-.99m-170.117-6.755c.933-.196 1.874-.37 2.807-.558-.937.187-1.878.362-2.807.558m-28.854 7.43c.6-.183 1.192-.383 1.795-.562-.603.179-1.195.379-1.795.562m211.736 3.457q1.097.382 2.183.77a119.4 119.4 0 0 1-10.458 22.11c17.142 26.397 12.84 141.49-12.919 123.398l-45.096-31.756-44.98-31.64 2.958-2.078c-.983.025-1.966.075-2.957.075-1.033 0-2.053-.054-3.078-.079l2.961 2.082-44.98 31.64-45.095 31.756c-25.9 18.125-30.19-97.405-12.878-123.535a119.3 119.3 0 0 1-10.357-21.915c.57-.204 1.137-.408 1.711-.603-89 30.998-154.404 98.9-180.287 189.033 82.82 57.653 183.457 91.483 292.003 91.483 108.616 0 209.316-33.876 292.161-91.59-25.984-90.31-91.603-158.27-180.892-189.151m-42.667-11.524c1.149.229 2.315.441 3.456.683-1.14-.242-2.303-.458-3.456-.683m-112.257-3.99c1.253-.154 2.499-.33 3.756-.47-1.257.14-2.503.312-3.756.47m83.753-.483c1.32.15 2.628.333 3.94.5-1.312-.163-2.616-.342-3.94-.5",fill:"#CFE07D"}),jsx("path",{d:"M408.929 765.527c3.44-5.19 7.73-6.872 12.877-3.252l45.096 31.756 42.018 29.557c1.029.025 2.045.08 3.078.08.991 0 1.974-.05 2.957-.076l42.022-29.561 45.096-31.756c5.173-3.653 9.475-1.912 12.92 3.39a119.3 119.3 0 0 0 10.457-22.111l-2.182-.77a307 307 0 0 0-9.592-3.14c-1.062-.33-2.111-.675-3.178-.992a327 327 0 0 0-26.446-6.71c-1.14-.24-2.307-.453-3.456-.682a332 332 0 0 0-24.56-3.97c-1.312-.166-2.62-.35-3.94-.5a368 368 0 0 0-14.123-1.349h-51.705A355 355 0 0 0 472.1 726.8c-1.258.142-2.503.317-3.757.47a338 338 0 0 0-25.15 4.074c-.938.187-1.88.362-2.808.558a329 329 0 0 0-27.058 6.868c-.604.179-1.196.379-1.795.562a298 298 0 0 0-12.957 4.285 119.4 119.4 0 0 0 10.354 21.911",fill:"#FEFEFE"}),jsx("path",{d:"m602.073 762.275-45.096 31.756-42.022 29.561-2.957 2.078 44.98 31.64 45.095 31.756c25.76 18.092 30.061-97.001 12.92-123.397-3.44-5.306-7.743-7.047-12.92-3.394m-180.267 0c-5.148-3.62-9.437-1.937-12.877 3.252-17.313 26.13-13.024 141.66 12.877 123.535l45.096-31.756 44.98-31.64-2.962-2.082-42.018-29.557z",fill:"#7EA701"}),jsx("path",{d:"M472.279 386.726c49.652 87.68 216.742 145.217 280.467 105.556l.2-.117c4.402-81.116-31.965-145.874-82.188-188.963a260.5 260.5 0 0 0-61.726-39.377c-30.156-13.678-61.326-20.7-89.563-20.212-2.627.046-5.247.108-7.82.283 8.337 29.52-8.268 88.264-39.37 142.83",fill:"#F7B970"}),jsx("path",{d:"M472.279 386.726c31.102-54.57 47.711-113.31 39.37-142.83a149 149 0 0 0-7.518-.27c-36.82-.7-78.677 11.373-116.717 34.48-.942.57-1.862 1.186-2.8 1.77-2.39 1.495-4.78 2.994-7.138 4.577-.358.241-.703.5-1.062.74-61.784 41.907-110.59 113.62-105.597 206.972.146.092.292.167.437.259 76.261 47.507 154.717-24.46 201.025-105.698",fill:"#FBCE77"})]})}const Memo=memo(SvgIconBoy);/*! 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 */export{Memo as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsxs,jsx}from"@emotion/react/jsx-runtime";import{memo}from"react";function SvgIconGirl(props){return jsxs("svg",{className:"icon-girl_svg__icon",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...props,children:[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"}),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"}),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"}),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"}),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"}),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"}),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"}),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"})]})}const Memo=memo(SvgIconGirl);/*! 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 */export{Memo as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs}from"@emotion/react/jsx-runtime";function VefIconMenuFoldLeft(props){return jsx("svg",{"aria-hidden":!0,focusable:!1,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...props,children:jsxs("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[jsx("path",{d:"M19 5h-14",strokeDasharray:16,strokeDashoffset:16,children:jsx("animate",{attributeName:"stroke-dashoffset",dur:"0.2s",fill:"freeze",values:"16;0"})}),jsx("path",{d:"M19 12h-9",strokeDasharray:10,strokeDashoffset:10,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.2s",dur:"0.2s",fill:"freeze",values:"10;0"})}),jsx("path",{d:"M19 19h-14",strokeDasharray:16,strokeDashoffset:16,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.4s",dur:"0.2s",fill:"freeze",values:"16;0"})}),jsx("path",{d:"M7 9l-3 3l3 3",strokeDasharray:10,strokeDashoffset:10,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.6s",dur:"0.2s",fill:"freeze",values:"10;0"})})]})})}/*! 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 */export{VefIconMenuFoldLeft as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs}from"@emotion/react/jsx-runtime";function VefIconMenuUnfoldLeft(props){return jsx("svg",{"aria-hidden":!0,focusable:!1,viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...props,children:jsxs("g",{fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,children:[jsx("path",{d:"M21 9l-3 3l3 3",strokeDasharray:10,strokeDashoffset:10,children:jsx("animate",{attributeName:"stroke-dashoffset",dur:"0.2s",fill:"freeze",values:"10;0"})}),jsx("path",{d:"M19 5h-14",strokeDasharray:16,strokeDashoffset:16,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.2s",dur:"0.2s",fill:"freeze",values:"16;0"})}),jsx("path",{d:"M14 12h-9",strokeDasharray:10,strokeDashoffset:10,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.4s",dur:"0.2s",fill:"freeze",values:"10;0"})}),jsx("path",{d:"M19 19h-14",strokeDasharray:16,strokeDashoffset:16,children:jsx("animate",{attributeName:"stroke-dashoffset",begin:"0.6s",dur:"0.2s",fill:"freeze",values:"16;0"})})]})})}/*! 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 */export{VefIconMenuUnfoldLeft as default};
|