Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit d2b1c06

Browse files
committed
build 1.17.0
1 parent 4a0beba commit d2b1c06

File tree

183 files changed

+2013
-1008
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+2013
-1008
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dashCoreComponents
22
Title: Core Interactive UI Components for 'Dash'
3-
Version: 1.16.0
3+
Version: 1.17.0
44
Description: 'Dash' ships with supercharged components for interactive user interfaces. A core set of components, written and maintained by the 'Dash' team, is available in the 'dashCoreComponents' package. The source for this package is on GitHub: plotly/dash-core-components.
55
Depends: R (>= 3.0.2)
66
Imports:

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "DashCoreComponents"
33
uuid = "1b08a953-4be3-4667-9a23-9da06441d987"
44
authors = ["Chris Parmer <[email protected]>"]
5-
version = "1.16.0"
5+
version = "1.17.0"
66

77
[deps]
88
DashBase = "03207cf0-e2b3-4b91-9ca8-690cf0fb507e"

R/dccClipboard.R

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# AUTO GENERATED FILE - DO NOT EDIT
2+
3+
dccClipboard <- function(id=NULL, className=NULL, content=NULL, loading_state=NULL, n_clicks=NULL, style=NULL, target_id=NULL, title=NULL) {
4+
5+
props <- list(id=id, className=className, content=content, loading_state=loading_state, n_clicks=n_clicks, style=style, target_id=target_id, title=title)
6+
if (length(props) > 0) {
7+
props <- props[!vapply(props, is.null, logical(1))]
8+
}
9+
component <- list(
10+
props = props,
11+
type = 'Clipboard',
12+
namespace = 'dash_core_components',
13+
propNames = c('id', 'className', 'content', 'loading_state', 'n_clicks', 'style', 'target_id', 'title'),
14+
package = 'dashCoreComponents'
15+
)
16+
17+
structure(component, class = c('dash_component', 'list'))
18+
}

R/dccDatePickerRange.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# AUTO GENERATED FILE - DO NOT EDIT
22

3-
dccDatePickerRange <- function(id=NULL, calendar_orientation=NULL, className=NULL, clearable=NULL, day_size=NULL, disabled=NULL, display_format=NULL, end_date=NULL, end_date_id=NULL, end_date_placeholder_text=NULL, first_day_of_week=NULL, initial_visible_month=NULL, is_RTL=NULL, loading_state=NULL, max_date_allowed=NULL, min_date_allowed=NULL, minimum_nights=NULL, month_format=NULL, number_of_months_shown=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, reopen_calendar_on_clear=NULL, show_outside_days=NULL, start_date=NULL, start_date_id=NULL, start_date_placeholder_text=NULL, stay_open_on_select=NULL, style=NULL, updatemode=NULL, with_full_screen_portal=NULL, with_portal=NULL) {
3+
dccDatePickerRange <- function(id=NULL, calendar_orientation=NULL, className=NULL, clearable=NULL, day_size=NULL, disabled=NULL, disabled_days=NULL, display_format=NULL, end_date=NULL, end_date_id=NULL, end_date_placeholder_text=NULL, first_day_of_week=NULL, initial_visible_month=NULL, is_RTL=NULL, loading_state=NULL, max_date_allowed=NULL, min_date_allowed=NULL, minimum_nights=NULL, month_format=NULL, number_of_months_shown=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, reopen_calendar_on_clear=NULL, show_outside_days=NULL, start_date=NULL, start_date_id=NULL, start_date_placeholder_text=NULL, stay_open_on_select=NULL, style=NULL, updatemode=NULL, with_full_screen_portal=NULL, with_portal=NULL) {
44

5-
props <- list(id=id, calendar_orientation=calendar_orientation, className=className, clearable=clearable, day_size=day_size, disabled=disabled, display_format=display_format, end_date=end_date, end_date_id=end_date_id, end_date_placeholder_text=end_date_placeholder_text, first_day_of_week=first_day_of_week, initial_visible_month=initial_visible_month, is_RTL=is_RTL, loading_state=loading_state, max_date_allowed=max_date_allowed, min_date_allowed=min_date_allowed, minimum_nights=minimum_nights, month_format=month_format, number_of_months_shown=number_of_months_shown, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, reopen_calendar_on_clear=reopen_calendar_on_clear, show_outside_days=show_outside_days, start_date=start_date, start_date_id=start_date_id, start_date_placeholder_text=start_date_placeholder_text, stay_open_on_select=stay_open_on_select, style=style, updatemode=updatemode, with_full_screen_portal=with_full_screen_portal, with_portal=with_portal)
5+
props <- list(id=id, calendar_orientation=calendar_orientation, className=className, clearable=clearable, day_size=day_size, disabled=disabled, disabled_days=disabled_days, display_format=display_format, end_date=end_date, end_date_id=end_date_id, end_date_placeholder_text=end_date_placeholder_text, first_day_of_week=first_day_of_week, initial_visible_month=initial_visible_month, is_RTL=is_RTL, loading_state=loading_state, max_date_allowed=max_date_allowed, min_date_allowed=min_date_allowed, minimum_nights=minimum_nights, month_format=month_format, number_of_months_shown=number_of_months_shown, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, reopen_calendar_on_clear=reopen_calendar_on_clear, show_outside_days=show_outside_days, start_date=start_date, start_date_id=start_date_id, start_date_placeholder_text=start_date_placeholder_text, stay_open_on_select=stay_open_on_select, style=style, updatemode=updatemode, with_full_screen_portal=with_full_screen_portal, with_portal=with_portal)
66
if (length(props) > 0) {
77
props <- props[!vapply(props, is.null, logical(1))]
88
}
99
component <- list(
1010
props = props,
1111
type = 'DatePickerRange',
1212
namespace = 'dash_core_components',
13-
propNames = c('id', 'calendar_orientation', 'className', 'clearable', 'day_size', 'disabled', 'display_format', 'end_date', 'end_date_id', 'end_date_placeholder_text', 'first_day_of_week', 'initial_visible_month', 'is_RTL', 'loading_state', 'max_date_allowed', 'min_date_allowed', 'minimum_nights', 'month_format', 'number_of_months_shown', 'persisted_props', 'persistence', 'persistence_type', 'reopen_calendar_on_clear', 'show_outside_days', 'start_date', 'start_date_id', 'start_date_placeholder_text', 'stay_open_on_select', 'style', 'updatemode', 'with_full_screen_portal', 'with_portal'),
13+
propNames = c('id', 'calendar_orientation', 'className', 'clearable', 'day_size', 'disabled', 'disabled_days', 'display_format', 'end_date', 'end_date_id', 'end_date_placeholder_text', 'first_day_of_week', 'initial_visible_month', 'is_RTL', 'loading_state', 'max_date_allowed', 'min_date_allowed', 'minimum_nights', 'month_format', 'number_of_months_shown', 'persisted_props', 'persistence', 'persistence_type', 'reopen_calendar_on_clear', 'show_outside_days', 'start_date', 'start_date_id', 'start_date_placeholder_text', 'stay_open_on_select', 'style', 'updatemode', 'with_full_screen_portal', 'with_portal'),
1414
package = 'dashCoreComponents'
1515
)
1616

R/dccDatePickerSingle.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# AUTO GENERATED FILE - DO NOT EDIT
22

3-
dccDatePickerSingle <- function(id=NULL, calendar_orientation=NULL, className=NULL, clearable=NULL, date=NULL, day_size=NULL, disabled=NULL, display_format=NULL, first_day_of_week=NULL, initial_visible_month=NULL, is_RTL=NULL, loading_state=NULL, max_date_allowed=NULL, min_date_allowed=NULL, month_format=NULL, number_of_months_shown=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, placeholder=NULL, reopen_calendar_on_clear=NULL, show_outside_days=NULL, stay_open_on_select=NULL, style=NULL, with_full_screen_portal=NULL, with_portal=NULL) {
3+
dccDatePickerSingle <- function(id=NULL, calendar_orientation=NULL, className=NULL, clearable=NULL, date=NULL, day_size=NULL, disabled=NULL, disabled_days=NULL, display_format=NULL, first_day_of_week=NULL, initial_visible_month=NULL, is_RTL=NULL, loading_state=NULL, max_date_allowed=NULL, min_date_allowed=NULL, month_format=NULL, number_of_months_shown=NULL, persisted_props=NULL, persistence=NULL, persistence_type=NULL, placeholder=NULL, reopen_calendar_on_clear=NULL, show_outside_days=NULL, stay_open_on_select=NULL, style=NULL, with_full_screen_portal=NULL, with_portal=NULL) {
44

5-
props <- list(id=id, calendar_orientation=calendar_orientation, className=className, clearable=clearable, date=date, day_size=day_size, disabled=disabled, display_format=display_format, first_day_of_week=first_day_of_week, initial_visible_month=initial_visible_month, is_RTL=is_RTL, loading_state=loading_state, max_date_allowed=max_date_allowed, min_date_allowed=min_date_allowed, month_format=month_format, number_of_months_shown=number_of_months_shown, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, placeholder=placeholder, reopen_calendar_on_clear=reopen_calendar_on_clear, show_outside_days=show_outside_days, stay_open_on_select=stay_open_on_select, style=style, with_full_screen_portal=with_full_screen_portal, with_portal=with_portal)
5+
props <- list(id=id, calendar_orientation=calendar_orientation, className=className, clearable=clearable, date=date, day_size=day_size, disabled=disabled, disabled_days=disabled_days, display_format=display_format, first_day_of_week=first_day_of_week, initial_visible_month=initial_visible_month, is_RTL=is_RTL, loading_state=loading_state, max_date_allowed=max_date_allowed, min_date_allowed=min_date_allowed, month_format=month_format, number_of_months_shown=number_of_months_shown, persisted_props=persisted_props, persistence=persistence, persistence_type=persistence_type, placeholder=placeholder, reopen_calendar_on_clear=reopen_calendar_on_clear, show_outside_days=show_outside_days, stay_open_on_select=stay_open_on_select, style=style, with_full_screen_portal=with_full_screen_portal, with_portal=with_portal)
66
if (length(props) > 0) {
77
props <- props[!vapply(props, is.null, logical(1))]
88
}
99
component <- list(
1010
props = props,
1111
type = 'DatePickerSingle',
1212
namespace = 'dash_core_components',
13-
propNames = c('id', 'calendar_orientation', 'className', 'clearable', 'date', 'day_size', 'disabled', 'display_format', 'first_day_of_week', 'initial_visible_month', 'is_RTL', 'loading_state', 'max_date_allowed', 'min_date_allowed', 'month_format', 'number_of_months_shown', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'reopen_calendar_on_clear', 'show_outside_days', 'stay_open_on_select', 'style', 'with_full_screen_portal', 'with_portal'),
13+
propNames = c('id', 'calendar_orientation', 'className', 'clearable', 'date', 'day_size', 'disabled', 'disabled_days', 'display_format', 'first_day_of_week', 'initial_visible_month', 'is_RTL', 'loading_state', 'max_date_allowed', 'min_date_allowed', 'month_format', 'number_of_months_shown', 'persisted_props', 'persistence', 'persistence_type', 'placeholder', 'reopen_calendar_on_clear', 'show_outside_days', 'stay_open_on_select', 'style', 'with_full_screen_portal', 'with_portal'),
1414
package = 'dashCoreComponents'
1515
)
1616

R/internal.R

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,126 +1,126 @@
11
.dashCoreComponents_js_metadata <- function() {
22
deps_metadata <- list(`dash_core_components` = structure(list(name = "dash_core_components",
3-
version = "1.16.0", src = list(href = NULL,
3+
version = "1.17.0", src = list(href = NULL,
44
file = "deps"), meta = NULL,
55
script = 'async-datepicker.js',
66
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
77
all_files = FALSE, async = TRUE), class = "html_dependency"),
88
`dash_core_components` = structure(list(name = "dash_core_components",
9-
version = "1.16.0", src = list(href = NULL,
9+
version = "1.17.0", src = list(href = NULL,
1010
file = "deps"), meta = NULL,
1111
script = 'async-dropdown.js',
1212
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
1313
all_files = FALSE, async = TRUE), class = "html_dependency"),
1414
`dash_core_components` = structure(list(name = "dash_core_components",
15-
version = "1.16.0", src = list(href = NULL,
15+
version = "1.17.0", src = list(href = NULL,
1616
file = "deps"), meta = NULL,
1717
script = 'async-graph.js',
1818
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
1919
all_files = FALSE, async = TRUE), class = "html_dependency"),
2020
`dash_core_components` = structure(list(name = "dash_core_components",
21-
version = "1.16.0", src = list(href = NULL,
21+
version = "1.17.0", src = list(href = NULL,
2222
file = "deps"), meta = NULL,
2323
script = 'async-highlight.js',
2424
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
2525
all_files = FALSE, async = TRUE), class = "html_dependency"),
2626
`dash_core_components` = structure(list(name = "dash_core_components",
27-
version = "1.16.0", src = list(href = NULL,
27+
version = "1.17.0", src = list(href = NULL,
2828
file = "deps"), meta = NULL,
2929
script = 'async-markdown.js',
3030
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
3131
all_files = FALSE, async = TRUE), class = "html_dependency"),
3232
`dash_core_components` = structure(list(name = "dash_core_components",
33-
version = "1.16.0", src = list(href = NULL,
33+
version = "1.17.0", src = list(href = NULL,
3434
file = "deps"), meta = NULL,
3535
script = 'async-slider.js',
3636
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
3737
all_files = FALSE, async = TRUE), class = "html_dependency"),
3838
`dash_core_components` = structure(list(name = "dash_core_components",
39-
version = "1.16.0", src = list(href = NULL,
39+
version = "1.17.0", src = list(href = NULL,
4040
file = "deps"), meta = NULL,
4141
script = 'async-upload.js',
4242
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
4343
all_files = FALSE, async = TRUE), class = "html_dependency"),
4444
`dash_core_components` = structure(list(name = "dash_core_components",
45-
version = "1.16.0", src = list(href = NULL,
45+
version = "1.17.0", src = list(href = NULL,
4646
file = "deps"), meta = NULL,
4747
script = 'async-datepicker.js.map',
4848
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
4949
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
5050
`dash_core_components` = structure(list(name = "dash_core_components",
51-
version = "1.16.0", src = list(href = NULL,
51+
version = "1.17.0", src = list(href = NULL,
5252
file = "deps"), meta = NULL,
5353
script = 'async-dropdown.js.map',
5454
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
5555
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
5656
`dash_core_components` = structure(list(name = "dash_core_components",
57-
version = "1.16.0", src = list(href = NULL,
57+
version = "1.17.0", src = list(href = NULL,
5858
file = "deps"), meta = NULL,
5959
script = 'async-graph.js.map',
6060
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
6161
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
6262
`dash_core_components` = structure(list(name = "dash_core_components",
63-
version = "1.16.0", src = list(href = NULL,
63+
version = "1.17.0", src = list(href = NULL,
6464
file = "deps"), meta = NULL,
6565
script = 'async-highlight.js.map',
6666
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
6767
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
6868
`dash_core_components` = structure(list(name = "dash_core_components",
69-
version = "1.16.0", src = list(href = NULL,
69+
version = "1.17.0", src = list(href = NULL,
7070
file = "deps"), meta = NULL,
7171
script = 'async-markdown.js.map',
7272
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
7373
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
7474
`dash_core_components` = structure(list(name = "dash_core_components",
75-
version = "1.16.0", src = list(href = NULL,
75+
version = "1.17.0", src = list(href = NULL,
7676
file = "deps"), meta = NULL,
7777
script = 'async-slider.js.map',
7878
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
7979
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
8080
`dash_core_components` = structure(list(name = "dash_core_components",
81-
version = "1.16.0", src = list(href = NULL,
81+
version = "1.17.0", src = list(href = NULL,
8282
file = "deps"), meta = NULL,
8383
script = 'async-upload.js.map',
8484
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
8585
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
8686
`dash_core_components` = structure(list(name = "dash_core_components",
87-
version = "1.16.0", src = list(href = NULL,
87+
version = "1.17.0", src = list(href = NULL,
8888
file = "deps"), meta = NULL,
89-
script = 'dash_core_components.min.js',
89+
script = 'dash_core_components.js',
9090
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
9191
all_files = FALSE), class = "html_dependency"),
9292
`dash_core_components` = structure(list(name = "dash_core_components",
93-
version = "1.16.0", src = list(href = NULL,
93+
version = "1.17.0", src = list(href = NULL,
9494
file = "deps"), meta = NULL,
95-
script = 'dash_core_components.min.js.map',
95+
script = 'dash_core_components.js.map',
9696
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
9797
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
9898
`dash_core_components-shared` = structure(list(name = "dash_core_components-shared",
99-
version = "1.16.0", src = list(href = NULL,
99+
version = "1.17.0", src = list(href = NULL,
100100
file = "deps"), meta = NULL,
101101
script = 'dash_core_components-shared.js',
102102
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
103103
all_files = FALSE), class = "html_dependency"),
104104
`dash_core_components-shared` = structure(list(name = "dash_core_components-shared",
105-
version = "1.16.0", src = list(href = NULL,
105+
version = "1.17.0", src = list(href = NULL,
106106
file = "deps"), meta = NULL,
107107
script = 'dash_core_components-shared.js.map',
108108
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
109109
all_files = FALSE, dynamic = TRUE), class = "html_dependency"),
110110
`dash_core_components` = structure(list(name = "dash_core_components",
111-
version = "1.16.0", src = list(href = NULL,
111+
version = "1.17.0", src = list(href = NULL,
112112
file = "deps"), meta = NULL,
113113
script = 'plotly.min.js',
114114
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
115115
all_files = FALSE, async = 'eager'), class = "html_dependency"),
116116
`dash_core_components` = structure(list(name = "dash_core_components",
117-
version = "1.16.0", src = list(href = NULL,
117+
version = "1.17.0", src = list(href = NULL,
118118
file = "deps"), meta = NULL,
119119
script = 'async-plotlyjs.js',
120120
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",
121121
all_files = FALSE, async = 'lazy'), class = "html_dependency"),
122122
`dash_core_components` = structure(list(name = "dash_core_components",
123-
version = "1.16.0", src = list(href = NULL,
123+
version = "1.17.0", src = list(href = NULL,
124124
file = "deps"), meta = NULL,
125125
script = 'async-plotlyjs.js.map',
126126
stylesheet = NULL, head = NULL, attachment = NULL, package = "dashCoreComponents",

0 commit comments

Comments
 (0)