@@ -41,6 +41,10 @@ def __init__(
4141 border_color : typing .Optional [Color ] = X11Color .LIGHT_GRAY ,
4242 border_dash_pattern : typing .Optional [typing .List [int ]] = None ,
4343 border_dash_phase : int = 0 ,
44+ border_radius_bottom_left : int = 0 ,
45+ border_radius_bottom_right : int = 0 ,
46+ border_radius_top_left : int = 0 ,
47+ border_radius_top_right : int = 0 ,
4448 border_width_bottom : int = 1 ,
4549 border_width_left : int = 1 ,
4650 border_width_right : int = 1 ,
@@ -69,6 +73,10 @@ def __init__(
6973 :param border_color: Optional; The color of the border around the text area. If None, no border will be drawn.
7074 :param border_dash_pattern: A list of integers defining the dash pattern for the border. For example, [5, 3] creates a dashed border.
7175 :param border_dash_phase: The phase at which the dash pattern should start. Defaults to 0.
76+ :param border_radius_bottom_left: Radius of the bottom left border of the element.
77+ :param border_radius_bottom_right: Radius of the bottom right border of the element.
78+ :param border_radius_top_left: Radius of the top left border of the element.
79+ :param border_radius_top_right: Radius of the top right border of the element.
7280 :param border_width_bottom: The width of the bottom border in pixels. Defaults to 0 (no bottom border).
7381 :param border_width_left: The width of the left border in pixels. Defaults to 0 (no left border).
7482 :param border_width_right: The width of the right border in pixels. Defaults to 0 (no right border).
@@ -100,6 +108,10 @@ def __init__(
100108 border_color = border_color ,
101109 border_dash_pattern = border_dash_pattern ,
102110 border_dash_phase = border_dash_phase ,
111+ border_radius_bottom_left = border_radius_bottom_left ,
112+ border_radius_bottom_right = border_radius_bottom_right ,
113+ border_radius_top_left = border_radius_top_left ,
114+ border_radius_top_right = border_radius_top_right ,
103115 border_width_bottom = border_width_bottom ,
104116 border_width_left = border_width_left ,
105117 border_width_right = border_width_right ,
0 commit comments