@vef-framework/components 1.0.17 → 1.0.19
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/es/index.js +3 -0
- package/es/internal/index.js +3 -0
- package/es/internal/utils.js +3 -0
- package/es/vef-access-denied/access-denied-icon.js +3 -0
- package/es/vef-access-denied/index.js +29 -0
- package/es/vef-action-buttons/index.js +3 -0
- package/es/vef-app/helper.js +3 -0
- package/es/vef-app/index.js +3 -0
- package/es/vef-auto-sizer/index.js +3 -0
- package/es/vef-avatar/index.js +3 -0
- package/es/vef-avatar-group/index.js +3 -0
- package/es/vef-badge/index.js +3 -0
- package/es/vef-bool/hooks/use-bool-instance.js +3 -0
- package/es/vef-bool/index.js +3 -0
- package/es/vef-button/components/base-button.js +3 -0
- package/es/vef-button/index.js +3 -0
- package/es/vef-card/index.js +3 -0
- package/es/vef-card-meta/index.js +3 -0
- package/es/vef-checkbox/hooks/use-checkbox-instance.js +3 -0
- package/es/vef-checkbox/hooks/use-data-options.js +3 -0
- package/es/vef-checkbox/index.js +5 -0
- package/es/vef-col/index.js +3 -0
- package/es/vef-color-picker/index.js +3 -0
- package/es/vef-compact/index.js +3 -0
- package/es/vef-config-provider/hooks/use-ui-config.js +3 -0
- package/es/vef-config-provider/index.js +103 -0
- package/es/vef-config-provider/reset-style.js +257 -0
- package/es/vef-config-provider/store.js +3 -0
- package/es/vef-container/index.js +3 -0
- package/es/vef-crud-page/components/crud-actions.js +3 -0
- package/es/vef-crud-page/components/crud-filter.js +3 -0
- package/es/vef-crud-page/components/crud-footer.js +9 -0
- package/es/vef-crud-page/components/crud-form-modal.js +3 -0
- package/es/vef-crud-page/components/crud-header.js +3 -0
- package/es/vef-crud-page/components/crud-table.js +3 -0
- package/es/vef-crud-page/hooks/use-action-buttons.js +3 -0
- package/es/vef-crud-page/hooks/use-crud-context.js +3 -0
- package/es/vef-crud-page/hooks/use-crud-schema.js +3 -0
- package/es/vef-crud-page/hooks/use-operation-buttons.js +3 -0
- package/es/vef-crud-page/index.js +3 -0
- package/es/vef-crud-page/store.js +3 -0
- package/es/vef-divider/index.js +3 -0
- package/es/vef-drawer/components/action-button-wrapper.js +3 -0
- package/es/vef-drawer/components/button-props.js +2 -0
- package/es/vef-drawer/components/cancel-action-button.js +3 -0
- package/es/vef-drawer/components/ok-action-button.js +3 -0
- package/es/vef-drawer/context.js +3 -0
- package/es/vef-drawer/index.js +10 -0
- package/es/vef-dropdown/index.js +3 -0
- package/es/vef-dynamic-icon/index.js +3 -0
- package/es/vef-dynamic-icon/props.js +3 -0
- package/es/vef-empty/index.js +3 -0
- package/es/vef-empty-placeholder/index.js +7 -0
- package/es/vef-error/error-icon.js +3 -0
- package/es/vef-error/index.js +30 -0
- package/es/vef-filter/components/action-buttons.js +21 -0
- package/es/vef-filter/components/advanced-filter.js +11 -0
- package/es/vef-filter/components/basic-filter.js +21 -0
- package/es/vef-filter/components/fields/index.js +3 -0
- package/es/vef-filter/components/fields/input-number.js +3 -0
- package/es/vef-filter/components/fields/input.js +3 -0
- package/es/vef-filter/components/filter-field.js +3 -0
- package/es/vef-filter/components/filter-item.js +3 -0
- package/es/vef-filter/event.js +3 -0
- package/es/vef-filter/helper.js +3 -0
- package/es/vef-filter/hooks/use-action-handlers.js +3 -0
- package/es/vef-filter/hooks/use-computed-values.js +3 -0
- package/es/vef-filter/hooks/use-filter-context.js +3 -0
- package/es/vef-filter/hooks/use-filter-initialization.js +3 -0
- package/es/vef-filter/hooks/use-filter-instance.js +3 -0
- package/es/vef-filter/hooks/use-filter-items.js +3 -0
- package/es/vef-filter/hooks/use-filter-values-change.js +3 -0
- package/es/vef-filter/hooks/use-label-config.js +3 -0
- package/es/vef-filter/index.js +10 -0
- package/es/vef-filter/store.js +3 -0
- package/es/vef-flex/index.js +3 -0
- package/es/vef-float-button/index.js +3 -0
- package/es/vef-float-button-group/index.js +3 -0
- package/es/vef-form/components/fields/index.js +3 -0
- package/es/vef-form/components/fields/input-number.js +3 -0
- package/es/vef-form/components/fields/input.js +3 -0
- package/es/vef-form/components/form-actions.js +5 -0
- package/es/vef-form/components/form-content.js +6 -0
- package/es/vef-form/components/form-field.js +3 -0
- package/es/vef-form/components/form-group.js +13 -0
- package/es/vef-form/components/form-hidden-item.js +3 -0
- package/es/vef-form/components/form-item.js +3 -0
- package/es/vef-form/components/form-row.js +3 -0
- package/es/vef-form/event.js +3 -0
- package/es/vef-form/helper.js +3 -0
- package/es/vef-form/hooks/use-action-handlers.js +3 -0
- package/es/vef-form/hooks/use-columns-layout.js +3 -0
- package/es/vef-form/hooks/use-computed-values.js +3 -0
- package/es/vef-form/hooks/use-form-context.js +3 -0
- package/es/vef-form/hooks/use-form-initialization.js +3 -0
- package/es/vef-form/hooks/use-form-instance.js +3 -0
- package/es/vef-form/hooks/use-form-values-change.js +3 -0
- package/es/vef-form/hooks/use-label-width.js +3 -0
- package/es/vef-form/index.js +5 -0
- package/es/vef-form/store.js +3 -0
- package/es/vef-form/validation-rules.js +3 -0
- package/es/vef-form-drawer/index.js +3 -0
- package/es/vef-form-modal/index.js +3 -0
- package/es/vef-generic-select/index.js +3 -0
- package/es/vef-grid/index.js +14 -0
- package/es/vef-grid/props.js +3 -0
- package/es/vef-grid-item/index.js +3 -0
- package/es/vef-icon/index.js +3 -0
- package/es/vef-icon-select/index.js +42 -0
- package/es/vef-input/hooks/use-input-instance.js +3 -0
- package/es/vef-input/index.js +3 -0
- package/es/vef-input-number/hooks/use-input-number-instance.js +3 -0
- package/es/vef-input-number/index.js +3 -0
- package/es/vef-layout/components/content.js +3 -0
- package/es/vef-layout/components/font-size.js +6 -0
- package/es/vef-layout/components/fullscreen.js +6 -0
- package/es/vef-layout/components/header-action-icons.js +17 -0
- package/es/vef-layout/components/header-content.js +8 -0
- package/es/vef-layout/components/header.js +14 -0
- package/es/vef-layout/components/sider.js +51 -0
- package/es/vef-layout/components/title.js +38 -0
- package/es/vef-layout/components/user-avatar.js +20 -0
- package/es/vef-layout/index.js +7 -0
- package/es/vef-layout/logo.svg.js +3 -0
- package/es/vef-layout/store.js +3 -0
- package/es/vef-loading-placeholder/index.js +7 -0
- package/es/vef-login/index.js +56 -0
- package/es/vef-login/login-icon.js +3 -0
- package/es/vef-menu/index.js +3 -0
- package/es/vef-modal/components/action-button-wrapper.js +3 -0
- package/es/vef-modal/components/button-props.js +2 -0
- package/es/vef-modal/components/cancel-action-button.js +3 -0
- package/es/vef-modal/components/ok-action-button.js +3 -0
- package/es/vef-modal/context.js +3 -0
- package/es/vef-modal/index.js +6 -0
- package/es/vef-not-found/index.js +30 -0
- package/es/vef-not-found/not-found-icon.js +3 -0
- package/es/vef-page/index.js +59 -0
- package/es/vef-pagination/index.js +3 -0
- package/es/vef-pagination/props.js +3 -0
- package/es/vef-paragraph/index.js +3 -0
- package/es/vef-password/hooks/use-password-instance.js +3 -0
- package/es/vef-password/index.js +3 -0
- package/es/vef-popconfirm/index.js +3 -0
- package/es/vef-popover/index.js +3 -0
- package/es/vef-radio/hooks/use-data-options.js +3 -0
- package/es/vef-radio/hooks/use-radio-instance.js +3 -0
- package/es/vef-radio/index.js +5 -0
- package/es/vef-rate/hooks/use-rate-instance.js +3 -0
- package/es/vef-rate/index.js +3 -0
- package/es/vef-responsive-container/index.js +7 -0
- package/es/vef-responsive-item/index.js +5 -0
- package/es/vef-ribbon/index.js +3 -0
- package/es/vef-row/index.js +3 -0
- package/es/vef-scroll-area/components/scrollbar.js +34 -0
- package/es/vef-scroll-area/index.js +13 -0
- package/es/vef-select/components/option.js +11 -0
- package/es/vef-select/hooks/use-data-options.js +3 -0
- package/es/vef-select/hooks/use-field-names.js +3 -0
- package/es/vef-select/hooks/use-render-label.js +10 -0
- package/es/vef-select/hooks/use-render-option.js +3 -0
- package/es/vef-select/hooks/use-select-instance.js +3 -0
- package/es/vef-select/index.js +3 -0
- package/es/vef-slider/hooks/use-slider-instance.js +3 -0
- package/es/vef-slider/index.js +3 -0
- package/es/vef-sortable-list/components/overlay-item.js +7 -0
- package/es/vef-sortable-list/components/sortable-item.js +7 -0
- package/es/vef-sortable-list/hooks/use-merged-items.js +3 -0
- package/es/vef-sortable-list/index.js +3 -0
- package/es/vef-space/index.js +3 -0
- package/es/vef-spin/index.js +3 -0
- package/es/vef-splitter/index.js +3 -0
- package/es/vef-splitter-panel/index.js +3 -0
- package/es/vef-status/index.js +3 -0
- package/es/vef-table/components/columns/bool.js +3 -0
- package/es/vef-table/components/columns/code.js +3 -0
- package/es/vef-table/components/columns/data-dictionary.js +3 -0
- package/es/vef-table/components/columns/enum.js +3 -0
- package/es/vef-table/components/columns/file.js +3 -0
- package/es/vef-table/components/columns/icon.js +3 -0
- package/es/vef-table/components/columns/id.js +3 -0
- package/es/vef-table/components/columns/image.js +3 -0
- package/es/vef-table/components/columns/index.js +3 -0
- package/es/vef-table/components/columns/markdown.js +3 -0
- package/es/vef-table/components/columns/number.js +3 -0
- package/es/vef-table/components/columns/render.js +3 -0
- package/es/vef-table/components/columns/rich-text.js +3 -0
- package/es/vef-table/components/columns/text.js +3 -0
- package/es/vef-table/components/columns-settings.js +54 -0
- package/es/vef-table/components/operation-buttons.js +12 -0
- package/es/vef-table/components/settings-icon.js +5 -0
- package/es/vef-table/components/table-footer.js +19 -0
- package/es/vef-table/helper.js +3 -0
- package/es/vef-table/hooks/use-computed-batch-buttons.js +3 -0
- package/es/vef-table/hooks/use-computed-columns.js +3 -0
- package/es/vef-table/hooks/use-computed-values.js +3 -0
- package/es/vef-table/hooks/use-data.js +3 -0
- package/es/vef-table/hooks/use-default-column-configs.js +3 -0
- package/es/vef-table/hooks/use-display-value.js +3 -0
- package/es/vef-table/hooks/use-helper-columns.js +3 -0
- package/es/vef-table/hooks/use-operation-column-width.js +3 -0
- package/es/vef-table/hooks/use-pagination-props.js +3 -0
- package/es/vef-table/hooks/use-row-props.js +3 -0
- package/es/vef-table/hooks/use-row-selection-config.js +3 -0
- package/es/vef-table/hooks/use-selected-rows.js +3 -0
- package/es/vef-table/hooks/use-table-columns.js +3 -0
- package/es/vef-table/hooks/use-table-context.js +3 -0
- package/es/vef-table/hooks/use-table-instance.js +3 -0
- package/es/vef-table/hooks/use-table-summary.js +3 -0
- package/es/vef-table/hooks/use-table-width.js +3 -0
- package/es/vef-table/index.js +56 -0
- package/es/vef-table/store.js +3 -0
- package/es/vef-tabs/index.js +3 -0
- package/es/vef-tag/index.js +3 -0
- package/es/vef-temporal-picker/helper.js +3 -0
- package/es/vef-temporal-picker/hooks/use-dayjs-value.js +3 -0
- package/es/vef-temporal-picker/hooks/use-temporal-limit.js +3 -0
- package/es/vef-temporal-picker/hooks/use-temporal-picker-instance.js +3 -0
- package/es/vef-temporal-picker/index.js +3 -0
- package/es/vef-temporal-range-picker/helper.js +3 -0
- package/es/vef-temporal-range-picker/hooks/use-dayjs-values.js +3 -0
- package/es/vef-temporal-range-picker/hooks/use-temporal-limit.js +3 -0
- package/es/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +3 -0
- package/es/vef-temporal-range-picker/index.js +3 -0
- package/es/vef-temporal-range-picker/props.js +3 -0
- package/es/vef-text/index.js +3 -0
- package/es/vef-textarea/hooks/use-textarea-instance.js +3 -0
- package/es/vef-textarea/index.js +3 -0
- package/es/vef-title/index.js +15 -0
- package/es/vef-tooltip/index.js +3 -0
- package/es/vef-tree-select/hooks/use-change-handler.js +3 -0
- package/es/vef-tree-select/hooks/use-data-options.js +3 -0
- package/es/vef-tree-select/hooks/use-tree-select-instance.js +3 -0
- package/es/vef-tree-select/index.js +3 -0
- package/es/vef-virtual-grid/index.js +14 -0
- package/es/vef-virtual-list/index.js +20 -0
- package/lib/index.js +3 -0
- package/lib/internal/index.js +3 -0
- package/lib/internal/utils.js +3 -0
- package/lib/vef-access-denied/access-denied-icon.js +3 -0
- package/lib/vef-access-denied/index.js +29 -0
- package/lib/vef-access-denied/props.js +3 -0
- package/lib/vef-action-buttons/index.js +3 -0
- package/lib/vef-action-buttons/props.js +3 -0
- package/lib/vef-app/helper.js +3 -0
- package/lib/vef-app/index.js +3 -0
- package/lib/vef-app/props.js +3 -0
- package/lib/vef-auto-sizer/index.js +3 -0
- package/lib/vef-auto-sizer/props.js +3 -0
- package/lib/vef-avatar/index.js +3 -0
- package/lib/vef-avatar/props.js +3 -0
- package/lib/vef-avatar-group/index.js +3 -0
- package/lib/vef-avatar-group/props.js +3 -0
- package/lib/vef-badge/index.js +3 -0
- package/lib/vef-badge/props.js +3 -0
- package/lib/vef-bool/hooks/use-bool-instance.js +3 -0
- package/lib/vef-bool/index.js +3 -0
- package/lib/vef-bool/props.js +3 -0
- package/lib/vef-button/components/base-button.js +3 -0
- package/lib/vef-button/index.js +3 -0
- package/lib/vef-button/props.js +3 -0
- package/lib/vef-card/index.js +3 -0
- package/lib/vef-card/props.js +3 -0
- package/lib/vef-card-meta/index.js +3 -0
- package/lib/vef-card-meta/props.js +3 -0
- package/lib/vef-checkbox/hooks/use-checkbox-instance.js +3 -0
- package/lib/vef-checkbox/hooks/use-data-options.js +3 -0
- package/lib/vef-checkbox/index.js +5 -0
- package/lib/vef-checkbox/props.js +3 -0
- package/lib/vef-col/index.js +3 -0
- package/lib/vef-col/props.js +3 -0
- package/lib/vef-color-picker/index.js +3 -0
- package/lib/vef-color-picker/props.js +3 -0
- package/lib/vef-compact/index.js +3 -0
- package/lib/vef-compact/props.js +3 -0
- package/lib/vef-config-provider/hooks/use-ui-config.js +3 -0
- package/lib/vef-config-provider/index.js +103 -0
- package/lib/vef-config-provider/props.js +3 -0
- package/lib/vef-config-provider/reset-style.js +257 -0
- package/lib/vef-config-provider/store.js +3 -0
- package/lib/vef-container/index.js +3 -0
- package/lib/vef-container/props.js +3 -0
- package/lib/vef-crud-page/components/crud-actions.js +3 -0
- package/lib/vef-crud-page/components/crud-filter.js +3 -0
- package/lib/vef-crud-page/components/crud-footer.js +9 -0
- package/lib/vef-crud-page/components/crud-form-modal.js +3 -0
- package/lib/vef-crud-page/components/crud-header.js +3 -0
- package/lib/vef-crud-page/components/crud-table.js +3 -0
- package/lib/vef-crud-page/hooks/use-action-buttons.js +3 -0
- package/lib/vef-crud-page/hooks/use-crud-context.js +3 -0
- package/lib/vef-crud-page/hooks/use-crud-schema.js +3 -0
- package/lib/vef-crud-page/hooks/use-operation-buttons.js +3 -0
- package/lib/vef-crud-page/index.js +3 -0
- package/lib/vef-crud-page/props.js +3 -0
- package/lib/vef-crud-page/store.js +3 -0
- package/lib/vef-crud-page/types.js +3 -0
- package/lib/vef-divider/index.js +3 -0
- package/lib/vef-divider/props.js +3 -0
- package/lib/vef-drawer/components/action-button-wrapper.js +3 -0
- package/lib/vef-drawer/components/button-props.js +3 -0
- package/lib/vef-drawer/components/cancel-action-button.js +3 -0
- package/lib/vef-drawer/components/ok-action-button.js +3 -0
- package/lib/vef-drawer/context.js +3 -0
- package/lib/vef-drawer/index.js +10 -0
- package/lib/vef-drawer/props.js +3 -0
- package/lib/vef-dropdown/index.js +3 -0
- package/lib/vef-dropdown/props.js +3 -0
- package/lib/vef-dynamic-icon/index.js +3 -0
- package/lib/vef-dynamic-icon/props.js +3 -0
- package/lib/vef-empty/index.js +3 -0
- package/lib/vef-empty/props.js +3 -0
- package/lib/vef-empty-placeholder/index.js +7 -0
- package/lib/vef-empty-placeholder/props.js +3 -0
- package/lib/vef-error/error-icon.js +3 -0
- package/lib/vef-error/index.js +30 -0
- package/lib/vef-error/props.js +3 -0
- package/lib/vef-filter/components/action-buttons.js +21 -0
- package/lib/vef-filter/components/advanced-filter.js +11 -0
- package/lib/vef-filter/components/basic-filter.js +21 -0
- package/lib/vef-filter/components/fields/index.js +3 -0
- package/lib/vef-filter/components/fields/input-number.js +3 -0
- package/lib/vef-filter/components/fields/input.js +3 -0
- package/lib/vef-filter/components/fields/props.js +3 -0
- package/lib/vef-filter/components/filter-field.js +3 -0
- package/lib/vef-filter/components/filter-item.js +3 -0
- package/lib/vef-filter/event.js +3 -0
- package/lib/vef-filter/helper.js +3 -0
- package/lib/vef-filter/hooks/use-action-handlers.js +3 -0
- package/lib/vef-filter/hooks/use-computed-values.js +3 -0
- package/lib/vef-filter/hooks/use-filter-context.js +3 -0
- package/lib/vef-filter/hooks/use-filter-initialization.js +3 -0
- package/lib/vef-filter/hooks/use-filter-instance.js +3 -0
- package/lib/vef-filter/hooks/use-filter-items.js +3 -0
- package/lib/vef-filter/hooks/use-filter-values-change.js +3 -0
- package/lib/vef-filter/hooks/use-label-config.js +3 -0
- package/lib/vef-filter/index.js +10 -0
- package/lib/vef-filter/props.js +3 -0
- package/lib/vef-filter/store.js +3 -0
- package/lib/vef-filter/types.js +3 -0
- package/lib/vef-flex/index.js +3 -0
- package/lib/vef-flex/props.js +3 -0
- package/lib/vef-float-button/index.js +3 -0
- package/lib/vef-float-button/props.js +3 -0
- package/lib/vef-float-button-group/index.js +3 -0
- package/lib/vef-float-button-group/props.js +3 -0
- package/lib/vef-form/components/fields/index.js +3 -0
- package/lib/vef-form/components/fields/input-number.js +3 -0
- package/lib/vef-form/components/fields/input.js +3 -0
- package/lib/vef-form/components/fields/props.js +3 -0
- package/lib/vef-form/components/form-actions.js +5 -0
- package/lib/vef-form/components/form-content.js +6 -0
- package/lib/vef-form/components/form-field.js +3 -0
- package/lib/vef-form/components/form-group.js +13 -0
- package/lib/vef-form/components/form-hidden-item.js +3 -0
- package/lib/vef-form/components/form-item.js +3 -0
- package/lib/vef-form/components/form-row.js +3 -0
- package/lib/vef-form/event.js +3 -0
- package/lib/vef-form/helper.js +3 -0
- package/lib/vef-form/hooks/use-action-handlers.js +3 -0
- package/lib/vef-form/hooks/use-columns-layout.js +3 -0
- package/lib/vef-form/hooks/use-computed-values.js +3 -0
- package/lib/vef-form/hooks/use-form-context.js +3 -0
- package/lib/vef-form/hooks/use-form-initialization.js +3 -0
- package/lib/vef-form/hooks/use-form-instance.js +3 -0
- package/lib/vef-form/hooks/use-form-values-change.js +3 -0
- package/lib/vef-form/hooks/use-label-width.js +3 -0
- package/lib/vef-form/index.js +5 -0
- package/lib/vef-form/props.js +3 -0
- package/lib/vef-form/store.js +3 -0
- package/lib/vef-form/types.js +3 -0
- package/lib/vef-form/validation-rules.js +3 -0
- package/lib/vef-form-drawer/index.js +3 -0
- package/lib/vef-form-drawer/props.js +3 -0
- package/lib/vef-form-modal/index.js +3 -0
- package/lib/vef-form-modal/props.js +3 -0
- package/lib/vef-generic-select/index.js +3 -0
- package/lib/vef-generic-select/props.js +3 -0
- package/lib/vef-grid/index.js +14 -0
- package/lib/vef-grid/props.js +3 -0
- package/lib/vef-grid-item/index.js +3 -0
- package/lib/vef-grid-item/props.js +3 -0
- package/lib/vef-icon/index.js +3 -0
- package/lib/vef-icon/props.js +3 -0
- package/lib/vef-icon-select/index.js +42 -0
- package/lib/vef-icon-select/props.js +3 -0
- package/lib/vef-input/hooks/use-input-instance.js +3 -0
- package/lib/vef-input/index.js +3 -0
- package/lib/vef-input/props.js +3 -0
- package/lib/vef-input-number/hooks/use-input-number-instance.js +3 -0
- package/lib/vef-input-number/index.js +3 -0
- package/lib/vef-input-number/props.js +3 -0
- package/lib/vef-layout/components/content.js +3 -0
- package/lib/vef-layout/components/font-size.js +6 -0
- package/lib/vef-layout/components/fullscreen.js +6 -0
- package/lib/vef-layout/components/header-action-icons.js +17 -0
- package/lib/vef-layout/components/header-content.js +8 -0
- package/lib/vef-layout/components/header.js +14 -0
- package/lib/vef-layout/components/sider.js +51 -0
- package/lib/vef-layout/components/title.js +38 -0
- package/lib/vef-layout/components/user-avatar.js +20 -0
- package/lib/vef-layout/index.js +7 -0
- package/lib/vef-layout/logo.svg.js +3 -0
- package/lib/vef-layout/props.js +3 -0
- package/lib/vef-layout/store.js +3 -0
- package/lib/vef-loading-placeholder/index.js +7 -0
- package/lib/vef-loading-placeholder/props.js +3 -0
- package/lib/vef-login/index.js +56 -0
- package/lib/vef-login/login-icon.js +3 -0
- package/lib/vef-login/props.js +3 -0
- package/lib/vef-menu/index.js +3 -0
- package/lib/vef-menu/props.js +3 -0
- package/lib/vef-modal/components/action-button-wrapper.js +3 -0
- package/lib/vef-modal/components/button-props.js +3 -0
- package/lib/vef-modal/components/cancel-action-button.js +3 -0
- package/lib/vef-modal/components/ok-action-button.js +3 -0
- package/lib/vef-modal/context.js +3 -0
- package/lib/vef-modal/index.js +6 -0
- package/lib/vef-modal/props.js +3 -0
- package/lib/vef-not-found/index.js +30 -0
- package/lib/vef-not-found/not-found-icon.js +3 -0
- package/lib/vef-not-found/props.js +3 -0
- package/lib/vef-page/index.js +59 -0
- package/lib/vef-page/props.js +3 -0
- package/lib/vef-pagination/index.js +3 -0
- package/lib/vef-pagination/props.js +3 -0
- package/lib/vef-paragraph/index.js +3 -0
- package/lib/vef-paragraph/props.js +3 -0
- package/lib/vef-password/hooks/use-password-instance.js +3 -0
- package/lib/vef-password/index.js +3 -0
- package/lib/vef-password/props.js +3 -0
- package/lib/vef-popconfirm/index.js +3 -0
- package/lib/vef-popconfirm/props.js +3 -0
- package/lib/vef-popover/index.js +3 -0
- package/lib/vef-popover/props.js +3 -0
- package/lib/vef-radio/hooks/use-data-options.js +3 -0
- package/lib/vef-radio/hooks/use-radio-instance.js +3 -0
- package/lib/vef-radio/index.js +5 -0
- package/lib/vef-radio/props.js +3 -0
- package/lib/vef-rate/hooks/use-rate-instance.js +3 -0
- package/lib/vef-rate/index.js +3 -0
- package/lib/vef-rate/props.js +3 -0
- package/lib/vef-responsive-container/index.js +7 -0
- package/lib/vef-responsive-container/props.js +3 -0
- package/lib/vef-responsive-item/index.js +5 -0
- package/lib/vef-responsive-item/props.js +3 -0
- package/lib/vef-ribbon/index.js +3 -0
- package/lib/vef-ribbon/props.js +3 -0
- package/lib/vef-row/index.js +3 -0
- package/lib/vef-row/props.js +3 -0
- package/lib/vef-scroll-area/components/scrollbar.js +34 -0
- package/lib/vef-scroll-area/index.js +13 -0
- package/lib/vef-scroll-area/props.js +3 -0
- package/lib/vef-select/components/option.js +11 -0
- package/lib/vef-select/hooks/use-data-options.js +3 -0
- package/lib/vef-select/hooks/use-field-names.js +3 -0
- package/lib/vef-select/hooks/use-render-label.js +10 -0
- package/lib/vef-select/hooks/use-render-option.js +3 -0
- package/lib/vef-select/hooks/use-select-instance.js +3 -0
- package/lib/vef-select/index.js +3 -0
- package/lib/vef-select/props.js +3 -0
- package/lib/vef-slider/hooks/use-slider-instance.js +3 -0
- package/lib/vef-slider/index.js +3 -0
- package/lib/vef-slider/props.js +3 -0
- package/lib/vef-sortable-list/components/overlay-item.js +7 -0
- package/lib/vef-sortable-list/components/sortable-item.js +7 -0
- package/lib/vef-sortable-list/hooks/use-merged-items.js +3 -0
- package/lib/vef-sortable-list/index.js +3 -0
- package/lib/vef-sortable-list/props.js +3 -0
- package/lib/vef-space/index.js +3 -0
- package/lib/vef-space/props.js +3 -0
- package/lib/vef-spin/index.js +3 -0
- package/lib/vef-spin/props.js +3 -0
- package/lib/vef-splitter/index.js +3 -0
- package/lib/vef-splitter/props.js +3 -0
- package/lib/vef-splitter-panel/index.js +3 -0
- package/lib/vef-splitter-panel/props.js +3 -0
- package/lib/vef-status/index.js +3 -0
- package/lib/vef-status/props.js +3 -0
- package/lib/vef-table/components/columns/bool.js +3 -0
- package/lib/vef-table/components/columns/code.js +3 -0
- package/lib/vef-table/components/columns/data-dictionary.js +3 -0
- package/lib/vef-table/components/columns/enum.js +3 -0
- package/lib/vef-table/components/columns/file.js +3 -0
- package/lib/vef-table/components/columns/icon.js +3 -0
- package/lib/vef-table/components/columns/id.js +3 -0
- package/lib/vef-table/components/columns/image.js +3 -0
- package/lib/vef-table/components/columns/index.js +3 -0
- package/lib/vef-table/components/columns/markdown.js +3 -0
- package/lib/vef-table/components/columns/number.js +3 -0
- package/lib/vef-table/components/columns/props.js +3 -0
- package/lib/vef-table/components/columns/render.js +3 -0
- package/lib/vef-table/components/columns/rich-text.js +3 -0
- package/lib/vef-table/components/columns/text.js +3 -0
- package/lib/vef-table/components/columns-settings.js +54 -0
- package/lib/vef-table/components/operation-buttons.js +12 -0
- package/lib/vef-table/components/settings-icon.js +5 -0
- package/lib/vef-table/components/table-footer.js +19 -0
- package/lib/vef-table/helper.js +3 -0
- package/lib/vef-table/hooks/use-computed-batch-buttons.js +3 -0
- package/lib/vef-table/hooks/use-computed-columns.js +3 -0
- package/lib/vef-table/hooks/use-computed-values.js +3 -0
- package/lib/vef-table/hooks/use-data.js +3 -0
- package/lib/vef-table/hooks/use-default-column-configs.js +3 -0
- package/lib/vef-table/hooks/use-display-value.js +3 -0
- package/lib/vef-table/hooks/use-helper-columns.js +3 -0
- package/lib/vef-table/hooks/use-operation-column-width.js +3 -0
- package/lib/vef-table/hooks/use-pagination-props.js +3 -0
- package/lib/vef-table/hooks/use-row-props.js +3 -0
- package/lib/vef-table/hooks/use-row-selection-config.js +3 -0
- package/lib/vef-table/hooks/use-selected-rows.js +3 -0
- package/lib/vef-table/hooks/use-table-columns.js +3 -0
- package/lib/vef-table/hooks/use-table-context.js +3 -0
- package/lib/vef-table/hooks/use-table-instance.js +3 -0
- package/lib/vef-table/hooks/use-table-summary.js +3 -0
- package/lib/vef-table/hooks/use-table-width.js +3 -0
- package/lib/vef-table/index.js +56 -0
- package/lib/vef-table/props.js +3 -0
- package/lib/vef-table/store.js +3 -0
- package/lib/vef-table/types.js +3 -0
- package/lib/vef-tabs/index.js +3 -0
- package/lib/vef-tabs/props.js +3 -0
- package/lib/vef-tag/index.js +3 -0
- package/lib/vef-tag/props.js +3 -0
- package/lib/vef-temporal-picker/helper.js +3 -0
- package/lib/vef-temporal-picker/hooks/use-dayjs-value.js +3 -0
- package/lib/vef-temporal-picker/hooks/use-temporal-limit.js +3 -0
- package/lib/vef-temporal-picker/hooks/use-temporal-picker-instance.js +3 -0
- package/lib/vef-temporal-picker/index.js +3 -0
- package/lib/vef-temporal-picker/props.js +3 -0
- package/lib/vef-temporal-range-picker/helper.js +3 -0
- package/lib/vef-temporal-range-picker/hooks/use-dayjs-values.js +3 -0
- package/lib/vef-temporal-range-picker/hooks/use-temporal-limit.js +3 -0
- package/lib/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +3 -0
- package/lib/vef-temporal-range-picker/index.js +3 -0
- package/lib/vef-temporal-range-picker/props.js +3 -0
- package/lib/vef-text/index.js +3 -0
- package/lib/vef-text/props.js +3 -0
- package/lib/vef-textarea/hooks/use-textarea-instance.js +3 -0
- package/lib/vef-textarea/index.js +3 -0
- package/lib/vef-textarea/props.js +3 -0
- package/lib/vef-title/index.js +15 -0
- package/lib/vef-title/props.js +3 -0
- package/lib/vef-tooltip/index.js +3 -0
- package/lib/vef-tooltip/props.js +3 -0
- package/lib/vef-tree-select/hooks/use-change-handler.js +3 -0
- package/lib/vef-tree-select/hooks/use-data-options.js +3 -0
- package/lib/vef-tree-select/hooks/use-tree-select-instance.js +3 -0
- package/lib/vef-tree-select/index.js +3 -0
- package/lib/vef-tree-select/props.js +3 -0
- package/lib/vef-virtual-grid/index.js +14 -0
- package/lib/vef-virtual-grid/props.js +3 -0
- package/lib/vef-virtual-list/index.js +20 -0
- package/lib/vef-virtual-list/props.js +3 -0
- package/package.json +8 -6
- package/dist/index.js +0 -3
- package/dist/internal/index.js +0 -3
- package/dist/internal/utils.js +0 -3
- package/dist/vef-access-denied/access-denied-icon.js +0 -3
- package/dist/vef-access-denied/index.js +0 -29
- package/dist/vef-action-buttons/index.js +0 -3
- package/dist/vef-app/helper.js +0 -3
- package/dist/vef-app/index.js +0 -3
- package/dist/vef-auto-sizer/index.js +0 -3
- package/dist/vef-avatar/index.js +0 -3
- package/dist/vef-avatar-group/index.js +0 -3
- package/dist/vef-badge/index.js +0 -3
- package/dist/vef-bool/hooks/use-bool-instance.js +0 -3
- package/dist/vef-bool/index.js +0 -3
- package/dist/vef-button/components/base-button.js +0 -3
- package/dist/vef-button/index.js +0 -3
- package/dist/vef-card/index.js +0 -3
- package/dist/vef-card-meta/index.js +0 -3
- package/dist/vef-checkbox/hooks/use-checkbox-instance.js +0 -3
- package/dist/vef-checkbox/hooks/use-data-options.js +0 -3
- package/dist/vef-checkbox/index.js +0 -5
- package/dist/vef-col/index.js +0 -3
- package/dist/vef-color-picker/index.js +0 -3
- package/dist/vef-compact/index.js +0 -3
- package/dist/vef-config-provider/hooks/use-ui-config.js +0 -3
- package/dist/vef-config-provider/index.js +0 -103
- package/dist/vef-config-provider/reset-style.js +0 -257
- package/dist/vef-config-provider/store.js +0 -3
- package/dist/vef-container/index.js +0 -3
- package/dist/vef-crud-page/components/crud-actions.js +0 -3
- package/dist/vef-crud-page/components/crud-filter.js +0 -3
- package/dist/vef-crud-page/components/crud-footer.js +0 -9
- package/dist/vef-crud-page/components/crud-form-modal.js +0 -3
- package/dist/vef-crud-page/components/crud-header.js +0 -3
- package/dist/vef-crud-page/components/crud-table.js +0 -3
- package/dist/vef-crud-page/hooks/use-action-buttons.js +0 -3
- package/dist/vef-crud-page/hooks/use-crud-context.js +0 -3
- package/dist/vef-crud-page/hooks/use-crud-schema.js +0 -3
- package/dist/vef-crud-page/hooks/use-operation-buttons.js +0 -3
- package/dist/vef-crud-page/index.js +0 -3
- package/dist/vef-crud-page/store.js +0 -3
- package/dist/vef-divider/index.js +0 -3
- package/dist/vef-drawer/components/action-button-wrapper.js +0 -3
- package/dist/vef-drawer/components/button-props.js +0 -2
- package/dist/vef-drawer/components/cancel-action-button.js +0 -3
- package/dist/vef-drawer/components/ok-action-button.js +0 -3
- package/dist/vef-drawer/context.js +0 -3
- package/dist/vef-drawer/index.js +0 -10
- package/dist/vef-dropdown/index.js +0 -3
- package/dist/vef-dynamic-icon/index.js +0 -3
- package/dist/vef-dynamic-icon/props.js +0 -3
- package/dist/vef-empty/index.js +0 -3
- package/dist/vef-empty-placeholder/index.js +0 -7
- package/dist/vef-error/error-icon.js +0 -3
- package/dist/vef-error/index.js +0 -30
- package/dist/vef-filter/components/action-buttons.js +0 -21
- package/dist/vef-filter/components/advanced-filter.js +0 -11
- package/dist/vef-filter/components/basic-filter.js +0 -21
- package/dist/vef-filter/components/fields/index.js +0 -3
- package/dist/vef-filter/components/fields/input-number.js +0 -3
- package/dist/vef-filter/components/fields/input.js +0 -3
- package/dist/vef-filter/components/filter-field.js +0 -3
- package/dist/vef-filter/components/filter-item.js +0 -3
- package/dist/vef-filter/event.js +0 -3
- package/dist/vef-filter/helper.js +0 -3
- package/dist/vef-filter/hooks/use-action-handlers.js +0 -3
- package/dist/vef-filter/hooks/use-computed-values.js +0 -3
- package/dist/vef-filter/hooks/use-filter-context.js +0 -3
- package/dist/vef-filter/hooks/use-filter-initialization.js +0 -3
- package/dist/vef-filter/hooks/use-filter-instance.js +0 -3
- package/dist/vef-filter/hooks/use-filter-items.js +0 -3
- package/dist/vef-filter/hooks/use-filter-values-change.js +0 -3
- package/dist/vef-filter/hooks/use-label-config.js +0 -3
- package/dist/vef-filter/index.js +0 -10
- package/dist/vef-filter/store.js +0 -3
- package/dist/vef-flex/index.js +0 -3
- package/dist/vef-float-button/index.js +0 -3
- package/dist/vef-float-button-group/index.js +0 -3
- package/dist/vef-form/components/fields/index.js +0 -3
- package/dist/vef-form/components/fields/input-number.js +0 -3
- package/dist/vef-form/components/fields/input.js +0 -3
- package/dist/vef-form/components/form-actions.js +0 -5
- package/dist/vef-form/components/form-content.js +0 -6
- package/dist/vef-form/components/form-field.js +0 -3
- package/dist/vef-form/components/form-group.js +0 -13
- package/dist/vef-form/components/form-hidden-item.js +0 -3
- package/dist/vef-form/components/form-item.js +0 -3
- package/dist/vef-form/components/form-row.js +0 -3
- package/dist/vef-form/event.js +0 -3
- package/dist/vef-form/helper.js +0 -3
- package/dist/vef-form/hooks/use-action-handlers.js +0 -3
- package/dist/vef-form/hooks/use-columns-layout.js +0 -3
- package/dist/vef-form/hooks/use-computed-values.js +0 -3
- package/dist/vef-form/hooks/use-form-context.js +0 -3
- package/dist/vef-form/hooks/use-form-initialization.js +0 -3
- package/dist/vef-form/hooks/use-form-instance.js +0 -3
- package/dist/vef-form/hooks/use-form-values-change.js +0 -3
- package/dist/vef-form/hooks/use-label-width.js +0 -3
- package/dist/vef-form/index.js +0 -5
- package/dist/vef-form/store.js +0 -3
- package/dist/vef-form/validation-rules.js +0 -3
- package/dist/vef-form-drawer/index.js +0 -3
- package/dist/vef-form-modal/index.js +0 -3
- package/dist/vef-generic-select/index.js +0 -3
- package/dist/vef-grid/index.js +0 -14
- package/dist/vef-grid/props.js +0 -3
- package/dist/vef-grid-item/index.js +0 -3
- package/dist/vef-icon/index.js +0 -3
- package/dist/vef-icon-select/index.js +0 -42
- package/dist/vef-input/hooks/use-input-instance.js +0 -3
- package/dist/vef-input/index.js +0 -3
- package/dist/vef-input-number/hooks/use-input-number-instance.js +0 -3
- package/dist/vef-input-number/index.js +0 -3
- package/dist/vef-layout/components/content.js +0 -3
- package/dist/vef-layout/components/font-size.js +0 -6
- package/dist/vef-layout/components/fullscreen.js +0 -6
- package/dist/vef-layout/components/header-action-icons.js +0 -17
- package/dist/vef-layout/components/header-content.js +0 -8
- package/dist/vef-layout/components/header.js +0 -14
- package/dist/vef-layout/components/sider.js +0 -51
- package/dist/vef-layout/components/title.js +0 -38
- package/dist/vef-layout/components/user-avatar.js +0 -20
- package/dist/vef-layout/index.js +0 -7
- package/dist/vef-layout/logo.svg.js +0 -3
- package/dist/vef-layout/store.js +0 -3
- package/dist/vef-loading-placeholder/index.js +0 -7
- package/dist/vef-login/index.js +0 -56
- package/dist/vef-login/login-icon.js +0 -3
- package/dist/vef-menu/index.js +0 -3
- package/dist/vef-modal/components/action-button-wrapper.js +0 -3
- package/dist/vef-modal/components/button-props.js +0 -2
- package/dist/vef-modal/components/cancel-action-button.js +0 -3
- package/dist/vef-modal/components/ok-action-button.js +0 -3
- package/dist/vef-modal/context.js +0 -3
- package/dist/vef-modal/index.js +0 -6
- package/dist/vef-not-found/index.js +0 -30
- package/dist/vef-not-found/not-found-icon.js +0 -3
- package/dist/vef-page/index.js +0 -59
- package/dist/vef-pagination/index.js +0 -3
- package/dist/vef-pagination/props.js +0 -3
- package/dist/vef-paragraph/index.js +0 -3
- package/dist/vef-password/hooks/use-password-instance.js +0 -3
- package/dist/vef-password/index.js +0 -3
- package/dist/vef-popconfirm/index.js +0 -3
- package/dist/vef-popover/index.js +0 -3
- package/dist/vef-radio/hooks/use-data-options.js +0 -3
- package/dist/vef-radio/hooks/use-radio-instance.js +0 -3
- package/dist/vef-radio/index.js +0 -5
- package/dist/vef-rate/hooks/use-rate-instance.js +0 -3
- package/dist/vef-rate/index.js +0 -3
- package/dist/vef-responsive-container/index.js +0 -7
- package/dist/vef-responsive-item/index.js +0 -5
- package/dist/vef-ribbon/index.js +0 -3
- package/dist/vef-row/index.js +0 -3
- package/dist/vef-scroll-area/components/scrollbar.js +0 -34
- package/dist/vef-scroll-area/index.js +0 -13
- package/dist/vef-select/components/option.js +0 -11
- package/dist/vef-select/hooks/use-data-options.js +0 -3
- package/dist/vef-select/hooks/use-field-names.js +0 -3
- package/dist/vef-select/hooks/use-render-label.js +0 -10
- package/dist/vef-select/hooks/use-render-option.js +0 -3
- package/dist/vef-select/hooks/use-select-instance.js +0 -3
- package/dist/vef-select/index.js +0 -3
- package/dist/vef-slider/hooks/use-slider-instance.js +0 -3
- package/dist/vef-slider/index.js +0 -3
- package/dist/vef-sortable-list/components/overlay-item.js +0 -7
- package/dist/vef-sortable-list/components/sortable-item.js +0 -7
- package/dist/vef-sortable-list/hooks/use-merged-items.js +0 -3
- package/dist/vef-sortable-list/index.js +0 -3
- package/dist/vef-space/index.js +0 -3
- package/dist/vef-spin/index.js +0 -3
- package/dist/vef-splitter/index.js +0 -3
- package/dist/vef-splitter-panel/index.js +0 -3
- package/dist/vef-status/index.js +0 -3
- package/dist/vef-table/components/columns/bool.js +0 -3
- package/dist/vef-table/components/columns/code.js +0 -3
- package/dist/vef-table/components/columns/data-dictionary.js +0 -3
- package/dist/vef-table/components/columns/enum.js +0 -3
- package/dist/vef-table/components/columns/file.js +0 -3
- package/dist/vef-table/components/columns/icon.js +0 -3
- package/dist/vef-table/components/columns/id.js +0 -3
- package/dist/vef-table/components/columns/image.js +0 -3
- package/dist/vef-table/components/columns/index.js +0 -3
- package/dist/vef-table/components/columns/markdown.js +0 -3
- package/dist/vef-table/components/columns/number.js +0 -3
- package/dist/vef-table/components/columns/render.js +0 -3
- package/dist/vef-table/components/columns/rich-text.js +0 -3
- package/dist/vef-table/components/columns/text.js +0 -3
- package/dist/vef-table/components/columns-settings.js +0 -54
- package/dist/vef-table/components/operation-buttons.js +0 -12
- package/dist/vef-table/components/settings-icon.js +0 -5
- package/dist/vef-table/components/table-footer.js +0 -19
- package/dist/vef-table/helper.js +0 -3
- package/dist/vef-table/hooks/use-computed-batch-buttons.js +0 -3
- package/dist/vef-table/hooks/use-computed-columns.js +0 -3
- package/dist/vef-table/hooks/use-computed-values.js +0 -3
- package/dist/vef-table/hooks/use-data.js +0 -3
- package/dist/vef-table/hooks/use-default-column-configs.js +0 -3
- package/dist/vef-table/hooks/use-display-value.js +0 -3
- package/dist/vef-table/hooks/use-helper-columns.js +0 -3
- package/dist/vef-table/hooks/use-operation-column-width.js +0 -3
- package/dist/vef-table/hooks/use-pagination-props.js +0 -3
- package/dist/vef-table/hooks/use-row-props.js +0 -3
- package/dist/vef-table/hooks/use-row-selection-config.js +0 -3
- package/dist/vef-table/hooks/use-selected-rows.js +0 -3
- package/dist/vef-table/hooks/use-table-columns.js +0 -3
- package/dist/vef-table/hooks/use-table-context.js +0 -3
- package/dist/vef-table/hooks/use-table-instance.js +0 -3
- package/dist/vef-table/hooks/use-table-summary.js +0 -3
- package/dist/vef-table/hooks/use-table-width.js +0 -3
- package/dist/vef-table/index.js +0 -56
- package/dist/vef-table/store.js +0 -3
- package/dist/vef-tabs/index.js +0 -3
- package/dist/vef-tag/index.js +0 -3
- package/dist/vef-temporal-picker/helper.js +0 -3
- package/dist/vef-temporal-picker/hooks/use-dayjs-value.js +0 -3
- package/dist/vef-temporal-picker/hooks/use-temporal-limit.js +0 -3
- package/dist/vef-temporal-picker/hooks/use-temporal-picker-instance.js +0 -3
- package/dist/vef-temporal-picker/index.js +0 -3
- package/dist/vef-temporal-range-picker/helper.js +0 -3
- package/dist/vef-temporal-range-picker/hooks/use-dayjs-values.js +0 -3
- package/dist/vef-temporal-range-picker/hooks/use-temporal-limit.js +0 -3
- package/dist/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +0 -3
- package/dist/vef-temporal-range-picker/index.js +0 -3
- package/dist/vef-temporal-range-picker/props.js +0 -3
- package/dist/vef-text/index.js +0 -3
- package/dist/vef-textarea/hooks/use-textarea-instance.js +0 -3
- package/dist/vef-textarea/index.js +0 -3
- package/dist/vef-title/index.js +0 -15
- package/dist/vef-tooltip/index.js +0 -3
- package/dist/vef-tree-select/hooks/use-change-handler.js +0 -3
- package/dist/vef-tree-select/hooks/use-data-options.js +0 -3
- package/dist/vef-tree-select/hooks/use-tree-select-instance.js +0 -3
- package/dist/vef-tree-select/index.js +0 -3
- package/dist/vef-virtual-grid/index.js +0 -14
- package/dist/vef-virtual-list/index.js +0 -20
- /package/{dist → types}/index.d.ts +0 -0
- /package/{dist → types}/internal/index.d.ts +0 -0
- /package/{dist → types}/internal/utils.d.ts +0 -0
- /package/{dist → types}/vef-access-denied/access-denied-icon.d.ts +0 -0
- /package/{dist → types}/vef-access-denied/index.d.ts +0 -0
- /package/{dist → types}/vef-access-denied/props.d.ts +0 -0
- /package/{dist → types}/vef-action-buttons/index.d.ts +0 -0
- /package/{dist → types}/vef-action-buttons/props.d.ts +0 -0
- /package/{dist → types}/vef-app/helper.d.ts +0 -0
- /package/{dist → types}/vef-app/index.d.ts +0 -0
- /package/{dist → types}/vef-app/props.d.ts +0 -0
- /package/{dist → types}/vef-auto-sizer/index.d.ts +0 -0
- /package/{dist → types}/vef-auto-sizer/props.d.ts +0 -0
- /package/{dist → types}/vef-avatar/index.d.ts +0 -0
- /package/{dist → types}/vef-avatar/props.d.ts +0 -0
- /package/{dist → types}/vef-avatar-group/index.d.ts +0 -0
- /package/{dist → types}/vef-avatar-group/props.d.ts +0 -0
- /package/{dist → types}/vef-badge/index.d.ts +0 -0
- /package/{dist → types}/vef-badge/props.d.ts +0 -0
- /package/{dist → types}/vef-bool/hooks/use-bool-instance.d.ts +0 -0
- /package/{dist → types}/vef-bool/index.d.ts +0 -0
- /package/{dist → types}/vef-bool/props.d.ts +0 -0
- /package/{dist → types}/vef-button/components/base-button.d.ts +0 -0
- /package/{dist → types}/vef-button/index.d.ts +0 -0
- /package/{dist → types}/vef-button/props.d.ts +0 -0
- /package/{dist → types}/vef-card/index.d.ts +0 -0
- /package/{dist → types}/vef-card/props.d.ts +0 -0
- /package/{dist → types}/vef-card-meta/index.d.ts +0 -0
- /package/{dist → types}/vef-card-meta/props.d.ts +0 -0
- /package/{dist → types}/vef-checkbox/hooks/use-checkbox-instance.d.ts +0 -0
- /package/{dist → types}/vef-checkbox/hooks/use-data-options.d.ts +0 -0
- /package/{dist → types}/vef-checkbox/index.d.ts +0 -0
- /package/{dist → types}/vef-checkbox/props.d.ts +0 -0
- /package/{dist → types}/vef-col/index.d.ts +0 -0
- /package/{dist → types}/vef-col/props.d.ts +0 -0
- /package/{dist → types}/vef-color-picker/index.d.ts +0 -0
- /package/{dist → types}/vef-color-picker/props.d.ts +0 -0
- /package/{dist → types}/vef-compact/index.d.ts +0 -0
- /package/{dist → types}/vef-compact/props.d.ts +0 -0
- /package/{dist → types}/vef-config-provider/hooks/use-ui-config.d.ts +0 -0
- /package/{dist → types}/vef-config-provider/index.d.ts +0 -0
- /package/{dist → types}/vef-config-provider/props.d.ts +0 -0
- /package/{dist → types}/vef-config-provider/reset-style.d.ts +0 -0
- /package/{dist → types}/vef-config-provider/store.d.ts +0 -0
- /package/{dist → types}/vef-container/index.d.ts +0 -0
- /package/{dist → types}/vef-container/props.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-actions.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-filter.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-footer.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-form-modal.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-header.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/components/crud-table.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/hooks/use-action-buttons.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/hooks/use-crud-context.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/hooks/use-crud-schema.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/hooks/use-operation-buttons.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/index.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/props.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/store.d.ts +0 -0
- /package/{dist → types}/vef-crud-page/types.d.ts +0 -0
- /package/{dist → types}/vef-divider/index.d.ts +0 -0
- /package/{dist → types}/vef-divider/props.d.ts +0 -0
- /package/{dist → types}/vef-drawer/components/action-button-wrapper.d.ts +0 -0
- /package/{dist → types}/vef-drawer/components/button-props.d.ts +0 -0
- /package/{dist → types}/vef-drawer/components/cancel-action-button.d.ts +0 -0
- /package/{dist → types}/vef-drawer/components/ok-action-button.d.ts +0 -0
- /package/{dist → types}/vef-drawer/context.d.ts +0 -0
- /package/{dist → types}/vef-drawer/index.d.ts +0 -0
- /package/{dist → types}/vef-drawer/props.d.ts +0 -0
- /package/{dist → types}/vef-dropdown/index.d.ts +0 -0
- /package/{dist → types}/vef-dropdown/props.d.ts +0 -0
- /package/{dist → types}/vef-dynamic-icon/index.d.ts +0 -0
- /package/{dist → types}/vef-dynamic-icon/props.d.ts +0 -0
- /package/{dist → types}/vef-empty/index.d.ts +0 -0
- /package/{dist → types}/vef-empty/props.d.ts +0 -0
- /package/{dist → types}/vef-empty-placeholder/index.d.ts +0 -0
- /package/{dist → types}/vef-empty-placeholder/props.d.ts +0 -0
- /package/{dist → types}/vef-error/error-icon.d.ts +0 -0
- /package/{dist → types}/vef-error/index.d.ts +0 -0
- /package/{dist → types}/vef-error/props.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/action-buttons.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/advanced-filter.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/basic-filter.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/fields/index.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/fields/input-number.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/fields/input.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/fields/props.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/filter-field.d.ts +0 -0
- /package/{dist → types}/vef-filter/components/filter-item.d.ts +0 -0
- /package/{dist → types}/vef-filter/event.d.ts +0 -0
- /package/{dist → types}/vef-filter/helper.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-action-handlers.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-computed-values.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-filter-context.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-filter-initialization.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-filter-instance.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-filter-items.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-filter-values-change.d.ts +0 -0
- /package/{dist → types}/vef-filter/hooks/use-label-config.d.ts +0 -0
- /package/{dist → types}/vef-filter/index.d.ts +0 -0
- /package/{dist → types}/vef-filter/props.d.ts +0 -0
- /package/{dist → types}/vef-filter/store.d.ts +0 -0
- /package/{dist → types}/vef-filter/types.d.ts +0 -0
- /package/{dist → types}/vef-flex/index.d.ts +0 -0
- /package/{dist → types}/vef-flex/props.d.ts +0 -0
- /package/{dist → types}/vef-float-button/index.d.ts +0 -0
- /package/{dist → types}/vef-float-button/props.d.ts +0 -0
- /package/{dist → types}/vef-float-button-group/index.d.ts +0 -0
- /package/{dist → types}/vef-float-button-group/props.d.ts +0 -0
- /package/{dist → types}/vef-form/components/fields/index.d.ts +0 -0
- /package/{dist → types}/vef-form/components/fields/input-number.d.ts +0 -0
- /package/{dist → types}/vef-form/components/fields/input.d.ts +0 -0
- /package/{dist → types}/vef-form/components/fields/props.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-actions.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-content.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-field.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-group.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-hidden-item.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-item.d.ts +0 -0
- /package/{dist → types}/vef-form/components/form-row.d.ts +0 -0
- /package/{dist → types}/vef-form/event.d.ts +0 -0
- /package/{dist → types}/vef-form/helper.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-action-handlers.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-columns-layout.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-computed-values.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-form-context.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-form-initialization.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-form-instance.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-form-values-change.d.ts +0 -0
- /package/{dist → types}/vef-form/hooks/use-label-width.d.ts +0 -0
- /package/{dist → types}/vef-form/index.d.ts +0 -0
- /package/{dist → types}/vef-form/props.d.ts +0 -0
- /package/{dist → types}/vef-form/store.d.ts +0 -0
- /package/{dist → types}/vef-form/types.d.ts +0 -0
- /package/{dist → types}/vef-form/validation-rules.d.ts +0 -0
- /package/{dist → types}/vef-form-drawer/index.d.ts +0 -0
- /package/{dist → types}/vef-form-drawer/props.d.ts +0 -0
- /package/{dist → types}/vef-form-modal/index.d.ts +0 -0
- /package/{dist → types}/vef-form-modal/props.d.ts +0 -0
- /package/{dist → types}/vef-generic-select/index.d.ts +0 -0
- /package/{dist → types}/vef-generic-select/props.d.ts +0 -0
- /package/{dist → types}/vef-grid/index.d.ts +0 -0
- /package/{dist → types}/vef-grid/props.d.ts +0 -0
- /package/{dist → types}/vef-grid-item/index.d.ts +0 -0
- /package/{dist → types}/vef-grid-item/props.d.ts +0 -0
- /package/{dist → types}/vef-icon/index.d.ts +0 -0
- /package/{dist → types}/vef-icon/props.d.ts +0 -0
- /package/{dist → types}/vef-icon-select/index.d.ts +0 -0
- /package/{dist → types}/vef-icon-select/props.d.ts +0 -0
- /package/{dist → types}/vef-input/hooks/use-input-instance.d.ts +0 -0
- /package/{dist → types}/vef-input/index.d.ts +0 -0
- /package/{dist → types}/vef-input/props.d.ts +0 -0
- /package/{dist → types}/vef-input-number/hooks/use-input-number-instance.d.ts +0 -0
- /package/{dist → types}/vef-input-number/index.d.ts +0 -0
- /package/{dist → types}/vef-input-number/props.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/content.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/font-size.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/fullscreen.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/header-action-icons.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/header-content.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/header.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/sider.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/title.d.ts +0 -0
- /package/{dist → types}/vef-layout/components/user-avatar.d.ts +0 -0
- /package/{dist → types}/vef-layout/index.d.ts +0 -0
- /package/{dist → types}/vef-layout/props.d.ts +0 -0
- /package/{dist → types}/vef-layout/store.d.ts +0 -0
- /package/{dist → types}/vef-loading-placeholder/index.d.ts +0 -0
- /package/{dist → types}/vef-loading-placeholder/props.d.ts +0 -0
- /package/{dist → types}/vef-login/index.d.ts +0 -0
- /package/{dist → types}/vef-login/login-icon.d.ts +0 -0
- /package/{dist → types}/vef-login/props.d.ts +0 -0
- /package/{dist → types}/vef-menu/index.d.ts +0 -0
- /package/{dist → types}/vef-menu/props.d.ts +0 -0
- /package/{dist → types}/vef-modal/components/action-button-wrapper.d.ts +0 -0
- /package/{dist → types}/vef-modal/components/button-props.d.ts +0 -0
- /package/{dist → types}/vef-modal/components/cancel-action-button.d.ts +0 -0
- /package/{dist → types}/vef-modal/components/ok-action-button.d.ts +0 -0
- /package/{dist → types}/vef-modal/context.d.ts +0 -0
- /package/{dist → types}/vef-modal/index.d.ts +0 -0
- /package/{dist → types}/vef-modal/props.d.ts +0 -0
- /package/{dist → types}/vef-not-found/index.d.ts +0 -0
- /package/{dist → types}/vef-not-found/not-found-icon.d.ts +0 -0
- /package/{dist → types}/vef-not-found/props.d.ts +0 -0
- /package/{dist → types}/vef-page/index.d.ts +0 -0
- /package/{dist → types}/vef-page/props.d.ts +0 -0
- /package/{dist → types}/vef-pagination/index.d.ts +0 -0
- /package/{dist → types}/vef-pagination/props.d.ts +0 -0
- /package/{dist → types}/vef-paragraph/index.d.ts +0 -0
- /package/{dist → types}/vef-paragraph/props.d.ts +0 -0
- /package/{dist → types}/vef-password/hooks/use-password-instance.d.ts +0 -0
- /package/{dist → types}/vef-password/index.d.ts +0 -0
- /package/{dist → types}/vef-password/props.d.ts +0 -0
- /package/{dist → types}/vef-popconfirm/index.d.ts +0 -0
- /package/{dist → types}/vef-popconfirm/props.d.ts +0 -0
- /package/{dist → types}/vef-popover/index.d.ts +0 -0
- /package/{dist → types}/vef-popover/props.d.ts +0 -0
- /package/{dist → types}/vef-radio/hooks/use-data-options.d.ts +0 -0
- /package/{dist → types}/vef-radio/hooks/use-radio-instance.d.ts +0 -0
- /package/{dist → types}/vef-radio/index.d.ts +0 -0
- /package/{dist → types}/vef-radio/props.d.ts +0 -0
- /package/{dist → types}/vef-rate/hooks/use-rate-instance.d.ts +0 -0
- /package/{dist → types}/vef-rate/index.d.ts +0 -0
- /package/{dist → types}/vef-rate/props.d.ts +0 -0
- /package/{dist → types}/vef-responsive-container/index.d.ts +0 -0
- /package/{dist → types}/vef-responsive-container/props.d.ts +0 -0
- /package/{dist → types}/vef-responsive-item/index.d.ts +0 -0
- /package/{dist → types}/vef-responsive-item/props.d.ts +0 -0
- /package/{dist → types}/vef-ribbon/index.d.ts +0 -0
- /package/{dist → types}/vef-ribbon/props.d.ts +0 -0
- /package/{dist → types}/vef-row/index.d.ts +0 -0
- /package/{dist → types}/vef-row/props.d.ts +0 -0
- /package/{dist → types}/vef-scroll-area/components/scrollbar.d.ts +0 -0
- /package/{dist → types}/vef-scroll-area/index.d.ts +0 -0
- /package/{dist → types}/vef-scroll-area/props.d.ts +0 -0
- /package/{dist → types}/vef-select/components/option.d.ts +0 -0
- /package/{dist → types}/vef-select/hooks/use-data-options.d.ts +0 -0
- /package/{dist → types}/vef-select/hooks/use-field-names.d.ts +0 -0
- /package/{dist → types}/vef-select/hooks/use-render-label.d.ts +0 -0
- /package/{dist → types}/vef-select/hooks/use-render-option.d.ts +0 -0
- /package/{dist → types}/vef-select/hooks/use-select-instance.d.ts +0 -0
- /package/{dist → types}/vef-select/index.d.ts +0 -0
- /package/{dist → types}/vef-select/props.d.ts +0 -0
- /package/{dist → types}/vef-slider/hooks/use-slider-instance.d.ts +0 -0
- /package/{dist → types}/vef-slider/index.d.ts +0 -0
- /package/{dist → types}/vef-slider/props.d.ts +0 -0
- /package/{dist → types}/vef-sortable-list/components/overlay-item.d.ts +0 -0
- /package/{dist → types}/vef-sortable-list/components/sortable-item.d.ts +0 -0
- /package/{dist → types}/vef-sortable-list/hooks/use-merged-items.d.ts +0 -0
- /package/{dist → types}/vef-sortable-list/index.d.ts +0 -0
- /package/{dist → types}/vef-sortable-list/props.d.ts +0 -0
- /package/{dist → types}/vef-space/index.d.ts +0 -0
- /package/{dist → types}/vef-space/props.d.ts +0 -0
- /package/{dist → types}/vef-spin/index.d.ts +0 -0
- /package/{dist → types}/vef-spin/props.d.ts +0 -0
- /package/{dist → types}/vef-splitter/index.d.ts +0 -0
- /package/{dist → types}/vef-splitter/props.d.ts +0 -0
- /package/{dist → types}/vef-splitter-panel/index.d.ts +0 -0
- /package/{dist → types}/vef-splitter-panel/props.d.ts +0 -0
- /package/{dist → types}/vef-status/index.d.ts +0 -0
- /package/{dist → types}/vef-status/props.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/bool.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/code.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/data-dictionary.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/enum.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/file.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/icon.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/id.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/image.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/index.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/markdown.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/number.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/props.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/render.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/rich-text.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns/text.d.ts +0 -0
- /package/{dist → types}/vef-table/components/columns-settings.d.ts +0 -0
- /package/{dist → types}/vef-table/components/operation-buttons.d.ts +0 -0
- /package/{dist → types}/vef-table/components/settings-icon.d.ts +0 -0
- /package/{dist → types}/vef-table/components/table-footer.d.ts +0 -0
- /package/{dist → types}/vef-table/helper.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-computed-batch-buttons.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-computed-columns.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-computed-values.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-data.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-default-column-configs.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-display-value.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-helper-columns.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-operation-column-width.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-pagination-props.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-row-props.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-row-selection-config.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-selected-rows.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-table-columns.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-table-context.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-table-instance.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-table-summary.d.ts +0 -0
- /package/{dist → types}/vef-table/hooks/use-table-width.d.ts +0 -0
- /package/{dist → types}/vef-table/index.d.ts +0 -0
- /package/{dist → types}/vef-table/props.d.ts +0 -0
- /package/{dist → types}/vef-table/store.d.ts +0 -0
- /package/{dist → types}/vef-table/types.d.ts +0 -0
- /package/{dist → types}/vef-tabs/index.d.ts +0 -0
- /package/{dist → types}/vef-tabs/props.d.ts +0 -0
- /package/{dist → types}/vef-tag/index.d.ts +0 -0
- /package/{dist → types}/vef-tag/props.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/helper.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/hooks/use-dayjs-value.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/hooks/use-temporal-limit.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/hooks/use-temporal-picker-instance.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/index.d.ts +0 -0
- /package/{dist → types}/vef-temporal-picker/props.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/helper.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/hooks/use-dayjs-values.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/hooks/use-temporal-limit.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/index.d.ts +0 -0
- /package/{dist → types}/vef-temporal-range-picker/props.d.ts +0 -0
- /package/{dist → types}/vef-text/index.d.ts +0 -0
- /package/{dist → types}/vef-text/props.d.ts +0 -0
- /package/{dist → types}/vef-textarea/hooks/use-textarea-instance.d.ts +0 -0
- /package/{dist → types}/vef-textarea/index.d.ts +0 -0
- /package/{dist → types}/vef-textarea/props.d.ts +0 -0
- /package/{dist → types}/vef-title/index.d.ts +0 -0
- /package/{dist → types}/vef-title/props.d.ts +0 -0
- /package/{dist → types}/vef-tooltip/index.d.ts +0 -0
- /package/{dist → types}/vef-tooltip/props.d.ts +0 -0
- /package/{dist → types}/vef-tree-select/hooks/use-change-handler.d.ts +0 -0
- /package/{dist → types}/vef-tree-select/hooks/use-data-options.d.ts +0 -0
- /package/{dist → types}/vef-tree-select/hooks/use-tree-select-instance.d.ts +0 -0
- /package/{dist → types}/vef-tree-select/index.d.ts +0 -0
- /package/{dist → types}/vef-tree-select/props.d.ts +0 -0
- /package/{dist → types}/vef-virtual-grid/index.d.ts +0 -0
- /package/{dist → types}/vef-virtual-grid/props.d.ts +0 -0
- /package/{dist → types}/vef-virtual-list/index.d.ts +0 -0
- /package/{dist → types}/vef-virtual-list/props.d.ts +0 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o,Fragment as r}from"@emotion/react/jsx-runtime";import{invokeMaybeAsyncFn as e}from"@vef-framework/shared";import{useState as i,useMemo as t,cloneElement as n}from"react";import{useModalContextSelector as a}from"../context.js";const s=({children:s})=>{const[l,d]=a((o=>[o.isDisabled,o.setIsDisabled])),[m,c]=i(!1),{disabled:f,loading:p,onClick:b}=s.props,k=t((()=>{if(b)return async o=>{await e(b,{beforeInvoke:()=>{c(!0),d(!0)},onFinally:()=>{c(!1),d(!1)}},o)}}),[b,d]),u=n(s,{disabled:l||f,loading:m||p,onClick:k});return o(r,{children:u})};export{s as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import o from"../../vef-button/index.js";import r from"./action-button-wrapper.js";const e=({text:e,onClick:i})=>t(r,{children:t(o,{color:"default",variant:"text",onClick:i,children:e})});export{e as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o}from"@emotion/react/jsx-runtime";import{CheckIcon as r}from"lucide-react";import i from"../../vef-button/index.js";import t from"../../vef-icon/index.js";import e from"./action-button-wrapper.js";const n=({text:n,onClick:c})=>o(e,{children:o(i,{color:"primary",icon:o(t,{children:o(r,{})}),onClick:c,children:n})});export{n as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{createSelectableContext as e,noop as s}from"@vef-framework/shared";const{ContextProvider:o,useContext:t,useContextSelector:r}=e({isDisabled:!1,setIsDisabled:s,isFullyOpened:!1,isFullyClosed:!1});export{o as ModalContextProvider,t as useModalContext,r as useModalContextSelector};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o,jsxs as t,Fragment as e}from"@emotion/react/jsx-runtime";import{css as n}from"@emotion/react";import{useWindowSize as r,useSize as l}from"@vef-framework/hooks";import{isFunction as s}from"@vef-framework/shared";import{Modal as i}from"antd";import{useDragControls as a,motion as c}from"motion/react";import{useCallback as d,useState as m,useMemo as f,useEffect as p,memo as u}from"react";import h from"./components/cancel-action-button.js";import C from"./components/ok-action-button.js";import{ModalContextProvider as k}from"./context.js";export{default as VefModalActionButtonWrapper}from"./components/action-button-wrapper.js";const g=n`
|
|
3
|
+
cursor: move;
|
|
4
|
+
user-select: none;
|
|
5
|
+
`,w=u((({title:n,open:u,closable:w=!0,closeOnEscPress:b=!0,closeOnMaskClick:v=!1,destroyOnClose:O=!1,showCancelButton:x=!0,cancelButtonText:y="取消",okButtonText:F="提交",actions:B,width:j,loading:A=!1,cancelOnClose:E=!0,onClose:T,onOk:D,onCancel:L,onAfterOpen:M,onAfterClose:P,children:I})=>{const z=a(),R=d((o=>{o.stopPropagation(),z.start(o)}),[z]),{width:V,height:W}=r(),[q,G]=m(null),H=l(q),J=f((()=>{if(!H)return{left:0,top:0,right:0,bottom:0};const{width:o,height:t}=H;return{left:-(V/2-o/2),top:-(W/2-t/2),right:V/2-o/2,bottom:W/2-t/2}}),[H,W,V]),K=f((()=>"small"===j?378:"medium"===j?736:"narrow"===j?"25vw":"half"===j?"50vw":"wide"===j?"75vw":"full"===j?"100vw":j),[j]),N=d((t=>o(c.div,{ref:o=>G(o),drag:!0,dragConstraints:J,dragControls:z,dragElastic:.3,dragListener:!1,dragMomentum:!1,children:t})),[J,z]),Q=f((()=>o("div",{css:g,onPointerDown:R,children:n})),[n,R]),[S,U]=m(!1),[X,Y]=m({isFullyOpened:!1,isFullyClosed:!1}),Z=f((()=>({isDisabled:S,setIsDisabled:U,...X})),[S,U,X]),$=A||S;p((()=>{u&&X.isFullyClosed&&Y((o=>({...o,isFullyClosed:!1})))}),[u]);const _=d((o=>{if(!$){if(Y((o=>({...o,isFullyOpened:!1}))),E)return T?.(),void L?.();o?L?.():T?.()}}),[$,E,T,L]),oo=f((()=>{const n=o(h,{text:y,onClick:()=>_(!0)},"cancelActionButton"),r=o(C,{text:F,onClick:D},"okActionButton");return s(B)?B([n,r]):B||(x?t(e,{children:[n,r]}):r)}),[y,F,D,B,x,_]),to=d((({type:o,target:t})=>{let e=!0;if("click"===o){let o=t.parentElement;for(;o;){if(o.classList.contains("vef-modal-content")){e=!0;break}if(o.classList.contains("vef-modal-footer")){e=!1;break}o=o.parentElement}}_(!e)}),[_]),eo=d((o=>{const t=s(M),e=s(P);o?(t&&M(),Y((o=>({...o,isFullyOpened:!0})))):(e&&P(),Y((o=>({...o,isFullyClosed:!0}))))}),[M,P]);return o(k,{value:Z,children:o(i,{centered:!0,afterOpenChange:eo,cancelText:y,closable:w,destroyOnClose:O,footer:oo,keyboard:b,loading:A,maskClosable:v,modalRender:N,okText:F,open:u,title:Q,width:K,zIndex:10,onCancel:to,onOk:D,children:I})})}));export{w as default};
|
|
6
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o,jsxs as i}from"@emotion/react/jsx-runtime";import{ArrowLeftOutlined as e}from"@ant-design/icons";import{css as n}from"@emotion/react";import{styles as r,themeVariables as t}from"@vef-framework/shared";import a from"../vef-button/index.js";import c from"./not-found-icon.js";const s=n`
|
|
3
|
+
height: 100%;
|
|
4
|
+
${r.flexCenter}
|
|
5
|
+
`,f=n`
|
|
6
|
+
width: 40%;
|
|
7
|
+
position: relative;
|
|
8
|
+
top: -60px;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
row-gap: ${t.margin};
|
|
14
|
+
|
|
15
|
+
> svg {
|
|
16
|
+
width: 70%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
> span {
|
|
20
|
+
font-size: ${t.fontSizeLg};
|
|
21
|
+
font-weight: 500;
|
|
22
|
+
color: ${t.colorTextTertiary};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
> span.vef-not-found-uri {
|
|
26
|
+
padding-left: ${t.paddingSm};
|
|
27
|
+
color: ${t.colorWarningText};
|
|
28
|
+
}
|
|
29
|
+
`,l=({uri:n,title:r="抱歉,您访问的页面不存在~~~",onNavigateHome:t})=>o("div",{css:s,children:i("div",{css:f,children:[o(c,{}),o("span",{children:r}),n&&i("span",{className:"vef-not-found-uri",children:["路径:",n]}),o(a,{color:"primary",icon:o(e,{}),size:"large",onClick:t,children:"回到首页"})]})});export{l as default};
|
|
30
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsxs as o,jsx as t}from"@emotion/react/jsx-runtime";import{memo as n}from"react";const d=n((function(n){return o("svg",{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",...n,children:[o("defs",{children:[o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__a",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__b",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.472,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__c",spreadMethod:"pad",x1:0,x2:1,y1:-.031,y2:-.031,children:[t("stop",{offset:0,stopColor:"#fff5de"}),t("stop",{offset:1,stopColor:"#fbd2ac"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__d",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__e",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__f",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__g",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.476,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__h",spreadMethod:"pad",x1:-.136,x2:.5,y1:.5,y2:.434,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__i",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[t("stop",{offset:.032,stopColor:"#afdef9"}),t("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__j",spreadMethod:"pad",x1:.059,x2:.6,y1:.609,y2:.371,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__k",spreadMethod:"pad",x1:.445,x2:.583,y1:-.065,y2:0,children:[t("stop",{offset:.032,stopColor:"#afdef9"}),t("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__l",spreadMethod:"pad",x1:.284,x2:.5,y1:.87,y2:.305,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__m",spreadMethod:"pad",x1:.431,x2:.603,y1:-.065,y2:0,children:[t("stop",{offset:.032,stopColor:"#afdef9"}),t("stop",{offset:1,stopColor:"#7cc9f9"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__n",spreadMethod:"pad",x1:.111,x2:.5,y1:.87,y2:.305,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__o",spreadMethod:"pad",x1:.111,x2:.5,y1:.87,y2:.305,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__p",spreadMethod:"pad",x1:.123,x2:.5,y1:.87,y2:.305,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__q",spreadMethod:"pad",x1:.5,x2:.504,y1:-.192,y2:.87,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__r",spreadMethod:"pad",x1:0,x2:1.356,y1:.5,y2:.565,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__s",spreadMethod:"pad",x1:0,x2:.75,y1:.5,y2:.529,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__t",spreadMethod:"pad",x1:-.184,x2:1.099,y1:.498,y2:.509,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__u",spreadMethod:"pad",x1:.38,x2:.705,y1:.5,y2:.796,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__v",spreadMethod:"pad",x1:0,x2:1.356,y1:.5,y2:.796,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__w",spreadMethod:"pad",x1:-.449,x2:1.606,y1:.5,y2:.5,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__x",spreadMethod:"pad",x1:0,x2:1.356,y1:.5,y2:.796,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__y",spreadMethod:"pad",x1:.802,x2:.402,y1:.781,y2:.012,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__z",spreadMethod:"pad",x1:.17,x2:.731,y1:.776,y2:.273,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__A",spreadMethod:"pad",x1:0,x2:.85,y1:.669,y2:.361,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__B",spreadMethod:"pad",x1:0,x2:.85,y1:.644,y2:.382,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__C",spreadMethod:"pad",x1:0,x2:.85,y1:.639,y2:.385,children:[t("stop",{offset:0,stopColor:"#98d6fa"}),t("stop",{offset:1,stopColor:"#47b0f1"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__D",spreadMethod:"pad",x1:1,x2:0,y1:-.118,y2:-.118,children:[t("stop",{offset:0,stopColor:"#f5dda7"}),t("stop",{offset:1,stopColor:"#fa9a41"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__E",spreadMethod:"pad",x1:.863,x2:0,y1:-.028,y2:-.028,children:[t("stop",{offset:0,stopColor:"#923629"}),t("stop",{offset:.3,stopColor:"#57352c"}),t("stop",{offset:.5,stopColor:"#42352c"}),t("stop",{offset:.7,stopColor:"#2c2422"}),t("stop",{offset:1,stopColor:"#1d181c"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__F",spreadMethod:"pad",x1:.863,x2:0,y1:-.028,y2:-.028,children:[t("stop",{offset:0,stopColor:"#923629"}),t("stop",{offset:.3,stopColor:"#57352c"}),t("stop",{offset:.5,stopColor:"#42352c"}),t("stop",{offset:.7,stopColor:"#2c2422"}),t("stop",{offset:1,stopColor:"#1d181c"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__G",spreadMethod:"pad",x1:.317,x2:.774,y1:.907,y2:.5,children:[t("stop",{offset:0,stopColor:"#ffb859"}),t("stop",{offset:1,stopColor:"#f97b61"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__H",spreadMethod:"pad",x1:.339,x2:.817,y1:.23,y2:.592,children:[t("stop",{offset:0,stopColor:"#ffb859"}),t("stop",{offset:1,stopColor:"#f97b61"})]}),o("linearGradient",{gradientUnits:"objectBoundingBox",id:"not-found-icon_svg__I",spreadMethod:"pad",x1:.44,x2:.579,y1:.572,y2:.445,children:[t("stop",{offset:0,stopColor:"#ffb859"}),t("stop",{offset:1,stopColor:"#f97b61"})]})]}),t("path",{d:"M0 0h1024v1024H0Z",fill:"none"}),t("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}),t("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(#not-found-icon_svg__a)",fillOpacity:.1}),t("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(#not-found-icon_svg__b)",fillOpacity:.1}),t("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(#not-found-icon_svg__c)"}),t("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(#not-found-icon_svg__d)"}),t("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(#not-found-icon_svg__e)"}),t("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(#not-found-icon_svg__f)"}),t("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(#not-found-icon_svg__g)"}),t("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(#not-found-icon_svg__h)"}),t("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(#not-found-icon_svg__i)"}),t("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(#not-found-icon_svg__j)"}),t("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(#not-found-icon_svg__k)"}),t("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(#not-found-icon_svg__l)"}),t("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(#not-found-icon_svg__m)"}),t("path",{d:"m744.8 605.1-15.9-59.2 19.7-5.3-8.2-30.6-19.7 5.3-39.3-146.8-32.4 8.7L688.3 524l-48 12.7-2.5.1-4.3-.9-2.6-1.5-1.9-1.7-1.4-2-.9-2.3-1.2-7.5-14.8-133.4-32.1 8.6 15.6 145 1.2 6.3 2.8 7.7 1.8 3.1 3.9 4.7 3.7 3.1 3.7 2.4 3.6 1.8 3.7 1.2 3.8.8 3.8.2 3.9-.3 4.1-.9 62.3-16.7 15.9 59.3z",fill:"url(#not-found-icon_svg__n)"}),t("path",{d:"m329.5 604.3 9.3-52.5 17.4 3.1 4.8-27-17.4-3.1 22.9-129.9-28.7-5.1-22.9 129.9-40.1-7-3.1-.9-2.4-1.2-1.9-1.6-1.5-2.1-.9-2.1-.4-2.1.2-2.1 1.8-6.3 37.3-110.5-28.4-5-40.9 119.9-1.4 5.4-.6 4.6v4l.6 3.6.9 3.1 2.1 4.2 2.4 3.6 2.6 3 2.9 2.4 3.3 2 3.5 1.5 4 1 55.2 9.7-9.2 52.4z",fill:"url(#not-found-icon_svg__o)"}),t("path",{d:"m479.2 571.9 3.3.6 3.9.1 4.7-.6 3.8-.8 3.4-1.2 3.1-1.5 3.1-2.2 2.8-2.7 2.7-3.2 2.3-4 2.1-4.6 1.7-5.6 31.5-117.3.9-4.4.4-4.3v-4.3l-.6-4.1-1-4.2-1.6-4.1-1.7-3.1-2-2.8-2.6-2.6-3-2.3-3.6-2.1-4.2-1.8-4.9-1.6-47.2-12.7-4.1-.8-3.9-.2-3.9.3-3.9.9-3.8 1.4-3.9 2-3.6 2.6-3.1 2.9-2.8 3.4-2.4 4-2 4.4-1.7 5.2-31.3 116.8-1.1 5.1-.4 4.7.1 4.4.8 4.1 1.2 3.8 1.8 3.6 2.6 3.7 2.9 3.2 3.3 2.8 3.8 2.4 4.2 2 4.7 1.6zm-2.6-26.1-35.3-9.4-2.9-1-2.2-1.3-1.8-1.5-1.2-1.7-.8-2-.4-2.3.1-2.8.6-3.3 30.4-113.3.7-1.9 1-1.7 1.4-1.4 1.7-1.1 3.6-1 4.8.5 38.8 10.4 2.8 1.1 2.1 1.3 1.5 1.6 1 1.8.5 2.3v2.8l-.6 3.3-31 114.9-1.2 2.6-1.3 1.7-1.3 1.2-1.8.8-2.3.4-3-.2z",fill:"url(#not-found-icon_svg__p)"}),t("path",{d:"m872.4 186.5-148.3 96M872.5 226l95.5 56.5",fill:"none",stroke:"#47b0f1"}),t("path",{d:"M873 282h-48v518h48Z",fill:"url(#not-found-icon_svg__q)"}),t("path",{d:"M899 753H799v47h100Z",fill:"url(#not-found-icon_svg__r)"}),t("path",{d:"M911 770H787v30h124Z",fill:"url(#not-found-icon_svg__s)"}),t("path",{d:"M968 282H680v26h288Z",fill:"url(#not-found-icon_svg__t)"}),t("path",{d:"m873 184-48 98h48Z",fill:"url(#not-found-icon_svg__u)"}),t("path",{d:"M922.5 306v246",fill:"none",stroke:"#47b0f1"}),t("path",{d:"m913 561 .3 2.4.9 2.1 1.4 1.9 1.9 1.4 2.1.9 2.4.3 2.4-.3 2.1-.9 1.9-1.4 1.4-1.9.9-2.1.3-2.4-.3-2.4-.9-2.1-1.4-1.9-1.9-1.4-2.1-.9-2.4-.3-2.4.3-2.1.9-1.9 1.4-1.4 1.9-.9 2.1z",fill:"url(#not-found-icon_svg__v)"}),t("path",{d:"m667 277 3.3.3 3 .8 2.8 1.4 2.5 1.7 2.2 2.2 1.7 2.5 1.4 2.8.8 3 .3 3.3-.3 3.3-.8 3-1.4 2.8-1.7 2.5-2.2 2.2-2.5 1.7-2.8 1.4-3 .8-3.3.3-3.3-.3-3-.8-2.8-1.4-2.5-1.7-2.2-2.2-1.7-2.5-1.4-2.8-.8-3-.3-3.3.3-3.3.8-3 1.4-2.8 1.7-2.5 2.2-2.2 2.5-1.7 2.8-1.4 3-.8zm0 10-2.1.3-1.9.8-1.7 1.2-1.2 1.7-.8 1.9-.3 2.1.3 2.1.8 1.9 1.2 1.7 1.7 1.2 1.9.8 2.1.3 2.1-.3 1.9-.8 1.7-1.2 1.2-1.7.8-1.9.3-2.1-.3-2.1-.8-1.9-1.2-1.7-1.7-1.2-1.9-.8z",fill:"url(#not-found-icon_svg__w)"}),t("path",{d:"m666.4 306 .2 79",fill:"none",stroke:"#47b0f1"}),t("path",{d:"m658 385 .3 2.4.9 2.1 1.4 1.9 1.9 1.4 2.1.9 2.4.3 2.4-.3 2.1-.9 1.9-1.4 1.4-1.9.9-2.1.3-2.4-.3-2.4-.9-2.1-1.4-1.9-1.9-1.4-2.1-.9-2.4-.3-2.4.3-2.1.9-1.9 1.4-1.4 1.9-.9 2.1z",fill:"url(#not-found-icon_svg__x)"}),t("path",{d:"m909.4 796.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(#not-found-icon_svg__y)"}),t("path",{d:"m921.1 796.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(#not-found-icon_svg__z)"}),t("path",{d:"m948.1 797-.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(#not-found-icon_svg__A)"}),t("path",{d:"m898.4 811 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(#not-found-icon_svg__B)"}),t("path",{d:"m931.6 811 7.3-.1 3.2-.3 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(#not-found-icon_svg__C)"}),t("path",{d:"m543.1 868.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.6 3.3 2.2 3.2 2.2 2.4 4.4 3.7 8.5 3.9 5.3 1.9 14.5 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(#not-found-icon_svg__D)",fillOpacity:.4}),t("path",{d:"m686.3 716.6.5-2.7 1.1-3 3.4-5.8 4.1-5 7.7-6.5 5.3-5.9 2.4-3.7 2-4.3.9-2.9.5-3.1.1-3.2-1-4.8-2.7-5.1-2.4-3-2.5-2.4-2.6-1.9-2.7-1.4-2.9-1-2.9-.5-3-.2-2.9.3-5.8 1.7-5.3 3.2-4.6 4.6-2 2.7-5.6 11.5-5.1 12.4-1 4.1v3.5l.5 1.2 1.9 2.3.8 1.9.4 2.2v3.6l-.6 4.2-1.1 4.2-1.3 4.2-4.5 11.5v.5l.6.3 2-.3 4.7-1.3 9.3-3.6 16.3-7z",fill:"#ebb0b0"}),t("path",{d:"m704.1 644.6-2.9-2.3-2.7-1.6-2.3-.9-2.5-.5h-2.3l-2.1.4-4 1.9-4.1 3.8-2 2.8-2.8 5.8-1.5 5.3-.1 3.1 2 7.7-1.9 3.3-4.2 5.3 1.6 3.4 2.6-1.8h1l.8.4.9 2.1.1 1.5-.3 1.5-.8 1.4-1.2 1.2-1.8.9-3.7.9-.7.1v-.3l-.2 5.2.8 2.7 11 8.8 4.1 2.1 2.3.2 9.4-3.5 5.7-2.9 3.1-2.2 3.5-3.1 2.1-2.4 1.7-2.8 1.5-3.1 1.9-6.6.7-8.7-.2-4.8-.8-4.4-1.1-3.4-2.8-5.7-2.6-4.4-2.7-3.7z",fill:"#131322"}),t("path",{d:"M752.3 846.6v2.6l.5 2 .9 1.5 1.2 1.3 1.7.9 2.2.7 2.9.2 3.8-.2 4.9-.8 3.2-1.2 4.3-2.5 1.6-1.6.9-1.6.5-1.4V845l-.4-1.5-1-1.3-1.3-1.1-1.9-1-2.7-.8-7.7-1.2 1.2.6 3-3 1.2-1.8.3-1-.3-.6-.8-.3h-2l-2.6.6-2.6 1.2-2.6 1.9-2.7 2.7-2.8 3.6zM670.4 919.8l1.8-2.3 1.8-1.5 1.8-.9 2-.3 2.2.2 2.5.9 2.8 1.7 3.4 2.8 3.9 4 2.2 3.2 1.4 2.8.9 2.5.4 2.5-.2 2.1-.5 1.7-1 1.4-1.4 1-1.8.6-2 .1-2.4-.4-2.9-1-6.6-3.1-1.4-1 1.4.3.8 4.8v2.4l-.4 1.1-.7.4-1-.3-1.9-1.3-1.6-1.9-1.5-2.4-1.1-2.8-.8-3.3-.5-4v-4.6z",fill:"#efba9e"}),t("path",{d:"m655.8 805.3-29.6-62-1.5-2.3-2.1-2.3-2.5-2.1-6-3.6-6.1-2.4-4.7-.9-4 .6-3.1 1.1-6 3.5-5.3 4.4-14.9 15.5-5.1 6.3-5.7 7.8-7 10.5-9.4 14.4 2.3 5.7 6.9 8.2 1.6.9 1.3-.1 2.3-.9 37.5-23.7 6.4 24.5 5 16.5 3.7 9.2 1.4 1.6 1.5.6 1.6.1 3.2-1.3 2.9-2.1 33.4-29.7",fill:"url(#not-found-icon_svg__E)"}),t("path",{d:"m511.1 873.9 2 7.8-.2 2.9-1 1.4-1.7 1.6-4.5 2.5-1.6.5h-2.8l-15.7-4.4-7.6-2.7-7.9-3.8-2.1-1.4-1.6-1.6-.8-1.4-.2-1.7.4-1.4 1.1-1.4 1.5-1.1 2-.8 5.3-1.1 6.7.3 23.1 4.1 2.5.5z",fill:"#333"}),t("path",{d:"m623.9 837.6-7.8-8.1-6.9-8-18.9-23.8-6.4-7.7-9.4-9.8-5.2-4.8-10.2-8.2-3.8-2.3-2.7-1.3-3.2-1-6.3-1.3-2.5.1-5.2 1.3-4.9 2-2 1.3-2.4 2.1-4.9 5.8-4.6 6.8-5.2 9.7-7.6 25.3-2.7 10.8-2.3 12.4-1.9 15.7-1.7 20.8.1 2 .7 1.9 1 1.8 3 2.9 1.8 1 2.2.5 2.1-.1 2-.6 3.7-2.6 1.7-1.8 2.1-3.1 6.2-11 16.4-24.5 4.8-9.2 1.2-3.7 15.1 26.4 16.4 26.3 4 5.3 7.3 7.4 6.5 5 3.7 2.4 4 2.1 4.2 1.7 4.6 1.4 4.6.9 5 .3 5.2-.4 3.9-.6 4-1.2 4.2-1.6 10-5.1 7.5-4.8 2.6-2.4 2.2-2.5 2.1-3 4-7.4.1-1.3-.5-2.5-2.3-6.3-3.4-6.9-3.2-5.8-2-3-3.1-2.7-4.2-2.9-5.8-3.1-7.4-3.4z",fill:"url(#not-found-icon_svg__F)"}),t("path",{d:"m672 727.3 1.9-2.4 2.2-2.1 2.5-1.7 2.8-1.4 2.9-.9 3.2-.5 3.1-.2 6.2 1 2.8 1.1 2.6 1.4 2.2 1.9 3 3.3 2.7 3.8 4.8 8.1 5.2 8.7 5 9.3 2.2 4.8 8.9 22.7 3.9 8.7 8.4 17 9.1 17.2 1.9 4.3 1.4 4.3.9 6v3.1l-.6 2.9-.9 2.2-1.3 1.5-1.7 1.1-2 .7-2.3.1-5.1-.8-2.9-1.1-2.4-1.4-4.2-3.8-16.8-18.4-7.4-8.9-7.1-9.2-6.5-9.2-5.9-9.4-4.1-7.2-3.7-7.5-3.4-7.7-3-7.9-2.6-8.1-2.3-8.5-1.9-9-1.5-9.5",fill:"url(#not-found-icon_svg__G)"}),t("path",{d:"m647.4 724.3 4.7-4.1 4.5-3.2 4.5-2.5 4.5-1.8 4.4-1.2 4.4-.5 4.5.1 4.6.6 4.7 1.4 4.9 2 5.1 2.8 2.3 1.8 2.2 2.3 2.1 2.9 2 3.7 2.1 5 1.9 5.9 1.6 6.9 1.1 7.1 1.3 15.8-.1 16.9-.6 8.8-2.3 17.5-1.7 8.7-2.1 8.6-2.4 8.1-2.8 7.8-3.2 7.5-3.6 6.9-3.9 6.1-3.3 4.4-3.4 3.8-3.7 3.3-3.7 2.8-5.5 3.3-5.3 2.6-5 1.9-4.8 1.2-5.1.9-4.8.3-4.6-.1-4.4-.5-4.4-1-8-2.9-3.8-1.9-4.7-3.1-4.3-3.3-3.8-3.7-3.4-4-2.8-4.1-2.3-4-1.8-4.4-1.1-4-.5-3.8-.1-9.8.5-9.7 1-9.5 1.6-9.3 2.1-9.2 2.6-9 3.2-9 3.7-8.8 4.3-8.7 4.9-8.6 5.6-8.6 6.1-8.5 6.8-8.5z",fill:"url(#not-found-icon_svg__H)"}),t("path",{d:"m639 759.8 2.6-6.3 2.5-4.9 2.5-3.6 2.4-2.7 2.4-1.9 2.4-1.3 2.4-.6 2.5-.1 2.6.5 2.9 1.2 3.1 1.9 3.5 2.8 3.9 4 4.4 5.3 1.4 4.6 1.5 7.1 1.3 10.5 1.2 14.7 1 19.8.5 26.2v33.8l-.8 42.6-2.2 4.9-2.1 3.6-2 2.4-2 1.4-1.8.9-1.9.2-2-.4-2.2-1-2.4-1.8-2.8-2.9-3.1-4.3-5.2-16-4.5-15.6-3.9-15.2-3.1-14.8-2.5-14.5-1.9-14.1-1.3-13.9-.7-13.5-.1-13.3.5-13z",fill:"url(#not-found-icon_svg__I)"})]})}));export{d as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsxs as e,Fragment as o,jsx as t}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{themeVariables as a}from"@vef-framework/shared";import i from"clsx";import{AnimatePresence as n,motion as l}from"motion/react";import d from"../vef-scroll-area/index.js";import c from"../vef-title/index.js";const f=r`
|
|
3
|
+
height: 100%;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
background-color: ${a.colorBgLayout};
|
|
7
|
+
|
|
8
|
+
.vef-page-header {
|
|
9
|
+
flex: none;
|
|
10
|
+
background-color: ${a.colorBgContainer};
|
|
11
|
+
padding: ${a.paddingSm} ${a.paddingLg};
|
|
12
|
+
border-bottom: ${a.lineWidth} ${a.lineType} ${a.colorBorderSecondary};
|
|
13
|
+
|
|
14
|
+
&.vef-page-header-default {
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
|
|
18
|
+
> *:first-of-type {
|
|
19
|
+
flex: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
> *:last-of-type {
|
|
23
|
+
flex: auto;
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: flex-end;
|
|
26
|
+
align-items: center;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.vef-typography {
|
|
31
|
+
font-weight: normal;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.vef-page-body {
|
|
36
|
+
flex: 1;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.vef-page-content {
|
|
40
|
+
margin: ${a.marginSm};
|
|
41
|
+
|
|
42
|
+
&.vef-page-content-footer-padding {
|
|
43
|
+
padding-bottom: calc(${a.controlHeight} * 2);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.vef-page-footer {
|
|
48
|
+
position: absolute;
|
|
49
|
+
bottom: 0;
|
|
50
|
+
left: 0;
|
|
51
|
+
right: 0;
|
|
52
|
+
z-index: 9;
|
|
53
|
+
border-top: ${a.lineWidth} ${a.lineType} ${a.colorBorderSecondary};
|
|
54
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
55
|
+
backdrop-filter: blur(8px);
|
|
56
|
+
height: calc(${a.controlHeight} * 2);
|
|
57
|
+
}
|
|
58
|
+
`,p=({title:r,actions:a,header:p,footer:g,scrollable:s=!1,children:m})=>{const h=p||e(o,{children:[t(c,{noPaddingBottom:!0,showLeftBar:!0,level:5,children:r}),t("div",{children:a})]});return e("div",{css:f,children:[t("div",{className:i("vef-page-header",{"vef-page-header-default":!toolbar}),children:h}),s?e(d,{className:"vef-page-body",scrollDirection:"both",children:[t("div",{className:i("vef-page-content",{"vef-page-content-footer-padding":!!g}),children:m}),t(n,{children:g&&t(l.div,{className:"vef-page-footer",animate:{opacity:1,y:0},exit:{opacity:0,y:60},initial:{opacity:0,y:60},transition:{duration:.2,ease:"easeInOut"},children:g})})]}):t("div",{className:"vef-page-body vef-page-content",children:m})]})};export{p as default};
|
|
59
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsxs as e,Fragment as t,jsx as a}from"@emotion/react/jsx-runtime";import{Pagination as o}from"antd";import{memo as i}from"react";import r from"../vef-text/index.js";import{defaultPageSizeOptions as n}from"./props.js";function m(o){return e(t,{children:["共"," ",a(r,{bold:!0,children:o})," ","条"]})}const l={listHeight:300},p=i((({defaultPageNumber:e,defaultPageSize:t,pageNumber:i,pageSize:r,total:p,size:u,pageSizeOptions:s=n,allowChangePageSize:g=!0,showTotal:d=!0,compact:f,allowQuickJump:c,onChange:h,...z})=>a(o,{current:i,defaultCurrent:e,defaultPageSize:t,pageSize:r,pageSizeOptions:s,showQuickJumper:c,showSizeChanger:g?l:g,showTotal:d?m:void 0,simple:f,size:"medium"===u?"default":u,total:p,onChange:h,...z})));p.displayName="VefPagination";export{p as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
const o=[5,10,15,20,30,40,50,100];export{o as defaultPageSizeOptions};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{useColorTokens as o}from"@vef-framework/hooks";import{isFunction as r}from"@vef-framework/shared";import{Typography as t}from"antd";import{useMemo as a}from"react";const{Paragraph:n}=t,p=({variant:t,color:p,bold:d,ellipsis:i,ellipsisRows:s=2,expandable:l,defaultExpanded:f,expanded:m,copyable:c,copiedText:x,onCopy:u,onExpand:y,...b})=>{const h=a((()=>{if(i)return{rows:s,expandable:l?"collapsible":void 0,defaultExpanded:f,expanded:m,onExpand:r(y)?(e,{expanded:o})=>{y(o)}:void 0}}),[l,f,i,s,m,y]),v=o(),g=a((()=>{const e={};return"strikethrough"===t?e.delete=!0:t&&(e[t]=!0),"secondary"===p?e.type="secondary":p&&(e.css={color:v.get(p)}),d&&(e.strong=!0),e}),[d,p,v,t]),k=a((()=>{if(c)return{format:"text/plain",text:x,onCopy:u}}),[c,x,u]);return e(n,{copyable:k,ellipsis:h,...g,...b})};export{p as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useRef as r,useImperativeHandle as t}from"react";function u(u){const c=r(null);return t(u,(()=>({blur:()=>c.current?.blur(),focus:()=>c.current?.focus({preventScroll:!0})}))),c}export{u as usePasswordInstance};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o}from"@emotion/react/jsx-runtime";import{isFunction as e}from"@vef-framework/shared";import{Input as r}from"antd";import{forwardRef as t,useMemo as a}from"react";import"../internal/index.js";import{usePasswordInstance as n}from"./hooks/use-password-instance.js";import{convertBasicSizeToUiSize as s}from"../internal/utils.js";const{Password:u}=r;function l(o){return""===o?null:o}const i=t((({defaultValue:r,value:t,size:i,clearable:m,showCount:f,onChange:d,onEnterKeyPress:v,onBlur:c,onFocus:p,...g},h)=>{const w=a((()=>({onChange:e(d)?o=>d(l(o.target.value)):void 0,onPressEnter:e(v)?o=>v(l(o.target.value)):void 0,onBlur:e(c)?o=>c(l(o.target.value)):void 0,onFocus:e(p)?o=>p(l(o.target.value)):void 0})),[d,v,c,p]),C=n(h);return o(u,{ref:C,allowClear:m,defaultValue:r,showCount:f,size:s(i),value:t,...g,...w})}));export{i as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{infoIcon as o,defaultMessageTitle as n}from"@vef-framework/shared";import{Popconfirm as t}from"antd";import{CheckIcon as r}from"lucide-react";import{forwardRef as a,useRef as c,useImperativeHandle as i}from"react";import p from"../vef-icon/index.js";const l={autoInsertSpace:!1,icon:e(p,{children:e(r,{})})},m={autoInsertSpace:!1,variant:"text",color:"default"};function f(e){e.stopPropagation()}const u=a((({title:r=n,content:a,cancelable:p=!0,defaultOpened:u,opened:s,onOpenedChange:d,onOk:C,onCancel:h,...O},k)=>{const v=c(null);return i(k,(()=>v.current.nativeElement)),e(t,{ref:v,cancelButtonProps:m,defaultOpen:u,description:a,icon:o,okButtonProps:l,open:s,showCancel:p,title:r,onCancel:h,onConfirm:C,onOpenChange:d,onPopupClick:f,...O})}));export{u as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Popover as r}from"antd";import{forwardRef as e,useRef as o,useImperativeHandle as n}from"react";const i=e((({title:e,content:i,trigger:c="click",arrow:m=!1,...a},l)=>{const f=o(null);return n(l,(()=>f.current.nativeElement)),t(r,{ref:f,arrow:m,content:i,title:e,trigger:c,...a})}));export{i as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useComputedOptions as e}from"@vef-framework/hooks";import{isFunction as o,isNullish as r}from"@vef-framework/shared";import{useMemo as a,useLayoutEffect as i}from"react";function t({value:t,onChange:n,...p}){const{normalizedOptions:s,defaultOption:f,isLoading:l}=e({...p,isGrouped:!1,filterable:!1,selectedOptionValues:t?[t]:[]}),m=a((()=>s.reduce(((e,o)=>(e.set(o.value,o),e)),new Map)),[s]);return i((()=>{f&&o(n)&&r(t)&&n(f.value,f)}),[f,n,t]),{optionsMap:m,normalizedOptions:s,isLoading:l}}export{t as useDataOptions};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useRef as r,useImperativeHandle as t}from"react";function n(n,o){const u=r(null);return t(n,(()=>({blur:()=>{u.current?.blur()},focus:()=>{u.current?.focus({preventScroll:!0})},getDataOptions:()=>o}))),u}export{n as useRadioInstance};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{themeVariables as t,isFunction as i}from"@vef-framework/shared";import{Radio as r}from"antd";import{useMemo as n,memo as a,forwardRef as l}from"react";import"../internal/index.js";import d from"../vef-loading-placeholder/index.js";import s from"../vef-tooltip/index.js";import{useDataOptions as m}from"./hooks/use-data-options.js";import{useRadioInstance as u}from"./hooks/use-radio-instance.js";import{convertBasicSizeToUiSize as p}from"../internal/utils.js";const{Group:c}=r,f=e("div",{css:o`
|
|
3
|
+
height: ${t.controlHeight}
|
|
4
|
+
`,children:e(d,{})});const h=a(l((function({defaultValue:o,value:t,disabled:a,block:l,variant:d,buttonVariant:h,buttonSize:v,onChange:b,...g},j){const{optionsMap:k,normalizedOptions:x,isLoading:V}=m({value:t,onChange:b,...g}),y=u(j,x),z=n((()=>{if(i(b))return({target:{value:e}})=>{b(e,k.get(e))}}),[b,k]);if(V)return f;const C=x.map((o=>{const{value:t,label:i,disabled:n,description:a}=o;return a?e(s,{content:a,children:e(r,{disabled:n,value:t,children:i})},t):e(r,{disabled:n,value:t,children:i},t)}));return e(c,{ref:y,block:l,buttonStyle:h,defaultValue:o,disabled:a,optionType:d,size:p(v),onChange:z,...void 0===t?{}:{value:t},children:C})})));h.displayName="VefRadio";export{h as default};
|
|
5
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useRef as r,useImperativeHandle as u}from"react";function t(t){const c=r(null);return u(t,(()=>({blur:()=>c.current?.blur(),focus:()=>c.current?.focus()}))),c}export{t as useRateInstance};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as r}from"@emotion/react/jsx-runtime";import{isFunction as t}from"@vef-framework/shared";import{Rate as o}from"antd";import{forwardRef as e,useMemo as a}from"react";import{useRateInstance as m}from"./hooks/use-rate-instance.js";const c=e((({character:e,...c},f)=>{const i=a((()=>t(e)?({index:r})=>e(r):e),[e]),n=m(f);return r(o,{ref:n,character:i,...c})}));export{c as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{useGapSizeNormalizer as o}from"@vef-framework/hooks";import{isArray as t}from"@vef-framework/shared";import{motion as n}from"motion/react";import{forwardRef as i,Children as a,isValidElement as s,useMemo as m,memo as p}from"react";import f from"../vef-responsive-item/index.js";const v=r`
|
|
3
|
+
display: grid;
|
|
4
|
+
grid-template-columns: repeat(var(--vef-responsive-container-auto-mode), minmax(var(--vef-responsive-container-base-width), 1fr));
|
|
5
|
+
gap: var(--vef-responsive-container-gap);
|
|
6
|
+
`,c=p(i((({style:r,baseItemWidth:i=320,autoExpand:p=!0,gap:c=0,children:d,...l},u)=>{if(i%2!=0)throw new Error("VefResponsiveContainer: baseItemWidth must be an even number.");a.forEach(d,(e=>{if(!s(e)||e.type!==f)throw new Error("VefResponsiveContainer: children must be a VefResponsiveItem element.")}));const h=o(),w=m((()=>t(c)?c.map((e=>h(e))).join(" "):h(c)),[c,h]),b=m((()=>{const e=p?"auto-fit":"auto-fill";return{...r,"--vef-responsive-container-auto-mode":e,"--vef-responsive-container-base-width":i/2+"px","--vef-responsive-container-gap":w}}),[p,i,w,r]);return e(n.div,{ref:u,css:v,style:b,...l,children:d})})));c.displayName="VefResponsiveContainer";export{c as default};
|
|
7
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{motion as t}from"motion/react";import{forwardRef as o,useMemo as i}from"react";const n=r`
|
|
3
|
+
grid-column: span var(--vef-responsive-item-span);
|
|
4
|
+
`,s=o((({style:r,span:o=1,children:s,...m},a)=>{const p=i((()=>({...r,"--vef-responsive-item-span":2*o})),[o,r]);return e(t.div,{ref:a,css:n,style:p,...m,children:s})}));export{s as default};
|
|
5
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o}from"@emotion/react/jsx-runtime";import{useColorTokens as r}from"@vef-framework/hooks";import{Badge as t}from"antd";import{useMemo as e}from"react";const{Ribbon:n}=t,i=({color:t,position:i="right",children:a})=>{const m=r(),c=e((()=>{if(!t)return{placement:"right"===i?"end":"start",text:a};if(m.has(t))return{color:t?m.get(t):void 0,placement:"right"===i?"end":"start",text:a};throw new Error(`Invalid color value "${t}" of VefRibbon component. Color must be a valid color token.`)}),[a,t,m,i]);return o(n,{...c})};export{i as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Row as o}from"antd";const r=r=>t(o,{...r});export{r as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as r}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{ScrollAreaScrollbar as a,ScrollAreaThumb as e}from"@radix-ui/react-scroll-area";import{themeVariables as i}from"@vef-framework/shared";import{forwardRef as l}from"react";const t=o`
|
|
3
|
+
--vef-scroll-area-scrollbar-padding: 2px;
|
|
4
|
+
|
|
5
|
+
display: flex;
|
|
6
|
+
touch-action: none;
|
|
7
|
+
user-select: none;
|
|
8
|
+
`,n=o`
|
|
9
|
+
height: 100%;
|
|
10
|
+
width: var(--vef-scroll-area-scrollbar-size);
|
|
11
|
+
border-left-width: 1px;
|
|
12
|
+
border-left-color: transparent;
|
|
13
|
+
padding: var(--vef-scroll-area-scrollbar-padding);
|
|
14
|
+
`,c=o`
|
|
15
|
+
flex-direction: column;
|
|
16
|
+
height: var(--vef-scroll-area-scrollbar-size);
|
|
17
|
+
border-top-width: 1px;
|
|
18
|
+
border-top-color: transparent;
|
|
19
|
+
padding: var(--vef-scroll-area-scrollbar-padding);
|
|
20
|
+
`,s=o`
|
|
21
|
+
position: relative;
|
|
22
|
+
z-index: 2;
|
|
23
|
+
flex: 1;
|
|
24
|
+
border-radius: calc(var(--vef-scroll-area-scrollbar-size) - var(--vef-scroll-area-scrollbar-padding) * 2);
|
|
25
|
+
background-color: hsl(240 5.9% 90%);
|
|
26
|
+
transition-property: background-color;
|
|
27
|
+
transition-timing-function: ${i.motionEaseInOutCirc};
|
|
28
|
+
transition-duration: ${i.motionDurationMid};
|
|
29
|
+
|
|
30
|
+
&:hover {
|
|
31
|
+
background-color: hsl(240 5.9% 84%);
|
|
32
|
+
}
|
|
33
|
+
`,d=l((({orientation:o="vertical",...i},l)=>r(a,{ref:l,orientation:o,css:[t,"vertical"===o&&n,"horizontal"===o&&c],...i,children:r(e,{css:s})})));d.displayName="VefScrollbar";export{d as default};
|
|
34
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsxs as r,jsx as o}from"@emotion/react/jsx-runtime";import{css as e}from"@emotion/react";import{Root as t,Viewport as l,Corner as i}from"@radix-ui/react-scroll-area";import{isNumber as a}from"@vef-framework/shared";import{forwardRef as s,useMemo as c}from"react";import h from"./components/scrollbar.js";const n=e`
|
|
3
|
+
position: relative;
|
|
4
|
+
overflow: hidden;
|
|
5
|
+
height: var(--vef-scroll-area-height, 100%);
|
|
6
|
+
width: var(--vef-scroll-area-width, auto);
|
|
7
|
+
`,m=e`
|
|
8
|
+
height: 100%;
|
|
9
|
+
width: 100%;
|
|
10
|
+
border-radius: inherit;
|
|
11
|
+
-webkit-overflow-scrolling: touch;
|
|
12
|
+
`,d=s((({style:e,height:s,width:d,scrollDirection:f="y",scrollbarSize:p="medium",autoHideScrollbar:v=!0,viewportClassName:w,viewportStyle:u,viewportRef:b,onScroll:x,children:y,...g},S)=>{const z=c((()=>({...e,"--vef-scroll-area-height":(a(s)?`${s}px`:s)??"100%","--vef-scroll-area-width":(a(d)?`${d}px`:d)??"auto"})),[s,e,d]),j=c((()=>({"--vef-scroll-area-scrollbar-size":"small"===p?"10px":"medium"===p?"12px":"14px"})),[p]),k=c((()=>({...u,overflowX:""+("x"===f||"both"===f?"scroll":"hidden"),overflowY:""+("y"===f||"both"===f?"scroll":"hidden")})),[f,u]);return r(t,{ref:S,css:n,style:z,type:v?"hover":"auto",...g,children:[o(l,{ref:b,className:w,css:m,style:k,onScroll:x,children:y}),("y"===f||"both"===f)&&o(h,{orientation:"vertical",style:j}),("x"===f||"both"===f)&&o(h,{orientation:"horizontal",style:j}),o(i,{})]})}));export{d as default};
|
|
13
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsxs as e,jsx as i}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{themeVariables as o}from"@vef-framework/shared";import{memo as l}from"react";import t from"../../vef-text/index.js";const s=r`
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
row-gap: 4px;
|
|
6
|
+
|
|
7
|
+
> .vef-typography-secondary {
|
|
8
|
+
font-size: ${o.fontSizeSm};
|
|
9
|
+
}
|
|
10
|
+
`,p=l((({label:r,description:o})=>o?e("div",{css:s,children:[i(t,{ellipsis:!0,ellipsisTipPlacement:"right",children:r}),i(t,{ellipsis:!0,color:"secondary",ellipsisTipPlacement:"right",children:o})]}):i(t,{ellipsis:!0,ellipsisTipPlacement:"right",children:r})));p.displayName="VefOption";export{p as default};
|
|
11
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useComputedOptions as o}from"@vef-framework/hooks";import{isArray as e,isFunction as a,isNullish as i}from"@vef-framework/shared";import{useLayoutEffect as n}from"react";function r({value:r,grouped:t=!1,multiple:l=!1,onChange:s,...p}){const{onFilterKeywordChange:d,normalizedOptions:f,defaultOption:m,isLoading:u,fallbackOptions:c,isFallbackOptionsLoading:g}=o({...p,isGrouped:t,selectedOptionValues:e(r)?r:r?[r]:[]});return n((()=>{m&&a(s)&&i(r)&&s(l?[m.value]:m.value,l?[m]:m)}),[m,l,s,r]),{onFilterKeywordChange:d,normalizedOptions:f,isLoading:u,fallbackOptions:c,isFallbackOptionsLoading:g}}export{r as useDataOptions};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useMemo as l}from"react";function e(e){return l((()=>e?{label:"label",value:"value",options:"children",groupLabel:"label"}:{label:"label",value:"value"}),[e])}export{e as useFieldNames};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as i}from"@emotion/react/jsx-runtime";import{LoadingOutlined as r}from"@ant-design/icons";import{css as e}from"@emotion/react";import{useCallback as n}from"react";import t from"../../vef-spin/index.js";const o=e`
|
|
3
|
+
display: inline-flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
|
|
6
|
+
.vef-spin {
|
|
7
|
+
color: inherit;
|
|
8
|
+
}
|
|
9
|
+
`;function m(e,m){return n((({label:n,value:s})=>{if(n)return n;if(e)return i("span",{css:o,children:i(t,{indicator:i(r,{}),size:"small"})});const l=m?.find((i=>i.value===s));return l?.label??s}),[e,m])}export{m as useRenderLabel};
|
|
10
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as o}from"@emotion/react/jsx-runtime";import{isFunction as r}from"@vef-framework/shared";import{useMemo as e}from"react";import t from"../components/option.js";function i(i){return e((()=>r(i)?({data:o},{index:r})=>i({...o,index:r}):({data:{label:r,description:e}})=>o(t,{description:e,label:r??"Missing Label"})),[i])}export{i as useRenderOption};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useRef as r,useImperativeHandle as t}from"react";function n(n,o){const u=r(null);return t(n,(()=>({blur:()=>{u.current?.blur()},focus:()=>{u.current?.focus({preventScroll:!0})},getDataOptions:()=>o}))),u}export{n as useSelectInstance};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{useOptionFilter as o}from"@vef-framework/hooks";import{styles as r}from"@vef-framework/shared";import{Select as t}from"antd";import{memo as i,forwardRef as n}from"react";import"../internal/index.js";import l from"../vef-loading-placeholder/index.js";import{useDataOptions as a}from"./hooks/use-data-options.js";import{useFieldNames as s}from"./hooks/use-field-names.js";import{useRenderLabel as m}from"./hooks/use-render-label.js";import{useRenderOption as d}from"./hooks/use-render-option.js";import{useSelectInstance as p}from"./hooks/use-select-instance.js";import{convertBasicSizeToUiSize as f}from"../internal/utils.js";const u=e("div",{css:{height:140},children:e(l,{})});const c=i(n((function({defaultValue:i,value:n,size:l,clearable:c,disabled:h,placeholder:v,variant:g,onClear:C,onBlur:k,onFocus:b,onChange:j,onSelect:F,onDeselect:x,multiple:O=!1,grouped:w=!1,maxCount:S,renderOption:R,filterable:z=!0,filterFromRemote:V=!1,...y},B){const{onFilterKeywordChange:D,normalizedOptions:L,isLoading:N,fallbackOptions:A,isFallbackOptionsLoading:H}=a({value:n,grouped:w,multiple:O,onChange:j,filterable:z,filterFromRemote:V,...y}),K=d(R),T=o(z,V),W=s(w),q=m(H,A),E=p(B,L);return e(t,{ref:E,defaultActiveFirstOption:!0,allowClear:c,css:r.fullWidth,defaultValue:i,disabled:h,fieldNames:W,filterOption:T,labelRender:q,listHeight:280,loading:N,maxCount:O?S:void 0,maxTagCount:O?"responsive":void 0,mode:O?"multiple":void 0,notFoundContent:N?u:void 0,optionRender:K,options:L,placeholder:v,showSearch:z,size:f(l),value:n,variant:g,onBlur:k,onChange:j,onClear:C,onDeselect:x,onFocus:b,onSearch:D,onSelect:F})})));c.displayName="VefSelect";export{c as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{useRef as r,useImperativeHandle as u}from"react";function t(t){const c=r(null);return u(t,(()=>({blur:()=>c.current?.blur(),focus:()=>c.current?.focus()}))),c}export{t as useSliderInstance};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Slider as r}from"antd";import{forwardRef as o,useMemo as e}from"react";import{useSliderInstance as n}from"./hooks/use-slider-instance.js";const m=o((({step:o,tipFormatter:m,onChange:a,...i},s)=>{const p=e((()=>{if(m)return{formatter:t=>m(t)}}),[m]),f=n(s);return t(r,{ref:f,step:"mark"===o?null:o,tooltip:p,onChange:a,...i})}));export{m as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e,jsxs as n,Fragment as o}from"@emotion/react/jsx-runtime";import{HolderOutlined as t}from"@ant-design/icons";import{css as r}from"@emotion/react";const s=e(t,{}),a=r`
|
|
3
|
+
cursor: move;
|
|
4
|
+
user-select: none;
|
|
5
|
+
touch-action: none;
|
|
6
|
+
`;function c({item:t,renderItem:r,useHandle:c,handleClassName:i,handleStyle:m,handleIcon:l}){return n(o,{children:[c&&e("div",{className:i,css:a,style:m,children:l??s}),r(t,!0)]})}export{c as default};
|
|
7
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e,jsxs as t}from"@emotion/react/jsx-runtime";import{HolderOutlined as i}from"@ant-design/icons";import{useSortable as r}from"@dnd-kit/sortable";import{CSS as n}from"@dnd-kit/utilities";import{css as s}from"@emotion/react";const o=e(i,{}),a=s`
|
|
3
|
+
cursor: move;
|
|
4
|
+
user-select: none;
|
|
5
|
+
touch-action: none;
|
|
6
|
+
`;function m({item:i,itemKey:s,itemIndex:m,itemClassName:d,itemStyle:l,renderItem:c,useHandle:f,useOverlay:u,handleClassName:p,handleStyle:h,handleIcon:v,disabled:y}){const{isDragging:N,attributes:g,listeners:x,setNodeRef:b,setActivatorNodeRef:I,transition:S,transform:k}=r({id:s,disabled:y,data:{index:m}}),C={...l,transition:S,transform:n.Transform.toString(k),...!u&&N?{position:"relative",zIndex:999}:{}};return t("div",{ref:b,className:d,style:C,...g,...f?{}:x,children:[f&&e("div",{ref:I,className:p,css:a,style:h,...x,children:v??o}),c(i,!1)]})}export{m as default};
|
|
7
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{isNullish as r}from"@vef-framework/shared";import{useState as e,useCallback as o}from"react";function t(t,f,m){if(r(t)&&r(f))throw new Error("At least one of `defaultItems` and `items` must be provided for VefSortableList component.");const[n,a]=e(t??[]);return[f??n,o((r=>{f?m?.(r(f)):a(r)}),[f,m])]}export{t as useMergedItems};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e,jsxs as t}from"@emotion/react/jsx-runtime";import{useSensors as r,useSensor as i,PointerSensor as o,DndContext as m,closestCenter as a,DragOverlay as s}from"@dnd-kit/core";import{restrictToParentElement as n,restrictToWindowEdges as d}from"@dnd-kit/modifiers";import{arrayMove as c,SortableContext as l,verticalListSortingStrategy as p,horizontalListSortingStrategy as f}from"@dnd-kit/sortable";import{isFunction as u}from"@vef-framework/shared";import{useMemo as y,useState as v,useCallback as h,memo as g}from"react";import x from"./components/overlay-item.js";import k from"./components/sortable-item.js";import{useMergedItems as N}from"./hooks/use-merged-items.js";const b=g((function({defaultItems:g,items:b,itemKey:j="id",className:S,style:D,orientation:w="vertical",useOverlay:C=!0,restrictStrategy:E="parent",onChange:I,...K}){const[L,O]=N(g,b,I),V=r(i(o)),q=y((()=>u(j)?j:e=>e[j]),[j]),[z,A]=v(),B=h((({active:e})=>{A(L[e.data.current.index])}),[L]),F=h((({active:e,over:t})=>{t&&e.id!==t.id&&O((r=>c(r,e.data.current.index,t.data.current.index)))}),[O]),G=L.map((e=>q(e))),{itemClassName:H,itemStyle:J,disabled:M,...P}=K;return e(m,{collisionDetection:a,sensors:V,modifiers:["parent"===E?n:d],onDragEnd:F,onDragStart:B,children:e(l,{items:G,strategy:"vertical"===w?p:f,children:t("div",{className:S,style:D,children:[L.map(((t,r)=>{const i=q(t);return e(k,{item:t,itemIndex:r,itemKey:i,...K},i)})),C&&e(s,{className:H,style:J,wrapperElement:"div",modifiers:["parent"===E?n:d],children:z&&e(x,{item:z,...P})})]})})})}));b.displayName="VefSortableList";export{b as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as r}from"@emotion/react/jsx-runtime";import{useGapSizeNormalizer as o}from"@vef-framework/hooks";import{isArray as m}from"@vef-framework/shared";import{Space as t}from"antd";import{useMemo as e}from"react";const a=({gap:a,...f})=>{const i=o(),p=e((()=>m(a)?a.map((r=>i(r))):a?i(a):a),[a,i]);return r(t,{size:p,...f})};export{a as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Spin as e}from"antd";const m=({size:m,...o})=>t(e,{size:"medium"===m?"default":m,...o});export{m as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Splitter as o}from"antd";const e=({orientation:e,onResizeBegin:i,...n})=>t(o,{layout:e,onResizeStart:i,...n});export{e as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{Splitter as o}from"antd";const{Panel:r}=o,e=({...o})=>t(r,{...o});export{e as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as t}from"@emotion/react/jsx-runtime";import{useColorTokens as o}from"@vef-framework/hooks";import{Badge as r}from"antd";import{useMemo as e}from"react";const a=({processing:a=!1,color:f="default",children:n})=>{const s=o(),l=e((()=>{if("default"===f)return{status:"default",text:n};if(s.has(f))return{status:a?"processing":"default",color:s.get(f),text:n};throw new Error(`Invalid color value "${f}" of VefStatus component. Color must be either "default" or a valid color token.`)}),[f,s,a,n]);return t(r,{...l})};export{a as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{VefError as t,isString as r,isNullish as a,isEqual as l}from"@vef-framework/shared";import{useMemo as i,memo as m}from"react";import u from"../../../vef-text/index.js";import{useComputedValues as n}from"../../hooks/use-computed-values.js";const c=m((function({value:l,record:m,rowIndex:c,columnProps:f}){if("Boolean"!==f.type)throw new t(-1,"Column type must be Boolean");const{defaultValue:d,trueText:s="是",falseText:p="否",bold:w,italic:x,color:h,width:V}=f,[b,k,v]=n([{key:"bold",rawValue:w,defaultValue:!1},{key:"italic",rawValue:x,defaultValue:!1},{key:"color",rawValue:h}],l,m,c),y=i((()=>r(v)?v:v?!a(l)&&Object.hasOwn(v,l)?v[l]:v["*"]:void 0),[v,l]),j=i((()=>l?l?s:p:d),[l,s,p,d]),B=i((()=>{if(V)return o({maxWidth:`${V}px !important`})}),[V]);return e(u,{bold:b,color:y,css:B,italic:k,children:j})}),l);export{c as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";function r({value:r}){return e("span",{children:r})}export{r as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{VefError as t,isString as r,isNullish as a}from"@vef-framework/shared";import{useMemo as i}from"react";import l from"../../../vef-text/index.js";import{useComputedValues as m}from"../../hooks/use-computed-values.js";const u="Name";function c({value:c,record:n,rowIndex:s,columnProps:d}){if("DataDictionary"!==d.type)throw new t(-1,"Column type must be DataDictionary");const{name:f,defaultValue:p,ellipsis:w,bold:h,italic:x,color:y,width:V}=d,[b,k,v]=m([{key:"bold",rawValue:h,defaultValue:!1},{key:"italic",rawValue:x,defaultValue:!1},{key:"color",rawValue:y}],c,n,s),$=i((()=>r(v)?v:v?!a(c)&&Object.hasOwn(v,c)?v[c]:v["*"]:void 0),[v,c]),j=i((()=>a(c)||a(n[`${f}${u}`])?p:n[`${f}${u}`]),[c,n,f,p]),D=i((()=>{if(V)return o({maxWidth:`${V}px !important`})}),[V]);return e(l,{bold:b,color:$,css:D,ellipsis:w,italic:k,children:j})}export{c as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{VefError as r,isString as t,isNullish as i}from"@vef-framework/shared";import{useMemo as l}from"react";import a from"../../../vef-tag/index.js";import m from"../../../vef-text/index.js";import{useComputedValues as n}from"../../hooks/use-computed-values.js";const c="Name",s=o({color:"inherit",fontSize:"inherit"});function u({value:u,record:d,rowIndex:f,columnProps:p}){if("Enum"!==p.type)throw new r(-1,"Column type must be Enum");const{name:h,defaultValue:w,showAsTag:x=!0,bold:b,italic:v,ellipsis:V,color:j,width:k}=p,[y,$,g]=n([{key:"bold",rawValue:b,defaultValue:!1},{key:"italic",rawValue:v,defaultValue:!1},{key:"color",rawValue:j}],u,d,f),E=l((()=>t(g)?g:g?!i(u)&&Object.hasOwn(g,u)?g[u]:g["*"]:void 0),[g,u]),O=l((()=>i(u)||i(d[`${h}${c}`])?w:d[`${h}${c}`]),[u,d,h,w]),z=l((()=>{if(k)return o({maxWidth:`${k}px !important`})}),[k]);return x?e(a,{color:E,children:e(m,{bold:y,css:s,italic:$,children:O})}):e(m,{bold:y,color:E,css:z,ellipsis:V,italic:$,children:O})}export{u as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";function r({value:r}){return e("span",{children:r})}export{r as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";function r({value:r}){return e("span",{children:r})}export{r as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as o}from"@emotion/react";import{VefError as r,isNullish as t}from"@vef-framework/shared";import{useMemo as a}from"react";import l from"../../../vef-text/index.js";import{useComputedValues as i}from"../../hooks/use-computed-values.js";const m=/Id$/;function u({value:u,record:c,rowIndex:n,columnProps:s}){if("Id"!==s.type)throw new r(-1,"Column type must be Id");const{name:d,defaultValue:f,ellipsis:p,bold:w,italic:x,color:h,width:V}=s,[k,y,b]=i([{key:"bold",rawValue:w,defaultValue:!1},{key:"italic",rawValue:x,defaultValue:!1},{key:"color",rawValue:h}],u,c,n),v=a((()=>{const e=d.replace(m,"Name");return t(u)||t(c[e])?f:c[e]}),[u,c,d,f]),I=a((()=>{if(V)return o({maxWidth:`${V}px !important`})}),[V]);return e(l,{bold:k,color:b,css:I,ellipsis:p,italic:y,children:v})}export{u as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as r}from"@emotion/react/jsx-runtime";import{extractBaseName as e}from"@vef-framework/shared";function t({value:t}){return r("img",{alt:e(t),src:t})}export{t as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import o from"./bool.js";import r from"./code.js";import m from"./data-dictionary.js";import t from"./enum.js";import i from"./file.js";import e from"./icon.js";import p from"./id.js";import s from"./image.js";import f from"./markdown.js";import j from"./number.js";import n from"./render.js";import a from"./rich-text.js";import d from"./text.js";const c={Text:d,Number:j,Enum:t,Boolean:o,DataDictionary:m,Id:p,Render:n,Markdown:f,Icon:e,File:i,RichText:a,Image:s,Code:r};export{c as columnComponents};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";function r({value:r}){return e("span",{children:r})}export{r as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as e}from"@emotion/react/jsx-runtime";import{css as r}from"@emotion/react";import{VefError as o,isNullish as t}from"@vef-framework/shared";import{useMemo as a}from"react";import l from"../../../vef-text/index.js";import{useComputedValues as u}from"../../hooks/use-computed-values.js";import{useDisplayValue as i}from"../../hooks/use-display-value.js";function m({value:m,record:f,rowIndex:s,columnProps:d}){if("Number"!==d.type)throw new o(-1,"Column type must be Number");const{defaultValue:p,formatter:c,prefix:n,suffix:x,bold:w,italic:h,color:V,width:b}=d,k=i(m,f,s,{defaultValue:p,formatter:c,prefix:n,suffix:x}),[y,v,j]=u([{key:"bold",rawValue:w,defaultValue:!1},{key:"italic",rawValue:h,defaultValue:!1},{key:"color",rawValue:V}],m,f,s),N=a((()=>{if(b)return r({maxWidth:`${b}px !important`})}),[b]);return t(k)?null:e(l,{bold:y,color:j,css:N,italic:v,children:k})}export{m as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! VefFramework version: 1.0.19, build time: 2024-12-19T13:20:42.664Z, made by Venus. */
|
|
2
|
+
import{jsx as r}from"@emotion/react/jsx-runtime";import{css as e}from"@emotion/react";import{VefError as t}from"@vef-framework/shared";import{useMemo as o}from"react";function m({value:m,record:n,rowIndex:i,columnProps:d}){if("Render"!==d.type)throw new t(-1,"Column type must be Render");const{render:a,width:f}=d,p=a?.(m,n,i),c=o((()=>{if(f)return e({maxWidth:`${f}px !important`})}),[f]);return r("div",{css:c,children:p})}export{m as default};
|
|
3
|
+
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|