Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Sep 16, 2024
1 parent 451afa2 commit 22cc4b7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/explanation/components/reactive_html_components.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ It's worth noting that the name `ReactiveHTML` is not related to the JavaScript

## How-to Guides

To see `ReactiveHTML` in action and discover how to create your custom components, check out our detailed guide: [How-to > Create Custom Components with ReactiveHTML](../../how_to/custom_components/index#reactivehtml-components). It's packed with practical examples to help you get started quickly.
To see `ReactiveHTML` in action and discover how to create your custom components, check out our detailed guide: [How-to > Create Custom Components with ReactiveHTML](../../how_to/custom_components/index.md#reactivehtml-components). It's packed with practical examples to help you get started quickly.

## API Guide

Expand Down
2 changes: 1 addition & 1 deletion doc/how_to/components/add_remove.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,5 +194,5 @@ gridspec

## Related Resources

- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview#panes).
- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview.md#panes).
- For more detail about `GridSpec` Panels, see the [Component Gallery > GridSpec](../reference/layouts/GridSpec).
2 changes: 1 addition & 1 deletion doc/how_to/components/construct_panes.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ png

## Related Resources

- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview#panes).
- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview.md#panes).
2 changes: 1 addition & 1 deletion doc/how_to/components/widget_values.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ widget.value = '3'

## Related Resources

- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview#panes).
- Learn more about Panes in [Explanation > Components](../../explanation/components/components_overview.md#panes).
2 changes: 1 addition & 1 deletion doc/how_to/interactivity/hvplot_interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ Finally, if performance is critical, you might want to consider using [Reactive

* [Reactive Functions and Expressions of Param](https://param.holoviz.org/user_guide/Reactive_Expressions.html)
* [Reactive Expressions of Panel](../../tutorials/basic/pn_rx)
* [panel.ReactiveExpr documentation](../../reference/panes/ReactiveExpr#reactiveexpr)
* [panel.ReactiveExpr documentation](../../reference/panes/ReactiveExpr)
2 changes: 1 addition & 1 deletion doc/how_to/param/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ sine = Sine(name='ASCII Sine Wave')
pn.Row(sine.param, sine.view)
```

The parameterized and annotated ``view`` method could return any one of the types handled by the [Pane objects](../../explanation/components/components_overview#panes) Panel provides, making it easy to link parameters and their associated widgets to a plot or other output. Parameterized classes can therefore be a very useful pattern for encapsulating a part of a computational workflow with an associated visualization, declaratively expressing the dependencies between the parameters and the computation.
The parameterized and annotated ``view`` method could return any one of the types handled by the [Pane objects](../../explanation/components/components_overview.md#panes) Panel provides, making it easy to link parameters and their associated widgets to a plot or other output. Parameterized classes can therefore be a very useful pattern for encapsulating a part of a computational workflow with an associated visualization, declaratively expressing the dependencies between the parameters and the computation.

By default, a Param pane will show widgets for all parameters with a `precedence` value above the value `pn.Param.display_threshold`, so you can use `precedence` to automatically hide parameters that are not meant to have widgets. You can also explicitly choose which parameters should have widgets in a given pane, by passing a `parameters` argument. For example, this code gives a `phase` widget, while maintaining `sine.frequency` at the initial value of `1`:

Expand Down

0 comments on commit 22cc4b7

Please sign in to comment.