feat: update icon
parent
3a2977a2ed
commit
3c4cc8ea77
|
@ -15,6 +15,7 @@ Use tag `<Icon />` to create an icon and set its type in the `type` prop. Specif
|
||||||
<a-icon type="setting" theme="filled" />
|
<a-icon type="setting" theme="filled" />
|
||||||
<a-icon type="smile" theme="outlined" />
|
<a-icon type="smile" theme="outlined" />
|
||||||
<a-icon type="sync" spin />
|
<a-icon type="sync" spin />
|
||||||
|
<a-icon type="smile" :rotate="180" />
|
||||||
<a-icon type="loading" />
|
<a-icon type="loading" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
| style | Style properties of icon, like `fontSize` and `color` | CSSProperties | - |
|
| style | Style properties of icon, like `fontSize` and `color` | CSSProperties | - |
|
||||||
| theme | Theme of the ant design icon | 'filled' \| 'outlined' \| 'twoTone' | 'outlined' |
|
| theme | Theme of the ant design icon | 'filled' \| 'outlined' \| 'twoTone' | 'outlined' |
|
||||||
| spin | Rotate icon with animation | boolean | false |
|
| spin | Rotate icon with animation | boolean | false |
|
||||||
|
| rotate | Rotate degrees (added in 1.40.0, not working in IE9) | number | - |
|
||||||
| component | The component used for the root node. This will override the **`type`** property. | ComponentType<CustomIconComponentProps\> | - |
|
| component | The component used for the root node. This will override the **`type`** property. | ComponentType<CustomIconComponentProps\> | - |
|
||||||
| twoToneColor | Only support the two-tone icon. Specific the primary color. | string (hex color) | - |
|
| twoToneColor | Only support the two-tone icon. Specific the primary color. | string (hex color) | - |
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ import {
|
||||||
alias,
|
alias,
|
||||||
} from './utils';
|
} from './utils';
|
||||||
import warning from '../_util/warning';
|
import warning from '../_util/warning';
|
||||||
|
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
||||||
import { getTwoToneColor, setTwoToneColor } from './twoTonePrimaryColor';
|
import { getTwoToneColor, setTwoToneColor } from './twoTonePrimaryColor';
|
||||||
import { filterEmpty, getClass } from '../_util/props-util';
|
import { filterEmpty, getClass } from '../_util/props-util';
|
||||||
|
|
||||||
|
@ -20,18 +21,7 @@ setTwoToneColor('#1890ff');
|
||||||
const defaultTheme = 'outlined';
|
const defaultTheme = 'outlined';
|
||||||
let dangerousTheme;
|
let dangerousTheme;
|
||||||
|
|
||||||
const Icon = {
|
function renderIcon(h, locale, context) {
|
||||||
functional: true,
|
|
||||||
name: 'AIcon',
|
|
||||||
props: {
|
|
||||||
type: PropTypes.string,
|
|
||||||
component: PropTypes.any,
|
|
||||||
viewBox: PropTypes.any,
|
|
||||||
spin: PropTypes.bool.def(false),
|
|
||||||
theme: PropTypes.oneOf(['filled', 'outlined', 'twoTone']),
|
|
||||||
twoToneColor: PropTypes.string,
|
|
||||||
},
|
|
||||||
render(h, context) {
|
|
||||||
const { props, slots, listeners, data } = context;
|
const { props, slots, listeners, data } = context;
|
||||||
const {
|
const {
|
||||||
// affect inner <svg>...</svg>
|
// affect inner <svg>...</svg>
|
||||||
|
@ -42,6 +32,8 @@ const Icon = {
|
||||||
// other
|
// other
|
||||||
theme, // default to outlined
|
theme, // default to outlined
|
||||||
twoToneColor,
|
twoToneColor,
|
||||||
|
rotate,
|
||||||
|
tabIndex,
|
||||||
} = props;
|
} = props;
|
||||||
const slotsMap = slots();
|
const slotsMap = slots();
|
||||||
let children = filterEmpty(slotsMap.default);
|
let children = filterEmpty(slotsMap.default);
|
||||||
|
@ -61,6 +53,13 @@ const Icon = {
|
||||||
[`anticon-spin`]: !!spin || type === 'loading',
|
[`anticon-spin`]: !!spin || type === 'loading',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const svgStyle = rotate
|
||||||
|
? {
|
||||||
|
msTransform: `rotate(${rotate}deg)`,
|
||||||
|
transform: `rotate(${rotate}deg)`,
|
||||||
|
}
|
||||||
|
: undefined;
|
||||||
|
|
||||||
let innerNode;
|
let innerNode;
|
||||||
|
|
||||||
// component > children > type
|
// component > children > type
|
||||||
|
@ -68,6 +67,7 @@ const Icon = {
|
||||||
const innerSvgProps = {
|
const innerSvgProps = {
|
||||||
attrs: {
|
attrs: {
|
||||||
...svgBaseProps,
|
...svgBaseProps,
|
||||||
|
style: svgStyle,
|
||||||
viewBox,
|
viewBox,
|
||||||
},
|
},
|
||||||
class: svgClassString,
|
class: svgClassString,
|
||||||
|
@ -112,17 +112,55 @@ const Icon = {
|
||||||
dangerousTheme || theme || defaultTheme,
|
dangerousTheme || theme || defaultTheme,
|
||||||
);
|
);
|
||||||
innerNode = (
|
innerNode = (
|
||||||
<VueIcon class={svgClassString} type={computedType} primaryColor={twoToneColor} />
|
<VueIcon
|
||||||
|
class={svgClassString}
|
||||||
|
type={computedType}
|
||||||
|
primaryColor={twoToneColor}
|
||||||
|
style={svgStyle}
|
||||||
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
let iconTabIndex = tabIndex;
|
||||||
|
if (iconTabIndex === undefined && ('click' in listeners)) {
|
||||||
|
iconTabIndex = -1;
|
||||||
|
}
|
||||||
|
const { attrs, ...restDataProps } = data;
|
||||||
// functional component not support nativeOn,https://github.com/vuejs/vue/issues/7526
|
// functional component not support nativeOn,https://github.com/vuejs/vue/issues/7526
|
||||||
const iProps = {
|
const iProps = {
|
||||||
...data,
|
...restDataProps,
|
||||||
|
attrs: {
|
||||||
|
...attrs,
|
||||||
|
'aria-label': type && `${locale.icon}: ${type}`,
|
||||||
|
tabIndex: iconTabIndex,
|
||||||
|
},
|
||||||
on: { ...listeners, ...data.nativeOn },
|
on: { ...listeners, ...data.nativeOn },
|
||||||
class: classString,
|
class: classString,
|
||||||
staticClass: '',
|
staticClass: '',
|
||||||
};
|
};
|
||||||
return <i {...iProps}>{innerNode}</i>;
|
return <i {...iProps}>{innerNode}</i>;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Icon = {
|
||||||
|
functional: true,
|
||||||
|
name: 'AIcon',
|
||||||
|
props: {
|
||||||
|
tabIndex: PropTypes.number,
|
||||||
|
type: PropTypes.string,
|
||||||
|
component: PropTypes.any,
|
||||||
|
viewBox: PropTypes.any,
|
||||||
|
spin: PropTypes.bool.def(false),
|
||||||
|
rotate: PropTypes.number,
|
||||||
|
theme: PropTypes.oneOf(['filled', 'outlined', 'twoTone']),
|
||||||
|
twoToneColor: PropTypes.string,
|
||||||
|
role: PropTypes.string,
|
||||||
|
},
|
||||||
|
render(h, context) {
|
||||||
|
return (
|
||||||
|
<LocaleReceiver
|
||||||
|
componentName="Icon"
|
||||||
|
scopedSlots={{ default: (locale) => renderIcon(h, locale, context) }}
|
||||||
|
/>
|
||||||
|
);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
| style | 设置图标的样式,例如 `fontSize` 和 `color` | CSSProperties | - |
|
| style | 设置图标的样式,例如 `fontSize` 和 `color` | CSSProperties | - |
|
||||||
| theme | 图标主题风格。可选实心、描线、双色等主题风格,适用于官方图标 | 'filled' \| 'outlined' \| 'twoTone' | 'outlined' |
|
| theme | 图标主题风格。可选实心、描线、双色等主题风格,适用于官方图标 | 'filled' \| 'outlined' \| 'twoTone' | 'outlined' |
|
||||||
| spin | 是否有旋转动画 | boolean | false |
|
| spin | 是否有旋转动画 | boolean | false |
|
||||||
|
| rotate | 图标旋转角度(1.40.0 后新增,IE9 无效) | number | - |
|
||||||
| component | 控制如何渲染图标,通常是一个渲染根标签为 `<svg>` 的 `Vue` 组件,**会使 `type` 属性失效** | ComponentType<CustomIconComponentProps\> | - |
|
| component | 控制如何渲染图标,通常是一个渲染根标签为 `<svg>` 的 `Vue` 组件,**会使 `type` 属性失效** | ComponentType<CustomIconComponentProps\> | - |
|
||||||
| twoToneColor | 仅适用双色图标。设置双色图标的主要颜色 | string (十六进制颜色) | - |
|
| twoToneColor | 仅适用双色图标。设置双色图标的主要颜色 | string (十六进制颜色) | - |
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
import PropTypes from '../_util/vue-types';
|
import PropTypes from '../_util/vue-types';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import omit from 'omit.js';
|
import omit from 'omit.js';
|
||||||
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
|
||||||
import defaultLocale from '../locale-provider/default';
|
|
||||||
import { ConfigConsumerProps } from '../config-provider';
|
import { ConfigConsumerProps } from '../config-provider';
|
||||||
|
|
||||||
import Spin from '../spin';
|
import Spin from '../spin';
|
||||||
|
|
Loading…
Reference in New Issue