@vef-framework/components 1.0.62 → 1.0.64
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 +81 -2
- package/es/internal/index.js +2 -2
- package/es/internal/modern-normalize.css.js +4 -2
- package/es/internal/utils.js +6 -2
- package/es/vef-access-denied/access-denied-icon.js +928 -2
- package/es/vef-access-denied/index.js +45 -10
- package/es/vef-action-buttons/index.js +75 -2
- package/es/vef-auto-sizer/index.js +6 -2
- package/es/vef-avatar/index.js +20 -2
- package/es/vef-avatar-group/index.js +25 -2
- package/es/vef-badge/index.js +47 -2
- package/es/vef-bool/hooks/use-bool-instance.js +34 -2
- package/es/vef-bool/index.js +60 -2
- package/es/vef-breadcrumb/index.js +48 -2
- package/es/vef-button/components/base-button.js +73 -2
- package/es/vef-button/index.js +151 -2
- package/es/vef-card/index.js +25 -2
- package/es/vef-card-meta/index.js +12 -2
- package/es/vef-checkbox/hooks/use-checkbox-instance.js +20 -2
- package/es/vef-checkbox/hooks/use-data-options.js +40 -2
- package/es/vef-checkbox/index.js +88 -4
- package/es/vef-col/index.js +11 -2
- package/es/vef-color-picker/index.js +46 -2
- package/es/vef-compact/index.js +15 -2
- package/es/vef-config-provider/global-style.js +23 -16
- package/es/vef-config-provider/hooks/use-ui-config.js +125 -2
- package/es/vef-config-provider/index.js +121 -4
- package/es/vef-config-provider/store.js +21 -2
- package/es/vef-container/index.js +18 -2
- package/es/vef-crud-page/components/crud-actions.js +32 -2
- package/es/vef-crud-page/components/crud-filter.js +54 -2
- package/es/vef-crud-page/components/crud-footer.js +116 -4
- package/es/vef-crud-page/components/crud-form-modal.js +53 -2
- package/es/vef-crud-page/components/crud-header.js +29 -2
- package/es/vef-crud-page/components/crud-table.js +76 -2
- package/es/vef-crud-page/hooks/use-action-buttons.js +37 -2
- package/es/vef-crud-page/hooks/use-crud-context.js +20 -2
- package/es/vef-crud-page/hooks/use-crud-schema.js +114 -2
- package/es/vef-crud-page/hooks/use-operation-buttons.js +60 -2
- package/es/vef-crud-page/index.js +150 -2
- package/es/vef-crud-page/store.js +142 -2
- package/es/vef-divider/index.js +24 -2
- package/es/vef-drawer/components/action-button-wrapper.js +49 -2
- package/es/vef-drawer/components/button-props.js +2 -1
- package/es/vef-drawer/components/cancel-action-button.js +21 -2
- package/es/vef-drawer/components/ok-action-button.js +20 -2
- package/es/vef-drawer/context.js +15 -2
- package/es/vef-drawer/index.js +154 -4
- package/es/vef-dropdown/index.js +92 -2
- package/es/vef-dynamic-icon/index.js +46 -2
- package/es/vef-dynamic-icon/props.js +6 -2
- package/es/vef-empty/index.js +37 -2
- package/es/vef-empty-placeholder/index.js +19 -5
- package/es/vef-error/error-icon.js +757 -2
- package/es/vef-error/index.js +48 -10
- package/es/vef-filter/components/action-buttons.js +119 -6
- package/es/vef-filter/components/advanced-filter.js +71 -9
- package/es/vef-filter/components/basic-filter.js +35 -5
- package/es/vef-filter/components/fields/index.js +11 -2
- package/es/vef-filter/components/fields/input-number.js +90 -2
- package/es/vef-filter/components/fields/input.js +67 -2
- package/es/vef-filter/components/filter-field.js +19 -2
- package/es/vef-filter/components/filter-item.js +112 -2
- package/es/vef-filter/event.js +44 -2
- package/es/vef-filter/helper.js +15 -2
- package/es/vef-filter/hooks/use-action-handlers.js +70 -2
- package/es/vef-filter/hooks/use-computed-values.js +55 -2
- package/es/vef-filter/hooks/use-filter-context.js +18 -2
- package/es/vef-filter/hooks/use-filter-initialization.js +37 -2
- package/es/vef-filter/hooks/use-filter-instance.js +26 -2
- package/es/vef-filter/hooks/use-filter-items.js +23 -2
- package/es/vef-filter/hooks/use-filter-values-change.js +30 -2
- package/es/vef-filter/hooks/use-label-config.js +27 -2
- package/es/vef-filter/index.js +141 -3
- package/es/vef-filter/store.js +71 -2
- package/es/vef-flex/index.js +31 -2
- package/es/vef-float-button/index.js +49 -2
- package/es/vef-float-button-group/index.js +20 -2
- package/es/vef-form/components/fields/index.js +11 -2
- package/es/vef-form/components/fields/input-number.js +123 -2
- package/es/vef-form/components/fields/input.js +132 -2
- package/es/vef-form/components/form-actions.js +58 -4
- package/es/vef-form/components/form-content.js +144 -3
- package/es/vef-form/components/form-field.js +22 -2
- package/es/vef-form/components/form-group.js +64 -4
- package/es/vef-form/components/form-hidden-item.js +36 -2
- package/es/vef-form/components/form-item.js +79 -2
- package/es/vef-form/components/form-row.js +98 -2
- package/es/vef-form/event.js +44 -2
- package/es/vef-form/helper.js +15 -2
- package/es/vef-form/hooks/use-action-handlers.js +130 -2
- package/es/vef-form/hooks/use-columns-layout.js +122 -2
- package/es/vef-form/hooks/use-computed-values.js +55 -2
- package/es/vef-form/hooks/use-form-context.js +14 -2
- package/es/vef-form/hooks/use-form-initialization.js +45 -2
- package/es/vef-form/hooks/use-form-instance.js +26 -2
- package/es/vef-form/hooks/use-form-values-change.js +30 -2
- package/es/vef-form/hooks/use-label-width.js +18 -2
- package/es/vef-form/index.js +174 -4
- package/es/vef-form/store.js +65 -2
- package/es/vef-form/validation-rules.js +286 -2
- package/es/vef-form-drawer/index.js +98 -2
- package/es/vef-form-modal/index.js +95 -2
- package/es/vef-generic-select/index.js +81 -2
- package/es/vef-grid/index.js +83 -7
- package/es/vef-grid/props.js +4 -2
- package/es/vef-grid-item/index.js +52 -2
- package/es/vef-icon/index.js +45 -2
- package/es/vef-icon-select/index.js +146 -12
- package/es/vef-input/hooks/use-input-instance.js +15 -2
- package/es/vef-input/index.js +64 -2
- package/es/vef-input-number/hooks/use-input-number-instance.js +13 -2
- package/es/vef-input-number/index.js +148 -2
- package/es/vef-layout/common-styles.js +10 -5
- package/es/vef-layout/components/content.js +13 -2
- package/es/vef-layout/components/font-size.js +68 -2
- package/es/vef-layout/components/fullscreen.js +23 -2
- package/es/vef-layout/components/header-action-icons.js +29 -7
- package/es/vef-layout/components/header-content.js +19 -2
- package/es/vef-layout/components/header.js +69 -7
- package/es/vef-layout/components/icon-boy.js +69 -2
- package/es/vef-layout/components/icon-girl.js +76 -2
- package/es/vef-layout/components/icon-menu-fold-left.js +23 -2
- package/es/vef-layout/components/icon-menu-unfold-left.js +23 -2
- package/es/vef-layout/components/menu-groups.js +123 -16
- package/es/vef-layout/components/message.js +11 -2
- package/es/vef-layout/components/search.js +11 -2
- package/es/vef-layout/components/sider.js +54 -6
- package/es/vef-layout/components/title.js +53 -9
- package/es/vef-layout/components/user-avatar.js +80 -10
- package/es/vef-layout/hooks/use-layout-context.js +10 -2
- package/es/vef-layout/index.js +33 -3
- package/es/vef-layout/logo.svg.js +4 -2
- package/es/vef-layout/store.js +16 -2
- package/es/vef-loading-placeholder/index.js +42 -6
- package/es/vef-login/index.js +152 -22
- package/es/vef-login/login-icon.js +668 -2
- package/es/vef-menu/index.js +77 -5
- package/es/vef-modal/components/action-button-wrapper.js +49 -2
- package/es/vef-modal/components/button-props.js +2 -1
- package/es/vef-modal/components/cancel-action-button.js +18 -2
- package/es/vef-modal/components/ok-action-button.js +20 -2
- package/es/vef-modal/context.js +15 -2
- package/es/vef-modal/index.js +239 -3
- package/es/vef-not-found/index.js +45 -10
- package/es/vef-not-found/not-found-icon.js +844 -2
- package/es/vef-page/index.js +87 -11
- package/es/vef-pagination/index.js +57 -2
- package/es/vef-pagination/props.js +13 -2
- package/es/vef-paragraph/index.js +89 -2
- package/es/vef-password/hooks/use-password-instance.js +13 -2
- package/es/vef-password/index.js +67 -2
- package/es/vef-popconfirm/index.js +56 -2
- package/es/vef-popover/index.js +29 -2
- package/es/vef-radio/hooks/use-data-options.js +40 -2
- package/es/vef-radio/hooks/use-radio-instance.js +20 -2
- package/es/vef-radio/index.js +88 -4
- package/es/vef-rate/hooks/use-rate-instance.js +13 -2
- package/es/vef-rate/index.js +30 -2
- package/es/vef-responsive-container/index.js +54 -3
- package/es/vef-responsive-item/index.js +23 -3
- package/es/vef-ribbon/index.js +38 -2
- package/es/vef-row/index.js +12 -2
- package/es/vef-scroll-area/components/scrollbar.js +34 -8
- package/es/vef-scroll-area/index.js +69 -4
- package/es/vef-select/components/option.js +23 -4
- package/es/vef-select/hooks/use-data-options.js +47 -2
- package/es/vef-select/hooks/use-field-names.js +21 -2
- package/es/vef-select/hooks/use-render-label.js +23 -3
- package/es/vef-select/hooks/use-render-option.js +19 -2
- package/es/vef-select/hooks/use-select-instance.js +20 -2
- package/es/vef-select/index.js +100 -2
- package/es/vef-slider/hooks/use-slider-instance.js +13 -2
- package/es/vef-slider/index.js +34 -2
- package/es/vef-sortable-list/components/overlay-item.js +31 -3
- package/es/vef-sortable-list/components/sortable-item.js +75 -3
- package/es/vef-sortable-list/hooks/use-merged-items.js +21 -2
- package/es/vef-sortable-list/index.js +114 -2
- package/es/vef-space/index.js +25 -2
- package/es/vef-spin/index.js +12 -2
- package/es/vef-splitter/index.js +20 -2
- package/es/vef-splitter-panel/index.js +12 -2
- package/es/vef-status/index.js +37 -2
- package/es/vef-table/components/columns/bool.js +91 -2
- package/es/vef-table/components/columns/code.js +10 -2
- package/es/vef-table/components/columns/data-dictionary.js +92 -2
- package/es/vef-table/components/columns/enum.js +101 -2
- package/es/vef-table/components/columns/file.js +10 -2
- package/es/vef-table/components/columns/icon.js +10 -2
- package/es/vef-table/components/columns/id.js +82 -2
- package/es/vef-table/components/columns/image.js +11 -2
- package/es/vef-table/components/columns/index.js +33 -2
- package/es/vef-table/components/columns/markdown.js +10 -2
- package/es/vef-table/components/columns/number.js +83 -2
- package/es/vef-table/components/columns/render.js +28 -2
- package/es/vef-table/components/columns/rich-text.js +10 -2
- package/es/vef-table/components/columns/text.js +88 -2
- package/es/vef-table/components/columns-settings.js +195 -11
- package/es/vef-table/components/operation-buttons.js +230 -3
- package/es/vef-table/components/settings-icon.js +19 -4
- package/es/vef-table/components/table-footer.js +102 -4
- package/es/vef-table/helper.js +15 -2
- package/es/vef-table/hooks/use-computed-batch-buttons.js +33 -2
- package/es/vef-table/hooks/use-computed-columns.js +20 -2
- package/es/vef-table/hooks/use-computed-values.js +38 -2
- package/es/vef-table/hooks/use-data.js +53 -2
- package/es/vef-table/hooks/use-default-column-configs.js +27 -2
- package/es/vef-table/hooks/use-display-value.js +36 -2
- package/es/vef-table/hooks/use-helper-columns.js +67 -2
- package/es/vef-table/hooks/use-operation-column-width.js +50 -2
- package/es/vef-table/hooks/use-pagination-props.js +44 -2
- package/es/vef-table/hooks/use-row-props.js +39 -2
- package/es/vef-table/hooks/use-row-selection-config.js +112 -2
- package/es/vef-table/hooks/use-selected-rows.js +26 -2
- package/es/vef-table/hooks/use-table-columns.js +56 -2
- package/es/vef-table/hooks/use-table-context.js +21 -2
- package/es/vef-table/hooks/use-table-instance.js +15 -2
- package/es/vef-table/hooks/use-table-summary.js +42 -2
- package/es/vef-table/hooks/use-table-width.js +13 -2
- package/es/vef-table/index.js +227 -6
- package/es/vef-table/store.js +17 -2
- package/es/vef-tabs/index.js +25 -2
- package/es/vef-tag/index.js +28 -2
- package/es/vef-temporal-picker/helper.js +57 -2
- package/es/vef-temporal-picker/hooks/use-dayjs-value.js +18 -2
- package/es/vef-temporal-picker/hooks/use-temporal-limit.js +34 -2
- package/es/vef-temporal-picker/hooks/use-temporal-picker-instance.js +19 -2
- package/es/vef-temporal-picker/index.js +125 -2
- package/es/vef-temporal-range-picker/helper.js +57 -2
- package/es/vef-temporal-range-picker/hooks/use-dayjs-values.js +23 -2
- package/es/vef-temporal-range-picker/hooks/use-temporal-limit.js +34 -2
- package/es/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.js +19 -2
- package/es/vef-temporal-range-picker/index.js +128 -2
- package/es/vef-temporal-range-picker/props.js +4 -2
- package/es/vef-text/index.js +80 -2
- package/es/vef-textarea/hooks/use-textarea-instance.js +13 -2
- package/es/vef-textarea/index.js +67 -2
- package/es/vef-title/index.js +89 -7
- package/es/vef-tooltip/index.js +35 -2
- package/es/vef-tree-select/hooks/use-change-handler.js +33 -2
- package/es/vef-tree-select/hooks/use-data-options.js +45 -2
- package/es/vef-tree-select/hooks/use-tree-select-instance.js +20 -2
- package/es/vef-tree-select/index.js +86 -2
- package/es/vef-virtual-grid/index.js +107 -4
- package/es/vef-virtual-list/index.js +215 -5
- package/lib/index.cjs +168 -2
- package/lib/internal/index.cjs +10 -2
- package/lib/internal/modern-normalize.css.cjs +8 -2
- package/lib/internal/utils.cjs +10 -2
- package/lib/vef-access-denied/access-denied-icon.cjs +932 -2
- package/lib/vef-access-denied/index.cjs +49 -10
- package/lib/vef-access-denied/props.cjs +4 -2
- package/lib/vef-action-buttons/index.cjs +79 -2
- package/lib/vef-action-buttons/props.cjs +4 -2
- package/lib/vef-auto-sizer/index.cjs +10 -2
- package/lib/vef-auto-sizer/props.cjs +4 -2
- package/lib/vef-avatar/index.cjs +24 -2
- package/lib/vef-avatar/props.cjs +4 -2
- package/lib/vef-avatar-group/index.cjs +29 -2
- package/lib/vef-avatar-group/props.cjs +4 -2
- package/lib/vef-badge/index.cjs +51 -2
- package/lib/vef-badge/props.cjs +4 -2
- package/lib/vef-bool/hooks/use-bool-instance.cjs +38 -2
- package/lib/vef-bool/index.cjs +64 -2
- package/lib/vef-bool/props.cjs +4 -2
- package/lib/vef-breadcrumb/index.cjs +52 -2
- package/lib/vef-breadcrumb/props.cjs +4 -2
- package/lib/vef-button/components/base-button.cjs +77 -2
- package/lib/vef-button/index.cjs +155 -2
- package/lib/vef-button/props.cjs +4 -2
- package/lib/vef-card/index.cjs +29 -2
- package/lib/vef-card/props.cjs +4 -2
- package/lib/vef-card-meta/index.cjs +16 -2
- package/lib/vef-card-meta/props.cjs +4 -2
- package/lib/vef-checkbox/hooks/use-checkbox-instance.cjs +24 -2
- package/lib/vef-checkbox/hooks/use-data-options.cjs +44 -2
- package/lib/vef-checkbox/index.cjs +92 -4
- package/lib/vef-checkbox/props.cjs +4 -2
- package/lib/vef-col/index.cjs +15 -2
- package/lib/vef-col/props.cjs +4 -2
- package/lib/vef-color-picker/index.cjs +50 -2
- package/lib/vef-color-picker/props.cjs +4 -2
- package/lib/vef-compact/index.cjs +19 -2
- package/lib/vef-compact/props.cjs +4 -2
- package/lib/vef-config-provider/global-style.cjs +28 -16
- package/lib/vef-config-provider/hooks/use-ui-config.cjs +129 -2
- package/lib/vef-config-provider/index.cjs +125 -4
- package/lib/vef-config-provider/props.cjs +4 -2
- package/lib/vef-config-provider/store.cjs +27 -2
- package/lib/vef-container/index.cjs +22 -2
- package/lib/vef-container/props.cjs +4 -2
- package/lib/vef-crud-page/components/crud-actions.cjs +36 -2
- package/lib/vef-crud-page/components/crud-filter.cjs +58 -2
- package/lib/vef-crud-page/components/crud-footer.cjs +120 -4
- package/lib/vef-crud-page/components/crud-form-modal.cjs +57 -2
- package/lib/vef-crud-page/components/crud-header.cjs +33 -2
- package/lib/vef-crud-page/components/crud-table.cjs +80 -2
- package/lib/vef-crud-page/hooks/use-action-buttons.cjs +41 -2
- package/lib/vef-crud-page/hooks/use-crud-context.cjs +24 -2
- package/lib/vef-crud-page/hooks/use-crud-schema.cjs +118 -2
- package/lib/vef-crud-page/hooks/use-operation-buttons.cjs +64 -2
- package/lib/vef-crud-page/index.cjs +154 -2
- package/lib/vef-crud-page/props.cjs +4 -2
- package/lib/vef-crud-page/store.cjs +148 -2
- package/lib/vef-crud-page/types.cjs +4 -2
- package/lib/vef-divider/index.cjs +28 -2
- package/lib/vef-divider/props.cjs +4 -2
- package/lib/vef-drawer/components/action-button-wrapper.cjs +53 -2
- package/lib/vef-drawer/components/button-props.cjs +4 -2
- package/lib/vef-drawer/components/cancel-action-button.cjs +25 -2
- package/lib/vef-drawer/components/ok-action-button.cjs +24 -2
- package/lib/vef-drawer/context.cjs +21 -2
- package/lib/vef-drawer/index.cjs +159 -4
- package/lib/vef-drawer/props.cjs +4 -2
- package/lib/vef-dropdown/index.cjs +96 -2
- package/lib/vef-dropdown/props.cjs +4 -2
- package/lib/vef-dynamic-icon/index.cjs +50 -2
- package/lib/vef-dynamic-icon/props.cjs +10 -2
- package/lib/vef-empty/index.cjs +41 -2
- package/lib/vef-empty/props.cjs +4 -2
- package/lib/vef-empty-placeholder/index.cjs +23 -5
- package/lib/vef-empty-placeholder/props.cjs +4 -2
- package/lib/vef-error/error-icon.cjs +761 -2
- package/lib/vef-error/index.cjs +52 -10
- package/lib/vef-error/props.cjs +4 -2
- package/lib/vef-filter/components/action-buttons.cjs +123 -6
- package/lib/vef-filter/components/advanced-filter.cjs +75 -9
- package/lib/vef-filter/components/basic-filter.cjs +39 -5
- package/lib/vef-filter/components/fields/index.cjs +15 -2
- package/lib/vef-filter/components/fields/input-number.cjs +94 -2
- package/lib/vef-filter/components/fields/input.cjs +71 -2
- package/lib/vef-filter/components/fields/props.cjs +4 -2
- package/lib/vef-filter/components/filter-field.cjs +23 -2
- package/lib/vef-filter/components/filter-item.cjs +116 -2
- package/lib/vef-filter/event.cjs +48 -2
- package/lib/vef-filter/helper.cjs +19 -2
- package/lib/vef-filter/hooks/use-action-handlers.cjs +74 -2
- package/lib/vef-filter/hooks/use-computed-values.cjs +59 -2
- package/lib/vef-filter/hooks/use-filter-context.cjs +24 -2
- package/lib/vef-filter/hooks/use-filter-initialization.cjs +41 -2
- package/lib/vef-filter/hooks/use-filter-instance.cjs +30 -2
- package/lib/vef-filter/hooks/use-filter-items.cjs +27 -2
- package/lib/vef-filter/hooks/use-filter-values-change.cjs +34 -2
- package/lib/vef-filter/hooks/use-label-config.cjs +31 -2
- package/lib/vef-filter/index.cjs +145 -3
- package/lib/vef-filter/props.cjs +4 -2
- package/lib/vef-filter/store.cjs +77 -2
- package/lib/vef-filter/types.cjs +4 -2
- package/lib/vef-flex/index.cjs +35 -2
- package/lib/vef-flex/props.cjs +4 -2
- package/lib/vef-float-button/index.cjs +53 -2
- package/lib/vef-float-button/props.cjs +4 -2
- package/lib/vef-float-button-group/index.cjs +24 -2
- package/lib/vef-float-button-group/props.cjs +4 -2
- package/lib/vef-form/components/fields/index.cjs +15 -2
- package/lib/vef-form/components/fields/input-number.cjs +127 -2
- package/lib/vef-form/components/fields/input.cjs +136 -2
- package/lib/vef-form/components/fields/props.cjs +4 -2
- package/lib/vef-form/components/form-actions.cjs +62 -4
- package/lib/vef-form/components/form-content.cjs +148 -3
- package/lib/vef-form/components/form-field.cjs +26 -2
- package/lib/vef-form/components/form-group.cjs +68 -4
- package/lib/vef-form/components/form-hidden-item.cjs +40 -2
- package/lib/vef-form/components/form-item.cjs +83 -2
- package/lib/vef-form/components/form-row.cjs +102 -2
- package/lib/vef-form/event.cjs +48 -2
- package/lib/vef-form/helper.cjs +19 -2
- package/lib/vef-form/hooks/use-action-handlers.cjs +134 -2
- package/lib/vef-form/hooks/use-columns-layout.cjs +126 -2
- package/lib/vef-form/hooks/use-computed-values.cjs +59 -2
- package/lib/vef-form/hooks/use-form-context.cjs +20 -2
- package/lib/vef-form/hooks/use-form-initialization.cjs +49 -2
- package/lib/vef-form/hooks/use-form-instance.cjs +30 -2
- package/lib/vef-form/hooks/use-form-values-change.cjs +34 -2
- package/lib/vef-form/hooks/use-label-width.cjs +22 -2
- package/lib/vef-form/index.cjs +178 -4
- package/lib/vef-form/props.cjs +4 -2
- package/lib/vef-form/store.cjs +71 -2
- package/lib/vef-form/types.cjs +4 -2
- package/lib/vef-form/validation-rules.cjs +312 -2
- package/lib/vef-form-drawer/index.cjs +102 -2
- package/lib/vef-form-drawer/props.cjs +4 -2
- package/lib/vef-form-modal/index.cjs +99 -2
- package/lib/vef-form-modal/props.cjs +4 -2
- package/lib/vef-generic-select/index.cjs +85 -2
- package/lib/vef-generic-select/props.cjs +4 -2
- package/lib/vef-grid/index.cjs +87 -7
- package/lib/vef-grid/props.cjs +8 -2
- package/lib/vef-grid-item/index.cjs +56 -2
- package/lib/vef-grid-item/props.cjs +4 -2
- package/lib/vef-icon/index.cjs +49 -2
- package/lib/vef-icon/props.cjs +4 -2
- package/lib/vef-icon-select/index.cjs +150 -12
- package/lib/vef-icon-select/props.cjs +4 -2
- package/lib/vef-input/hooks/use-input-instance.cjs +19 -2
- package/lib/vef-input/index.cjs +68 -2
- package/lib/vef-input/props.cjs +4 -2
- package/lib/vef-input-number/hooks/use-input-number-instance.cjs +17 -2
- package/lib/vef-input-number/index.cjs +152 -2
- package/lib/vef-input-number/props.cjs +4 -2
- package/lib/vef-layout/common-styles.cjs +14 -5
- package/lib/vef-layout/components/content.cjs +17 -2
- package/lib/vef-layout/components/font-size.cjs +72 -2
- package/lib/vef-layout/components/fullscreen.cjs +27 -2
- package/lib/vef-layout/components/header-action-icons.cjs +33 -7
- package/lib/vef-layout/components/header-content.cjs +23 -2
- package/lib/vef-layout/components/header.cjs +73 -7
- package/lib/vef-layout/components/icon-boy.cjs +73 -2
- package/lib/vef-layout/components/icon-girl.cjs +80 -2
- package/lib/vef-layout/components/icon-menu-fold-left.cjs +27 -2
- package/lib/vef-layout/components/icon-menu-unfold-left.cjs +27 -2
- package/lib/vef-layout/components/menu-groups.cjs +127 -16
- package/lib/vef-layout/components/message.cjs +15 -2
- package/lib/vef-layout/components/search.cjs +15 -2
- package/lib/vef-layout/components/sider.cjs +58 -6
- package/lib/vef-layout/components/title.cjs +57 -9
- package/lib/vef-layout/components/user-avatar.cjs +84 -10
- package/lib/vef-layout/hooks/use-layout-context.cjs +16 -2
- package/lib/vef-layout/index.cjs +37 -3
- package/lib/vef-layout/logo.svg.cjs +8 -2
- package/lib/vef-layout/props.cjs +4 -2
- package/lib/vef-layout/store.cjs +22 -2
- package/lib/vef-loading-placeholder/index.cjs +46 -6
- package/lib/vef-loading-placeholder/props.cjs +4 -2
- package/lib/vef-login/index.cjs +156 -22
- package/lib/vef-login/login-icon.cjs +672 -2
- package/lib/vef-login/props.cjs +4 -2
- package/lib/vef-menu/index.cjs +81 -5
- package/lib/vef-menu/props.cjs +4 -2
- package/lib/vef-modal/components/action-button-wrapper.cjs +53 -2
- package/lib/vef-modal/components/button-props.cjs +4 -2
- package/lib/vef-modal/components/cancel-action-button.cjs +22 -2
- package/lib/vef-modal/components/ok-action-button.cjs +24 -2
- package/lib/vef-modal/context.cjs +21 -2
- package/lib/vef-modal/index.cjs +244 -3
- package/lib/vef-modal/props.cjs +4 -2
- package/lib/vef-not-found/index.cjs +49 -10
- package/lib/vef-not-found/not-found-icon.cjs +848 -2
- package/lib/vef-not-found/props.cjs +4 -2
- package/lib/vef-page/index.cjs +91 -11
- package/lib/vef-page/props.cjs +4 -2
- package/lib/vef-pagination/index.cjs +61 -2
- package/lib/vef-pagination/props.cjs +17 -2
- package/lib/vef-paragraph/index.cjs +93 -2
- package/lib/vef-paragraph/props.cjs +4 -2
- package/lib/vef-password/hooks/use-password-instance.cjs +17 -2
- package/lib/vef-password/index.cjs +71 -2
- package/lib/vef-password/props.cjs +4 -2
- package/lib/vef-popconfirm/index.cjs +60 -2
- package/lib/vef-popconfirm/props.cjs +4 -2
- package/lib/vef-popover/index.cjs +33 -2
- package/lib/vef-popover/props.cjs +4 -2
- package/lib/vef-radio/hooks/use-data-options.cjs +44 -2
- package/lib/vef-radio/hooks/use-radio-instance.cjs +24 -2
- package/lib/vef-radio/index.cjs +92 -4
- package/lib/vef-radio/props.cjs +4 -2
- package/lib/vef-rate/hooks/use-rate-instance.cjs +17 -2
- package/lib/vef-rate/index.cjs +34 -2
- package/lib/vef-rate/props.cjs +4 -2
- package/lib/vef-responsive-container/index.cjs +58 -3
- package/lib/vef-responsive-container/props.cjs +4 -2
- package/lib/vef-responsive-item/index.cjs +27 -3
- package/lib/vef-responsive-item/props.cjs +4 -2
- package/lib/vef-ribbon/index.cjs +42 -2
- package/lib/vef-ribbon/props.cjs +4 -2
- package/lib/vef-row/index.cjs +16 -2
- package/lib/vef-row/props.cjs +4 -2
- package/lib/vef-scroll-area/components/scrollbar.cjs +38 -8
- package/lib/vef-scroll-area/index.cjs +73 -4
- package/lib/vef-scroll-area/props.cjs +4 -2
- package/lib/vef-select/components/option.cjs +27 -4
- package/lib/vef-select/hooks/use-data-options.cjs +51 -2
- package/lib/vef-select/hooks/use-field-names.cjs +25 -2
- package/lib/vef-select/hooks/use-render-label.cjs +27 -3
- package/lib/vef-select/hooks/use-render-option.cjs +23 -2
- package/lib/vef-select/hooks/use-select-instance.cjs +24 -2
- package/lib/vef-select/index.cjs +104 -2
- package/lib/vef-select/props.cjs +4 -2
- package/lib/vef-slider/hooks/use-slider-instance.cjs +17 -2
- package/lib/vef-slider/index.cjs +38 -2
- package/lib/vef-slider/props.cjs +4 -2
- package/lib/vef-sortable-list/components/overlay-item.cjs +35 -3
- package/lib/vef-sortable-list/components/sortable-item.cjs +79 -3
- package/lib/vef-sortable-list/hooks/use-merged-items.cjs +25 -2
- package/lib/vef-sortable-list/index.cjs +118 -2
- package/lib/vef-sortable-list/props.cjs +4 -2
- package/lib/vef-space/index.cjs +29 -2
- package/lib/vef-space/props.cjs +4 -2
- package/lib/vef-spin/index.cjs +16 -2
- package/lib/vef-spin/props.cjs +4 -2
- package/lib/vef-splitter/index.cjs +24 -2
- package/lib/vef-splitter/props.cjs +4 -2
- package/lib/vef-splitter-panel/index.cjs +16 -2
- package/lib/vef-splitter-panel/props.cjs +4 -2
- package/lib/vef-status/index.cjs +41 -2
- package/lib/vef-status/props.cjs +4 -2
- package/lib/vef-table/components/columns/bool.cjs +95 -2
- package/lib/vef-table/components/columns/code.cjs +14 -2
- package/lib/vef-table/components/columns/data-dictionary.cjs +96 -2
- package/lib/vef-table/components/columns/enum.cjs +105 -2
- package/lib/vef-table/components/columns/file.cjs +14 -2
- package/lib/vef-table/components/columns/icon.cjs +14 -2
- package/lib/vef-table/components/columns/id.cjs +86 -2
- package/lib/vef-table/components/columns/image.cjs +15 -2
- package/lib/vef-table/components/columns/index.cjs +37 -2
- package/lib/vef-table/components/columns/markdown.cjs +14 -2
- package/lib/vef-table/components/columns/number.cjs +87 -2
- package/lib/vef-table/components/columns/props.cjs +4 -2
- package/lib/vef-table/components/columns/render.cjs +32 -2
- package/lib/vef-table/components/columns/rich-text.cjs +14 -2
- package/lib/vef-table/components/columns/text.cjs +92 -2
- package/lib/vef-table/components/columns-settings.cjs +199 -11
- package/lib/vef-table/components/operation-buttons.cjs +234 -3
- package/lib/vef-table/components/settings-icon.cjs +23 -4
- package/lib/vef-table/components/table-footer.cjs +106 -4
- package/lib/vef-table/helper.cjs +19 -2
- package/lib/vef-table/hooks/use-computed-batch-buttons.cjs +37 -2
- package/lib/vef-table/hooks/use-computed-columns.cjs +24 -2
- package/lib/vef-table/hooks/use-computed-values.cjs +42 -2
- package/lib/vef-table/hooks/use-data.cjs +57 -2
- package/lib/vef-table/hooks/use-default-column-configs.cjs +31 -2
- package/lib/vef-table/hooks/use-display-value.cjs +40 -2
- package/lib/vef-table/hooks/use-helper-columns.cjs +71 -2
- package/lib/vef-table/hooks/use-operation-column-width.cjs +54 -2
- package/lib/vef-table/hooks/use-pagination-props.cjs +48 -2
- package/lib/vef-table/hooks/use-row-props.cjs +43 -2
- package/lib/vef-table/hooks/use-row-selection-config.cjs +116 -2
- package/lib/vef-table/hooks/use-selected-rows.cjs +30 -2
- package/lib/vef-table/hooks/use-table-columns.cjs +60 -2
- package/lib/vef-table/hooks/use-table-context.cjs +27 -2
- package/lib/vef-table/hooks/use-table-instance.cjs +19 -2
- package/lib/vef-table/hooks/use-table-summary.cjs +46 -2
- package/lib/vef-table/hooks/use-table-width.cjs +17 -2
- package/lib/vef-table/index.cjs +231 -6
- package/lib/vef-table/props.cjs +4 -2
- package/lib/vef-table/store.cjs +23 -2
- package/lib/vef-table/types.cjs +4 -2
- package/lib/vef-tabs/index.cjs +29 -2
- package/lib/vef-tabs/props.cjs +4 -2
- package/lib/vef-tag/index.cjs +32 -2
- package/lib/vef-tag/props.cjs +4 -2
- package/lib/vef-temporal-picker/helper.cjs +61 -2
- package/lib/vef-temporal-picker/hooks/use-dayjs-value.cjs +22 -2
- package/lib/vef-temporal-picker/hooks/use-temporal-limit.cjs +38 -2
- package/lib/vef-temporal-picker/hooks/use-temporal-picker-instance.cjs +23 -2
- package/lib/vef-temporal-picker/index.cjs +129 -2
- package/lib/vef-temporal-picker/props.cjs +4 -2
- package/lib/vef-temporal-range-picker/helper.cjs +61 -2
- package/lib/vef-temporal-range-picker/hooks/use-dayjs-values.cjs +27 -2
- package/lib/vef-temporal-range-picker/hooks/use-temporal-limit.cjs +38 -2
- package/lib/vef-temporal-range-picker/hooks/use-temporal-range-picker-instance.cjs +23 -2
- package/lib/vef-temporal-range-picker/index.cjs +132 -2
- package/lib/vef-temporal-range-picker/props.cjs +8 -2
- package/lib/vef-text/index.cjs +84 -2
- package/lib/vef-text/props.cjs +4 -2
- package/lib/vef-textarea/hooks/use-textarea-instance.cjs +17 -2
- package/lib/vef-textarea/index.cjs +71 -2
- package/lib/vef-textarea/props.cjs +4 -2
- package/lib/vef-title/index.cjs +93 -7
- package/lib/vef-title/props.cjs +4 -2
- package/lib/vef-tooltip/index.cjs +39 -2
- package/lib/vef-tooltip/props.cjs +4 -2
- package/lib/vef-tree-select/hooks/use-change-handler.cjs +37 -2
- package/lib/vef-tree-select/hooks/use-data-options.cjs +49 -2
- package/lib/vef-tree-select/hooks/use-tree-select-instance.cjs +24 -2
- package/lib/vef-tree-select/index.cjs +90 -2
- package/lib/vef-tree-select/props.cjs +4 -2
- package/lib/vef-virtual-grid/index.cjs +111 -4
- package/lib/vef-virtual-grid/props.cjs +4 -2
- package/lib/vef-virtual-list/index.cjs +219 -5
- package/lib/vef-virtual-list/props.cjs +4 -2
- package/package.json +4 -4
- package/types/vef-crud-page/components/crud-actions.d.ts +4 -4
- package/types/vef-crud-page/components/crud-filter.d.ts +5 -5
- package/types/vef-crud-page/components/crud-footer.d.ts +4 -4
- package/types/vef-crud-page/components/crud-form-modal.d.ts +5 -5
- package/types/vef-crud-page/components/crud-header.d.ts +5 -5
- package/types/vef-crud-page/components/crud-table.d.ts +8 -8
- package/types/vef-crud-page/hooks/use-action-buttons.d.ts +3 -3
- package/types/vef-crud-page/hooks/use-crud-context.d.ts +2 -2
- package/types/vef-crud-page/hooks/use-crud-schema.d.ts +4 -4
- package/types/vef-crud-page/hooks/use-operation-buttons.d.ts +2 -2
- package/types/vef-crud-page/index.d.ts +2 -2
- package/types/vef-crud-page/props.d.ts +10 -10
- package/types/vef-crud-page/store.d.ts +13 -13
- package/types/vef-crud-page/types.d.ts +24 -19
|
@@ -1,31 +1,117 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const react = require('@emotion/react');
|
|
8
|
+
const hooks = require('@vef-framework/hooks');
|
|
9
|
+
const shared = require('@vef-framework/shared');
|
|
10
|
+
const react$1 = require('react');
|
|
11
|
+
const index = require('../vef-dynamic-icon/index.cjs');
|
|
12
|
+
const props = require('../vef-dynamic-icon/props.cjs');
|
|
13
|
+
const index$1 = require('../vef-empty-placeholder/index.cjs');
|
|
14
|
+
const index$5 = require('../vef-generic-select/index.cjs');
|
|
15
|
+
const index$3 = require('../vef-space/index.cjs');
|
|
16
|
+
const index$4 = require('../vef-text/index.cjs');
|
|
17
|
+
const index$2 = require('../vef-virtual-grid/index.cjs');
|
|
18
|
+
|
|
19
|
+
const iconsStyle = react.css`
|
|
20
|
+
color: ${shared.themeVariables.colorTextSlate};
|
|
4
21
|
|
|
5
22
|
.vef-icon-select-wrapper {
|
|
6
|
-
padding: calc(${
|
|
23
|
+
padding: calc(${shared.themeVariables.paddingXxs} + 2px) ${shared.themeVariables.paddingXs};
|
|
7
24
|
}
|
|
8
|
-
|
|
25
|
+
`;
|
|
26
|
+
const iconItemStyle = react.css`
|
|
9
27
|
height: 100%;
|
|
10
28
|
display: flex;
|
|
11
29
|
justify-content: center;
|
|
12
30
|
align-items: center;
|
|
13
|
-
background-color: ${
|
|
14
|
-
border-radius: ${
|
|
15
|
-
transition: background-color ${
|
|
31
|
+
background-color: ${shared.themeVariables.colorFillContent};
|
|
32
|
+
border-radius: ${shared.themeVariables.borderRadius};
|
|
33
|
+
transition: background-color ${shared.themeVariables.motionDurationMid} ${shared.themeVariables.motionEaseInOut};
|
|
16
34
|
&:hover {
|
|
17
35
|
cursor: pointer;
|
|
18
|
-
background-color: ${
|
|
36
|
+
background-color: ${shared.themeVariables.colorFillContentHover};
|
|
19
37
|
}
|
|
20
38
|
|
|
21
39
|
&.vef-icon-select-item-selected {
|
|
22
|
-
background-color: ${
|
|
40
|
+
background-color: ${shared.themeVariables.colorPrimaryBg};
|
|
23
41
|
}
|
|
24
42
|
|
|
25
43
|
.vef-icon {
|
|
26
44
|
font-size: 28px;
|
|
27
45
|
}
|
|
28
|
-
|
|
46
|
+
`;
|
|
47
|
+
const iconItemSize = 60;
|
|
48
|
+
const iconNames = Array.from(props.dynamicIconNames);
|
|
49
|
+
function VefIconsContentBase({
|
|
50
|
+
value,
|
|
51
|
+
onChange,
|
|
52
|
+
keyword,
|
|
53
|
+
onConfirm
|
|
54
|
+
}) {
|
|
55
|
+
const { paddingXS, paddingXXS } = hooks.useThemeTokens();
|
|
56
|
+
const filteredIcons = react$1.useMemo(() => {
|
|
57
|
+
const trimmedKeyword = shared.trim(keyword);
|
|
58
|
+
if (!trimmedKeyword) {
|
|
59
|
+
return shared.cluster(iconNames, 6);
|
|
60
|
+
}
|
|
61
|
+
return shared.cluster(
|
|
62
|
+
iconNames.filter((name) => name.includes(trimmedKeyword)),
|
|
63
|
+
6
|
|
64
|
+
);
|
|
65
|
+
}, [keyword]);
|
|
66
|
+
const [width, height] = react$1.useMemo(() => [
|
|
67
|
+
6 * iconItemSize + 12 * 5 + paddingXS * 2,
|
|
68
|
+
5 * iconItemSize + 12 * 4 + (paddingXXS + 2) * 2
|
|
69
|
+
], [paddingXXS, paddingXS]);
|
|
70
|
+
const renderItem = react$1.useCallback(({ item }) => {
|
|
71
|
+
const isSelected = item === value;
|
|
72
|
+
const handleClick = () => {
|
|
73
|
+
if (isSelected) {
|
|
74
|
+
onConfirm?.();
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
onChange(item);
|
|
78
|
+
onConfirm?.();
|
|
79
|
+
};
|
|
80
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
81
|
+
"div",
|
|
82
|
+
{
|
|
83
|
+
className: isSelected ? "vef-icon-select-item-selected" : void 0,
|
|
84
|
+
css: iconItemStyle,
|
|
85
|
+
title: item,
|
|
86
|
+
onClick: handleClick,
|
|
87
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(index.default, { name: item })
|
|
88
|
+
}
|
|
89
|
+
);
|
|
90
|
+
}, [onChange, onConfirm, value]);
|
|
91
|
+
const emptyPlaceholderStyle = react$1.useMemo(() => ({
|
|
92
|
+
width,
|
|
93
|
+
height
|
|
94
|
+
}), [width, height]);
|
|
95
|
+
if (filteredIcons.length === 0) {
|
|
96
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { css: iconsStyle, children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "vef-icon-select-wrapper", style: emptyPlaceholderStyle, children: /* @__PURE__ */ jsxRuntime.jsx(index$1.default, { description: "\u6682\u65E0\u56FE\u6807", presetIcon: "simple" }) }) });
|
|
97
|
+
}
|
|
98
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { css: iconsStyle, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
99
|
+
index$2.default,
|
|
100
|
+
{
|
|
101
|
+
className: "vef-icon-select-wrapper",
|
|
102
|
+
columnWidth: iconItemSize,
|
|
103
|
+
gap: "small",
|
|
104
|
+
height,
|
|
105
|
+
items: filteredIcons,
|
|
106
|
+
renderItem,
|
|
107
|
+
rowHeight: iconItemSize,
|
|
108
|
+
width
|
|
109
|
+
}
|
|
110
|
+
) });
|
|
111
|
+
}
|
|
112
|
+
const VefIconsContent = react$1.memo(VefIconsContentBase);
|
|
113
|
+
VefIconsContent.displayName = "VefIconsContent";
|
|
114
|
+
const labelStyle = react.css`
|
|
29
115
|
width: 100%;
|
|
30
116
|
|
|
31
117
|
.vef-space-item:last-of-type {
|
|
@@ -38,5 +124,57 @@
|
|
|
38
124
|
font-family: inherit;
|
|
39
125
|
color: inherit;
|
|
40
126
|
}
|
|
41
|
-
`;
|
|
127
|
+
`;
|
|
128
|
+
function renderLabel(name) {
|
|
129
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(index$3.default, { css: labelStyle, children: [
|
|
130
|
+
/* @__PURE__ */ jsxRuntime.jsx(index.default, { name }),
|
|
131
|
+
/* @__PURE__ */ jsxRuntime.jsx(index$4.default, { ellipsis: true, children: name })
|
|
132
|
+
] });
|
|
133
|
+
}
|
|
134
|
+
function VefIconSelect({
|
|
135
|
+
defaultValue,
|
|
136
|
+
value,
|
|
137
|
+
size,
|
|
138
|
+
placeholder,
|
|
139
|
+
disabled,
|
|
140
|
+
clearable,
|
|
141
|
+
variant,
|
|
142
|
+
onChange,
|
|
143
|
+
onClear
|
|
144
|
+
}) {
|
|
145
|
+
const [internalValue, setInternalValue] = react$1.useState(defaultValue ?? null);
|
|
146
|
+
const handleChange = react$1.useCallback((changedValue) => {
|
|
147
|
+
if (shared.isUndefined(value)) {
|
|
148
|
+
setInternalValue(changedValue);
|
|
149
|
+
return;
|
|
150
|
+
}
|
|
151
|
+
onChange?.(changedValue);
|
|
152
|
+
}, [onChange, value]);
|
|
153
|
+
const handleClear = react$1.useCallback(() => {
|
|
154
|
+
handleChange(null);
|
|
155
|
+
onClear?.();
|
|
156
|
+
}, [handleChange, onClear]);
|
|
157
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
158
|
+
index$5.default,
|
|
159
|
+
{
|
|
160
|
+
clearable,
|
|
161
|
+
disabled,
|
|
162
|
+
placeholder,
|
|
163
|
+
renderLabel,
|
|
164
|
+
size,
|
|
165
|
+
value: value ?? internalValue,
|
|
166
|
+
variant,
|
|
167
|
+
onClear: handleClear,
|
|
168
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
169
|
+
VefIconsContent,
|
|
170
|
+
{
|
|
171
|
+
value: shared.isUndefined(value) ? internalValue : value,
|
|
172
|
+
onChange: handleChange
|
|
173
|
+
}
|
|
174
|
+
)
|
|
175
|
+
}
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
exports.default = VefIconSelect;
|
|
42
180
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
3
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 */
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
5
|
+
|
|
6
|
+
const react = require('react');
|
|
7
|
+
|
|
8
|
+
function useInputInstance(ref) {
|
|
9
|
+
const inputRef = react.useRef(null);
|
|
10
|
+
react.useImperativeHandle(ref, () => ({
|
|
11
|
+
blur: () => inputRef.current?.blur(),
|
|
12
|
+
focus: () => inputRef.current?.focus({ preventScroll: true }),
|
|
13
|
+
input: inputRef.current?.input ?? null,
|
|
14
|
+
nativeElement: inputRef.current?.nativeElement ?? null
|
|
15
|
+
}));
|
|
16
|
+
return inputRef;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
exports.useInputInstance = useInputInstance;
|
|
3
20
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
package/lib/vef-input/index.cjs
CHANGED
|
@@ -1,3 +1,69 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const shared = require('@vef-framework/shared');
|
|
8
|
+
const antd = require('antd');
|
|
9
|
+
const react = require('react');
|
|
10
|
+
require('../internal/index.cjs');
|
|
11
|
+
const useInputInstance = require('./hooks/use-input-instance.cjs');
|
|
12
|
+
const utils = require('../internal/utils.cjs');
|
|
13
|
+
|
|
14
|
+
function normalizeValue(value) {
|
|
15
|
+
if (value === "") {
|
|
16
|
+
return null;
|
|
17
|
+
}
|
|
18
|
+
return value;
|
|
19
|
+
}
|
|
20
|
+
const VefInput = react.forwardRef(({
|
|
21
|
+
defaultValue,
|
|
22
|
+
value,
|
|
23
|
+
clearable,
|
|
24
|
+
size,
|
|
25
|
+
showCount,
|
|
26
|
+
prepend,
|
|
27
|
+
append,
|
|
28
|
+
onChange,
|
|
29
|
+
onEnterKeyPress,
|
|
30
|
+
onBlur,
|
|
31
|
+
onFocus,
|
|
32
|
+
...restProps
|
|
33
|
+
}, ref) => {
|
|
34
|
+
const eventHandlers = react.useMemo(() => ({
|
|
35
|
+
onChange: shared.isFunction(onChange) ? (event) => onChange(
|
|
36
|
+
normalizeValue(event.target.value)
|
|
37
|
+
) : void 0,
|
|
38
|
+
onPressEnter: shared.isFunction(onEnterKeyPress) ? (event) => onEnterKeyPress(
|
|
39
|
+
normalizeValue(event.target.value)
|
|
40
|
+
) : void 0,
|
|
41
|
+
onBlur: shared.isFunction(onBlur) ? (event) => onBlur(
|
|
42
|
+
normalizeValue(event.target.value)
|
|
43
|
+
) : void 0,
|
|
44
|
+
onFocus: shared.isFunction(onFocus) ? (event) => onFocus(
|
|
45
|
+
normalizeValue(event.target.value)
|
|
46
|
+
) : void 0
|
|
47
|
+
}), [onChange, onEnterKeyPress, onBlur, onFocus]);
|
|
48
|
+
const inputRef = useInputInstance.useInputInstance(ref);
|
|
49
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
50
|
+
antd.Input,
|
|
51
|
+
{
|
|
52
|
+
ref: inputRef,
|
|
53
|
+
addonAfter: append,
|
|
54
|
+
addonBefore: prepend,
|
|
55
|
+
allowClear: clearable,
|
|
56
|
+
defaultValue,
|
|
57
|
+
showCount,
|
|
58
|
+
size: utils.convertBasicSizeToUiSize(size),
|
|
59
|
+
type: "text",
|
|
60
|
+
value,
|
|
61
|
+
...restProps,
|
|
62
|
+
...eventHandlers
|
|
63
|
+
}
|
|
64
|
+
);
|
|
65
|
+
});
|
|
66
|
+
VefInput.displayName = "VefInput";
|
|
67
|
+
|
|
68
|
+
exports.default = VefInput;
|
|
3
69
|
/*! 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 */
|
package/lib/vef-input/props.cjs
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
3
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 */
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
5
|
+
|
|
6
|
+
const react = require('react');
|
|
7
|
+
|
|
8
|
+
function useInputNumberInstance(ref) {
|
|
9
|
+
const inputNumberRef = react.useRef(null);
|
|
10
|
+
react.useImperativeHandle(ref, () => ({
|
|
11
|
+
blur: () => inputNumberRef.current?.blur(),
|
|
12
|
+
focus: () => inputNumberRef.current?.focus({ preventScroll: true })
|
|
13
|
+
}));
|
|
14
|
+
return inputNumberRef;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
exports.useInputNumberInstance = useInputNumberInstance;
|
|
3
18
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,153 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const shared = require('@vef-framework/shared');
|
|
8
|
+
const antd = require('antd');
|
|
9
|
+
const react = require('react');
|
|
10
|
+
require('../internal/index.cjs');
|
|
11
|
+
const useInputNumberInstance = require('./hooks/use-input-number-instance.cjs');
|
|
12
|
+
const utils = require('../internal/utils.cjs');
|
|
13
|
+
|
|
14
|
+
function normalizeValue(value, useStringFormat) {
|
|
15
|
+
const number = Number.parseFloat(value);
|
|
16
|
+
if (Number.isNaN(number)) {
|
|
17
|
+
return null;
|
|
18
|
+
}
|
|
19
|
+
return useStringFormat ? `${number}` : number;
|
|
20
|
+
}
|
|
21
|
+
const VefInputNumber = react.forwardRef(({
|
|
22
|
+
size,
|
|
23
|
+
showControls,
|
|
24
|
+
step,
|
|
25
|
+
min,
|
|
26
|
+
max,
|
|
27
|
+
prepend,
|
|
28
|
+
append,
|
|
29
|
+
...restProps
|
|
30
|
+
}, ref) => {
|
|
31
|
+
const eventHandlerGroup = react.useMemo(() => {
|
|
32
|
+
const { useStringFormat: useStringFormat2 } = restProps;
|
|
33
|
+
if (useStringFormat2) {
|
|
34
|
+
const {
|
|
35
|
+
onChange: onChange3,
|
|
36
|
+
onEnterKeyPress: onEnterKeyPress3,
|
|
37
|
+
onBlur: onBlur3,
|
|
38
|
+
onFocus: onFocus3
|
|
39
|
+
} = restProps;
|
|
40
|
+
return {
|
|
41
|
+
stringFormat: true,
|
|
42
|
+
onChange: shared.isFunction(onChange3) ? (value2) => onChange3(value2) : void 0,
|
|
43
|
+
onPressEnter: shared.isFunction(onEnterKeyPress3) ? (event) => onEnterKeyPress3(
|
|
44
|
+
normalizeValue(
|
|
45
|
+
event.target.value,
|
|
46
|
+
true
|
|
47
|
+
)
|
|
48
|
+
) : void 0,
|
|
49
|
+
onBlur: shared.isFunction(onBlur3) ? (event) => onBlur3(
|
|
50
|
+
normalizeValue(event.target.value, true)
|
|
51
|
+
) : void 0,
|
|
52
|
+
onFocus: shared.isFunction(onFocus3) ? (event) => onFocus3(
|
|
53
|
+
normalizeValue(event.target.value, true)
|
|
54
|
+
) : void 0
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
const {
|
|
58
|
+
onChange: onChange2,
|
|
59
|
+
onEnterKeyPress: onEnterKeyPress2,
|
|
60
|
+
onBlur: onBlur2,
|
|
61
|
+
onFocus: onFocus2
|
|
62
|
+
} = restProps;
|
|
63
|
+
return {
|
|
64
|
+
stringFormat: false,
|
|
65
|
+
onChange: shared.isFunction(onChange2) ? (value2) => onChange2(value2) : void 0,
|
|
66
|
+
onPressEnter: shared.isFunction(onEnterKeyPress2) ? (event) => onEnterKeyPress2(
|
|
67
|
+
normalizeValue(
|
|
68
|
+
event.target.value,
|
|
69
|
+
false
|
|
70
|
+
)
|
|
71
|
+
) : void 0,
|
|
72
|
+
onBlur: shared.isFunction(onBlur2) ? (event) => onBlur2(
|
|
73
|
+
normalizeValue(event.target.value, false)
|
|
74
|
+
) : void 0,
|
|
75
|
+
onFocus: shared.isFunction(onFocus2) ? (event) => onFocus2(
|
|
76
|
+
normalizeValue(event.target.value, false)
|
|
77
|
+
) : void 0
|
|
78
|
+
};
|
|
79
|
+
}, [restProps]);
|
|
80
|
+
const inputNumberRef = useInputNumberInstance.useInputNumberInstance(ref);
|
|
81
|
+
const { useStringFormat } = restProps;
|
|
82
|
+
if (useStringFormat) {
|
|
83
|
+
const {
|
|
84
|
+
useStringFormat: useStringFormat2,
|
|
85
|
+
defaultValue: defaultValue2,
|
|
86
|
+
value: value2,
|
|
87
|
+
onChange: onChange2,
|
|
88
|
+
onEnterKeyPress: onEnterKeyPress2,
|
|
89
|
+
onBlur: onBlur2,
|
|
90
|
+
onFocus: onFocus2,
|
|
91
|
+
...commonProps2
|
|
92
|
+
} = restProps;
|
|
93
|
+
const { stringFormat: stringFormat2 } = eventHandlerGroup;
|
|
94
|
+
if (stringFormat2) {
|
|
95
|
+
const { stringFormat: stringFormat3, ...eventHandlers } = eventHandlerGroup;
|
|
96
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
97
|
+
antd.InputNumber,
|
|
98
|
+
{
|
|
99
|
+
ref: inputNumberRef,
|
|
100
|
+
stringMode: true,
|
|
101
|
+
addonAfter: append,
|
|
102
|
+
addonBefore: prepend,
|
|
103
|
+
controls: showControls,
|
|
104
|
+
css: shared.styles.fullWidth,
|
|
105
|
+
defaultValue: defaultValue2,
|
|
106
|
+
max: `${max}`,
|
|
107
|
+
min: `${min}`,
|
|
108
|
+
size: utils.convertBasicSizeToUiSize(size),
|
|
109
|
+
step: `${step}`,
|
|
110
|
+
value: value2,
|
|
111
|
+
...commonProps2,
|
|
112
|
+
...eventHandlers
|
|
113
|
+
}
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
const {
|
|
119
|
+
useStringFormat: _,
|
|
120
|
+
defaultValue,
|
|
121
|
+
value,
|
|
122
|
+
onChange,
|
|
123
|
+
onEnterKeyPress,
|
|
124
|
+
onBlur,
|
|
125
|
+
onFocus,
|
|
126
|
+
...commonProps
|
|
127
|
+
} = restProps;
|
|
128
|
+
const { stringFormat } = eventHandlerGroup;
|
|
129
|
+
if (!stringFormat) {
|
|
130
|
+
const { stringFormat: stringFormat2, ...eventHandlers } = eventHandlerGroup;
|
|
131
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
132
|
+
antd.InputNumber,
|
|
133
|
+
{
|
|
134
|
+
ref: inputNumberRef,
|
|
135
|
+
addonAfter: append,
|
|
136
|
+
addonBefore: prepend,
|
|
137
|
+
controls: showControls,
|
|
138
|
+
css: shared.styles.fullWidth,
|
|
139
|
+
defaultValue,
|
|
140
|
+
max,
|
|
141
|
+
min,
|
|
142
|
+
step,
|
|
143
|
+
value,
|
|
144
|
+
...commonProps,
|
|
145
|
+
...eventHandlers
|
|
146
|
+
}
|
|
147
|
+
);
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
VefInputNumber.displayName = "VefInputNumber";
|
|
151
|
+
|
|
152
|
+
exports.default = VefInputNumber;
|
|
3
153
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
3
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 */
|
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
5
|
+
|
|
6
|
+
const react = require('@emotion/react');
|
|
7
|
+
const shared = require('@vef-framework/shared');
|
|
8
|
+
|
|
9
|
+
const iconStyle = react.css`
|
|
10
|
+
padding: ${shared.themeVariables.paddingXs};
|
|
11
|
+
${shared.styles.flexCenter}
|
|
12
|
+
`;
|
|
13
|
+
|
|
14
|
+
exports.iconStyle = iconStyle;
|
|
6
15
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const antd = require('antd');
|
|
8
|
+
const react = require('react');
|
|
9
|
+
|
|
10
|
+
const { Content } = antd.Layout;
|
|
11
|
+
function VefContentBase({ children }) {
|
|
12
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Content, { children });
|
|
13
|
+
}
|
|
14
|
+
const VefContent = react.memo(VefContentBase);
|
|
15
|
+
VefContent.displayName = "VefContent";
|
|
16
|
+
|
|
17
|
+
exports.default = VefContent;
|
|
3
18
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,73 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const store = require('../../vef-config-provider/store.cjs');
|
|
8
|
+
const index$1 = require('../../vef-dropdown/index.cjs');
|
|
9
|
+
const index = require('../../vef-icon/index.cjs');
|
|
10
|
+
const commonStyles = require('../common-styles.cjs');
|
|
11
|
+
|
|
12
|
+
function IconFontSize(props) {
|
|
13
|
+
return /* @__PURE__ */ jsxRuntime.jsx("svg", { height: 24, viewBox: "0 0 24 24", width: 24, xmlns: "http://www.w3.org/2000/svg", ...props, children: /* @__PURE__ */ jsxRuntime.jsxs("g", { fill: "none", fillRule: "evenodd", children: [
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" }),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12a1 1 0 0 1 1 1v6a1 1 0 0 1-1.911.412a4 4 0 1 1 0-6.824A1 1 0 0 1 21 12M8 4c.732 0 1.381.473 1.605 1.17l4.347 13.524a1 1 0 0 1-1.904.612L10.664 15H5.336l-1.384 4.306a1 1 0 0 1-1.904-.612L6.395 5.17A1.69 1.69 0 0 1 8 4m10 10a2 2 0 1 0 0 4a2 2 0 0 0 0-4M8 6.712L5.979 13h4.042z", fill: "currentColor" })
|
|
16
|
+
] }) });
|
|
17
|
+
}
|
|
18
|
+
function IconFontSizeDecrease(props) {
|
|
19
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
20
|
+
"svg",
|
|
21
|
+
{
|
|
22
|
+
height: 24,
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
width: 24,
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
...props,
|
|
27
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 19V8.5a3.5 3.5 0 1 1 7 0V19m-7-6h7m10-1h-6", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2 })
|
|
28
|
+
}
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
function IconFontSizeIncrease(props) {
|
|
32
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
33
|
+
"svg",
|
|
34
|
+
{
|
|
35
|
+
height: 24,
|
|
36
|
+
viewBox: "0 0 24 24",
|
|
37
|
+
width: 24,
|
|
38
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
39
|
+
...props,
|
|
40
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 19V8.5a3.5 3.5 0 1 1 7 0V19m-7-6h7m7-4v6m3-3h-6", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2 })
|
|
41
|
+
}
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
const menuItems = [
|
|
45
|
+
{
|
|
46
|
+
key: "medium",
|
|
47
|
+
type: "item",
|
|
48
|
+
label: "\u9ED8\u8BA4\u5B57\u53F7",
|
|
49
|
+
icon: /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: /* @__PURE__ */ jsxRuntime.jsx(IconFontSizeDecrease, {}) })
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
key: "large",
|
|
53
|
+
type: "item",
|
|
54
|
+
label: "\u5927\u5B57\u53F7",
|
|
55
|
+
icon: /* @__PURE__ */ jsxRuntime.jsx(index.default, { children: /* @__PURE__ */ jsxRuntime.jsx(IconFontSizeIncrease, {}) })
|
|
56
|
+
}
|
|
57
|
+
];
|
|
58
|
+
function VefFontSize() {
|
|
59
|
+
const [fontSize, setFontSize] = store.useConfigStore((state) => [state.fontSize, state.setFontSize]);
|
|
60
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
61
|
+
index$1.default,
|
|
62
|
+
{
|
|
63
|
+
selectable: true,
|
|
64
|
+
items: menuItems,
|
|
65
|
+
selectedKeys: [fontSize],
|
|
66
|
+
onChange: ([fontSize2]) => setFontSize(fontSize2),
|
|
67
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { css: commonStyles.iconStyle, children: /* @__PURE__ */ jsxRuntime.jsx(index.default, { size: "large", children: /* @__PURE__ */ jsxRuntime.jsx(IconFontSize, {}) }) })
|
|
68
|
+
}
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
exports.default = VefFontSize;
|
|
3
73
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|
|
@@ -1,3 +1,28 @@
|
|
|
1
|
-
/*! VefFramework version: 1.0.
|
|
2
|
-
|
|
1
|
+
/*! VefFramework version: 1.0.64, build time: 2025-01-10T01:26:01.691Z, made by Venus. */
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
5
|
+
|
|
6
|
+
const jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
7
|
+
const lucideReact = require('lucide-react');
|
|
8
|
+
const react = require('react');
|
|
9
|
+
const index$1 = require('../../vef-icon/index.cjs');
|
|
10
|
+
const index = require('../../vef-tooltip/index.cjs');
|
|
11
|
+
const commonStyles = require('../common-styles.cjs');
|
|
12
|
+
|
|
13
|
+
function VefFullscreen() {
|
|
14
|
+
const [isFullscreen, setIsFullscreen] = react.useState(false);
|
|
15
|
+
const handleClick = react.useCallback(() => {
|
|
16
|
+
if (isFullscreen) {
|
|
17
|
+
document.exitFullscreen();
|
|
18
|
+
setIsFullscreen(false);
|
|
19
|
+
} else {
|
|
20
|
+
document.body.requestFullscreen();
|
|
21
|
+
setIsFullscreen(true);
|
|
22
|
+
}
|
|
23
|
+
}, [isFullscreen]);
|
|
24
|
+
return /* @__PURE__ */ jsxRuntime.jsx(index.default, { content: isFullscreen ? "\u9000\u51FA\u5168\u5C4F" : "\u5168\u5C4F", delay: 0.5, children: /* @__PURE__ */ jsxRuntime.jsx("div", { css: commonStyles.iconStyle, onClick: handleClick, children: /* @__PURE__ */ jsxRuntime.jsx(index$1.default, { size: "large", children: isFullscreen ? /* @__PURE__ */ jsxRuntime.jsx(lucideReact.MinimizeIcon, {}) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.MaximizeIcon, {}) }) }) });
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
exports.default = VefFullscreen;
|
|
3
28
|
/*! VefFramework is a blazingly high-level, modern, flexible, easy-to-use UI framework made by Venus. Follow me on Github: https://github.com/ilxqx! @ilxqx */
|