Skip to content

v0.0.2.9010

Compare
Choose a tag to compare
@DivadNojnarg DivadNojnarg released this 20 Sep 12:10
· 34 commits to main since this release
e6549b2

Feature

  • Improved add new block.
  • Added new category to the registry. Now when a block is registered, you may pass a category parameter (which is used by the add block feature to sort blocks):
register_block(
  constructor = new_tail_block,
  name = "tail block",
  description = "return last n rows",
  category = "transform",
  classes = c("tail_block", "transform_block"),
  input = "data.frame",
  output = "data.frame"
)

If not passed, the block will belong to uncategorized blocks (default).

Doc

  • Improved registry and getting started vignettes.
  • Add new case studies vignette to present blockr in various contexts.
  • Refine GitHub readme.

Fixes

  • Fix issue in handle_remove.block: vals$stack wasn't correctly updated
    when the last block was removed leading to wrong state.
  • Loading spinner is now correctly hidden when the block visual is updated.