pull/3711/head
Tuğçe Küçükoğlu 2023-03-06 11:16:57 +03:00
parent 85185af001
commit fb048d6910
3 changed files with 15 additions and 0 deletions

View File

@ -94,6 +94,12 @@ const SplitButtonProps = [
type: 'string',
default: 'null',
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.'
}
];

View File

@ -96,6 +96,11 @@ export interface SplitButtonProps {
* Defines the size of the button.
*/
size?: 'small' | 'large' | undefined;
/**
* Add a plain textual class to the button without a background initially.
* @defaultValue false
*/
plain?: boolean | undefined;
}
/**

View File

@ -100,6 +100,10 @@ export default {
size: {
type: String,
default: null
},
plain: {
type: Boolean,
default: false
}
},
data() {