chore: 迁移图标依赖从 @ant-design/icons-vue 到 @antdv-next/icons

移除对 @ant-design/icons-vue 的依赖,统一使用 @antdv-next/icons。
更新了 pnpm-workspace.yaml 中的包版本管理,并在多个 Vue 组件中修改了图标导入语句。
This commit is contained in:
dap
2026-01-28 09:59:05 +08:00
parent 6baecb5199
commit 0934d7b785
19 changed files with 17 additions and 19 deletions

View File

@@ -11,7 +11,7 @@ import { computed } from 'vue';
import { $t, I18nT } from '@vben/locales';
import { InboxOutlined, UploadOutlined } from '@ant-design/icons-vue';
import { InboxOutlined, UploadOutlined } from '@antdv-next/icons';
import { Upload } from 'antdv-next';
import { uploadApi } from '#/api';

View File

@@ -9,7 +9,7 @@ import type { BaseUploadProps, UploadEmits } from './props';
import { $t, I18nT } from '@vben/locales';
import { PlusOutlined, UploadOutlined } from '@ant-design/icons-vue';
import { PlusOutlined, UploadOutlined } from '@antdv-next/icons';
import { Image, Upload } from 'antdv-next';
import { isFunction } from 'lodash-es';