Skip to content

Commit 8dc8efc

Browse files
authored
Merge pull request #49 from Appsilon/fix-example-in-documentation
Fix example in documentation
2 parents 9697b60 + 2b3dc43 commit 8dc8efc

6 files changed

Lines changed: 22 additions & 8 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: reactable.extras
33
Title: Extra Features for 'reactable' Package
4-
Version: 0.2.0
4+
Version: 0.2.0.9000
55
Authors@R:
66
c(
77
person("Recle", "Vibal", role = c("aut", "cre"), email = "opensource+recle@appsilon.com"),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# reactable.extras (development)
2+
3+
- Fix server-side processing example.
4+
15
# reactable.extras 0.2.0
26

37
First release.

R/reactable-server.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,7 @@ get_data_on_page <- function(data, page_number, total_pages) {
213213
#' mpg = reactable::colDef(name = "Miles per Gallon"),
214214
#' cyl = reactable::colDef(name = "Cylinders"),
215215
#' disp = reactable::colDef(name = "Displacement")
216-
#' ),
217-
#' rows_per_page = 7
216+
#' )
218217
#' )
219218
#' }
220219
#' )

man/reactable-extras-server.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgdown/_pkgdown.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ url: https://appsilon.github.io/reactable.extras/
3131
navbar:
3232
bg: primary
3333
structure:
34-
left: [home, tutorials, reference]
34+
left: [home, tutorials, reference, changelog]
3535
right: [search, github, twitter, mastodon]
3636
components:
3737
home:
@@ -51,6 +51,10 @@ navbar:
5151
icon: fa-file-code-o
5252
text: "Reference"
5353
href: reference/index.html
54+
changelog:
55+
icon: fa-newspaper-o
56+
text: "Changelog"
57+
href: news/index.html
5458
github:
5559
icon: fa-github fa-lg
5660
href: https://github.com/Appsilon/reactable.extras

pkgdown/extra.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@
1010
background-color: var(--primary-color) !important;
1111
}
1212

13-
.navbar-dark .navbar-nav .active>.nav-link {
13+
#navbar > ul.navbar-nav > li.nav-item > a {
14+
color: rgba(255, 255, 255, 0.55);
15+
}
16+
17+
.navbar-dark .navbar-nav .active > .nav-link {
1418
background-color: var(--primary-color) !important;
15-
color: #fff;
19+
color: #fff !important;
20+
}
21+
22+
.navbar-brand {
23+
color: #fff !important;
1624
}
1725

1826
.navbar-dark input[type="search"] {

0 commit comments

Comments
 (0)