File tree Expand file tree Collapse file tree 5 files changed +6
-1678
lines changed Expand file tree Collapse file tree 5 files changed +6
-1678
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
18
18
* ` @render.data_frame ` 's input value ` input.<ID>_column_filter() ` has been deprecated. Please use ` <ID>.filter() ` to retrieve the same information. (#1374 )
19
19
20
+ * Deprecated functions in ` shiny.experimental ` have been removed. By and large, these functions are now available in the main ` shiny ` namespace. (#1540 )
21
+
20
22
### New features
21
23
22
24
* Added a new ` shiny.ui.Chat ` class for building conversational interfaces with fully customizable and performant response generation. (#1453 )
Original file line number Diff line number Diff line change 10
10
"""
11
11
),
12
12
x .ui .card (
13
- x . ui .card_header (
13
+ ui .card_header (
14
14
"These two images are in their own individual card_body() container"
15
15
),
16
16
x .ui .card_image (
21
21
file = None ,
22
22
src = "https://posit.co/wp-content/uploads/2022/10/Posit-logo-h-full-color-RGB-TM.svg" ,
23
23
),
24
- x . ui .card_header ("These two images are in the same card_body() container" ),
24
+ ui .card_header ("These two images are in the same card_body() container" ),
25
25
x .ui .card_image (
26
26
file = None ,
27
27
src = "https://posit.co/wp-content/uploads/2022/10/Posit-logo-h-full-color-RGB-TM.svg" ,
Original file line number Diff line number Diff line change 3
3
4
4
app_ui = ui .page_fluid (
5
5
x .ui .card (
6
- x . ui .card_header ("This is the header" ),
6
+ ui .card_header ("This is the header" ),
7
7
x .ui .card_body (
8
8
x .ui .card_title ("This is the title" ),
9
9
ui .p ("This is the body." ),
10
10
ui .p ("This is still the body." ),
11
11
),
12
- x . ui .card_footer ("This is the footer" ),
12
+ ui .card_footer ("This is the footer" ),
13
13
full_screen = True ,
14
14
)
15
15
)
Original file line number Diff line number Diff line change 9
9
card_title ,
10
10
)
11
11
12
- from ._deprecated import (
13
- # Input Switch
14
- toggle_switch ,
15
- # Input Text Area
16
- input_text_area ,
17
- # Navs
18
- navset_pill_card ,
19
- navset_tab_card ,
20
- # Sidebar
21
- Sidebar ,
22
- sidebar ,
23
- layout_sidebar ,
24
- toggle_sidebar ,
25
- sidebar_toggle ,
26
- panel_sidebar ,
27
- panel_main ,
28
- DeprecatedPanelSidebar ,
29
- DeprecatedPanelMain ,
30
- # Tooltip
31
- tooltip_update ,
32
- tooltip_toggle ,
33
- tooltip ,
34
- toggle_tooltip ,
35
- update_tooltip ,
36
- # Css
37
- CssUnit ,
38
- as_css_padding ,
39
- as_css_unit ,
40
- as_width_unit ,
41
- # Popover
42
- popover ,
43
- toggle_popover ,
44
- update_popover ,
45
- # Accordion
46
- AccordionPanel ,
47
- accordion ,
48
- accordion_panel ,
49
- accordion_panel_close ,
50
- accordion_panel_insert ,
51
- accordion_panel_open ,
52
- accordion_panel_remove ,
53
- accordion_panel_set ,
54
- update_accordion_panel ,
55
- # Fill
56
- as_fill_carrier ,
57
- as_fill_item ,
58
- as_fillable_container ,
59
- is_fill_carrier ,
60
- is_fill_item ,
61
- is_fillable_container ,
62
- remove_all_fill ,
63
- # Card
64
- TagCallable ,
65
- CardItem ,
66
- card_footer ,
67
- card_header ,
68
- # Value Box
69
- showcase_left_center ,
70
- showcase_top_right ,
71
- value_box ,
72
- # Layout
73
- layout_column_wrap ,
74
- # Navs
75
- navset_bar ,
76
- navset_card_pill ,
77
- navset_card_tab ,
78
- # Outputs
79
- output_image ,
80
- output_plot ,
81
- output_ui ,
82
- # Page
83
- page_fillable ,
84
- page_navbar ,
85
- page_sidebar ,
86
- )
87
-
88
-
89
12
__all__ = (
90
13
# Card
91
14
"WrapperCallable" ,
92
15
"ImgContainer" ,
93
- "TagCallable" ,
94
16
"card" ,
95
17
"card_title" ,
96
18
"card_body" ,
97
19
"card_image" ,
98
- # Deprecated
99
- # # Sidebar
100
- "Sidebar" ,
101
- "sidebar" ,
102
- "layout_sidebar" ,
103
- "toggle_sidebar" ,
104
- "sidebar_toggle" ,
105
- "panel_sidebar" ,
106
- "panel_main" ,
107
- "DeprecatedPanelSidebar" ,
108
- "DeprecatedPanelMain" ,
109
- # # Input Switch
110
- "toggle_switch" ,
111
- # # Input Text Area
112
- "input_text_area" ,
113
- # # Navs
114
- "navset_pill_card" ,
115
- "navset_tab_card" ,
116
- # # Tooltip
117
- "tooltip" ,
118
- "toggle_tooltip" ,
119
- "update_tooltip" ,
120
- "tooltip_update" ,
121
- "tooltip_toggle" ,
122
- # # Sidebar
123
- "sidebar_toggle" ,
124
- "panel_sidebar" ,
125
- "panel_main" ,
126
- "DeprecatedPanelSidebar" ,
127
- "DeprecatedPanelMain" ,
128
- # # Css
129
- "CssUnit" ,
130
- "as_css_unit" ,
131
- "as_css_padding" ,
132
- "as_width_unit" ,
133
- # # Popover
134
- "popover" ,
135
- "toggle_popover" ,
136
- "update_popover" ,
137
- # Accordion
138
- "AccordionPanel" ,
139
- "accordion" ,
140
- "accordion_panel" ,
141
- "accordion_panel_set" ,
142
- "accordion_panel_open" ,
143
- "accordion_panel_close" ,
144
- "accordion_panel_insert" ,
145
- "accordion_panel_remove" ,
146
- "update_accordion_panel" ,
147
- # # Fill
148
- "as_fill_carrier" ,
149
- "as_fillable_container" ,
150
- "as_fill_item" ,
151
- "remove_all_fill" ,
152
- "is_fill_carrier" ,
153
- "is_fillable_container" ,
154
- "is_fill_item" ,
155
- # # Card
156
- "TagCallable" ,
157
- "CardItem" ,
158
- "card_header" ,
159
- "card_footer" ,
160
- # # ValueBox
161
- "showcase_left_center" ,
162
- "showcase_top_right" ,
163
- "value_box" ,
164
- # # Layout
165
- "layout_column_wrap" ,
166
- # # Navs
167
- "navset_bar" ,
168
- "navset_card_tab" ,
169
- "navset_card_pill" ,
170
- # # Output
171
- "output_image" ,
172
- "output_plot" ,
173
- "output_ui" ,
174
- # # Page
175
- "page_sidebar" ,
176
- "page_fillable" ,
177
- "page_navbar" ,
178
20
)
You can’t perform that action at this time.
0 commit comments