@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{jsxs,jsx}from"@emotion/react/jsx-runtime";import{memo}from"react";function SvgAccessDeniedIcon(props){return jsxs("svg",{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...props,children:[jsxs("defs",{children:[jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__a",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__b",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__c",spreadMethod:"pad",x1:0,x2:1,y1:-.031,y2:-.031,children:[jsx("stop",{offset:0,stopColor:"#fff5de"}),jsx("stop",{offset:1,stopColor:"#fbd2ac"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__d",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__e",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__f",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__g",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__h",spreadMethod:"pad",x1:.111,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__i",spreadMethod:"pad",x1:.119,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__j",spreadMethod:"pad",x1:1.541,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__k",spreadMethod:"pad",x1:1,x2:0,y1:-.118,y2:-.118,children:[jsx("stop",{offset:0,stopColor:"#f5dda7"}),jsx("stop",{offset:1,stopColor:"#fa9a41"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__l",spreadMethod:"pad",x1:.224,x2:.5,y1:-.089,y2:.774,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__m",spreadMethod:"pad",x1:.454,x2:.5,y1:-.115,y2:.786,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__n",spreadMethod:"pad",x1:.477,x2:.5,y1:-.115,y2:.786,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__o",spreadMethod:"pad",x1:.439,x2:.5,y1:-.115,y2:.786,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__p",spreadMethod:"pad",x1:0,x2:1.132,y1:.776,y2:.776,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__q",spreadMethod:"pad",x1:.14,x2:.875,y1:.075,y2:1.075,children:[jsx("stop",{offset:0,stopColor:"#ffb859"}),jsx("stop",{offset:1,stopColor:"#f97b61"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__r",spreadMethod:"pad",x1:.021,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__s",spreadMethod:"pad",x1:1,x2:.006,y1:-.03,y2:-.03,children:[jsx("stop",{offset:0,stopColor:"#f97b61"}),jsx("stop",{offset:1,stopColor:"#ffb859"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__t",spreadMethod:"pad",x1:1,x2:.006,y1:-.03,y2:-.03,children:[jsx("stop",{offset:0,stopColor:"#f97b61"}),jsx("stop",{offset:1,stopColor:"#ffb859"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__u",spreadMethod:"pad",x1:0,x2:.994,y1:-.03,y2:-.03,children:[jsx("stop",{offset:0,stopColor:"#ffb859"}),jsx("stop",{offset:1,stopColor:"#f97b61"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__v",spreadMethod:"pad",x1:0,x2:.994,y1:-.03,y2:-.03,children:[jsx("stop",{offset:0,stopColor:"#ffb859"}),jsx("stop",{offset:1,stopColor:"#f97b61"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__w",spreadMethod:"pad",x1:.863,x2:0,y1:-.028,y2:-.028,children:[jsx("stop",{offset:0,stopColor:"#1d181c"}),jsx("stop",{offset:.3,stopColor:"#2c2422"}),jsx("stop",{offset:.5,stopColor:"#42352c"}),jsx("stop",{offset:.7,stopColor:"#57352c"}),jsx("stop",{offset:1,stopColor:"#923629"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__x",spreadMethod:"pad",x1:.099,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__y",spreadMethod:"pad",x1:.101,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__z",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.434,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__A",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[jsx("stop",{offset:.032,stopColor:"#afdef9"}),jsx("stop",{offset:1,stopColor:"#7cc9f9"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__B",spreadMethod:"pad",x1:.059,x2:.6,y1:.609,y2:.371,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__C",spreadMethod:"pad",x1:.445,x2:.583,y1:-.065,y2:0,children:[jsx("stop",{offset:.032,stopColor:"#afdef9"}),jsx("stop",{offset:1,stopColor:"#7cc9f9"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__D",spreadMethod:"pad",x1:.284,x2:.5,y1:.87,y2:.305,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__E",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[jsx("stop",{offset:.032,stopColor:"#afdef9"}),jsx("stop",{offset:1,stopColor:"#7cc9f9"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__F",spreadMethod:"pad",x1:.802,x2:.402,y1:.781,y2:.012,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__G",spreadMethod:"pad",x1:.17,x2:.731,y1:.776,y2:.273,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__H",spreadMethod:"pad",x1:0,x2:.85,y1:.669,y2:.361,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__I",spreadMethod:"pad",x1:0,x2:.85,y1:.644,y2:.382,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]}),jsxs("linearGradient",{gradientUnits:"objectBoundingBox",id:"access-denied-icon_svg__J",spreadMethod:"pad",x1:0,x2:.85,y1:.639,y2:.385,children:[jsx("stop",{offset:0,stopColor:"#98d6fa"}),jsx("stop",{offset:1,stopColor:"#47b0f1"})]})]}),jsx("path",{d:"M0 0h1024v1024H0Z",fill:"none"}),jsx("path",{d:"M76.8 581.8 72 559.4l-4.2-23.8-3.6-28.8-1.9-26.5-.2-22.1.3-11.2.8-11.2 1.2-11.2 1.7-11.2 2.1-10.9 2.7-10.6 2.5-7.9 2.8-7.7 3.1-7.4 3.5-7.1 3.9-7 4.3-6.6 4.7-6.3 5.2-6 5.6-5.6 6.1-5.2 6.6-4.8 7.2-4.4 5.9-3 6.4-2.8 6.7-2.5 7.3-2.2 7.7-1.9 17.7-3.4 16.8-2.8 15.8-2.2 16-1.8 29.3-2.5 21.2-1.1 56.2-2.4 22.6-1.8 10.4-1.2 10.3-1.6 9.9-2.2 9.4-2.5 6.9-2.3 6.8-2.7 6.6-3 6.5-3.5 6.1-3.8 6.2-4.3 6-4.9 22.9-21.2 14.4-11.9 12.4-8.6 6.1-3.6 5.6-2.8 5.2-2.2 5.3-1.8 5.2-1.3 10-1.4 10.5-.2 8.1.5 28.8 2.6 7.3.3 7.4-.4 7.5-.9 7.4-1.4 7.5-1.8 7.5-2.2 14.5-5.4 17.6-8.2 9.8-5.2 17.9-10.6 28.7-18.8 12.7-6.2 8.9-3.6 13.3-4.4 15.5-4 17.2-2.7 8.8-.8 9.2-.3 9.5.3 14.3 1.6 14.6 3.3 7.2 2.2 7.1 2.8 7.3 3.4 7.2 3.9 6.9 4.4 6.9 5 6.9 5.8 6.8 6.5 5.1 5.4 10 12.5 9.8 14.9 8.6 16.1 4.2 9.1 4.1 9.9 7.4 21.1 6.4 23.3 3 13 2.8 14 1.5 23.4 2.4 47.1.8 38.6-.5 29.5-.7 14.5-1.2 13.9-3 23.3-1.7 9.5-4.2 17.5-2.7 8.6-3 8-3.2 7.5-3.6 6.9-3.2 5.5-3.5 5-3.6 4.7-3.9 4.3-9.5 9-4.4 4.8-3.4 4.6-2.7 4.3-2.3 4.8-1.6 4.5-1 4.3-.4 4.1.1 4.3.5 4 1 4 1.5 3.8 4 7.2 5.4 6.7 4.2 4 4.6 3.7 5 3.4 5.2 3 5.4 2.6 5.4 2.2 5.6 1.8 5.4 1.4 8.4 1.5 2.5.9 2 1.2 1.5 1.5 1.2 1.7.9 2.5.4 2.8-.2 3.4-.8 4.1-3.1 7.9-2.4 4.6-3.2 5.1-4.5 6.3-5.5 6.8-6.5 7.2-7 6.9-7.8 7-8.7 7.2-9 6.8-9.8 6.6-10.5 6.5-8 4.5-17 8.3-14.3 6-7.4 2.6-9.9 3.1-15.6 4.3-20.1 5-21.6 4.8-25.3 5.1-26.5 4.9-29.4 4.8-30.4 4.4-32.6 4.1-22 2.4-46 4-47 2.8-24 .8-24 .4-23.9-.1-24-.5-23.9-1.1-23.6-1.6-23.3-2.2-17.5-2-17.1-2.4-16.7-2.8-16.4-3.1-16.4-3.6-15.9-4-15.3-4.4L213 802l-8.6-4-8.2-4.4-7.8-4.7-7.4-5.2-7.2-5.5-6.8-5.8-6.5-6.1-6.1-6.4-7.8-8.9-7.2-9.2-6.6-9.5-6.2-9.8-5.8-9.9-5.2-10-4.9-10.2-8.5-19.9-5.4-14.9-4.6-14-4-13.7-6-23.8z",fill:"#47b0f1",fillOpacity:.05}),jsx("path",{d:"m158 329 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H109l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H106l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H155l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",fill:"url(#access-denied-icon_svg__a)",fillOpacity:.1}),jsx("path",{d:"m858 159 3.1 1.6 1.2 1.1 1.5 3 .2 1.8-.3 3-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3h-79l-2-.3-1.8-.7-1.5-1.2-1.2-1.5-.7-1.8-.3-2 .3-3 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3H809l1.9-.3 1.6-.6 1.4-1.1 1.1-1.3.7-1.6.3-2.1-.3-1.9-.6-1.6-1.1-1.4-1.3-1.1-1.6-.7-1.9-.3H806l-1.7-.7-2.6-2-1.5-3-.2-2.8.3-2 .7-1.8 1.2-1.5 1.5-1.2 1.8-.7 2-.3h79l2 .3 1.8.7 1.5 1.2 1.2 1.5.7 1.8.3 3-.3 2-.7 1.8-1.2 1.5-1.5 1.2-1.8.7-2 .3H855l-1.9.3-1.6.6-1.4 1.1-1.1 1.3-.7 1.6-.3 1.9.3 2.1.6 1.6 1.1 1.4 1.3 1.1 1.6.7 1.9.3z",fill:"url(#access-denied-icon_svg__b)",fillOpacity:.1}),jsx("path",{d:"m514.5 712 32.9.2 31.8.7 30.9 1.1 30.8 1.5 29.5 1.8 28.2 2.2 28.2 2.7 26.5 3 24.8 3.2 24.8 3.7 22.7 3.9 20.7 4 13.5.3 12.9.8 12.4 1.1 12.4 1.6 11.6 1.9 10.9 2.2 10.8 2.6 9.8 2.9 8.8 3.1 8.8 3.6 7.5 3.7 6.5 3.8 4.7 3.2 3.9 3.3 3.3 3.2 2.7 3.3 2.3 3.6 1.6 3.6 1 3.6.3 3.6-.3 3.5-.9 3.5-1.5 3.5-2.2 3.5-2.5 3.2-3.1 3.1-3.8 3.2-4.4 3.2-6.1 3.7-7.2 3.7-8.2 3.5-8.5 3.1-9.3 2.8-10.2 2.7-10.3 2.3-11.1 2-11.8 1.6-27.4 7.1-15.7 3.5.5 6.3-.3 4.4-.8 4.3-1.3 4.3-1.8 4.3-2.5 4.3-5.9 7.8-8.1 8-4.9 3.9-6.2 4.5-7 4.4-7.8 4.3-8.8 4.3-8.6 3.8-19.5 7.3-21.7 6.5-23.3 5.6-12.7 2.4-16.8 2.8-17.6 2.4-18.6 1.9-18.6 1.4-19.3.8-19.9.3-31-.7-14.8-.8-29.1-2.7-14-1.8-26.4-4.4-13.1-2.7-24-6-22.1-7.1-10.2-3.8-9.4-4-8.6-4.1-8.7-4.7-7.6-4.7-6.8-4.7-5.8-4.7-4.6-4.3-4-4.2-3.3-4.3-2.7-4.2-2.2-4.2-28-2.4-26.4-2.6-24.9-2.9-24.9-3.3-23-3.6-21.2-3.7-21.2-4.2-19-4.4-17-4.4-12.9-3.8-11.4-3.7-10-3.8-8.9-3.6-7.4-3.5-6.3-3.5-5.3-3.3-8.3-6.3-3.1-3.2-2.4-3.1-1.8-2.9-1.2-2.9-.7-2.9-.3-2.9.2-2.8.8-2.9 1.1-2.8 1.8-2.9 2.3-3 3-3.1 3.6-3.1 9.5-6.5 6.1-3.3 15.7-7.1 9.7-3.7 11-3.7 12.4-3.7 16.4-4.4 18.4-4.3 20.5-4.2 20.5-3.7 22.3-3.6 24.1-3.3 24.1-3 25.6-2.6 27.2-2.5 55.4-3.7 29.6-1.3 59.9-1.6z",fill:"url(#access-denied-icon_svg__c)"}),jsx("path",{d:"m686.6 226.6-1.6-3.7-2-3.2-2.4-2.9-2.8-2.6-3-2.2-3.4-1.9-7.1-2.6-3.8-.8-3.8-.4-7.5.3 5.9-2.9 3.3-1.1 3.5-.8 6.9-.7 3.5.2 3.3.5 3.1 1 3 1.4 2.6 1.9 2.3 2.4 2.3-2.3 2.7-1.9 2.9-1.4 3.1-.9 3.3-.6 3.5-.2 7 .7 3.4.8 6.4 2.4 2.8 1.6-7.4-.3-7.6 1.2-7.2 2.7-3.3 1.9-3.1 2.2-2.8 2.5-2.4 2.9-2 3.2z",fill:"url(#access-denied-icon_svg__d)"}),jsx("path",{d:"m770 214.1-1.1-2.6-3-4.2-2-1.8-2.9-2-3.1-1.6-3.4-1.1-3.5-.6-3.5-.2-3.4.2 3-1.5 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.6-1.7 3.9-2.2 4.5-1.1 2.4-.1 3.6.2 3.6.8 3.4 1.2 3 1.6-3.5-.3-3.4.3-3.6.6-3.4 1.2-3.1 1.5-2.9 2-2.5 2.4-2 2.8z",fill:"url(#access-denied-icon_svg__e)"}),jsx("path",{d:"m735.2 179.6-1.1-2.6-3-4.2-2-1.8-2.8-2-3.2-1.5-3.4-1.2-3.5-.6-3.4-.2-3.5.3 3-1.6 3.4-1.3 3.6-.7 3.6-.3 2.4.1 4.5 1.1 3.8 2.3 1.6 1.7 1.7-1.6 3.8-2.3 4.5-1.1 2.4-.1 3.6.3 3.6.7 3.4 1.2 3 1.6-3.5-.2-3.4.2-3.6.7-3.3 1.1-3.2 1.5-2.9 2-2.5 2.4-2 2.9z",fill:"url(#access-denied-icon_svg__f)"}),jsx("path",{d:"m840.7 220.1-1.1-2.4-1.4-1.9-3.7-3.1-4.5-1.8-2.5-.5h-4.8l2.9-1.4 3.2-.9 2.3-.3 4.3.3 2 .7 1.8 1.1 1.5 1.5 1.6-1.5 1.7-1 4.2-1 4.4.3 3.3.9 2.8 1.4h-4.8l-2.4.4-4.5 1.9-3.8 3-1.4 2z",fill:"url(#access-denied-icon_svg__g)"}),jsx("path",{d:"M344.6 778.1v-81.9h27.3v-42.3h-27.3v-203h-44.8v203h-62.6l-3.7-.2-3.2-.7-2.8-1.2-2.5-1.5-2.3-2.2-1.7-2.3-1.2-2.4-.8-2.5-.2-2.6 1.1-10.1 27-177.3h-44.4l-30 192.5-.6 8.6.2 5.8.7 5.2 1.2 4.5 1.5 4 1.9 3.5 3.3 4.6 3.5 4 3.6 3.4 3.7 2.8 4 2.3 4.2 1.8 4.3 1.2 4.7.8 5 .3h86.1v81.9z",fill:"url(#access-denied-icon_svg__h)"}),jsx("path",{d:"M667.9 711.5h42.9l1.4 3.8 1.7 3.1 2 2.5 2.3 2.1 2.5 1.6 2.9 1.1 3.2.8 3.7.2h70.6l5.2-.3 4.2-.7 3.4-1.1 2.7-1.5 2.1-1.7 1.7-2.1 1.2-2.4.7-2.9.3-3.3v-72l-.3-4.2-.8-3.5-1.3-3-1.6-2.4-2.2-2-2.6-1.6-3.2-1.3-3.9-.8-4.7-.2h-91.4V577h89l5.6-.3 4.4-.8 3.6-1.1 2.9-1.5 2.2-1.8 1.8-2.1 1.2-2.4.8-2.9.3-3.4v-57.8l-.3-4.4-.7-3.7-1.1-3.1-1.4-2.6-1.8-2.2-2.2-1.8-2.6-1.4-3.1-1.1-3.7-.7-4.4-.3h-69.3l-3.7.3-3.3.8-2.8 1.3-2.5 1.8-2.3 2.4-1.9 3-1.7 3.7-1.3 4.5h-43.4l-.4-8.7.3-5.1.8-4.9 1.3-4.8 1.9-4.7 2.5-4.6 3.1-4.6 3.7-4.5 4.4-4.5 3.8-3.2 4.2-2.8 4.4-2.4 4.7-2 5.1-1.5 5.4-1.2 5.9-.7 6.4-.3h81.2l7.6.3 7 .8 6.3 1.3 5.7 1.7 5.2 2.2 4.8 2.5 4.3 3 4 3.4 3.5 3.8 3 4 2.6 4.3 2.1 4.6 1.7 4.9 1.2 5.3.8 5.6.2 6.1v74.1l-.2 4.8-.7 4.9-1.3 5.1-1.8 5.2-2.4 5.4-3.1 5.6 3.3 6 2.5 5.4 1.8 5 1.2 4.6.7 4.2.3 3.8v89.1l-.3 5.7-.7 5.4-1.2 5.1-1.6 4.7-2.1 4.4-2.5 4.1-2.9 3.9-3.5 3.7-4.5 4.1-4.6 3.4-4.5 2.8-4.6 2.3-4.6 1.7-4.6 1.2-4.6.7-4.8.3h-86.9l-7.1-.3-6.6-.7-6-1.2-5.5-1.7-5.1-2.1-4.8-2.4-4.3-2.9-4-3.3-3.7-3.8-3.3-4.2-3.1-4.7-2-3.7-1.8-4.3-1.5-4.7-1.2-5.3-1-5.9z",fill:"url(#access-denied-icon_svg__i)"}),jsx("path",{d:"M614.8 562H503.2l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.3 1.3 1.8 1 2.3.7 2.9.2h111.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7zM614.8 613h-81.6l-2.9.2-2.3.7-1.7 1-1.4 1.3-1 1.8-.7 2.2-.2 2.8.2 2.8.7 2.2 1 1.8 1.4 1.3 1.7 1 2.3.7 2.9.2h81.6l2.9-.2 2.3-.7 1.7-1 1.4-1.3 1-1.8.7-2.2.2-2.8-.2-2.8-.7-2.2-1-1.8-1.4-1.3-1.7-1-2.3-.7z",fill:"#fff"}),jsx("path",{d:"m383 602.5.2 8 .7 7.8 1 7.6 1.4 7.4 1.8 7.3 2.8 9.1 3.4 8.7 3.9 8.4 4.4 8.1 4.9 7.9 5.4 7.4 5.8 7.1 6.3 6.7 6.7 6.3 7.1 5.8 7.4 5.4 7.9 4.9 8.1 4.4 8.4 3.9 8.7 3.4 9.1 2.8 7.3 1.8 7.4 1.4 7.6 1 7.8.7 8 .2 8-.2 7.8-.7 7.6-1 7.4-1.4 7.3-1.8 9.1-2.8 8.7-3.4 8.4-3.9 8.1-4.4 7.9-4.9 7.4-5.4 7.1-5.8 6.7-6.3 6.3-6.7 5.8-7.1 5.4-7.4 4.9-7.9 4.4-8.1 3.9-8.4 3.4-8.7 2.8-9.1 1.8-7.3 1.4-7.4 1-7.6.7-7.8.2-8-.2-8-.7-7.8-1-7.6-1.4-7.4-1.8-7.3-2.8-9.1-3.4-8.7-3.9-8.4-4.4-8.1-4.9-7.9-5.4-7.4-5.8-7.1-6.3-6.7-6.7-6.3-7.1-5.8-7.4-5.4-7.9-4.9-8.1-4.4-8.4-3.9-8.7-3.4-9.1-2.8-7.3-1.8-7.4-1.4-7.6-1-7.8-.7-8-.2-8 .2-7.8.7-7.6 1-7.4 1.4-7.3 1.8-9.1 2.8-8.7 3.4-8.4 3.9-8.1 4.4-7.9 4.9-7.4 5.4-7.1 5.8-6.7 6.3-6.3 6.7-5.8 7.1-5.4 7.4-4.9 7.9-4.4 8.1-3.9 8.4-3.4 8.7-2.8 9.1-1.8 7.3-1.4 7.4-1 7.6-.7 7.8z",fill:"url(#access-denied-icon_svg__j)"}),jsx("path",{d:"m422.6 552.8.9 1.9 1.3 1.6 1.8 1.5 4.6 2.1 2.9.7 6.4.5 3.6-.1 7.4-1.2 4-1 7.4-2.9 3.3-1.7 5.8-3.9 4.3-4.2 1.5-2.2 1.1-2.1.7-2.3.1-2.1-.3-2-.9-1.9-1.3-1.7-1.8-1.5-4.6-2.1-6-1.1h-6.9l-7.4 1.2-4 1.1-3.9 1.3-6.8 3.2-3.1 1.9-4.9 4-2.1 2.3-2.6 4.3-.7 2.2-.1 2.1z",fill:"#b6dcf2"}),jsx("path",{d:"m523 607.5.3 4.3.8 4.1 1.4 3.9 1.8 3.6 2.3 3.3 2.6 3.1 3.1 2.6 3.3 2.3 3.6 1.8 3.9 1.4 4.1.8 4.3.3 4.3-.3 4.1-.8 3.9-1.4 3.6-1.8 3.3-2.3 3.1-2.6 2.6-3.1 2.3-3.3 1.8-3.6 1.4-3.9.8-4.1.3-4.3-.3-4.3-.8-4.1-1.4-3.9-1.8-3.6-2.3-3.3-2.6-3.1-3.1-2.6-3.3-2.3-3.6-1.8-3.9-1.4-4.1-.8-4.3-.3-4.3.3-4.1.8-3.9 1.4-3.6 1.8-3.3 2.3-3.1 2.6-2.6 3.1-2.3 3.3-1.8 3.6-1.4 3.9-.8 4.1z",fill:"#47b0f1"}),jsx("path",{d:"m610.1 528.8-1.3 2.2-.2 1.4.1 2.3.8 2.5 1.3 2.4 1.9 2.4 2.4 2 2.3 1.4 2.5.9 2.2.3 2.6-.7 1.1-.7 1.3-2.2.3-1.5-.2-2.2-.8-2.5-1.3-2.4-1.9-2.4-2.3-2-2.4-1.4-2.5-.9-2.2-.3-1.4.2zM405 637.5l.3 3.2.8 2.9 1.3 2.7 1.7 2.5 2.1 2.1 2.5 1.7 2.7 1.3 2.9.8 3.2.3 3.2-.3 2.9-.8 2.7-1.3 2.5-1.7 2.1-2.1 1.7-2.5 1.3-2.7.8-2.9.3-3.2-.3-3.2-.8-2.9-1.3-2.7-1.7-2.5-2.1-2.1-2.5-1.7-2.7-1.3-2.9-.8-3.2-.3-3.2.3-2.9.8-2.7 1.3-2.5 1.7-2.1 2.1-1.7 2.5-1.3 2.7-.8 2.9zM520 679l.7 3.8 1.9 3.3 2.8 2.4 1.8.8 3.8.7 3.8-.7 3.3-1.9 2.4-2.8 1.3-3.6v-4l-.5-1.8-1.9-3.3-2.8-2.4-1.8-.8-3.8-.7-3.8.7-3.3 1.9-2.4 2.8-.8 1.8z",fill:"#b6dcf2"}),jsx("path",{d:"m428.1 793.5 6.2 2.2 3.7 1.7 3.4 2.4.9 1.9-.7 1.9-1.2 1.3-9.6 6-2.2 1.8-1.3 1.6-1 1.8-.3 1.7.1 1.6.5 1.7 2.2 3.2 2.2 2.4 4.4 3.7 8.5 3.9 5.2 1.9 14.6 4 17.2 3.6 20.7 2.8 11.1 1 12.1.6 12.1.2 12.6-.3 13.3-.8 20-2.3 20.8-3.8 9.8-2.4 8.5-2.4 13.4-4.8 6.3-2.9 5.2-2.8 4.2-2.7 3.3-2.6 3.3-3.1 2.5-2.9 1.8-2.8 1.2-2.8.8-2.9.3-2.9v-2.8l-.5-2.7-1.3-3.5-1.7-3.4-2.3-3.3-2.7-3-6.2-5.3-4.7-2.8-7.6-3.8-8.8-3.6-11.3-4.1-12.2-3.8-14.4-3.8-9.9-2.2-22.1-3.9-11.4-1.6-12-1.2-12.6-.8-12.6-.4-13 .2-13.4.6-12 1-19.1 2.3-15.9 3-5.9 1.5-10.2 3.5-3.4 1.6-3.1 1.9-2 1.7-2.7 4.1-2 5-.4 2.4.1 2.4.7 2.3 1.2 2.1 2.1 2.3 3 2.3 3.4 1.9 4.6 2z",fill:"url(#access-denied-icon_svg__k)",fillOpacity:.4}),jsx("path",{d:"m846.9 766.6-1.1-3.6-1.6-3.2-2.1-2.8-2.7-2.5-3.2-2.1-11.6-4.9-2.9-2.3-.5-.9.1-.8.6-1 1.7-1 5.7-.5 2.4.3 2.4.8 2.6 1.5 1.6 1.3 3.6 4.5 3.3 6.2 1.7 4.5.4 2.2z",fill:"url(#access-denied-icon_svg__l)"}),jsx("path",{d:"m847.3 767.8-2.8-9.8-2.9-8.3-2.8-7.1-2.7-5.9-2.8-4.8-4-6.1-1-2-.6-2.2-.3-4.1 1.1-3.4.9-1.2 1.3-.8 3-.1 1.6.4 3.2 2 2.7 3.5 1.9 3.6 2.1 5.5 1.9 6.4 1.9 8.9 1.1 9.2.1 7-.4 3.6-.8 3.2-.7 1.5z",fill:"url(#access-denied-icon_svg__m)"}),jsx("path",{d:"m848.4 763.7 1-4.7.5-5.4-.1-6.3-.7-7.2-1.5-8.3-5-15.6-.7-3.6-.1-3 .3-1.9.6-1.5 1-1.3 1.2-.9 1.9-.7 2.5-.3 2 .5 2.1 1.2 1.2 1.2 2.3 4 .9 2.5 1.2 7.8.1 10.1-.4 7-.9 5.4-3.3 12.9-2.6 8.1-2.1.4z",fill:"url(#access-denied-icon_svg__n)"}),jsx("path",{d:"m851 766.9-.1-8.5.4-7.5.8-6.8 1.2-5.9 1.5-5.3 1.8-4.7 2.1-4.2 2.4-3.6 3.8-4.4 1.8-1.1 1.9-.7 2.1-.2 1.3.2 2.3 1.5.7 1.2.5 1.7.3 2.6-1.7 6.3-1.7 4.1-2.8 5.5-5.4 8-3.9 5-3.6 5.9-2.3 5.6-1.2 4.4-.7.6z",fill:"url(#access-denied-icon_svg__o)"}),jsx("path",{d:"m803 769.9 12.3-2.8 2.2-.9 3.7-2.8 2.5-1.3 3.1-1.2 3.3-.8 3.5-.1 2.3.3 2.1.9 2.1 1.3 1.1-1 1.7-.8 1.8-.5 2.1.1 2.5 1.1 1.2 1.1.8-2.2 1.4-1.9 4-3.2 4.4-1.8 2-.4h3.5l2.7.2 2.8.5 3 1.3 1.9 1.2 1.7 1.6 1.7 2.2 1.1 2.5 1 3.2.5 4.2z",fill:"url(#access-denied-icon_svg__p)"}),jsx("path",{d:"m610 489.6-.3 1.9-.7 2-1.3 1.9-2 2.1-3 2.2-4 2.3-5.1 2.3-11.3 3.7-14.2 3.1-16.2 2.2-17.5 1.1-9.4.2-9.4-.2-17.5-1.1-16.2-2.2-14.2-3.1-11.3-3.7-5.1-2.3-4-2.3-3-2.2-2-2.1-1.3-1.9-.7-2-.3-1.9.3-2 .7-1.9 1.3-2 2-2 3-2.3 4-2.3 5.1-2.3 5.2-1.9 13.2-3.5 14.9-2.6 16.9-1.7 18.4-.5 9.4.1 17.5 1.1 16.2 2.2 14.2 3.1 11.3 3.7 5.1 2.3 4 2.3 3 2.3 2 2 1.3 2 .7 1.9z",fill:"#b6dcf2",fillOpacity:.2,fillRule:"evenodd"}),jsx("path",{d:"m525.7 290 2.8.4 5.2 1.9 4.5 3.1 2 2 2.9 4.4-.1-.7 1.4 1.2 1 3.4.1 3 1.6.2 1.6 1.9.9 3.5-.1 1.9-.6 1.8-1.1 1.5-2.4 1.2-1.8.3-1.1 2.2-3.8 5.5-2.2 2.7-2.5 2.2v9.6l-19 .3.1-11.3-2.1-2-1.8-2.5-1.9-3.3-1.5-3.4h.4l-2.2-.1-1.6-.4-2.2-1.7-1.1-2.4-.2-2.1.3-2 .7-1.7 1-1.3 1.7-.6.9.2.6-4.6 1-3 1.4-2.8 1.9-2.6 2.1-2 2.3-1.6 2.6-1.3 2.7-.8 2.7-.3zm17.8 14 .5 2.3Zm-.4-2.2.4 2.2z",fill:"#ebb0b0"}),jsx("path",{d:"m545.7 310.6 2.3-3.1 1-2.2 1.2-3.5.7-3.9.2-4-.4-4-.6-2.6-2.1-4.6-1.6-2-1.8-1.6-3.6-2.3-1.9-.7-5.1-.5-4.7.8-4.6-3-1.9-.8-2.6-.6-3.2.1-4.3 1-4 1.5-1.7.9-2.9 2.6-2.1 2.5-2 3-1.7 3.5-1.4 3.9-.9 4.3-.2 3 .7 4.7 1.3 3.2 5.5 9.2 1.5-1.3 1.3-1.7 4-7.7 2.8-2.9 3.1-2.5 3.3-2.2 3.6-1.8 5.1-.6 3.8-.1 2.4.3 2.1.7 1.9 1.1 1.7 1.4 1.7 2.2 1.7 3.1z",fill:"#131322"}),jsx("path",{d:"m515.5 335.5 6.5 4.2 3.4.9 1.3-.2 1.5-.7 5.4-4.2 9.1 1.3 5.3 1.3 5.9 2 5.9 2.4 6.3 3 6.1 3.6 6 4.2-.3 20.4-.5 8.6-1.4 13.6-3 16.3-5.4 22.4-9.1 16.2-8.7 13.6-2.7 3-4.3 1.9-4 1.4-3.7.9-7.8.7-10-.5-6.8-.8-3-1.6-4.8-3.6-9.9-8.4-2.6-2.4-1.7-2.7-8.2-17.6-3.8-10.3-2.6-10.4-1.3-29.6-.7-29.5 2.5-3.3 2.6-2.7 2.7-2.3 5.9-3.6 7.7-2.9z",fill:"url(#access-denied-icon_svg__q)"}),jsx("path",{d:"M512 346.1h23.1l1.6.3 1.2.9.9 1.2.3 1.6v37.8l-.3 1.6-.9 1.3-1.2.8-1.6.3H512l-1.6-.3-1.2-.8-.9-1.3-.3-1.6v-37.8l.3-1.6.9-1.2 1.2-.9z",fill:"url(#access-denied-icon_svg__r)"}),jsx("path",{d:"m498.4 386.8 1.8-4.6 1.9-3.9 2.1-3.4 2.3-2.8 2.3-1 .4.2.1.4-.9 1.4 4.3-.7 2.1.4 2.6 1.5 2.3 3.1 1.7 5.6-2 4.3-1.5 2.4-4 4.4-4.3 2.7-4.1 1.1-2.2-.4-1.7-.9-1.4-1.3-1-2-.6-2.7z",fill:"#efba9e"}),jsx("path",{d:"m468.7 355.3 2.7-2.9 2.6-2.1 2.3-1.3 2.2-.7 2.2-.2 2.1.3 2.2.8 2.3 1.5 2.4 2.1 1 1.4 1 2.2.9 3.2.9 5.1.6 6.8.2 7.1-.4 16.5-1.3 17.6-2.9 24.5-2.2 2.3-4 2.9-1.9.8-2.8.6h-2.6l-2.6-.6-2.4-1.1-2.2-1.4-2-1.9-1.8-2.1-2.4-5-2.2-10.6-1.5-9.8-.7-9.1-.1-8.3.5-7.8 1-7.1 1.5-6.6 2-6.1 2.5-5.7z",fill:"url(#access-denied-icon_svg__s)"}),jsx("path",{d:"m470.7 426.7 1.4-5 1.8-5 2.4-4.8 2.9-4.8 3.6-4.8 4.1-4.8 4.9-4.8 5.6-4.7 1.8-.5 3.5-.1 3.3 1.1 1.4 1.1 1.1 1.4 1 1.8.7 2.4-.1 4.5-1.6 8-1.3 4.8-4 10.5-2.7 5.2-3 4.9-3.4 4.3-2.6 2.6-2.7 2.1-2.9 1.7-4.1.6h-3.2l-2.5-.5-2-.9-1.6-1.3-1.2-1.7-.8-2.2-.5-2.9.1-3.6z",fill:"url(#access-denied-icon_svg__t)"}),jsx("path",{d:"m550.1 386.8-1.7-4.6-2-3.9-2.1-3.4-2.2-2.8-2.3-1-.5.2v.4l.9 1.4-4.4-.7-2 .4-2.6 1.5-2.3 3.1-1.7 5.6 1.9 4.3 1.5 2.4 4.1 4.4 4.3 2.7 4 1.1 2.3-.4 1.7-.9 1.3-1.3 1-2 .7-2.7z",fill:"#efba9e"}),jsx("path",{d:"m579.9 355.3-2.8-2.9-2.5-2.1-2.4-1.3-2.2-.7-2.1-.2-2.2.3-2.2.8-2.2 1.5-2.4 2.1-1.1 1.4-1 2.2-.9 3.2-.8 5.1-.6 6.8-.2 7.1.4 16.5 1.2 17.6 3 24.5 2.1 2.3 4.1 2.9 1.9.8 2.8.6h2.6l2.5-.6 2.4-1.1 2.2-1.4 2.1-1.9 1.7-2.1 2.5-5 2.2-10.6 1.4-9.8.8-9.1.1-8.3-.5-7.8-1-7.1-1.5-6.6-2-6.1-2.5-5.7z",fill:"url(#access-denied-icon_svg__u)"}),jsx("path",{d:"m577.8 426.7-1.3-5-1.9-5-2.3-4.8-3-4.8-3.5-4.8-4.2-4.8-4.8-4.8-5.6-4.7-1.9-.5-3.5-.1-3.2 1.1-1.4 1.1-1.2 1.4-.9 1.8-.7 2.4v4.5l1.6 8 1.4 4.8 4 10.5 2.6 5.2 3.1 4.9 3.4 4.3 2.6 2.6 2.7 2.1 2.8 1.7 4.1.6h3.2l2.6-.5 2-.9 1.5-1.3 1.2-1.7.9-2.2.4-2.9v-3.6z",fill:"url(#access-denied-icon_svg__v)"}),jsx("path",{d:"m579.2 440.7 4.6-1.3 3.3-.6 3.4-.1 3.8.5 2.4.7 2.4 1.1 2.3 1.7 1.9 2 1.7 2.8 1.6 3.6.8 3.5.2 2.8-.3 2.4-1.6 4.3-1.3 1.6-2.2 2.1-2.3 1.5-2.4 1.2-3.6 1.2-13.7 2.5-6 19-48.4-8.9-48.5 8.9-6-19-15.4-3-4.2-1.8-2.3-1.6-2.2-2.1-2.2-3.6-.7-2.3-.3-2.4.3-2.8.8-3.4 1.5-3.7 1.7-2.8 2-2 2.3-1.7 2.3-1.1 2.4-.7 3.8-.5 3.4.2 3.3.5 57.9 15.6z",fill:"url(#access-denied-icon_svg__w)"}),jsx("path",{d:"m472.7 479-5.9.4-13.7-.2-2.6.1-4 1-.7.6-.9 1.6-.8 3.8.2 5 .4 2.1 1.5 3 .8.8 1.6.6 1.6-.1 19.7-4.3 7-1.9zm106.1 0 5.9.4 13.8-.2 2.6.1 4 1 .8.7.8 1.5.8 3.8-.1 5-.5 2.2-1.5 3-.7.8-1.7.6-1.6-.1-19.8-4.3-7.1-1.9z",fill:"#333"}),jsx("path",{d:"m610.8 308.8 7.2-.9.8 5.5.7 1.8 2.3 2.9 3 2 3.7.8 2-.1 5.6-.8 1.8-.7 2.9-2.2 2-3.1.6-1.7.2-4-1.1-3.7-2.3-2.9-3-2-3.7-.8-5.6.5-.9-7.1 7-.6 3.1.4 2.9 1 2.8 1.4 2.4 1.9 2 2.3 1.7 2.6 1.2 2.9.7 3.3.1 3.3-.5 3.1-.9 2.9-1.5 2.8-1.9 2.3-2.3 2.1-2.6 1.7-2.9 1.1-3.3.7-6.5.6-2.7-.3-2.6-.7-2.5-1.1-4.3-3.2-1.8-2.1-1.5-2.3-1.1-2.5-7.6.9-.8-7.2zm-10.8 1.3.9 7.1-7.2.9-.9-7.1z",fill:"url(#access-denied-icon_svg__x)"}),jsx("path",{d:"m578.8 271.1 3.7-3.7 3.6 3.2 1.8.7 2 .3 2-.3 1.8-.8 1.7-1.3 3.2-3.6.8-1.9.3-1.9-.3-2-.7-1.8-1.3-1.7-1.8-1.4-1.8-.7-2-.3-1.9.3-1.9.8-3.6 3.2-3.7-3.7 3.8-3.4 1.9-1.2 2.2-.7 4.3-.4 4.3 1.1 2 1.1 1.9 1.5 1.5 1.9 1.1 2 .8 2.1.4 4.4-1.2 4.3-1.2 1.9-3.4 3.8-3.3 2.4-3.7 1.2-3.9.1-1.9-.4-3.6-1.6-3.9 3.9-3.7-3.7zm-5.6 5.6 3.7 3.7-3.7 3.7-3.7-3.7z",fill:"url(#access-denied-icon_svg__y)"}),jsx("path",{d:"m54.2 676.4-7.9-3.2-6.7-2.2-5.6-1.4-4.8-.5h-4l-3.3.5-2.9 1-2.4 1.4-2 1.8-1.7 2.3-1.4 2.8-1 3.5-.7 4.3-.1 5.1.4 6.2 1.3 4.8 1.4 3.8 1.7 3 1.8 2.4 2 1.7 2.1 1.3 6 7.6 4.7 6.8 3.6 5.9 2.6 5.2 1.8 4.6 1.1 4 1.2 7.7 1.2 4.3 2.8 5.2 1.8 2.4 2.2 2.1 2.5 1.9 3 1.5 3.1 1.1 3.6.7 4.2.3 4.2-.3 4.8-.9 10.1-2.7 4.1-.5 3.7.1 3.5.7 3.2 1.3 3.1 1.8 3 2.5 2.8 3.2 2.7 4.1 2.6 5 2.4 6.2 2.2 7.5 4.4 5.2 4.7 4.8 5.2 4.4 5.6 4 6.1 3.5 6.6 3.1 7.1 2.8 7.7 2.2 8.4 1.8 9 1.4 9.8.8 10.6.2 11.5-.3 12.5-1.1 9.1-1.2 7.3-1.6 5.8-1.7 4.5-2 3.5-2.1 2.5-2.1 1.9-2.3 1.2-2.4.7-2.6.1-2.9-.5-3.1-1.2-3.6-2-4-3.1-4.7-4.4-5.4-5.9-6.1-7.6-7-9.8-8-12.1-9.1-12.6-4.8-10-3.4-16.3-4.2-2-1.1-1.9-1.5-1.6-2.1-1.5-2.6-1.2-3.4-1-4.3-.6-5.3-.4-9.8-.7-2.9-1.3-2.9-1.7-2.6-2.3-2.5-2.9-2.5-3.7-2.3-4.6-2.1-11-4.1-4.4-2.2-3.4-2.3-2.5-2.4-1.9-2.5-1.2-2.6-.7-2.8-.1-3 .5-3.3-3.1-4.1-3.1-3.2-3-2.4-3-1.7-3-1.1-3.1-.5h-3.2l-3.3.6-3.6 1.3-3.8 1.9-8.8 6.1L81 679l-4 1.7-3.8 1-3.5.5-3.3-.1-3.2-.6-3-1.2-3.1-1.6z",fill:"url(#access-denied-icon_svg__z)"}),jsx("path",{d:"m52.6 691.5 48.3 32.2-2.1-9.9-2.2-8.4-2.2-7.1-3.3-8.6 4.4 9.7 3.4 8.8 2.8 9.1.9 4.3.3 3.4 40.2 26.9.5-20.5-.4-6.9-.7-5.2-.8-3.8 1.6 4.6.7 3.5 1.7 13.9.4 9.1-.5 7 37.1 24.7-.4-.4.8-8.1.1-7-.7-6.4 1.2 3.6.8 6.4.4 7.3-.1 6.1 30.6 20.3-3.9 3.9-31.5-22.3-6 2.7-8.1 2-4.5.5h-7.3l6.6-.8 5.5-1.2 4.4-1.5 3.6-1.7 2.8-1.9 2.5 1.5-88.8-62.8.6.6-6.8.8-6.4.2-6-.2-5.7-.6-5.4-1.1-5.2-1.4 1.2-.3 8.8 1.5 4.6.5 5.7.3 8.2-.7 4.6-.9zM94 768.4l4-.2 4.5-.8 5-1.5 5.7-2.3 6.5-3.4 7.2-4.4 8.2-5.7 2.3 2.2-5.5 4-5.4 3.4-5.2 2.7-5.4 2.4-5 1.7-4.7 1.2-4.7.7-4.1.2z",fill:"url(#access-denied-icon_svg__A)"}),jsx("path",{d:"m89.6 607.3-7.5-4.8-6.3-3.5-5.4-2.4-4.6-1.5-3.9-.8-3.2-.1-2.8.3-2.4.8-2.1 1.2-1.9 1.7-1.5 2.3-1.4 2.8-1 3.6-.7 4.5-.3 5.5.2 6.9 5.3 21.2 1.9 9.3 1.2 8.1.3 5.3v5.1l-.8 7.7.2 7 1.5 7.6 3 8.1 2.1 4 2.7 4 3 3.7 3.7 3.7 4.3 3.5 7.2 4.5 4.4 2 10.9 4.3 4.8 2.4 3.8 2.4 2.8 2.4 2.1 2.5 1.5 2.4.9 2.4.4 2.6-.2 2.7-.7 2.9-1.3 3.2-2.1 3.5-.5 3.4v3.3l.6 3.1 1.2 3.1 1.7 3 2.3 3 3.2 3 4 3 5 3.1 6.1 3 7.5 3 9 3 10.7 2.9 12.6 2.8 14.8 2.7 12.2 1.7 10.1 1.1 8.1.4 11.6-.3 7.7-1.2 3.6-1.2 2.7-1.4 2.1-1.5 1.6-1.6 1.2-1.9.8-2.1.5-2.3v-2.6l-.5-3.4-1-3.9-1.6-4.2-3.1-6.4-3.9-7-9-14.4-5.5-5.9-4-5-2.3-3.4-3.2-5.9-1.5-4.5-.9-4.2-.5-4.3.1-7.6 1.6-10.9.1-3.8-.3-3.8-1.5-4.8-1.4-2.4-1.8-2.2-2.3-2.1-3.2-2.1-3.4-1.8-4.3-1.6-9-2.7-3.2-1.5-2.9-2-2.6-2.5-2.4-3-2.2-3.5-1.9-4.3-1.6-5.1-1.3-5.9-1-7-.4-8.1-.8-3-1.3-2.6-1.6-2.1-2.1-1.8-2.6-1.5-3.3-1.1-3.9-.7-4.9-.3-5.9.4-7.1 1-8.5 1.9-3.6.4h-3.5l-3.6-.6-3.7-1.1-3.7-1.6-3.9-2.3-4-3-4.2-3.7z",fill:"url(#access-denied-icon_svg__B)"}),jsx("path",{d:"m74.9 624.7 35.5 45.1 1.7-4.9 1.2-4.7.6-4.7.2-4.7-.4-4.7-1-5.1 2.8 9 .6 3.6.1 3.8-.5 4.5-.7 2.9-2.9 7.2 30 38.2 2.8-4.5 2.2-4.7 1.8-5.2 1.3-5.8.8-6.4.3-7.1.7 5.7-.1 4.2-.4 5.2-1 5.3-1.4 5.6-1.4 3.6-3.6 6.6 26.7 33.9 2.2-4.1 2.5-6.3.8-3.7.3-4.1.5 6.2-.3 3.4-1.5 6.1-2.6 5L212 799h-6.2l-38-50.6-8.7 3.2-8.9 1.6-4.3.2-3.9-.3-3.1-.7-4.9-1.7 4.2.8 4.2.3 4.4-.2 4.4-.7 4.7-1.1 4.8-1.8 5-2.3-28.8-38.5.5.9-7.3 2.3-7.1 1.7-7.1 1.1-6.5.6-6.3.1-5.4-.5-3.4-.6-5.3-1.9 3.3 1 3.8.6 4.5.2 5.2-.2 6-.7 6.9-1.4 8.1-2.1 9.2-3-.5.2-32.1-42.9.2.5-5.4.1-5-.5-4.6-.9-4.3-1.5-4-1.9-3.7-2.4-3.6-2.9-3.3-3.4.5-.1 1.3.8 6.5 4.5 3.5 1.8 3.9 1.6 8.3 2 8.2.3z",fill:"url(#access-denied-icon_svg__C)"}),jsx("path",{d:"m199.2 608.8 3.6-4.5 3.2-3.2 2.9-2.1 2.7-1.3 2.6-.6h2.4l2.4.6 2.5 1.3 2.5 2.1 2.7 3 2.9 4.2 3 5.7 1.1 5.3 2 15.9 1.7 4.8 1.4 2.1 1.8 2 2.5 2.1 2.8 1.7 3.7 1.8 8.9 3.4 3.2 1.8 2.5 1.9 1.9 2.1 1.4 2.2.9 2.5.4 2.6v3l-.7 3.3-1.3 3.8-2 4.4-3 5-1.4 3.8-.6 3.2v2.8l.6 2.4 1.1 2.2 1.6 1.9 2.2 1.7 3.1 1.6 6.7 2.2 2 1.3 1.5 1.5 1 1.8.6 2.2.1 2.6-.5 3.3-1.3 4.1-2.2 5-3.4 6.1-4.8 7.4-2.2 5.7-1.2 4.6-.4 3.7.2 3.1.8 2.4 1.1 2 4.1 3.7 4.4 5.1 3.2 5.8 1.2 3.3 1 3.7.6 4.3.1 4.3-.4 4.8-1 5.6-1.5 5.4-2.4 6.1-3.3 7-2.1 3.5-4.6 5.5-2.4 2.1-3.5 2.3-3.7 1.6-3.7 1-3.9.5h-4l-4-.5-3.9-.9-7.7-2.8-5.5-2.8-5-3.3-4.5-3.7-3.6-3.6-2.1-2.7-2.6-4.6-1-3.3-.7-3.4-.2-3.5.3-5.4 3.2-21.1.2-4.6-.2-2.9-.6-2.5-1-2.3-3.1-3.4-2.3-1.7-13-7.5-7.4-5.2-4.9-5.3-1.9-3-1.4-3.4-1-3.9-.3-2.9.7-7 1-4.2 7.6-10.4 3.4-5.1 1.7-4.5.3-5.3-1.2-6.4-1.5-3.9-4.9-9.9-6.5-11.3-.4-1.6v-1.7l.7-2 3.2-5.4 5.8-8.9 3.3-3.8 3.5-5 3.8-6.4 4.1-8.1z",fill:"url(#access-denied-icon_svg__D)"}),jsx("path",{d:"m216.1 638.5 11.4 56.9 5.5-8.5 4.4-7.5 3.4-6.6 3.8-8.3-3.8 9.9-3.8 8.6-4.5 8.4-2.4 3.7-2.2 2.7 9.5 47.4 14.8-14.2 4.6-5.1 3.2-4.1 2.1-3.3-2.1 4.3-2 3-8.6 11-6.2 6.8-5.2 4.6 8.7 43.6v-.5l6.2-5.2 5.1-4.8 4.1-5-1.8 3.3-3.9 5.1-4.9 5.5-4.3 4.2 7.2 36h-5.5l-6.5-38.1-6.2-2.3-7.1-4.3-3.5-2.8-5.2-5.1 5.3 4 4.6 3 4.2 2.1 3.8 1.3 3.4.7.6 2.9L224 684.5l-.1.9-5.3-4.3-4.7-4.3-4.1-4.4-3.6-4.5-3.1-4.6-2.6-4.7 1 .6 5.2 7.4 2.9 3.6 3.9 4.2 6.2 5.3 3.9 2.6zM191 722.1l2.9 2.7 3.8 2.6 4.6 2.5 5.7 2.4 6.9 2.2 8.3 2 9.8 1.8v3.1l-6.7-1-6.2-1.5-5.6-1.7-5.5-2.2-4.8-2.3-4.1-2.4-3.8-2.8-3-2.8z",fill:"url(#access-denied-icon_svg__E)"}),jsx("path",{d:"m938.4 787.5.5-6.1v-5.3l-.5-4.6-.9-4-1.3-3.3-1.7-3-2-2.5-2.3-2.1-2.8-1.8-3.3-1.4-3.7-1.1-4.4-.7 5-.2 4.5.2 4.2.7 3.9 1 3.5 1.4 3.5 1.8 3.1 2.2 2.8 2.5 2.5 2.8 2.2 3.3 1.7 3.3 1.4 3.7 1.1 4 .7 4.4.3 4.8z",fill:"url(#access-denied-icon_svg__F)"}),jsx("path",{d:"m950.1 787.6 1.1-6.4.5-6-.1-5.4-.6-5.1-1.2-4.6-1.6-4.4-2-4-2.6-3.8-3-3.5-3.7-3.3-4.2-3.1 5.2 1.7 9.3 4.2 4.2 2.5 4 3 3.6 3.4 4.8 6.1 2.1 3.7 3.6 8.4 2.8 10.4 1.1 6.2-14.1.4z",fill:"url(#access-denied-icon_svg__G)"}),jsx("path",{d:"m977.1 788-.4-6.3.3-5.4.8-4.7 1.2-4.1 1.6-3.6 2.1-3.1 2.4-2.6 2.9-2.3 3.4-1.9 4-1.5 4.6-1.1h-9.8l-3.3.3-6.7 1.4-3.2 1.3-3.2 1.8-3.3 2.3-3 2.8-3 3.6-3.2 4.6-2.7 4.9-2.7 6.1-2.8 7.5 15.2-.3z",fill:"url(#access-denied-icon_svg__H)"}),jsx("path",{d:"m927.4 802 15.3-.5 5.8-1.3 2.5-1.1 2.1-1.5 1.6-1.9 1-1.6 1.1-4.5.2-3-.3-3.9-.8-3.7-1.3-3.5-1.8-3.3-2.1-3.1-2.6-2.7-3-2.4-3.2-2.1-3.5-1.7-3.8-1.2-3.9-.7-4.2-.3-4.2.3-3.9.7-3.8 1.2-3.5 1.7-3.2 2.1-3 2.4-2.6 2.7-2.1 3.1-1.8 3.3-1.3 3.5-.8 3.7-.3 3.9.2 3 1.3 4.4 1 1.7 1.9 1.9 2.2 1.5 2.8 1.1 6.2 1.3z",fill:"url(#access-denied-icon_svg__I)"}),jsx("path",{d:"m960.6 802 10.5-.4 4.2-1.4 2.3-2.1.7-1.4.7-4.1-.3-3.2-.9-3-1.4-2.7-1.9-2.5-2.2-2-2.7-1.8-2.9-1.3-3.2-.8-3.5-.3-3.5.3-3.2.8-2.9 1.3-2.7 1.8-2.2 2-1.9 2.5-1.4 2.7-.9 3-.3 3.2.2 2.3.6 1.8.8 1.4 2.5 2.1 4.6 1.4z",fill:"url(#access-denied-icon_svg__J)"})]})}const Memo=memo(SvgAccessDeniedIcon);/*! 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,27 +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{styles,themeVariables}from"@vef-framework/shared";import{ArrowLeftIcon}from"lucide-react";import VefButton from"../vef-button/index.js";import VefIcon from"../vef-icon/index.js";import Memo from"./access-denied-icon.js";const accessDeniedStyle=css`
|
|
2
|
-
height: 100%;
|
|
3
|
-
${styles.flexCenter}
|
|
4
|
-
`,contentStyle=css`
|
|
5
|
-
width: 40%;
|
|
6
|
-
position: relative;
|
|
7
|
-
top: -60px;
|
|
8
|
-
display: flex;
|
|
9
|
-
flex-direction: column;
|
|
10
|
-
align-items: center;
|
|
11
|
-
justify-content: center;
|
|
12
|
-
row-gap: ${themeVariables.margin};
|
|
13
|
-
> svg {
|
|
14
|
-
width: 70%;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
> span {
|
|
18
|
-
font-size: ${themeVariables.fontSizeLg};
|
|
19
|
-
font-weight: 500;
|
|
20
|
-
color: ${themeVariables.colorTextTertiary};
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
span.vef-access-denied-uri {
|
|
24
|
-
padding-left: ${themeVariables.paddingSm};
|
|
25
|
-
color: ${themeVariables.colorWarningText};
|
|
26
|
-
}
|
|
27
|
-
`;function VefAccessDenied({uri,title="抱歉,您没有权限访问该页面~~~",onNavigateHome}){return jsx("div",{css:accessDeniedStyle,children:jsxs("div",{css:contentStyle,children:[jsx(Memo,{}),jsx("span",{children:title}),uri&&jsxs("span",{children:["路径:",jsx("span",{className:"vef-access-denied-uri",children:uri})]}),jsx(VefButton,{color:"primary",size:"large",icon:jsx(VefIcon,{children:jsx(ArrowLeftIcon,{})}),onClick:onNavigateHome,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{VefAccessDenied as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,Fragment}from"@emotion/react/jsx-runtime";import{useAuthorizedItems,useComputedActionButtons}from"@vef-framework/hooks";import{memo}from"react";import VefButton from"../vef-button/index.js";import VefFlex from"../vef-flex/index.js";function VefActionButtonsBase({buttons,context,useFlexContainer=!0,size="medium"}){const authorizedButtons=useAuthorizedItems(buttons),contextToUse=context??{},computedButtons=useComputedActionButtons(authorizedButtons,contextToUse);if(computedButtons.length===0)return null;const buttonsNode=computedButtons.map(button=>{const{key,label,icon,color,disabled,requireConfirmation,confirmationMode,confirmationTitle,confirmationContent,onClick}=button,handleClick=()=>onClick?.(contextToUse);return requireConfirmation?jsx(VefButton,{requireConfirmation:!0,color,confirmationContent,confirmationMode,confirmationTitle,disabled,icon,size,onConfirmationOk:handleClick,children:label},key):jsx(VefButton,{color,disabled,icon,size,onClick:handleClick,children:label},key)});return useFlexContainer?jsx(VefFlex,{wrap:!0,align:"center",gap:"medium",children:buttonsNode}):jsx(Fragment,{children:buttonsNode})}const VefActionButtons=memo(VefActionButtonsBase);VefActionButtons.displayName="VefActionButtons";/*! 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{VefActionButtons as default};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsxs,Fragment,jsx}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{useReactFlow,getBezierPath,BaseEdge,EdgeLabelRenderer}from"@xyflow/react";import{useCallback}from"react";import{createNode,createEdge}from"../helper.js";import VefNodeSelector from"./node-selector.js";const labelStyle=css`
|
|
2
|
-
position: absolute;
|
|
3
|
-
pointer-events: all;
|
|
4
|
-
transform-origin: center;
|
|
5
|
-
transform: translate(-50%, -50%) translate(var(--vef-edge-label-x), var(--vef-edge-label-y));
|
|
6
|
-
`;function VefEdge({id,data,source,target,sourceX,sourceY,targetX,targetY,sourcePosition,targetPosition,markerEnd,markerStart,interactionWidth,style,selected}){const{getNode}=useReactFlow(),handleAddNode=useCallback(type=>{const newNode=createNode(type);return[newNode,[createEdge(source,newNode.id),createEdge(newNode.id,target)],[id]]},[id,source,target]),[edgePath,labelX,labelY]=getBezierPath({sourceX,sourceY,targetX,targetY,sourcePosition,targetPosition,curvature:.16}),isHovering=data?.edge.isHovering()??!1,sourceNode=getNode(source).data.node,targetNode=getNode(target).data.node,availableNodeTypes=new Set(targetNode.getAvailablePreviousNodeTypes()),nodeTypes=sourceNode.getAvailableNextNodeTypes().filter(nodeType=>availableNodeTypes.has(nodeType));return jsxs(Fragment,{children:[jsx(BaseEdge,{id,interactionWidth,markerEnd,markerStart,path:edgePath,style}),(isHovering||selected)&&jsx(EdgeLabelRenderer,{children:jsx("div",{className:"nodrag nopan",css:labelStyle,style:{"--vef-edge-label-x":`${labelX}px`,"--vef-edge-label-y":`${labelY}px`},children:jsx(VefNodeSelector,{items:nodeTypes,selectorContentPosition:"right",onAddNode:handleAddNode})})})]})}/*! 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{VefEdge as default};
|
|
@@ -1,17 +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{ChevronRightIcon}from"lucide-react";import VefIcon from"../../vef-icon/index.js";const labelValueStyle=css`
|
|
2
|
-
display: grid;
|
|
3
|
-
grid-template-columns: max-content 1fr max-content;
|
|
4
|
-
align-items: center;
|
|
5
|
-
column-gap: ${themeVariables.marginXs};
|
|
6
|
-
background-color: ${themeVariables.colorFillTertiary};
|
|
7
|
-
padding: ${themeVariables.paddingXxs} ${themeVariables.paddingXxs} ${themeVariables.paddingXxs} ${themeVariables.paddingXs};
|
|
8
|
-
border-radius: ${themeVariables.borderRadius};
|
|
9
|
-
|
|
10
|
-
& > span:first-of-type {
|
|
11
|
-
color: ${themeVariables.colorTextSecondary};
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
& > span:last-of-type {
|
|
15
|
-
color: ${themeVariables.colorText};
|
|
16
|
-
}
|
|
17
|
-
`;function VefLabelValue({label,value}){return jsxs("div",{css:labelValueStyle,children:[jsxs("span",{children:[label,":"]}),jsx("span",{children:value}),jsx(VefIcon,{children:jsx(ChevronRightIcon,{})})]})}/*! 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{VefLabelValue as default};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsxs,Fragment,jsx}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{useColorTokens}from"@vef-framework/hooks";import{themeVariables}from"@vef-framework/shared";import{useNodesData,useNodeId}from"@xyflow/react";import VefIcon from"../../vef-icon/index.js";import VefNodeToolbar from"./node-toolbar.js";import VefSourceHandle from"./source-handle.js";import VefTargetHandle from"./target-handle.js";const titleWrapperStyle=css`
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: row;
|
|
4
|
-
align-items: center;
|
|
5
|
-
column-gap: ${themeVariables.marginSm};
|
|
6
|
-
margin-bottom: ${themeVariables.marginSm};
|
|
7
|
-
`,titleIconStyle=css`
|
|
8
|
-
display: flex;
|
|
9
|
-
align-items: center;
|
|
10
|
-
justify-content: center;
|
|
11
|
-
color: ${themeVariables.colorWhite};
|
|
12
|
-
border-radius: ${themeVariables.borderRadius};
|
|
13
|
-
padding: ${themeVariables.paddingXxs};
|
|
14
|
-
`,titleTextStyle=css`
|
|
15
|
-
font-size: ${themeVariables.fontSizeLg};
|
|
16
|
-
`;function VefNodeContent({icon,iconColor,selected,children}){const node=useNodesData(useNodeId()).data.node,iconBgColor=useColorTokens().get(iconColor);return jsxs(Fragment,{children:[jsx(VefSourceHandle,{}),jsx(VefTargetHandle,{}),jsx(VefNodeToolbar,{selected}),jsxs("div",{css:titleWrapperStyle,children:[jsx("div",{css:titleIconStyle,style:{backgroundColor:iconBgColor},children:jsx(VefIcon,{children:icon})}),jsx("h3",{css:titleTextStyle,children:node.getLabel()})]}),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{VefNodeContent 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}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{themeVariables}from"@vef-framework/shared";import{PlusIcon}from"lucide-react";import VefIcon from"../../vef-icon/index.js";import VefPopover from"../../vef-popover/index.js";import VefSelectorContent from"./selector-content.js";const selectorStyle=css`
|
|
2
|
-
cursor: pointer;
|
|
3
|
-
transform-origin: center;
|
|
4
|
-
background-color: ${themeVariables.colorPrimary};
|
|
5
|
-
color: ${themeVariables.colorWhite};
|
|
6
|
-
border-radius: 50%;
|
|
7
|
-
width: 1.5rem;
|
|
8
|
-
height: 1.5rem;
|
|
9
|
-
display: flex;
|
|
10
|
-
align-items: center;
|
|
11
|
-
justify-content: center;
|
|
12
|
-
`,popoverContentStyle={"--vef-popover-inner-content-padding":"6px"};function VefNodeSelector({selectorContentPosition,items,onAddNode}){return jsx(VefPopover,{content:jsx(VefSelectorContent,{items,onAddNode}),contentStyle:popoverContentStyle,placement:selectorContentPosition,children:jsx("div",{css:selectorStyle,children:jsx(VefIcon,{children:jsx(PlusIcon,{})})})})}/*! 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{VefNodeSelector 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{NodeToolbar,Position}from"@xyflow/react";import{Trash2Icon}from"lucide-react";import VefButton from"../../vef-button/index.js";import VefIcon from"../../vef-icon/index.js";function VefNodeToolbar({selected}){return jsx(NodeToolbar,{align:"end",isVisible:selected,offset:4,position:Position.Top,children:jsx(VefButton,{color:"error",size:"small",tip:"删除",variant:"solid",icon:jsx(VefIcon,{children:jsx(Trash2Icon,{})})})})}/*! 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{VefNodeToolbar 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{nodesMetadata}from"../../constants.js";import{NodeType}from"../../types.js";import VefLabelValue from"../label-value.js";import VefNodeContent from"../node-content.js";const nodeMetadata=nodesMetadata[NodeType.Approval];function VefApprovalNode({selected}){const{icon,color}=nodeMetadata;return jsx(VefNodeContent,{icon,iconColor:color,selected,children:jsx(VefLabelValue,{label:"审批人",value:"无"})})}/*! 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{VefApprovalNode 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{nodesMetadata}from"../../constants.js";import{NodeType}from"../../types.js";import VefLabelValue from"../label-value.js";import VefNodeContent from"../node-content.js";const nodeMetadata=nodesMetadata[NodeType.Condition];function VefConditionNode({selected}){const{icon,color}=nodeMetadata;return jsx(VefNodeContent,{icon,iconColor:color,selected,children:jsx(VefLabelValue,{label:"条件",value:"无"})})}/*! 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{VefConditionNode 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{nodesMetadata}from"../../constants.js";import{NodeType}from"../../types.js";import VefLabelValue from"../label-value.js";import VefNodeContent from"../node-content.js";const nodeMetadata=nodesMetadata[NodeType.End];function VefEndNode({selected}){const{icon,color}=nodeMetadata;return jsx(VefNodeContent,{icon,iconColor:color,selected,children:jsx(VefLabelValue,{label:"通知人",value:"无"})})}/*! 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{VefEndNode 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{nodesMetadata}from"../../constants.js";import{NodeType}from"../../types.js";import VefLabelValue from"../label-value.js";import VefNodeContent from"../node-content.js";const nodeMetadata=nodesMetadata[NodeType.Handle];function VefHandleNode({selected}){const{icon,color}=nodeMetadata;return jsx(VefNodeContent,{icon,iconColor:color,selected,children:jsx(VefLabelValue,{label:"办理人",value:"无"})})}/*! 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{VefHandleNode as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{NodeType}from"../../types.js";import VefApprovalNode from"./approval.js";import VefConditionNode from"./condition.js";import VefEndNode from"./end.js";import VefHandleNode from"./handle.js";import VefSubmitNode from"./submit.js";const nodeTypes={[NodeType.Submit]:VefSubmitNode,[NodeType.Approval]:VefApprovalNode,[NodeType.Handle]:VefHandleNode,[NodeType.Condition]:VefConditionNode,[NodeType.End]:VefEndNode};/*! 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{nodeTypes};
|
|
@@ -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{nodesMetadata}from"../../constants.js";import{NodeType}from"../../types.js";import VefLabelValue from"../label-value.js";import VefNodeContent from"../node-content.js";const nodeMetadata=nodesMetadata[NodeType.Submit];function VefSubmitNode({selected}){const{icon,color}=nodeMetadata;return jsx(VefNodeContent,{icon,iconColor:color,selected,children:jsx(VefLabelValue,{label:"提交人",value:"全员"})})}/*! 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{VefSubmitNode as default};
|
|
@@ -1,24 +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}from"@vef-framework/shared";import{useReactFlow}from"@xyflow/react";import{useMemo,useCallback}from"react";import VefIcon from"../../vef-icon/index.js";import{nodesMetadata}from"../constants.js";const selectorContentStyle=css`
|
|
2
|
-
min-width: 160px;
|
|
3
|
-
display: flex;
|
|
4
|
-
flex-direction: column;
|
|
5
|
-
gap: ${themeVariables.margin};
|
|
6
|
-
`,selectorItemStyle=css`
|
|
7
|
-
display: flex;
|
|
8
|
-
align-items: center;
|
|
9
|
-
gap: ${themeVariables.marginSm};
|
|
10
|
-
padding: ${themeVariables.paddingXs} ${themeVariables.paddingSm};
|
|
11
|
-
border-radius: ${themeVariables.borderRadius};
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
transition: background-color ${themeVariables.motionDurationMid} ${themeVariables.motionEaseInOutCirc};
|
|
14
|
-
|
|
15
|
-
&:hover {
|
|
16
|
-
background-color: ${themeVariables.colorFillSecondary};
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
> span:first-of-type {
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
> span:last-of-type {
|
|
23
|
-
}
|
|
24
|
-
`;function VefSelectorContent({items,onAddNode}){const nodes=useMemo(()=>items.map(item=>nodesMetadata[item]),[items]),{setEdges,addNodes}=useReactFlow(),handleAddNode=useCallback(nodeType=>{const[node,edgesToAdd,edgesToRemove]=onAddNode(nodeType);setEdges(edges=>[...edges.filter(edge=>!edgesToRemove.includes(edge.id)),...edgesToAdd]),addNodes(node)},[onAddNode,setEdges,addNodes]);return jsx("div",{css:selectorContentStyle,children:nodes.map(({type,label,icon,color})=>jsxs("div",{css:selectorItemStyle,onClick:()=>handleAddNode(type),children:[jsx(VefIcon,{color,size:"huge",children:icon}),jsx("span",{children:label})]},label))})}/*! 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{VefSelectorContent 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{useNodesData,useNodeId,useNodeConnections,Handle,Position}from"@xyflow/react";import{useCallback}from"react";import{createNode,createEdge}from"../helper.js";import VefNodeSelector from"./node-selector.js";function VefSourceHandle(){const{node}=useNodesData(useNodeId()).data,connections=useNodeConnections({handleType:"source"}),handleAddNode=useCallback(type=>{const newNode=createNode(type);return[newNode,[createEdge(node.getId(),newNode.id)],[]]},[node]),hasAvailableNextNodes=node.getAvailableNextNodeTypes().length>0,isConnected=connections.length>0;return jsx(Handle,{position:Position.Bottom,type:"source",children:!isConnected&&hasAvailableNextNodes&&jsx(VefNodeSelector,{items:node.getAvailableNextNodeTypes(),selectorContentPosition:"bottom",onAddNode:handleAddNode})})}/*! 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{VefSourceHandle 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{Handle,Position}from"@xyflow/react";function VefTargetHandle(){return jsx(Handle,{position:Position.Top,type:"target"})}/*! 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{VefTargetHandle 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{MarkerType}from"@xyflow/react";import{CircleIcon,GitCommitVerticalIcon,SquarePenIcon,StampIcon,SendIcon}from"lucide-react";import VefEdge from"./components/edge.js";import{VefFlowEdge}from"./models/edge-node.js";import{VefSubmitFlowNode,VefApprovalFlowNode,VefConditionFlowNode,VefHandleFlowNode,VefEndFlowNode}from"./models/flow-node.js";import{NodeType}from"./types.js";const initialNodes=[{id:"submit",data:{node:new VefSubmitFlowNode("submit","提交")},type:NodeType.Submit,deletable:!1,position:{x:0,y:0}},{id:"approval",data:{node:new VefApprovalFlowNode("approval","审批")},type:NodeType.Approval,position:{x:0,y:100}},{id:"condition-1",data:{node:new VefConditionFlowNode("condition-1","条件1")},type:NodeType.Condition,position:{x:0,y:200}},{id:"approval-1",data:{node:new VefApprovalFlowNode("approval-1","审批1")},type:NodeType.Approval,position:{x:0,y:300}},{id:"condition-2",data:{node:new VefConditionFlowNode("condition-2","条件2")},type:NodeType.Condition,position:{x:100,y:200}},{id:"approval-2",data:{node:new VefApprovalFlowNode("approval-2","审批2")},type:NodeType.Approval,position:{x:100,y:300}},{id:"handle",data:{node:new VefHandleFlowNode("handle","办理")},type:NodeType.Handle,position:{x:100,y:400}},{id:"end",data:{node:new VefEndFlowNode("end","结束")},type:NodeType.End,deletable:!1,position:{x:0,y:400}}],initialEdges=[{id:"submit-approval",source:"submit",target:"approval",data:{edge:new VefFlowEdge}},{id:"approval-condition-1",source:"approval",target:"condition-1",data:{edge:new VefFlowEdge}},{id:"condition-1-approval-1",source:"condition-1",target:"approval-1",data:{edge:new VefFlowEdge}},{id:"approval-condition-2",source:"approval",target:"condition-2",data:{edge:new VefFlowEdge}},{id:"condition-2-approval-2",source:"condition-2",target:"approval-2",data:{edge:new VefFlowEdge}},{id:"approval-2-handle",source:"approval-2",target:"handle",data:{edge:new VefFlowEdge}},{id:"handle-end",source:"handle",target:"end",data:{edge:new VefFlowEdge}},{id:"approval-1-end",source:"approval-1",target:"end",data:{edge:new VefFlowEdge}}],fitViewOptions={minZoom:1},edgeTypes={vef:VefEdge},defaultEdgeOptions={type:"vef",deletable:!1,interactionWidth:40,markerEnd:{type:MarkerType.ArrowClosed,strokeWidth:1,height:16,width:16}},nodesMetadata={[NodeType.Submit]:{type:NodeType.Submit,label:"提交",icon:jsx(SendIcon,{}),color:"primary"},[NodeType.Approval]:{type:NodeType.Approval,label:"审批",icon:jsx(StampIcon,{}),color:"geekblue"},[NodeType.Handle]:{type:NodeType.Handle,label:"办理",icon:jsx(SquarePenIcon,{}),color:"success"},[NodeType.Condition]:{type:NodeType.Condition,label:"条件",icon:jsx(GitCommitVerticalIcon,{}),color:"warning"},[NodeType.End]:{type:NodeType.End,label:"结束",icon:jsx(CircleIcon,{}),color:"cyan"}};/*! 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{defaultEdgeOptions,edgeTypes,fitViewOptions,initialEdges,initialNodes,nodesMetadata};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{graphlib,layout}from"@dagrejs/dagre";import{generateId}from"@vef-framework/shared";import{nodesMetadata}from"./constants.js";import{VefFlowEdge}from"./models/edge-node.js";import{VefEndFlowNode,VefConditionFlowNode,VefHandleFlowNode,VefApprovalFlowNode,VefSubmitFlowNode}from"./models/flow-node.js";import{NodeType}from"./types.js";function layoutFlowElements(nodes,edges){const g=new graphlib.Graph;g.setGraph({rankdir:"TB",ranker:"network-simplex",nodesep:60,edgesep:16,ranksep:80}),g.setDefaultEdgeLabel(()=>({}));for(const node of nodes)g.setNode(node.id,{...node,width:node.measured?.width??240,height:node.measured?.height??100});for(const edge of edges)g.setEdge(edge.source,edge.target);return layout(g),nodes.map(node=>{const{x,y}=g.node(node.id);return{...node,position:{x,y}}})}function createFlowNode(type,id){switch(type){case NodeType.Submit:return new VefSubmitFlowNode(id,nodesMetadata.submit.label);case NodeType.Approval:return new VefApprovalFlowNode(id,nodesMetadata.approval.label);case NodeType.Handle:return new VefHandleFlowNode(id,nodesMetadata.handle.label);case NodeType.Condition:return new VefConditionFlowNode(id,nodesMetadata.condition.label);case NodeType.End:return new VefEndFlowNode(id,nodesMetadata.end.label)}}function createNode(type){const id=`${type}-${generateId()}`;return{id,type,data:{node:createFlowNode(type,id)},position:{x:0,y:0}}}function createEdge(source,target){return{id:`e-${source}-${target}`,source,target,data:{edge:new VefFlowEdge}}}/*! 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{createEdge,createFlowNode,createNode,layoutFlowElements};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useReactFlow}from"@xyflow/react";import{useCallback}from"react";function useEdgesInteraction(){const{updateEdgeData}=useReactFlow(),handleEdgeMouseEnter=useCallback((_,edge)=>{edge.data?.edge.setHovering(!0),updateEdgeData(edge.id,edge.data,{replace:!0})},[updateEdgeData]),handleEdgeMouseLeave=useCallback((_,edge)=>{edge.data?.edge.setHovering(!1),updateEdgeData(edge.id,edge.data,{replace:!0})},[updateEdgeData]);return{handleEdgeMouseEnter,handleEdgeMouseLeave}}/*! 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{useEdgesInteraction};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useCallback}from"react";import{useApprovalFlowEditorStoreApi}from"../store.js";function useElementSelection(){const approvalFlowEditorStore=useApprovalFlowEditorStoreApi();return{handleSelectionChange:useCallback(({nodes})=>{const{selectedNode,setSelectedNode}=approvalFlowEditorStore.getState();if(nodes.length===0){setSelectedNode(null);return}const[node]=nodes;node.id!==selectedNode?.getId()&&setSelectedNode(node.data.node)},[approvalFlowEditorStore])}}/*! 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{useElementSelection};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useReactFlow,getConnectedEdges}from"@xyflow/react";import{useCallback}from"react";import{createEdge}from"../helper.js";import{NodeType}from"../types.js";function useNodesInteraction(){const{addEdges,getNode,getEdges}=useReactFlow();return{handleBeforeDelete:useCallback(async({nodes,edges})=>{if(nodes.length===0)return!1;const[node]=nodes,targetNodeIds=edges.filter(edge=>edge.source===node.id).map(edge=>edge.target);if(targetNodeIds.length>0){const edgesToAdd=[],sourceNodeIds=edges.filter(edge=>edge.target===node.id).map(edge=>edge.source),allEdges=getEdges();for(const sourceNodeId of sourceNodeIds){const nextConnectedEdges=getConnectedEdges([{id:sourceNodeId,position:{x:0,y:0},data:{}}],allEdges).filter(edge=>edge.source===sourceNodeId);for(const targetNodeId of targetNodeIds)getNode(targetNodeId)?.type===NodeType.End&&nextConnectedEdges.length>1||edgesToAdd.push(createEdge(sourceNodeId,targetNodeId))}addEdges(edgesToAdd)}return!0},[addEdges,getEdges,getNode])}}/*! 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{useNodesInteraction};
|
|
@@ -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{useEdgesState,useNodesState,ReactFlow,MiniMap,Controls,Background,BackgroundVariant,SelectionMode,ReactFlowProvider}from"@xyflow/react";import{useRef,useLayoutEffect,memo}from"react";import{nodeTypes}from"./components/nodes/index.js";import{initialEdges,initialNodes,fitViewOptions,edgeTypes,defaultEdgeOptions}from"./constants.js";import{layoutFlowElements}from"./helper.js";import{useEdgesInteraction}from"./hooks/use-edges-interaction.js";import{useElementSelection}from"./hooks/use-element-selection.js";import{useNodesInteraction}from"./hooks/use-nodes-interaction.js";import{ApprovalFlowEditorStoreProvider}from"./store.js";import{flowEditorStyle,flowEditorContainerStyle}from"./styles.js";function VefApprovalFlowEditorBase(){const[edges,_,onEdgesChange]=useEdgesState(initialEdges),[nodes,setNodes,onNodesChange]=useNodesState(initialNodes),{handleEdgeMouseEnter,handleEdgeMouseLeave}=useEdgesInteraction(),{handleSelectionChange}=useElementSelection(),{handleBeforeDelete}=useNodesInteraction(),currentEdgeIdentifiersRef=useRef();return useLayoutEffect(()=>{if(currentEdgeIdentifiersRef.current&&edges.every(edge=>currentEdgeIdentifiersRef.current.has(`${edge.id}__${edge.source}__${edge.target}`)))return;const layoutedNodes=layoutFlowElements(nodes,edges);setNodes(layoutedNodes),currentEdgeIdentifiersRef.current=new Set(edges.map(edge=>`${edge.id}__${edge.source}__${edge.target}`))},[edges]),jsxs(ReactFlow,{disableKeyboardA11y:!0,fitView:!0,css:flowEditorStyle,defaultEdgeOptions,edges,edgesFocusable:!1,edgesReconnectable:!1,edgeTypes,fitViewOptions,maxZoom:2,minZoom:.5,multiSelectionKeyCode:null,nodes,nodesConnectable:!1,nodesDraggable:!1,nodesFocusable:!1,nodeTypes,panActivationKeyCode:null,selectionKeyCode:null,selectionMode:SelectionMode.Partial,zoomActivationKeyCode:null,onBeforeDelete:handleBeforeDelete,onEdgeMouseEnter:handleEdgeMouseEnter,onEdgeMouseLeave:handleEdgeMouseLeave,onEdgesChange,onNodesChange,onSelectionChange:handleSelectionChange,children:[jsx(MiniMap,{pannable:!0,position:"bottom-left"}),jsx(Controls,{orientation:"horizontal",position:"bottom-left"}),jsx(Background,{gap:12,variant:BackgroundVariant.Dots})]})}function VefApprovalFlowEditor(props){return jsx("div",{css:flowEditorContainerStyle,children:jsx(ApprovalFlowEditorStoreProvider,{initialState:null,children:jsx(ReactFlowProvider,{children:jsx(VefApprovalFlowEditorBase,{...props})})})})}const index=memo(VefApprovalFlowEditor);/*! 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{index as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */var __defProp=Object.defineProperty,__defNormalProp=(obj,key,value)=>key in obj?__defProp(obj,key,{enumerable:!0,configurable:!0,writable:!0,value}):obj[key]=value,__publicField=(obj,key,value)=>__defNormalProp(obj,typeof key!="symbol"?key+"":key,value);class AbstractFlowEdge{constructor(){__publicField(this,"_isHovering"),this._isHovering=!1}isHovering(){return this._isHovering}setHovering(isHovering){this._isHovering=isHovering}}class VefFlowEdge extends AbstractFlowEdge{}/*! 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{AbstractFlowEdge,VefFlowEdge};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{NodeType}from"../types.js";var __defProp=Object.defineProperty,__defNormalProp=(obj,key,value)=>key in obj?__defProp(obj,key,{enumerable:!0,configurable:!0,writable:!0,value}):obj[key]=value,__publicField=(obj,key,value)=>__defNormalProp(obj,typeof key!="symbol"?key+"":key,value);class AbstractFlowNode{constructor(id,type,label){__publicField(this,"id"),__publicField(this,"type"),__publicField(this,"label"),this.id=id,this.type=type,this.label=label}getId(){return this.id}getType(){return this.type}getLabel(){return this.label}setLabel(label){this.label=label}}class VefSubmitFlowNode extends AbstractFlowNode{constructor(id,label){super(id,NodeType.Submit,label),__publicField(this,"_availablePreviousNodeTypes"),__publicField(this,"_availableNextNodeTypes"),this._availablePreviousNodeTypes=[],this._availableNextNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition]}getAvailablePreviousNodeTypes(){return this._availablePreviousNodeTypes}getAvailableNextNodeTypes(){return this._availableNextNodeTypes}}class VefApprovalFlowNode extends AbstractFlowNode{constructor(id,label){super(id,NodeType.Approval,label),__publicField(this,"_availablePreviousNodeTypes"),__publicField(this,"_availableNextNodeTypes"),this._availablePreviousNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition],this._availableNextNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition]}getAvailablePreviousNodeTypes(){return this._availablePreviousNodeTypes}getAvailableNextNodeTypes(){return this._availableNextNodeTypes}}class VefHandleFlowNode extends AbstractFlowNode{constructor(id,label){super(id,NodeType.Handle,label),__publicField(this,"_availablePreviousNodeTypes"),__publicField(this,"_availableNextNodeTypes"),this._availablePreviousNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition],this._availableNextNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition]}getAvailablePreviousNodeTypes(){return this._availablePreviousNodeTypes}getAvailableNextNodeTypes(){return this._availableNextNodeTypes}}class VefConditionFlowNode extends AbstractFlowNode{constructor(id,label){super(id,NodeType.Condition,label),__publicField(this,"_availablePreviousNodeTypes"),__publicField(this,"_availableNextNodeTypes"),this._availablePreviousNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition],this._availableNextNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition]}getAvailablePreviousNodeTypes(){return this._availablePreviousNodeTypes}getAvailableNextNodeTypes(){return this._availableNextNodeTypes}}class VefEndFlowNode extends AbstractFlowNode{constructor(id,label){super(id,NodeType.End,label),__publicField(this,"_availablePreviousNodeTypes"),__publicField(this,"_availableNextNodeTypes"),this._availablePreviousNodeTypes=[NodeType.Approval,NodeType.Handle,NodeType.Condition],this._availableNextNodeTypes=[]}getAvailablePreviousNodeTypes(){return this._availablePreviousNodeTypes}getAvailableNextNodeTypes(){return this._availableNextNodeTypes}}/*! 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{AbstractFlowNode,VefApprovalFlowNode,VefConditionFlowNode,VefEndFlowNode,VefHandleFlowNode,VefSubmitFlowNode};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{createComponentStore}from"@vef-framework/shared";const{StoreProvider:ApprovalFlowEditorStoreProvider,useStore:useApprovalFlowEditorStore,useStoreApi:useApprovalFlowEditorStoreApi}=createComponentStore("ApprovalFlowEditor",()=>set=>({selectedNode:null,setSelectedNode:selectedNode=>set({selectedNode})}));/*! 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{ApprovalFlowEditorStoreProvider,useApprovalFlowEditorStore,useApprovalFlowEditorStoreApi};
|
|
@@ -1,41 +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";import flowStyle from"../internal/base.css.js";const flowEditorContainerStyle=css`
|
|
2
|
-
height: 80%;
|
|
3
|
-
|
|
4
|
-
${flowStyle}
|
|
5
|
-
`,flowEditorStyle=css`
|
|
6
|
-
--xy-edge-stroke-width: 2px;
|
|
7
|
-
--xy-edge-stroke: rgb(177, 177, 183);
|
|
8
|
-
--xy-edge-stroke-selected: rgb(177, 177, 183);
|
|
9
|
-
|
|
10
|
-
.react-flow__attribution {
|
|
11
|
-
display: none;
|
|
12
|
-
}
|
|
13
|
-
.react-flow__nodesselection-rect,
|
|
14
|
-
.react-flow__selection {
|
|
15
|
-
background-color: oklch(from ${themeVariables.colorPrimary} l c h / 0.06);
|
|
16
|
-
border: ${themeVariables.lineWidth} ${themeVariables.lineType} ${themeVariables.colorPrimary};
|
|
17
|
-
border-radius: ${themeVariables.borderRadius};
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.react-flow__node {
|
|
21
|
-
width: 240px;
|
|
22
|
-
border-radius: ${themeVariables.borderRadiusLg};
|
|
23
|
-
padding: ${themeVariables.paddingSm};
|
|
24
|
-
background-color: ${themeVariables.colorBgContainer};
|
|
25
|
-
|
|
26
|
-
&:hover:not(.selected) {
|
|
27
|
-
box-shadow: ${themeVariables.boxShadowElevated};
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&.selected {
|
|
31
|
-
outline: 2px ${themeVariables.lineType} ${themeVariables.colorPrimary};
|
|
32
|
-
outline-offset: -2px;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.react-flow__handle {
|
|
37
|
-
min-width: 12px;
|
|
38
|
-
min-height: 12px;
|
|
39
|
-
background-color: transparent;
|
|
40
|
-
}
|
|
41
|
-
`;/*! 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{flowEditorContainerStyle,flowEditorStyle};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */var NodeType=(NodeType2=>(NodeType2.Submit="submit",NodeType2.Approval="approval",NodeType2.Handle="handle",NodeType2.Condition="condition",NodeType2.End="end",NodeType2))(NodeType||{}),EdgeType=(EdgeType2=>(EdgeType2.Vef="vef",EdgeType2))(EdgeType||{});/*! 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{EdgeType,NodeType};
|
|
@@ -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{memo}from"react";import{AreaChart,CartesianGrid,XAxis,YAxis,Tooltip,Area,Legend}from"recharts";import VefChartContainer from"../vef-chart-container/index.js";import{VefChartLegendContent}from"../vef-chart-legend-content/index.js";import VefChartTooltipContent from"../vef-chart-tooltip-content/index.js";function VefAreaChartBase({config,data,dataKey,valueFormatter,...restProps}){return jsx(VefChartContainer,{config,...restProps,children:jsxs(AreaChart,{data,children:[jsx("defs",{children:Object.keys(config).map(key=>jsxs("linearGradient",{id:`fill-${key}`,x1:"0",x2:"0",y1:"0",y2:"1",children:[jsx("stop",{offset:"5%",stopColor:`var(--vef-color-${key})`,stopOpacity:.8}),jsx("stop",{offset:"95%",stopColor:`var(--vef-color-${key})`,stopOpacity:.1})]},key))}),jsx(CartesianGrid,{vertical:!1}),jsx(XAxis,{axisLine:!1,dataKey,tickLine:!1,tickMargin:8}),jsx(YAxis,{axisLine:!1,tickLine:!1,tickMargin:8}),jsx(Tooltip,{content:jsx(VefChartTooltipContent,{valueFormatter})}),Object.keys(config).map(key=>jsx(Area,{dataKey:key,fill:`url(#fill-${key})`,stackId:"vef-area-chart",stroke:`var(--vef-color-${key})`,type:"natural"},key)),jsx(Legend,{content:jsx(VefChartLegendContent,{})})]})})}const VefAreaChart=memo(VefAreaChartBase);/*! 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{VefAreaChart as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import AutoSizer from"react-virtualized-auto-sizer";const VefAutoSizer=AutoSizer;/*! 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{VefAutoSizer as default};
|
package/es/vef-avatar/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{Avatar}from"antd";function VefAvatar({size="medium",...restProps}){return jsx(Avatar,{crossOrigin:"anonymous",draggable:!1,size:size==="medium"?"default":size,...restProps})}/*! 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{VefAvatar 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{Avatar}from"antd";import{useMemo}from"react";const{Group}=Avatar;function VefAvatarGroup({max,size="medium",...restProps}){const maxToUse=useMemo(()=>({count:max}),[max]);return jsx(Group,{max:maxToUse,size:size==="medium"?"default":size,...restProps})}/*! 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{VefAvatarGroup as default};
|
package/es/vef-badge/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{useColorTokens}from"@vef-framework/hooks";import{Badge}from"antd";import{useMemo}from"react";function VefBadge({variant="default",count,overflowCount,showZero,size,offset,color}){const colorTokens=useColorTokens(),badgeProps=useMemo(()=>variant==="dot"?{dot:!0,color:color?colorTokens.get(color):void 0,size:size==="medium"?"default":size,offset}:{count,overflowCount,showZero,size:size==="medium"?"default":size,offset,color:color?colorTokens.get(color):void 0},[variant,count,overflowCount,showZero,size,offset,color,colorTokens]);return jsx(Badge,{...badgeProps})}/*! 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{VefBadge 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{useThemeTokens}from"@vef-framework/hooks";import{memo}from"react";import{BarChart,CartesianGrid,XAxis,YAxis,Tooltip,Legend,Bar}from"recharts";import VefChartContainer from"../vef-chart-container/index.js";import{VefChartLegendContent}from"../vef-chart-legend-content/index.js";import VefChartTooltipContent from"../vef-chart-tooltip-content/index.js";function VefBarChartBase({data,config,dataKey,valueFormatter,stack,...restProps}){const{borderRadius}=useThemeTokens();return jsx(VefChartContainer,{config,...restProps,children:jsxs(BarChart,{data,children:[jsx(CartesianGrid,{vertical:!1}),jsx(XAxis,{axisLine:!1,dataKey,tickLine:!1,tickMargin:8}),jsx(YAxis,{axisLine:!1,tickLine:!1,tickMargin:8}),jsx(Tooltip,{content:jsx(VefChartTooltipContent,{valueFormatter})}),jsx(Legend,{content:jsx(VefChartLegendContent,{})}),Object.keys(config).map(key=>jsx(Bar,{dataKey:key,fill:`var(--vef-color-${key})`,radius:borderRadius,stackId:stack?"vef-bar-chart":void 0},key))]})})}const VefBarChart=memo(VefBarChartBase);/*! 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{VefBarChart 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 useBoolInstance(variant,ref){const switchRef=useRef(null),checkboxRef=useRef(null);return useImperativeHandle(ref,()=>variant==="switch"?{focus:()=>{switchRef.current?.focus({preventScroll:!0})},blur:()=>{switchRef.current?.blur()}}:{focus:()=>{checkboxRef.current?.focus({preventScroll:!0})},blur:()=>{checkboxRef.current?.blur()}}),{switchRef,checkboxRef}}/*! 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{useBoolInstance};
|
package/es/vef-bool/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{Switch,Checkbox}from"antd";import{useMemo,memo,forwardRef}from"react";import{useBoolInstance}from"./hooks/use-bool-instance.js";function VefBoolBase({defaultValue,value,disabled,size,label,indeterminate,variant="switch",loading,onChange},ref){const handleChange=useMemo(()=>{if(isFunction(onChange))return variant==="switch"?value2=>onChange(value2):({target:{checked}})=>onChange(checked)},[onChange,variant]),{switchRef,checkboxRef}=useBoolInstance(variant,ref);return variant==="switch"?jsx(Switch,{ref:switchRef,defaultChecked:defaultValue,disabled,loading,size:size==="medium"?"default":size,onChange:handleChange,...value===void 0?{}:{checked:value}}):jsx(Checkbox,{ref:checkboxRef,defaultChecked:defaultValue,disabled,indeterminate,onChange:handleChange,...value===void 0?{}:{checked:value},children:label})}const VefBool=memo(forwardRef(VefBoolBase));VefBool.displayName="VefBool";/*! 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{VefBool 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,isString}from"@vef-framework/shared";import{Breadcrumb}from"antd";import{useMemo,useCallback}from"react";function VefBreadcrumb({items,onClick}){const breadcrumbItems=useMemo(()=>items.map(item=>{const{label,key,dropdownItems}=item;return{title:label,key,menu:isArray(dropdownItems)&&dropdownItems.length>0?{items:dropdownItems.map(it=>({key:it.key,title:it.label})),onClick:({key:key2})=>onClick?.(key2)}:void 0}}),[items,onClick]),renderItem=useCallback(({key,title})=>isString(key)?jsx("a",{className:"vef-breadcrumb-link",onClick:()=>onClick?.(key),children:title}):jsx("span",{className:"vef-breadcrumb-text",children:title}),[onClick]);return jsx(Breadcrumb,{itemRender:renderItem,items:breadcrumbItems})}/*! 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{VefBreadcrumb 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{useColorTokens}from"@vef-framework/hooks";import{defaultColorTypes}from"@vef-framework/shared";import{Button,ConfigProvider}from"antd";import{forwardRef}from"react";import"../../internal/index.js";import{convertBasicSizeToUiSize}from"../../internal/utils.js";const buttonColorTypes=[...defaultColorTypes,"default","primary","error"],VefBaseButton=forwardRef(({color,iconPosition,size,type,variant="solid",autoInsertSpace,disabled,loading,...restProps},ref)=>{const colorTokens=useColorTokens(),iconPositionToUse=iconPosition==="left"?"start":iconPosition==="right"?"end":void 0;if(!color||buttonColorTypes.includes(color))return jsx(Button,{ref,autoInsertSpace,color:color==="error"?"danger":color,disabled:loading?!1:disabled,htmlType:type,iconPosition:iconPositionToUse,loading,size:convertBasicSizeToUiSize(size),variant,...restProps});if(colorTokens.has(color))return jsx(ConfigProvider,{theme:{token:{colorPrimary:colorTokens.get(color)}},children:jsx(Button,{ref,autoInsertSpace,color:"primary",disabled:loading?!1:disabled,htmlType:type,iconPosition:iconPositionToUse,loading,size:convertBasicSizeToUiSize(size),variant,...restProps})});throw new Error(`Invalid button color: ${color}`)});VefBaseButton.displayName="VefBaseButton";/*! 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{VefBaseButton as default};
|
package/es/vef-button/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{useContextDisabled}from"@vef-framework/hooks";import{isNullish,invokeMaybeAsyncFn,defaultMessageTitle,showConfirmation,omit}from"@vef-framework/shared";import{forwardRef,useState,useMemo,memo}from"react";import VefPopconfirm from"../vef-popconfirm/index.js";import VefTooltip from"../vef-tooltip/index.js";import VefBaseButton from"./components/base-button.js";const VefButtonBase=forwardRef(({tip,onClick,disabled=!1,loading,...restProps},ref)=>{const[isLoading,setIsLoading]=useState(!1),onConfirmationOkToUse=useMemo(()=>{if(restProps.requireConfirmation){const{onConfirmationOk}=restProps;return isNullish(loading)?async()=>{await invokeMaybeAsyncFn(onConfirmationOk,{beforeInvoke:()=>{setIsLoading(!0)},onFinally:()=>{setIsLoading(!1)}})}:onConfirmationOk}},[restProps.requireConfirmation,restProps.onConfirmationOk]),onClickToUse=useMemo(()=>{if(!restProps.requireConfirmation)return onClick&&isNullish(loading)?async event=>{await invokeMaybeAsyncFn(onClick,{beforeInvoke:()=>{setIsLoading(!0)},onFinally:()=>{setIsLoading(!1)}},event)}:onClick;const{confirmationMode="simple",confirmationTitle=defaultMessageTitle,confirmationContent,onConfirmationCancel}=restProps;return confirmationMode==="simple"?event=>{event.stopPropagation()}:event=>{event.stopPropagation(),showConfirmation(confirmationTitle,confirmationContent,onConfirmationOkToUse,{onCancel:onConfirmationCancel})}},[loading,onClick,onConfirmationOkToUse,restProps.requireConfirmation,restProps.confirmationMode,restProps.confirmationTitle,restProps.confirmationContent,restProps.onConfirmationCancel]),buttonDisabled=useContextDisabled()||disabled,buttonNode=jsx(VefBaseButton,{ref,disabled:buttonDisabled,loading:loading??isLoading,onClick:onClickToUse,...omit(restProps,["requireConfirmation","confirmationMode","confirmationTitle","confirmationContent","onConfirmationOk","onConfirmationCancel"])}),buttonNodeMaybeWithTip=tip?jsx(VefTooltip,{content:tip,children:buttonNode}):buttonNode;if(restProps.requireConfirmation&&restProps.confirmationMode==="simple"){const{confirmationTitle=defaultMessageTitle,confirmationContent,onConfirmationCancel}=restProps;return jsx(VefPopconfirm,{ref,content:confirmationContent,disabled:buttonDisabled,title:confirmationTitle,onCancel:onConfirmationCancel,onOk:onConfirmationOkToUse,children:buttonNodeMaybeWithTip})}return buttonNodeMaybeWithTip}),VefButton=memo(VefButtonBase);VefButton.displayName="VefButton";/*! 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{VefButton as default};
|
package/es/vef-card/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{isArray}from"@vef-framework/shared";import{Card}from"antd";function VefCard({size="medium",showHoverEffect=!1,actions,nested=!1,...restProps}){return jsx(Card,{actions:isArray(actions)?actions:actions?[actions]:void 0,hoverable:showHoverEffect,size:size==="medium"?"default":size,type:nested?"inner":void 0,...restProps})}/*! 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{VefCard 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{Card}from"antd";const{Meta:CardMeta}=Card;function VefCardMeta({...props}){return jsx(CardMeta,{...props})}/*! 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{VefCardMeta as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{createSelectableContext}from"@vef-framework/shared";const{useContextSelector:useChartContainerContextSelector,useContext:useChartContainerContext,ContextProvider:ChartContainerContextProvider}=createSelectableContext({config:{}});/*! 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{ChartContainerContextProvider,useChartContainerContext,useChartContainerContextSelector};
|
|
@@ -1,57 +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,isString}from"@vef-framework/shared";import{forwardRef,useId}from"react";import{ResponsiveContainer}from"recharts";import{ChartContainerContextProvider}from"./hooks/use-chart-container-context.js";const chartContainerStyle=css`
|
|
2
|
-
display: flex;
|
|
3
|
-
justify-content: center;
|
|
4
|
-
|
|
5
|
-
& .recharts-cartesian-axis-tick text {
|
|
6
|
-
fill: ${themeVariables.colorTextDescription};
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
& .recharts-cartesian-grid line[stroke='#ccc'] {
|
|
10
|
-
stroke: color-mix(in srgb, ${themeVariables.colorBorder} 50%, transparent);
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
& .recharts-curve.recharts-tooltip-cursor {
|
|
14
|
-
stroke: ${themeVariables.colorBorderSecondary};
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
& .recharts-dot[stroke='#fff'] {
|
|
18
|
-
stroke: transparent;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
& .recharts-layer {
|
|
22
|
-
outline: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
& .recharts-polar-grid[stroke='#ccc'] {
|
|
26
|
-
stroke: ${themeVariables.colorBorderSecondary};
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
& .recharts-radial-bar-background-sector {
|
|
30
|
-
fill: ${themeVariables.colorFillContent};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
& .recharts-rectangle.recharts-tooltip-cursor {
|
|
34
|
-
fill: ${themeVariables.colorFillContent};
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
& .recharts-reference-line[stroke='#ccc'] {
|
|
38
|
-
stroke: ${themeVariables.colorBorderSecondary};
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
& .recharts-sector[stroke='#fff'] {
|
|
42
|
-
stroke: transparent;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
& .recharts-sector {
|
|
46
|
-
outline: none;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
& .recharts-surface {
|
|
50
|
-
outline: none;
|
|
51
|
-
}
|
|
52
|
-
`;function ChartStyle({id,config}){const colors=Object.entries(config).map(([key,{color}])=>[key,color]).filter(([,color])=>isString(color));return colors.length?jsx("style",{dangerouslySetInnerHTML:{__html:`
|
|
53
|
-
[data-chart="${id}"] {
|
|
54
|
-
${colors.map(([key,color])=>`--vef-color-${key}: ${color};`).join(`
|
|
55
|
-
`)}
|
|
56
|
-
}
|
|
57
|
-
`}}):null}const VefChartContainer=forwardRef(({id,className,children,config,aspect=16/9,width="100%",height,minWidth,minHeight,...restProps},ref)=>{const uniqueId=useId(),chartId=`${id||uniqueId.replace(/:/g,"")}-chart`;return jsx(ChartContainerContextProvider,{value:{config},children:jsxs("div",{ref,className,css:chartContainerStyle,"data-chart":chartId,...restProps,children:[jsx(ChartStyle,{config,id:chartId}),jsx(ResponsiveContainer,{aspect,height,minHeight,minWidth,width,children})]})})});VefChartContainer.displayName="VefChartContainer";/*! 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{VefChartContainer as default};
|
|
@@ -1,16 +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{styles,themeVariables}from"@vef-framework/shared";import{forwardRef}from"react";import"../internal/index.js";import{useChartContainerContextSelector}from"../vef-chart-container/hooks/use-chart-container-context.js";import{getPayloadConfigFromPayload}from"../internal/chart.js";const chartLegendContentStyle=css`
|
|
2
|
-
${styles.flexCenter}
|
|
3
|
-
gap: ${themeVariables.margin};
|
|
4
|
-
padding-top: ${themeVariables.marginSm};
|
|
5
|
-
`,itemStyle=css`
|
|
6
|
-
display: flex;
|
|
7
|
-
align-items: center;
|
|
8
|
-
gap: ${themeVariables.marginXs};
|
|
9
|
-
color: ${themeVariables.colorTextLabel};
|
|
10
|
-
`,indicatorStyle=css`
|
|
11
|
-
flex: none;
|
|
12
|
-
width: 0.75rem;
|
|
13
|
-
height: 0.75rem;
|
|
14
|
-
border-radius: ${themeVariables.borderRadiusXs};
|
|
15
|
-
background-color: var(--vef-indicator-color);
|
|
16
|
-
`,VefChartLegendContent=forwardRef(({className,payload},ref)=>{const config=useChartContainerContextSelector(ctx=>ctx.config);return payload?.length?jsx("div",{ref,className,css:chartLegendContentStyle,children:payload.map(item=>{const key=`${item.dataKey||"value"}`,itemConfig=getPayloadConfigFromPayload(item,key,config);return jsxs("div",{css:itemStyle,children:[jsx("div",{css:indicatorStyle,style:{"--vef-indicator-color":item.color}}),itemConfig?.label]},item.value)})}):null});VefChartLegendContent.displayName="VefChartLegendContent";/*! 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{VefChartLegendContent,VefChartLegendContent as default};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{jsx,jsxs,Fragment}from"@emotion/react/jsx-runtime";import{css}from"@emotion/react";import{themeVariables,isString,isFunction,isNullish}from"@vef-framework/shared";import{forwardRef,useMemo}from"react";import"../internal/index.js";import{useChartContainerContextSelector}from"../vef-chart-container/hooks/use-chart-container-context.js";import{getPayloadConfigFromPayload}from"../internal/chart.js";const wrapperStyle=css`
|
|
2
|
-
display: grid;
|
|
3
|
-
min-width: 10rem;
|
|
4
|
-
align-items: start;
|
|
5
|
-
gap: ${themeVariables.marginXs};
|
|
6
|
-
border-radius: ${themeVariables.borderRadius};
|
|
7
|
-
border: ${themeVariables.lineWidth} ${themeVariables.lineType} ${themeVariables.colorBorderSecondary};
|
|
8
|
-
background: ${themeVariables.colorBgContainer};
|
|
9
|
-
padding: ${themeVariables.paddingXs} ${themeVariables.paddingSm};
|
|
10
|
-
box-shadow: ${themeVariables.boxShadowSecondary};
|
|
11
|
-
color: ${themeVariables.colorTextLabel}
|
|
12
|
-
`,itemsWrapperStyle=css`
|
|
13
|
-
display: grid;
|
|
14
|
-
gap: ${themeVariables.marginXs};
|
|
15
|
-
`,labelStyle=css`
|
|
16
|
-
font-weight: 500;
|
|
17
|
-
`,itemStyle=css`
|
|
18
|
-
display: flex;
|
|
19
|
-
width: 100%;
|
|
20
|
-
flex-wrap: wrap;
|
|
21
|
-
align-items: center;
|
|
22
|
-
gap: ${themeVariables.marginXs};
|
|
23
|
-
`,indicatorStyle=css`
|
|
24
|
-
height: 0.75rem;
|
|
25
|
-
width: 0.75rem;
|
|
26
|
-
flex: none;
|
|
27
|
-
border-radius: ${themeVariables.borderRadiusXs};
|
|
28
|
-
border-color: var(--vef-indicator-color);
|
|
29
|
-
background-color: var(--vef-indicator-color);
|
|
30
|
-
`,itemContentStyle=css`
|
|
31
|
-
display: flex;
|
|
32
|
-
flex: 1;
|
|
33
|
-
justify-content: space-between;
|
|
34
|
-
align-items: center;
|
|
35
|
-
gap: ${themeVariables.marginXs};
|
|
36
|
-
line-height: 1;
|
|
37
|
-
`,itemLabelStyle=css`
|
|
38
|
-
color: ${themeVariables.colorTextDescription};
|
|
39
|
-
`,itemValueStyle=css`
|
|
40
|
-
font-weight: 500;
|
|
41
|
-
font-family: ${themeVariables.fontFamilyCode};
|
|
42
|
-
`,VefChartTooltipContent=forwardRef(({active,payload,className,label,labelFormatter,labelClassName,formatter,valueFormatter,color,hideLabel=!1},ref)=>{const config=useChartContainerContextSelector(ctx=>ctx.config),tooltipLabel=useMemo(()=>{if(hideLabel||!payload?.length)return null;const[item]=payload,key=`${item.dataKey||item.name||"value"}`,itemConfig=getPayloadConfigFromPayload(item,key,config),labelValue=isString(label)?label:itemConfig?.label;return labelValue?jsx("div",{className:labelClassName,css:labelStyle,children:isFunction(labelFormatter)?labelFormatter(labelValue,payload):labelValue}):null},[hideLabel,payload,config,label,labelClassName,labelFormatter]);return!active||!payload?.length?null:jsxs("div",{ref,className,css:wrapperStyle,children:[tooltipLabel,jsx("div",{css:itemsWrapperStyle,children:payload.map((item,index)=>{const key=`${item.name||item.dataKey||"value"}`,itemConfig=getPayloadConfigFromPayload(item,key,config),indicatorColor=color||item.payload.fill||item.color;return jsx("div",{css:itemStyle,children:formatter&&!isNullish(item?.value)&&item.name?formatter(item.value,item.name,item,index,item.payload):jsxs(Fragment,{children:[jsx("div",{css:indicatorStyle,style:{"--vef-indicator-color":indicatorColor}}),jsxs("div",{css:itemContentStyle,children:[jsx("span",{css:itemLabelStyle,children:itemConfig?.label||item.name}),item.value&&jsx("span",{css:itemValueStyle,children:isFunction(valueFormatter)?valueFormatter(item.value):item.value.toLocaleString()})]})]})},item.dataKey)})})]})});/*! 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{VefChartTooltipContent 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 useCheckboxInstance(ref,dataOptions){const checkboxRef=useRef(null);return useImperativeHandle(ref,()=>({blur:()=>{checkboxRef.current?.blur()},focus:()=>{checkboxRef.current?.focus({preventScroll:!0})},getDataOptions:()=>dataOptions})),checkboxRef}/*! 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{useCheckboxInstance};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.121, build time: 2025-03-11T09:24:54.817Z, made by Venus. */import{useComputedOptions}from"@vef-framework/hooks";import{isFunction,isNullish}from"@vef-framework/shared";import{useMemo,useLayoutEffect}from"react";function useDataOptions({value,onChange,...rest}){const{normalizedOptions,defaultOption,isLoading}=useComputedOptions({...rest,isGrouped:!1,filterable:!1,selectedOptionValues:value}),optionsMap=useMemo(()=>normalizedOptions.reduce((map,option)=>(map.set(option.value,option),map),new Map),[normalizedOptions]);return useLayoutEffect(()=>{defaultOption&&isFunction(onChange)&&isNullish(value)&&onChange([defaultOption.value],[defaultOption])},[defaultOption,onChange,value]),{optionsMap,normalizedOptions,isLoading}}/*! 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{useDataOptions};
|
package/es/vef-checkbox/index.js
DELETED
|
@@ -1,3 +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{themeVariables,isFunction}from"@vef-framework/shared";import{Checkbox}from"antd";import{useMemo,memo,forwardRef}from"react";import VefLoadingPlaceholder from"../vef-loading-placeholder/index.js";import VefTooltip from"../vef-tooltip/index.js";import{useCheckboxInstance}from"./hooks/use-checkbox-instance.js";import{useDataOptions}from"./hooks/use-data-options.js";const{Group}=Checkbox,loadingPlaceholder=jsx("div",{css:css`
|
|
2
|
-
height: ${themeVariables.controlHeight}
|
|
3
|
-
`,children:jsx(VefLoadingPlaceholder,{})});function VefCheckboxBase({defaultValue,value,disabled,renderCheckboxes,onChange,...restProps},ref){const{optionsMap,normalizedOptions,isLoading}=useDataOptions({value,onChange,...restProps}),checkboxRef=useCheckboxInstance(ref,normalizedOptions),handleChange=useMemo(()=>{if(isFunction(onChange))return value2=>{onChange(value2,value2.map(option=>optionsMap.get(option)))}},[onChange,optionsMap]),content=useMemo(()=>{if(isLoading)return;const checkboxes=normalizedOptions.map(option=>{const{value:value2,label,disabled:disabled2,description}=option;return description?jsx(VefTooltip,{content:description,children:jsx(Checkbox,{disabled:disabled2,value:value2,children:label})},value2):jsx(Checkbox,{disabled:disabled2,value:value2,children:label},value2)});return isFunction(renderCheckboxes)?renderCheckboxes(checkboxes):checkboxes},[isLoading,normalizedOptions,renderCheckboxes]);return isLoading?loadingPlaceholder:jsx(Group,{ref:checkboxRef,defaultValue,disabled,onChange:handleChange,...value===void 0?{}:{value},children:content})}const VefCheckbox=memo(forwardRef(VefCheckboxBase));VefCheckbox.displayName="VefCheckbox";/*! 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{VefCheckbox 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};
|