mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
143 lines
3.0 KiB
TypeScript
143 lines
3.0 KiB
TypeScript
import { useSizeProp } from '@element-plus/hooks'
|
|
import { buildProps, definePropType, iconPropType } from '@element-plus/utils'
|
|
import { Loading } from '@element-plus/icons-vue'
|
|
|
|
import type { Component, ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'
|
|
|
|
export const buttonTypes = [
|
|
'default',
|
|
'primary',
|
|
'success',
|
|
'warning',
|
|
'info',
|
|
'danger',
|
|
/**
|
|
* @deprecated
|
|
* Text type will be deprecated in the next major version (3.0.0)
|
|
*/
|
|
'text',
|
|
'',
|
|
] as const
|
|
export const buttonNativeTypes = ['button', 'submit', 'reset'] as const
|
|
|
|
export const buttonProps = buildProps({
|
|
/**
|
|
* @description button size
|
|
*/
|
|
size: useSizeProp,
|
|
/**
|
|
* @description disable the button
|
|
*/
|
|
disabled: Boolean,
|
|
/**
|
|
* @description button type
|
|
*/
|
|
type: {
|
|
type: String,
|
|
values: buttonTypes,
|
|
default: '',
|
|
},
|
|
/**
|
|
* @description icon component
|
|
*/
|
|
icon: {
|
|
type: iconPropType,
|
|
},
|
|
/**
|
|
* @description native button type
|
|
*/
|
|
nativeType: {
|
|
type: String,
|
|
values: buttonNativeTypes,
|
|
default: 'button',
|
|
},
|
|
/**
|
|
* @description determine whether it's loading
|
|
*/
|
|
loading: Boolean,
|
|
/**
|
|
* @description customize loading icon component
|
|
*/
|
|
loadingIcon: {
|
|
type: iconPropType,
|
|
default: () => Loading,
|
|
},
|
|
/**
|
|
* @description determine whether it's a plain button
|
|
*/
|
|
plain: {
|
|
type: Boolean,
|
|
default: undefined,
|
|
},
|
|
/**
|
|
* @description determine whether it's a text button
|
|
*/
|
|
text: {
|
|
type: Boolean,
|
|
default: undefined,
|
|
},
|
|
/**
|
|
* @description determine whether it's a link button
|
|
*/
|
|
link: Boolean,
|
|
/**
|
|
* @description determine whether the text button background color is always on
|
|
*/
|
|
bg: Boolean,
|
|
/**
|
|
* @description native button autofocus
|
|
*/
|
|
autofocus: Boolean,
|
|
/**
|
|
* @description determine whether it's a round button
|
|
*/
|
|
round: {
|
|
type: Boolean,
|
|
default: undefined,
|
|
},
|
|
/**
|
|
* @description determine whether it's a circle button
|
|
*/
|
|
circle: Boolean,
|
|
/**
|
|
* @description custom button color, automatically calculate `hover` and `active` color
|
|
*/
|
|
color: String,
|
|
/**
|
|
* @description dark mode, which automatically converts `color` to dark mode colors
|
|
*/
|
|
dark: Boolean,
|
|
/**
|
|
* @description automatically insert a space between two chinese characters
|
|
*/
|
|
autoInsertSpace: {
|
|
type: Boolean,
|
|
default: undefined,
|
|
},
|
|
/**
|
|
* @description custom element tag
|
|
*/
|
|
tag: {
|
|
type: definePropType<string | Component>([String, Object]),
|
|
default: 'button',
|
|
},
|
|
} as const)
|
|
export const buttonEmits = {
|
|
click: (evt: MouseEvent) => evt instanceof MouseEvent,
|
|
}
|
|
|
|
export type ButtonProps = ExtractPropTypes<typeof buttonProps>
|
|
export type ButtonPropsPublic = __ExtractPublicPropTypes<typeof buttonProps>
|
|
export type ButtonEmits = typeof buttonEmits
|
|
|
|
export type ButtonType = ButtonProps['type']
|
|
export type ButtonNativeType = ButtonProps['nativeType']
|
|
|
|
export interface ButtonConfigContext {
|
|
type?: string
|
|
plain?: boolean
|
|
text?: boolean
|
|
round?: boolean
|
|
autoInsertSpace?: boolean
|
|
}
|