mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
149729e524
* feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
78 lines
1.9 KiB
JavaScript
78 lines
1.9 KiB
JavaScript
import warning from '../../../../components/_util/warning';
|
|
|
|
// These props make sure that the SVG behaviours like general text.
|
|
// Reference: https://blog.prototypr.io/align-svg-icons-to-text-and-say-goodbye-to-font-icons-d44b3d7b26b4
|
|
export const svgBaseProps = {
|
|
width: '1em',
|
|
height: '1em',
|
|
fill: 'currentColor',
|
|
'aria-hidden': true,
|
|
focusable: 'false',
|
|
};
|
|
|
|
const fillTester = /-fill$/;
|
|
const outlineTester = /-o$/;
|
|
const twoToneTester = /-twotone$/;
|
|
|
|
export function getThemeFromTypeName(type) {
|
|
let result = null;
|
|
if (fillTester.test(type)) {
|
|
result = 'filled';
|
|
} else if (outlineTester.test(type)) {
|
|
result = 'outlined';
|
|
} else if (twoToneTester.test(type)) {
|
|
result = 'twoTone';
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export function removeTypeTheme(type) {
|
|
return type
|
|
.replace(fillTester, '')
|
|
.replace(outlineTester, '')
|
|
.replace(twoToneTester, '');
|
|
}
|
|
|
|
export function withThemeSuffix(type, theme) {
|
|
let result = type;
|
|
if (theme === 'filled') {
|
|
result += '-fill';
|
|
} else if (theme === 'outlined') {
|
|
result += '-o';
|
|
} else if (theme === 'twoTone') {
|
|
result += '-twotone';
|
|
} else {
|
|
warning(false, 'Icon', `This icon '${type}' has unknown theme '${theme}'`);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// For alias or compatibility
|
|
export function alias(type) {
|
|
let newType = type;
|
|
switch (type) {
|
|
case 'cross':
|
|
newType = 'close';
|
|
break;
|
|
// https://github.com/ant-design/ant-design/issues/13007
|
|
case 'interation':
|
|
newType = 'interaction';
|
|
break;
|
|
// https://github.com/ant-design/ant-design/issues/16810
|
|
case 'canlendar':
|
|
newType = 'calendar';
|
|
break;
|
|
// https://github.com/ant-design/ant-design/issues/17448
|
|
case 'colum-height':
|
|
newType = 'column-height';
|
|
break;
|
|
default:
|
|
}
|
|
warning(
|
|
newType === type,
|
|
'Icon',
|
|
`Icon '${type}' was a typo and is now deprecated, please use '${newType}' instead.`,
|
|
);
|
|
return newType;
|
|
}
|