Refactor #3697
parent
85185af001
commit
fb048d6910
|
@ -94,6 +94,12 @@ const SplitButtonProps = [
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'null',
|
default: 'null',
|
||||||
description: 'Defines the size of the button, valid values are "small" and "large".'
|
description: 'Defines the size of the button, valid values are "small" and "large".'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'plain',
|
||||||
|
type: 'boolean',
|
||||||
|
default: 'false',
|
||||||
|
description: 'Add a plain textual class to the button without a background initially.'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -96,6 +96,11 @@ export interface SplitButtonProps {
|
||||||
* Defines the size of the button.
|
* Defines the size of the button.
|
||||||
*/
|
*/
|
||||||
size?: 'small' | 'large' | undefined;
|
size?: 'small' | 'large' | undefined;
|
||||||
|
/**
|
||||||
|
* Add a plain textual class to the button without a background initially.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
plain?: boolean | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -100,6 +100,10 @@ export default {
|
||||||
size: {
|
size: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null
|
default: null
|
||||||
|
},
|
||||||
|
plain: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
|
Loading…
Reference in New Issue