Skip to content

Commit

Permalink
per Fab
Browse files Browse the repository at this point in the history
  • Loading branch information
namnguyen20999 committed Jul 8, 2024
1 parent 8db48e4 commit a492d7b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
from taipy.gui import Gui

date = datetime.date(2024, 6, 15)
min_date = datetime.date(2024, 5, 15)
max_date = datetime.date(2024, 7, 15)
start = datetime.date(2024, 5, 15)
end = datetime.date(2024, 7, 15)

page = """
<|{date}|date|min={min_date}|max={max_date}|>
<|{date}|date|min={start}|max={end}|>
"""

Gui(page).run()
15 changes: 9 additions & 6 deletions taipy/gui/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,28 +84,31 @@ class PropertyType(Enum):
"""
dynamic_date = "dynamicdate"
"""
The property holds a dynamic date.
The property is dynamic and holds a date.
"""
dynamic_dict = _TaipyDict
"""
The property holds a dynamic dictionary.
The property is dynamic and holds a dictionary.
"""
dynamic_number = _TaipyNumber
"""
The property holds a dynamic number.
The property is dynamic and holds a number.
"""
dynamic_lo_numbers = _TaipyLoNumbers
"""
The property holds a dynamic list of numbers.
The property is dynamic and holds a list of numbers.
"""
dynamic_boolean = _TaipyBool
"""
The property holds a dynamic Boolean value.
The property is dynamic and holds a Boolean value.
"""
dynamic_list = "dynamiclist"
"""
The property is dynamic and holds a list.
"""
dynamic_string = "dynamicstring"
"""
The property holds a dynamic string.
The property is dynamic and holds a string.
"""
function = "function"
"""
Expand Down

0 comments on commit a492d7b

Please sign in to comment.