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