Przeglądaj źródła

Merge branch 'main' of github.com:zauberzeug/nicegui

Falko Schindler 1 rok temu
rodzic
commit
210db7e8b5
1 zmienionych plików z 16 dodań i 6 usunięć
  1. 16 6
      website/static/search_index.json

+ 16 - 6
website/static/search_index.json

@@ -311,7 +311,7 @@
   },
   {
     "title": "Environment Variables",
-    "content": "You can set the following environment variables to configure NiceGUI:  - MATPLOTLIB (default: true) can be set to false to avoid the potentially costly import of Matplotlib. This will make ui.pyplot and ui.line_plot unavailable. - MARKDOWN_CONTENT_CACHE_SIZE (default: 1000): The maximum number of Markdown content snippets that are cached in memory.",
+    "content": "You can set the following environment variables to configure NiceGUI:  - MATPLOTLIB (default: true) can be set to false to avoid the potentially costly import of Matplotlib. This will make ui.pyplot and ui.line_plot unavailable. - NICEGUI_STORAGE_PATH (default: local \".nicegui\") can be set to change the location of the storage files. - MARKDOWN_CONTENT_CACHE_SIZE (default: 1000): The maximum number of Markdown content snippets that are cached in memory.",
     "url": "/documentation/#environment_variables"
   },
   {
@@ -431,13 +431,13 @@
   },
   {
     "title": "Timer",
-    "content": "One major drive behind the creation of NiceGUI was the necessity to have a simple approach to update the interface in regular intervals, for example to show a graph with incoming measurements. A timer will execute a callback repeatedly with a given interval.  :param interval: the interval in which the timer is called (can be changed during runtime) :param callback: function or coroutine to execute when interval elapses :param active: whether the callback should be executed or not (can be changed during runtime) :param once: whether the callback is only executed once after a delay specified by interval (default: False) activate Activate the timer.deactivate Deactivate the timer.",
+    "content": "One major drive behind the creation of NiceGUI was the necessity to have a simple approach to update the interface in regular intervals, for example to show a graph with incoming measurements. A timer will execute a callback repeatedly with a given interval.  :param interval: the interval in which the timer is called (can be changed during runtime) :param callback: function or coroutine to execute when interval elapses :param active: whether the callback should be executed or not (can be changed during runtime) :param once: whether the callback is only executed once after a delay specified by interval (default: False) activate Activate the timer.deactivate Deactivate the timer.cancel Cancel the timer.",
     "url": "/documentation/timer"
   },
   {
-    "title": "Timer: Activate and deactivate a timer",
-    "content": "You can activate and deactivate a timer using the active property.",
-    "url": "/documentation/timer#activate_and_deactivate_a_timer"
+    "title": "Timer: Activate, deactivate and cancel a timer",
+    "content": "You can activate and deactivate a timer using the active property. You can cancel a timer using the cancel method. After canceling a timer, it cannot be activated anymore.",
+    "url": "/documentation/timer#activate,_deactivate_and_cancel_a_timer"
   },
   {
     "title": "Timer: Call a function after a delay",
@@ -499,6 +499,11 @@
     "content": "You can use nested complex objects in AG Grid by separating the field names with a period. (This is the reason why keys in rowData are not allowed to contain periods.)",
     "url": "/documentation/aggrid#ag_grid_with_complex_objects"
   },
+  {
+    "title": "Aggrid: AG Grid with dynamic row height",
+    "content": "You can set the height of individual rows by passing a function to the getRowHeight argument.",
+    "url": "/documentation/aggrid#ag_grid_with_dynamic_row_height"
+  },
   {
     "title": "Carousel",
     "content": "This element represents Quasar's QCarousel <https://quasar.dev/vue-components/carousel#qcarousel-api>_ component. It contains individual carousel slides.  :param value: ui.carousel_slide or name of the slide to be initially selected (default: None meaning the first slide) :param on_value_change: callback to be executed when the selected slide changes :param animated: whether to animate slide transitions (default: False) :param arrows: whether to show arrows for manual slide navigation (default: False) :param navigation: whether to show navigation dots for manual slide navigation (default: False) on_value_change next previous",
@@ -594,6 +599,11 @@
     "content": "Quasar has a lot of props to change the appearance. It is even possible to style the underlying input with input-style and input-class props and use the provided slots to add custom elements.",
     "url": "/documentation/input#styling"
   },
+  {
+    "title": "JSONEditor",
+    "content": "An element to create a JSON editor using JSONEditor <https://github.com/josdejong/svelte-jsoneditor>_. Updates can be pushed to the editor by changing the properties property. After data has changed, call the update method to refresh the editor.  :param properties: dictionary of JSONEditor properties :param on_select: callback function that is called when some of the content has been selected :param on_change: callback function that is called when the content has changed update",
+    "url": "/documentation/json_editor"
+  },
   {
     "title": "Chart",
     "content": "An element to create a chart using Highcharts <https://www.highcharts.com/>_. Updates can be pushed to the chart by changing the options property. After data has changed, call the update method to refresh the chart.  By default, a Highcharts.chart is created. To use, e.g., Highcharts.stockChart instead, set the type property to \"stockChart\".  :param options: dictionary of Highcharts options :param type: chart type (e.g. \"chart\", \"stockChart\", \"mapChart\", ...; default: \"chart\") :param extras: list of extra dependencies to include (e.g. \"annotations\", \"arc-diagram\", \"solid-gauge\", ...) :param on_point_click: callback function that is called when a point is clicked :param on_point_drag_start: callback function that is called when a point drag starts :param on_point_drag: callback function that is called when a point is dragged :param on_point_drop: callback function that is called when a point is dropped update",
@@ -806,7 +816,7 @@
   },
   {
     "title": "Color Input",
-    "content": ":param label: displayed label for the color input :param placeholder: text to show if no color is selected :param value: the current color value :param on_change: callback to execute when the value changes open_picker Open the color picker",
+    "content": ":param label: displayed label for the color input :param placeholder: text to show if no color is selected :param value: the current color value :param on_change: callback to execute when the value changes :param preview: change button background to selected color (default: False) open_picker Open the color pickeron_value_change",
     "url": "/documentation/color_input"
   },
   {