Update API doc
parent
f8bffa473d
commit
f37a0a783e
|
@ -4231,6 +4231,20 @@
|
||||||
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
"methodDescription": "Defines methods that can be accessed by the component's reference.",
|
||||||
"typeDescription": "Defines the custom types used by the module.",
|
"typeDescription": "Defines the custom types used by the module.",
|
||||||
"values": {
|
"values": {
|
||||||
|
"BadgePassThroughMethodOptions": {
|
||||||
|
"description": "Custom passthrough(pt) option method.",
|
||||||
|
"relatedProp": "",
|
||||||
|
"props": [
|
||||||
|
{
|
||||||
|
"name": "context",
|
||||||
|
"optional": false,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "BadgeContext",
|
||||||
|
"default": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"methods": []
|
||||||
|
},
|
||||||
"BadgeDirectiveOptions": {
|
"BadgeDirectiveOptions": {
|
||||||
"description": "Defines options of Badge.",
|
"description": "Defines options of Badge.",
|
||||||
"relatedProp": "",
|
"relatedProp": "",
|
||||||
|
@ -4290,6 +4304,45 @@
|
||||||
],
|
],
|
||||||
"methods": []
|
"methods": []
|
||||||
},
|
},
|
||||||
|
"BadgeContext": {
|
||||||
|
"description": "Defines current options in Badge directive.",
|
||||||
|
"relatedProp": "",
|
||||||
|
"props": [
|
||||||
|
{
|
||||||
|
"name": "info",
|
||||||
|
"optional": false,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": "true",
|
||||||
|
"description": "Current info state as a boolean."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "success",
|
||||||
|
"optional": false,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": "",
|
||||||
|
"description": "Current success state as a boolean."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "warning",
|
||||||
|
"optional": false,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": "",
|
||||||
|
"description": "Current warning state as a boolean."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "danger",
|
||||||
|
"optional": false,
|
||||||
|
"readonly": false,
|
||||||
|
"type": "boolean",
|
||||||
|
"default": "",
|
||||||
|
"description": "Current danger state as a boolean."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"methods": []
|
||||||
|
},
|
||||||
"BadgeDirectiveModifiers": {
|
"BadgeDirectiveModifiers": {
|
||||||
"description": "Defines modifiers of Badge directive.",
|
"description": "Defines modifiers of Badge directive.",
|
||||||
"relatedProp": "",
|
"relatedProp": "",
|
||||||
|
@ -4359,7 +4412,7 @@
|
||||||
"description": "Defines the custom types used by the module.",
|
"description": "Defines the custom types used by the module.",
|
||||||
"values": {
|
"values": {
|
||||||
"BadgeDirectivePassThroughOptionType": {
|
"BadgeDirectivePassThroughOptionType": {
|
||||||
"values": "BadgeDirectivePassThroughAttributes | null | undefined"
|
"values": "BadgeDirectivePassThroughAttributes | (options: BadgePassThroughMethodOptions) => BadgeDirectivePassThroughAttributes | null | undefined"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue