You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

221 lines
3.8 KiB

import manifest from '@ant-design/icons/lib/manifest';
let allIcons: string[] = [];
Object.keys(manifest).forEach(theme => {
allIcons = [...allIcons, ...(manifest as any)[theme]];
});
// Hide typo-name icons
allIcons = allIcons.filter(
(name: string) => !['interation', 'canlendar', 'colum-height'].includes(name),
);
6 years ago
export const categories = {
all: [...new Set(allIcons)],
6 years ago
direction: [
'step-backward',
'step-forward',
'fast-backward',
'fast-forward',
'shrink',
'arrows-alt',
'down',
'up',
'left',
'right',
'caret-up',
'caret-down',
'caret-left',
'caret-right',
'up-circle',
'down-circle',
'left-circle',
'right-circle',
'double-right',
'double-left',
'vertical-left',
'vertical-right',
'vertical-align-top',
'vertical-align-middle',
'vertical-align-bottom',
'forward',
'backward',
'rollback',
'enter',
'retweet',
'swap',
'swap-left',
'swap-right',
'arrow-up',
'arrow-down',
'arrow-left',
'arrow-right',
'play-circle',
'up-square',
'down-square',
'left-square',
'right-square',
'login',
'logout',
'menu-fold',
'menu-unfold',
'border-bottom',
'border-horizontal',
'border-inner',
'border-outer',
'border-left',
'border-right',
'border-top',
'border-verticle',
'pic-center',
'pic-left',
'pic-right',
'radius-bottomleft',
'radius-bottomright',
'radius-upleft',
'radius-upright',
'fullscreen',
'fullscreen-exit',
6 years ago
],
suggestion: [
'question',
'question-circle',
'plus',
'plus-circle',
'pause',
'pause-circle',
'minus',
'minus-circle',
'plus-square',
'minus-square',
'info',
'info-circle',
'exclamation',
'exclamation-circle',
'close',
'close-circle',
'close-square',
'check',
'check-circle',
6 years ago
'check-square',
'clock-circle',
'warning',
'issues-close',
'stop',
6 years ago
],
editor: [
'edit',
'form',
'copy',
'scissor',
'delete',
'snippets',
'diff',
'highlight',
'align-center',
'align-left',
'align-right',
'bg-colors',
'bold',
'italic',
'underline',
'strikethrough',
'redo',
'undo',
'zoom-in',
'zoom-out',
'font-colors',
'font-size',
'line-height',
'dash',
'small-dash',
'sort-ascending',
'sort-descending',
'drag',
'ordered-list',
'unordered-list',
'radius-setting',
'column-width',
'column-height',
6 years ago
],
data: [
'area-chart',
'pie-chart',
'bar-chart',
'dot-chart',
'line-chart',
'radar-chart',
'heat-map',
'fall',
'rise',
'stock',
'box-plot',
'fund',
6 years ago
'sliders',
6 years ago
],
logo: [
'android',
'apple',
'windows',
'ie',
'chrome',
'github',
'aliwangwang',
6 years ago
'dingding',
'weibo-square',
'weibo-circle',
'taobao-circle',
'html5',
'weibo',
'twitter',
'wechat',
'youtube',
'alipay-circle',
'taobao',
'skype',
'qq',
'medium-workmark',
'gitlab',
'medium',
'linkedin',
'google-plus',
'dropbox',
'facebook',
'codepen',
'code-sandbox',
'code-sandbox-circle',
'amazon',
'google',
'codepen-circle',
'alipay',
'ant-design',
'ant-cloud',
'aliyun',
'zhihu',
'slack',
'slack-square',
'behance',
'behance-square',
'dribbble',
'dribbble-square',
'instagram',
'yuque',
'alibaba',
'yahoo',
'reddit',
'sketch',
6 years ago
],
};
export interface Categories {
all: string[];
6 years ago
direction: string[];
suggestion: string[];
logo: string[];
data: string[];
editor: string[];
other?: string[];
6 years ago
}
export type CategoriesKeys = keyof Categories;