mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
44 lines
747 B
TypeScript
44 lines
747 B
TypeScript
import {
|
|
SuccessFilled,
|
|
InfoFilled,
|
|
WarningFilled,
|
|
CircleCloseFilled,
|
|
Close,
|
|
Loading,
|
|
CircleCheck,
|
|
CircleClose,
|
|
} from '@element-plus/icons-vue'
|
|
import { definePropType } from './props'
|
|
import type { Component } from 'vue'
|
|
|
|
export const iconPropType = definePropType<string | Component>([
|
|
String,
|
|
Object,
|
|
Function,
|
|
])
|
|
|
|
export const CloseComponents = {
|
|
Close,
|
|
}
|
|
|
|
export const TypeComponents = {
|
|
Close,
|
|
SuccessFilled,
|
|
InfoFilled,
|
|
WarningFilled,
|
|
CircleCloseFilled,
|
|
}
|
|
|
|
export const TypeComponentsMap = {
|
|
success: SuccessFilled,
|
|
warning: WarningFilled,
|
|
error: CircleCloseFilled,
|
|
info: InfoFilled,
|
|
}
|
|
|
|
export const ValidateComponentsMap = {
|
|
validating: Loading,
|
|
success: CircleCheck,
|
|
error: CircleClose,
|
|
}
|