Skip to content

Commit 7eff46d

Browse files
committed
refactor(project): business changed its name to effects, and universal-ui changed its name to common-ui
1 parent 5e0b01c commit 7eff46d

File tree

186 files changed

+109
-106
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+109
-106
lines changed

apps/web-antd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@vben/layouts": "workspace:*",
3939
"@vben/styles": "workspace:*",
4040
"@vben/types": "workspace:*",
41-
"@vben/universal-ui": "workspace:*",
41+
"@vben/common-ui": "workspace:*",
4242
"@vben/utils": "workspace:*",
4343
"@vueuse/core": "^10.11.0",
4444
"ant-design-vue": "^4.2.3",

apps/web-antd/src/app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts" setup>
22
import { computed } from 'vue';
33
4-
import { GlobalProvider } from '@vben/universal-ui';
4+
import { GlobalProvider } from '@vben/common-ui';
55
import { preferences, usePreferences } from '@vben-core/preferences';
66
77
import { App, ConfigProvider, theme } from 'ant-design-vue';

apps/web-antd/src/layouts/basic.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { computed, ref } from 'vue';
33
import { useRouter } from 'vue-router';
44
5+
import { AuthenticationLoginExpiredModal } from '@vben/common-ui';
56
import { LOGIN_PATH } from '@vben/constants';
67
import { IcRoundCreditScore, MdiDriveDocument, MdiGithub } from '@vben/icons';
78
import {
@@ -11,7 +12,6 @@ import {
1112
NotificationItem,
1213
UserDropdown,
1314
} from '@vben/layouts';
14-
import { AuthenticationLoginExpiredModal } from '@vben/universal-ui';
1515
import { openWindow } from '@vben/utils';
1616
import { preferences } from '@vben-core/preferences';
1717

apps/web-antd/src/store/modules/access.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import type { LoginAndRegisterParams } from '@vben/common-ui';
12
import type { MenuRecordRaw, UserInfo } from '@vben/types';
2-
import type { LoginAndRegisterParams } from '@vben/universal-ui';
33
import type { RouteRecordRaw } from 'vue-router';
44

55
import { computed, ref } from 'vue';

apps/web-antd/src/views/_core/authentication/code-login.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script lang="ts" setup>
2-
import type { LoginCodeParams } from '@vben/universal-ui';
2+
import type { LoginCodeParams } from '@vben/common-ui';
33
44
import { ref } from 'vue';
55
6-
import { AuthenticationCodeLogin } from '@vben/universal-ui';
6+
import { AuthenticationCodeLogin } from '@vben/common-ui';
77
88
defineOptions({ name: 'CodeLogin' });
99

apps/web-antd/src/views/_core/authentication/forget-password.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script lang="ts" setup>
22
import { ref } from 'vue';
33
4-
import { AuthenticationForgetPassword } from '@vben/universal-ui';
4+
import { AuthenticationForgetPassword } from '@vben/common-ui';
55
66
defineOptions({ name: 'ForgetPassword' });
77

apps/web-antd/src/views/_core/authentication/login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import { AuthenticationLogin } from '@vben/universal-ui';
2+
import { AuthenticationLogin } from '@vben/common-ui';
33
44
import { useAccessStore } from '#/store';
55

apps/web-antd/src/views/_core/authentication/qrcode-login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import { AuthenticationQrCodeLogin } from '@vben/universal-ui';
2+
import { AuthenticationQrCodeLogin } from '@vben/common-ui';
33
44
defineOptions({ name: 'QrCodeLogin' });
55
</script>

apps/web-antd/src/views/_core/authentication/register.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<script lang="ts" setup>
2-
import type { LoginAndRegisterParams } from '@vben/universal-ui';
2+
import type { LoginAndRegisterParams } from '@vben/common-ui';
33
44
import { ref } from 'vue';
55
6-
import { AuthenticationRegister } from '@vben/universal-ui';
6+
import { AuthenticationRegister } from '@vben/common-ui';
77
88
defineOptions({ name: 'Register' });
99

apps/web-antd/src/views/_core/fallback/coming-soon.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script lang="ts" setup>
2-
import { Fallback } from '@vben/universal-ui';
2+
import { Fallback } from '@vben/common-ui';
33
</script>
44

55
<template>

0 commit comments

Comments
 (0)