Class type updates
parent
83b9378d11
commit
d8f1f6d269
|
@ -19,7 +19,7 @@ export default {
|
||||||
default: 'left'
|
default: 'left'
|
||||||
},
|
},
|
||||||
iconClass: {
|
iconClass: {
|
||||||
type: String,
|
type: [String, Object],
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
badge: {
|
badge: {
|
||||||
|
@ -27,7 +27,7 @@ export default {
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
badgeClass: {
|
badgeClass: {
|
||||||
type: String,
|
type: [String, Object],
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
badgeSeverity: {
|
badgeSeverity: {
|
||||||
|
|
|
@ -107,7 +107,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
|
||||||
/**
|
/**
|
||||||
* Style class of the icon.
|
* Style class of the icon.
|
||||||
*/
|
*/
|
||||||
iconClass?: string | undefined;
|
iconClass?: string | object | undefined;
|
||||||
/**
|
/**
|
||||||
* Value of the badge.
|
* Value of the badge.
|
||||||
*/
|
*/
|
||||||
|
@ -115,7 +115,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
|
||||||
/**
|
/**
|
||||||
* Style class of the badge.
|
* Style class of the badge.
|
||||||
*/
|
*/
|
||||||
badgeClass?: string | undefined;
|
badgeClass?: string | object | undefined;
|
||||||
/**
|
/**
|
||||||
* Severity type of the badge.
|
* Severity type of the badge.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue