Skip to content

Commit

Permalink
2.0.0 - Material Design 3
Browse files Browse the repository at this point in the history
Add `API break` section to doc string.
  • Loading branch information
HeaTTheatR committed Nov 26, 2023
1 parent cd51ab4 commit f25935b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions kivymd/uix/dropdownitem/dropdownitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,34 @@ def build(self):
.. seealso::
`Work with the class MDDropdownMenu see here <https://kivymd.readthedocs.io/en/latest/components/menu/index.html#center-position>`_
API break
=========
1.2.0 version
-------------
.. code-block:: kv
MDFloatingActionButton:
icon: "plus"
.. code-block:: kv
MDDropDownItem:
text: 'Item'
on_release: print(*args)
2.0.0 version
-------------
.. code-block:: kv
MDDropDownItem:
on_release: print(*args)
MDDropDownItemText:
text: "Item text"
"""

__all__ = ("MDDropDownItem", "MDDropDownItemText")
Expand Down

0 comments on commit f25935b

Please sign in to comment.