pull/3868/head
Tuğçe Küçükoğlu 2023-04-14 15:04:50 +03:00
commit c5f81757c6
1 changed files with 27 additions and 3 deletions

View File

@ -23863,7 +23863,7 @@
"name": "severity", "name": "severity",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "\"error\" | \"success\" | \"info\" | \"warn\"",
"default": "info", "default": "info",
"description": "Severity level of the message." "description": "Severity level of the message."
}, },
@ -23992,12 +23992,36 @@
"description": "Icon to display in the toast close button." "description": "Icon to display in the toast close button."
}, },
{ {
"name": "icon", "name": "infoIcon",
"optional": true, "optional": true,
"readonly": false, "readonly": false,
"type": "string", "type": "string",
"default": "", "default": "",
"description": "Icon to display in the toast." "description": "Icon to display in the toast with info severity."
},
{
"name": "warnIcon",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Icon to display in the toast with warn severity."
},
{
"name": "errorIcon",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Icon to display in the toast with error severity."
},
{
"name": "successIcon",
"optional": true,
"readonly": false,
"type": "string",
"default": "",
"description": "Icon to display in the toast with success severity."
}, },
{ {
"name": "closeButtonProps", "name": "closeButtonProps",