Skip to content

Commit

Permalink
Fixed #16220 | Documentation for tag using property that is deprecate…
Browse files Browse the repository at this point in the history
…d since v15
  • Loading branch information
mehmetcetin01140 committed Dec 17, 2024
1 parent 3450fec commit dac4232
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/app/components/tag/tag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export class Tag {
/**
* Icon of the tag to display next to the value.
* @group Props
* @deprecated since 15.4.2. Use 'icon' template.
*/
@Input() icon: string | undefined;
/**
Expand Down
62 changes: 56 additions & 6 deletions src/app/showcase/doc/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@
"name": "items",
"optional": false,
"readonly": false,
"type": "SelectItem<any>[]"
"type": "SelectItem<T>[]"
}
]
}
Expand Down Expand Up @@ -3293,6 +3293,20 @@
"readonly": false,
"type": "boolean",
"description": "Defines if the node is loading."
},
{
"name": "lastChild",
"optional": true,
"readonly": false,
"type": "boolean",
"description": "Defines if the node is the last child."
},
{
"name": "index",
"optional": true,
"readonly": false,
"type": "number",
"description": "Index of the node relative to its level."
}
]
}
Expand Down Expand Up @@ -3482,6 +3496,13 @@
"type": "boolean",
"description": "Defines if the node is loading."
},
{
"name": "lastChild",
"optional": true,
"readonly": false,
"type": "boolean",
"description": "Defines if the node is the last child."
},
{
"name": "originalEvent",
"optional": true,
Expand Down Expand Up @@ -7753,7 +7774,7 @@
"optional": false,
"readonly": false,
"type": "any",
"description": "Clicked item value."
"description": "Added/Removed item value."
}
]
},
Expand All @@ -7773,7 +7794,7 @@
"optional": false,
"readonly": false,
"type": "any",
"description": "Contextmenu requested item value."
"description": "Added/Removed item value."
}
]
}
Expand Down Expand Up @@ -10258,6 +10279,14 @@
"default": "true",
"description": "Applies focus to the filter element when the overlay is shown."
},
{
"name": "autoShowPanelOnPrintableCharacterKeyDown",
"optional": false,
"readonly": false,
"type": "boolean",
"default": "true",
"description": "Determines if the panel will be shown when the input is focused and receives a character key down event."
},
{
"name": "disabled",
"optional": false,
Expand Down Expand Up @@ -10762,6 +10791,14 @@
"default": "true",
"description": "Specifies if autofocus should happen on show."
},
{
"name": "focusOnClose",
"optional": true,
"readonly": false,
"type": "boolean",
"default": "true",
"description": "Specifies if autofocus should happen on close."
},
{
"name": "focusTrap",
"optional": true,
Expand Down Expand Up @@ -22245,7 +22282,7 @@
"name": "tooltipOptions",
"optional": false,
"readonly": false,
"type": "string",
"type": "TooltipOptions",
"description": "Tooltip options for the main button."
},
{
Expand Down Expand Up @@ -25534,8 +25571,7 @@
"optional": false,
"readonly": false,
"type": "string",
"description": "Icon of the tag to display next to the value.",
"deprecated": "since 15.4.2. Use 'icon' template."
"description": "Icon of the tag to display next to the value."
},
{
"name": "rounded",
Expand Down Expand Up @@ -27062,6 +27098,13 @@
"type": "TreeNode<any>",
"description": "Dropped node instance."
},
{
"name": "dropPoint",
"optional": true,
"readonly": false,
"type": "\"node\" | \"between\"",
"description": "Indicates if the node is dropped in a drop point between nodes"
},
{
"name": "index",
"optional": true,
Expand Down Expand Up @@ -28857,6 +28900,13 @@
"type": "boolean",
"description": "Defines if the node is loading."
},
{
"name": "lastChild",
"optional": true,
"readonly": false,
"type": "boolean",
"description": "Defines if the node is the last child."
},
{
"name": "originalEvent",
"optional": true,
Expand Down

0 comments on commit dac4232

Please sign in to comment.