diff --git a/docfx/articles/mainloop.md b/docfx/articles/mainloop.md
index dd6249994..3c41f5e33 100644
--- a/docfx/articles/mainloop.md
+++ b/docfx/articles/mainloop.md
@@ -25,12 +25,12 @@ This class provides the following capabilities:
* On Unix systems, it can monitor file descriptors for readability or writability.
The `MainLoop` property in the the
-[`Application`](/api/Terminal.Gui/Terminal.Gui.Application.html)
+[`Application`](~/api/Terminal.Gui/Terminal.Gui.Application.yml)
provides access to these functions.
When your code invokes `Application.Run (Toplevel)`, the application
will prepare the current
-[`Toplevel`](/api/Terminal.Gui/Terminal.Gui.Toplevel.html) instance by
+[`Toplevel`](~/api/Terminal.Gui/Terminal.Gui.Toplevel.yml) instance by
redrawing the screen appropriately and then calling the mainloop to
run.
diff --git a/docfx/articles/overview.md b/docfx/articles/overview.md
index cceb7197a..f92409759 100644
--- a/docfx/articles/overview.md
+++ b/docfx/articles/overview.md
@@ -41,10 +41,10 @@ the various views that are included. In the following sections, you
will see how applications are put together.
In the example above, you can see that we have initialized the runtime by calling the
-[`Init`](/api/Terminal.Gui/Terminal.Gui.Application.html#Terminal_Gui_Application_Init) method in the Application class - this sets up the environment, initializes the color
+[`Init`](~/api/Terminal.Gui/Terminal.Gui.Application.yml#Terminal_Gui_Application_Init_Terminal_Gui_ConsoleDriver_Terminal_Gui_IMainLoopDriver_) method in the Application class - this sets up the environment, initializes the color
schemes available for your application and clears the screen to start your application.
-The [`Application`](/api/Terminal.Gui/Terminal.Gui.Application.html) class, additionally creates an instance of the [`Toplevel`](/api/Terminal.Gui/Terminal.Gui.Toplevel.html) class that is ready to be consumed,
+The [`Application`](~/api/Terminal.Gui/Terminal.Gui.Application.yml) class, additionally creates an instance of the [`Toplevel`](~/api/Terminal.Gui/Terminal.Gui.Toplevel.yml) class that is ready to be consumed,
this instance is available in the `Application.Top` property, and can be used like this:
```csharp
@@ -103,13 +103,13 @@ Views
=====
All visible elements on a Terminal.Gui application are implemented as
-[Views](/api/Terminal.Gui/Terminal.Gui.View.html). Views are self-contained
+[Views](~/api/Terminal.Gui/Terminal.Gui.View.yml). Views are self-contained
objects that take care of displaying themselves, can receive keyboard and mouse
input and participate in the focus mechanism.
Every view can contain an arbitrary number of children views. These are called
the Subviews. You can add a view to an existing view, by calling the
-[`Add`](/api/Terminal.Gui/Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View_) method, for example, to add a couple of buttons to a UI, you can do this:
+[`Add`](~/api/Terminal.Gui/Terminal.Gui.View.yml#Terminal_Gui_View_Add_Terminal_Gui_View_) method, for example, to add a couple of buttons to a UI, you can do this:
```csharp
void SetupMyView (View myView)
@@ -137,18 +137,18 @@ View.
There are many views that you can use to spice up your application:
-[Buttons](/api/Terminal.Gui/Terminal.Gui.Button.html), [Labels](/api/Terminal.Gui/Terminal.Gui.Label.html), [Text entry](/api/Terminal.Gui/Terminal.Gui.TextField.html), [Text view](/api/Terminal.Gui/Terminal.Gui.TextView.html), [Radio buttons](/api/Terminal.Gui/Terminal.Gui.RadioGroup.html), [Checkboxes](/api/Terminal.Gui/Terminal.Gui.CheckBox.html), [Dialog boxes](/api/Terminal.Gui/Terminal.Gui.Dialog.html), [Message boxes](/api/Terminal.Gui/Terminal.Gui.MessageBox.html), [Windows](/api/Terminal.Gui/Terminal.Gui.Window.html), [Menus](/api/Terminal.Gui/Terminal.Gui.MenuBar.html), [ListViews](/api/Terminal.Gui/Terminal.Gui.ListView.html), [Frames](/api/Terminal.Gui/Terminal.Gui.FrameView.html), [ProgressBars](/api/Terminal.Gui/Terminal.Gui.ProgressBar.html), [Scroll views](/api/Terminal.Gui/Terminal.Gui.ScrollView.html) and [Scrollbars](/api/Terminal.Gui/Terminal.Gui.ScrollBarView.html).
+[Buttons](~/api/Terminal.Gui/Terminal.Gui.Button.yml), [Labels](~/api/Terminal.Gui/Terminal.Gui.Label.yml), [Text entry](~/api/Terminal.Gui/Terminal.Gui.TextField.yml), [Text view](~/api/Terminal.Gui/Terminal.Gui.TextView.yml), [Radio buttons](~/api/Terminal.Gui/Terminal.Gui.RadioGroup.yml), [Checkboxes](~/api/Terminal.Gui/Terminal.Gui.CheckBox.yml), [Dialog boxes](~/api/Terminal.Gui/Terminal.Gui.Dialog.yml), [Message boxes](~/api/Terminal.Gui/Terminal.Gui.MessageBox.yml), [Windows](~/api/Terminal.Gui/Terminal.Gui.Window.yml), [Menus](~/api/Terminal.Gui/Terminal.Gui.MenuBar.yml), [ListViews](~/api/Terminal.Gui/Terminal.Gui.ListView.yml), [Frames](~/api/Terminal.Gui/Terminal.Gui.FrameView.yml), [ProgressBars](~/api/Terminal.Gui/Terminal.Gui.ProgressBar.yml), [Scroll views](~/api/Terminal.Gui/Terminal.Gui.ScrollView.yml) and [Scrollbars](~/api/Terminal.Gui/Terminal.Gui.ScrollBarView.yml).
Layout
------
`Terminal.Gui` supports two different layout systems, absolute and computed \
-(controlled by the [`LayoutStyle`](/api/Terminal.Gui/Terminal.Gui.LayoutStyle.html)
+(controlled by the [`LayoutStyle`](~/api/Terminal.Gui/Terminal.Gui.LayoutStyle.yml)
property on the view.
The absolute system is used when you want the view to be positioned exactly in
one location and want to manually control where the view is. This is done
-by invoking your View constructor with an argument of type [`Rect`](/api/Terminal.Gui/Terminal.Gui.Rect.html). When you do this, to change the
+by invoking your View constructor with an argument of type [`Rect`](~/api/Terminal.Gui/Terminal.Gui.Rect.yml). When you do this, to change the
position of the View, you can change the `Frame` property on the View.
The computed layout system offers a few additional capabilities, like automatic
@@ -172,7 +172,7 @@ var label = new Label ("Hello") {
var label2 = new Label (new Rect (1, 2, 20, 1), "World")
```
-The computed layout system does not take integers, instead the `X` and `Y` properties are of type [`Pos`](/api/Terminal.Gui/Terminal.Gui.Pos.html) and the `Width` and `Height` properties are of type [`Dim`](/api/Terminal.Gui/Terminal.Gui.Dim.html) both which can be created implicitly from integer values.
+The computed layout system does not take integers, instead the `X` and `Y` properties are of type [`Pos`](~/api/Terminal.Gui/Terminal.Gui.Pos.yml) and the `Width` and `Height` properties are of type [`Dim`](~/api/Terminal.Gui/Terminal.Gui.Dim.yml) both which can be created implicitly from integer values.
### The `Pos` Type
@@ -223,8 +223,8 @@ anotherView.Height = Dim.Height (view)+1
# TopLevels, Windows and Dialogs.
-Among the many kinds of views, you typically will create a [Toplevel](/api/Terminal.Gui/Terminal.Gui.Toplevel.html) view (or any of its subclasses,
-like [Window](/api/Terminal.Gui/Terminal.Gui.Window.html) or [Dialog](/api/Terminal.Gui/Terminal.Gui.Dialog.html) which is special kind of views
+Among the many kinds of views, you typically will create a [Toplevel](~/api/Terminal.Gui/Terminal.Gui.Toplevel.yml) view (or any of its subclasses,
+like [Window](~/api/Terminal.Gui/Terminal.Gui.Window.yml) or [Dialog](~/api/Terminal.Gui/Terminal.Gui.Dialog.yml) which is special kind of views
that can be executed modally - that is, the view can take over all input and returns
only when the user chooses to complete their work there.
@@ -232,7 +232,7 @@ The following sections cover the differences.
## TopLevel Views
-[Toplevel](/api/Terminal.Gui/Terminal.Gui.Toplevel.html) views have no visible user interface elements and occupy an arbitrary portion of the screen.
+[Toplevel](~/api/Terminal.Gui/Terminal.Gui.Toplevel.yml) views have no visible user interface elements and occupy an arbitrary portion of the screen.
You would use a toplevel Modal view for example to launch an entire new experience in your application, one where you would have a new top-level menu for example. You
typically would add a Menu and a Window to your Toplevel, it would look like this:
@@ -284,21 +284,21 @@ class Demo {
Window Views
------------
-[Window](/api/Terminal.Gui/Terminal.Gui.Window.html) views extend the Toplevel view by providing a frame and a title around the toplevel - and can be moved on the screen with the mouse (caveat: code is currently disabled)
+[Window](~/api/Terminal.Gui/Terminal.Gui.Window.yml) views extend the Toplevel view by providing a frame and a title around the toplevel - and can be moved on the screen with the mouse (caveat: code is currently disabled)
From a user interface perspective, you might have more than one Window on the screen at a given time.
Dialogs
-------
-[Dialog](/api/Terminal.Gui/Terminal.Gui.Dialog.html) are [Window](/api/Terminal.Gui/Terminal.Gui.Window.html) objects that happen to be centered in the middle of the screen.
+[Dialog](~/api/Terminal.Gui/Terminal.Gui.Dialog.yml) are [Window](~/api/Terminal.Gui/Terminal.Gui.Window.yml) objects that happen to be centered in the middle of the screen.
Dialogs are instances of a Window that are centered in the screen, and are intended
to be used modally - that is, they run, and they are expected to return a result
before resuming execution of your application.
Dialogs are a subclass of `Window` and additionally expose the
-[`AddButton`](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.Dialog.html#Terminal_Gui_Dialog_AddButton_Terminal_Gui_Button_) API which manages the layout
+[`AddButton`](https://migueldeicaza.github.io/gui.cs/api/Terminal.Gui/Terminal.Gui.Dialog.yml#Terminal_Gui_Dialog_AddButton_Terminal_Gui_Button_) API which manages the layout
of any button passed to it, ensuring that the buttons are at the bottom of the dialog.
Example:
@@ -391,7 +391,7 @@ Colors and Color Schemes
All views have been configured with a color scheme that will work both in color
terminals as well as the more limited black and white terminals.
-The various styles are captured in the [`Colors`](/api/Terminal.Gui/Terminal.Gui.Colors.html) class which defined color schemes for
+The various styles are captured in the [`Colors`](~/api/Terminal.Gui/Terminal.Gui.Colors.yml) class which defined color schemes for
the toplevel, the normal views, the menu bar, popup dialog boxes and error dialog boxes, that you can use like this:
* `Colors.Toplevel`
@@ -407,7 +407,7 @@ var w = new Window ("Hello");
w.ColorScheme = Colors.Error
```
-The [`ColorScheme`](/api/Terminal.Gui/Terminal.Gui.ColorScheme.html) represents
+The [`ColorScheme`](~/api/Terminal.Gui/Terminal.Gui.ColorScheme.yml) represents
four values, the color used for Normal text, the color used for normal text when
a view is focused an the colors for the hot-keys both in focused and unfocused modes.
@@ -426,4 +426,4 @@ label.TextColor = myColor
MainLoop, Threads and Input Handling
====================================
-Detailed description of the mainloop is described on the [Event Processing and the Application Main Loop](/articles/mainloop.html) document.
+Detailed description of the mainloop is described on the [Event Processing and the Application Main Loop](~/articles/mainloop.md) document.
diff --git a/docfx/articles/tableview.md b/docfx/articles/tableview.md
index 87feaa8ee..17799df95 100644
--- a/docfx/articles/tableview.md
+++ b/docfx/articles/tableview.md
@@ -4,7 +4,7 @@ This control supports viewing and editing tabular data. It provides a view of a
System.DataTable is a core class of .net standard and can be created very easily
-[TableView API Reference](/api/Terminal.Gui/Terminal.Gui.TableView.html)
+[TableView API Reference](~/api/Terminal.Gui/Terminal.Gui.TableView.yml)
## Csv Example
diff --git a/docfx/articles/treeview.md b/docfx/articles/treeview.md
index 427a536c0..77a2372a2 100644
--- a/docfx/articles/treeview.md
+++ b/docfx/articles/treeview.md
@@ -2,7 +2,7 @@
TreeView is a control for navigating hierarchical objects. It comes in two forms `TreeView` and `TreeView
The MainLoop property in the the
-Application
+Application
provides access to these functions.
When your code invokes Application.Run (Toplevel), the application
will prepare the current
-Toplevel instance by
+Toplevel instance by
redrawing the screen appropriately and then calling the mainloop to
run.
You can configure the Mainloop before calling Application.Run, or you diff --git a/docs/articles/overview.html b/docs/articles/overview.html index 9a0e12836..6991c9d6d 100644 --- a/docs/articles/overview.html +++ b/docs/articles/overview.html @@ -8,7 +8,7 @@
In the example above, you can see that we have initialized the runtime by calling the
-Init method in the Application class - this sets up the environment, initializes the color
+Init method in the Application class - this sets up the environment, initializes the color
schemes available for your application and clears the screen to start your application.
The Application class, additionally creates an instance of the Toplevel class that is ready to be consumed,
+
The Application class, additionally creates an instance of the Toplevel class that is ready to be consumed,
this instance is available in the Application.Top property, and can be used like this:
using Terminal.Gui;
@@ -155,12 +155,12 @@ class Demo {
}
All visible elements on a Terminal.Gui application are implemented as -Views. Views are self-contained +Views. Views are self-contained objects that take care of displaying themselves, can receive keyboard and mouse input and participate in the focus mechanism.
Every view can contain an arbitrary number of children views. These are called
the Subviews. You can add a view to an existing view, by calling the
-Add method, for example, to add a couple of buttons to a UI, you can do this:
Add method, for example, to add a couple of buttons to a UI, you can do this:
void SetupMyView (View myView)
{
var label = new Label ("Username: ") {
@@ -182,14 +182,14 @@ the Subviews. You can add a view to an existing view, by calling the
The container of a given view is called the SuperView and it is a property of every
View.
There are many views that you can use to spice up your application:
-Buttons, Labels, Text entry, Text view, Radio buttons, Checkboxes, Dialog boxes, Message boxes, Windows, Menus, ListViews, Frames, ProgressBars, Scroll views and Scrollbars.
+Buttons, Labels, Text entry, Text view, Radio buttons, Checkboxes, Dialog boxes, Message boxes, Windows, Menus, ListViews, Frames, ProgressBars, Scroll views and Scrollbars.
Terminal.Gui supports two different layout systems, absolute and computed \
-(controlled by the LayoutStyle
+(controlled by the LayoutStyle
property on the view.
The absolute system is used when you want the view to be positioned exactly in
one location and want to manually control where the view is. This is done
-by invoking your View constructor with an argument of type Rect. When you do this, to change the
+by invoking your View constructor with an argument of type Rect. When you do this, to change the
position of the View, you can change the Frame property on the View.
The computed layout system offers a few additional capabilities, like automatic centering, expanding of dimensions and a handful of other features. To use @@ -207,7 +207,7 @@ var label = new Label ("Hello") { // Absolute position using the provided rectangle var label2 = new Label (new Rect (1, 2, 20, 1), "World") -
The computed layout system does not take integers, instead the X and Y properties are of type Pos and the Width and Height properties are of type Dim both which can be created implicitly from integer values.
The computed layout system does not take integers, instead the X and Y properties are of type Pos and the Width and Height properties are of type Dim both which can be created implicitly from integer values.
Pos TypeThe Pos type on X and Y offers a few options:
Among the many kinds of views, you typically will create a Toplevel view (or any of its subclasses, -like Window or Dialog which is special kind of views +
Among the many kinds of views, you typically will create a Toplevel view (or any of its subclasses, +like Window or Dialog which is special kind of views that can be executed modally - that is, the view can take over all input and returns only when the user chooses to complete their work there.
The following sections cover the differences.
Toplevel views have no visible user interface elements and occupy an arbitrary portion of the screen.
+Toplevel views have no visible user interface elements and occupy an arbitrary portion of the screen.
You would use a toplevel Modal view for example to launch an entire new experience in your application, one where you would have a new top-level menu for example. You typically would add a Menu and a Window to your Toplevel, it would look like this:
using Terminal.Gui;
@@ -297,15 +297,15 @@ class Demo {
}
}
Window views extend the Toplevel view by providing a frame and a title around the toplevel - and can be moved on the screen with the mouse (caveat: code is currently disabled)
+Window views extend the Toplevel view by providing a frame and a title around the toplevel - and can be moved on the screen with the mouse (caveat: code is currently disabled)
From a user interface perspective, you might have more than one Window on the screen at a given time.
Dialog are Window objects that happen to be centered in the middle of the screen.
+Dialog are Window objects that happen to be centered in the middle of the screen.
Dialogs are instances of a Window that are centered in the screen, and are intended to be used modally - that is, they run, and they are expected to return a result before resuming execution of your application.
Dialogs are a subclass of Window and additionally expose the
-AddButton API which manages the layout
+AddButton API which manages the layout
of any button passed to it, ensuring that the buttons are at the bottom of the dialog.
Example:
bool okpressed = false;
@@ -375,7 +375,7 @@ to background views when a modal view is running.
Colors and Color Schemes
All views have been configured with a color scheme that will work both in color
terminals as well as the more limited black and white terminals.
-The various styles are captured in the Colors class which defined color schemes for
+
The various styles are captured in the Colors class which defined color schemes for
the toplevel, the normal views, the menu bar, popup dialog boxes and error dialog boxes, that you can use like this:
Colors.Toplevel
@@ -387,7 +387,7 @@ the toplevel, the normal views, the menu bar, popup dialog boxes and error dialo
You can use them for example like this to set the colors for a new Window:
var w = new Window ("Hello");
w.ColorScheme = Colors.Error
-
The ColorScheme represents
+
The ColorScheme represents
four values, the color used for Normal text, the color used for normal text when
a view is focused an the colors for the hot-keys both in focused and unfocused modes.
By using ColorSchemes you ensure that your application will work correctbly both
@@ -398,7 +398,7 @@ attribute for a particular pair of Foreground/Background like this:
Detailed description of the mainloop is described on the Event Processing and the Application Main Loop document.
+Detailed description of the mainloop is described on the Event Processing and the Application Main Loop document.
diff --git a/docs/articles/tableview.html b/docs/articles/tableview.html index d5152ed33..2e0bdc40a 100644 --- a/docs/articles/tableview.html +++ b/docs/articles/tableview.html @@ -8,7 +8,7 @@This control supports viewing and editing tabular data. It provides a view of a System.DataTable.
System.DataTable is a core class of .net standard and can be created very easily
- +You can create a DataTable from a CSV file by creating a new instance and adding columns and rows as you read them. For a robust solution however you might want to look into a CSV parser library that deals with escaping, multi line rows etc.
var dt = new DataTable();
diff --git a/docs/articles/treeview.html b/docs/articles/treeview.html
index 649857e0c..6b09df9a2 100644
--- a/docs/articles/treeview.html
+++ b/docs/articles/treeview.html
@@ -8,7 +8,7 @@
Tree View
-
+
@@ -73,7 +73,7 @@
Tree View
TreeView is a control for navigating hierarchical objects. It comes in two forms TreeView and TreeView<T>.
-
+
Using TreeView
The basic non generic TreeView class is populated by ITreeNode objects. The simplest tree you can make would look something like:
var tree = new TreeView()
diff --git a/docs/articles/views.html b/docs/articles/views.html
index fc2fe3a6d..3cdc91b70 100644
--- a/docs/articles/views.html
+++ b/docs/articles/views.html
@@ -8,7 +8,7 @@
Views
-
+
diff --git a/docs/index.html b/docs/index.html
index e3cd67628..68efafe07 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -8,7 +8,7 @@
Terminal.Gui - Terminal UI toolkit for .NET
-
+
diff --git a/docs/manifest.json b/docs/manifest.json
index 815eca864..3212b5590 100644
--- a/docs/manifest.json
+++ b/docs/manifest.json
@@ -1,6 +1,6 @@
{
"homepages": [],
- "source_base_path": "E:/Repos/CSharp/gui.cs/docfx",
+ "source_base_path": "C:/Users/charlie/s/gui.cs/docfx",
"xrefmap": "xrefmap.yml",
"files": [
{
@@ -18,7 +18,7 @@
"output": {
".html": {
"relative_path": "README.html",
- "hash": "zbLhYyTw5KLrFWZHz+tXXtI/FsjX4saejerRQdPf/RI="
+ "hash": "laW0ZhVnSCWLRJa08C1vrX4A34iZJKZf7iBAUeZ1TUo="
}
},
"is_incremental": false,
@@ -30,7 +30,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Application.ResizedEventArgs.html",
- "hash": "Ow7zFXbl13sU+JyBR2/WteBrKTiNqDFQHUhxMW3xRQI="
+ "hash": "M76jDT9xin0DKB16NZbztZqWV3Jtw6Bz7XOcZlTFllo="
}
},
"is_incremental": false,
@@ -42,7 +42,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Application.RunState.html",
- "hash": "85eN0g7BqcCtlvkuJ1KYBVncXOKQhJMvBA2h3i71Odw="
+ "hash": "03Hs9c1zuIQuAQvJqjaxpj8Gh9LlAIXfL6S8yX4ETnk="
}
},
"is_incremental": false,
@@ -54,7 +54,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Application.html",
- "hash": "G4w+EaQ/bOboYyhc/goZ83rgoEdmkvtFcdpgvlYBEu4="
+ "hash": "G/O4TOwjsgkrb5W04/SnVQN0yvLsZ01DRQSVeR5QBBk="
}
},
"is_incremental": false,
@@ -66,7 +66,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Attribute.html",
- "hash": "aAmf2bT1zVx+XBmUYaFanhyqS7GbVsReAROo5uXAGtY="
+ "hash": "xQyhWk0HCr5xe0HzCnpjV3u6A/4edHkJYGxCG3z0WbM="
}
},
"is_incremental": false,
@@ -78,7 +78,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Autocomplete.html",
- "hash": "M7/d4r1qZtTzanz3+iVAlxdKIsHbcuadshtbDFpjnt8="
+ "hash": "3X/AhO0+zbwmzksEljoNcjkmj0mq7j+xGFpWzp/cATA="
}
},
"is_incremental": false,
@@ -90,7 +90,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Border.ToplevelContainer.html",
- "hash": "xyIjo5DP91mg7qup9UzJkouYEjMryQnkxY+pFHio8wI="
+ "hash": "IKJAPcG3TMYyYQe9HVEGYc8NOLZ1RQag6eILD/acNao="
}
},
"is_incremental": false,
@@ -102,7 +102,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Border.html",
- "hash": "clNluX7rfNVKvRPWVFkeLgGkCW6Uxal2V6kluMcfzv8="
+ "hash": "VGWcGArRVSRMqLYz4qsvJ/OsAh08F2wsqfIptZ0MlRo="
}
},
"is_incremental": false,
@@ -114,7 +114,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.BorderStyle.html",
- "hash": "0eiL2jwdTxcoFEYvSv9Z9GBT4ETFrnAeg1Cn88I1CP0="
+ "hash": "W6Ls7eEEDTa/lCPUHulaSn8Gq5d16FOIBUf33F07bj4="
}
},
"is_incremental": false,
@@ -126,7 +126,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Button.html",
- "hash": "3qHnKwz52ABfqVCtU0LEueV7Kmb8vEKuML8UUMKWeI4="
+ "hash": "TSR3CC4j01xMgYSYNtj58zl2WzfG1NjNsETJqypeoRk="
}
},
"is_incremental": false,
@@ -138,7 +138,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.CheckBox.html",
- "hash": "DwgQj3vtzIkos4QVzGgVh+0AIWWg4gr1eAOSWEdrX+M="
+ "hash": "NACU9+EsaJMZV4MMe8f0Q6aoInAAGMI4plTknr0qbMg="
}
},
"is_incremental": false,
@@ -150,7 +150,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Clipboard.html",
- "hash": "YTGC67qT7BOzJCL4riK5BV2TCLXgFJIrLMVpkf5DKzI="
+ "hash": "ZbUsH4BXMUqyXCQjYhwAAd2PscPr/5La7FJC6GCfxrs="
}
},
"is_incremental": false,
@@ -162,7 +162,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ClipboardBase.html",
- "hash": "a1A76h3tUqrb+GQt2aTuAB30/UmL1hV0blTPzDj9f2A="
+ "hash": "jmtQ3VjD+MZDdLktS5zntFvObSmOO+qmudfjW5g5sOM="
}
},
"is_incremental": false,
@@ -174,7 +174,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Color.html",
- "hash": "a2JZ35mgFXLnriixVaHy6KWxH6rSAqL5fU7Ttw3RtaI="
+ "hash": "reoPmWsAjgwTrN8C8xElXliRZkZy3vA0ms+N4TPxVg4="
}
},
"is_incremental": false,
@@ -186,7 +186,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ColorScheme.html",
- "hash": "EjKuRaDlyADoU19wKrnktzJRLildApd5C6s1CzgfqcU="
+ "hash": "LpAmVrkTIO//xY7S9IU39y6tjfFwzC4uRIthiL2iJgs="
}
},
"is_incremental": false,
@@ -198,7 +198,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Colors.html",
- "hash": "y913ndy83QBy+o0hiG7gcdXVb+V0rtUqy2g23OVGAHM="
+ "hash": "VpbzjCg5mryvxNo87lDvmJpM9dLAcMOPKC+LEXwrFiU="
}
},
"is_incremental": false,
@@ -210,7 +210,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ComboBox.html",
- "hash": "A9usSaIXpw+Lllj190vbSbrWY9/zsFxEJgycf0Tl460="
+ "hash": "a0XUW3B2shNyhsEmixuh/Q0z74IysoVs0GsbpLKRqz0="
}
},
"is_incremental": false,
@@ -222,7 +222,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.DiagnosticFlags.html",
- "hash": "QwXC+UOydlYg7vhhuOPOCY/LbXAYl4G5e8kZZ2YnTB8="
+ "hash": "DHtvj6nMteldZhcBuMQZuKtmX9krYd1GsJOZ3UZW2CY="
}
},
"is_incremental": false,
@@ -234,7 +234,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ConsoleDriver.html",
- "hash": "3D654nS9fwN95I6nAzBGUv4MiyiyXZQxGb+8jmfwGxM="
+ "hash": "E3+4kM/ylW9bE4j+1FywsYysM5MYRat7PXSwrC+5Ago="
}
},
"is_incremental": false,
@@ -246,7 +246,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.CursorVisibility.html",
- "hash": "t2X+3Zr0mmbvLJmQM6vTfud+gwUsIe1G5rizFaRKe0E="
+ "hash": "LNfPamEB3EYdZ+0smaJIWnlEVGVal1mMPJcHBHJE/X8="
}
},
"is_incremental": false,
@@ -258,7 +258,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.DateField.html",
- "hash": "31W0R0/BK1yvDHRQQoAaPfahpsgkReJ9AsdCUDGLt1s="
+ "hash": "h5NOxAAljTXZP6b9i57Tdx8+p62Tc+mu7Wvu7yFCMdo="
}
},
"is_incremental": false,
@@ -270,7 +270,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.DateTimeEventArgs-1.html",
- "hash": "TPkRX2rspMy01WbBn48deyc9MpXd15KCM0lEdh7p+H0="
+ "hash": "UysWJgBsGRgmI7cLQ/mKuUeGobzlzRGE9Ri+JGRNPC8="
}
},
"is_incremental": false,
@@ -282,7 +282,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Dialog.html",
- "hash": "Y8vBnxp/twro+CyIZ6+UVB+hnrbO8g2d+lEmD8u3DnA="
+ "hash": "Wkr+FyWFbDaH0DgC7KdDCHscJ2hqQPi8z26ifjbIPUM="
}
},
"is_incremental": false,
@@ -294,7 +294,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Dim.html",
- "hash": "g1g/YsYZvbU8zcFBBYDkA1qPQnLQhtp7sjXeYowD3vE="
+ "hash": "4REYbDMJXAISoJ7h0Y0qmdpTd5tHb3r9o9dgNUFkEeM="
}
},
"is_incremental": false,
@@ -306,7 +306,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.DisplayModeLayout.html",
- "hash": "I9E/deTbRAKwjodsPbZjxQbSIA3M+sMwIVyxs67AkvE="
+ "hash": "N7uu0QALXC1NlI4rLmKqVOoyDOhu4duXBu1A7njGGaI="
}
},
"is_incremental": false,
@@ -318,7 +318,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.FakeConsole.html",
- "hash": "70oeUPk744OXUgsDzT4MShOIvWuaQOSEluFFuD7neo0="
+ "hash": "/PD0lzffNAbdp38FnvtbN+qS0iBYaK/ohNzFeGwfWgQ="
}
},
"is_incremental": false,
@@ -330,7 +330,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.FakeDriver.html",
- "hash": "upSgHRFYO7kFLFjq7yIa1WuDwBgBMn9Qr+qtXjhkkC8="
+ "hash": "vaLB0zy1F3qBXhJaTGudTdluQ3GqTvKbNSoTXpUjhss="
}
},
"is_incremental": false,
@@ -342,7 +342,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.FakeMainLoop.html",
- "hash": "1Qg5GY68Sb5zlHynCkatE4AoEugvWeE/EO7X+F7LO3o="
+ "hash": "jDvYZbEO6UZSyW1ATE19kCfFyFxPWAR8H1017JxwUG8="
}
},
"is_incremental": false,
@@ -354,7 +354,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.FileDialog.html",
- "hash": "UaVJYC8oOZp9+E+UhWpRlYiO3q268uaUEMpzc5GoFis="
+ "hash": "zwSFkDWWPTopj2TkymarNQUVNX2o9FPXV7/cZfA9Nbc="
}
},
"is_incremental": false,
@@ -366,7 +366,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.FrameView.html",
- "hash": "o407sI5Cswyc+OWpXH35wmaSVcC2bxvaHDxG7G/X6Y8="
+ "hash": "4aBN2bBwqvEOS0jFW0CPN8GJ1km71IKUKj9z4xypqFA="
}
},
"is_incremental": false,
@@ -378,7 +378,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.GraphView.html",
- "hash": "/+eGQXdwV6UaNGVuS/hm0IbUrbicPJ+yff6D/41UelE="
+ "hash": "dlmA01WJqpVdhnER2oloOunzF0QdTQYnJ7dwhoENLzw="
}
},
"is_incremental": false,
@@ -390,7 +390,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Axis.html",
- "hash": "gKHYV4zAnwHuSgYYZZcsW9idhoEotmxU0MUn5V1tz18="
+ "hash": "Up2926aNzbtTj3TkW2EAw5BEE++OlGNE2YS2NH8KQCc="
}
},
"is_incremental": false,
@@ -402,7 +402,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.AxisIncrementToRender.html",
- "hash": "LA4s1p0m1kKpNsLQRj+StILbcOuIWuVX6pELc2Gk+tA="
+ "hash": "7EHbCJnyjYx7kb0OGkvrs4EY+3bhVS61LdOkAj2sA1I="
}
},
"is_incremental": false,
@@ -414,7 +414,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.Bar.html",
- "hash": "1mSaAI0kIhdmUad5ufaxE5m25+wQOzuSzktxh0LHtbM="
+ "hash": "ch8/XzENzU5SmwJyyCBpm4WblIOzL4Yro8TF58LyJZs="
}
},
"is_incremental": false,
@@ -426,7 +426,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.BarSeries.html",
- "hash": "F1bYQJv4CLuYiWRMPSAaRsdGcZlogagUxKbXpy+jWrE="
+ "hash": "mxwbdl+AENkfFgazWh/3zdiBHyOZZZLS9Htf9L23Fro="
}
},
"is_incremental": false,
@@ -438,7 +438,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.GraphCellToRender.html",
- "hash": "Ui8VenrCzc/NXvk7CoQSToyoZkvYvFryEyNdwWFfn0g="
+ "hash": "o9j5jRuJIzTNS+eCRF8qjWcrmL2lTxXtcvR+XhbLKmY="
}
},
"is_incremental": false,
@@ -450,7 +450,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.HorizontalAxis.html",
- "hash": "USJW9YxIBnCRufYm/OtnP0oeexrjY65BKfJ5YDS9w7o="
+ "hash": "L/c+QnN0bOOgm4YJXE0+x/IwUiPFZTeNHkDn2L9Shb4="
}
},
"is_incremental": false,
@@ -462,7 +462,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.IAnnotation.html",
- "hash": "G/gjnsvtLKiC3HfkJGfks+TaSc4RIa/y6dbuaQHASec="
+ "hash": "bPJAcT8OzrCKkcWMMxa7pjCHkgWxN4BPyTQfTNRrOgk="
}
},
"is_incremental": false,
@@ -474,7 +474,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ISeries.html",
- "hash": "ExfE88FzbI2kCMDibVrNkzLZx6r+3xozwVknjQJoioE="
+ "hash": "ZbPUL8jrbpyQzUYsC9IeQSu/CqfibIS6cNtK5Ncisnw="
}
},
"is_incremental": false,
@@ -486,7 +486,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LabelGetterDelegate.html",
- "hash": "lyoxb41AyEMZw1EnW5PUit03A7P64oapX1BVtsaL4zY="
+ "hash": "95BxsEwLcUmJmA5s9HQdakzM4M85BXVYbIWqJValYYk="
}
},
"is_incremental": false,
@@ -498,7 +498,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.LegendAnnotation.html",
- "hash": "VW/SYltldE48fne87hubvFloJUW+9LSx6X3PPsZihes="
+ "hash": "3Kfu6/TFdGT4mSmr/4tCM8n3hZtwznvmvfEbfYtyUaY="
}
},
"is_incremental": false,
@@ -510,7 +510,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.MultiBarSeries.html",
- "hash": "JKIHS9sxzyVzSQc8eLmoc8Z2ECrQUxrLUVMk1DvNMJA="
+ "hash": "WFuXzAYX14QH8lsZ5G9pb9Jq9wi/djuGLeLfjWZXIW0="
}
},
"is_incremental": false,
@@ -522,7 +522,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.Orientation.html",
- "hash": "dgr3nVgN9aNcWxezDp7E+JWtFCDufQBrqdPaPbzUsro="
+ "hash": "6CY0ARQFdl7RjKvbMPxEYqGWVe2U6VvvDOkpL2I07p0="
}
},
"is_incremental": false,
@@ -534,7 +534,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.LineF.html",
- "hash": "XFi9YtQoLzCI8xBVPlwWwJZIQrX7nJC4HrFnurX3SOs="
+ "hash": "RTYnC2cFLMFFtRg3+nIjsmPqa8sfRNZT0ighnWZCp9E="
}
},
"is_incremental": false,
@@ -546,7 +546,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.PathAnnotation.html",
- "hash": "KpQ9OYtHGuqYlHRG/JFU5qKaEIAcIsT9vsWBnAOKtBw="
+ "hash": "GgygQvEMRWZGXhTMpTrm86235T32roe0xL1WzxZ1zJw="
}
},
"is_incremental": false,
@@ -558,7 +558,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.ScatterSeries.html",
- "hash": "UhYviUo9ANek7wn7s3jNKzet4azyOg21FpfULNnPKX8="
+ "hash": "clMAGWI2ls1ernAYmDr3CF/6S4znNgudgX48GAbpHP4="
}
},
"is_incremental": false,
@@ -570,7 +570,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.TextAnnotation.html",
- "hash": "gfskT2sjBu0ZHcxkKUcN9C1dEfgcrlcLVKquKKKqIyQ="
+ "hash": "mlZRr+XNyw6CGBB8AV/C9OIEYH2Vy6VpT3rQVCpnyEE="
}
},
"is_incremental": false,
@@ -582,7 +582,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.VerticalAxis.html",
- "hash": "i9K5c4nS889J84cCYq+oicslVFBW1ERPS8ZGRpIQ2oU="
+ "hash": "leAwygWmSyDCs7fQpLuku/IdY28fYvUQGR8IlnDOrTw="
}
},
"is_incremental": false,
@@ -594,7 +594,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Graphs.html",
- "hash": "+NuYx4EsQdN1m6VzPIvp8pf/3hNh1OSriUzxns8i1Ug="
+ "hash": "uYB/2ubkfgc7kQTGpVMASsVz+hWk7kMDQp4XcjCwEE0="
}
},
"is_incremental": false,
@@ -606,7 +606,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.HexView.html",
- "hash": "my9wL3rGJCgEafC/DQsQexe/phwMcl4I194ZJXnTrGk="
+ "hash": "NBYikM57Khx8e/JD1dk0r/HjXAetfUWgcnQs1rkCrio="
}
},
"is_incremental": false,
@@ -618,7 +618,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.IClipboard.html",
- "hash": "O2rKbW9Piz3lmEucUjEjDXHhjsORwkNAiNls5SWSu98="
+ "hash": "fRiFCzM37qZr57zciE9fGgKLJBBbbecGab4yPyMykEQ="
}
},
"is_incremental": false,
@@ -630,7 +630,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.IListDataSource.html",
- "hash": "WNYCEn0ee9IpTtx4jR+eFoWd3sn/y4eGK1fb1pKipys="
+ "hash": "urTSJDVIHXjD5nCiZS+VswegEKqHUx6fAk9IUqTJFiI="
}
},
"is_incremental": false,
@@ -642,7 +642,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.IMainLoopDriver.html",
- "hash": "Q6Skt8lNpqKY5Jv65RhgYM5xqVmyxUdEiuxmO8U2TBw="
+ "hash": "TGi6SvqWMuAhf3uQ4rwu/EtYnLick5atzmQqIbDG4II="
}
},
"is_incremental": false,
@@ -654,7 +654,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ITreeView.html",
- "hash": "TPwZXDaHBuB5hwfi9UJ5wrvDMa7xK7siLeX0A4aVtiM="
+ "hash": "aarzYejAReTLtlLysuobUAkxanjppCRQpCH3+fpewRY="
}
},
"is_incremental": false,
@@ -666,7 +666,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Key.html",
- "hash": "IOjSZv/bFx2NMkclJP6BVpKDOWIwGZubcsXrXXjSngo="
+ "hash": "F8GO2gRYNsVNk+KLMfkwQPqR+qbyETL6Z9Q/+nIHkSA="
}
},
"is_incremental": false,
@@ -678,7 +678,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.KeyEvent.html",
- "hash": "laB2qEkmW8kxzBdTLFrnnXef0qT35lRp7FhrIf9scjE="
+ "hash": "cs8oRWkhMpa60aAG6gislqOtN7P/1knyFHMihAQyLj4="
}
},
"is_incremental": false,
@@ -690,7 +690,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.KeyModifiers.html",
- "hash": "szYxnt76bhvEDpl9Qwcm/HWiyonUkzTVQ61k/V+0NEY="
+ "hash": "RHTVDipLDfWcm0v+Yu2B6ASFqXMLMIp7Q9exBY+bNUA="
}
},
"is_incremental": false,
@@ -702,7 +702,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Label.html",
- "hash": "I0QkhNWAIY+r0y6LznP5R3dOnuQfK6SLRalaIcIbGCw="
+ "hash": "4Y55leXJyIw0kgKfqNRsVCCTFADQTBhr0XcK6huPHKc="
}
},
"is_incremental": false,
@@ -714,7 +714,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.LayoutStyle.html",
- "hash": "HEbNJuWDCN/ZwN2wGselHWOGxTd4/8Y3QjqtrhT+g6s="
+ "hash": "cGcdp/9PMNdxvZb6tK3r7LF8GBPXuzrpGZ8pbbJfaPw="
}
},
"is_incremental": false,
@@ -726,7 +726,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ListView.html",
- "hash": "LSgfsRA5dzSTfZ7xEzEqnJ0Q6Imu+EEQn5VG/qr6kbo="
+ "hash": "g9u3ilmu5n4WouJPa2zceQUxjN+fNidKyAH4OtcYBq4="
}
},
"is_incremental": false,
@@ -738,7 +738,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ListViewItemEventArgs.html",
- "hash": "3cyXDGVsqRCTnML7pcfE+uQgI1k595hw0j/qHtUQEYY="
+ "hash": "nZwwvYCSWzEaDMTPErA3M58x2L/WwoDa+TdAVj24+oY="
}
},
"is_incremental": false,
@@ -750,7 +750,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ListWrapper.html",
- "hash": "QXEychHLcX5SsBes5ciGYcABqEM8BuvomNFbfz8zcUM="
+ "hash": "7rzhtyhHC6HuDlE9Pz4+PzSyiuErGLd8GzMdH08QRZI="
}
},
"is_incremental": false,
@@ -762,7 +762,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MainLoop.html",
- "hash": "VFlQr5BOmTllp3orlOQdINSR5U8/T4IZvqvOFRcRUwc="
+ "hash": "UeB57liQIEEvtLmHgnY+GNGR1SSrY3nUZgKi5Yc4tjA="
}
},
"is_incremental": false,
@@ -774,7 +774,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBar.html",
- "hash": "YUgD9InirAZFwvO9T1tCPc2HKowah5wKd5N6qZaEI/0="
+ "hash": "rA+WWzHJ822Kmgwa8E/I3Kl6CA+Xk4jFE5djwP7jZgY="
}
},
"is_incremental": false,
@@ -786,7 +786,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MenuBarItem.html",
- "hash": "9Jd99bmYV+c8uGtfEIwrE9nMz9dK//EHiI7tEB5b2Is="
+ "hash": "en4mbbhfKktXdxhJgAY7/mSHHCzHrZ6w/kJ3cJe0aTU="
}
},
"is_incremental": false,
@@ -798,7 +798,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItem.html",
- "hash": "kpvwsRCT6hv4DUZ4AVVYNbrIxtsYHF1af91YWTfDlOE="
+ "hash": "8WtdOfa3N/lBatt1bqQIoPgZPp5JWiCqh4IxpjDIMZQ="
}
},
"is_incremental": false,
@@ -810,7 +810,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MenuItemCheckStyle.html",
- "hash": "+kY00mOh3e9b2Z6HLjVbzlZrHhbtso1ligj3WtK7sfQ="
+ "hash": "1lLGxq7t8tv8OIh0vwuafEnPRDgRLwDAmr+eRLwlFCI="
}
},
"is_incremental": false,
@@ -822,7 +822,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MenuOpeningEventArgs.html",
- "hash": "4qTkHAM5zKtF82stV0qNE+EFAWJeyco1tBpFzAiwV6I="
+ "hash": "4OxmMmW/nAX0242D/d8pAWsacXnmsyvlgoOBwxdRRrY="
}
},
"is_incremental": false,
@@ -834,7 +834,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MessageBox.html",
- "hash": "NYdLR4NcmaZpa5tymxxiAtsB0yGUdWPDaQH5Atj3gDk="
+ "hash": "VHlq3cu+KyFu47b84OZiraFRwpV1NXSNbJsvMneo0No="
}
},
"is_incremental": false,
@@ -846,7 +846,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MouseEvent.html",
- "hash": "4cCrNjZ92Sr9xdx+7hUxcW4/ez86uKbMNh9vpT3PuQs="
+ "hash": "gRpTUKC5qTZlactOAiy7Flul1n7rIhRlkrcxudE6OhM="
}
},
"is_incremental": false,
@@ -858,7 +858,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.MouseFlags.html",
- "hash": "D8q1GgU0Ozio03SdjbDXUe26jXNN7nKhhHrIGkUxLmk="
+ "hash": "PYyNQKbGmBp+qChu2i9zWzHV4fqQI13VQpwn6zrow9k="
}
},
"is_incremental": false,
@@ -870,7 +870,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.OpenMode.html",
- "hash": "hBiA3nX1l0hA3BxgpYtB5ojU5F2XJTlGss1T8UvlmR0="
+ "hash": "42zxESyJ2KPU2fHf5qFknc9cxCIu4LolGCn8R6fo1rU="
}
},
"is_incremental": false,
@@ -882,7 +882,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.OpenDialog.html",
- "hash": "DU6/hKll0GZxKvCzKl7EE6hg00bjCoaFiWsFRRma898="
+ "hash": "kmTjKC3jyKq+Gomz0PVleISAtHin3PozL/ksDzEdO8Y="
}
},
"is_incremental": false,
@@ -894,7 +894,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.PanelView.html",
- "hash": "ejz5djqDop39BVojMscGKB6aWcN98RsqeWZsCHICCI0="
+ "hash": "lTpblj/+R/we7JvqKntaOZ8Xe8QZ2kMjw018gnWwdYc="
}
},
"is_incremental": false,
@@ -906,7 +906,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Point.html",
- "hash": "a3gQig0sOn4rxteAG9OMC9SDBSWLSUTnoDbmprEoub4="
+ "hash": "Mc/hIEy7Lmo8moCbahOUT9I11ZCMR4iyIMyYetPrMv8="
}
},
"is_incremental": false,
@@ -918,7 +918,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.PointF.html",
- "hash": "fsjtFSDJWeFi8UgoSA2esREfBWcAGO7GK/V/MoS7b7k="
+ "hash": "uwqP1E8slN/BACiezvi0DxoHNdVQ41GE/VcwiHG+aaE="
}
},
"is_incremental": false,
@@ -930,7 +930,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Pos.html",
- "hash": "8Akxfr+NZcbcEyuq8VPm0iW6a8GOsv7t1AJk/E8dABg="
+ "hash": "cxpwIYb+Cgmwbynn2XyjDG8PLaHtZk2JBRcvLmtjkcQ="
}
},
"is_incremental": false,
@@ -942,7 +942,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBar.html",
- "hash": "jQxuhb2n9aGE60S0us+HWMtmiNzK049Z/7Ho88ukO0g="
+ "hash": "iwUV0eJT9z4GRn9Ljl+GJTaIJLIb1VVjYPZpGOYGVpU="
}
},
"is_incremental": false,
@@ -954,7 +954,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarFormat.html",
- "hash": "O76hTgQKixLZuJmYRvLSC7PBW559CxCM8RaaJhEnxdE="
+ "hash": "2uBrrx195B6zTJGTXm7+A2lDgs9EXvyav1WPGtmM0gA="
}
},
"is_incremental": false,
@@ -966,7 +966,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ProgressBarStyle.html",
- "hash": "kt6yRLdIw4uy5qoRVf1yT9d++0CUp4fadf5zi/kOyv0="
+ "hash": "agAnCObnulkMLIriJeiXFOnrYUXt14LtBP5UXulsYW8="
}
},
"is_incremental": false,
@@ -978,7 +978,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.RadioGroup.SelectedItemChangedArgs.html",
- "hash": "adKenl/9HvY52d+Q34Vqsdrx6cy48Q8cdJ/RFMpWJH4="
+ "hash": "vrCTdwrMj6u9EVGMItsfjE7waY0Pkp4EuuSMM0rgwpk="
}
},
"is_incremental": false,
@@ -990,7 +990,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.RadioGroup.html",
- "hash": "McZbudPja2oTaHK+qHjZnE4JVVuNxSxx3AoRUlgThKA="
+ "hash": "GpZoUqzu+0/lR9WJj/ZucypF3Yn2GwXbyGtNjKxcwUo="
}
},
"is_incremental": false,
@@ -1002,7 +1002,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Rect.html",
- "hash": "VsWJ6ITIiqc5PCfmqm/321Ur9DqDTLZzReGXhnSDjto="
+ "hash": "TlpiUgWMeI5gUJDLsW6Lg0ZD7hfS+WUgP+1Jk0GMQNs="
}
},
"is_incremental": false,
@@ -1014,7 +1014,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.RectangleF.html",
- "hash": "uuaS4uVSqUr0mXrSD5RgA7tdoza0VZ4amKzYMTxHXxE="
+ "hash": "MmI71OXMtDfSv2wJW8WOGP4o+ROMB+L9HczWtE93keU="
}
},
"is_incremental": false,
@@ -1026,7 +1026,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Responder.html",
- "hash": "nRkcrusmasoWJ1K+NARkg4d3eH+I7jBfkyDP7lI/1zk="
+ "hash": "6YHvjCiW8A+PL1+j+cF6ORi4mve7f88//uIDyRGHmN8="
}
},
"is_incremental": false,
@@ -1038,7 +1038,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.SaveDialog.html",
- "hash": "8PwYuu0ekk3LFFFwzKqBZVgixnlg/jgluETLkuPr2RM="
+ "hash": "6r2yodLX5y9H6gB5eYM3C/oQdjQjmwNfj1MLlW0Cew4="
}
},
"is_incremental": false,
@@ -1050,7 +1050,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollBarView.html",
- "hash": "ZREXHU/9ysEA1SzVkYRPfPqORihgMlfiPykbiqLYsc4="
+ "hash": "0KUC1/9bz/9zVzcX51KTo4nosSjojkv6/GyomevgqgA="
}
},
"is_incremental": false,
@@ -1062,7 +1062,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ScrollView.html",
- "hash": "oHb+4Hvdm2uQGR0+po3y4FRawQoGmIBEGUWfdjwbdNQ="
+ "hash": "5YcV+m1gkAhkhastZJ8uqSfjJtRJ6+i6rSncpROJv1w="
}
},
"is_incremental": false,
@@ -1074,7 +1074,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ShortcutHelper.html",
- "hash": "WmmyJRFg0mfJ8oY+U8xoMb9eWWRGryBo7yTJVOosL/Q="
+ "hash": "9uJ26+GiiqPKZz1ymBmkS0FrPrVS1X3J7m9tjh57nPg="
}
},
"is_incremental": false,
@@ -1086,7 +1086,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Size.html",
- "hash": "WlQFE7R1icC9iuatdMvm/2L8tDxC0fcD6iTGLtf8K8M="
+ "hash": "loU0ECaDrQeQ4Rpk10qMj7IKs22Mr2mvq4CBC5t5zQo="
}
},
"is_incremental": false,
@@ -1098,7 +1098,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.SizeF.html",
- "hash": "hOiwqlOP9uC/UPL4xTNQmC0HAwkd/cbUiBP+2XYjhSc="
+ "hash": "RYMmMUZWbkAWlB0oD+uUw8Mg4GEpM7hvw/4aK+8fddI="
}
},
"is_incremental": false,
@@ -1110,7 +1110,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.StackExtensions.html",
- "hash": "JYryPI0TdyIZAmICztZ1VqVaofteHA9U1p93zFRMrJ8="
+ "hash": "b0TY8htGUvUdACJlm4FbNbD32SYV2xpKQ1Vk0DZwles="
}
},
"is_incremental": false,
@@ -1122,7 +1122,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.StatusBar.html",
- "hash": "hZvDLgabLC2AI7NYVXXXFXBNFBXPpvbGKv+NQogr/Gw="
+ "hash": "IKT3huPqZxSJlhYIvB4wf1ZTAc5mBZ9sm0DKCsSriMc="
}
},
"is_incremental": false,
@@ -1134,7 +1134,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.StatusItem.html",
- "hash": "pYCixvygGt8bKpLxtE4xezV/te7jsTTQOBrfA34HOoY="
+ "hash": "hJvo+/aiXqDbrEgvnuqW16zsc14xtjjxZvSXC1oUY9M="
}
},
"is_incremental": false,
@@ -1146,7 +1146,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.Tab.html",
- "hash": "Rt4a2xXVbf5gzsTXjpliwsGz/tUA/1e4jiiHyliMZ3E="
+ "hash": "hb6kDpcTyDrT7GosCAR4RRMEhI8okTVMGC6ZDijSdTc="
}
},
"is_incremental": false,
@@ -1158,7 +1158,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabChangedEventArgs.html",
- "hash": "pURzIzw79hsYnv3tBCNizezK79TP1GRzj5Wm7RrRqNY="
+ "hash": "WUP28FCp/+JvKXe5FdGItpBsd+vQU6E4WxOfBL2RkKk="
}
},
"is_incremental": false,
@@ -1170,7 +1170,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.TabStyle.html",
- "hash": "sfMAvuRIcmRrWEGmMGtsVgOlvCHVno943OXGryOKwaA="
+ "hash": "sgdBjWNGzY3CsTkYLA19CvNHWJMh5OV7NHsM12Ehhwc="
}
},
"is_incremental": false,
@@ -1182,7 +1182,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TabView.html",
- "hash": "MUw4BuT0mwLnEACcqG3P6Lqx/hwg7lIHI67h0qRDMNg="
+ "hash": "BdyOOKsl7QqJUGlfQbisMYT2Ltn2KqRm8i4BwZtgrPA="
}
},
"is_incremental": false,
@@ -1194,7 +1194,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellActivatedEventArgs.html",
- "hash": "AbxvyQaZ9a2ziTXXEvu3MmUCkn3y7aO19tvDAFdfSF8="
+ "hash": "po0DoDJCa1mtAVqw/poh04duPnvGM6z6QRP/HRVEX78="
}
},
"is_incremental": false,
@@ -1206,7 +1206,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterArgs.html",
- "hash": "mfrvPWUbUi6SLJK3G19Qc4I59V3ksMyyQh/MuXK+aJU="
+ "hash": "mkZhaKJFjHMvrUWYbIhQCi9zicZIX5dAUqZnlTGLxSU="
}
},
"is_incremental": false,
@@ -1218,7 +1218,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.CellColorGetterDelegate.html",
- "hash": "BkF5LQdMMKDVSkK8mSxHmpVcuyJE4gSTTMnkBVcqX0g="
+ "hash": "5lCnT9h2qv89BksyI+Nz2hYfM+MES/cJ/6alhoeYd90="
}
},
"is_incremental": false,
@@ -1230,7 +1230,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.ColumnStyle.html",
- "hash": "g8RC4N++YgaSMP5Cc+S8dfYfGfs9yxR5yJHB8naf9qA="
+ "hash": "uNaAapokIwJh9S8yDhNxNhNRUo+Xquz9Ea4bJijLbeU="
}
},
"is_incremental": false,
@@ -1242,7 +1242,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterArgs.html",
- "hash": "YWgaxNmyzoUETaj5SSo78c6v4Aplz6BfjUfI16RRKyo="
+ "hash": "i0cIuFlv85+i7CMZBAIyXUXJ8KzHpbu6K8x7q+OZiF0="
}
},
"is_incremental": false,
@@ -1254,7 +1254,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.RowColorGetterDelegate.html",
- "hash": "Y7FDOyaf3dHIiBkrjxls966kGfenNw977ltr6uodiXI="
+ "hash": "SdeoC8xm4z1XAvU09xzrN/jjhb9l7VIZhzlrxtkKAy0="
}
},
"is_incremental": false,
@@ -1266,7 +1266,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.SelectedCellChangedEventArgs.html",
- "hash": "5pwADwWVhBRjsSzhT8zRlrgv6C9D97S8BOlHADFLxoM="
+ "hash": "fTUebW0dTlB8M533GjTQMjOG93lmd17b4X51crCEqow="
}
},
"is_incremental": false,
@@ -1278,7 +1278,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableSelection.html",
- "hash": "/cXdfJ9zacKkd0aRKs68cpB26VQw8I3JaSZEKVNYZdU="
+ "hash": "l5HgFh8ryWMdAHZndbTM4eCwEtfHsSfFRhpfnSsHpfI="
}
},
"is_incremental": false,
@@ -1290,7 +1290,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.TableStyle.html",
- "hash": "JQiY/2GKmx0AHljm0yEGpT/0WUQk9hJmAtsi2Alyg0M="
+ "hash": "UZSe2ENF43vzIB/0a7NRmEQ1NzomMRciQaVIzaJWlpQ="
}
},
"is_incremental": false,
@@ -1302,7 +1302,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TableView.html",
- "hash": "38ICKK01SnQoN+JfEBD4KVgyNHVhk8rjIP/TlHfs/AU="
+ "hash": "Zqy/imfWVhSqjy0TYbcw9Lc/DC9MRZYtY9tgoVXQdEA="
}
},
"is_incremental": false,
@@ -1314,7 +1314,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextAlignment.html",
- "hash": "a94Zz5JqEsOBftfEK0npD8QaHAoJY499ywVipyO0Z6I="
+ "hash": "xFC+EVH/W/2V7+3/B+tm5M5C7vz2akEiydSwVOqeiIE="
}
},
"is_incremental": false,
@@ -1326,7 +1326,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextChangingEventArgs.html",
- "hash": "tzkI2QUjAkggaickKXHPhPoMREuIWIXsVQ8uc+eAT1Q="
+ "hash": "xaIMUIY7kO/5mBFD9/ufkXGSfdtu90wsDjUD1IZhyoQ="
}
},
"is_incremental": false,
@@ -1338,7 +1338,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextDirection.html",
- "hash": "8/fcGAiXpvu3mXs/2OPZsRCcb7/fDMSrIEtEe9lHKzo="
+ "hash": "bB8Qt1yB4JBArZM4ODnZRmd9jLocJqpaAfY5VarBG0Q="
}
},
"is_incremental": false,
@@ -1350,7 +1350,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextField.html",
- "hash": "5/ypLTD++TeEm/p93m4QZ36I60T1ho/1jhDtbW3/Wuw="
+ "hash": "uiHYTkq1mN08vHbxqYfg9NdUE7Nl/50H8g3xiJTS/TM="
}
},
"is_incremental": false,
@@ -1362,7 +1362,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextFormatter.html",
- "hash": "JElgA3XOt8f5Vhg+ZvyvCg/z4yv2T4QA0Kjhkb2sxBo="
+ "hash": "GAdoBLrpjxoXLJssd6MPz0EvkIrDSctt3i26aVXqCa0="
}
},
"is_incremental": false,
@@ -1374,7 +1374,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateField.html",
- "hash": "scvSyaP0y3X6YrpWF3EdN705jVvoRW208ackQS6kfS0="
+ "hash": "5MWZANlshUdVJBgv8SF+1V89K9/b6dpmrmZ7e0q3B3Q="
}
},
"is_incremental": false,
@@ -1386,7 +1386,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.ITextValidateProvider.html",
- "hash": "sFhtNv3iaIn8oCxtlhmQ1EoFdHZn45MdOhI0cyQNHkc="
+ "hash": "8KAVDojFolMjnrLzs4/QHzzPvgbgI6gHWUnauHTZ92c="
}
},
"is_incremental": false,
@@ -1398,7 +1398,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.NetMaskedTextProvider.html",
- "hash": "apDvvFo0Xc4QsVDorryBPOHP9jLuWiFasQnpa36gn/4="
+ "hash": "fMvC2WBoE3aH8PPQD/DiTdJ76sbA+6MpzxzliaHfwxI="
}
},
"is_incremental": false,
@@ -1410,7 +1410,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.TextRegexProvider.html",
- "hash": "U5kTf3f+YSIvJEZvaW9hR+NMdhm5BIiAjGlTHjR8hO4="
+ "hash": "E4p9Z/HUnY9qTtpsBGCdp4wbvfUL1LTvfzc4qyOxT58="
}
},
"is_incremental": false,
@@ -1422,7 +1422,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextValidateProviders.html",
- "hash": "6Bl9X94PNPnoNXnB5cwpFnKDMTXzu1Xr/BNvG5fkfuE="
+ "hash": "GQwcBNJX70Ka7INAufGb7chGYcWTRK7z7IsdfRTmFuE="
}
},
"is_incremental": false,
@@ -1434,7 +1434,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TextView.html",
- "hash": "89eIZSZzP0rkJYVEiiTMi4r7OB/rEmi/AgRRTwtah1I="
+ "hash": "ko95MGZbfdMWPDJkoonF/oVnOhuU6pa/d+FQkcHjBRE="
}
},
"is_incremental": false,
@@ -1446,7 +1446,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Thickness.html",
- "hash": "NRDkrMQAqsxfgWMG4odGqySKcpRZOZQ84yJHBpBPZZs="
+ "hash": "Uck8oEDc7qpQWkEEMriJFIuhuMuj/fqBra+SPrLxTF0="
}
},
"is_incremental": false,
@@ -1458,7 +1458,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TimeField.html",
- "hash": "02a3in6pRAVzCCEx90Uzs6oW4p2r+2tbubj46IJKpN0="
+ "hash": "WmN0HDC+ZVJBO+gs17kHmC723QAHvFIBhF5IH5t0tI0="
}
},
"is_incremental": false,
@@ -1470,7 +1470,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Toplevel.html",
- "hash": "uA3Zq1kKrmCgasSxxqnPNYD2RwWo08SGkJ+x87Z2iB8="
+ "hash": "RPWclBrnScMSR44L31gzSoqQJnlOdtPx2jQnT158msg="
}
},
"is_incremental": false,
@@ -1482,7 +1482,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelClosingEventArgs.html",
- "hash": "2r/oacy+nReJGTIelWufDmYqrZ8AeticBl700WiOkdQ="
+ "hash": "zuhi6564Z2FniYi64qklgBTrrp1qLXfOOYNPrTiJkpo="
}
},
"is_incremental": false,
@@ -1494,7 +1494,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelComparer.html",
- "hash": "POBq2QACgI8+kO1FcfRdELkMhucCa3HbUX8KBryQoNM="
+ "hash": "OQHDAOA+Gq/BnJ3RYTj9CuyAKWE90f1M6HAwZjZAJmo="
}
},
"is_incremental": false,
@@ -1506,7 +1506,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.ToplevelEqualityComparer.html",
- "hash": "WWh4dARJ8DAhihjTiaMvpSrHoPNJ64mCMzX7z7ZJR0I="
+ "hash": "YvOsn4M9ivAwrA5h2Dm8h8rtkhrjDH4XtCgDnBrHPmM="
}
},
"is_incremental": false,
@@ -1518,7 +1518,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView-1.html",
- "hash": "/+6ouAila45hK2fPPJv6iggJHEmVNjyngRSJL5vN1LM="
+ "hash": "cuybR9nxTn5RcZSdtjV74Q8/bhzZj7oVBqYe7UGHJO4="
}
},
"is_incremental": false,
@@ -1530,7 +1530,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.TreeView.html",
- "hash": "FzYtO6N0maaQbFRXoscQqOdr4ci3yo+a/X7FwaUyykQ="
+ "hash": "z6Tf2SjtuVyyIAf7Y86tTV89yxoZ3KDrj/rw1rvIUNA="
}
},
"is_incremental": false,
@@ -1542,7 +1542,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.AspectGetterDelegate-1.html",
- "hash": "c29Y0kPQdQHP4YnQ4WqJZajMeE1QIiPilJdTXVBpLvY="
+ "hash": "7TxhftHQZFyb6AaaBLinuV3fEmZXvFaDdybxUYGJHRM="
}
},
"is_incremental": false,
@@ -1554,7 +1554,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.DelegateTreeBuilder-1.html",
- "hash": "u8VKaEtLz+mIJWFGp/1Szc+vrbEqJ07wQF6aarCXLNM="
+ "hash": "ffiyb9HRnTIPuSjFYrk7UwbcQ4AMkXVXmV0gCIxsj0E="
}
},
"is_incremental": false,
@@ -1566,7 +1566,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeBuilder-1.html",
- "hash": "M1/VGfVA/plZZwZDS4r07O5/1KK9YoWWDgsTUJQHbZM="
+ "hash": "c21bdHSBJhd0hCWD+mIdmohe1vqEaAA84NugVl7ICxM="
}
},
"is_incremental": false,
@@ -1578,7 +1578,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ITreeNode.html",
- "hash": "VLdp7suP06MiJixfS/ylr4J6uyHupEzdD2Nj20FFAXI="
+ "hash": "abtfFmunDuZ5q3NHU8S2tb25eQB/Mfy7PjNQ0AHw7+k="
}
},
"is_incremental": false,
@@ -1590,7 +1590,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.ObjectActivatedEventArgs-1.html",
- "hash": "iFndtOpvLl9NHz74eDrmcFCIOJQhlcm9wQaMvj1nQLE="
+ "hash": "f7ARYNa5BBqUjUXVSbcrsCF8HdsIDYITL9/eIcxqaok="
}
},
"is_incremental": false,
@@ -1602,7 +1602,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.SelectionChangedEventArgs-1.html",
- "hash": "ym2UbV3I4o+nqoYcNeLTu6RyD1APtQiuZA3IubYraYw="
+ "hash": "vGTDtuyHyA1wYI5Gv1GXr4V/pmG16LH0Qkg14B+NVVY="
}
},
"is_incremental": false,
@@ -1614,7 +1614,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeBuilder-1.html",
- "hash": "LVMat2qZ/qDCJcaumI/vKVzEljeGs+GvR/wV+PGzjhc="
+ "hash": "aenAJ61qNSuu0Zx7fIq4KVteZ+C2RM1PFhpwOMpYElI="
}
},
"is_incremental": false,
@@ -1626,7 +1626,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNode.html",
- "hash": "Hw4Gcu1RV9ZXWLGCLXWBrzDYNb2KvkA65GuI3shdliE="
+ "hash": "g6J5lZLfhszSmQL0fIvYRvYg+1nldO35wdDbooMOSq0="
}
},
"is_incremental": false,
@@ -1638,7 +1638,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeNodeBuilder.html",
- "hash": "uvM12kb94azqetcw0vagH+cDvz/vAQqn5f/6sSBzG+w="
+ "hash": "b9K/y3Ic6PKM+z/O7e2Z6EFn86ZuGFFHb+UKlySw//c="
}
},
"is_incremental": false,
@@ -1650,7 +1650,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.TreeStyle.html",
- "hash": "BzS8NSct17xdCUCL2+2Ecvw9QeqHnv1jAmh8NN7ZWVY="
+ "hash": "pVbm7VV27k5UY4AoulNrW8W3Qtvuf3VgGMdxVRBGMyA="
}
},
"is_incremental": false,
@@ -1662,7 +1662,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Trees.html",
- "hash": "86eOgAEHP4eVYxodLhlc/8PdQ7pRwsSOueF+gHvqd4o="
+ "hash": "D9pi2YnIQajX0j3gvI76PqoxfOZxLyJMqKm7KQ4eh/I="
}
},
"is_incremental": false,
@@ -1674,7 +1674,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.VerticalTextAlignment.html",
- "hash": "imVW2tn73UfGssI3IVVRyES+sHRLmTUJZunUg8QVKAI="
+ "hash": "TNt/wNqj0ec+dkYTgprfEvPPxNuLrRcS8zsX3FCc/jE="
}
},
"is_incremental": false,
@@ -1686,7 +1686,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.View.FocusEventArgs.html",
- "hash": "PwVtLxHtba7CJ6jAFH6sSLcwANRcbcnp9wuKPWsuAls="
+ "hash": "nXHvyEUKORQqy4BcpRS9pbLCor+bYkPgwHfqa7+NvrQ="
}
},
"is_incremental": false,
@@ -1698,7 +1698,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.View.KeyEventEventArgs.html",
- "hash": "p8XkSndfdLR5AcECL3oev3su8DVldmfcpuyz7pd+AL0="
+ "hash": "rArUZjx6RnMBLn0xLUYIDCp/aGTkteZs1YisKH8GEcA="
}
},
"is_incremental": false,
@@ -1710,7 +1710,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.View.LayoutEventArgs.html",
- "hash": "hhrNTNtaQUXhCXLcjz972cUug1UlP51L6xfJQ1tTJl4="
+ "hash": "8nJsJ87OPDy1TKQxCLhvFI/B6G7Btuf6ZF9eR2k9Qos="
}
},
"is_incremental": false,
@@ -1722,7 +1722,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.View.MouseEventArgs.html",
- "hash": "30ItIYf+B1SCzngRAln3LpBhSjUV+f0wPhdLWtnbUxU="
+ "hash": "X7WzU8OS1xYm8uTLdDrcIfeawc88mRQdYbcW+7+Pm6k="
}
},
"is_incremental": false,
@@ -1734,7 +1734,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.View.html",
- "hash": "TtZEeeP7z43pnWHWn/pb+ogw7IISlmX1ZHlQ9yaxukI="
+ "hash": "uncTi4IQcmBtFPt1QZKTfapS9iyzIpPb1NhTI4son8k="
}
},
"is_incremental": false,
@@ -1746,7 +1746,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Views.LineView.html",
- "hash": "/ZYJ9d6Vn/tMHzmfDvGIpywpX4e00JsX+7d7AJm+gDw="
+ "hash": "bg9V3cPapUrFguwamEdtWRFTOd5glBLODLJYeGxtBm8="
}
},
"is_incremental": false,
@@ -1758,7 +1758,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Views.html",
- "hash": "r+7MlUKd0oTMrkyWO9l3SQ+Vjdj8t4ZlplK1+KGzj4g="
+ "hash": "y58cDx8CoPnl/v4u90PuXkYfHtOw0NpkdHnqHdY5M3Q="
}
},
"is_incremental": false,
@@ -1770,7 +1770,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.Window.html",
- "hash": "8QcYyfazSUWoVB/6xaXNFcRzYw9e7mmPzjLe9bauE60="
+ "hash": "Nc0VJowKZdno+ugd8ExqhMAPQ20AKsYHFELevw/4sRI="
}
},
"is_incremental": false,
@@ -1782,7 +1782,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Terminal.Gui.html",
- "hash": "5ymea7V0uyJG5Ahp3Vq7Msx4W1E/MU92QAyMVtwn3D0="
+ "hash": "Ypyk9miBxQyGyzEX77lr+EITjWnSXSGexErE2vfwgsU="
}
},
"is_incremental": false,
@@ -1794,7 +1794,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Event.html",
- "hash": "iMz7tdCZx6V6skW+rNttWcOhDWptC1Ns0A5xAah4IfA="
+ "hash": "WwnCIXzCEKenPYoiwYZnEShXEaHjQ2kXCYbUol06Z+U="
}
},
"is_incremental": false,
@@ -1806,7 +1806,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.MouseEvent.html",
- "hash": "J5N9ld60/bhNxcNX90Y80weXOgiSSWn8tj9fiY+qhnU="
+ "hash": "XWbXxzYtDleU2uSJyTtznmeNkq87kACGpJrBObv43bQ="
}
},
"is_incremental": false,
@@ -1818,7 +1818,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.Window.html",
- "hash": "IznpQaP/NCmRB3m1TwAFm72tMGZAPvon9xX+Ci9N9bM="
+ "hash": "ebTvV58F4l1XQJU8+zaNWe3LNZeflOp2DlnP6UrCIxc="
}
},
"is_incremental": false,
@@ -1830,7 +1830,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Unix.Terminal.Curses.html",
- "hash": "QntN68zByIej6Hh2KFexkwpqwIWVkmD1K5FZpJYy+GI="
+ "hash": "b9VZxiaPBsorBcroaQsYiW/9S3Vqrkm+D6PKl05fL54="
}
},
"is_incremental": false,
@@ -1842,7 +1842,7 @@
"output": {
".html": {
"relative_path": "api/Terminal.Gui/Unix.Terminal.html",
- "hash": "TuCxOfcEslrenYFp5GXMHbaDcfA2gwB5R+d3ByfQxnk="
+ "hash": "Oz6ZNve7o62jO8g3ddQkJdakRS+1GJxt1pAPieAyrAQ="
}
},
"is_incremental": false,
@@ -1866,7 +1866,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.NumberToWords.html",
- "hash": "e0MDSVwHuvOrf2Z+9jilQsEvczS1hfAJGIaS7qdihxE="
+ "hash": "m1ZW4syCayAiiKdPiUhY5Gp9kji8v7Ip4owRFzH9ZD0="
}
},
"is_incremental": false,
@@ -1878,7 +1878,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioCategory.html",
- "hash": "+6Ra3W6laci1w87SkSeBehfOorcJ7eQFHkpUyFrK+q8="
+ "hash": "dqDZgKN3nz7FXs2OFdYic8ym2H2LPK+/ZAzVM0IPUvo="
}
},
"is_incremental": false,
@@ -1890,7 +1890,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenario.ScenarioMetadata.html",
- "hash": "M+qJtD37lqTWNAIyfzUV0z/nDFmALVfgIxFV51n7kFM="
+ "hash": "jwhP/nz1LBTOdP3MwlHFkTSl4MeiGayRpYGztrPSbZo="
}
},
"is_incremental": false,
@@ -1902,7 +1902,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenario.html",
- "hash": "mh0i5KytE1UTDXKDtzjUOikd1y/L3izTm/2qmBzyo2I="
+ "hash": "EwgsS/2/0XEQu0SytT1DM3j8gEIiNx1JksOYLbZLFE4="
}
},
"is_incremental": false,
@@ -1914,7 +1914,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.AllViewsTester.html",
- "hash": "fQTsq/RgXDyEWrxDN7nTv4OMMD5FQyLQo7BqfrS0Fzg="
+ "hash": "mVh/DAwyvcCFoiJ6o8xt3nayIK99giU82dN9mur+Evw="
}
},
"is_incremental": false,
@@ -1926,7 +1926,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.AutoSizeAndDirectionText.html",
- "hash": "uPG5s0VKULWUM+yv+8ntKCgOOXFesC/TP1Vc58q4Ryg="
+ "hash": "zd305iqKQE6nl4T+p9MKMFyVolN6h2cEgfYbjCf+Eu8="
}
},
"is_incremental": false,
@@ -1938,7 +1938,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BackgroundWorkerCollection.html",
- "hash": "luXJKEjHqULdlNfTp4ol6knG7bkj4DwKAunYIh9DpOg="
+ "hash": "WES2b7zqfLZB30old/3pmFPnlonr30NdIv7xPqtyWN4="
}
},
"is_incremental": false,
@@ -1950,7 +1950,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BasicColors.html",
- "hash": "rR3WU/dK0sUQzihQh9wT0SAzT2bDJAzsalMImGfMxKQ="
+ "hash": "MVzOrhtbB366gxxaKXikKQ6XXpIWndsueawmhj66eyk="
}
},
"is_incremental": false,
@@ -1962,7 +1962,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Borders.html",
- "hash": "GYiZJrCxwxta4Nlomq0ak2iFnT5lx+7PelqWxofekvA="
+ "hash": "myqK4EHDL5q4mTz/1hxak+vCbByIHnlUR2qh8/QR3gg="
}
},
"is_incremental": false,
@@ -1974,7 +1974,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BordersComparisons.html",
- "hash": "pSXMFFBao5CM67aJuQocbZrM6pEJkmkJAXD8/dd04TI="
+ "hash": "JgoHzrwJH8Heplc1cPSGCXKdwZJmx59cq5zcHf1FdeI="
}
},
"is_incremental": false,
@@ -1986,7 +1986,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnFrameView.html",
- "hash": "VZgQYv1bafudaOqkpRDdMI7WXH4RZkpNe+J3+GGsFaQ="
+ "hash": "f0Uhd1c48wQR8PWwEvvzBoeC4WmJ1ZdI1fp9UmuGdDA="
}
},
"is_incremental": false,
@@ -1998,7 +1998,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnToplevel.html",
- "hash": "ktyueiO+t9ddtmK55alEHdgkzUz4qtsMCNIpNGYJf68="
+ "hash": "erbTuxB+cEaMpJzAG+AelBRZgcPRqXA/oDZbUbJ2370="
}
},
"is_incremental": false,
@@ -2010,7 +2010,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.BordersOnWindow.html",
- "hash": "7xQTok5d51eZmvs5VHZPiMY1FF5/kHwzky6PKb5bMzo="
+ "hash": "ZEjylH/N5OqC1YT7rKceE7f8sNYIAhcNA+IZEq7oXAQ="
}
},
"is_incremental": false,
@@ -2022,7 +2022,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Buttons.html",
- "hash": "HVvNVQTG/uvGuvPRs6XkE7kz0s/8aAKypJbsvkwjK9Y="
+ "hash": "3VEa5IJICrfUJJgNVaCR0ZfHY/VWWD4eHrs6iHVl/3U="
}
},
"is_incremental": false,
@@ -2034,7 +2034,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.CharacterMap.html",
- "hash": "aPaSdYcZSY+J6Dofkf0ycsLngRhGRm/j2AdpMA2NbpA="
+ "hash": "9092y46+8Uk3DMhIMxNm5S+WTiumEbepfZ1nDM72n3w="
}
},
"is_incremental": false,
@@ -2046,7 +2046,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.ClassExplorer.html",
- "hash": "D74zrLmVp5Uc5yiYq+bpNZimSwsMz9fx34xJQx+Pfbs="
+ "hash": "euH43xtyTk2SxnNgCSlNes+RO+P2Yx2oeVg3UtJm0U8="
}
},
"is_incremental": false,
@@ -2058,7 +2058,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Clipping.html",
- "hash": "gg1aiRPAIOxdVTZOHz16wiUEp4SR6Ab/Omc7AghEWH8="
+ "hash": "8Si0wH22EYxxnAMeqG5+kbbShbXKioAapjDG4BSqqVw="
}
},
"is_incremental": false,
@@ -2070,7 +2070,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.ComputedLayout.html",
- "hash": "frN9pYgBS+Spu5bdAHtGn89bsr4fa2XDOQ/YwqDBfbw="
+ "hash": "8hS8BkbelHrFx46DKnR1okf1BYAGwjh9PZRchqVn7Hc="
}
},
"is_incremental": false,
@@ -2082,7 +2082,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.CsvEditor.html",
- "hash": "O2gpqnf49H/LBq5Uku3xujSy5n5P5h77dtlir1zvQZ4="
+ "hash": "2k96TLqkUppn/dYx49FeWBF/+tAKr9LeQ8odqQE8LgM="
}
},
"is_incremental": false,
@@ -2094,7 +2094,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Dialogs.html",
- "hash": "1un+tYp3ghUfFMDmkMVBHPlkHwHjvokOxqwx2NpiL0A="
+ "hash": "iSTIpCJlXP6h1Szw8mj0l+hZwBoeCBokB0VbAjie/+o="
}
},
"is_incremental": false,
@@ -2106,7 +2106,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.Binding.html",
- "hash": "HOvt35JP+stor23W0Vj3We5YSKEmUMeUkXNtV3SZQwc="
+ "hash": "g3p/bBV8pgxSEm44wxrvFF9jKN4K2Hga7ZEo6z1Z43I="
}
},
"is_incremental": false,
@@ -2118,7 +2118,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarDetails.html",
- "hash": "3M0A99ozP5nyuWVHayeYPPoMZzZ5EIuwjiExgEf/Ezk="
+ "hash": "GDKWUvWXBMM9YFJKW+JSaaL7Wav+kz3rcv/rQrsK0EY="
}
},
"is_incremental": false,
@@ -2130,7 +2130,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuBarSample.html",
- "hash": "W+qbm5evLt3Sk8yWUKGYtpmzCPMXNe8jE19pSh6xAk0="
+ "hash": "eOUmFZyrQAuciSmfcYweBSseIcSGB4YhvcICra0E8ng="
}
},
"is_incremental": false,
@@ -2142,7 +2142,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItem.html",
- "hash": "Pa1u/uv3Qb6pnJBTqBZ1QOpT3EZUGL9jH34teRPXNDk="
+ "hash": "7uPaotFtmAavvIDE4wZSzYg3XwehWr8G5jKrPZfnalo="
}
},
"is_incremental": false,
@@ -2154,7 +2154,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemList.html",
- "hash": "pMTRdekx58MGoLZwMhQWzKvfTo1BZhBnCMyfpUM2q2s="
+ "hash": "GxBZpFGzbRKK4hJZ+5ALyciTheVcCuC3qKNmOuN84W8="
}
},
"is_incremental": false,
@@ -2166,7 +2166,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.DynamicMenuItemModel.html",
- "hash": "J8rRO9lQ/H2HrYDN+BdNJmLbJhs8s+tQgXg3G8RoJHE="
+ "hash": "JEF+hPsu9TF5BaWgcNgQHO6KOhL78FC8Uj635wYKKgQ="
}
},
"is_incremental": false,
@@ -2178,7 +2178,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.IValueConverter.html",
- "hash": "7hSS0ETYkm9XvVnEKhdjRRWdoHRmZvrveoNddl/AMSQ="
+ "hash": "EqvI6+C6NCPuoPWvfPLRkDiOozwJQ8HsAgxhSsCEEkM="
}
},
"is_incremental": false,
@@ -2190,7 +2190,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.ListWrapperConverter.html",
- "hash": "pCkrMEzAw+pCCXAileQFhTHfk3xaZoQcQRAX8DdKJEc="
+ "hash": "VoyyrlIs3CS9D6OkIz1l6mnS+Z1PHDt+c/XNEIwigu8="
}
},
"is_incremental": false,
@@ -2202,7 +2202,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.UStringValueConverter.html",
- "hash": "WP2lv2mpiZDrs8hYNQ9b0joIO9cwvTYALkuk3QkITsw="
+ "hash": "5ZN6gyygyxvd7ywYlQEv3fgMS62F0g3Q4KP23qjI/UM="
}
},
"is_incremental": false,
@@ -2214,7 +2214,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicMenuBar.html",
- "hash": "afyY8rn2izHWDskL0LTSaYVLQrcMoZDgwLetvpKtKXc="
+ "hash": "/JriEFw2ZS+k8gwH96FQmhtrWQ9xuWVOovCvym5GvMU="
}
},
"is_incremental": false,
@@ -2226,7 +2226,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.Binding.html",
- "hash": "Hywuqox6e9PeGX3RQoB5Xl5i8+Ut8gQ4YaRzyaHErlA="
+ "hash": "GQHwUV5JFadL6kiZQZ+qwOkdeajNp9oRU78vIzBvaCw="
}
},
"is_incremental": false,
@@ -2238,7 +2238,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarDetails.html",
- "hash": "cRGIFOXPGwGE1YPlDQrXmYBPv9K2PWO0nE16raHGiyI="
+ "hash": "Aaw3a2XIx/b3jCHYbimau4MMDqQtEwlfJ20w+eK5WVs="
}
},
"is_incremental": false,
@@ -2250,7 +2250,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusBarSample.html",
- "hash": "HKFJvJ8exA1M6qkh99evE5MRViFhhT3kuIJzRaqanDs="
+ "hash": "dz7Dx9LtVjnNHlZ4n2GWzKFmmCFlPF3//oOGpJDS9sA="
}
},
"is_incremental": false,
@@ -2262,7 +2262,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItem.html",
- "hash": "IFJ49cE+f9dUFngqHGc+6EgiG3ZsIwjbJyaDu1dzL+Y="
+ "hash": "ajiYdRrq0m/Sq9rp5SspxVR5p4rrZohDxEDleMvU3uk="
}
},
"is_incremental": false,
@@ -2274,7 +2274,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemList.html",
- "hash": "F8tw4lqi2ENkhdmnoll0EOoe4Jjjlv6GFtyhxRyn+QQ="
+ "hash": "/ZMMMSZ0tEgeR2FYQJoiJ5JI7Ot/mnKYf1lNXXAzX+I="
}
},
"is_incremental": false,
@@ -2286,7 +2286,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.DynamicStatusItemModel.html",
- "hash": "2pTEvnxXbG8lmkl+IgotYB8D7ETtbeRkgYu4ywMwiL0="
+ "hash": "od8l3kaqF+XRORZOtqKnkE16Se6e1pooYLODtwybVis="
}
},
"is_incremental": false,
@@ -2298,7 +2298,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.IValueConverter.html",
- "hash": "5dknGT3a1oFoDxPMFVrOrerBLuHSgV0VbCzR7RU5TwI="
+ "hash": "hHFG1TtIliy8/gY0IInNqq4x2AgFvcSUUXJ/TfbBsNk="
}
},
"is_incremental": false,
@@ -2310,7 +2310,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.ListWrapperConverter.html",
- "hash": "JRTIovrfGTKCNYQBV6XGhD8lO5AqGKDPrH70kfvQI38="
+ "hash": "dMqHu4qhKF6AYWASwmBzyHhNOdq2wCWcOY77/UKPE7M="
}
},
"is_incremental": false,
@@ -2322,7 +2322,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.UStringValueConverter.html",
- "hash": "uCOsBCsw0c8YbMB32JZqVDxiMwDb16WCtWEB6xdI51Q="
+ "hash": "9t7KNLD8d6rSrUjiZ/CS/HTNiIWLXSZvndPufzjHVBI="
}
},
"is_incremental": false,
@@ -2334,7 +2334,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.DynamicStatusBar.html",
- "hash": "ko5dDa/xOfYQ7BBYx2hj0q5Ea8CO2hAWD6pfdfYuxHA="
+ "hash": "0y6T2S8QVT8MV+tNRazT49A7LL1TTisp6ia1AkhvldY="
}
},
"is_incremental": false,
@@ -2346,7 +2346,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Editor.html",
- "hash": "HrixONA7G9DHxlrZ3T0VfupqxtxaW8I2jH2sOA5A6TM="
+ "hash": "GwZW4tqoTTBd9t6cEgdzaH0TZsAsLihBML1cS4X6LDA="
}
},
"is_incremental": false,
@@ -2358,7 +2358,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.GraphViewExample.html",
- "hash": "zfR/arOu6AIyVj7m2evjuTDqLyIiUR/T93zlhnRy7NA="
+ "hash": "10QE0rDlyZbTTyITs3LzcMC+W9asFTy0KsPs16HvDlM="
}
},
"is_incremental": false,
@@ -2370,7 +2370,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.HexEditor.html",
- "hash": "Z2msyTN9sUpo4Te+/1nQV41cm5klQ+9BtD/wv4Z/Wa0="
+ "hash": "LE27d7R3LWkgkarGCa29Lbo2ifDUxMKp8UpJKsoi804="
}
},
"is_incremental": false,
@@ -2382,7 +2382,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.InteractiveTree.html",
- "hash": "mkgzuhMq2H3d3w6bzl+QbHt6aG5UJvCqxZgpNayCr18="
+ "hash": "Z0Mxt98zheN8B3VIPK/WhR40AUHdFVrTmBDI2piK6aY="
}
},
"is_incremental": false,
@@ -2394,7 +2394,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.InvertColors.html",
- "hash": "9kdh/cT6KNr8rwqw3j1mJKflrpSxDXzcpTskTi5Sp5k="
+ "hash": "NXXgL7seueTsxhFSA+9or6c7PBhKuwN8nBSvb3cLLno="
}
},
"is_incremental": false,
@@ -2406,7 +2406,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Keys.html",
- "hash": "AniLa5iFphCkW34SFRjyGKDL3seHP+04WBGoum/0ejA="
+ "hash": "7vumGTBsLQg4WX149HLD7uV+3wr7YkuxuDF1gX3sy2o="
}
},
"is_incremental": false,
@@ -2418,7 +2418,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.LabelsAsLabels.html",
- "hash": "DLHH9w277dNp/ZLWWW1rCPXpzxXJcBobou2kl97f+ZM="
+ "hash": "2mcLN88EyqfAjSlh07i26SFNpzv2NqmFjTN4zARaJRw="
}
},
"is_incremental": false,
@@ -2430,7 +2430,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.LineViewExample.html",
- "hash": "L1Kb7hLbSK9tOWvWhSyK8vWTqsVz1AivMLJuk2GVtKA="
+ "hash": "CrBNTpQf4d1Aj0urNX91joyFk2nsl6KBjwfjF0N+VL4="
}
},
"is_incremental": false,
@@ -2442,7 +2442,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.ListViewWithSelection.html",
- "hash": "vnJhjb1lOU97qW9SWEobTXmKK76gNtsAjtljPS72mWQ="
+ "hash": "QAGb5zq+5Z2tdOl4a0Y/EldtoBtNTj1HaY8BeO+x+hg="
}
},
"is_incremental": false,
@@ -2454,7 +2454,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.ListsAndCombos.html",
- "hash": "ZttpDnrJQGK+yhUsU4pJp0P35XAf4NFC7+0SdSX6nLE="
+ "hash": "Tz9j+DH1mdEmU+3N/ZiQuBzTc0LKeB0/zLN6/jHx8Bg="
}
},
"is_incremental": false,
@@ -2466,7 +2466,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.MessageBoxes.html",
- "hash": "hzrumhPdECbl7/lI7+0ZK5VKD6YgTHLOh2DU5IW/fyw="
+ "hash": "syQd0+idKCMUMFxtAnUHqhYaaJDG8GfFZIzxLm1W8qY="
}
},
"is_incremental": false,
@@ -2478,7 +2478,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Mouse.html",
- "hash": "am0SN4Fhw/EFJe6+5Hq0yBGEEZRUaDSK3Zgn+x0cw/U="
+ "hash": "V1du/0rRj11j/xgoV9Za+GuICkIeOWwLyc8Fwicshwo="
}
},
"is_incremental": false,
@@ -2490,7 +2490,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.MultiColouredTable.html",
- "hash": "NTb+HKB8Uumwrbh7mjmWvaYRCV4MQj96iWEfRjlQJ9w="
+ "hash": "AeKREakPBB2PqyCUoJu+61civM0d3ynnY7mIQ1KciXY="
}
},
"is_incremental": false,
@@ -2502,7 +2502,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.MyScenario.html",
- "hash": "jq7axrSh7+PUrKRozY9uboo1P42Kz3EF/oXLeXLjg4U="
+ "hash": "TIV2InljcVx0CEkRibhCaGF8OTHAuzG2xLqdZQbE6ks="
}
},
"is_incremental": false,
@@ -2514,7 +2514,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Notepad.html",
- "hash": "H3J0/3tLVeNgh00aKweMSkhgx0rIo4iytjS8w8a6xGc="
+ "hash": "6mlxU1b3TY3ll42wykLIrr6fk2ZgTtDr1AaDojJon64="
}
},
"is_incremental": false,
@@ -2526,7 +2526,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Progress.html",
- "hash": "7mINu/hchzk5J7OklhSMXzjEPUbVbN2mB3oQ0IFn8Qo="
+ "hash": "sKSuwpMf0qFeYGmXNUtZ8KXuZIHai/SKbGuvmILve2Y="
}
},
"is_incremental": false,
@@ -2538,7 +2538,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.ProgressBarStyles.html",
- "hash": "Y4BWsD9wqXMeRqUmjyAKBRwDK4iekHcIat2JMIzU7AM="
+ "hash": "auY7/pF5RkiuYy7ZuYtkxKO8td4yrJHh8j16wzanTxM="
}
},
"is_incremental": false,
@@ -2550,7 +2550,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Scrolling.html",
- "hash": "sDahrbHmtfStkoZ40c7ugww6h99urdNupPM01MC34II="
+ "hash": "cfAWyutjLF59tg7Qcs+L/uGMaCJkb7mQvFmu2UMl8kw="
}
},
"is_incremental": false,
@@ -2562,7 +2562,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.SendKeys.html",
- "hash": "+7kF+KN2CPWb3Nrdt68TpxmTbHVRNs5ofY/ZNXsB46Y="
+ "hash": "uqaKKg3bjUCySAatcuQ285xniTaTNtbV7+7cKwucs8U="
}
},
"is_incremental": false,
@@ -2574,7 +2574,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.MainApp.html",
- "hash": "KgaU5KU4JDV1fkf0rhX2UYX+7r+NvTVafNKj7EC3rwM="
+ "hash": "edRP4j7NLF0BLfanZqFmL9sUf51xnQH4B3C0FQLUb1Q="
}
},
"is_incremental": false,
@@ -2586,7 +2586,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.StagingUIController.html",
- "hash": "498rq69HIggkZX9krhjKpbM+iXE8NdRBPkozl8fBacM="
+ "hash": "Ah/KQmTJE4Rvk73HHlP8xcS+VSzdDSbay/d6ISudbvE="
}
},
"is_incremental": false,
@@ -2598,7 +2598,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.SingleBackgroundWorker.html",
- "hash": "0YowKRM+JqTpAVR7h/3nvc7z6PiD6IoKAdejmH6zcv4="
+ "hash": "HO++WmdjHduOU7qZR5a3Uqdd1rlznWb7i0TkqmFyxA0="
}
},
"is_incremental": false,
@@ -2610,7 +2610,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.SyntaxHighlighting.html",
- "hash": "ZIhZQLE9YkZaPna4KIssvx+aVkEsUroc9orfv+SoTsQ="
+ "hash": "MOdN11NXKAZd4F1AGJR5+Dx0PTkUwt58eTSJdl6/Dns="
}
},
"is_incremental": false,
@@ -2622,7 +2622,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TabViewExample.html",
- "hash": "gywCini/YU/3nsjpL1liuZ3wjUbYVMo8QgHsUhfY7v0="
+ "hash": "YImp9l8etFntub24NiHW4/pK1jXDw9lRiSzs8fMqx00="
}
},
"is_incremental": false,
@@ -2634,7 +2634,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TableEditor.html",
- "hash": "VYJkHbuiIUqjPZT1/x1yWhYC+M31+sPR5z2cl5lrQPs="
+ "hash": "Oy1QNyJ+NYvSixkSUPonJqDQZ//mNviY6a7vj2BB6EU="
}
},
"is_incremental": false,
@@ -2646,7 +2646,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Text.html",
- "hash": "zLaatsQ/xPYu6C7BQ9Ekr/PD00NEPFzVsrr9WgufySQ="
+ "hash": "78/qlHNy3/kmfb1EtvQSl2Oaw0SxxMgiIPUFRDw2Jew="
}
},
"is_incremental": false,
@@ -2658,7 +2658,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignments.html",
- "hash": "hDiFpuxt6nmlptg/YvOg/LYfRFcBBwvTOQhVvz3PQ1Q="
+ "hash": "lrFvulQeo5ByqAUJJ6HLHhevxn7cMz3gge3lFpFauEw="
}
},
"is_incremental": false,
@@ -2670,7 +2670,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TextAlignmentsAndDirections.html",
- "hash": "OGi4F/fqCup7X1uYq37tZG0Vk6KOEB1UT57QBl9EJqc="
+ "hash": "ryS0XYfd1jn+8RpB1/pDsRt9hasLTMGNVjuFxy5/2I8="
}
},
"is_incremental": false,
@@ -2682,7 +2682,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TextFormatterDemo.html",
- "hash": "Yl8FFPCEgr/JEVkh3tkuDvqoOx2ouQMsOLcKF+yof/E="
+ "hash": "a0M4/anMi8+pfJHAE4LVO66pAnOdyqFSvGxREcX4wg4="
}
},
"is_incremental": false,
@@ -2694,7 +2694,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.Threading.html",
- "hash": "oTHaeU2cQPmR29RBZ9YilVQ9CP/sidGplGZ01Hden3s="
+ "hash": "PP6QTb6il/qJiNkrEjPqS+4tAONKjRz4v4cUWKTgh80="
}
},
"is_incremental": false,
@@ -2706,7 +2706,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TimeAndDate.html",
- "hash": "cXv0tDjzm4ACE2Mcvk3h6wfgl/4JPTpxv3qRccnLGis="
+ "hash": "Z9IyOVoSQRbyTQHJz487G7HBu+hYfEVUqWuGH+N0Vsc="
}
},
"is_incremental": false,
@@ -2718,7 +2718,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TopLevelNoWindowBug.html",
- "hash": "3cnYX7liIGVs7F6HGReI6s6BIaV3lrlxHZC4X+BnvlM="
+ "hash": "3n88DU7BMCfWctyE2yDedwerbO4d4DWtSzS/x8Y8QGg="
}
},
"is_incremental": false,
@@ -2730,7 +2730,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TreeUseCases.html",
- "hash": "s0bTha8fjlyVO7laBqFX7eUWW9V+fKTOZwTBAPpH1A8="
+ "hash": "TU3C/qlfneLBSoYr/KrhTZA6UE0kjSDUrBoy6y96VlI="
}
},
"is_incremental": false,
@@ -2742,7 +2742,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.TreeViewFileSystem.html",
- "hash": "N+DZ1OtmRRUfr/O2qcnuol01VDZ3RYHs8wjREZfKsFA="
+ "hash": "eVHIF/fsWuyWxkjYaklDw34z3fOX45ENjMet8s3pM0M="
}
},
"is_incremental": false,
@@ -2754,7 +2754,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.UnicodeInMenu.html",
- "hash": "kzWzjIFhP7Kfb/FweKbeAq4Zlw6RdDhAOsr4PvANLo4="
+ "hash": "E2l5bYoE7/n2w2LSgSk8gZ2wD7G6uZ/GNbYST0s5deg="
}
},
"is_incremental": false,
@@ -2766,7 +2766,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.UseSystemConsole.html",
- "hash": "F93XEDa6WiqSRXSQzWNn/zAkX7t/q5+WKsDBm7FiulE="
+ "hash": "LnpngL54TKzVgp3GZ8B8bFvMlDKI6hqHFbSpCQQzjjg="
}
},
"is_incremental": false,
@@ -2778,7 +2778,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.WindowsAndFrameViews.html",
- "hash": "OAUrj7phzaNpjwcERn8w54QwfZh2WnSoehxhjkpCgfQ="
+ "hash": "DSXlqUwGmg3BraZ/42+ZRcVh7dscz5GD8wZlOWLQmsA="
}
},
"is_incremental": false,
@@ -2790,7 +2790,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.Scenarios.html",
- "hash": "uG20z+6T1tNaWEsWs9f4EcIAkWOi3i5sTEZoTLHQ7Js="
+ "hash": "uiqR7LwQcZ99bknqyAMwJgZBNZAoIGS7hUULxbzYhZY="
}
},
"is_incremental": false,
@@ -2802,7 +2802,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.UICatalogApp.html",
- "hash": "HBSm5EdS9bv3SqYKGSIZ7F7H5Mp97f6XAH5Xyl+bL1M="
+ "hash": "uDd/I2jG3Oogo3ewM7/rty6EL5cvBq8B/2YT+yx0GTE="
}
},
"is_incremental": false,
@@ -2814,7 +2814,7 @@
"output": {
".html": {
"relative_path": "api/UICatalog/UICatalog.html",
- "hash": "j6dc9jc9kzp2UYt1/D0O0Jnzcb/y+hpLEolFUH1GKd4="
+ "hash": "w7XxpBt6UtJL8YVEsShHiNXUb5c2RehA8IbXdqoFhuI="
}
},
"is_incremental": false,
@@ -2838,7 +2838,7 @@
"output": {
".html": {
"relative_path": "articles/index.html",
- "hash": "rt0hGQnsUMJfENN9ZeLyZyBj/AdZSlYV/6UQzaTSdYA="
+ "hash": "AchWM0S6rqy1J1/lhagIa29GrBj67IyBtPqhWzu+Q4s="
}
},
"is_incremental": false,
@@ -2850,7 +2850,7 @@
"output": {
".html": {
"relative_path": "articles/keyboard.html",
- "hash": "XX1IeXv/TstzuI/X7mcYII9dOGl1Yr993ArLCuuAYR0="
+ "hash": "vWiokYi9Ea/5P/dxAX6wk5TcyuQc2kRAKxdQzTV/aPA="
}
},
"is_incremental": false,
@@ -2862,7 +2862,7 @@
"output": {
".html": {
"relative_path": "articles/mainloop.html",
- "hash": "OYqEUTpqmJoaF3qtzRG54Zoongf3sYArR7isvkZJdSM="
+ "hash": "xV+A6nSpmb+jOamx77q0jHj8lTQuNC5ma83tUGnRQno="
}
},
"is_incremental": false,
@@ -2874,7 +2874,7 @@
"output": {
".html": {
"relative_path": "articles/overview.html",
- "hash": "6YFkIPP4k67d+M9Sf192qMuxydP/zW5bTcMX4HmHoJg="
+ "hash": "14idPCXdOI7Xy4jSJ4SDKHrQtPEb/s+soo4j+Tbzqtw="
}
},
"is_incremental": false,
@@ -2886,7 +2886,7 @@
"output": {
".html": {
"relative_path": "articles/tableview.html",
- "hash": "HIgJ1pN6gWmjMH43a+hUvsqoskEGI0gj8E41Osaq3RU="
+ "hash": "sJvEcW0Rd8IH7xe+U2t3ktYeWnTBjAonOS5+KigT1OM="
}
},
"is_incremental": false,
@@ -2898,7 +2898,7 @@
"output": {
".html": {
"relative_path": "articles/treeview.html",
- "hash": "aLXKISwk5GzuXEAWYMjp0uoAiPyKIXTmW5dlbhHZ8+E="
+ "hash": "9b/yxGNwxNG7qBncfcPigfToN6YFxKmiIpt4SJF+zfA="
}
},
"is_incremental": false,
@@ -2910,7 +2910,7 @@
"output": {
".html": {
"relative_path": "articles/views.html",
- "hash": "dGdLka9SGQyu+MVzZLxhEZEt6Lbi0jtD5Q+qMQjEe8A="
+ "hash": "E6qUiNBJLW9feq4wRo7i+h5s/hrVM+HL1pswf+mIF2M="
}
},
"is_incremental": false,
@@ -2939,15 +2939,12 @@
"version": ""
},
{
- "log_codes": [
- "InvalidFileLink"
- ],
"type": "Conceptual",
"source_relative_path": "index.md",
"output": {
".html": {
"relative_path": "index.html",
- "hash": "A6GZ87PPt6KNAuoQ4xzQnOi4h5I9vh6aeT7u5mLzy/E="
+ "hash": "uJbg/riFMDbvg9bu7ARlGLLhLZIWKnNPyJrMw3Gi69w="
}
},
"is_incremental": false,