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: 新增虚拟滚动表格+拖拽2.0+分类搜索组件 #1804

Merged
merged 3 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions packages/devui-vue/devui-cli/templates/vue-devui.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import type { App } from 'vue';

${imports.join('\n')}
import './style/devui.scss';
import './style/index.scss';

const installs = [
${installs.join(',\n ')}
Expand Down
15 changes: 15 additions & 0 deletions packages/devui-vue/devui/category-search/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { App } from 'vue';
import CategorySearch from './src/category-search';

export * from './src/category-search-types';

export { CategorySearch };

export default {
title: 'CategorySearch 分类搜索',
category: '演进中',
status: '100%',
install(app: App): void {
app.component(CategorySearch.name, CategorySearch);
}
}
112 changes: 112 additions & 0 deletions packages/devui-vue/devui/category-search/src/category-search-const.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
export const DELAY = 300;
export const SearchKeyField = 'devuiCategorySearchKeyword';
export const DROPDOWN_ANIMATION_TIMEOUT = 200;
export const COLORS = [
'#f2f5fc',
'#e9edfa',
'#beccfa',
'#96adfa',
'#7693f5',
'#5e7ce0',
'#526ecc',
'#465eb8',
'#3c51a6',
'#344899',
'#2a3c85',
'#ebf6ff',
'#d1ebff',
'#b8e0ff',
'#9ed5ff',
'#85caff',
'#6cbfff',
'#4ea6e6',
'#3590cc',
'#207ab3',
'#0f6999',
'#035880',
'#edfff9',
'#cffcee',
'#acf2dc',
'#8be8cb',
'#6ddebb',
'#50d4ab',
'#3ac295',
'#27b080',
'#169e6c',
'#088c58',
'#007a45',
'#f0ffe6',
'#e5ffd4',
'#d8fcc0',
'#c5f2a7',
'#b3e890',
'#a6dd82',
'#92cc68',
'#7eba50',
'#6ca83b',
'#5e9629',
'#518519',
'#fffbf0',
'#fff1c2',
'#ffe794',
'#ffdc66',
'#ffd138',
'#fac20a',
'#e3aa00',
'#cc9600',
'#b58200',
'#9e6f00',
'#875c00',
'#fff3e8',
'#ffe1c7',
'#ffd0a6',
'#ffbf85',
'#ffad63',
'#fa9841',
'#e37d29',
'#cc6414',
'#b54e04',
'#9e3f00',
'#873400',
'#ffeeed',
'#ffd5d4',
'#ffbcba',
'#ffa4a1',
'#ff8b87',
'#f66f6a',
'#de504e',
'#c73636',
'#b02121',
'#991111',
'#820404',
'#ffedf3',
'#ffd4e3',
'#ffbad2',
'#ffa1c2',
'#fc86b0',
'#f3689a',
'#db4d83',
'#c4356e',
'#ad215b',
'#96114d',
'#800440',
'#f5f0ff',
'#e7d9ff',
'#d8c2ff',
'#caabff',
'#bc94ff',
'#a97af8',
'#8a5ce0',
'#6f42c9',
'#572db3',
'#3f1a9c',
'#2a0c85',
];

export function getSearchMessage(type: string) {
return `仅搜索关键字 '${type}'`;
}

export function getFindingMessage(msg: string) {
return `在 '${msg}' 中查找`;
}
Loading
Loading