Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add ellipsis-text component #4019

Merged
merged 23 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b3780c1
chore: define components router
wangjue666 Aug 3, 2024
3c24632
chore: 组件路由放置到演示路由下
wangjue666 Aug 3, 2024
1309cf3
Revert "chore: 组件路由放置到演示路由下"
wangjue666 Aug 5, 2024
ffe11de
chore: typo
wangjue666 Aug 5, 2024
ff534a1
chore: 增加密码强度组件
wangjue666 Aug 5, 2024
24bd60e
chore: 国际化密码强度的菜单
wangjue666 Aug 5, 2024
4a11f2a
chore(@vben/web-antd): 迁移文本省略组件
wangjue666 Aug 6, 2024
0dab098
chore: typo
wangjue666 Aug 6, 2024
9b180cb
chore: 组件命名方式遵从packages
likui628 Aug 6, 2024
6bf7112
chore: Optimize the onExpand function
wangjue666 Aug 7, 2024
301b709
chore: update css
wangjue666 Aug 7, 2024
11b3460
chore(@vben/web-antd): optimize the getPosition function
wangjue666 Aug 7, 2024
362b169
chore: add ellipsis-text in comm-ui
wangjue666 Aug 7, 2024
b4cd5f2
chore: 文本省略组件迁移至common-ui
wangjue666 Aug 7, 2024
f7b310b
feat(@vben/common-ui): Tooltip的tip支持style传参
wangjue666 Aug 7, 2024
8d01a1f
chore: 优化组件渲染
wangjue666 Aug 7, 2024
127fa2c
chore: 使用css module解决样式冲突
wangjue666 Aug 7, 2024
0dbe66f
Merge branch 'main' into wangjue-define-comp-router
likui628 Aug 7, 2024
71d4c9e
chore: update props
wangjue666 Aug 8, 2024
d95de2b
Merge branch 'wangjue-define-comp-router' of https://github.com/vbenj…
wangjue666 Aug 8, 2024
5b84eae
Merge branch 'main' into wangjue-define-comp-router
wangjue666 Aug 8, 2024
5f6db64
chore: 优化css
wangjue666 Aug 8, 2024
6d80142
chore: rm unuse attr
wangjue666 Aug 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/web-antd/src/locales/langs/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
"title": "Active Menu Icon",
"children": "Children Active Icon"
},
"fallback": { "title": "Fallback Page" },
"fallback": {
"title": "Fallback Page"
},
"features": {
"title": "Features",
"hideChildrenInMenu": "Hide Menu Children",
Expand All @@ -54,6 +56,9 @@
"level": "Level Mode",
"levelDetail": "Level Mode Detail"
}
},
"comp": {
"title": "Component"
}
}
}
3 changes: 3 additions & 0 deletions apps/web-antd/src/locales/langs/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
"levelDetail": "层级模式详情",
"lateralDetail": "平级模式详情"
}
},
"comp": {
"title": "组件"
}
}
}
21 changes: 21 additions & 0 deletions apps/web-antd/src/router/routes/modules/comp.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import type { RouteRecordRaw } from 'vue-router';

import { BasicLayout } from '#/layouts';
import { $t } from '#/locales';

const routes: RouteRecordRaw[] = [
{
component: BasicLayout,
meta: {
icon: 'ic:baseline-view-in-ar',
keepAlive: true,
order: 1000,
title: $t('page.comp.title'),
},
name: 'Comp',
path: '/comp',
children: [],
},
];

export default routes;
Loading