/g, ' '))
+ .pipe(replace(/<\/?p>/g, ''))
.pipe(rename({ extname: '.mdx' }))
.pipe(gulp.dest(DOCS_DIR));
}
@@ -428,7 +383,7 @@ const parseHtmlTables = function(fileContent) {
if (!sectionName || sectionName === 'blockly package') continue;
// Find table rows in HTML - match links with or without ./ prefix
- const tableRowRegex = /
| \s*\[([^\]]+)\]\((?:\/reference\/)?([^\)]+)\)/g;
const items = [];
let match;
@@ -465,7 +420,7 @@ const createReferenceSidebar = function(done) {
sidebarContent += ' {\n';
sidebarContent += ' "type": "doc",\n';
sidebarContent += ' "label": "Overview",\n';
- sidebarContent += ' "id": "reference/js/blockly"\n';
+ sidebarContent += ' "id": "reference/blockly"\n';
sidebarContent += ' },\n';
// Process each section (Classes, Interfaces, Functions, etc.)
@@ -494,7 +449,7 @@ const createReferenceSidebar = function(done) {
sidebarContent += ` "label": "${itemName}",\n`;
sidebarContent += ' "link": {\n';
sidebarContent += ' "type": "doc",\n';
- sidebarContent += ` "id": "reference/js/${itemPath}"\n`;
+ sidebarContent += ` "id": "reference/${itemPath}"\n`;
sidebarContent += ' },\n';
sidebarContent += ' "items": [\n';
@@ -504,7 +459,7 @@ const createReferenceSidebar = function(done) {
sidebarContent += ' {\n';
sidebarContent += ' "type": "doc",\n';
sidebarContent += ` "label": "${subPage}",\n`;
- sidebarContent += ` "id": "reference/js/${subPage}"\n`;
+ sidebarContent += ` "id": "reference/${subPage}"\n`;
sidebarContent += ' },\n';
}
@@ -520,7 +475,7 @@ const createReferenceSidebar = function(done) {
sidebarContent += ' {\n';
sidebarContent += ' "type": "doc",\n';
sidebarContent += ` "label": "${itemName}",\n`;
- sidebarContent += ` "id": "reference/js/${itemPath}"\n`;
+ sidebarContent += ` "id": "reference/${itemPath}"\n`;
sidebarContent += ' },\n';
}
}
diff --git a/packages/docs/.gitignore b/packages/docs/.gitignore
index 22f12f3b1..ef13df434 100644
--- a/packages/docs/.gitignore
+++ b/packages/docs/.gitignore
@@ -1,4 +1,5 @@
# Autogenerated reference docs, do not check in
-docs/docs/reference/*
-
+docs/reference/*
+!docs/reference/_reference.js
.docusaurus
+build/
diff --git a/packages/docs/README.md b/packages/docs/README.md
index 67cf2879c..0488b6f7d 100644
--- a/packages/docs/README.md
+++ b/packages/docs/README.md
@@ -2,7 +2,6 @@
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
-
## Installation
Run `npm install` at the root of the blockly repo, then all other commands from the `packages/docs` directory.
@@ -12,7 +11,7 @@ npm install
cd packages/docs
```
-## Local Development
+## Local development
```bash
npm start
@@ -28,14 +27,22 @@ npm run build
This command generates static content into the `build` directory and can be served using any static contents hosting service.
-## Test your production build locally
+## Test your build locally
```bash
npm run serve
```
-The build folder is now served at http://localhost:3000/.
+The build folder is now served at http://localhost:3000/.
-## Deployment
+## Generating reference docs
-TODO
+The API reference pages are auto-generated from the Blockly TypeScript source using `@microsoft/api-extractor` and `@microsoft/api-documenter`. This is a separate step from the Docusaurus build and must be run from the `packages/blockly` directory:
+
+```bash
+cd packages/blockly
+npm run build && npm run package
+npm run docs
+```
+
+This generates MDX files into `packages/docs/docs/reference/`. These files are gitignored, so this needs to be run locally (and / or in CI).
diff --git a/packages/docs/docs/codelabs/custom-renderer/understand-connection-shapes.mdx b/packages/docs/docs/codelabs/custom-renderer/understand-connection-shapes.mdx
index 92d24aba9..20a130712 100644
--- a/packages/docs/docs/codelabs/custom-renderer/understand-connection-shapes.mdx
+++ b/packages/docs/docs/codelabs/custom-renderer/understand-connection-shapes.mdx
@@ -15,7 +15,7 @@ The outline of the block is a single [SVG path](https://developer.mozilla.org/en
Each sub-path is a string of [path commands](https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d#path_commands) that describe the appropriate shape. These commands must use relative (rather than absolute) coordinates.
-SVG path commands can be written as strings, but Blockly provides a set of [utility functions](/reference/js/blockly.utils_namespace.svgpaths_namespace) to make writing and reading paths easier.
+SVG path commands can be written as strings, but Blockly provides a set of [utility functions](/reference/blockly.utils_namespace.svgpaths_namespace) to make writing and reading paths easier.
### `init()`
diff --git a/packages/docs/docs/guides/configure/web/appearance/block-colour.mdx b/packages/docs/docs/guides/configure/web/appearance/block-colour.mdx
index 4d1683d1f..c1047a227 100644
--- a/packages/docs/docs/guides/configure/web/appearance/block-colour.mdx
+++ b/packages/docs/docs/guides/configure/web/appearance/block-colour.mdx
@@ -53,7 +53,7 @@ see [Colour formats](/guides/configure/web/appearance/colour-formats).
Note the British spelling. Failure to set the colour results in a black block.
You can also set the block color using the
-[`Block.setColour(..)`](/reference/js/blockly.block_class.setcolour_1_method)
+[`Block.setColour(..)`](/reference/blockly.block_class.setcolour_1_method)
function, or by using [themes](/guides/configure/web/appearance/themes)
and defining a block style.
diff --git a/packages/docs/docs/guides/configure/web/appearance/colour-formats.mdx b/packages/docs/docs/guides/configure/web/appearance/colour-formats.mdx
index 67a864cc4..958bfec61 100644
--- a/packages/docs/docs/guides/configure/web/appearance/colour-formats.mdx
+++ b/packages/docs/docs/guides/configure/web/appearance/colour-formats.mdx
@@ -77,7 +77,7 @@ toolbox categories, plus a distinct colour for dynamic variables:
```
These string values can be used in both the JSON definitions and
-[`block.setColour(..)`](/reference/js/blockly.block_class.setcolour_1_method).
+[`block.setColour(..)`](/reference/blockly.block_class.setcolour_1_method).
You can add your own colour constants by adding to `Blockly.Msg`:
diff --git a/packages/docs/docs/guides/configure/web/configuration_struct.mdx b/packages/docs/docs/guides/configure/web/configuration_struct.mdx
index 4a6978201..50a8ff847 100644
--- a/packages/docs/docs/guides/configure/web/configuration_struct.mdx
+++ b/packages/docs/docs/guides/configure/web/configuration_struct.mdx
@@ -38,7 +38,7 @@ directly.
## Configuration options{#the-options-dictionary}
The configuration object implements
-[`Blockly.BlocklyOptions`](/reference/js/blockly.blocklyoptions_interface)
+[`Blockly.BlocklyOptions`](/reference/blockly.blocklyoptions_interface)
and has the following options. Note that several of these options change their
default value based on whether the provided toolbox has categories or not.
@@ -72,8 +72,8 @@ default value based on whether the provided toolbox has categories or not.
[Grid]: /guides/configure/web/grid
[media]: /guides/configure/web/media
[Move]: /guides/configure/web/move
-[setIsReadOnly]: /reference/js/blockly.workspace_class.setisreadonly_1_method
-[isReadOnly]: /reference/js/blockly.workspace_class.isreadonly_1_method
+[setIsReadOnly]: /reference/blockly.workspace_class.setisreadonly_1_method
+[isReadOnly]: /reference/blockly.workspace_class.isreadonly_1_method
[renderer]: /guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation
[RTL demo]: https://raspberrypifoundation.github.io/blockly-samples/examples/rtl-demo/
[Themes]: /guides/configure/web/appearance/themes
diff --git a/packages/docs/docs/guides/configure/web/context-menus.mdx b/packages/docs/docs/guides/configure/web/context-menus.mdx
index 6f2cf1654..a59c394d3 100644
--- a/packages/docs/docs/guides/configure/web/context-menus.mdx
+++ b/packages/docs/docs/guides/configure/web/context-menus.mdx
@@ -455,15 +455,15 @@ steps:
[block-default-menu-image]: /images/context-menus/block-default-menu.png
[context-menu-items-source]: https://github.com/RaspberryPiFoundation/blockly/blob/main/core/contextmenu_items.ts
-[i-context-menu]: /reference/js/blockly.icontextmenu_interface
-[i-focusable-node]: /reference/js/blockly.ifocusablenode_interface
-[RegistryItem]: /reference/js/blockly.contextmenuregistry_namespace.registryitem_typealias
+[i-context-menu]: /reference/blockly.icontextmenu_interface
+[i-focusable-node]: /reference/blockly.ifocusablenode_interface
+[RegistryItem]: /reference/blockly.contextmenuregistry_namespace.registryitem_typealias
[Scope]: #scope
[enabled-image]: /images/context-menus/enabled-option.png
[disabled-image]: /images/context-menus/disabled-option.png
-[customContextMenu]: /reference/js/blockly.blocksvg_class.customcontextmenu_property
-[configureContextMenu]: /reference/js/blockly.workspacesvg_class.configurecontextmenu_property
-[ContextMenuOption]: /reference/js/blockly.contextmenuregistry_namespace.contextmenuoption_typealias
-[LegacyContextMenuOption]: /reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface
+[customContextMenu]: /reference/blockly.blocksvg_class.customcontextmenu_property
+[configureContextMenu]: /reference/blockly.workspacesvg_class.configurecontextmenu_property
+[ContextMenuOption]: /reference/blockly.contextmenuregistry_namespace.contextmenuoption_typealias
+[LegacyContextMenuOption]: /reference/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface
[coordinate-systems]: /guides/configure/web/metrics_manager#coordinate-systems
[keyboard-navigation-plugin]: /guides/configure/web/keyboard-nav
diff --git a/packages/docs/docs/guides/configure/web/copy-paste.mdx b/packages/docs/docs/guides/configure/web/copy-paste.mdx
index 8ef4c5381..770a815a6 100644
--- a/packages/docs/docs/guides/configure/web/copy-paste.mdx
+++ b/packages/docs/docs/guides/configure/web/copy-paste.mdx
@@ -153,15 +153,15 @@ Blockly.clipboard.registry.register('MY_PASTER', new MyPaster());
```
[implement-paster]: /guides/configure/web/copy-paste#implement-a-paster
-[ICopyable]: /reference/js/blockly.icopyable_interface
-[IDeletable]: /reference/js/blockly.ideletable_interface
-[IDraggable]: /reference/js/blockly.idraggable_interface
-[ICopyData]: /reference/js/blockly.icopyable_namespace.icopydata_interface
-[IPaster]: /reference/js/blockly.ipaster_interface
-[ISelectable]: /reference/js/blockly.iselectable_interface
+[ICopyable]: /reference/blockly.icopyable_interface
+[IDeletable]: /reference/blockly.ideletable_interface
+[IDraggable]: /reference/blockly.idraggable_interface
+[ICopyData]: /reference/blockly.icopyable_namespace.icopydata_interface
+[IPaster]: /reference/blockly.ipaster_interface
+[ISelectable]: /reference/blockly.iselectable_interface
[default-keyboard-shortcuts]: /guides/configure/web/keyboard-shortcuts#default-shortcuts
[context-menu-option]: /guides/configure/web/context-menus
[custom-draggables]: /guides/configure/web/dragging/draggable
[multiselect-plugin]: https://www.npmjs.com/package/@mit-app-inventor/blockly-plugin-workspace-multiselect
[cross-tab-copy-paste-plugin]: https://www.npmjs.com/package/@blockly/plugin-cross-tab-copy-paste
-[clipboard-namespace]: /reference/js/blockly.clipboard_namespace
+[clipboard-namespace]: /reference/blockly.clipboard_namespace
diff --git a/packages/docs/docs/guides/configure/web/customization.mdx b/packages/docs/docs/guides/configure/web/customization.mdx
index 247a6c9bc..299f7c271 100644
--- a/packages/docs/docs/guides/configure/web/customization.mdx
+++ b/packages/docs/docs/guides/configure/web/customization.mdx
@@ -30,23 +30,23 @@ The following Blockly classes can be replaced:
For information about how to replace a renderer, see [Create custom
renderers](/guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation).
-[`Blockly.dragging.Dragger`]: /reference/js/blockly.dragging_namespace.dragger_class
-[`Blockly.IDragger`]: /reference/js/blockly.idragger_interface
-[`Blockly.ConnectionChecker`]: /reference/js/blockly.connectionchecker_class
-[`Blockly.IConnectionChecker`]: /reference/js/blockly.iconnectionchecker_interface
-[`Blockly.InsertionMarkerPreviewer`]: /reference/js/blockly.insertionmarkerpreviewer_class
-[`Blockly.IConnectionPreviewer`]: /reference/js/blockly.iconnectionpreviewer_interface
-[`Blockly.HorizontalFlyout`]: /reference/js/blockly.horizontalflyout_class
-[`Blockly.VerticalFlyout`]: /reference/js/blockly.verticalflyout_class
-[`Blockly.IFlyout`]: /reference/js/blockly.iflyout_interface
-[`Blockly.MetricsManager`]: /reference/js/blockly.metricsmanager_class
-[`Blockly.IMetricsManager`]: /reference/js/blockly.imetricsmanager_interface
-[`Blockly.Toolbox`]: /reference/js/blockly.toolbox_class
-[`Blockly.IToolbox`]: /reference/js/blockly.itoolbox_interface
-[`Blockly.VariableMap`]: /reference/js/blockly.variablemap_class
-[`Blockly.IVariableMap`]: /reference/js/blockly.ivariablemap_interface
-[`Blockly.VariableModel`]: /reference/js/blockly.variablemodel_class
-[`Blockly.IVariableModel`]: /reference/js/blockly.ivariablemodel_interface
+[`Blockly.dragging.Dragger`]: /reference/blockly.dragging_namespace.dragger_class
+[`Blockly.IDragger`]: /reference/blockly.idragger_interface
+[`Blockly.ConnectionChecker`]: /reference/blockly.connectionchecker_class
+[`Blockly.IConnectionChecker`]: /reference/blockly.iconnectionchecker_interface
+[`Blockly.InsertionMarkerPreviewer`]: /reference/blockly.insertionmarkerpreviewer_class
+[`Blockly.IConnectionPreviewer`]: /reference/blockly.iconnectionpreviewer_interface
+[`Blockly.HorizontalFlyout`]: /reference/blockly.horizontalflyout_class
+[`Blockly.VerticalFlyout`]: /reference/blockly.verticalflyout_class
+[`Blockly.IFlyout`]: /reference/blockly.iflyout_interface
+[`Blockly.MetricsManager`]: /reference/blockly.metricsmanager_class
+[`Blockly.IMetricsManager`]: /reference/blockly.imetricsmanager_interface
+[`Blockly.Toolbox`]: /reference/blockly.toolbox_class
+[`Blockly.IToolbox`]: /reference/blockly.itoolbox_interface
+[`Blockly.VariableMap`]: /reference/blockly.variablemap_class
+[`Blockly.IVariableMap`]: /reference/blockly.ivariablemap_interface
+[`Blockly.VariableModel`]: /reference/blockly.variablemodel_class
+[`Blockly.IVariableModel`]: /reference/blockly.ivariablemodel_interface
## Create a replacement class
diff --git a/packages/docs/docs/guides/configure/web/dragging/block-drag-strategies.mdx b/packages/docs/docs/guides/configure/web/dragging/block-drag-strategies.mdx
index 58f2b4ba7..1f561386a 100644
--- a/packages/docs/docs/guides/configure/web/dragging/block-drag-strategies.mdx
+++ b/packages/docs/docs/guides/configure/web/dragging/block-drag-strategies.mdx
@@ -47,6 +47,6 @@ Blockly.Blocks['my_block'] = {
[draggable]: /guides/configure/web/dragging/draggable
[draggable-implementation]: /guides/configure/web/dragging/draggable#implementation
-[setDragStrategy]: /reference/js/blockly.blocksvg_class.setdragstrategy_1_method
-[IDraggable]: /reference/js/blockly.idraggable_interface
-[IDragStrategy]: /reference/js/blockly.idragstrategy_interface
+[setDragStrategy]: /reference/blockly.blocksvg_class.setdragstrategy_1_method
+[IDraggable]: /reference/blockly.idraggable_interface
+[IDragStrategy]: /reference/blockly.idragstrategy_interface
diff --git a/packages/docs/docs/guides/configure/web/dragging/draggable.mdx b/packages/docs/docs/guides/configure/web/dragging/draggable.mdx
index b9e6561c6..d85297c7b 100644
--- a/packages/docs/docs/guides/configure/web/dragging/draggable.mdx
+++ b/packages/docs/docs/guides/configure/web/dragging/draggable.mdx
@@ -231,12 +231,12 @@ For more information about copying pasting see [Copy paste][copy-paste].
[multiselect-plugin]: https://www.npmjs.com/package/@mit-app-inventor/blockly-plugin-workspace-multiselect
{/* This doesn't exist yet */}
[events]: /guides/configure/web/events
-[IRenderedElement]: /reference/js/blockly.irenderedelement_interface
-[IDraggable]: /reference/js/blockly.idraggable_interface
-[IDeletable]: /reference/js/blockly.ideletable_interface
-[ISelectable]: /reference/js/blockly.iselectable_interface
-[setSelected]: /reference/js/blockly.common_namespace.setselected_2_function
+[IRenderedElement]: /reference/blockly.irenderedelement_interface
+[IDraggable]: /reference/blockly.idraggable_interface
+[IDeletable]: /reference/blockly.ideletable_interface
+[ISelectable]: /reference/blockly.iselectable_interface
+[setSelected]: /reference/blockly.common_namespace.setselected_2_function
[svg-group]: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
-[Coordinate]: /reference/js/blockly.utils_namespace.coordinate_class
-[drag-target]: /reference/js/blockly.dragtarget_class
+[Coordinate]: /reference/blockly.utils_namespace.coordinate_class
+[drag-target]: /reference/blockly.dragtarget_class
[copy-paste]: /guides/configure/web/copy-paste
diff --git a/packages/docs/docs/guides/configure/web/dragging/dragger.mdx b/packages/docs/docs/guides/configure/web/dragging/dragger.mdx
index 30e60a926..f9ac3f904 100644
--- a/packages/docs/docs/guides/configure/web/dragging/dragger.mdx
+++ b/packages/docs/docs/guides/configure/web/dragging/dragger.mdx
@@ -170,6 +170,6 @@ const myWorkspace = Blockly.inject('blocklyDiv', {
```
[draggable]: /guides/configure/web/dragging/draggable
-[drag-target]: /reference/js/blockly.dragtarget_class
+[drag-target]: /reference/blockly.dragtarget_class
[scroll-options-plugin]: https://www.npmjs.com/package/@blockly/plugin-scroll-options
-[IDragger]: /reference/js/blockly.idragger_interface
+[IDragger]: /reference/blockly.idragger_interface
diff --git a/packages/docs/docs/guides/configure/web/events.mdx b/packages/docs/docs/guides/configure/web/events.mdx
index 1d47c0077..5e1066cfe 100644
--- a/packages/docs/docs/guides/configure/web/events.mdx
+++ b/packages/docs/docs/guides/configure/web/events.mdx
@@ -130,7 +130,7 @@ and causing side effects.
## Event types
-Refer to the [reference documentation](/reference/js/blockly.events_namespace)
+Refer to the [reference documentation](/reference/blockly.events_namespace)
for information about individual events.
## Demo
diff --git a/packages/docs/docs/guides/configure/web/focus.mdx b/packages/docs/docs/guides/configure/web/focus.mdx
index 7bd04b7ad..4c44714b0 100644
--- a/packages/docs/docs/guides/configure/web/focus.mdx
+++ b/packages/docs/docs/guides/configure/web/focus.mdx
@@ -271,8 +271,8 @@ in an exception.
If you write a custom component from scratch, you'll need to implement the focus
interfaces yourself. See the reference documentation for
-[`IFocusableTree`](/reference/js/blockly.ifocusabletree_interface) and
-[`IFocusableNode`](/reference/js/blockly.ifocusablenode_interface) more
+[`IFocusableTree`](/reference/blockly.ifocusabletree_interface) and
+[`IFocusableNode`](/reference/blockly.ifocusablenode_interface) more
information.
After you have implemented your class, test it against the keyboard navigation
@@ -367,7 +367,7 @@ manager just changes the actively focused node to passive focus.)
Positionables are components that are positioned on top of the workspace and
implement
-[`IPositionable`](/reference/js/blockly.ipositionable_interface).
+[`IPositionable`](/reference/blockly.ipositionable_interface).
Examples are the trashcan and the backpack in the [backpack
plugin](https://www.npmjs.com/package/@blockly/workspace-backpack).
Positionables are not yet integrated into the focus system.
diff --git a/packages/docs/docs/guides/configure/web/keyboard-shortcuts.mdx b/packages/docs/docs/guides/configure/web/keyboard-shortcuts.mdx
index 4acab0ff7..ee22d315d 100644
--- a/packages/docs/docs/guides/configure/web/keyboard-shortcuts.mdx
+++ b/packages/docs/docs/guides/configure/web/keyboard-shortcuts.mdx
@@ -34,14 +34,14 @@ user presses a key (or combination of keys), Blockly:
## Scope
A
-[`Scope`](/reference/js/blockly.contextmenuregistry_namespace.scope_interface)
+[`Scope`](/reference/blockly.contextmenuregistry_namespace.scope_interface)
object identifies the Blockly component that currently has focus. Scope objects
are passed to `preconditionFn` and `callback`, which use them to decide whether
a shortcut applies to a particular component and, if so, how to apply it.
To use a `Scope` object, use its `focusedNode` property. This is an object that
implements
-[`IFocusableNode`](/reference/js/blockly.ifocusablenode_interface). This
+[`IFocusableNode`](/reference/blockly.ifocusablenode_interface). This
interface is implemented by all Blockly components that the user can focus on,
including workspaces, blocks, fields, comments, and your own custom components;
for more information, see [Focus system](/guides/configure/web/focus).
@@ -58,7 +58,7 @@ preconditionFn(workspace, scope) {
## The KeyboardShortcut interface
Objects in the shortcut registry implement the
-[`KeyboardShortcut`](/reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface)
+[`KeyboardShortcut`](/reference/blockly.shortcutregistry_namespace.keyboardshortcut_interface)
interface. This contains the following properties.
### name (required)
@@ -135,7 +135,7 @@ it.
An array of keys (or combinations of keys) that activate this shortcut. To
identify keys, use the keycodes in
-[`Blockly.utils.KeyCodes`](/reference/js/blockly.utils_namespace.keycodes_enum).
+[`Blockly.utils.KeyCodes`](/reference/blockly.utils_namespace.keycodes_enum).
For example:
```js
@@ -148,7 +148,7 @@ const logFieldsShortcut = {
If you want map additional keys to an existing shortcut -- for example, you want
to add keys to a [default shortcut](#default-shortcuts) -- you can call
-[`Blockly.ShortcutRegistry.registry.addKeyMapping`](/reference/js/blockly.shortcutregistry_class.addkeymapping_1_method).
+[`Blockly.ShortcutRegistry.registry.addKeyMapping`](/reference/blockly.shortcutregistry_class.addkeymapping_1_method).
This is not common.
#### Key combinations
diff --git a/packages/docs/docs/guides/configure/web/metrics_manager.mdx b/packages/docs/docs/guides/configure/web/metrics_manager.mdx
index c24ef8025..5d0f5977e 100644
--- a/packages/docs/docs/guides/configure/web/metrics_manager.mdx
+++ b/packages/docs/docs/guides/configure/web/metrics_manager.mdx
@@ -86,7 +86,7 @@ the bounding box around any blocks or workspace comments.
:::note
Content metrics do not take into account block comments, only [workspace
-comments](/reference/js/blockly.comments_namespace.workspacecomment_class/).
+comments](/reference/blockly.comments_namespace.workspacecomment_class/).
:::
diff --git a/packages/docs/docs/guides/configure/web/serialization.mdx b/packages/docs/docs/guides/configure/web/serialization.mdx
index 967200cf2..64ee659e2 100644
--- a/packages/docs/docs/guides/configure/web/serialization.mdx
+++ b/packages/docs/docs/guides/configure/web/serialization.mdx
@@ -170,7 +170,7 @@ When you register a serializer you must provide several things:
order](/guides/configure/web/serialization#deserialization-order).
You can base the priority of your serializer on the [built-in
- priorities](/reference/js/blockly.serialization_namespace.priorities_namespace)
+ priorities](/reference/blockly.serialization_namespace.priorities_namespace)
When `Blockly.serialization.workspaces.save` is called, each serializer's `save`
function will be called, and its data will be added to the final JSON output:
@@ -215,7 +215,7 @@ For information on how to migrate to JSON, see the [migration guide].
### APIs
For information about the XML system's APIs see the [reference
-documentation](/reference/js/blockly.xml_namespace).
+documentation](/reference/blockly.xml_namespace).
### Block hooks
diff --git a/packages/docs/docs/guides/configure/web/toolboxes/preset.mdx b/packages/docs/docs/guides/configure/web/toolboxes/preset.mdx
index 1ad4b66fb..41ec4afd3 100644
--- a/packages/docs/docs/guides/configure/web/toolboxes/preset.mdx
+++ b/packages/docs/docs/guides/configure/web/toolboxes/preset.mdx
@@ -171,7 +171,7 @@ out.](/images/toolbox-disabled.png)
You can also programmatically disable or enable a block by using
-[`setDisabledReason`](/reference/js/blockly.block_class.setdisabledreason_1_method).
+[`setDisabledReason`](/reference/blockly.block_class.setdisabledreason_1_method).
## Configure your blocks
diff --git a/packages/docs/docs/guides/create-custom-blocks/define/block-definitions.mdx b/packages/docs/docs/guides/create-custom-blocks/define/block-definitions.mdx
index 71ffd1826..7fcd56da4 100644
--- a/packages/docs/docs/guides/create-custom-blocks/define/block-definitions.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/define/block-definitions.mdx
@@ -70,15 +70,15 @@ Because the definition functions are mixed in to the block object:
* The `this` keyword in definition functions refers to the block object. That
is, it can be used to access the public methods and properties in the
- [`Block`](/reference/js/blockly.block_class) (or
- [`BlockSvg`](/reference/js/blockly.blocksvg_class)) class.
+ [`Block`](/reference/blockly.block_class) (or
+ [`BlockSvg`](/reference/blockly.blocksvg_class)) class.
Blockly defines a small number of functions you can use to customize blocks. The
most common of these is `init`, which Blockly calls to initialize a block and
which is used to define the block's look and feel. For a complete list, see the
function-valued properties in the
-[`Block`](/reference/js/blockly.block_class#properties) and
-[`BlockSvg`](/reference/js/blockly.blocksvg_class#properties) classes.
+[`Block`](/reference/blockly.block_class#properties) and
+[`BlockSvg`](/reference/blockly.blocksvg_class#properties) classes.
These properties effectively form an interface for block definitions to
implement; all of them are optional.
diff --git a/packages/docs/docs/guides/create-custom-blocks/define/json-and-js.mdx b/packages/docs/docs/guides/create-custom-blocks/define/json-and-js.mdx
index 93e802b30..43d8b3bae 100644
--- a/packages/docs/docs/guides/create-custom-blocks/define/json-and-js.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/define/json-and-js.mdx
@@ -160,7 +160,7 @@ This section summarizes the objects and functions used to define custom blocks.
### Blockly.Blocks
-[`Blockly.Blocks`](/reference/js/blockly.blocks_variable) is an object
+[`Blockly.Blocks`](/reference/blockly.blocks_variable) is an object
that stores block definitions. Its keys are block type names and its values are
block definition objects. Use `Blockly.Blocks` when defining blocks with
JavaScript:
@@ -188,7 +188,7 @@ Blockly.Blocks['my_block'].setColour(150);
### defineBlocksWithJsonArray
-[`defineBlocksWithJsonArray`](/reference/js/blockly.common_namespace.defineblockswithjsonarray_1_function)
+[`defineBlocksWithJsonArray`](/reference/blockly.common_namespace.defineblockswithjsonarray_1_function)
accepts an array of JSON objects, creates block definitions from them, and adds
them to `Blockly.Blocks`.
@@ -211,7 +211,7 @@ Blockly.common.defineBlocksWithJsonArray([
### createBlockDefinitionsFromJsonArray and defineBlocks
-[`createBlockDefinitionsFromJsonArray`](/reference/js/blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function)
+[`createBlockDefinitionsFromJsonArray`](/reference/blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function)
accepts an array of JSON objects and returns an object that maps block type
names to block definitions. This is generally used with `defineBlocks`, which
adds the block definitions to `Blockly.Blocks`.
@@ -238,7 +238,7 @@ Blockly.common.defineBlocks(myBlockDefinitions);
### Block.jsonInit
-[`jsonInit`](/reference/js/blockly.block_class.jsoninit_1_method)
+[`jsonInit`](/reference/blockly.block_class.jsoninit_1_method)
accepts a JSON object and calls the corresponding methods on `Block`. For
example, a JSON object with the key-value pair `colour: 150` results in a call
to `this.setColour(150)`. Use `jsonInit` in an `init` function to load a JSON
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/image.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/image.mdx
index 349bf1741..2fd881692 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/image.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/image.mdx
@@ -88,7 +88,7 @@ can act like buttons that exist on blocks.
The on click handler can be set in the [JavaScript Constructor](#creation) or
using the
-[`setOnClickHandler`](/reference/js/blockly.fieldimage_class.setonclickhandler_1_method)
+[`setOnClickHandler`](/reference/blockly.fieldimage_class.setonclickhandler_1_method)
function.
Here is an example of an on click handler that collapses the block when
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/label.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/label.mdx
index df97a56c5..1193e3c45 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/label.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/label.mdx
@@ -74,7 +74,7 @@ collapsed.](/images/fields/label/collapsed.png)
```
-The [`appendField`](/reference/js/blockly.input_class.appendfield_1_method)
+The [`appendField`](/reference/blockly.input_class.appendfield_1_method)
function accepts both `FieldLabel` objects and, more commonly, strings to create
labels.
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/number.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/number.mdx
index 15f3d5a40..c534b96f2 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/number.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/number.mdx
@@ -105,7 +105,7 @@ The `value` should cast to a number. If it does not 0 will be used.
## Constraints
Constraints can be set in the field definition, or by using the
-[setConstraints](/reference/js/blockly.fieldnumber_class.setconstraints_1_method)
+[setConstraints](/reference/blockly.fieldnumber_class.setconstraints_1_method)
function.
### Minimum value
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/variable.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/variable.mdx
index 41ad821e2..b7f642712 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/variable.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/built-in-fields/variable.mdx
@@ -180,7 +180,7 @@ return a string, `null`, or `undefined`.
Here's an example of a validator that only accepts some predefined variables as
options. These variables would need to be defined with the
-[`Workspace.getVariableMap().createVariable`](/reference/js/blockly.ivariablemap_interface.createvariable_1_methodsignature)
+[`Workspace.getVariableMap().createVariable`](/reference/blockly.ivariablemap_interface.createvariable_1_methodsignature)
function when the workspace is loaded.
```js
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/creating.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/creating.mdx
index 67944036b..abb4c7020 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/creating.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/creating.mdx
@@ -107,7 +107,7 @@ You also need to define your `fromJson` function. Your implementation should
first dereference any [references to localization
tokens](/guides/configure/web/translations#use-localization-tokens-in-json)
using
-[`replaceMessageReferences`](/reference/js/blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function),
+[`replaceMessageReferences`](/reference/blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function),
and then pass the values to the constructor.
```js
@@ -222,11 +222,11 @@ When overriding `bindEvents_` you should always call the base function.
:::
To bind to an event you should generally use the
-[`Blockly.utils.browserEvents.conditionalBind`](/reference/js/blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function)
+[`Blockly.utils.browserEvents.conditionalBind`](/reference/blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function)
function. This method of binding events filters out secondary touches during
drags. If you want your handler to run even in the middle of an in-progress drag
you can use the
-[`Blockly.browserEvents.bind`](/reference/js/blockly.utils_namespace.browserevents_namespace.bind_1_function)
+[`Blockly.browserEvents.bind`](/reference/blockly.utils_namespace.browserevents_namespace.bind_1_function)
function.
## Disposing
@@ -388,7 +388,7 @@ currently there is no way to enforce this pattern.
### isDirty_
`isDirty_` is a flag used in the
-[`setValue`](/reference/js/blockly.field_class.setvalue_1_method)
+[`setValue`](/reference/blockly.field_class.setvalue_1_method)
function, as well as other parts of the field, to tell if the field needs to be
re-rendered. If the field's display value has changed, `isDirty_` should usually
be set to `true`.
@@ -401,7 +401,7 @@ field](/guides/create-custom-blocks/fields/anatomy-of-a-field).
If the text of your field is different than the value of your field, you should
override the
-[`getText`](/reference/js/blockly.field_class.gettext_1_method)function
+[`getText`](/reference/blockly.field_class.gettext_1_method)function
to provide the correct text.
```js
@@ -437,7 +437,7 @@ the `DropDownDiv`.

-The [`WidgetDiv`](/reference/js/blockly.widgetdiv_namespace) is used to
+The [`WidgetDiv`](/reference/blockly.widgetdiv_namespace) is used to
provide editors that do not live inside of a box. Number fields use the
`WidgetDiv` to cover the field with an HTML text input box. While the
`DropDownDiv` handles positioning for you, the `WidgetDiv` does not. Elements
@@ -545,7 +545,7 @@ property to `true`.
### Defaults
The default `render_` function sets the display text to the result of the
-[`getDisplayText_`](/reference/js/blockly.field_class.getdisplaytext__1_method)
+[`getDisplayText_`](/reference/blockly.field_class.getdisplaytext__1_method)
function. The `getDisplayText_` function returns the field's `value_` property
cast to a string, after it has been truncated to respect the maximum text
length.
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/upgrading.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/upgrading.mdx
index f381636dc..1d71a7a6d 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/upgrading.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/customizing-fields/upgrading.mdx
@@ -289,9 +289,9 @@ handling](/guides/create-custom-blocks/fields/customizing-fields/creating#value-
We recommend that you never access or update the `text_` property of your
field directly. Instead, use the
-[`getText`](/reference/js/blockly.field_class.gettext_1_method) function
+[`getText`](/reference/blockly.field_class.gettext_1_method) function
to access the user readable text of your field and the
-[`setValue`](/reference/js/blockly.field_class.setvalue_1_method) function
+[`setValue`](/reference/blockly.field_class.setvalue_1_method) function
to update the stored value of your field.
For more information about a field's value vs its text see
diff --git a/packages/docs/docs/guides/create-custom-blocks/fields/validators.mdx b/packages/docs/docs/guides/create-custom-blocks/fields/validators.mdx
index 01dab346b..dc59bb17e 100644
--- a/packages/docs/docs/guides/create-custom-blocks/fields/validators.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/fields/validators.mdx
@@ -79,7 +79,7 @@ Blockly.Blocks['validator_example'] = {
```
+ With
-[`setValidator`](/reference/js/blockly.field_class.setvalidator_1_method).
+[`setValidator`](/reference/blockly.field_class.setvalidator_1_method).
```js
Blockly.Blocks['validator_example'] = {
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation.mdx
index b2dea5005..6ba87d131 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation.mdx
@@ -192,18 +192,18 @@ dispose() {
```
[bubble]: /guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles
-[IIcon]: /reference/js/blockly.iicon_interface
-[Icon]: /reference/js/blockly.icons_namespace.icon_class
-[getType]: /reference/js/blockly.iicon_interface.gettype_1_methodsignature
+[IIcon]: /reference/blockly.iicon_interface
+[Icon]: /reference/blockly.icons_namespace.icon_class
+[getType]: /reference/blockly.iicon_interface.gettype_1_methodsignature
[registering]: /guides/create-custom-blocks/icons/creating-custom-icons/save-and-load#register-icon-classes
-[getIcon]: /reference/js/blockly.block_class.geticon_1_method
-[initView]: /reference/js/blockly.iicon_interface.initview_1_methodsignature
-[blockly-utils-dom]: /reference/js/blockly.utils_namespace.dom_namespace
-[getSize]: /reference/js/blockly.iicon_interface.getsize_1_methodsignature
+[getIcon]: /reference/blockly.block_class.geticon_1_method
+[initView]: /reference/blockly.iicon_interface.initview_1_methodsignature
+[blockly-utils-dom]: /reference/blockly.utils_namespace.dom_namespace
+[getSize]: /reference/blockly.iicon_interface.getsize_1_methodsignature
[renderer]: /guides/create-custom-blocks/renderers/overview
-[getWeight]: /reference/js/blockly.iicon_interface.getweight_1_methodsignature
-[onClick]: /reference/js/blockly.iicon_interface.onclick_1_methodsignature
-[updateEditable]: /reference/js/blockly.iicon_interface.updateeditable_1_methodsignature
-[isShownWhenCollapsed]: /reference/js/blockly.iicon_interface.isshownwhencollapsed_1_methodsignature
-[updateCollapsed]: /reference/js/blockly.iicon_interface.updatecollapsed_1_methodsignature
-[dispose]: /reference/js/blockly.iicon_interface.dispose_1_methodsignature
+[getWeight]: /reference/blockly.iicon_interface.getweight_1_methodsignature
+[onClick]: /reference/blockly.iicon_interface.onclick_1_methodsignature
+[updateEditable]: /reference/blockly.iicon_interface.updateeditable_1_methodsignature
+[isShownWhenCollapsed]: /reference/blockly.iicon_interface.isshownwhencollapsed_1_methodsignature
+[updateCollapsed]: /reference/blockly.iicon_interface.updatecollapsed_1_methodsignature
+[dispose]: /reference/blockly.iicon_interface.dispose_1_methodsignature
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/creating-custom-bubbles.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/creating-custom-bubbles.mdx
index e214a0fe3..50fdabc95 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/creating-custom-bubbles.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/creating-custom-bubbles.mdx
@@ -79,8 +79,8 @@ dispose() {
}
```
-[built-in-bubbles]: /reference/js/blockly.bubbles_namespace
-[blockly-utils-dom]: /reference/js/blockly.utils_namespace.dom_namespace
-[bubble]: /reference/js/blockly.bubbles_namespace.bubble_class
-[setSize]: /reference/js/blockly.bubbles_namespace.bubble_class.setsize_1_method
-[dispose]: /reference/js/blockly.bubbles_namespace.bubble_class.dispose_1_method
+[built-in-bubbles]: /reference/blockly.bubbles_namespace
+[blockly-utils-dom]: /reference/blockly.utils_namespace.dom_namespace
+[bubble]: /reference/blockly.bubbles_namespace.bubble_class
+[setSize]: /reference/blockly.bubbles_namespace.bubble_class.setsize_1_method
+[dispose]: /reference/blockly.bubbles_namespace.bubble_class.dispose_1_method
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/override-built-in.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/override-built-in.mdx
index 391a3bc12..79f001c69 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/override-built-in.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/override-built-in.mdx
@@ -37,7 +37,7 @@ class MyCommentIcon extends Blockly.icons.CommentIcon {
To customize your icon, you can override methods in `ICommentIcon` (described in
the following sections) and
-[`Blockly.icons.Icon`](/reference/js/blockly.icons_namespace.icon_class)
+[`Blockly.icons.Icon`](/reference/blockly.icons_namespace.icon_class)
(described in [Create custom
icons](/guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation)).
Do not override `getType`, which must return `Blockly.icons.IconType.COMMENT`.
@@ -152,10 +152,10 @@ After you register your icon, Blockly will use it in place of the built-in
comment icon, such as when the user clicks "Add Comment" on the context menu or
you call `myBlock.setCommentText()`.
-[ICommentIcon]: /reference/js/blockly.icommenticon_interface
-[IHasBubble]: /reference/js/blockly.ihasbubble_interface
+[ICommentIcon]: /reference/blockly.icommenticon_interface
+[IHasBubble]: /reference/blockly.ihasbubble_interface
[use-bubbles]: /guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles
-[ISerializable]: /reference/js/blockly.iserializable_interface
-[CommentState]: /reference/js/blockly.icons_namespace.commentstate_interface
+[ISerializable]: /reference/blockly.iserializable_interface
+[CommentState]: /reference/blockly.icons_namespace.commentstate_interface
[icon-serialization]: /guides/create-custom-blocks/icons/creating-custom-icons/save-and-load
[comment-icon-image]: /images/block-icons/comment-icon-outline.png
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/save-and-load.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/save-and-load.mdx
index 280f5fb83..6c13e3c0e 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/save-and-load.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/save-and-load.mdx
@@ -100,10 +100,10 @@ Blockly.icons.registry.register(
new Blockly.icons.IconType('my_icon'), myIcon);
```
-[ISerializable]: /reference/js/blockly.iserializable_interface
+[ISerializable]: /reference/blockly.iserializable_interface
[registering]: /guides/create-custom-blocks/icons/creating-custom-icons/save-and-load#register-icon-classes
-[saveState]: /reference/js/blockly.iserializable_interface.savestate_1_methodsignature
-[loadState]: /reference/js/blockly.iserializable_interface.loadstate_1_methodsignature
-[IconType]: /reference/js/blockly.icons_namespace.icontype_class
-[getType]: /reference/js/blockly.iicon_interface.gettype_1_methodsignature
+[saveState]: /reference/blockly.iserializable_interface.savestate_1_methodsignature
+[loadState]: /reference/blockly.iserializable_interface.loadstate_1_methodsignature
+[IconType]: /reference/blockly.icons_namespace.icontype_class
+[getType]: /reference/blockly.iicon_interface.gettype_1_methodsignature
[serializer]: /guides/configure/web/serialization#serializer-hooks
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles.mdx
index 352b2d49a..ab711306c 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/creating-custom-icons/use-bubbles.mdx
@@ -79,8 +79,8 @@ isBubbleVisible() {
}
```
-[IIcon]: /reference/js/blockly.iicon_interface
-[IHasBubble]: /reference/js/blockly.ihasbubble_interface
-[setBubbleVisible]: /reference/js/blockly.ihasbubble_interface.setbubblevisible_1_methodsignature
-[bubbleIsVisible]: /reference/js/blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature
-[onLocationChange]: /reference/js/blockly.iicon_interface.onlocationchange_1_methodsignature
+[IIcon]: /reference/blockly.iicon_interface
+[IHasBubble]: /reference/blockly.ihasbubble_interface
+[setBubbleVisible]: /reference/blockly.ihasbubble_interface.setbubblevisible_1_methodsignature
+[bubbleIsVisible]: /reference/blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature
+[onLocationChange]: /reference/blockly.iicon_interface.onlocationchange_1_methodsignature
diff --git a/packages/docs/docs/guides/create-custom-blocks/icons/overview.mdx b/packages/docs/docs/guides/create-custom-blocks/icons/overview.mdx
index e48868ad3..bd8e5e460 100644
--- a/packages/docs/docs/guides/create-custom-blocks/icons/overview.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/icons/overview.mdx
@@ -24,4 +24,4 @@ or copyright information in a pop-up bubble.
[fields-vs-icons]: /guides/create-custom-blocks/fields/fields-vs-icons
[custom-icons]: /guides/create-custom-blocks/icons/creating-custom-icons/basic-implementation
-[icons-reference]: /reference/js/blockly.icons_namespace
+[icons-reference]: /reference/blockly.icons_namespace
diff --git a/packages/docs/docs/guides/create-custom-blocks/inputs/connection-checks.mdx b/packages/docs/docs/guides/create-custom-blocks/inputs/connection-checks.mdx
index ad9feb324..8a1b38fe9 100644
--- a/packages/docs/docs/guides/create-custom-blocks/inputs/connection-checks.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/inputs/connection-checks.mdx
@@ -240,5 +240,5 @@ connection checker.
[connection-type]: /guides/create-custom-blocks/define/block-anatomy#connections
[event-system]: /guides/configure/web/events
-[BlockMove]: /reference/js/blockly.events_namespace.blockmove_class
+[BlockMove]: /reference/blockly.events_namespace.blockmove_class
[custom-connection-checker]: /guides/create-custom-blocks/inputs/connection_checker
diff --git a/packages/docs/docs/guides/create-custom-blocks/inputs/connection-previews.mdx b/packages/docs/docs/guides/create-custom-blocks/inputs/connection-previews.mdx
index 3f9ffe243..2b42760ab 100644
--- a/packages/docs/docs/guides/create-custom-blocks/inputs/connection-previews.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/inputs/connection-previews.mdx
@@ -200,7 +200,7 @@ For more information about registration, see
[built-in-replacement-preview-image]: /images/connections/built-in-replacement-preview.png
[built-in-insertion-preview-image]: /images/connections/built-in-insertion-preview.png
[built-in-previewer-image]: /images/connections/built-in-previewer.gif
-[IConnectionPreviewer]: /reference/js/blockly.iconnectionpreviewer_interface
+[IConnectionPreviewer]: /reference/blockly.iconnectionpreviewer_interface
[insertion-marker]: /guides/get-started/workspace-anatomy#insertion-marker
[custom-renderer]: /guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation
[inject-subclasses]: /guides/configure/web/customization#injecting-subclasses
diff --git a/packages/docs/docs/guides/create-custom-blocks/inputs/creating-custom-inputs.mdx b/packages/docs/docs/guides/create-custom-blocks/inputs/creating-custom-inputs.mdx
index 1e53f82cf..ec82d7b9f 100644
--- a/packages/docs/docs/guides/create-custom-blocks/inputs/creating-custom-inputs.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/inputs/creating-custom-inputs.mdx
@@ -50,7 +50,7 @@ unlike [custom fields][custom-fields], you can't override
built-in inputs, and you can't add custom JSON configuration to them.
:::
-[Input]: /reference/js/blockly.inputs_namespace.input_class
-[makeConnection]: /reference/js/blockly.inputs_namespace.input_class.makeconnection_1_method
+[Input]: /reference/blockly.inputs_namespace.input_class
+[makeConnection]: /reference/blockly.inputs_namespace.input_class.makeconnection_1_method
[json-block-def]: /guides/create-custom-blocks/define/json-and-js
[custom-fields]: /guides/create-custom-blocks/fields/customizing-fields/creating
diff --git a/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-blocks.mdx b/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-blocks.mdx
index fbaa6cdff..2d1b88fa8 100644
--- a/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-blocks.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-blocks.mdx
@@ -227,7 +227,7 @@ Blockly.Blocks['my_procedure_call'] = {
You can also add the ability for users to modify the procedure model. Calling
the `insertParameter`, `deleteParameter`, or `setReturnTypes`
-[methods](/reference/js/blockly.procedures_namespace.iproceduremodel_interface)
+[methods](/reference/blockly.procedures_namespace.iproceduremodel_interface)
will automatically trigger your blocks to rerender (via `doProcedureUpdate`).
Options for creating UIs to modify the procedure model include using
diff --git a/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-data-models.mdx b/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-data-models.mdx
index acc801bbb..eb26edc8f 100644
--- a/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-data-models.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/procedures/creating-custom-procedure-data-models.mdx
@@ -126,5 +126,5 @@ class MyParameterModel {
```
[shareable-procedures]: https://www.npmjs.com/package/@blockly/block-shareable-procedures
-[IProcedureModel]: /reference/js/blockly.procedures_namespace.iproceduremodel_interface
-[IParameterModel]: /reference/js/blockly.procedures_namespace.iparametermodel_interface
+[IProcedureModel]: /reference/blockly.procedures_namespace.iproceduremodel_interface
+[IParameterModel]: /reference/blockly.procedures_namespace.iparametermodel_interface
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/constants.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/constants.mdx
index 47f9c8883..d088d1990 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/constants.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/constants.mdx
@@ -37,8 +37,8 @@ block, like jagged edges for collapsed blocks.
And finally, the constant provider also defines various values for things like
the padding between different elements, or the minimum heights of rows.
-[ConstantProvider]: /reference/js/blockly.blockrendering_namespace.constantprovider_class
-[Notch]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_property
-[PuzzleTab]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property
+[ConstantProvider]: /reference/blockly.blockrendering_namespace.constantprovider_class
+[Notch]: /reference/blockly.blockrendering_namespace.constantprovider_class.notch_property
+[PuzzleTab]: /reference/blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property
[connection-check]: /guides/create-custom-blocks/inputs/connection-checks
-[shapeFor]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method
+[shapeFor]: /reference/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/drawer.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/drawer.mdx
index c8d12f2ad..51b325378 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/drawer.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/drawer.mdx
@@ -16,9 +16,9 @@ Blockly to do this.
The drawer also updates the offsets of connections within the block.
-[Drawer]: /reference/js/blockly.blockrendering_namespace.drawer_class
+[Drawer]: /reference/blockly.blockrendering_namespace.drawer_class
[paths]: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths
[render-info]: /guides/create-custom-blocks/renderers/concepts/info
[path-object]: /guides/create-custom-blocks/renderers/concepts/path-object
[constants]: /guides/create-custom-blocks/renderers/concepts/constants
-[svg-path-utils]: /reference/js/blockly.utils_namespace.svgpaths_namespace
+[svg-path-utils]: /reference/blockly.utils_namespace.svgpaths_namespace
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/elements.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/elements.mdx
index 822856963..7bf264415 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/elements.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/elements.mdx
@@ -45,8 +45,8 @@ depending on the elements to either side of the spacer.
[render-info]: /guides/create-custom-blocks/renderers/concepts/info
[row]: /guides/create-custom-blocks/renderers/concepts/rows
-[field-element]: /reference/js/blockly.blockrendering_namespace.field_class
-[getSize]: /reference/js/blockly.field_class.getsize_1_method
+[field-element]: /reference/blockly.blockrendering_namespace.field_class
+[getSize]: /reference/blockly.field_class.getsize_1_method
[element-image]: /images/rendering/debug-renderer/element.png
[element-spacer-image]: /images/rendering/debug-renderer/element-spacer.png
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/info.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/info.mdx
index bfc1701d1..ab27e25ab 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/info.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/info.mdx
@@ -27,7 +27,7 @@ which are organized into non-overlapping [rows][row], and
Then the [drawer][drawer] uses that organized layout information to create the
SVG paths representing the block.
-[RenderInfo]: /reference/js/blockly.blockrendering_namespace.renderinfo_class
+[RenderInfo]: /reference/blockly.blockrendering_namespace.renderinfo_class
[drawer]: /guides/create-custom-blocks/renderers/concepts/drawer
[row]: /guides/create-custom-blocks/renderers/concepts/rows
[element]: /guides/create-custom-blocks/renderers/concepts/elements
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/path-object.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/path-object.mdx
index 8d446f17b..d10f08360 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/path-object.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/path-object.mdx
@@ -26,7 +26,7 @@ It also handles:
* Applying [theme colors][theme] to the SVG elements.
* Applying other styling to the SVG elements.
-[PathObject]: /reference/js/blockly.blockrendering_namespace.pathobject_class
+[PathObject]: /reference/blockly.blockrendering_namespace.pathobject_class
[theme]: /guides/configure/web/appearance/themes#block-style
[built-in-renderers]: /guides/create-custom-blocks/renderers/overview#built-in-renderers
[drawer]: /guides/create-custom-blocks/renderers/concepts/drawer
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/renderer.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/renderer.mdx
index 6330a955f..0581365ae 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/renderer.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/renderer.mdx
@@ -16,7 +16,7 @@ And it contains code for wiring them all together when it renders a block.
If you want to change just one part of an existing renderer (e.g. the constants)
you can subclass the relevant factory method.
-[Renderer]: /reference/js/blockly.blockrendering_namespace.renderer_class
+[Renderer]: /reference/blockly.blockrendering_namespace.renderer_class
[constants]: /guides/create-custom-blocks/renderers/concepts/constants
[render-info]: /guides/create-custom-blocks/renderers/concepts/info
[path-object]: /guides/create-custom-blocks/renderers/concepts/path-object
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/rows.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/rows.mdx
index b17d572d2..e7ecfd5c6 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/rows.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/concepts/rows.mdx
@@ -40,8 +40,8 @@ The bounds of the row spacers are determined by the
[render info][render-info] itself. After measuring all of the rows of the block,
the [render info][render-info] inserts spaces of its chosen size between rows.
-[Row]: /reference/js/blockly.blockrendering_namespace.row_class
-[RowSpacer]: /reference/js/blockly.blockrendering_namespace.spacerrow_class
+[Row]: /reference/blockly.blockrendering_namespace.row_class
+[RowSpacer]: /reference/blockly.blockrendering_namespace.spacerrow_class
[render-info]: /guides/create-custom-blocks/renderers/concepts/info
[external-vs-inline]: /guides/create-custom-blocks/define/inline-vs-external
[element]: /guides/create-custom-blocks/renderers/concepts/elements
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation.mdx
index f26e2712b..3b79622bc 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation.mdx
@@ -85,16 +85,16 @@ const workspace = Blockly.inject(blocklyDiv, {
});
```
-[Renderer]: /reference/js/blockly.blockrendering_namespace.renderer_class
+[Renderer]: /reference/blockly.blockrendering_namespace.renderer_class
[renderer-concept]: /guides/create-custom-blocks/renderers/concepts/renderer
[base-renderer-image]: /images/rendering/renderers/base-renderer.png
[built-in-renderers]: /guides/create-custom-blocks/renderers/overview#built-in-renderers
[renderer-component]: /guides/create-custom-blocks/renderers/concepts/overview
[connection-shape]: /guides/create-custom-blocks/renderers/create-custom-renderers/connection-shapes
[constants]: /guides/create-custom-blocks/renderers/concepts/constants
-[makeConstants]: /reference/js/blockly.blockrendering_namespace.renderer_class.makeconstants__1_method
-[makeRenderInfo]: /reference/js/blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method
-[makePathObject]: /reference/js/blockly.blockrendering_namespace.renderer_class.makepathobject_1_method
-[makeDrawer]: /reference/js/blockly.blockrendering_namespace.renderer_class.makedrawer__1_method
+[makeConstants]: /reference/blockly.blockrendering_namespace.renderer_class.makeconstants__1_method
+[makeRenderInfo]: /reference/blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method
+[makePathObject]: /reference/blockly.blockrendering_namespace.renderer_class.makepathobject_1_method
+[makeDrawer]: /reference/blockly.blockrendering_namespace.renderer_class.makedrawer__1_method
[inject-config]: /guides/configure/web/configuration_struct
[custom-renderer-codelab]: /codelabs/custom-renderer/codelab-overview/index.html
diff --git a/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/connection-shapes.mdx b/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/connection-shapes.mdx
index 8fecbfcdb..03faf2599 100644
--- a/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/connection-shapes.mdx
+++ b/packages/docs/docs/guides/create-custom-blocks/renderers/create-custom-renderers/connection-shapes.mdx
@@ -275,27 +275,27 @@ export class Drawer extends Blockly.blockRendering.Drawer {
[internal-inputs-image]: /images/rendering/connection-shapes/internal-inputs.png
[basic-implementation]: /guides/create-custom-blocks/renderers/create-custom-renderers/basic-implementation
[constants]: /guides/create-custom-blocks/renderers/concepts/constants
-[BaseConstants]: /reference/js/blockly.blockrendering_namespace.constantprovider_class
-[GerasConstants]: /reference/js/blockly.geras_namespace.constantprovider_class
-[ZelosConstants]: /reference/js/blockly.zelos_namespace.constantprovider_class
-[NOTCH_WIDTH]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_width_property
-[NOTCH_HEIGHT]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_height_property
-[TAB_WIDTH]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_width_property
-[TAB_HEIGHT]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_height_property
+[BaseConstants]: /reference/blockly.blockrendering_namespace.constantprovider_class
+[GerasConstants]: /reference/blockly.geras_namespace.constantprovider_class
+[ZelosConstants]: /reference/blockly.zelos_namespace.constantprovider_class
+[NOTCH_WIDTH]: /reference/blockly.blockrendering_namespace.constantprovider_class.notch_width_property
+[NOTCH_HEIGHT]: /reference/blockly.blockrendering_namespace.constantprovider_class.notch_height_property
+[TAB_WIDTH]: /reference/blockly.blockrendering_namespace.constantprovider_class.tab_width_property
+[TAB_HEIGHT]: /reference/blockly.blockrendering_namespace.constantprovider_class.tab_height_property
[path-object]: /guides/create-custom-blocks/renderers/concepts/path-object
-[makeNotch]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method
-[makePuzzleTab]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method
+[makeNotch]: /reference/blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method
+[makePuzzleTab]: /reference/blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method
[connection-check]: /guides/create-custom-blocks/inputs/connection-checks
-[shapeFor]: /reference/js/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method
+[shapeFor]: /reference/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method
[basic-shapes]: #basic-shapes
[custom-input]: /guides/create-custom-blocks/inputs/creating-custom-inputs
[measurable]: /guides/create-custom-blocks/renderers/concepts/overview#block-measurables
-[InputConnection]: /reference/js/blockly.blockrendering_namespace.inputconnection_class
+[InputConnection]: /reference/blockly.blockrendering_namespace.inputconnection_class
[render-info]: /guides/create-custom-blocks/renderers/concepts/info
-[addInput]: /reference/js/blockly.blockrendering_namespace.renderinfo_class.addinput__1_method
+[addInput]: /reference/blockly.blockrendering_namespace.renderinfo_class.addinput__1_method
[row]: /guides/create-custom-blocks/renderers/concepts/rows
-[shouldStartNewRow]: /reference/js/blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method
+[shouldStartNewRow]: /reference/blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method
[drawer]: /guides/create-custom-blocks/renderers/concepts/drawer
-[drawOutline]: /reference/js/blockly.blockrendering_namespace.drawer_class.drawoutline__1_method
-[drawInternals]: /reference/js/blockly.blockrendering_namespace.drawer_class.drawinternals__1_method
+[drawOutline]: /reference/blockly.blockrendering_namespace.drawer_class.drawoutline__1_method
+[drawInternals]: /reference/blockly.blockrendering_namespace.drawer_class.drawinternals__1_method
[svg-path]: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths
diff --git a/packages/docs/docs/guides/programming/using_blockly_apis.mdx b/packages/docs/docs/guides/programming/using_blockly_apis.mdx
index b4e34aedf..86e8e10eb 100644
--- a/packages/docs/docs/guides/programming/using_blockly_apis.mdx
+++ b/packages/docs/docs/guides/programming/using_blockly_apis.mdx
@@ -20,7 +20,7 @@ Some properties may be annotated with `@internal` in their
[TsDoc](https://api-extractor.com/pages/tsdoc/tag_internal/) comments.
All `public` and `protected` properties are documented in the
-[References](/reference/js/blockly) section of the Blockly website. You
+[References](/reference/blockly) section of the Blockly website. You
can also check visibility by reading the code.
:::warning
diff --git a/packages/docs/docs/reference/_reference.js b/packages/docs/docs/reference/_reference.js
index c05ba1fce..14ae63dd7 100644
--- a/packages/docs/docs/reference/_reference.js
+++ b/packages/docs/docs/reference/_reference.js
@@ -2,21003 +2,6 @@ export const referenceSidebar = [
{
"type": "doc",
"label": "Overview",
- "id": "reference/js/blockly"
- },
- {
- "type": "category",
- "label": "Classes",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "category",
- "label": "Block",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.block_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.block_class._constructor__1_constructor",
- "id": "reference/js/blockly.block_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.addicon_1_method",
- "id": "reference/js/blockly.block_class.addicon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.allinputsfilled_1_method",
- "id": "reference/js/blockly.block_class.allinputsfilled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.appenddummyinput_1_method",
- "id": "reference/js/blockly.block_class.appenddummyinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.appendendrowinput_1_method",
- "id": "reference/js/blockly.block_class.appendendrowinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.appendinput_1_method",
- "id": "reference/js/blockly.block_class.appendinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.appendstatementinput_1_method",
- "id": "reference/js/blockly.block_class.appendstatementinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.appendvalueinput_1_method",
- "id": "reference/js/blockly.block_class.appendvalueinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.bumpneighbours_1_method",
- "id": "reference/js/blockly.block_class.bumpneighbours_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.childblocks__property",
- "id": "reference/js/blockly.block_class.childblocks__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.collapsed__property",
- "id": "reference/js/blockly.block_class.collapsed__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.collapsed_field_name_property",
- "id": "reference/js/blockly.block_class.collapsed_field_name_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.collapsed_input_name_property",
- "id": "reference/js/blockly.block_class.collapsed_input_name_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.colour__property",
- "id": "reference/js/blockly.block_class.colour__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.compose_property",
- "id": "reference/js/blockly.block_class.compose_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.contextmenu_property",
- "id": "reference/js/blockly.block_class.contextmenu_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.data_property",
- "id": "reference/js/blockly.block_class.data_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.decompose_property",
- "id": "reference/js/blockly.block_class.decompose_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.destroy_property",
- "id": "reference/js/blockly.block_class.destroy_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.dispose_1_method",
- "id": "reference/js/blockly.block_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.disposeinternal_1_method",
- "id": "reference/js/blockly.block_class.disposeinternal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.disposing_property",
- "id": "reference/js/blockly.block_class.disposing_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.doinit__1_method",
- "id": "reference/js/blockly.block_class.doinit__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.domtomutation_property",
- "id": "reference/js/blockly.block_class.domtomutation_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getchildren_1_method",
- "id": "reference/js/blockly.block_class.getchildren_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getcolour_1_method",
- "id": "reference/js/blockly.block_class.getcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getcommenttext_1_method",
- "id": "reference/js/blockly.block_class.getcommenttext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getdescendants_1_method",
- "id": "reference/js/blockly.block_class.getdescendants_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getdevelopervariables_property",
- "id": "reference/js/blockly.block_class.getdevelopervariables_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getdisabledreasons_1_method",
- "id": "reference/js/blockly.block_class.getdisabledreasons_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getfield_1_method",
- "id": "reference/js/blockly.block_class.getfield_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getfields_1_method",
- "id": "reference/js/blockly.block_class.getfields_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getfieldvalue_1_method",
- "id": "reference/js/blockly.block_class.getfieldvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.gethue_1_method",
- "id": "reference/js/blockly.block_class.gethue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.geticon_1_method",
- "id": "reference/js/blockly.block_class.geticon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.geticons_1_method",
- "id": "reference/js/blockly.block_class.geticons_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getinheriteddisabled_1_method",
- "id": "reference/js/blockly.block_class.getinheriteddisabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getinput_1_method",
- "id": "reference/js/blockly.block_class.getinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getinputsinline_1_method",
- "id": "reference/js/blockly.block_class.getinputsinline_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getinputtargetblock_1_method",
- "id": "reference/js/blockly.block_class.getinputtargetblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getinputwithblock_1_method",
- "id": "reference/js/blockly.block_class.getinputwithblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getnextblock_1_method",
- "id": "reference/js/blockly.block_class.getnextblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getoutputshape_1_method",
- "id": "reference/js/blockly.block_class.getoutputshape_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getparent_1_method",
- "id": "reference/js/blockly.block_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getpreviousblock_1_method",
- "id": "reference/js/blockly.block_class.getpreviousblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getrelativetosurfacexy_1_method",
- "id": "reference/js/blockly.block_class.getrelativetosurfacexy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getrootblock_1_method",
- "id": "reference/js/blockly.block_class.getrootblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getstylename_1_method",
- "id": "reference/js/blockly.block_class.getstylename_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getsurroundparent_1_method",
- "id": "reference/js/blockly.block_class.getsurroundparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.gettooltip_1_method",
- "id": "reference/js/blockly.block_class.gettooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.getvars_1_method",
- "id": "reference/js/blockly.block_class.getvars_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.hasdisabledreason_1_method",
- "id": "reference/js/blockly.block_class.hasdisabledreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.hasicon_1_method",
- "id": "reference/js/blockly.block_class.hasicon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.hat_property",
- "id": "reference/js/blockly.block_class.hat_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.helpurl_property",
- "id": "reference/js/blockly.block_class.helpurl_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.icons_property",
- "id": "reference/js/blockly.block_class.icons_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.id_property",
- "id": "reference/js/blockly.block_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.init_property",
- "id": "reference/js/blockly.block_class.init_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.initmodel_1_method",
- "id": "reference/js/blockly.block_class.initmodel_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.inputlist_property",
- "id": "reference/js/blockly.block_class.inputlist_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.inputsinline_property",
- "id": "reference/js/blockly.block_class.inputsinline_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.inputsinlinedefault_property",
- "id": "reference/js/blockly.block_class.inputsinlinedefault_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.iscollapsed_1_method",
- "id": "reference/js/blockly.block_class.iscollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isdeletable_1_method",
- "id": "reference/js/blockly.block_class.isdeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isdisposed_1_method",
- "id": "reference/js/blockly.block_class.isdisposed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isduplicatable_1_method",
- "id": "reference/js/blockly.block_class.isduplicatable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isenabled_1_method",
- "id": "reference/js/blockly.block_class.isenabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isinflyout_property",
- "id": "reference/js/blockly.block_class.isinflyout_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isinmutator_property",
- "id": "reference/js/blockly.block_class.isinmutator_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isinsertionmarker__property",
- "id": "reference/js/blockly.block_class.isinsertionmarker__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isinsertionmarker_1_method",
- "id": "reference/js/blockly.block_class.isinsertionmarker_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isowndeletable_1_method",
- "id": "reference/js/blockly.block_class.isowndeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isowneditable_1_method",
- "id": "reference/js/blockly.block_class.isowneditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.isshadow_1_method",
- "id": "reference/js/blockly.block_class.isshadow_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.jsoninit_1_method",
- "id": "reference/js/blockly.block_class.jsoninit_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.loadextrastate_property",
- "id": "reference/js/blockly.block_class.loadextrastate_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.mixin_1_method",
- "id": "reference/js/blockly.block_class.mixin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.moveby_1_method",
- "id": "reference/js/blockly.block_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.moveinputbefore_1_method",
- "id": "reference/js/blockly.block_class.moveinputbefore_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.movenumberedinputbefore_1_method",
- "id": "reference/js/blockly.block_class.movenumberedinputbefore_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.mutationtodom_property",
- "id": "reference/js/blockly.block_class.mutationtodom_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.nextconnection_property",
- "id": "reference/js/blockly.block_class.nextconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.onchange_property",
- "id": "reference/js/blockly.block_class.onchange_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.outputconnection_property",
- "id": "reference/js/blockly.block_class.outputconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.outputshape__property",
- "id": "reference/js/blockly.block_class.outputshape__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.parentblock__property",
- "id": "reference/js/blockly.block_class.parentblock__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.previousconnection_property",
- "id": "reference/js/blockly.block_class.previousconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.removeicon_1_method",
- "id": "reference/js/blockly.block_class.removeicon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.removeinput_1_method",
- "id": "reference/js/blockly.block_class.removeinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.renamevarbyid_1_method",
- "id": "reference/js/blockly.block_class.renamevarbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.rendered_property",
- "id": "reference/js/blockly.block_class.rendered_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.rtl_property",
- "id": "reference/js/blockly.block_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.saveextrastate_property",
- "id": "reference/js/blockly.block_class.saveextrastate_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setcollapsed_1_method",
- "id": "reference/js/blockly.block_class.setcollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setcolour_1_method",
- "id": "reference/js/blockly.block_class.setcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setcommenttext_1_method",
- "id": "reference/js/blockly.block_class.setcommenttext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setdeletable_1_method",
- "id": "reference/js/blockly.block_class.setdeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setdisabledreason_1_method",
- "id": "reference/js/blockly.block_class.setdisabledreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.seteditable_1_method",
- "id": "reference/js/blockly.block_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setfieldvalue_1_method",
- "id": "reference/js/blockly.block_class.setfieldvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.sethelpurl_1_method",
- "id": "reference/js/blockly.block_class.sethelpurl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setinputsinline_1_method",
- "id": "reference/js/blockly.block_class.setinputsinline_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setmovable_1_method",
- "id": "reference/js/blockly.block_class.setmovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setmutator_1_method",
- "id": "reference/js/blockly.block_class.setmutator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setnextstatement_1_method",
- "id": "reference/js/blockly.block_class.setnextstatement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setonchange_1_method",
- "id": "reference/js/blockly.block_class.setonchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setoutput_1_method",
- "id": "reference/js/blockly.block_class.setoutput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setoutputshape_1_method",
- "id": "reference/js/blockly.block_class.setoutputshape_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setpreviousstatement_1_method",
- "id": "reference/js/blockly.block_class.setpreviousstatement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setstyle_1_method",
- "id": "reference/js/blockly.block_class.setstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.settooltip_1_method",
- "id": "reference/js/blockly.block_class.settooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.setwarningtext_1_method",
- "id": "reference/js/blockly.block_class.setwarningtext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.stylename__property",
- "id": "reference/js/blockly.block_class.stylename__property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.suppressprefixsuffix_property",
- "id": "reference/js/blockly.block_class.suppressprefixsuffix_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.todevstring_1_method",
- "id": "reference/js/blockly.block_class.todevstring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.tooltip_property",
- "id": "reference/js/blockly.block_class.tooltip_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.tostring_1_method",
- "id": "reference/js/blockly.block_class.tostring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.type_property",
- "id": "reference/js/blockly.block_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.unplug_1_method",
- "id": "reference/js/blockly.block_class.unplug_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.block_class.workspace_property",
- "id": "reference/js/blockly.block_class.workspace_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "BlockFlyoutInflater",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.blockflyoutinflater_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockflyoutinflater_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.addblocklisteners_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.addblocklisteners_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.createblock_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.createblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.disposeitem_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.disposeitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.flyout_property",
- "id": "reference/js/blockly.blockflyoutinflater_class.flyout_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.gapforitem_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.gapforitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.gettype_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.listeners_property",
- "id": "reference/js/blockly.blockflyoutinflater_class.listeners_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.load_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.permanentlydisabledblocks_property",
- "id": "reference/js/blockly.blockflyoutinflater_class.permanentlydisabledblocks_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.removelisteners_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.removelisteners_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockflyoutinflater_class.setflyout_1_method",
- "id": "reference/js/blockly.blockflyoutinflater_class.setflyout_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "BlockNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.blocknavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocknavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.blocknavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "BlockSvg",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.blocksvg_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.blocksvg_class._constructor__1_constructor",
- "id": "reference/js/blockly.blocksvg_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.addclass_1_method",
- "id": "reference/js/blockly.blocksvg_class.addclass_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.addicon_1_method",
- "id": "reference/js/blockly.blocksvg_class.addicon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.addselect_1_method",
- "id": "reference/js/blockly.blocksvg_class.addselect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.appendinput_1_method",
- "id": "reference/js/blockly.blocksvg_class.appendinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.bringtofront_1_method",
- "id": "reference/js/blockly.blocksvg_class.bringtofront_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.bumpneighbours_1_method",
- "id": "reference/js/blockly.blocksvg_class.bumpneighbours_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.calculatecontextmenulocation_1_method",
- "id": "reference/js/blockly.blocksvg_class.calculatecontextmenulocation_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.canbefocused_1_method",
- "id": "reference/js/blockly.blocksvg_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.checkanddelete_1_method",
- "id": "reference/js/blockly.blocksvg_class.checkanddelete_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.collapsed_warning_id_property",
- "id": "reference/js/blockly.blocksvg_class.collapsed_warning_id_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.customcontextmenu_property",
- "id": "reference/js/blockly.blocksvg_class.customcontextmenu_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.decompose_property",
- "id": "reference/js/blockly.blocksvg_class.decompose_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.dispose_1_method",
- "id": "reference/js/blockly.blocksvg_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.disposeinternal_1_method",
- "id": "reference/js/blockly.blocksvg_class.disposeinternal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.drag_1_method",
- "id": "reference/js/blockly.blocksvg_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.enddrag_1_method",
- "id": "reference/js/blockly.blocksvg_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.generatecontextmenu_1_method",
- "id": "reference/js/blockly.blocksvg_class.generatecontextmenu_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.blocksvg_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getboundingrectanglewithoutchildren_1_method",
- "id": "reference/js/blockly.blocksvg_class.getboundingrectanglewithoutchildren_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getchildren_1_method",
- "id": "reference/js/blockly.blocksvg_class.getchildren_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getcolour_1_method",
- "id": "reference/js/blockly.blocksvg_class.getcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getcoloursecondary_1_method",
- "id": "reference/js/blockly.blocksvg_class.getcoloursecondary_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getcolourtertiary_1_method",
- "id": "reference/js/blockly.blocksvg_class.getcolourtertiary_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.blocksvg_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.blocksvg_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getnextblock_1_method",
- "id": "reference/js/blockly.blocksvg_class.getnextblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getpreviousblock_1_method",
- "id": "reference/js/blockly.blocksvg_class.getpreviousblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getrelativetosurfacexy_1_method",
- "id": "reference/js/blockly.blocksvg_class.getrelativetosurfacexy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getstyle_1_method",
- "id": "reference/js/blockly.blocksvg_class.getstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.getsvgroot_1_method",
- "id": "reference/js/blockly.blocksvg_class.getsvgroot_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.height_property",
- "id": "reference/js/blockly.blocksvg_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.initsvg_1_method",
- "id": "reference/js/blockly.blocksvg_class.initsvg_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.inline_property",
- "id": "reference/js/blockly.blocksvg_class.inline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.iscopyable_1_method",
- "id": "reference/js/blockly.blocksvg_class.iscopyable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.ismovable_1_method",
- "id": "reference/js/blockly.blocksvg_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.jsoninit_1_method",
- "id": "reference/js/blockly.blocksvg_class.jsoninit_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.markdirty_1_method",
- "id": "reference/js/blockly.blocksvg_class.markdirty_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.moveby_1_method",
- "id": "reference/js/blockly.blocksvg_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.movenumberedinputbefore_1_method",
- "id": "reference/js/blockly.blocksvg_class.movenumberedinputbefore_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.moveto_1_method",
- "id": "reference/js/blockly.blocksvg_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.mutator_property",
- "id": "reference/js/blockly.blocksvg_class.mutator_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.nextconnection_property",
- "id": "reference/js/blockly.blocksvg_class.nextconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.onnodeblur_1_method",
- "id": "reference/js/blockly.blocksvg_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.onnodefocus_1_method",
- "id": "reference/js/blockly.blocksvg_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.outputconnection_property",
- "id": "reference/js/blockly.blocksvg_class.outputconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.previousconnection_property",
- "id": "reference/js/blockly.blocksvg_class.previousconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.removeclass_1_method",
- "id": "reference/js/blockly.blocksvg_class.removeclass_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.removeicon_1_method",
- "id": "reference/js/blockly.blocksvg_class.removeicon_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.removeinput_1_method",
- "id": "reference/js/blockly.blocksvg_class.removeinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.removeselect_1_method",
- "id": "reference/js/blockly.blocksvg_class.removeselect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.render_1_method",
- "id": "reference/js/blockly.blocksvg_class.render_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.rendered_property",
- "id": "reference/js/blockly.blocksvg_class.rendered_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.revertdrag_1_method",
- "id": "reference/js/blockly.blocksvg_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.saveconnections_property",
- "id": "reference/js/blockly.blocksvg_class.saveconnections_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.schedulesnapandbump_1_method",
- "id": "reference/js/blockly.blocksvg_class.schedulesnapandbump_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.select_1_method",
- "id": "reference/js/blockly.blocksvg_class.select_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setcollapsed_1_method",
- "id": "reference/js/blockly.blocksvg_class.setcollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setcolour_1_method",
- "id": "reference/js/blockly.blocksvg_class.setcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setdeletable_1_method",
- "id": "reference/js/blockly.blocksvg_class.setdeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setdisabledreason_1_method",
- "id": "reference/js/blockly.blocksvg_class.setdisabledreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setdragstrategy_1_method",
- "id": "reference/js/blockly.blocksvg_class.setdragstrategy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.seteditable_1_method",
- "id": "reference/js/blockly.blocksvg_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.sethighlighted_1_method",
- "id": "reference/js/blockly.blocksvg_class.sethighlighted_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setinputsinline_1_method",
- "id": "reference/js/blockly.blocksvg_class.setinputsinline_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setmovable_1_method",
- "id": "reference/js/blockly.blocksvg_class.setmovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setmutator_1_method",
- "id": "reference/js/blockly.blocksvg_class.setmutator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setnextstatement_1_method",
- "id": "reference/js/blockly.blocksvg_class.setnextstatement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setoutput_1_method",
- "id": "reference/js/blockly.blocksvg_class.setoutput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setpreviousstatement_1_method",
- "id": "reference/js/blockly.blocksvg_class.setpreviousstatement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setstyle_1_method",
- "id": "reference/js/blockly.blocksvg_class.setstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.setwarningtext_1_method",
- "id": "reference/js/blockly.blocksvg_class.setwarningtext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.snaptogrid_1_method",
- "id": "reference/js/blockly.blocksvg_class.snaptogrid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.startdrag_1_method",
- "id": "reference/js/blockly.blocksvg_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.style_property",
- "id": "reference/js/blockly.blocksvg_class.style_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.tocopydata_1_method",
- "id": "reference/js/blockly.blocksvg_class.tocopydata_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.toflyoutinfo_1_method",
- "id": "reference/js/blockly.blocksvg_class.toflyoutinfo_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.translate_1_method",
- "id": "reference/js/blockly.blocksvg_class.translate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.unselect_1_method",
- "id": "reference/js/blockly.blocksvg_class.unselect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.width_property",
- "id": "reference/js/blockly.blocksvg_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blocksvg_class.workspace_property",
- "id": "reference/js/blockly.blocksvg_class.workspace_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ButtonFlyoutInflater",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.buttonflyoutinflater_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.buttonflyoutinflater_class.disposeitem_1_method",
- "id": "reference/js/blockly.buttonflyoutinflater_class.disposeitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.buttonflyoutinflater_class.gapforitem_1_method",
- "id": "reference/js/blockly.buttonflyoutinflater_class.gapforitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.buttonflyoutinflater_class.gettype_1_method",
- "id": "reference/js/blockly.buttonflyoutinflater_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.buttonflyoutinflater_class.load_1_method",
- "id": "reference/js/blockly.buttonflyoutinflater_class.load_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "CodeGenerator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.codegenerator_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.codegenerator_class._constructor__1_constructor",
- "id": "reference/js/blockly.codegenerator_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.addlooptrap_1_method",
- "id": "reference/js/blockly.codegenerator_class.addlooptrap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.addreservedwords_1_method",
- "id": "reference/js/blockly.codegenerator_class.addreservedwords_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.allnestedcomments_1_method",
- "id": "reference/js/blockly.codegenerator_class.allnestedcomments_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.blocktocode_1_method",
- "id": "reference/js/blockly.codegenerator_class.blocktocode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.comment_wrap_property",
- "id": "reference/js/blockly.codegenerator_class.comment_wrap_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.definitions__property",
- "id": "reference/js/blockly.codegenerator_class.definitions__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.finish_1_method",
- "id": "reference/js/blockly.codegenerator_class.finish_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.forblock_property",
- "id": "reference/js/blockly.codegenerator_class.forblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.function_name_placeholder__property",
- "id": "reference/js/blockly.codegenerator_class.function_name_placeholder__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.function_name_placeholder_regexp__property",
- "id": "reference/js/blockly.codegenerator_class.function_name_placeholder_regexp__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.functionnames__property",
- "id": "reference/js/blockly.codegenerator_class.functionnames__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.getprocedurename_1_method",
- "id": "reference/js/blockly.codegenerator_class.getprocedurename_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.getvariablename_1_method",
- "id": "reference/js/blockly.codegenerator_class.getvariablename_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.indent_property",
- "id": "reference/js/blockly.codegenerator_class.indent_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.infinite_loop_trap_property",
- "id": "reference/js/blockly.codegenerator_class.infinite_loop_trap_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.init_1_method",
- "id": "reference/js/blockly.codegenerator_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.injectid_1_method",
- "id": "reference/js/blockly.codegenerator_class.injectid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.isinitialized_property",
- "id": "reference/js/blockly.codegenerator_class.isinitialized_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.name__property",
- "id": "reference/js/blockly.codegenerator_class.name__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.namedb__property",
- "id": "reference/js/blockly.codegenerator_class.namedb__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.order_overrides_property",
- "id": "reference/js/blockly.codegenerator_class.order_overrides_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.prefixlines_1_method",
- "id": "reference/js/blockly.codegenerator_class.prefixlines_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.providefunction__1_method",
- "id": "reference/js/blockly.codegenerator_class.providefunction__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.reserved_words__property",
- "id": "reference/js/blockly.codegenerator_class.reserved_words__property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.scrub__1_method",
- "id": "reference/js/blockly.codegenerator_class.scrub__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.scrubnakedvalue_1_method",
- "id": "reference/js/blockly.codegenerator_class.scrubnakedvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.statement_prefix_property",
- "id": "reference/js/blockly.codegenerator_class.statement_prefix_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.statement_suffix_property",
- "id": "reference/js/blockly.codegenerator_class.statement_suffix_property"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.statementtocode_1_method",
- "id": "reference/js/blockly.codegenerator_class.statementtocode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.valuetocode_1_method",
- "id": "reference/js/blockly.codegenerator_class.valuetocode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.codegenerator_class.workspacetocode_1_method",
- "id": "reference/js/blockly.codegenerator_class.workspacetocode_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "CollapsibleToolboxCategory",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class._constructor__1_constructor",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.createdom__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.createdom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.createicondom__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.createicondom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.createsubcategoriesdom__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.createsubcategoriesdom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.expanded__property",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.expanded__property"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.getchildtoolboxitems_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.getchildtoolboxitems_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.getdiv_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.getdiv_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.init_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.iscollapsible_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.iscollapsible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.isexpanded_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.isexpanded_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.makedefaultcssconfig__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.makedefaultcssconfig__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.onclick_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.parsecontents__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.parsecontents__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.registrationname_property",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.registrationname_property"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.setexpanded_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.setexpanded_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.setvisible__1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.setvisible__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.subcategoriesdiv__property",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.subcategoriesdiv__property"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.toggleexpanded_1_method",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.toggleexpanded_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_class.toolboxitems__property",
- "id": "reference/js/blockly.collapsibletoolboxcategory_class.toolboxitems__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ComponentManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.componentmanager_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.addcapability_1_method",
- "id": "reference/js/blockly.componentmanager_class.addcapability_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.addcomponent_1_method",
- "id": "reference/js/blockly.componentmanager_class.addcomponent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.capability_property",
- "id": "reference/js/blockly.componentmanager_class.capability_property"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.getcomponent_1_method",
- "id": "reference/js/blockly.componentmanager_class.getcomponent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.getcomponents_1_method",
- "id": "reference/js/blockly.componentmanager_class.getcomponents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.hascapability_1_method",
- "id": "reference/js/blockly.componentmanager_class.hascapability_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.removecapability_1_method",
- "id": "reference/js/blockly.componentmanager_class.removecapability_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_class.removecomponent_1_method",
- "id": "reference/js/blockly.componentmanager_class.removecomponent_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Connection",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.connection_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.connection_class._constructor__1_constructor",
- "id": "reference/js/blockly.connection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.can_connect_property",
- "id": "reference/js/blockly.connection_class.can_connect_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.connect__1_method",
- "id": "reference/js/blockly.connection_class.connect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.connect_1_method",
- "id": "reference/js/blockly.connection_class.connect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.disconnect_1_method",
- "id": "reference/js/blockly.connection_class.disconnect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.disconnectinternal_1_method",
- "id": "reference/js/blockly.connection_class.disconnectinternal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getcheck_1_method",
- "id": "reference/js/blockly.connection_class.getcheck_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getconnectionfororphanedconnection_1_method",
- "id": "reference/js/blockly.connection_class.getconnectionfororphanedconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getparentandchildconnections_1_method",
- "id": "reference/js/blockly.connection_class.getparentandchildconnections_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getshadowdom_1_method",
- "id": "reference/js/blockly.connection_class.getshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getshadowstate_1_method",
- "id": "reference/js/blockly.connection_class.getshadowstate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.getsourceblock_1_method",
- "id": "reference/js/blockly.connection_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.id_property",
- "id": "reference/js/blockly.connection_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.isconnected_1_method",
- "id": "reference/js/blockly.connection_class.isconnected_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.issuperior_1_method",
- "id": "reference/js/blockly.connection_class.issuperior_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.oncheckchanged__1_method",
- "id": "reference/js/blockly.connection_class.oncheckchanged__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_checks_failed_property",
- "id": "reference/js/blockly.connection_class.reason_checks_failed_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_different_workspaces_property",
- "id": "reference/js/blockly.connection_class.reason_different_workspaces_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_drag_checks_failed_property",
- "id": "reference/js/blockly.connection_class.reason_drag_checks_failed_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_previous_and_output_property",
- "id": "reference/js/blockly.connection_class.reason_previous_and_output_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_self_connection_property",
- "id": "reference/js/blockly.connection_class.reason_self_connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_shadow_parent_property",
- "id": "reference/js/blockly.connection_class.reason_shadow_parent_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_target_null_property",
- "id": "reference/js/blockly.connection_class.reason_target_null_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reason_wrong_type_property",
- "id": "reference/js/blockly.connection_class.reason_wrong_type_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.reconnect_1_method",
- "id": "reference/js/blockly.connection_class.reconnect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.respawnshadow__1_method",
- "id": "reference/js/blockly.connection_class.respawnshadow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.setcheck_1_method",
- "id": "reference/js/blockly.connection_class.setcheck_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.setshadowdom_1_method",
- "id": "reference/js/blockly.connection_class.setshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.setshadowstate_1_method",
- "id": "reference/js/blockly.connection_class.setshadowstate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.sourceblock__property",
- "id": "reference/js/blockly.connection_class.sourceblock__property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.targetblock_1_method",
- "id": "reference/js/blockly.connection_class.targetblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.targetconnection_property",
- "id": "reference/js/blockly.connection_class.targetconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.tostring_1_method",
- "id": "reference/js/blockly.connection_class.tostring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connection_class.type_property",
- "id": "reference/js/blockly.connection_class.type_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ConnectionChecker",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.connectionchecker_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.canconnect_1_method",
- "id": "reference/js/blockly.connectionchecker_class.canconnect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.canconnecttoprevious__1_method",
- "id": "reference/js/blockly.connectionchecker_class.canconnecttoprevious__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.canconnectwithreason_1_method",
- "id": "reference/js/blockly.connectionchecker_class.canconnectwithreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.dodragchecks_1_method",
- "id": "reference/js/blockly.connectionchecker_class.dodragchecks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.dosafetychecks_1_method",
- "id": "reference/js/blockly.connectionchecker_class.dosafetychecks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.dotypechecks_1_method",
- "id": "reference/js/blockly.connectionchecker_class.dotypechecks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionchecker_class.geterrormessage_1_method",
- "id": "reference/js/blockly.connectionchecker_class.geterrormessage_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ConnectionDB",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.connectiondb_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.connectiondb_class._constructor__1_constructor",
- "id": "reference/js/blockly.connectiondb_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.connectiondb_class.getneighbours_1_method",
- "id": "reference/js/blockly.connectiondb_class.getneighbours_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectiondb_class.init_1_method",
- "id": "reference/js/blockly.connectiondb_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectiondb_class.removeconnection_1_method",
- "id": "reference/js/blockly.connectiondb_class.removeconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectiondb_class.searchforclosest_1_method",
- "id": "reference/js/blockly.connectiondb_class.searchforclosest_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ConnectionNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.connectionnavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.getparentconnection_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.getparentconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.connectionnavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.connectionnavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ContextMenuRegistry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.contextmenuregistry_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class._constructor__1_constructor",
- "id": "reference/js/blockly.contextmenuregistry_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.getcontextmenuoptions_1_method",
- "id": "reference/js/blockly.contextmenuregistry_class.getcontextmenuoptions_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.getitem_1_method",
- "id": "reference/js/blockly.contextmenuregistry_class.getitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.register_1_method",
- "id": "reference/js/blockly.contextmenuregistry_class.register_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.registry_property",
- "id": "reference/js/blockly.contextmenuregistry_class.registry_property"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.reset_1_method",
- "id": "reference/js/blockly.contextmenuregistry_class.reset_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_class.unregister_1_method",
- "id": "reference/js/blockly.contextmenuregistry_class.unregister_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "DeleteArea",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.deletearea_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.deletearea_class._constructor__1_constructor",
- "id": "reference/js/blockly.deletearea_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.deletearea_class.id_property",
- "id": "reference/js/blockly.deletearea_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.deletearea_class.updatewoulddelete__1_method",
- "id": "reference/js/blockly.deletearea_class.updatewoulddelete__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.deletearea_class.woulddelete__property",
- "id": "reference/js/blockly.deletearea_class.woulddelete__property"
- },
- {
- "type": "doc",
- "label": "blockly.deletearea_class.woulddelete_1_method",
- "id": "reference/js/blockly.deletearea_class.woulddelete_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "DragTarget",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.dragtarget_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.dragtarget_class._constructor__1_constructor",
- "id": "reference/js/blockly.dragtarget_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.getclientrect_1_method",
- "id": "reference/js/blockly.dragtarget_class.getclientrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.id_property",
- "id": "reference/js/blockly.dragtarget_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.ondragenter_1_method",
- "id": "reference/js/blockly.dragtarget_class.ondragenter_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.ondragexit_1_method",
- "id": "reference/js/blockly.dragtarget_class.ondragexit_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.ondragover_1_method",
- "id": "reference/js/blockly.dragtarget_class.ondragover_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.ondrop_1_method",
- "id": "reference/js/blockly.dragtarget_class.ondrop_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragtarget_class.shouldpreventmove_1_method",
- "id": "reference/js/blockly.dragtarget_class.shouldpreventmove_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldCheckbox",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldcheckbox_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldcheckbox_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.check_char_property",
- "id": "reference/js/blockly.fieldcheckbox_class.check_char_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.configure__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.dovalueupdate__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.dovalueupdate__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.getdisplaytext__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.getdisplaytext__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.gettext_1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.getvalue_1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.getvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.getvalueboolean_1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.getvalueboolean_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.initview_1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.render__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.render__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.serializable_property",
- "id": "reference/js/blockly.fieldcheckbox_class.serializable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.setcheckcharacter_1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.setcheckcharacter_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.showeditor__1_method",
- "id": "reference/js/blockly.fieldcheckbox_class.showeditor__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldcheckbox_class.value__property",
- "id": "reference/js/blockly.fieldcheckbox_class.value__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldDropdown",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fielddropdown_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class._constructor__1_constructor",
- "id": "reference/js/blockly.fielddropdown_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class._constructor__2_constructor",
- "id": "reference/js/blockly.fielddropdown_class._constructor__2_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.applycolour_1_method",
- "id": "reference/js/blockly.fielddropdown_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.arrow_char_property",
- "id": "reference/js/blockly.fielddropdown_class.arrow_char_property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.clicktarget__property",
- "id": "reference/js/blockly.fielddropdown_class.clicktarget__property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.createsvgarrow__1_method",
- "id": "reference/js/blockly.fielddropdown_class.createsvgarrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.createtextarrow__1_method",
- "id": "reference/js/blockly.fielddropdown_class.createtextarrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fielddropdown_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.doclassvalidation__2_method",
- "id": "reference/js/blockly.fielddropdown_class.doclassvalidation__2_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.dovalueupdate__1_method",
- "id": "reference/js/blockly.fielddropdown_class.dovalueupdate__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.dropdowndispose__1_method",
- "id": "reference/js/blockly.fielddropdown_class.dropdowndispose__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.getoptions_1_method",
- "id": "reference/js/blockly.fielddropdown_class.getoptions_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.gettext__1_method",
- "id": "reference/js/blockly.fielddropdown_class.gettext__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.image_y_offset_property",
- "id": "reference/js/blockly.fielddropdown_class.image_y_offset_property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.image_y_padding_property",
- "id": "reference/js/blockly.fielddropdown_class.image_y_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.initview_1_method",
- "id": "reference/js/blockly.fielddropdown_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.isoptionlistdynamic_1_method",
- "id": "reference/js/blockly.fielddropdown_class.isoptionlistdynamic_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.menu__property",
- "id": "reference/js/blockly.fielddropdown_class.menu__property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.menugenerator__property",
- "id": "reference/js/blockly.fielddropdown_class.menugenerator__property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.onitemselected__1_method",
- "id": "reference/js/blockly.fielddropdown_class.onitemselected__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.render__1_method",
- "id": "reference/js/blockly.fielddropdown_class.render__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.separator_property",
- "id": "reference/js/blockly.fielddropdown_class.separator_property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.serializable_property",
- "id": "reference/js/blockly.fielddropdown_class.serializable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.setoptions_1_method",
- "id": "reference/js/blockly.fielddropdown_class.setoptions_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.shouldaddborderrect__1_method",
- "id": "reference/js/blockly.fielddropdown_class.shouldaddborderrect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.showeditor__1_method",
- "id": "reference/js/blockly.fielddropdown_class.showeditor__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.trimoptions_1_method",
- "id": "reference/js/blockly.fielddropdown_class.trimoptions_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fielddropdown_class.validateoptions_1_method",
- "id": "reference/js/blockly.fielddropdown_class.validateoptions_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldImage",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldimage_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldimage_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldimage_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.configure__1_method",
- "id": "reference/js/blockly.fieldimage_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldimage_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.dovalueupdate__1_method",
- "id": "reference/js/blockly.fieldimage_class.dovalueupdate__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.editable_property",
- "id": "reference/js/blockly.fieldimage_class.editable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.getfliprtl_1_method",
- "id": "reference/js/blockly.fieldimage_class.getfliprtl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.gettext__1_method",
- "id": "reference/js/blockly.fieldimage_class.gettext__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.imageelement_property",
- "id": "reference/js/blockly.fieldimage_class.imageelement_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.imageheight_property",
- "id": "reference/js/blockly.fieldimage_class.imageheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.initview_1_method",
- "id": "reference/js/blockly.fieldimage_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.isclickable_1_method",
- "id": "reference/js/blockly.fieldimage_class.isclickable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.isdirty__property",
- "id": "reference/js/blockly.fieldimage_class.isdirty__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.setalt_1_method",
- "id": "reference/js/blockly.fieldimage_class.setalt_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.setonclickhandler_1_method",
- "id": "reference/js/blockly.fieldimage_class.setonclickhandler_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.showeditor__1_method",
- "id": "reference/js/blockly.fieldimage_class.showeditor__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimage_class.updatesize__1_method",
- "id": "reference/js/blockly.fieldimage_class.updatesize__1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldLabel",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldlabel_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldlabel_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.configure__1_method",
- "id": "reference/js/blockly.fieldlabel_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldlabel_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.editable_property",
- "id": "reference/js/blockly.fieldlabel_class.editable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.initview_1_method",
- "id": "reference/js/blockly.fieldlabel_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.maxdisplaylength_property",
- "id": "reference/js/blockly.fieldlabel_class.maxdisplaylength_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabel_class.setclass_1_method",
- "id": "reference/js/blockly.fieldlabel_class.setclass_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldLabelSerializable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldlabelserializable_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldlabelserializable_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldlabelserializable_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabelserializable_class.editable_property",
- "id": "reference/js/blockly.fieldlabelserializable_class.editable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldlabelserializable_class.serializable_property",
- "id": "reference/js/blockly.fieldlabelserializable_class.serializable_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldnavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.fieldnavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldNumber",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldnumber_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldnumber_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.configure__1_method",
- "id": "reference/js/blockly.fieldnumber_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldnumber_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.getmax_1_method",
- "id": "reference/js/blockly.fieldnumber_class.getmax_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.getmin_1_method",
- "id": "reference/js/blockly.fieldnumber_class.getmin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.getprecision_1_method",
- "id": "reference/js/blockly.fieldnumber_class.getprecision_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.initview_1_method",
- "id": "reference/js/blockly.fieldnumber_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.max__property",
- "id": "reference/js/blockly.fieldnumber_class.max__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.min__property",
- "id": "reference/js/blockly.fieldnumber_class.min__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.precision__property",
- "id": "reference/js/blockly.fieldnumber_class.precision__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.setconstraints_1_method",
- "id": "reference/js/blockly.fieldnumber_class.setconstraints_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.setmax_1_method",
- "id": "reference/js/blockly.fieldnumber_class.setmax_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.setmin_1_method",
- "id": "reference/js/blockly.fieldnumber_class.setmin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.setprecision_1_method",
- "id": "reference/js/blockly.fieldnumber_class.setprecision_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.spellcheck__property",
- "id": "reference/js/blockly.fieldnumber_class.spellcheck__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumber_class.widgetcreate__1_method",
- "id": "reference/js/blockly.fieldnumber_class.widgetcreate__1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldTextInput",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldtextinput_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldtextinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldtextinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldtextinput_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldtextinput_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldtextinput_class.initview_1_method",
- "id": "reference/js/blockly.fieldtextinput_class.initview_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FieldVariable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldvariable_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class._constructor__1_constructor",
- "id": "reference/js/blockly.fieldvariable_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.configure__1_method",
- "id": "reference/js/blockly.fieldvariable_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.defaultvariablename_property",
- "id": "reference/js/blockly.fieldvariable_class.defaultvariablename_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.fieldvariable_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.dovalueupdate__1_method",
- "id": "reference/js/blockly.fieldvariable_class.dovalueupdate__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.dropdowncreate_1_method",
- "id": "reference/js/blockly.fieldvariable_class.dropdowncreate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.fromxml_1_method",
- "id": "reference/js/blockly.fieldvariable_class.fromxml_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.getdefaulttype_1_method",
- "id": "reference/js/blockly.fieldvariable_class.getdefaulttype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.gettext_1_method",
- "id": "reference/js/blockly.fieldvariable_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.getvalidator_1_method",
- "id": "reference/js/blockly.fieldvariable_class.getvalidator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.getvalue_1_method",
- "id": "reference/js/blockly.fieldvariable_class.getvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.initmodel_1_method",
- "id": "reference/js/blockly.fieldvariable_class.initmodel_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.initview_1_method",
- "id": "reference/js/blockly.fieldvariable_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.menugenerator__property",
- "id": "reference/js/blockly.fieldvariable_class.menugenerator__property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.onitemselected__1_method",
- "id": "reference/js/blockly.fieldvariable_class.onitemselected__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.serializable_property",
- "id": "reference/js/blockly.fieldvariable_class.serializable_property"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.setsourceblock_1_method",
- "id": "reference/js/blockly.fieldvariable_class.setsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.shouldaddborderrect__1_method",
- "id": "reference/js/blockly.fieldvariable_class.shouldaddborderrect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.toxml_1_method",
- "id": "reference/js/blockly.fieldvariable_class.toxml_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariable_class.variabletypes_property",
- "id": "reference/js/blockly.fieldvariable_class.variabletypes_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutButton",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutbutton_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.border_radius_property",
- "id": "reference/js/blockly.flyoutbutton_class.border_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.callbackkey_property",
- "id": "reference/js/blockly.flyoutbutton_class.callbackkey_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.canbefocused_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.createdom_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.cursorsvg_property",
- "id": "reference/js/blockly.flyoutbutton_class.cursorsvg_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.dispose_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getbuttontext_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getbuttontext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getsvgroot_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getsvgroot_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.gettargetworkspace_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.gettargetworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.getworkspace_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.getworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.height_property",
- "id": "reference/js/blockly.flyoutbutton_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.info_property",
- "id": "reference/js/blockly.flyoutbutton_class.info_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.islabel_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.islabel_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.moveby_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.moveto_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.onnodeblur_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.onnodefocus_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.setcursorsvg_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.setcursorsvg_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.show_1_method",
- "id": "reference/js/blockly.flyoutbutton_class.show_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.text_margin_x_property",
- "id": "reference/js/blockly.flyoutbutton_class.text_margin_x_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.text_margin_y_property",
- "id": "reference/js/blockly.flyoutbutton_class.text_margin_y_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbutton_class.width_property",
- "id": "reference/js/blockly.flyoutbutton_class.width_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutButtonNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutbuttonnavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.flyoutbuttonnavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutitem_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutitem_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyoutitem_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutitem_class.getelement_1_method",
- "id": "reference/js/blockly.flyoutitem_class.getelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutitem_class.gettype_1_method",
- "id": "reference/js/blockly.flyoutitem_class.gettype_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutMetricsManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutmetricsmanager_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutmetricsmanager_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyoutmetricsmanager_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutmetricsmanager_class.flyout__property",
- "id": "reference/js/blockly.flyoutmetricsmanager_class.flyout__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutmetricsmanager_class.getcontentmetrics_1_method",
- "id": "reference/js/blockly.flyoutmetricsmanager_class.getcontentmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutmetricsmanager_class.getscrollmetrics_1_method",
- "id": "reference/js/blockly.flyoutmetricsmanager_class.getscrollmetrics_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutnavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.flyoutnavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutNavigator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutnavigator_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutnavigator_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyoutnavigator_class._constructor__1_constructor"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutSeparator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutseparator_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyoutseparator_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.canbefocused_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.isnavigable_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.isnavigable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.moveby_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.onnodeblur_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparator_class.onnodefocus_1_method",
- "id": "reference/js/blockly.flyoutseparator_class.onnodefocus_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FlyoutSeparatorNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyoutseparatornavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.flyoutseparatornavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FocusableTreeTraverser",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.focusabletreetraverser_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.focusabletreetraverser_class.findfocusablenodefor_1_method",
- "id": "reference/js/blockly.focusabletreetraverser_class.findfocusablenodefor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusabletreetraverser_class.findfocusednode_1_method",
- "id": "reference/js/blockly.focusabletreetraverser_class.findfocusednode_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "FocusManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.focusmanager_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.focusmanager_class._constructor__1_constructor",
- "id": "reference/js/blockly.focusmanager_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.active_focus_node_css_class_name_property",
- "id": "reference/js/blockly.focusmanager_class.active_focus_node_css_class_name_property"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.ephemeralfocustaken_1_method",
- "id": "reference/js/blockly.focusmanager_class.ephemeralfocustaken_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.focusnode_1_method",
- "id": "reference/js/blockly.focusmanager_class.focusnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.focustree_1_method",
- "id": "reference/js/blockly.focusmanager_class.focustree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.getfocusednode_1_method",
- "id": "reference/js/blockly.focusmanager_class.getfocusednode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.getfocusedtree_1_method",
- "id": "reference/js/blockly.focusmanager_class.getfocusedtree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.getfocusmanager_1_method",
- "id": "reference/js/blockly.focusmanager_class.getfocusmanager_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.isregistered_1_method",
- "id": "reference/js/blockly.focusmanager_class.isregistered_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.passive_focus_node_css_class_name_property",
- "id": "reference/js/blockly.focusmanager_class.passive_focus_node_css_class_name_property"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.registertree_1_method",
- "id": "reference/js/blockly.focusmanager_class.registertree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.takeephemeralfocus_1_method",
- "id": "reference/js/blockly.focusmanager_class.takeephemeralfocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.focusmanager_class.unregistertree_1_method",
- "id": "reference/js/blockly.focusmanager_class.unregistertree_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Gesture",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.gesture_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.gesture_class._constructor__1_constructor",
- "id": "reference/js/blockly.gesture_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.gesture_class.currentdropdownowner_property",
- "id": "reference/js/blockly.gesture_class.currentdropdownowner_property"
- },
- {
- "type": "doc",
- "label": "blockly.gesture_class.getcurrentdragger_1_method",
- "id": "reference/js/blockly.gesture_class.getcurrentdragger_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.gesture_class.inprogress_1_method",
- "id": "reference/js/blockly.gesture_class.inprogress_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.gesture_class.isending__property",
- "id": "reference/js/blockly.gesture_class.isending__property"
- },
- {
- "type": "doc",
- "label": "blockly.gesture_class.startworkspace__property",
- "id": "reference/js/blockly.gesture_class.startworkspace__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Grid",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.grid_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.grid_class._constructor__1_constructor",
- "id": "reference/js/blockly.grid_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.alignxy_1_method",
- "id": "reference/js/blockly.grid_class.alignxy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.getlength_1_method",
- "id": "reference/js/blockly.grid_class.getlength_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.getspacing_1_method",
- "id": "reference/js/blockly.grid_class.getspacing_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.setlength_1_method",
- "id": "reference/js/blockly.grid_class.setlength_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.setsnaptogrid_1_method",
- "id": "reference/js/blockly.grid_class.setsnaptogrid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.setspacing_1_method",
- "id": "reference/js/blockly.grid_class.setspacing_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.grid_class.shouldsnap_1_method",
- "id": "reference/js/blockly.grid_class.shouldsnap_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "HorizontalFlyout",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.horizontalflyout_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class._constructor__1_constructor",
- "id": "reference/js/blockly.horizontalflyout_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.getclientrect_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.getclientrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.getx_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.getx_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.gety_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.gety_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.horizontallayout_property",
- "id": "reference/js/blockly.horizontalflyout_class.horizontallayout_property"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.isdragtowardworkspace_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.isdragtowardworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.layout__1_method",
- "id": "reference/js/blockly.horizontalflyout_class.layout__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.position_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.position_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.reflowinternal__1_method",
- "id": "reference/js/blockly.horizontalflyout_class.reflowinternal__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.scrolltostart_1_method",
- "id": "reference/js/blockly.horizontalflyout_class.scrolltostart_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.setmetrics__1_method",
- "id": "reference/js/blockly.horizontalflyout_class.setmetrics__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.horizontalflyout_class.wheel__1_method",
- "id": "reference/js/blockly.horizontalflyout_class.wheel__1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Input",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.input_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.input_class._constructor__1_constructor",
- "id": "reference/js/blockly.input_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.align_property",
- "id": "reference/js/blockly.input_class.align_property"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.appendfield_1_method",
- "id": "reference/js/blockly.input_class.appendfield_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.connection_property",
- "id": "reference/js/blockly.input_class.connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.dispose_1_method",
- "id": "reference/js/blockly.input_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.fieldrow_property",
- "id": "reference/js/blockly.input_class.fieldrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.getshadowdom_1_method",
- "id": "reference/js/blockly.input_class.getshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.getsourceblock_1_method",
- "id": "reference/js/blockly.input_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.init_1_method",
- "id": "reference/js/blockly.input_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.insertfieldat_1_method",
- "id": "reference/js/blockly.input_class.insertfieldat_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.isvisible_1_method",
- "id": "reference/js/blockly.input_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.makeconnection_1_method",
- "id": "reference/js/blockly.input_class.makeconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.name_property",
- "id": "reference/js/blockly.input_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.removefield_1_method",
- "id": "reference/js/blockly.input_class.removefield_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.setalign_1_method",
- "id": "reference/js/blockly.input_class.setalign_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.setcheck_1_method",
- "id": "reference/js/blockly.input_class.setcheck_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.setshadowdom_1_method",
- "id": "reference/js/blockly.input_class.setshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.input_class.type_property",
- "id": "reference/js/blockly.input_class.type_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "InsertionMarkerPreviewer",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class._constructor__1_constructor",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class.dispose_1_method",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class.hidepreview_1_method",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class.hidepreview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class.previewconnection_1_method",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class.previewconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class.previewreplacement_1_method",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class.previewreplacement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.insertionmarkerpreviewer_class.serializeblocktoinsertionmarker_1_method",
- "id": "reference/js/blockly.insertionmarkerpreviewer_class.serializeblocktoinsertionmarker_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "KeyboardNavigationController",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.keyboardnavigationcontroller_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.keyboardnavigationcontroller_class.getisactive_1_method",
- "id": "reference/js/blockly.keyboardnavigationcontroller_class.getisactive_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.keyboardnavigationcontroller_class.setisactive_1_method",
- "id": "reference/js/blockly.keyboardnavigationcontroller_class.setisactive_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "LabelFlyoutInflater",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.labelflyoutinflater_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.labelflyoutinflater_class.disposeitem_1_method",
- "id": "reference/js/blockly.labelflyoutinflater_class.disposeitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.labelflyoutinflater_class.gapforitem_1_method",
- "id": "reference/js/blockly.labelflyoutinflater_class.gapforitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.labelflyoutinflater_class.gettype_1_method",
- "id": "reference/js/blockly.labelflyoutinflater_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.labelflyoutinflater_class.load_1_method",
- "id": "reference/js/blockly.labelflyoutinflater_class.load_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "LineCursor",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.linecursor_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.linecursor_class._constructor__1_constructor",
- "id": "reference/js/blockly.linecursor_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.atendofline_1_method",
- "id": "reference/js/blockly.linecursor_class.atendofline_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.getcurnode_1_method",
- "id": "reference/js/blockly.linecursor_class.getcurnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.getfirstnode_1_method",
- "id": "reference/js/blockly.linecursor_class.getfirstnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.getlastnode_1_method",
- "id": "reference/js/blockly.linecursor_class.getlastnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.getnextnode_1_method",
- "id": "reference/js/blockly.linecursor_class.getnextnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.getpreviousnode_1_method",
- "id": "reference/js/blockly.linecursor_class.getpreviousnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.in_1_method",
- "id": "reference/js/blockly.linecursor_class.in_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.next_1_method",
- "id": "reference/js/blockly.linecursor_class.next_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.out_1_method",
- "id": "reference/js/blockly.linecursor_class.out_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.postdelete_1_method",
- "id": "reference/js/blockly.linecursor_class.postdelete_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.predelete_1_method",
- "id": "reference/js/blockly.linecursor_class.predelete_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.prev_1_method",
- "id": "reference/js/blockly.linecursor_class.prev_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.setcurnode_1_method",
- "id": "reference/js/blockly.linecursor_class.setcurnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.type_property",
- "id": "reference/js/blockly.linecursor_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.linecursor_class.workspace_property",
- "id": "reference/js/blockly.linecursor_class.workspace_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Marker",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.marker_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.marker_class.colour_property",
- "id": "reference/js/blockly.marker_class.colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.curnode_property",
- "id": "reference/js/blockly.marker_class.curnode_property"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.dispose_1_method",
- "id": "reference/js/blockly.marker_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.getcurnode_1_method",
- "id": "reference/js/blockly.marker_class.getcurnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.getsourceblock_1_method",
- "id": "reference/js/blockly.marker_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.getsourceblockfromnode_1_method",
- "id": "reference/js/blockly.marker_class.getsourceblockfromnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.setcurnode_1_method",
- "id": "reference/js/blockly.marker_class.setcurnode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.marker_class.type_property",
- "id": "reference/js/blockly.marker_class.type_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "MarkerManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.markermanager_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.markermanager_class.getcursor_1_method",
- "id": "reference/js/blockly.markermanager_class.getcursor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.markermanager_class.getmarker_1_method",
- "id": "reference/js/blockly.markermanager_class.getmarker_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.markermanager_class.local_marker_property",
- "id": "reference/js/blockly.markermanager_class.local_marker_property"
- },
- {
- "type": "doc",
- "label": "blockly.markermanager_class.registermarker_1_method",
- "id": "reference/js/blockly.markermanager_class.registermarker_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.markermanager_class.setcursor_1_method",
- "id": "reference/js/blockly.markermanager_class.setcursor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.markermanager_class.unregistermarker_1_method",
- "id": "reference/js/blockly.markermanager_class.unregistermarker_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Menu",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.menu_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.menu_class._constructor__1_constructor",
- "id": "reference/js/blockly.menu_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.menu_class.dispose_1_method",
- "id": "reference/js/blockly.menu_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.menu_class.openingcoords_property",
- "id": "reference/js/blockly.menu_class.openingcoords_property"
- },
- {
- "type": "doc",
- "label": "blockly.menu_class.render_1_method",
- "id": "reference/js/blockly.menu_class.render_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "MenuItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.menuitem_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.menuitem_class._constructor__1_constructor",
- "id": "reference/js/blockly.menuitem_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.menuitem_class.createdom_1_method",
- "id": "reference/js/blockly.menuitem_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.menuitem_class.dispose_1_method",
- "id": "reference/js/blockly.menuitem_class.dispose_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "MetricsManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.metricsmanager_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class._constructor__1_constructor",
- "id": "reference/js/blockly.metricsmanager_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getabsolutemetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getabsolutemetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getcomputedfixededges__1_method",
- "id": "reference/js/blockly.metricsmanager_class.getcomputedfixededges__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getcontentmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getcontentmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getdimensionspx__1_method",
- "id": "reference/js/blockly.metricsmanager_class.getdimensionspx__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getflyoutmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getflyoutmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getpaddedcontent__1_method",
- "id": "reference/js/blockly.metricsmanager_class.getpaddedcontent__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getscrollmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getscrollmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getsvgmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getsvgmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.gettoolboxmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.gettoolboxmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getuimetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getuimetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.getviewmetrics_1_method",
- "id": "reference/js/blockly.metricsmanager_class.getviewmetrics_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_class.workspace__property",
- "id": "reference/js/blockly.metricsmanager_class.workspace__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Names",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.names_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.names_class._constructor__1_constructor",
- "id": "reference/js/blockly.names_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.developer_variable_type_property",
- "id": "reference/js/blockly.names_class.developer_variable_type_property"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.equals_1_method",
- "id": "reference/js/blockly.names_class.equals_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.getdistinctname_1_method",
- "id": "reference/js/blockly.names_class.getdistinctname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.getname_1_method",
- "id": "reference/js/blockly.names_class.getname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.getusernames_1_method",
- "id": "reference/js/blockly.names_class.getusernames_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.populateprocedures_1_method",
- "id": "reference/js/blockly.names_class.populateprocedures_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.populatevariables_1_method",
- "id": "reference/js/blockly.names_class.populatevariables_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.reset_1_method",
- "id": "reference/js/blockly.names_class.reset_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.names_class.setvariablemap_1_method",
- "id": "reference/js/blockly.names_class.setvariablemap_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Navigator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.navigator_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.navigator_class.addnavigationpolicy_1_method",
- "id": "reference/js/blockly.navigator_class.addnavigationpolicy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.navigator_class.getfirstchild_1_method",
- "id": "reference/js/blockly.navigator_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.navigator_class.getnextsibling_1_method",
- "id": "reference/js/blockly.navigator_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.navigator_class.getparent_1_method",
- "id": "reference/js/blockly.navigator_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.navigator_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.navigator_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.navigator_class.rules_property",
- "id": "reference/js/blockly.navigator_class.rules_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Options",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.options_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.options_class._constructor__1_constructor",
- "id": "reference/js/blockly.options_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.collapse_property",
- "id": "reference/js/blockly.options_class.collapse_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.comments_property",
- "id": "reference/js/blockly.options_class.comments_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.disable_property",
- "id": "reference/js/blockly.options_class.disable_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.getmetrics_property",
- "id": "reference/js/blockly.options_class.getmetrics_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.gridoptions_property",
- "id": "reference/js/blockly.options_class.gridoptions_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.gridpattern_property",
- "id": "reference/js/blockly.options_class.gridpattern_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.hascategories_property",
- "id": "reference/js/blockly.options_class.hascategories_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.hascss_property",
- "id": "reference/js/blockly.options_class.hascss_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.hasscrollbars_property",
- "id": "reference/js/blockly.options_class.hasscrollbars_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.hassounds_property",
- "id": "reference/js/blockly.options_class.hassounds_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.hastrashcan_property",
- "id": "reference/js/blockly.options_class.hastrashcan_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.horizontallayout_property",
- "id": "reference/js/blockly.options_class.horizontallayout_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.languagetree_property",
- "id": "reference/js/blockly.options_class.languagetree_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.maxblocks_property",
- "id": "reference/js/blockly.options_class.maxblocks_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.maxinstances_property",
- "id": "reference/js/blockly.options_class.maxinstances_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.maxtrashcancontents_property",
- "id": "reference/js/blockly.options_class.maxtrashcancontents_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.modalinputs_property",
- "id": "reference/js/blockly.options_class.modalinputs_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.moveoptions_property",
- "id": "reference/js/blockly.options_class.moveoptions_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.onebasedindex_property",
- "id": "reference/js/blockly.options_class.onebasedindex_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.parentworkspace_property",
- "id": "reference/js/blockly.options_class.parentworkspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.pathtomedia_property",
- "id": "reference/js/blockly.options_class.pathtomedia_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.plugins_property",
- "id": "reference/js/blockly.options_class.plugins_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.readonly_property",
- "id": "reference/js/blockly.options_class.readonly_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.renderer_property",
- "id": "reference/js/blockly.options_class.renderer_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.rendereroverrides_property",
- "id": "reference/js/blockly.options_class.rendereroverrides_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.rtl_property",
- "id": "reference/js/blockly.options_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.setmetrics_property",
- "id": "reference/js/blockly.options_class.setmetrics_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.theme_property",
- "id": "reference/js/blockly.options_class.theme_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.toolboxposition_property",
- "id": "reference/js/blockly.options_class.toolboxposition_property"
- },
- {
- "type": "doc",
- "label": "blockly.options_class.zoomoptions_property",
- "id": "reference/js/blockly.options_class.zoomoptions_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "RenderedConnection",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.renderedconnection_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class._constructor__1_constructor",
- "id": "reference/js/blockly.renderedconnection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.canbefocused_1_method",
- "id": "reference/js/blockly.renderedconnection_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.closest_1_method",
- "id": "reference/js/blockly.renderedconnection_class.closest_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.connect__1_method",
- "id": "reference/js/blockly.renderedconnection_class.connect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.disconnectinternal_1_method",
- "id": "reference/js/blockly.renderedconnection_class.disconnectinternal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.distancefrom_1_method",
- "id": "reference/js/blockly.renderedconnection_class.distancefrom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.renderedconnection_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.renderedconnection_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.getoffsetinblock_1_method",
- "id": "reference/js/blockly.renderedconnection_class.getoffsetinblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.getsourceblock_1_method",
- "id": "reference/js/blockly.renderedconnection_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.highlight_1_method",
- "id": "reference/js/blockly.renderedconnection_class.highlight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.ishighlighted_1_method",
- "id": "reference/js/blockly.renderedconnection_class.ishighlighted_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.moveby_1_method",
- "id": "reference/js/blockly.renderedconnection_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.moveto_1_method",
- "id": "reference/js/blockly.renderedconnection_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.movetooffset_1_method",
- "id": "reference/js/blockly.renderedconnection_class.movetooffset_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.oncheckchanged__1_method",
- "id": "reference/js/blockly.renderedconnection_class.oncheckchanged__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.onnodeblur_1_method",
- "id": "reference/js/blockly.renderedconnection_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.onnodefocus_1_method",
- "id": "reference/js/blockly.renderedconnection_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.respawnshadow__1_method",
- "id": "reference/js/blockly.renderedconnection_class.respawnshadow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.setcheck_1_method",
- "id": "reference/js/blockly.renderedconnection_class.setcheck_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.setoffsetinblock_1_method",
- "id": "reference/js/blockly.renderedconnection_class.setoffsetinblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.showcontextmenu_1_method",
- "id": "reference/js/blockly.renderedconnection_class.showcontextmenu_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.sourceblock__property",
- "id": "reference/js/blockly.renderedconnection_class.sourceblock__property"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.starttrackingall_1_method",
- "id": "reference/js/blockly.renderedconnection_class.starttrackingall_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.targetblock_1_method",
- "id": "reference/js/blockly.renderedconnection_class.targetblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.targetconnection_property",
- "id": "reference/js/blockly.renderedconnection_class.targetconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.renderedconnection_class.unhighlight_1_method",
- "id": "reference/js/blockly.renderedconnection_class.unhighlight_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Scrollbar",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.scrollbar_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.scrollbar_class._constructor__1_constructor",
- "id": "reference/js/blockly.scrollbar_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.dispose_1_method",
- "id": "reference/js/blockly.scrollbar_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.isvisible_1_method",
- "id": "reference/js/blockly.scrollbar_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.lengthattribute__property",
- "id": "reference/js/blockly.scrollbar_class.lengthattribute__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.onmousedownbarwrapper__property",
- "id": "reference/js/blockly.scrollbar_class.onmousedownbarwrapper__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.onmousedownhandlewrapper__property",
- "id": "reference/js/blockly.scrollbar_class.onmousedownhandlewrapper__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.onmousemovewrapper__property",
- "id": "reference/js/blockly.scrollbar_class.onmousemovewrapper__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.onmouseupwrapper__property",
- "id": "reference/js/blockly.scrollbar_class.onmouseupwrapper__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.positionattribute__property",
- "id": "reference/js/blockly.scrollbar_class.positionattribute__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.resize_1_method",
- "id": "reference/js/blockly.scrollbar_class.resize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.resizecontenthorizontal_1_method",
- "id": "reference/js/blockly.scrollbar_class.resizecontenthorizontal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.resizecontentvertical_1_method",
- "id": "reference/js/blockly.scrollbar_class.resizecontentvertical_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.resizeviewhorizontal_1_method",
- "id": "reference/js/blockly.scrollbar_class.resizeviewhorizontal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.resizeviewvertical_1_method",
- "id": "reference/js/blockly.scrollbar_class.resizeviewvertical_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.scrollbarthickness_property",
- "id": "reference/js/blockly.scrollbar_class.scrollbarthickness_property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.set_1_method",
- "id": "reference/js/blockly.scrollbar_class.set_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.setcontainervisible_1_method",
- "id": "reference/js/blockly.scrollbar_class.setcontainervisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.sethandleposition_1_method",
- "id": "reference/js/blockly.scrollbar_class.sethandleposition_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.setorigin_1_method",
- "id": "reference/js/blockly.scrollbar_class.setorigin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.setvisible_1_method",
- "id": "reference/js/blockly.scrollbar_class.setvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbar_class.updatedisplay__1_method",
- "id": "reference/js/blockly.scrollbar_class.updatedisplay__1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ScrollbarPair",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.scrollbarpair_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class._constructor__1_constructor",
- "id": "reference/js/blockly.scrollbarpair_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.canscrollhorizontally_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.canscrollhorizontally_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.canscrollvertically_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.canscrollvertically_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.corner__property",
- "id": "reference/js/blockly.scrollbarpair_class.corner__property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.dispose_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.hscroll_property",
- "id": "reference/js/blockly.scrollbarpair_class.hscroll_property"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.isvisible_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.resize_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.resize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.resizecontent_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.resizecontent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.resizeview_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.resizeview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.set_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.set_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.setcontainervisible_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.setcontainervisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.setvisible_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.setvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.setx_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.setx_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.sety_1_method",
- "id": "reference/js/blockly.scrollbarpair_class.sety_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.scrollbarpair_class.vscroll_property",
- "id": "reference/js/blockly.scrollbarpair_class.vscroll_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "SeparatorFlyoutInflater",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.separatorflyoutinflater_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.separatorflyoutinflater_class.disposeitem_1_method",
- "id": "reference/js/blockly.separatorflyoutinflater_class.disposeitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.separatorflyoutinflater_class.gapforitem_1_method",
- "id": "reference/js/blockly.separatorflyoutinflater_class.gapforitem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.separatorflyoutinflater_class.gettype_1_method",
- "id": "reference/js/blockly.separatorflyoutinflater_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.separatorflyoutinflater_class.load_1_method",
- "id": "reference/js/blockly.separatorflyoutinflater_class.load_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ShortcutRegistry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.shortcutregistry_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.addkeymapping_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.addkeymapping_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.createserializedkey_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.createserializedkey_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.getkeycodesbyshortcutname_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.getkeycodesbyshortcutname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.getkeymap_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.getkeymap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.getregistry_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.getregistry_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.getshortcutnamesbykeycode_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.getshortcutnamesbykeycode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.onkeydown_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.onkeydown_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.register_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.register_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.registry_property",
- "id": "reference/js/blockly.shortcutregistry_class.registry_property"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.removeallkeymappings_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.removeallkeymappings_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.removekeymapping_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.removekeymapping_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.reset_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.reset_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.setkeymap_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.setkeymap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_class.unregister_1_method",
- "id": "reference/js/blockly.shortcutregistry_class.unregister_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Theme",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.theme_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.theme_class._constructor__1_constructor",
- "id": "reference/js/blockly.theme_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.definetheme_1_method",
- "id": "reference/js/blockly.theme_class.definetheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.getcomponentstyle_1_method",
- "id": "reference/js/blockly.theme_class.getcomponentstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.name_property",
- "id": "reference/js/blockly.theme_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.setblockstyle_1_method",
- "id": "reference/js/blockly.theme_class.setblockstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.setcategorystyle_1_method",
- "id": "reference/js/blockly.theme_class.setcategorystyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.setcomponentstyle_1_method",
- "id": "reference/js/blockly.theme_class.setcomponentstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.setfontstyle_1_method",
- "id": "reference/js/blockly.theme_class.setfontstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.theme_class.setstarthats_1_method",
- "id": "reference/js/blockly.theme_class.setstarthats_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "doc",
- "label": "ThemeManager",
- "id": "reference/js/blockly.thememanager_class"
- },
- {
- "type": "category",
- "label": "Toast",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toast_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toast_class.createdom_1_method",
- "id": "reference/js/blockly.toast_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toast_class.hide_1_method",
- "id": "reference/js/blockly.toast_class.hide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toast_class.show_1_method",
- "id": "reference/js/blockly.toast_class.show_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Toolbox",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolbox_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolbox_class._constructor__1_constructor",
- "id": "reference/js/blockly.toolbox_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.addtoolboxitem__1_method",
- "id": "reference/js/blockly.toolbox_class.addtoolboxitem__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.attachevents__1_method",
- "id": "reference/js/blockly.toolbox_class.attachevents__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.autohide_1_method",
- "id": "reference/js/blockly.toolbox_class.autohide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.boundevents__property",
- "id": "reference/js/blockly.toolbox_class.boundevents__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.canbefocused_1_method",
- "id": "reference/js/blockly.toolbox_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.clearselection_1_method",
- "id": "reference/js/blockly.toolbox_class.clearselection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.contents_property",
- "id": "reference/js/blockly.toolbox_class.contents_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.contentsdiv__property",
- "id": "reference/js/blockly.toolbox_class.contentsdiv__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.createcontainer__1_method",
- "id": "reference/js/blockly.toolbox_class.createcontainer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.createcontentscontainer__1_method",
- "id": "reference/js/blockly.toolbox_class.createcontentscontainer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.createdom__1_method",
- "id": "reference/js/blockly.toolbox_class.createdom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.createflyout__1_method",
- "id": "reference/js/blockly.toolbox_class.createflyout__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.deselectitem__1_method",
- "id": "reference/js/blockly.toolbox_class.deselectitem__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.dispose_1_method",
- "id": "reference/js/blockly.toolbox_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getclientrect_1_method",
- "id": "reference/js/blockly.toolbox_class.getclientrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getflyout_1_method",
- "id": "reference/js/blockly.toolbox_class.getflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.toolbox_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.toolbox_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getheight_1_method",
- "id": "reference/js/blockly.toolbox_class.getheight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getnestedtrees_1_method",
- "id": "reference/js/blockly.toolbox_class.getnestedtrees_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getpreviouslyselecteditem_1_method",
- "id": "reference/js/blockly.toolbox_class.getpreviouslyselecteditem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getrestoredfocusablenode_1_method",
- "id": "reference/js/blockly.toolbox_class.getrestoredfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getrootfocusablenode_1_method",
- "id": "reference/js/blockly.toolbox_class.getrootfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getselecteditem_1_method",
- "id": "reference/js/blockly.toolbox_class.getselecteditem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.gettoolboxitembyid_1_method",
- "id": "reference/js/blockly.toolbox_class.gettoolboxitembyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.gettoolboxitems_1_method",
- "id": "reference/js/blockly.toolbox_class.gettoolboxitems_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getwidth_1_method",
- "id": "reference/js/blockly.toolbox_class.getwidth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.getworkspace_1_method",
- "id": "reference/js/blockly.toolbox_class.getworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.height__property",
- "id": "reference/js/blockly.toolbox_class.height__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.htmldiv_property",
- "id": "reference/js/blockly.toolbox_class.htmldiv_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.id_property",
- "id": "reference/js/blockly.toolbox_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.init_1_method",
- "id": "reference/js/blockly.toolbox_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ishorizontal_1_method",
- "id": "reference/js/blockly.toolbox_class.ishorizontal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.isvisible__property",
- "id": "reference/js/blockly.toolbox_class.isvisible__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.lookupfocusablenode_1_method",
- "id": "reference/js/blockly.toolbox_class.lookupfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.onclick__1_method",
- "id": "reference/js/blockly.toolbox_class.onclick__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ondragenter_1_method",
- "id": "reference/js/blockly.toolbox_class.ondragenter_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ondragexit_1_method",
- "id": "reference/js/blockly.toolbox_class.ondragexit_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ondrop_1_method",
- "id": "reference/js/blockly.toolbox_class.ondrop_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.onkeydown__1_method",
- "id": "reference/js/blockly.toolbox_class.onkeydown__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.onnodeblur_1_method",
- "id": "reference/js/blockly.toolbox_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.onnodefocus_1_method",
- "id": "reference/js/blockly.toolbox_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.onshortcut_1_method",
- "id": "reference/js/blockly.toolbox_class.onshortcut_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ontreeblur_1_method",
- "id": "reference/js/blockly.toolbox_class.ontreeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.ontreefocus_1_method",
- "id": "reference/js/blockly.toolbox_class.ontreefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.position_1_method",
- "id": "reference/js/blockly.toolbox_class.position_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.previouslyselecteditem__property",
- "id": "reference/js/blockly.toolbox_class.previouslyselecteditem__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.refreshselection_1_method",
- "id": "reference/js/blockly.toolbox_class.refreshselection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.rendercontents__1_method",
- "id": "reference/js/blockly.toolbox_class.rendercontents__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.rtl_property",
- "id": "reference/js/blockly.toolbox_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.selecteditem__property",
- "id": "reference/js/blockly.toolbox_class.selecteditem__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.selectitem__1_method",
- "id": "reference/js/blockly.toolbox_class.selectitem__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.selectitembyposition_1_method",
- "id": "reference/js/blockly.toolbox_class.selectitembyposition_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.setselecteditem_1_method",
- "id": "reference/js/blockly.toolbox_class.setselecteditem_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.setvisible_1_method",
- "id": "reference/js/blockly.toolbox_class.setvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.shoulddeselectitem__1_method",
- "id": "reference/js/blockly.toolbox_class.shoulddeselectitem__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.shouldselectitem__1_method",
- "id": "reference/js/blockly.toolbox_class.shouldselectitem__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.toolboxdef__property",
- "id": "reference/js/blockly.toolbox_class.toolboxdef__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.toolboxposition_property",
- "id": "reference/js/blockly.toolbox_class.toolboxposition_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.updatecursordeletestyle__1_method",
- "id": "reference/js/blockly.toolbox_class.updatecursordeletestyle__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.updateflyout__1_method",
- "id": "reference/js/blockly.toolbox_class.updateflyout__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.updatewoulddelete__1_method",
- "id": "reference/js/blockly.toolbox_class.updatewoulddelete__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.width__property",
- "id": "reference/js/blockly.toolbox_class.width__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.workspace__property",
- "id": "reference/js/blockly.toolbox_class.workspace__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolbox_class.woulddelete_1_method",
- "id": "reference/js/blockly.toolbox_class.woulddelete_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ToolboxCategory",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolboxcategory_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class._constructor__1_constructor",
- "id": "reference/js/blockly.toolboxcategory_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.addcolourborder__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.addcolourborder__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.allancestorsexpanded__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.allancestorsexpanded__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.borderwidth_property",
- "id": "reference/js/blockly.toolboxcategory_class.borderwidth_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.closeicon__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.closeicon__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.colour__property",
- "id": "reference/js/blockly.toolboxcategory_class.colour__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createcontainer__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createcontainer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createdom__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createdom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createicondom__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createicondom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createlabeldom__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createlabeldom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createrowcontainer__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createrowcontainer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.createrowcontentscontainer__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.createrowcontentscontainer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.cssconfig__property",
- "id": "reference/js/blockly.toolboxcategory_class.cssconfig__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.defaultbackgroundcolour_property",
- "id": "reference/js/blockly.toolboxcategory_class.defaultbackgroundcolour_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.dispose_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.flyoutitems__property",
- "id": "reference/js/blockly.toolboxcategory_class.flyoutitems__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getclicktarget_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getclicktarget_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getcolour__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getcolour__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getcontents_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getcontents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getdiv_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getdiv_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getname_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.getparent_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.hide_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.hide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.htmldiv__property",
- "id": "reference/js/blockly.toolboxcategory_class.htmldiv__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.icondom__property",
- "id": "reference/js/blockly.toolboxcategory_class.icondom__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.init_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.isdisabled__property",
- "id": "reference/js/blockly.toolboxcategory_class.isdisabled__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.ishidden__property",
- "id": "reference/js/blockly.toolboxcategory_class.ishidden__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.isselectable_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.isselectable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.isvisible_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.labeldom__property",
- "id": "reference/js/blockly.toolboxcategory_class.labeldom__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.makedefaultcssconfig__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.makedefaultcssconfig__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.name__property",
- "id": "reference/js/blockly.toolboxcategory_class.name__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.nestedpadding_property",
- "id": "reference/js/blockly.toolboxcategory_class.nestedpadding_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.onclick_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.openicon__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.openicon__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.parsecategorydef__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.parsecategorydef__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.parsecontents__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.parsecontents__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.refreshtheme_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.refreshtheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.registrationname_property",
- "id": "reference/js/blockly.toolboxcategory_class.registrationname_property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.rowcontents__property",
- "id": "reference/js/blockly.toolboxcategory_class.rowcontents__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.rowdiv__property",
- "id": "reference/js/blockly.toolboxcategory_class.rowdiv__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.setdisabled_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.setdisabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.setselected_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.setselected_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.setvisible__1_method",
- "id": "reference/js/blockly.toolboxcategory_class.setvisible__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.show_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.show_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.toolboxitemdef__property",
- "id": "reference/js/blockly.toolboxcategory_class.toolboxitemdef__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_class.updateflyoutcontents_1_method",
- "id": "reference/js/blockly.toolboxcategory_class.updateflyoutcontents_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ToolboxItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolboxitem_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class._constructor__1_constructor",
- "id": "reference/js/blockly.toolboxitem_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.canbefocused_1_method",
- "id": "reference/js/blockly.toolboxitem_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.dispose_1_method",
- "id": "reference/js/blockly.toolboxitem_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getclicktarget_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getclicktarget_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getdiv_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getdiv_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getid_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.getparent_1_method",
- "id": "reference/js/blockly.toolboxitem_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.id__property",
- "id": "reference/js/blockly.toolboxitem_class.id__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.init_1_method",
- "id": "reference/js/blockly.toolboxitem_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.iscollapsible_1_method",
- "id": "reference/js/blockly.toolboxitem_class.iscollapsible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.isselectable_1_method",
- "id": "reference/js/blockly.toolboxitem_class.isselectable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.level__property",
- "id": "reference/js/blockly.toolboxitem_class.level__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.onnodeblur_1_method",
- "id": "reference/js/blockly.toolboxitem_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.onnodefocus_1_method",
- "id": "reference/js/blockly.toolboxitem_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.parent__property",
- "id": "reference/js/blockly.toolboxitem_class.parent__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.parenttoolbox__property",
- "id": "reference/js/blockly.toolboxitem_class.parenttoolbox__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.setvisible__1_method",
- "id": "reference/js/blockly.toolboxitem_class.setvisible__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.toolboxitemdef__property",
- "id": "reference/js/blockly.toolboxitem_class.toolboxitemdef__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxitem_class.workspace__property",
- "id": "reference/js/blockly.toolboxitem_class.workspace__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ToolboxSeparator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolboxseparator_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class._constructor__1_constructor",
- "id": "reference/js/blockly.toolboxseparator_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.createdom__1_method",
- "id": "reference/js/blockly.toolboxseparator_class.createdom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.cssconfig__property",
- "id": "reference/js/blockly.toolboxseparator_class.cssconfig__property"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.dispose_1_method",
- "id": "reference/js/blockly.toolboxseparator_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.getdiv_1_method",
- "id": "reference/js/blockly.toolboxseparator_class.getdiv_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.init_1_method",
- "id": "reference/js/blockly.toolboxseparator_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_class.registrationname_property",
- "id": "reference/js/blockly.toolboxseparator_class.registrationname_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Trashcan",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.trashcan_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.trashcan_class._constructor__1_constructor",
- "id": "reference/js/blockly.trashcan_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.autohide_1_method",
- "id": "reference/js/blockly.trashcan_class.autohide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.click_1_method",
- "id": "reference/js/blockly.trashcan_class.click_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.closeflyout_1_method",
- "id": "reference/js/blockly.trashcan_class.closeflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.closelid_1_method",
- "id": "reference/js/blockly.trashcan_class.closelid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.contentsisopen_1_method",
- "id": "reference/js/blockly.trashcan_class.contentsisopen_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.createdom_1_method",
- "id": "reference/js/blockly.trashcan_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.dispose_1_method",
- "id": "reference/js/blockly.trashcan_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.emptycontents_1_method",
- "id": "reference/js/blockly.trashcan_class.emptycontents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.trashcan_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.getclientrect_1_method",
- "id": "reference/js/blockly.trashcan_class.getclientrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.id_property",
- "id": "reference/js/blockly.trashcan_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.init_1_method",
- "id": "reference/js/blockly.trashcan_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.islidopen_property",
- "id": "reference/js/blockly.trashcan_class.islidopen_property"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.ondragexit_1_method",
- "id": "reference/js/blockly.trashcan_class.ondragexit_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.ondragover_1_method",
- "id": "reference/js/blockly.trashcan_class.ondragover_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.ondrop_1_method",
- "id": "reference/js/blockly.trashcan_class.ondrop_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.openflyout_1_method",
- "id": "reference/js/blockly.trashcan_class.openflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.trashcan_class.position_1_method",
- "id": "reference/js/blockly.trashcan_class.position_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "doc",
- "label": "UnattachedFieldError",
- "id": "reference/js/blockly.unattachedfielderror_class"
- },
- {
- "type": "category",
- "label": "VariableMap",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.variablemap_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.variablemap_class._constructor__1_constructor",
- "id": "reference/js/blockly.variablemap_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.addvariable_1_method",
- "id": "reference/js/blockly.variablemap_class.addvariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.changevariabletype_1_method",
- "id": "reference/js/blockly.variablemap_class.changevariabletype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.clear_1_method",
- "id": "reference/js/blockly.variablemap_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.createvariable_1_method",
- "id": "reference/js/blockly.variablemap_class.createvariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.deletevariable_1_method",
- "id": "reference/js/blockly.variablemap_class.deletevariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.deletevariablebyid_1_method",
- "id": "reference/js/blockly.variablemap_class.deletevariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getallvariablenames_1_method",
- "id": "reference/js/blockly.variablemap_class.getallvariablenames_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getallvariables_1_method",
- "id": "reference/js/blockly.variablemap_class.getallvariables_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.gettypes_1_method",
- "id": "reference/js/blockly.variablemap_class.gettypes_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getvariable_1_method",
- "id": "reference/js/blockly.variablemap_class.getvariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getvariablebyid_1_method",
- "id": "reference/js/blockly.variablemap_class.getvariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getvariablesoftype_1_method",
- "id": "reference/js/blockly.variablemap_class.getvariablesoftype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.getvariableusesbyid_1_method",
- "id": "reference/js/blockly.variablemap_class.getvariableusesbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.potentialmap_property",
- "id": "reference/js/blockly.variablemap_class.potentialmap_property"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.renamevariable_1_method",
- "id": "reference/js/blockly.variablemap_class.renamevariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.renamevariablebyid_1_method",
- "id": "reference/js/blockly.variablemap_class.renamevariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemap_class.workspace_property",
- "id": "reference/js/blockly.variablemap_class.workspace_property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "VariableModel",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.variablemodel_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.variablemodel_class._constructor__1_constructor",
- "id": "reference/js/blockly.variablemodel_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.getid_1_method",
- "id": "reference/js/blockly.variablemodel_class.getid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.getname_1_method",
- "id": "reference/js/blockly.variablemodel_class.getname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.gettype_1_method",
- "id": "reference/js/blockly.variablemodel_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.getworkspace_1_method",
- "id": "reference/js/blockly.variablemodel_class.getworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.load_1_method",
- "id": "reference/js/blockly.variablemodel_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.save_1_method",
- "id": "reference/js/blockly.variablemodel_class.save_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.setname_1_method",
- "id": "reference/js/blockly.variablemodel_class.setname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.variablemodel_class.settype_1_method",
- "id": "reference/js/blockly.variablemodel_class.settype_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "VerticalFlyout",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.verticalflyout_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class._constructor__1_constructor",
- "id": "reference/js/blockly.verticalflyout_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.getclientrect_1_method",
- "id": "reference/js/blockly.verticalflyout_class.getclientrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.getx_1_method",
- "id": "reference/js/blockly.verticalflyout_class.getx_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.gety_1_method",
- "id": "reference/js/blockly.verticalflyout_class.gety_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.isdragtowardworkspace_1_method",
- "id": "reference/js/blockly.verticalflyout_class.isdragtowardworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.layout__1_method",
- "id": "reference/js/blockly.verticalflyout_class.layout__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.position_1_method",
- "id": "reference/js/blockly.verticalflyout_class.position_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.reflowinternal__1_method",
- "id": "reference/js/blockly.verticalflyout_class.reflowinternal__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.registryname_property",
- "id": "reference/js/blockly.verticalflyout_class.registryname_property"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.scrolltostart_1_method",
- "id": "reference/js/blockly.verticalflyout_class.scrolltostart_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.setmetrics__1_method",
- "id": "reference/js/blockly.verticalflyout_class.setmetrics__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.verticalflyout_class.wheel__1_method",
- "id": "reference/js/blockly.verticalflyout_class.wheel__1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Workspace",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.workspace_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.workspace_class._constructor__1_constructor",
- "id": "reference/js/blockly.workspace_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.addchangelistener_1_method",
- "id": "reference/js/blockly.workspace_class.addchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.addtopblock_1_method",
- "id": "reference/js/blockly.workspace_class.addtopblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.addtypedblock_1_method",
- "id": "reference/js/blockly.workspace_class.addtypedblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.allinputsfilled_1_method",
- "id": "reference/js/blockly.workspace_class.allinputsfilled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.clear_1_method",
- "id": "reference/js/blockly.workspace_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.clearundo_1_method",
- "id": "reference/js/blockly.workspace_class.clearundo_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.connectionchecker_property",
- "id": "reference/js/blockly.workspace_class.connectionchecker_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.connectiondblist_property",
- "id": "reference/js/blockly.workspace_class.connectiondblist_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.createvariable_1_method",
- "id": "reference/js/blockly.workspace_class.createvariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.deletevariablebyid_1_method",
- "id": "reference/js/blockly.workspace_class.deletevariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.dispose_1_method",
- "id": "reference/js/blockly.workspace_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.firechangelistener_1_method",
- "id": "reference/js/blockly.workspace_class.firechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getall_1_method",
- "id": "reference/js/blockly.workspace_class.getall_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getallblocks_1_method",
- "id": "reference/js/blockly.workspace_class.getallblocks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getallvariablenames_1_method",
- "id": "reference/js/blockly.workspace_class.getallvariablenames_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getallvariables_1_method",
- "id": "reference/js/blockly.workspace_class.getallvariables_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getblockbyid_1_method",
- "id": "reference/js/blockly.workspace_class.getblockbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getblocksbytype_1_method",
- "id": "reference/js/blockly.workspace_class.getblocksbytype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getbyid_1_method",
- "id": "reference/js/blockly.workspace_class.getbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getcommentbyid_1_method",
- "id": "reference/js/blockly.workspace_class.getcommentbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getpotentialvariablemap_1_method",
- "id": "reference/js/blockly.workspace_class.getpotentialvariablemap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getproceduremap_1_method",
- "id": "reference/js/blockly.workspace_class.getproceduremap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getrootworkspace_1_method",
- "id": "reference/js/blockly.workspace_class.getrootworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.gettopblocks_1_method",
- "id": "reference/js/blockly.workspace_class.gettopblocks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariable_1_method",
- "id": "reference/js/blockly.workspace_class.getvariable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariablebyid_1_method",
- "id": "reference/js/blockly.workspace_class.getvariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariablemap_1_method",
- "id": "reference/js/blockly.workspace_class.getvariablemap_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariablemapclass_1_method",
- "id": "reference/js/blockly.workspace_class.getvariablemapclass_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariablesoftype_1_method",
- "id": "reference/js/blockly.workspace_class.getvariablesoftype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getvariableusesbyid_1_method",
- "id": "reference/js/blockly.workspace_class.getvariableusesbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.getwidth_1_method",
- "id": "reference/js/blockly.workspace_class.getwidth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.hasblocklimits_1_method",
- "id": "reference/js/blockly.workspace_class.hasblocklimits_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.horizontallayout_property",
- "id": "reference/js/blockly.workspace_class.horizontallayout_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.id_property",
- "id": "reference/js/blockly.workspace_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.iscapacityavailable_1_method",
- "id": "reference/js/blockly.workspace_class.iscapacityavailable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.isflyout_property",
- "id": "reference/js/blockly.workspace_class.isflyout_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.ismutator_property",
- "id": "reference/js/blockly.workspace_class.ismutator_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.isreadonly_1_method",
- "id": "reference/js/blockly.workspace_class.isreadonly_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.max_undo_property",
- "id": "reference/js/blockly.workspace_class.max_undo_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.newblock_1_method",
- "id": "reference/js/blockly.workspace_class.newblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.newcomment_1_method",
- "id": "reference/js/blockly.workspace_class.newcomment_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.options_property",
- "id": "reference/js/blockly.workspace_class.options_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.redostack__property",
- "id": "reference/js/blockly.workspace_class.redostack__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.remainingcapacity_1_method",
- "id": "reference/js/blockly.workspace_class.remainingcapacity_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.remainingcapacityoftype_1_method",
- "id": "reference/js/blockly.workspace_class.remainingcapacityoftype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.removechangelistener_1_method",
- "id": "reference/js/blockly.workspace_class.removechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.removetopblock_1_method",
- "id": "reference/js/blockly.workspace_class.removetopblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.removetypedblock_1_method",
- "id": "reference/js/blockly.workspace_class.removetypedblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.renamevariablebyid_1_method",
- "id": "reference/js/blockly.workspace_class.renamevariablebyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.rendered_property",
- "id": "reference/js/blockly.workspace_class.rendered_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.rtl_property",
- "id": "reference/js/blockly.workspace_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.scan_angle_property",
- "id": "reference/js/blockly.workspace_class.scan_angle_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.setisreadonly_1_method",
- "id": "reference/js/blockly.workspace_class.setisreadonly_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.sortbyorigin_1_method",
- "id": "reference/js/blockly.workspace_class.sortbyorigin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.toolboxposition_property",
- "id": "reference/js/blockly.workspace_class.toolboxposition_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.undo_1_method",
- "id": "reference/js/blockly.workspace_class.undo_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspace_class.undostack__property",
- "id": "reference/js/blockly.workspace_class.undostack__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "WorkspaceAudio",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.workspaceaudio_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.workspaceaudio_class._constructor__1_constructor",
- "id": "reference/js/blockly.workspaceaudio_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.workspaceaudio_class.getmuted_1_method",
- "id": "reference/js/blockly.workspaceaudio_class.getmuted_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspaceaudio_class.load_1_method",
- "id": "reference/js/blockly.workspaceaudio_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspaceaudio_class.play_1_method",
- "id": "reference/js/blockly.workspaceaudio_class.play_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspaceaudio_class.setmuted_1_method",
- "id": "reference/js/blockly.workspaceaudio_class.setmuted_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "WorkspaceDragger",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.workspacedragger_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.workspacedragger_class._constructor__1_constructor",
- "id": "reference/js/blockly.workspacedragger_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.workspacedragger_class.startscrollxy__property",
- "id": "reference/js/blockly.workspacedragger_class.startscrollxy__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "WorkspaceNavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.workspacenavigationpolicy_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.getfirstchild_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.getfirstchild_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.getnextsibling_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.getnextsibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.getparent_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.getparent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.getprevioussibling_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.getprevioussibling_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.isapplicable_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.isapplicable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacenavigationpolicy_class.isnavigable_1_method",
- "id": "reference/js/blockly.workspacenavigationpolicy_class.isnavigable_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "WorkspaceSvg",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.workspacesvg_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class._constructor__1_constructor",
- "id": "reference/js/blockly.workspacesvg_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.addclass_1_method",
- "id": "reference/js/blockly.workspacesvg_class.addclass_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.addtopblock_1_method",
- "id": "reference/js/blockly.workspacesvg_class.addtopblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.addtopboundedelement_1_method",
- "id": "reference/js/blockly.workspacesvg_class.addtopboundedelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.addtopcomment_1_method",
- "id": "reference/js/blockly.workspacesvg_class.addtopcomment_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.canbefocused_1_method",
- "id": "reference/js/blockly.workspacesvg_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.centeronblock_1_method",
- "id": "reference/js/blockly.workspacesvg_class.centeronblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.cleanup_1_method",
- "id": "reference/js/blockly.workspacesvg_class.cleanup_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.clear_1_method",
- "id": "reference/js/blockly.workspacesvg_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.configurecontextmenu_property",
- "id": "reference/js/blockly.workspacesvg_class.configurecontextmenu_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.copyoptionsforflyout_1_method",
- "id": "reference/js/blockly.workspacesvg_class.copyoptionsforflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.createdom_1_method",
- "id": "reference/js/blockly.workspacesvg_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.dispose_1_method",
- "id": "reference/js/blockly.workspacesvg_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getabsolutescale_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getabsolutescale_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getallblocks_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getallblocks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getaudiomanager_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getaudiomanager_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getblockbyid_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getblockbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getblocksboundingbox_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getblocksboundingbox_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getbubblecanvas_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getbubblecanvas_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getbuttoncallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getbuttoncallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getcanvas_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getcanvas_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getcommentbyid_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getcommentbyid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getcomponentmanager_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getcomponentmanager_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getcursor_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getcursor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getdragtarget_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getdragtarget_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getflyout_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getgrid_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getgrid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getinversescreenctm_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getinversescreenctm_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getmarkermanager_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getmarkermanager_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getmetricsmanager_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getmetricsmanager_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getnavigator_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getnavigator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getnestedtrees_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getnestedtrees_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getparentsvg_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getparentsvg_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getrenderer_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getrenderer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getrestoredfocusablenode_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getrestoredfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getrootfocusablenode_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getrootfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getrootworkspace_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getrootworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getscale_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getscale_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getsvggroup_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getsvggroup_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettheme_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettoolbox_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettoolbox_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettoolboxcategorycallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettoolboxcategorycallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettopblocks_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettopblocks_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettopboundedelements_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettopboundedelements_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.gettopcomments_1_method",
- "id": "reference/js/blockly.workspacesvg_class.gettopcomments_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.getwidth_1_method",
- "id": "reference/js/blockly.workspacesvg_class.getwidth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.hidechaff_1_method",
- "id": "reference/js/blockly.workspacesvg_class.hidechaff_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.hidecomponents_1_method",
- "id": "reference/js/blockly.workspacesvg_class.hidecomponents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.highlightblock_1_method",
- "id": "reference/js/blockly.workspacesvg_class.highlightblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.isdraggable_1_method",
- "id": "reference/js/blockly.workspacesvg_class.isdraggable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.isdragging_1_method",
- "id": "reference/js/blockly.workspacesvg_class.isdragging_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.ismovable_1_method",
- "id": "reference/js/blockly.workspacesvg_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.ismovablehorizontally_1_method",
- "id": "reference/js/blockly.workspacesvg_class.ismovablehorizontally_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.ismovablevertically_1_method",
- "id": "reference/js/blockly.workspacesvg_class.ismovablevertically_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.isvisible_1_method",
- "id": "reference/js/blockly.workspacesvg_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.keyboardaccessibilitymode_property",
- "id": "reference/js/blockly.workspacesvg_class.keyboardaccessibilitymode_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.keyboardmoveinprogress_property",
- "id": "reference/js/blockly.workspacesvg_class.keyboardmoveinprogress_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.lookupfocusablenode_1_method",
- "id": "reference/js/blockly.workspacesvg_class.lookupfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.markfocused_1_method",
- "id": "reference/js/blockly.workspacesvg_class.markfocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.movedrag_1_method",
- "id": "reference/js/blockly.workspacesvg_class.movedrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.newblock_1_method",
- "id": "reference/js/blockly.workspacesvg_class.newblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.newcomment_1_method",
- "id": "reference/js/blockly.workspacesvg_class.newcomment_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.onnodeblur_1_method",
- "id": "reference/js/blockly.workspacesvg_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.onnodefocus_1_method",
- "id": "reference/js/blockly.workspacesvg_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.ontreeblur_1_method",
- "id": "reference/js/blockly.workspacesvg_class.ontreeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.ontreefocus_1_method",
- "id": "reference/js/blockly.workspacesvg_class.ontreefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.recorddragtargets_1_method",
- "id": "reference/js/blockly.workspacesvg_class.recorddragtargets_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.refreshtheme_1_method",
- "id": "reference/js/blockly.workspacesvg_class.refreshtheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.registerbuttoncallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.registerbuttoncallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.registertoolboxcategorycallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.registertoolboxcategorycallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removebuttoncallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removebuttoncallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removeclass_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removeclass_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removetoolboxcategorycallback_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removetoolboxcategorycallback_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removetopblock_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removetopblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removetopboundedelement_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removetopboundedelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.removetopcomment_1_method",
- "id": "reference/js/blockly.workspacesvg_class.removetopcomment_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.render_1_method",
- "id": "reference/js/blockly.workspacesvg_class.render_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.rendered_property",
- "id": "reference/js/blockly.workspacesvg_class.rendered_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.resize_1_method",
- "id": "reference/js/blockly.workspacesvg_class.resize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scale_property",
- "id": "reference/js/blockly.workspacesvg_class.scale_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scroll_1_method",
- "id": "reference/js/blockly.workspacesvg_class.scroll_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scrollbar_property",
- "id": "reference/js/blockly.workspacesvg_class.scrollbar_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scrollcenter_1_method",
- "id": "reference/js/blockly.workspacesvg_class.scrollcenter_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scrollx_property",
- "id": "reference/js/blockly.workspacesvg_class.scrollx_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.scrolly_property",
- "id": "reference/js/blockly.workspacesvg_class.scrolly_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setisreadonly_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setisreadonly_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setnavigator_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setnavigator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setresizehandlerwrapper_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setresizehandlerwrapper_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setresizesenabled_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setresizesenabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setscale_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setscale_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.settheme_1_method",
- "id": "reference/js/blockly.workspacesvg_class.settheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.setvisible_1_method",
- "id": "reference/js/blockly.workspacesvg_class.setvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.startdrag_1_method",
- "id": "reference/js/blockly.workspacesvg_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.startscrollx_property",
- "id": "reference/js/blockly.workspacesvg_class.startscrollx_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.startscrolly_property",
- "id": "reference/js/blockly.workspacesvg_class.startscrolly_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.svgbackground__property",
- "id": "reference/js/blockly.workspacesvg_class.svgbackground__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.svgblockcanvas__property",
- "id": "reference/js/blockly.workspacesvg_class.svgblockcanvas__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.svgbubblecanvas__property",
- "id": "reference/js/blockly.workspacesvg_class.svgbubblecanvas__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.svggroup__property",
- "id": "reference/js/blockly.workspacesvg_class.svggroup__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.thememanager__property",
- "id": "reference/js/blockly.workspacesvg_class.thememanager__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.translate_1_method",
- "id": "reference/js/blockly.workspacesvg_class.translate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.trashcan_property",
- "id": "reference/js/blockly.workspacesvg_class.trashcan_property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.updateinversescreenctm_1_method",
- "id": "reference/js/blockly.workspacesvg_class.updateinversescreenctm_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.updatetoolbox_1_method",
- "id": "reference/js/blockly.workspacesvg_class.updatetoolbox_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.zoom_1_method",
- "id": "reference/js/blockly.workspacesvg_class.zoom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.zoomcenter_1_method",
- "id": "reference/js/blockly.workspacesvg_class.zoomcenter_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.zoomcontrols__property",
- "id": "reference/js/blockly.workspacesvg_class.zoomcontrols__property"
- },
- {
- "type": "doc",
- "label": "blockly.workspacesvg_class.zoomtofit_1_method",
- "id": "reference/js/blockly.workspacesvg_class.zoomtofit_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "ZoomControls",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.zoomcontrols_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class._constructor__1_constructor",
- "id": "reference/js/blockly.zoomcontrols_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.createdom_1_method",
- "id": "reference/js/blockly.zoomcontrols_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.dispose_1_method",
- "id": "reference/js/blockly.zoomcontrols_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.zoomcontrols_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.id_property",
- "id": "reference/js/blockly.zoomcontrols_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.init_1_method",
- "id": "reference/js/blockly.zoomcontrols_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zoomcontrols_class.position_1_method",
- "id": "reference/js/blockly.zoomcontrols_class.position_1_method"
- },
- ],
- "className": "hide-from-sidebar"
- },
- ]
- },
- {
- "type": "category",
- "label": "Abstract Classes",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "category",
- "label": "Field",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.field_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.field_class._constructor__1_constructor",
- "id": "reference/js/blockly.field_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.applycolour_1_method",
- "id": "reference/js/blockly.field_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.bindevents__1_method",
- "id": "reference/js/blockly.field_class.bindevents__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.borderrect__property",
- "id": "reference/js/blockly.field_class.borderrect__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.canbefocused_1_method",
- "id": "reference/js/blockly.field_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.clicktarget__property",
- "id": "reference/js/blockly.field_class.clicktarget__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.configure__1_method",
- "id": "reference/js/blockly.field_class.configure__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.constants__property",
- "id": "reference/js/blockly.field_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.createborderrect__1_method",
- "id": "reference/js/blockly.field_class.createborderrect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.createtextelement__1_method",
- "id": "reference/js/blockly.field_class.createtextelement__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.default_value_property",
- "id": "reference/js/blockly.field_class.default_value_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.dispose_1_method",
- "id": "reference/js/blockly.field_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.doclassvalidation__1_method",
- "id": "reference/js/blockly.field_class.doclassvalidation__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.doclassvalidation__2_method",
- "id": "reference/js/blockly.field_class.doclassvalidation__2_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.dovalueinvalid__1_method",
- "id": "reference/js/blockly.field_class.dovalueinvalid__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.dovalueupdate__1_method",
- "id": "reference/js/blockly.field_class.dovalueupdate__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.editable_property",
- "id": "reference/js/blockly.field_class.editable_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.enabled__property",
- "id": "reference/js/blockly.field_class.enabled__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.fieldgroup__property",
- "id": "reference/js/blockly.field_class.fieldgroup__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.forcererender_1_method",
- "id": "reference/js/blockly.field_class.forcererender_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.fromjson_1_method",
- "id": "reference/js/blockly.field_class.fromjson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.fromxml_1_method",
- "id": "reference/js/blockly.field_class.fromxml_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getabsolutexy__1_method",
- "id": "reference/js/blockly.field_class.getabsolutexy__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getborderrect_1_method",
- "id": "reference/js/blockly.field_class.getborderrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getclicktarget__1_method",
- "id": "reference/js/blockly.field_class.getclicktarget__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getconstants_1_method",
- "id": "reference/js/blockly.field_class.getconstants_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getdisplaytext__1_method",
- "id": "reference/js/blockly.field_class.getdisplaytext__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getfliprtl_1_method",
- "id": "reference/js/blockly.field_class.getfliprtl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.field_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.field_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getsize_1_method",
- "id": "reference/js/blockly.field_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getsourceblock_1_method",
- "id": "reference/js/blockly.field_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getsvgroot_1_method",
- "id": "reference/js/blockly.field_class.getsvgroot_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.gettext__1_method",
- "id": "reference/js/blockly.field_class.gettext__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.gettext_1_method",
- "id": "reference/js/blockly.field_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.gettextcontent_1_method",
- "id": "reference/js/blockly.field_class.gettextcontent_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.gettextelement_1_method",
- "id": "reference/js/blockly.field_class.gettextelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.gettooltip_1_method",
- "id": "reference/js/blockly.field_class.gettooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getvalidator_1_method",
- "id": "reference/js/blockly.field_class.getvalidator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.getvalue_1_method",
- "id": "reference/js/blockly.field_class.getvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.initmodel_1_method",
- "id": "reference/js/blockly.field_class.initmodel_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.initview_1_method",
- "id": "reference/js/blockly.field_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isclickable_1_method",
- "id": "reference/js/blockly.field_class.isclickable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isclickableinflyout_1_method",
- "id": "reference/js/blockly.field_class.isclickableinflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.iscurrentlyeditable_1_method",
- "id": "reference/js/blockly.field_class.iscurrentlyeditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isdirty__property",
- "id": "reference/js/blockly.field_class.isdirty__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isenabled_1_method",
- "id": "reference/js/blockly.field_class.isenabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isserializable_1_method",
- "id": "reference/js/blockly.field_class.isserializable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.isvisible_1_method",
- "id": "reference/js/blockly.field_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.loadlegacystate_1_method",
- "id": "reference/js/blockly.field_class.loadlegacystate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.loadstate_1_method",
- "id": "reference/js/blockly.field_class.loadstate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.maxdisplaylength_property",
- "id": "reference/js/blockly.field_class.maxdisplaylength_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.name_property",
- "id": "reference/js/blockly.field_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.nbsp_property",
- "id": "reference/js/blockly.field_class.nbsp_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.onlocationchange_1_method",
- "id": "reference/js/blockly.field_class.onlocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.onmousedown__1_method",
- "id": "reference/js/blockly.field_class.onmousedown__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.onnodeblur_1_method",
- "id": "reference/js/blockly.field_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.onnodefocus_1_method",
- "id": "reference/js/blockly.field_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.onshortcut_1_method",
- "id": "reference/js/blockly.field_class.onshortcut_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.positionborderrect__1_method",
- "id": "reference/js/blockly.field_class.positionborderrect__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.positiontextelement__1_method",
- "id": "reference/js/blockly.field_class.positiontextelement__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.referencesvariables_1_method",
- "id": "reference/js/blockly.field_class.referencesvariables_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.refreshvariablename_1_method",
- "id": "reference/js/blockly.field_class.refreshvariablename_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.render__1_method",
- "id": "reference/js/blockly.field_class.render__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.repositionforwindowresize_1_method",
- "id": "reference/js/blockly.field_class.repositionforwindowresize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.savelegacystate_1_method",
- "id": "reference/js/blockly.field_class.savelegacystate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.savestate_1_method",
- "id": "reference/js/blockly.field_class.savestate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.serializable_property",
- "id": "reference/js/blockly.field_class.serializable_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.setenabled_1_method",
- "id": "reference/js/blockly.field_class.setenabled_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.setsourceblock_1_method",
- "id": "reference/js/blockly.field_class.setsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.settooltip_1_method",
- "id": "reference/js/blockly.field_class.settooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.setvalidator_1_method",
- "id": "reference/js/blockly.field_class.setvalidator_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.setvalue_1_method",
- "id": "reference/js/blockly.field_class.setvalue_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.showeditor__1_method",
- "id": "reference/js/blockly.field_class.showeditor__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.size__property",
- "id": "reference/js/blockly.field_class.size__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.skip_setup_property",
- "id": "reference/js/blockly.field_class.skip_setup_property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.sourceblock__property",
- "id": "reference/js/blockly.field_class.sourceblock__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.textcontent__property",
- "id": "reference/js/blockly.field_class.textcontent__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.textelement__property",
- "id": "reference/js/blockly.field_class.textelement__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.toxml_1_method",
- "id": "reference/js/blockly.field_class.toxml_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.updateeditable_1_method",
- "id": "reference/js/blockly.field_class.updateeditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.updatesize__1_method",
- "id": "reference/js/blockly.field_class.updatesize__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.validator__property",
- "id": "reference/js/blockly.field_class.validator__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.value__property",
- "id": "reference/js/blockly.field_class.value__property"
- },
- {
- "type": "doc",
- "label": "blockly.field_class.visible__property",
- "id": "reference/js/blockly.field_class.visible__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- {
- "type": "category",
- "label": "Flyout",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.flyout_class"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.flyout_class._constructor__1_constructor",
- "id": "reference/js/blockly.flyout_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.autoclose_property",
- "id": "reference/js/blockly.flyout_class.autoclose_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.autohide_1_method",
- "id": "reference/js/blockly.flyout_class.autohide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.canbefocused_1_method",
- "id": "reference/js/blockly.flyout_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.contents_property",
- "id": "reference/js/blockly.flyout_class.contents_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.corner_radius_property",
- "id": "reference/js/blockly.flyout_class.corner_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.createdom_1_method",
- "id": "reference/js/blockly.flyout_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.dispose_1_method",
- "id": "reference/js/blockly.flyout_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.draganglerange__property",
- "id": "reference/js/blockly.flyout_class.draganglerange__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.gap_x_property",
- "id": "reference/js/blockly.flyout_class.gap_x_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.gap_y_property",
- "id": "reference/js/blockly.flyout_class.gap_y_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getcontents_1_method",
- "id": "reference/js/blockly.flyout_class.getcontents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getflyoutscale_1_method",
- "id": "reference/js/blockly.flyout_class.getflyoutscale_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.flyout_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.flyout_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getheight_1_method",
- "id": "reference/js/blockly.flyout_class.getheight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getinflaterfortype_1_method",
- "id": "reference/js/blockly.flyout_class.getinflaterfortype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getnestedtrees_1_method",
- "id": "reference/js/blockly.flyout_class.getnestedtrees_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getrestoredfocusablenode_1_method",
- "id": "reference/js/blockly.flyout_class.getrestoredfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getrootfocusablenode_1_method",
- "id": "reference/js/blockly.flyout_class.getrootfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.gettargetworkspace_1_method",
- "id": "reference/js/blockly.flyout_class.gettargetworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getwidth_1_method",
- "id": "reference/js/blockly.flyout_class.getwidth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getworkspace_1_method",
- "id": "reference/js/blockly.flyout_class.getworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.getx_1_method",
- "id": "reference/js/blockly.flyout_class.getx_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.gety_1_method",
- "id": "reference/js/blockly.flyout_class.gety_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.height__property",
- "id": "reference/js/blockly.flyout_class.height__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.hide_1_method",
- "id": "reference/js/blockly.flyout_class.hide_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.inflaters_property",
- "id": "reference/js/blockly.flyout_class.inflaters_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.init_1_method",
- "id": "reference/js/blockly.flyout_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.isdragtowardworkspace_1_method",
- "id": "reference/js/blockly.flyout_class.isdragtowardworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.isvisible_1_method",
- "id": "reference/js/blockly.flyout_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.layout__1_method",
- "id": "reference/js/blockly.flyout_class.layout__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.lookupfocusablenode_1_method",
- "id": "reference/js/blockly.flyout_class.lookupfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.margin_property",
- "id": "reference/js/blockly.flyout_class.margin_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.normalizeseparators_1_method",
- "id": "reference/js/blockly.flyout_class.normalizeseparators_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.onnodeblur_1_method",
- "id": "reference/js/blockly.flyout_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.onnodefocus_1_method",
- "id": "reference/js/blockly.flyout_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.ontreeblur_1_method",
- "id": "reference/js/blockly.flyout_class.ontreeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.ontreefocus_1_method",
- "id": "reference/js/blockly.flyout_class.ontreefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.position_1_method",
- "id": "reference/js/blockly.flyout_class.position_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.positionat__1_method",
- "id": "reference/js/blockly.flyout_class.positionat__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.reflow_1_method",
- "id": "reference/js/blockly.flyout_class.reflow_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.reflowinternal__1_method",
- "id": "reference/js/blockly.flyout_class.reflowinternal__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.rtl_property",
- "id": "reference/js/blockly.flyout_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.scrollbar_margin_property",
- "id": "reference/js/blockly.flyout_class.scrollbar_margin_property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.scrolltostart_1_method",
- "id": "reference/js/blockly.flyout_class.scrolltostart_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.serializeblock_1_method",
- "id": "reference/js/blockly.flyout_class.serializeblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.setautoclose_1_method",
- "id": "reference/js/blockly.flyout_class.setautoclose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.setcontainervisible_1_method",
- "id": "reference/js/blockly.flyout_class.setcontainervisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.setcontents_1_method",
- "id": "reference/js/blockly.flyout_class.setcontents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.setmetrics__1_method",
- "id": "reference/js/blockly.flyout_class.setmetrics__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.setvisible_1_method",
- "id": "reference/js/blockly.flyout_class.setvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.show_1_method",
- "id": "reference/js/blockly.flyout_class.show_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.svgbackground__property",
- "id": "reference/js/blockly.flyout_class.svgbackground__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.svggroup__property",
- "id": "reference/js/blockly.flyout_class.svggroup__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.tabwidth__property",
- "id": "reference/js/blockly.flyout_class.tabwidth__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.toolboxposition__property",
- "id": "reference/js/blockly.flyout_class.toolboxposition__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.wheel__1_method",
- "id": "reference/js/blockly.flyout_class.wheel__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.width__property",
- "id": "reference/js/blockly.flyout_class.width__property"
- },
- {
- "type": "doc",
- "label": "blockly.flyout_class.workspace__property",
- "id": "reference/js/blockly.flyout_class.workspace__property"
- },
- ],
- "className": "hide-from-sidebar"
- },
- ]
- },
- {
- "type": "category",
- "label": "Enumerations",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "doc",
- "label": "ConnectionType",
- "id": "reference/js/blockly.connectiontype_enum"
- },
- ]
- },
- {
- "type": "category",
- "label": "Functions",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "doc",
- "label": "getFocusManager()",
- "id": "reference/js/blockly.getfocusmanager_1_function"
- },
- {
- "type": "doc",
- "label": "hasBubble(obj)",
- "id": "reference/js/blockly.hasbubble_1_function"
- },
- {
- "type": "doc",
- "label": "hideChaff(opt_onlyClosePopups)",
- "id": "reference/js/blockly.hidechaff_1_function"
- },
- {
- "type": "doc",
- "label": "inject(container, opt_options)",
- "id": "reference/js/blockly.inject_1_function"
- },
- {
- "type": "doc",
- "label": "isCopyable(obj)",
- "id": "reference/js/blockly.iscopyable_1_function"
- },
- {
- "type": "doc",
- "label": "isDeletable(obj)",
- "id": "reference/js/blockly.isdeletable_1_function"
- },
- {
- "type": "doc",
- "label": "isDraggable(obj)",
- "id": "reference/js/blockly.isdraggable_1_function"
- },
- {
- "type": "doc",
- "label": "isIcon(obj)",
- "id": "reference/js/blockly.isicon_1_function"
- },
- {
- "type": "doc",
- "label": "isPaster(obj)",
- "id": "reference/js/blockly.ispaster_1_function"
- },
- {
- "type": "doc",
- "label": "isRenderedElement(obj)",
- "id": "reference/js/blockly.isrenderedelement_1_function"
- },
- {
- "type": "doc",
- "label": "isSelectable(obj)",
- "id": "reference/js/blockly.isselectable_1_function"
- },
- {
- "type": "doc",
- "label": "isSerializable(obj)",
- "id": "reference/js/blockly.isserializable_1_function"
- },
- {
- "type": "doc",
- "label": "isVariableBackedParameterModel(param)",
- "id": "reference/js/blockly.isvariablebackedparametermodel_1_function"
- },
- {
- "type": "doc",
- "label": "navigateBlock(current, delta)",
- "id": "reference/js/blockly.navigateblock_1_function"
- },
- {
- "type": "doc",
- "label": "navigateStacks(current, delta)",
- "id": "reference/js/blockly.navigatestacks_1_function"
- },
- {
- "type": "doc",
- "label": "setLocale(locale)",
- "id": "reference/js/blockly.setlocale_1_function"
- },
- ]
- },
- {
- "type": "category",
- "label": "Interfaces",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "category",
- "label": "BlocklyOptions",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.blocklyoptions_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.collapse_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.collapse_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.comments_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.comments_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.css_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.css_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.disable_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.disable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.grid_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.grid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.horizontallayout_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.horizontallayout_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.maxblocks_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.maxblocks_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.maxinstances_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.maxinstances_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.maxtrashcancontents_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.maxtrashcancontents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.media_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.media_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.modalinputs_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.modalinputs_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.move_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.move_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.onebasedindex_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.onebasedindex_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.parentworkspace_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.parentworkspace_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.plugins_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.plugins_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.readonly_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.readonly_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.renderer_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.renderer_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.rendereroverrides_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.rendereroverrides_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.rtl_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.rtl_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.scrollbars_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.scrollbars_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.sounds_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.sounds_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.theme_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.theme_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.toolbox_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.toolbox_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.toolboxposition_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.toolboxposition_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.trashcan_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.trashcan_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blocklyoptions_interface.zoom_propertysignature",
- "id": "reference/js/blockly.blocklyoptions_interface.zoom_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldCheckboxConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldcheckboxconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldcheckboxconfig_interface.checkcharacter_propertysignature",
- "id": "reference/js/blockly.fieldcheckboxconfig_interface.checkcharacter_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldCheckboxFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldcheckboxfromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldcheckboxfromjsonconfig_interface.checked_propertysignature",
- "id": "reference/js/blockly.fieldcheckboxfromjsonconfig_interface.checked_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldconfig_interface.tooltip_propertysignature",
- "id": "reference/js/blockly.fieldconfig_interface.tooltip_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldDropdownFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fielddropdownfromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fielddropdownfromjsonconfig_interface.options_propertysignature",
- "id": "reference/js/blockly.fielddropdownfromjsonconfig_interface.options_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldImageConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldimageconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldimageconfig_interface.alt_propertysignature",
- "id": "reference/js/blockly.fieldimageconfig_interface.alt_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimageconfig_interface.fliprtl_propertysignature",
- "id": "reference/js/blockly.fieldimageconfig_interface.fliprtl_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldImageFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldimagefromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldimagefromjsonconfig_interface.height_propertysignature",
- "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimagefromjsonconfig_interface.src_propertysignature",
- "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.src_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldimagefromjsonconfig_interface.width_propertysignature",
- "id": "reference/js/blockly.fieldimagefromjsonconfig_interface.width_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldLabelConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldlabelconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldlabelconfig_interface.class_propertysignature",
- "id": "reference/js/blockly.fieldlabelconfig_interface.class_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldLabelFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldlabelfromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldlabelfromjsonconfig_interface.text_propertysignature",
- "id": "reference/js/blockly.fieldlabelfromjsonconfig_interface.text_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldNumberConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldnumberconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldnumberconfig_interface.max_propertysignature",
- "id": "reference/js/blockly.fieldnumberconfig_interface.max_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumberconfig_interface.min_propertysignature",
- "id": "reference/js/blockly.fieldnumberconfig_interface.min_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldnumberconfig_interface.precision_propertysignature",
- "id": "reference/js/blockly.fieldnumberconfig_interface.precision_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldNumberFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldnumberfromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldnumberfromjsonconfig_interface.value_propertysignature",
- "id": "reference/js/blockly.fieldnumberfromjsonconfig_interface.value_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldTextInputFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldtextinputfromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldtextinputfromjsonconfig_interface.text_propertysignature",
- "id": "reference/js/blockly.fieldtextinputfromjsonconfig_interface.text_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldVariableConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldvariableconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldvariableconfig_interface.defaulttype_propertysignature",
- "id": "reference/js/blockly.fieldvariableconfig_interface.defaulttype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldvariableconfig_interface.variabletypes_propertysignature",
- "id": "reference/js/blockly.fieldvariableconfig_interface.variabletypes_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "FieldVariableFromJsonConfig",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldvariablefromjsonconfig_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldvariablefromjsonconfig_interface.variable_propertysignature",
- "id": "reference/js/blockly.fieldvariablefromjsonconfig_interface.variable_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IAutoHideable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iautohideable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iautohideable_interface.autohide_1_methodsignature",
- "id": "reference/js/blockly.iautohideable_interface.autohide_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IBoundedElement",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iboundedelement_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iboundedelement_interface.getboundingrectangle_1_methodsignature",
- "id": "reference/js/blockly.iboundedelement_interface.getboundingrectangle_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iboundedelement_interface.moveby_1_methodsignature",
- "id": "reference/js/blockly.iboundedelement_interface.moveby_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IBubble",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ibubble_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.getrelativetosurfacexy_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.getrelativetosurfacexy_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.getsvgroot_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.getsvgroot_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.moveduringdrag_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.moveduringdrag_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.moveto_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.moveto_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.setdeletestyle_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.setdeletestyle_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ibubble_interface.setdragging_1_methodsignature",
- "id": "reference/js/blockly.ibubble_interface.setdragging_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ICollapsibleToolboxItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icollapsibletoolboxitem_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icollapsibletoolboxitem_interface.getchildtoolboxitems_1_methodsignature",
- "id": "reference/js/blockly.icollapsibletoolboxitem_interface.getchildtoolboxitems_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.icollapsibletoolboxitem_interface.isexpanded_1_methodsignature",
- "id": "reference/js/blockly.icollapsibletoolboxitem_interface.isexpanded_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.icollapsibletoolboxitem_interface.toggleexpanded_1_methodsignature",
- "id": "reference/js/blockly.icollapsibletoolboxitem_interface.toggleexpanded_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IComponent",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icomponent_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icomponent_interface.id_propertysignature",
- "id": "reference/js/blockly.icomponent_interface.id_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IConnectionChecker",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iconnectionchecker_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.canconnect_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.canconnect_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.canconnectwithreason_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.canconnectwithreason_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.dodragchecks_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.dodragchecks_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.dosafetychecks_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.dosafetychecks_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.dotypechecks_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.dotypechecks_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionchecker_interface.geterrormessage_1_methodsignature",
- "id": "reference/js/blockly.iconnectionchecker_interface.geterrormessage_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IConnectionPreviewer",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iconnectionpreviewer_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iconnectionpreviewer_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.iconnectionpreviewer_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionpreviewer_interface.hidepreview_1_methodsignature",
- "id": "reference/js/blockly.iconnectionpreviewer_interface.hidepreview_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionpreviewer_interface.previewconnection_1_methodsignature",
- "id": "reference/js/blockly.iconnectionpreviewer_interface.previewconnection_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iconnectionpreviewer_interface.previewreplacement_1_methodsignature",
- "id": "reference/js/blockly.iconnectionpreviewer_interface.previewreplacement_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IContextMenu",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icontextmenu_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icontextmenu_interface.showcontextmenu_1_methodsignature",
- "id": "reference/js/blockly.icontextmenu_interface.showcontextmenu_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ICopyable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icopyable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icopyable_interface.iscopyable_1_methodsignature",
- "id": "reference/js/blockly.icopyable_interface.iscopyable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.icopyable_interface.tocopydata_1_methodsignature",
- "id": "reference/js/blockly.icopyable_interface.tocopydata_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDeletable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ideletable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ideletable_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.ideletable_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ideletable_interface.isdeletable_1_methodsignature",
- "id": "reference/js/blockly.ideletable_interface.isdeletable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ideletable_interface.setdeletestyle_1_methodsignature",
- "id": "reference/js/blockly.ideletable_interface.setdeletestyle_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDeleteArea",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ideletearea_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ideletearea_interface.woulddelete_1_methodsignature",
- "id": "reference/js/blockly.ideletearea_interface.woulddelete_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDraggable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.idraggable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.idraggable_interface.getrelativetosurfacexy_1_methodsignature",
- "id": "reference/js/blockly.idraggable_interface.getrelativetosurfacexy_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDragger",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.idragger_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.idragger_interface.ondrag_1_methodsignature",
- "id": "reference/js/blockly.idragger_interface.ondrag_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragger_interface.ondragend_1_methodsignature",
- "id": "reference/js/blockly.idragger_interface.ondragend_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragger_interface.ondragstart_1_methodsignature",
- "id": "reference/js/blockly.idragger_interface.ondragstart_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDragStrategy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.idragstrategy_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.idragstrategy_interface.drag_1_methodsignature",
- "id": "reference/js/blockly.idragstrategy_interface.drag_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragstrategy_interface.enddrag_1_methodsignature",
- "id": "reference/js/blockly.idragstrategy_interface.enddrag_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragstrategy_interface.ismovable_1_methodsignature",
- "id": "reference/js/blockly.idragstrategy_interface.ismovable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragstrategy_interface.revertdrag_1_methodsignature",
- "id": "reference/js/blockly.idragstrategy_interface.revertdrag_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragstrategy_interface.startdrag_1_methodsignature",
- "id": "reference/js/blockly.idragstrategy_interface.startdrag_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IDragTarget",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.idragtarget_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.getclientrect_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.getclientrect_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.ondragenter_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.ondragenter_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.ondragexit_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.ondragexit_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.ondragover_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.ondragover_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.ondrop_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.ondrop_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.idragtarget_interface.shouldpreventmove_1_methodsignature",
- "id": "reference/js/blockly.idragtarget_interface.shouldpreventmove_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IFlyout",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iflyout_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.autoclose_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.autoclose_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.corner_radius_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.corner_radius_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.createblock_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.createblock_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.createdom_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.createdom_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.getcontents_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.getcontents_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.getheight_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.getheight_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.getwidth_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.getwidth_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.getworkspace_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.getworkspace_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.getx_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.getx_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.gety_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.gety_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.hide_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.hide_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.horizontallayout_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.horizontallayout_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.init_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.init_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.isblockcreatable_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.isblockcreatable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.isdragtowardworkspace_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.isdragtowardworkspace_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.isscrollable_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.isscrollable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.isvisible_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.isvisible_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.margin_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.margin_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.position_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.position_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.reflow_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.reflow_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.rtl_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.rtl_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.scrolltostart_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.scrolltostart_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.setcontainervisible_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.setcontainervisible_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.setvisible_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.setvisible_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.show_1_methodsignature",
- "id": "reference/js/blockly.iflyout_interface.show_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyout_interface.targetworkspace_propertysignature",
- "id": "reference/js/blockly.iflyout_interface.targetworkspace_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IFlyoutInflater",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iflyoutinflater_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iflyoutinflater_interface.disposeitem_1_methodsignature",
- "id": "reference/js/blockly.iflyoutinflater_interface.disposeitem_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyoutinflater_interface.gapforitem_1_methodsignature",
- "id": "reference/js/blockly.iflyoutinflater_interface.gapforitem_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyoutinflater_interface.gettype_1_methodsignature",
- "id": "reference/js/blockly.iflyoutinflater_interface.gettype_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iflyoutinflater_interface.load_1_methodsignature",
- "id": "reference/js/blockly.iflyoutinflater_interface.load_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IFocusableNode",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ifocusablenode_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ifocusablenode_interface.canbefocused_1_methodsignature",
- "id": "reference/js/blockly.ifocusablenode_interface.canbefocused_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusablenode_interface.getfocusableelement_1_methodsignature",
- "id": "reference/js/blockly.ifocusablenode_interface.getfocusableelement_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusablenode_interface.getfocusabletree_1_methodsignature",
- "id": "reference/js/blockly.ifocusablenode_interface.getfocusabletree_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusablenode_interface.onnodeblur_1_methodsignature",
- "id": "reference/js/blockly.ifocusablenode_interface.onnodeblur_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusablenode_interface.onnodefocus_1_methodsignature",
- "id": "reference/js/blockly.ifocusablenode_interface.onnodefocus_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IFocusableTree",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ifocusabletree_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.getnestedtrees_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.getnestedtrees_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.getrestoredfocusablenode_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.getrestoredfocusablenode_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.getrootfocusablenode_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.getrootfocusablenode_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.lookupfocusablenode_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.lookupfocusablenode_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.ontreeblur_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.ontreeblur_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ifocusabletree_interface.ontreefocus_1_methodsignature",
- "id": "reference/js/blockly.ifocusabletree_interface.ontreefocus_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IHasBubble",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ihasbubble_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature",
- "id": "reference/js/blockly.ihasbubble_interface.bubbleisvisible_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ihasbubble_interface.getbubble_1_methodsignature",
- "id": "reference/js/blockly.ihasbubble_interface.getbubble_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ihasbubble_interface.setbubblevisible_1_methodsignature",
- "id": "reference/js/blockly.ihasbubble_interface.setbubblevisible_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IIcon",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iicon_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iicon_interface.applycolour_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.applycolour_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.getsize_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.getsize_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.gettype_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.gettype_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.getweight_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.getweight_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.hideforinsertionmarker_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.hideforinsertionmarker_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.initview_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.initview_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.isclickableinflyout_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.isclickableinflyout_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.isshownwhencollapsed_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.isshownwhencollapsed_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.onclick_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.onclick_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.onlocationchange_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.onlocationchange_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.setoffsetinblock_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.setoffsetinblock_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.updatecollapsed_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.updatecollapsed_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iicon_interface.updateeditable_1_methodsignature",
- "id": "reference/js/blockly.iicon_interface.updateeditable_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IKeyboardAccessible",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ikeyboardaccessible_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ikeyboardaccessible_interface.onshortcut_1_methodsignature",
- "id": "reference/js/blockly.ikeyboardaccessible_interface.onshortcut_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ImageProperties",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.imageproperties_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.imageproperties_interface.alt_propertysignature",
- "id": "reference/js/blockly.imageproperties_interface.alt_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.imageproperties_interface.height_propertysignature",
- "id": "reference/js/blockly.imageproperties_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.imageproperties_interface.src_propertysignature",
- "id": "reference/js/blockly.imageproperties_interface.src_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.imageproperties_interface.width_propertysignature",
- "id": "reference/js/blockly.imageproperties_interface.width_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IMetricsManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.imetricsmanager_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getabsolutemetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getabsolutemetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getcontentmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getcontentmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getflyoutmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getflyoutmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getscrollmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getscrollmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getsvgmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getsvgmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.gettoolboxmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.gettoolboxmetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getuimetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getuimetrics_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.imetricsmanager_interface.getviewmetrics_1_methodsignature",
- "id": "reference/js/blockly.imetricsmanager_interface.getviewmetrics_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IMovable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.imovable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.imovable_interface.ismovable_1_methodsignature",
- "id": "reference/js/blockly.imovable_interface.ismovable_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "INavigationPolicy",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.inavigationpolicy_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.getfirstchild_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.getfirstchild_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.getnextsibling_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.getnextsibling_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.getparent_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.getparent_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.getprevioussibling_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.getprevioussibling_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.isapplicable_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.isapplicable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.inavigationpolicy_interface.isnavigable_1_methodsignature",
- "id": "reference/js/blockly.inavigationpolicy_interface.isnavigable_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IPaster",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ipaster_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ipaster_interface.paste_1_methodsignature",
- "id": "reference/js/blockly.ipaster_interface.paste_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IPositionable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ipositionable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ipositionable_interface.getboundingrectangle_1_methodsignature",
- "id": "reference/js/blockly.ipositionable_interface.getboundingrectangle_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ipositionable_interface.position_1_methodsignature",
- "id": "reference/js/blockly.ipositionable_interface.position_1_methodsignature"
- },
- ],
- },
- {
- "type": "doc",
- "label": "IRegistrable",
- "id": "reference/js/blockly.iregistrable_interface"
- },
- {
- "type": "category",
- "label": "IRenderedElement",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.irenderedelement_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.irenderedelement_interface.getsvgroot_1_methodsignature",
- "id": "reference/js/blockly.irenderedelement_interface.getsvgroot_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ISelectable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iselectable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iselectable_interface.id_propertysignature",
- "id": "reference/js/blockly.iselectable_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectable_interface.select_1_methodsignature",
- "id": "reference/js/blockly.iselectable_interface.select_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectable_interface.unselect_1_methodsignature",
- "id": "reference/js/blockly.iselectable_interface.unselect_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectable_interface.workspace_propertysignature",
- "id": "reference/js/blockly.iselectable_interface.workspace_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ISelectableToolboxItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iselectabletoolboxitem_interface.getclicktarget_1_methodsignature",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface.getclicktarget_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectabletoolboxitem_interface.getcontents_1_methodsignature",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface.getcontents_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectabletoolboxitem_interface.getname_1_methodsignature",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface.getname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectabletoolboxitem_interface.onclick_1_methodsignature",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface.onclick_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iselectabletoolboxitem_interface.setselected_1_methodsignature",
- "id": "reference/js/blockly.iselectabletoolboxitem_interface.setselected_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ISerializable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.iserializable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.iserializable_interface.loadstate_1_methodsignature",
- "id": "reference/js/blockly.iserializable_interface.loadstate_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.iserializable_interface.savestate_1_methodsignature",
- "id": "reference/js/blockly.iserializable_interface.savestate_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IStyleable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.istyleable_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.istyleable_interface.addstyle_1_methodsignature",
- "id": "reference/js/blockly.istyleable_interface.addstyle_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.istyleable_interface.removestyle_1_methodsignature",
- "id": "reference/js/blockly.istyleable_interface.removestyle_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IToolbox",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.itoolbox_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.clearselection_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.clearselection_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.getflyout_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.getflyout_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.getheight_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.getheight_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.getselecteditem_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.getselecteditem_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.getwidth_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.getwidth_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.getworkspace_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.getworkspace_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.handletoolboxitemresize_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.handletoolboxitemresize_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.init_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.init_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.ishorizontal_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.ishorizontal_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.position_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.position_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.refreshselection_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.refreshselection_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.refreshtheme_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.refreshtheme_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.render_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.render_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.selectitembyposition_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.selectitembyposition_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.setselecteditem_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.setselecteditem_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolbox_interface.setvisible_1_methodsignature",
- "id": "reference/js/blockly.itoolbox_interface.setvisible_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IToolboxItem",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.itoolboxitem_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.dispose_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.dispose_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.getclicktarget_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.getclicktarget_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.getdiv_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.getdiv_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.getid_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.getid_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.getparent_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.getparent_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.init_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.init_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.iscollapsible_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.iscollapsible_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.isselectable_1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.isselectable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.itoolboxitem_interface.setvisible__1_methodsignature",
- "id": "reference/js/blockly.itoolboxitem_interface.setvisible__1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IVariableBackedParameterModel",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ivariablebackedparametermodel_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ivariablebackedparametermodel_interface.getvariablemodel_1_methodsignature",
- "id": "reference/js/blockly.ivariablebackedparametermodel_interface.getvariablemodel_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IVariableMap",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ivariablemap_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.addvariable_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.addvariable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.changevariabletype_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.changevariabletype_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.clear_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.clear_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.createvariable_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.createvariable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.deletevariable_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.deletevariable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.getallvariables_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.getallvariables_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.gettypes_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.gettypes_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.getvariable_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.getvariable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.getvariablebyid_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.getvariablebyid_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.getvariablesoftype_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.getvariablesoftype_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemap_interface.renamevariable_1_methodsignature",
- "id": "reference/js/blockly.ivariablemap_interface.renamevariable_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IVariableModel",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ivariablemodel_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.getid_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.getid_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.getname_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.getname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.gettype_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.gettype_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.getworkspace_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.getworkspace_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.save_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.save_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.setname_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.setname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablemodel_interface.settype_1_methodsignature",
- "id": "reference/js/blockly.ivariablemodel_interface.settype_1_methodsignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "IVariableState",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.ivariablestate_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.ivariablestate_interface.id_propertysignature",
- "id": "reference/js/blockly.ivariablestate_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablestate_interface.name_propertysignature",
- "id": "reference/js/blockly.ivariablestate_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.ivariablestate_interface.type_propertysignature",
- "id": "reference/js/blockly.ivariablestate_interface.type_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ToastOptions",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toastoptions_interface"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toastoptions_interface.assertiveness_propertysignature",
- "id": "reference/js/blockly.toastoptions_interface.assertiveness_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toastoptions_interface.duration_propertysignature",
- "id": "reference/js/blockly.toastoptions_interface.duration_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toastoptions_interface.id_propertysignature",
- "id": "reference/js/blockly.toastoptions_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toastoptions_interface.message_propertysignature",
- "id": "reference/js/blockly.toastoptions_interface.message_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toastoptions_interface.oncepersession_propertysignature",
- "id": "reference/js/blockly.toastoptions_interface.oncepersession_propertysignature"
- },
- ],
- },
- ]
- },
- {
- "type": "category",
- "label": "Namespaces",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "category",
- "label": "Block",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.block_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.block_namespace.commentmodel_interface",
- "id": "reference/js/blockly.block_namespace.commentmodel_interface"
- },
- {
- "type": "doc",
- "label": "blockly.block_namespace.commentmodel_interface.pinned_propertysignature",
- "id": "reference/js/blockly.block_namespace.commentmodel_interface.pinned_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.block_namespace.commentmodel_interface.size_propertysignature",
- "id": "reference/js/blockly.block_namespace.commentmodel_interface.size_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.block_namespace.commentmodel_interface.text_propertysignature",
- "id": "reference/js/blockly.block_namespace.commentmodel_interface.text_propertysignature"
- },
- ],
- },
- {
- "type": "doc",
- "label": "blockAnimations",
- "id": "reference/js/blockly.blockanimations_namespace"
- },
- {
- "type": "category",
- "label": "blockRendering",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.blockrendering_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.field_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.hat_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.hat_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.icon_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.icon_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inlineinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputrow_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.inputrow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inrowspacer_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.inrowspacer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggededge_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.jaggededge_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.nextconnection_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.nextconnection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outputconnection_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.previousconnection_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.previousconnection_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.roundcorner_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.roundcorner_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.row_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.squarecorner_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.squarecorner_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.statementinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.statementinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class._constructor__1_constructor",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.baseshape_typealias",
- "id": "reference/js/blockly.blockrendering_namespace.baseshape_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.baseline_property",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.baseline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.connection_property",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.descenderheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.descenderheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.hasleftsquarecorner_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasleftsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.hasnextconnection_property",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasnextconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.hasrightsquarecorner_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.hasrightsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.bottomrow_class.startswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.bottomrow_class.startswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class.connectionmodel_property",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class.connectionmodel_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class.highlighted_property",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class.highlighted_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class.isdynamicshape_property",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class.isdynamicshape_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.connection_class.shape_property",
- "id": "reference/js/blockly.blockrendering_namespace.connection_class.shape_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.add_start_hats_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.add_start_hats_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.between_statement_padding_y_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.between_statement_padding_y_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.blockstyles_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.blockstyles_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.bottom_row_after_statement_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.bottom_row_after_statement_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.bottom_row_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.bottom_row_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.corner_radius_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.corner_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.createblockstyle__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.createblockstyle__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.createdom_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_block_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_block_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_colour_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_stack_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_stack_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_stroke_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_stroke_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.cursor_ws_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.cursor_ws_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.debugfilterid_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.debugfilterid_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.disabledpatternid_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.disabledpatternid_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.dispose_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.dummy_input_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dummy_input_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.dummy_input_shadow_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.dummy_input_shadow_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.embossfilterid_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.embossfilterid_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.empty_block_spacer_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_block_spacer_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_inline_input_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.empty_statement_input_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.empty_statement_input_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.external_value_input_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.external_value_input_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_colour_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_radius_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_x_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_x_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_border_rect_y_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_border_rect_y_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_checkbox_x_offset_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_checkbox_x_offset_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_default_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_default_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_default_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_default_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_colour_full_block_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_colour_full_block_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_border_rect_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_border_rect_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_coloured_div_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_coloured_div_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_datauri_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_datauri_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_size_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_dropdown_svg_arrow_size_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_center_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_center_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_baseline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontfamily_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontfamily_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontsize_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontsize_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_fontweight_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_fontweight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_text_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_text_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.field_textinput_box_shadow_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.field_textinput_box_shadow_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.full_block_fields_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.full_block_fields_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.generatesecondarycolour__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.generatesecondarycolour__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.generatetertiarycolour__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.generatetertiarycolour__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.getblockstyle_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getblockstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.getblockstyleforcolour_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getblockstyleforcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.getcss__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.getcss__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.init_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.injectcss__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.injectcss__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.insertion_marker_colour_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.insertion_marker_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.insertion_marker_opacity_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.insertion_marker_opacity_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.inside_corners_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.inside_corners_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.jagged_teeth_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.large_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.large_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makeinsidecorners_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makeinsidecorners_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makejaggedteeth_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makejaggedteeth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makenotch_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makeoutsidecorners_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makeoutsidecorners_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makepuzzletab_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.makestarthat_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.makestarthat_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.marker_colour_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.marker_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.medium_large_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.medium_large_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.medium_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.medium_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.min_block_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.min_block_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.min_block_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.min_block_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.no_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.no_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.notch_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.notch_offset_left_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_offset_left_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.notch_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.notch_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.notch_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.outside_corners_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.outside_corners_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.puzzle_tab_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.randomidentifier_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.randomidentifier_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.setcomponentconstants__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setcomponentconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.setdynamicproperties__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setdynamicproperties__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.setfontconstants__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.setfontconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.settheme_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.settheme_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.shapefor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.shapes_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.shapes_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.small_padding_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.small_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.spacer_default_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.spacer_default_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.start_hat_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_hat_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.start_point_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.start_point_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.statement_bottom_spacer_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_bottom_spacer_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.statement_input_notch_offset_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_input_notch_offset_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.statement_input_padding_left_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.statement_input_padding_left_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.tab_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.tab_offset_from_top_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_offset_from_top_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.tab_vertical_overlap_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_vertical_overlap_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.tab_width_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tab_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.tall_input_field_offset_y_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.tall_input_field_offset_y_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.top_row_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.top_row_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.top_row_precedes_statement_min_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.top_row_precedes_statement_min_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.validatedblockstyle__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.validatedblockstyle__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.constantprovider_class.ws_cursor_height_property",
- "id": "reference/js/blockly.blockrendering_namespace.constantprovider_class.ws_cursor_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.block__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.block__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.constants__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.draw_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.draw_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawbottom__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawbottom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawconnectionhighlightpath_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawconnectionhighlightpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawinlineinput__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawinlineinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawinternals__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawinternals__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawjaggededge__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawjaggededge__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawleft__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawleft__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawoutline__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawoutline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawrightsiderow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawrightsiderow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawstatementinput__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawstatementinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawtop__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawtop__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.drawvalueinput__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.drawvalueinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.info__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.info__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.inlinepath__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.inlinepath__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.layoutfield__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.layoutfield__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.outlinepath__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.outlinepath__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positionexternalvalueconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionexternalvalueconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positioninlineinputconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positioninlineinputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positionnextconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionnextconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positionoutputconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionoutputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positionpreviousconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionpreviousconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.positionstatementinputconnection__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.positionstatementinputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.recordsizeonblock__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.recordsizeonblock__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.topleft__property",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.topleft__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.drawer_class.updateconnectionhighlights_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.drawer_class.updateconnectionhighlights_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.dynamicshape_typealias",
- "id": "reference/js/blockly.blockrendering_namespace.dynamicshape_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionoffsety_property",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionoffsety_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class.connectionwidth_property",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.connectionwidth_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.externalvalueinput_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.externalvalueinput_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class",
- "id": "reference/js/blockly.blockrendering_namespace.field_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.field_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.field_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.fliprtl_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.fliprtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.iseditable_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.iseditable_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.parentinput_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.parentinput_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.field_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.field_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.hat_class",
- "id": "reference/js/blockly.blockrendering_namespace.hat_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.hat_class.ascenderheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.hat_class.ascenderheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.icon_class",
- "id": "reference/js/blockly.blockrendering_namespace.icon_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.icon_class.fliprtl_property",
- "id": "reference/js/blockly.blockrendering_namespace.icon_class.fliprtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.icon_class.icon_property",
- "id": "reference/js/blockly.blockrendering_namespace.icon_class.icon_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inlineinput_class",
- "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inlineinput_class.connectionheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class.connectionheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inlineinput_class.connectionwidth_property",
- "id": "reference/js/blockly.blockrendering_namespace.inlineinput_class.connectionwidth_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.align_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.align_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblock_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblockheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblockheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.connectedblockwidth_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectedblockwidth_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.connectionoffsetx_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectionoffsetx_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.connectionoffsety_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.connectionoffsety_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputconnection_class.input_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputconnection_class.input_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputrow_class",
- "id": "reference/js/blockly.blockrendering_namespace.inputrow_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputrow_class.connectedblockwidths_property",
- "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.connectedblockwidths_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputrow_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inputrow_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.inputrow_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.inrowspacer_class",
- "id": "reference/js/blockly.blockrendering_namespace.inrowspacer_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.insidecorners_interface",
- "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.insidecorners_interface.height_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.insidecorners_interface.pathbottom_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.pathbottom_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.insidecorners_interface.pathtop_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.pathtop_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.insidecorners_interface.width_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.insidecorners_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.addconnectionhighlight_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.addconnectionhighlight_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.applycolour_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.applycolour_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.constants_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.constants_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.fliprtl_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.fliprtl_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.removeconnectionhighlight_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.removeconnectionhighlight_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.setpath_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.setpath_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.setstyle_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.setstyle_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.style_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.style_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.svgpath_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.svgpath_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.updatedraggingdelete_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatedraggingdelete_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.updatehighlighted_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatehighlighted_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.updateinsertionmarker_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updateinsertionmarker_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.updatemovable_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updatemovable_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.ipathobject_interface.updateselected_1_methodsignature",
- "id": "reference/js/blockly.blockrendering_namespace.ipathobject_interface.updateselected_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggededge_class",
- "id": "reference/js/blockly.blockrendering_namespace.jaggededge_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggedteeth_interface",
- "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggedteeth_interface.height_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggedteeth_interface.path_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.path_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.jaggedteeth_interface.width_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.jaggedteeth_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.centerline_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.centerline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.constants__property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.notchoffset_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.notchoffset_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.type_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.measurable_class.xpos_property",
- "id": "reference/js/blockly.blockrendering_namespace.measurable_class.xpos_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.nextconnection_class",
- "id": "reference/js/blockly.blockrendering_namespace.nextconnection_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface.height_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface.pathleft_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface.pathleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface.pathright_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface.pathright_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface.type_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface.type_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.notch_interface.width_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.notch_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outputconnection_class",
- "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outputconnection_class.connectionoffsetx_property",
- "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.connectionoffsetx_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outputconnection_class.connectionoffsety_property",
- "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.connectionoffsety_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outputconnection_class.startx_property",
- "id": "reference/js/blockly.blockrendering_namespace.outputconnection_class.startx_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface.bottomleft_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.bottomleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface.bottomright_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.bottomright_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface.rightheight_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.rightheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface.topleft_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.topleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.outsidecorners_interface.topright_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.outsidecorners_interface.topright_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.addconnectionhighlight_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.addconnectionhighlight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.applycolour_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.constants_property",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.constants_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.fliprtl_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.fliprtl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.removeconnectionhighlight_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.removeconnectionhighlight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.setclass__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setclass__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.setpath_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.setstyle_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.setstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.style_property",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.style_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.svgpath_property",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.svgpath_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.svgroot_property",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.svgroot_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updatedisabled__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatedisabled__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updatedraggingdelete_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatedraggingdelete_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updatehighlighted_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatehighlighted_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updateinsertionmarker_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateinsertionmarker_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updatemovable_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatemovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updatereplacementfade_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updatereplacementfade_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updateselected_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateselected_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updateshadow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateshadow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.pathobject_class.updateshapeforinputhighlight_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.pathobject_class.updateshapeforinputhighlight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.previousconnection_class",
- "id": "reference/js/blockly.blockrendering_namespace.previousconnection_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface.height_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface.pathdown_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.pathdown_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface.pathup_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.pathup_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface.type_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.type_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.puzzletab_interface.width_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.puzzletab_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.register_1_function",
- "id": "reference/js/blockly.blockrendering_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.constants__property",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.dispose_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.getclassname_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.getclassname_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.getconstants_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.getconstants_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.init_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.makeconstants__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makeconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.makedrawer__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makedrawer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.makepathobject_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makepathobject_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.makerenderinfo__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.name_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.orphancanconnectatend_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.orphancanconnectatend_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.overrides_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.overrides_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.refreshdom_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.refreshdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderer_class.shouldhighlightconnection_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderer_class.shouldhighlightconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.addalignmentpadding__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addalignmentpadding__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.addelemspacing__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addelemspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.addinput__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.addrowspacing__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.addrowspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.alignrowelements__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.alignrowelements__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.alignstatementrow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.alignstatementrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.block__property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.block__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.bottomrow_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.bottomrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.computebounds__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.computebounds__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.constants__property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.createrows__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.createrows__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.finalize__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.finalize__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getdesiredrowwidth__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getdesiredrowwidth__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getelemcenterline__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getelemcenterline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getinrowspacing__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getinrowspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getmeasureableforconnection_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getmeasureableforconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getrenderer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getrenderer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getspacerrowheight__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getspacerrowheight__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.getspacerrowwidth__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.getspacerrowwidth__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.inputrows_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.inputrows_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.iscollapsed_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.iscollapsed_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.isinline_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.isinline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.isinsertionmarker_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.isinsertionmarker_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.makespacerrow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.makespacerrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.outputconnection_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.outputconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.populatebottomrow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.populatebottomrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.populatetoprow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.populatetoprow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.recordelempositions__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.recordelempositions__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.renderer__property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.renderer__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.rows_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.rows_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.rtl_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.rtl_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.shouldstartnewrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.startx_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.startx_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.starty_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.starty_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.statementedge_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.statementedge_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.toprow_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.toprow_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.renderinfo_class.widthwithchildren_property",
- "id": "reference/js/blockly.blockrendering_namespace.renderinfo_class.widthwithchildren_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.roundcorner_class",
- "id": "reference/js/blockly.blockrendering_namespace.roundcorner_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class",
- "id": "reference/js/blockly.blockrendering_namespace.row_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.align_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.align_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.constants__property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.elements_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.elements_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.getfirstspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.getfirstspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.getlastinput_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.getlastinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.getlastspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.getlastspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.hasdummyinput_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.hasdummyinput_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.hasexternalinput_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.hasexternalinput_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.hasinlineinput_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.hasinlineinput_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.hasjaggededge_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.hasjaggededge_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.hasstatement_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.hasstatement_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.minheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.minheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.minwidth_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.minwidth_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.notchoffset_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.notchoffset_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.startswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.startswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.statementedge_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.statementedge_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.type_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.widthwithconnectedblocks_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.widthwithconnectedblocks_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.xpos_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.xpos_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.row_class.ypos_property",
- "id": "reference/js/blockly.blockrendering_namespace.row_class.ypos_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.elements_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.elements_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.followsstatement_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.followsstatement_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.height_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.precedesstatement_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.precedesstatement_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.width_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.spacerrow_class.widthwithconnectedblocks_property",
- "id": "reference/js/blockly.blockrendering_namespace.spacerrow_class.widthwithconnectedblocks_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.squarecorner_class",
- "id": "reference/js/blockly.blockrendering_namespace.squarecorner_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.starthat_interface",
- "id": "reference/js/blockly.blockrendering_namespace.starthat_interface"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.starthat_interface.height_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.starthat_interface.path_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.path_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.starthat_interface.width_propertysignature",
- "id": "reference/js/blockly.blockrendering_namespace.starthat_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.statementinput_class",
- "id": "reference/js/blockly.blockrendering_namespace.statementinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.ascenderheight_property",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.ascenderheight_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.capline_property",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.capline_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.connection_property",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.hasleftsquarecorner_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.hasleftsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.haspreviousconnection_property",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.haspreviousconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.hasrightsquarecorner_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.hasrightsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.measure_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.toprow_class.startswithelemspacer_1_method",
- "id": "reference/js/blockly.blockrendering_namespace.toprow_class.startswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.types_variable",
- "id": "reference/js/blockly.blockrendering_namespace.types_variable"
- },
- {
- "type": "doc",
- "label": "blockly.blockrendering_namespace.unregister_1_function",
- "id": "reference/js/blockly.blockrendering_namespace.unregister_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "browserEvents",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.browserevents_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.bind_1_function",
- "id": "reference/js/blockly.browserevents_namespace.bind_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.conditionalbind_1_function",
- "id": "reference/js/blockly.browserevents_namespace.conditionalbind_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.data_typealias",
- "id": "reference/js/blockly.browserevents_namespace.data_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.getscrolldeltapixels_1_function",
- "id": "reference/js/blockly.browserevents_namespace.getscrolldeltapixels_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.isrightbutton_1_function",
- "id": "reference/js/blockly.browserevents_namespace.isrightbutton_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.istargetinput_1_function",
- "id": "reference/js/blockly.browserevents_namespace.istargetinput_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.mousetosvg_1_function",
- "id": "reference/js/blockly.browserevents_namespace.mousetosvg_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.browserevents_namespace.unbind_1_function",
- "id": "reference/js/blockly.browserevents_namespace.unbind_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "bubbles",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.bubbles_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class._constructor__1_constructor",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class._constructor__1_constructor",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class._constructor__1_constructor",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.anchor_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.anchor_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.anchor_radius_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.anchor_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.border_width_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.border_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.canbefocused_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.contentcontainer_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.contentcontainer_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.dispose_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.disposed_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.disposed_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.double_border_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.double_border_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.drag_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.enddrag_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.getcolour_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.getcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.getowner_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.getowner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.getsize_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.id_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.ismovable_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.min_size_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.min_size_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.onkeydown_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.onkeydown_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.onnodeblur_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.onnodefocus_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.owner_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.owner_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.ownerrect_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.ownerrect_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.positionbyrect_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.positionbyrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.positionrelativetoanchor_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.positionrelativetoanchor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.revertdrag_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.select_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.select_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.setanchorlocation_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.setanchorlocation_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.setcolour_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.setcolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.setdragging_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.setdragging_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.setpositionrelativetoanchor_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.setpositionrelativetoanchor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.setsize_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.setsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.startdrag_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.svgroot_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.svgroot_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.tail_angle_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_angle_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.tail_bend_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_bend_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.tail_thickness_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.tail_thickness_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.unselect_1_method",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.unselect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.bubble_class.workspace_property",
- "id": "reference/js/blockly.bubbles_namespace.bubble_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.addworkspacechangelistener_1_method",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.addworkspacechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.anchor_property",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.anchor_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.dispose_1_method",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.ownerrect_property",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.ownerrect_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.updateblockstyles_1_method",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.updateblockstyles_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.miniworkspacebubble_class.workspace_property",
- "id": "reference/js/blockly.bubbles_namespace.miniworkspacebubble_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class.anchor_property",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class.anchor_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class.gettext_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class.ownerrect_property",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class.ownerrect_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class.settext_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textbubble_class.workspace_property",
- "id": "reference/js/blockly.bubbles_namespace.textbubble_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.addlocationchangelistener_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addlocationchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.addsizechangelistener_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addsizechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.addtextchangelistener_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.addtextchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.anchor_property",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.anchor_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.getsize_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.gettext_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.iseditable_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.iseditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.moveduringdrag_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.moveduringdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.owner_property",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.owner_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.ownerrect_property",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.ownerrect_property"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.positionbyrect_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.positionbyrect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.seteditable_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.setpositionrelativetoanchor_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.setpositionrelativetoanchor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.setsize_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.setsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.settext_1_method",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.bubbles_namespace.textinputbubble_class.workspace_property",
- "id": "reference/js/blockly.bubbles_namespace.textinputbubble_class.workspace_property"
- },
- ],
- },
- {
- "type": "category",
- "label": "bumpObjects",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.bumpobjects_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.bumpobjects_namespace.bumpintobounds_variable",
- "id": "reference/js/blockly.bumpobjects_namespace.bumpintobounds_variable"
- },
- {
- "type": "doc",
- "label": "blockly.bumpobjects_namespace.bumpintoboundshandler_1_function",
- "id": "reference/js/blockly.bumpobjects_namespace.bumpintoboundshandler_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.bumpobjects_namespace.bumptopobjectsintobounds_1_function",
- "id": "reference/js/blockly.bumpobjects_namespace.bumptopobjectsintobounds_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "clipboard",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.clipboard_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockcopydata_interface",
- "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockcopydata_interface.blockstate_propertysignature",
- "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface.blockstate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockcopydata_interface.typecounts_propertysignature",
- "id": "reference/js/blockly.clipboard_namespace.blockcopydata_interface.typecounts_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockpaster_class",
- "id": "reference/js/blockly.clipboard_namespace.blockpaster_class"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockpaster_class.paste_1_method",
- "id": "reference/js/blockly.clipboard_namespace.blockpaster_class.paste_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.blockpaster_class.type_property",
- "id": "reference/js/blockly.clipboard_namespace.blockpaster_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.copy_1_function",
- "id": "reference/js/blockly.clipboard_namespace.copy_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.getlastcopieddata_1_function",
- "id": "reference/js/blockly.clipboard_namespace.getlastcopieddata_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.getlastcopiedlocation_1_function",
- "id": "reference/js/blockly.clipboard_namespace.getlastcopiedlocation_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.getlastcopiedworkspace_1_function",
- "id": "reference/js/blockly.clipboard_namespace.getlastcopiedworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.paste_1_function",
- "id": "reference/js/blockly.clipboard_namespace.paste_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.paste_2_function",
- "id": "reference/js/blockly.clipboard_namespace.paste_2_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.registry_namespace",
- "id": "reference/js/blockly.clipboard_namespace.registry_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.registry_namespace.register_1_function",
- "id": "reference/js/blockly.clipboard_namespace.registry_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.registry_namespace.unregister_1_function",
- "id": "reference/js/blockly.clipboard_namespace.registry_namespace.unregister_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.setlastcopieddata_1_function",
- "id": "reference/js/blockly.clipboard_namespace.setlastcopieddata_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.setlastcopiedlocation_1_function",
- "id": "reference/js/blockly.clipboard_namespace.setlastcopiedlocation_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.clipboard_namespace.setlastcopiedworkspace_1_function",
- "id": "reference/js/blockly.clipboard_namespace.setlastcopiedworkspace_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "CollapsibleToolboxCategory",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.container_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.container_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.contents_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.contents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.icon_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.icon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.label_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.label_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.openicon_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.openicon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.row_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.row_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.selected_propertysignature",
- "id": "reference/js/blockly.collapsibletoolboxcategory_namespace.cssconfig_interface.selected_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "comments",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.comments_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.commentview_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class._constructor__1_constructor",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.commentview_property",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.commentview_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.container_property",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.container_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.dispose_1_method",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.icon_property",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.icon_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.id_property",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.performaction_1_method",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.performaction_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.reposition_1_method",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.reposition_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.collapsecommentbarbutton_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.collapsecommentbarbutton_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.canbefocused_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.commentview_property",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.commentview_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.container_property",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.container_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.getcommentview_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getcommentview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.getmargin_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getmargin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.getsize_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.icon_property",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.icon_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.id_property",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.isvisible_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.onnodeblur_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.onnodefocus_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.performaction_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.performaction_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.reposition_1_method",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.reposition_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentbarbutton_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.commentbarbutton_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.addtextchangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.addtextchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.canbefocused_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.getdom_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.getdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.gettext_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.id_property",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.onnodeblur_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.onnodefocus_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.removetextchangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.removetextchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.seteditable_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.setplaceholdertext_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.setplaceholdertext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.settext_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.updatesize_1_method",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.updatesize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commenteditor_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.commenteditor_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class",
- "id": "reference/js/blockly.comments_namespace.commentview_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.adddisposelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.adddisposelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.addoncollapselistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.addoncollapselistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.addsizechangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.addsizechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.addtextchangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.addtextchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.bringtofront_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.bringtofront_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.commentid_property",
- "id": "reference/js/blockly.comments_namespace.commentview_class.commentid_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.defaultcommentsize_property",
- "id": "reference/js/blockly.comments_namespace.commentview_class.defaultcommentsize_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.dispose_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.disposed_property",
- "id": "reference/js/blockly.comments_namespace.commentview_class.disposed_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.disposing_property",
- "id": "reference/js/blockly.comments_namespace.commentview_class.disposing_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.geteditorfocusablenode_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.geteditorfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.getrelativetosurfacexy_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.getrelativetosurfacexy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.getsize_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.getsvgroot_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.getsvgroot_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.gettext_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.iscollapsed_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.iscollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.isdeadordying_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.isdeadordying_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.isdisposed_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.isdisposed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.iseditable_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.iseditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.moveto_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.removedisposelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.removedisposelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.removeoncollapselistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.removeoncollapselistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.removesizechangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.removesizechangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.removetextchangelistener_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.removetextchangelistener_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.setcollapsed_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.setcollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.seteditable_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.setplaceholdertext_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.setplaceholdertext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.setsize_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.setsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.setsizewithoutfiringevents_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.setsizewithoutfiringevents_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.settext_1_method",
- "id": "reference/js/blockly.comments_namespace.commentview_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.commentview_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.commentview_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.commentview_property",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.commentview_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.container_property",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.container_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.dispose_1_method",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.icon_property",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.icon_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.id_property",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.performaction_1_method",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.performaction_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.reposition_1_method",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.reposition_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.deletecommentbarbutton_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.deletecommentbarbutton_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.canbefocused_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.dispose_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.drag_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.enddrag_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.getboundingrectangle_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getboundingrectangle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.geteditorfocusablenode_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.geteditorfocusablenode_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.getsize_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.getsvgroot_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.getsvgroot_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.iscopyable_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.iscopyable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.ismovable_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.moveby_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.moveby_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.moveto_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.onnodeblur_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.onnodefocus_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.revertdrag_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.select_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.select_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.setcollapsed_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setcollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.setdeletestyle_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setdeletestyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.seteditable_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.setplaceholdertext_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setplaceholdertext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.setsize_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.setsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.settext_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.showcontextmenu_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.showcontextmenu_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.snaptogrid_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.snaptogrid_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.startdrag_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.tocopydata_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.tocopydata_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.unselect_1_method",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.unselect_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.view_property",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.view_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.renderedworkspacecomment_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.renderedworkspacecomment_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.dispose_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.disposed_property",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.disposed_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.disposing_property",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.disposing_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.getrelativetosurfacexy_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.getrelativetosurfacexy_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.getsize_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.gettext_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.id_property",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.id_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.iscollapsed_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.iscollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isdeadordying_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdeadordying_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isdeletable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isdisposed_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isdisposed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.iseditable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.iseditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.ismovable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isowndeletable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isowndeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isowneditable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isowneditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.isownmovable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.isownmovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.location_property",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.location_property"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.moveto_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.moveto_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.setcollapsed_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setcollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.setdeletable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setdeletable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.seteditable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.seteditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.setmovable_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setmovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.setsize_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.setsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.settext_1_method",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.comments_namespace.workspacecomment_class.workspace_property",
- "id": "reference/js/blockly.comments_namespace.workspacecomment_class.workspace_property"
- },
- ],
- },
- {
- "type": "category",
- "label": "common",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.common_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function",
- "id": "reference/js/blockly.common_namespace.createblockdefinitionsfromjsonarray_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.defineblocks_1_function",
- "id": "reference/js/blockly.common_namespace.defineblocks_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.defineblockswithjsonarray_1_function",
- "id": "reference/js/blockly.common_namespace.defineblockswithjsonarray_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.draggingconnections_variable",
- "id": "reference/js/blockly.common_namespace.draggingconnections_variable"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getallworkspaces_1_function",
- "id": "reference/js/blockly.common_namespace.getallworkspaces_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getblocktypecounts_1_function",
- "id": "reference/js/blockly.common_namespace.getblocktypecounts_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getmainworkspace_1_function",
- "id": "reference/js/blockly.common_namespace.getmainworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getparentcontainer_1_function",
- "id": "reference/js/blockly.common_namespace.getparentcontainer_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getselected_1_function",
- "id": "reference/js/blockly.common_namespace.getselected_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.getworkspacebyid_1_function",
- "id": "reference/js/blockly.common_namespace.getworkspacebyid_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.registerworkspace_1_function",
- "id": "reference/js/blockly.common_namespace.registerworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.setmainworkspace_1_function",
- "id": "reference/js/blockly.common_namespace.setmainworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.setparentcontainer_1_function",
- "id": "reference/js/blockly.common_namespace.setparentcontainer_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.svgresize_1_function",
- "id": "reference/js/blockly.common_namespace.svgresize_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.test_only_variable",
- "id": "reference/js/blockly.common_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.common_namespace.unregisterworkpace_1_function",
- "id": "reference/js/blockly.common_namespace.unregisterworkpace_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "ComponentManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.componentmanager_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.componentmanager_namespace.componentdatum_interface",
- "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_namespace.componentdatum_interface.capabilities_propertysignature",
- "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.capabilities_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_namespace.componentdatum_interface.component_propertysignature",
- "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.component_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_namespace.componentdatum_interface.weight_propertysignature",
- "id": "reference/js/blockly.componentmanager_namespace.componentdatum_interface.weight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.componentmanager_namespace.componentweight_enum",
- "id": "reference/js/blockly.componentmanager_namespace.componentweight_enum"
- },
- ],
- },
- {
- "type": "category",
- "label": "constants",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.constants_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.constants_namespace.collapsed_field_name_variable",
- "id": "reference/js/blockly.constants_namespace.collapsed_field_name_variable"
- },
- {
- "type": "doc",
- "label": "blockly.constants_namespace.collapsed_input_name_variable",
- "id": "reference/js/blockly.constants_namespace.collapsed_input_name_variable"
- },
- {
- "type": "doc",
- "label": "blockly.constants_namespace.manually_disabled_variable",
- "id": "reference/js/blockly.constants_namespace.manually_disabled_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "ContextMenu",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.contextmenu_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.callbackfactory_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.callbackfactory_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.dispose_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.dispose_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.getcurrentblock_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.getcurrentblock_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.hide_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.hide_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.setcurrentblock_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.setcurrentblock_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenu_namespace.show_1_function",
- "id": "reference/js/blockly.contextmenu_namespace.show_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "ContextMenuItems",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.contextmenuitems_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercleanup_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercleanup_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercollapse_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercollapse_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercollapseexpandblock_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercollapseexpandblock_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercomment_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercomment_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercommentcreate_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercommentcreate_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercommentdelete_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercommentdelete_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercommentduplicate_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercommentduplicate_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registercommentoptions_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registercommentoptions_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerdelete_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerdelete_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerdeleteall_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerdeleteall_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerdisable_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerdisable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerduplicate_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerduplicate_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerexpand_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerexpand_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerhelp_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerhelp_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerinline_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerinline_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerredo_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerredo_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuitems_namespace.registerundo_1_function",
- "id": "reference/js/blockly.contextmenuitems_namespace.registerundo_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "ContextMenuRegistry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.contextmenuregistry_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.callback_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.enabled_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.enabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.separator_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.separator_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.text_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actioncontextmenuoption_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.callback_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.displaytext_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.displaytext_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.preconditionfn_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.preconditionfn_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.actionregistryitem_interface.separator_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.actionregistryitem_interface.separator_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.contextmenuoption_typealias",
- "id": "reference/js/blockly.contextmenuregistry_namespace.contextmenuoption_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.scope_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.scope_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.weight_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.corecontextmenuoption_interface.weight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.id_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.scopetype_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.scopetype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.coreregistryitem_interface.weight_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.coreregistryitem_interface.weight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.callback_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.enabled_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.enabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.separator_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.separator_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.text_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.legacycontextmenuoption_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.registryitem_typealias",
- "id": "reference/js/blockly.contextmenuregistry_namespace.registryitem_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scope_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scope_interface.block_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.block_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scope_interface.comment_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.comment_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scope_interface.focusednode_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.focusednode_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scope_interface.workspace_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scope_interface.workspace_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.scopetype_enum",
- "id": "reference/js/blockly.contextmenuregistry_namespace.scopetype_enum"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.callback_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.enabled_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.enabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.separator_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.separator_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.text_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorcontextmenuoption_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.callback_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.displaytext_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.displaytext_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.preconditionfn_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.preconditionfn_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.contextmenuregistry_namespace.separatorregistryitem_interface.separator_propertysignature",
- "id": "reference/js/blockly.contextmenuregistry_namespace.separatorregistryitem_interface.separator_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Css",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.css_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.css_namespace.inject_1_function",
- "id": "reference/js/blockly.css_namespace.inject_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.css_namespace.register_1_function",
- "id": "reference/js/blockly.css_namespace.register_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "dialog",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.dialog_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.alert_1_function",
- "id": "reference/js/blockly.dialog_namespace.alert_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.confirm_1_function",
- "id": "reference/js/blockly.dialog_namespace.confirm_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.prompt_1_function",
- "id": "reference/js/blockly.dialog_namespace.prompt_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.setalert_1_function",
- "id": "reference/js/blockly.dialog_namespace.setalert_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.setconfirm_1_function",
- "id": "reference/js/blockly.dialog_namespace.setconfirm_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.setprompt_1_function",
- "id": "reference/js/blockly.dialog_namespace.setprompt_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.settoast_1_function",
- "id": "reference/js/blockly.dialog_namespace.settoast_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.dialog_namespace.toast_1_function",
- "id": "reference/js/blockly.dialog_namespace.toast_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "dragging",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.dragging_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class._constructor__1_constructor",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class._constructor__1_constructor",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class._constructor__1_constructor",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class._constructor__1_constructor",
- "id": "reference/js/blockly.dragging_namespace.dragger_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.drag_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.enddrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.getsearchradius_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.getsearchradius_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.ismovable_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.revertdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.shouldhealstack_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.shouldhealstack_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.blockdragstrategy_class.startdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.blockdragstrategy_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class.drag_1_method",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class.enddrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class.ismovable_1_method",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class.revertdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.bubbledragstrategy_class.startdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.bubbledragstrategy_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class.drag_1_method",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.drag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class.enddrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.enddrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class.ismovable_1_method",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.ismovable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class.revertdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.revertdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.commentdragstrategy_class.startdrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.commentdragstrategy_class.startdrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class",
- "id": "reference/js/blockly.dragging_namespace.dragger_class"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.draggable_property",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.draggable_property"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.dragtarget_property",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.dragtarget_property"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.ondrag_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.ondrag_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.ondragend_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.ondragend_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.ondragstart_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.ondragstart_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.pixelstoworkspaceunits_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.pixelstoworkspaceunits_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.shouldreturntostart_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.shouldreturntostart_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.startloc_property",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.startloc_property"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.updatedragtarget_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.updatedragtarget_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.workspace_property",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.workspace_property"
- },
- {
- "type": "doc",
- "label": "blockly.dragging_namespace.dragger_class.woulddeletedraggable_1_method",
- "id": "reference/js/blockly.dragging_namespace.dragger_class.woulddeletedraggable_1_method"
- },
- ],
- },
- {
- "type": "category",
- "label": "Events",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.events_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.abstract_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbase_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockbase_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockchange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockcreate_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockdelete_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockdrag_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.blockmove_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.click_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentbase_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentchange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentcreate_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentdelete_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentdrag_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentmove_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.commentresize_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finishedloading_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.finishedloading_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.selected_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.themechange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopen_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.trashcanopen_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.uibase_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbase_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.varbase_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.varcreate_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.vardelete_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.varrename_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.vartypechange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class._constructor__1_constructor",
- "id": "reference/js/blockly.events_namespace.viewportchange_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class",
- "id": "reference/js/blockly.events_namespace.abstract_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.geteventworkspace__1_method",
- "id": "reference/js/blockly.events_namespace.abstract_class.geteventworkspace__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.group_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.group_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.abstract_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.isuievent_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.isuievent_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.recordundo_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.recordundo_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.abstract_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.abstract_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.type_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstract_class.workspaceid_property",
- "id": "reference/js/blockly.events_namespace.abstract_class.workspaceid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstracteventjson_interface",
- "id": "reference/js/blockly.events_namespace.abstracteventjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstracteventjson_interface.group_propertysignature",
- "id": "reference/js/blockly.events_namespace.abstracteventjson_interface.group_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.abstracteventjson_interface.type_propertysignature",
- "id": "reference/js/blockly.events_namespace.abstracteventjson_interface.type_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_change_variable",
- "id": "reference/js/blockly.events_namespace.block_change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_create_variable",
- "id": "reference/js/blockly.events_namespace.block_create_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_delete_variable",
- "id": "reference/js/blockly.events_namespace.block_delete_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_drag_variable",
- "id": "reference/js/blockly.events_namespace.block_drag_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_field_intermediate_change_variable",
- "id": "reference/js/blockly.events_namespace.block_field_intermediate_change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.block_move_variable",
- "id": "reference/js/blockly.events_namespace.block_move_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbase_class",
- "id": "reference/js/blockly.events_namespace.blockbase_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbase_class.blockid_property",
- "id": "reference/js/blockly.events_namespace.blockbase_class.blockid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbase_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.blockbase_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbase_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockbase_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbasejson_interface",
- "id": "reference/js/blockly.events_namespace.blockbasejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockbasejson_interface.blockid_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockbasejson_interface.blockid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class",
- "id": "reference/js/blockly.events_namespace.blockchange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.element_property",
- "id": "reference/js/blockly.events_namespace.blockchange_class.element_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.blockchange_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.name_property",
- "id": "reference/js/blockly.events_namespace.blockchange_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.newvalue_property",
- "id": "reference/js/blockly.events_namespace.blockchange_class.newvalue_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.oldvalue_property",
- "id": "reference/js/blockly.events_namespace.blockchange_class.oldvalue_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.blockchange_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.setdisabledreason_1_method",
- "id": "reference/js/blockly.events_namespace.blockchange_class.setdisabledreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockchange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchange_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockchange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface.disabledreason_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface.disabledreason_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface.element_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface.element_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface.name_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface.newvalue_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface.newvalue_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockchangejson_interface.oldvalue_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockchangejson_interface.oldvalue_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class",
- "id": "reference/js/blockly.events_namespace.blockcreate_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.ids_property",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.ids_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.json_property",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.json_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreate_class.xml_property",
- "id": "reference/js/blockly.events_namespace.blockcreate_class.xml_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreatejson_interface",
- "id": "reference/js/blockly.events_namespace.blockcreatejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreatejson_interface.ids_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.ids_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreatejson_interface.json_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.json_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreatejson_interface.recordundo_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.recordundo_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockcreatejson_interface.xml_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockcreatejson_interface.xml_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class",
- "id": "reference/js/blockly.events_namespace.blockdelete_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.ids_property",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.ids_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.oldjson_property",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.oldjson_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.oldxml_property",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.oldxml_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdelete_class.wasshadow_property",
- "id": "reference/js/blockly.events_namespace.blockdelete_class.wasshadow_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface.ids_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.ids_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface.oldjson_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.oldjson_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface.oldxml_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.oldxml_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface.recordundo_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.recordundo_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdeletejson_interface.wasshadow_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdeletejson_interface.wasshadow_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class",
- "id": "reference/js/blockly.events_namespace.blockdrag_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class.blockid_property",
- "id": "reference/js/blockly.events_namespace.blockdrag_class.blockid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class.blocks_property",
- "id": "reference/js/blockly.events_namespace.blockdrag_class.blocks_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class.isstart_property",
- "id": "reference/js/blockly.events_namespace.blockdrag_class.isstart_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockdrag_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdrag_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockdrag_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdragjson_interface",
- "id": "reference/js/blockly.events_namespace.blockdragjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdragjson_interface.blockid_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdragjson_interface.blockid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdragjson_interface.blocks_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdragjson_interface.blocks_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockdragjson_interface.isstart_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockdragjson_interface.isstart_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.name_property",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.newvalue_property",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.newvalue_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.oldvalue_property",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.oldvalue_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.recordundo_property",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.recordundo_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechange_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.name_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.newvalue_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.newvalue_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockfieldintermediatechangejson_interface.oldvalue_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockfieldintermediatechangejson_interface.oldvalue_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class",
- "id": "reference/js/blockly.events_namespace.blockmove_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.blockmove_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.newcoordinate_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.newcoordinate_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.newinputname_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.newinputname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.newparentid_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.newparentid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.oldcoordinate_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.oldcoordinate_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.oldinputname_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.oldinputname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.oldparentid_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.oldparentid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.reason_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.reason_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.recordnew_1_method",
- "id": "reference/js/blockly.events_namespace.blockmove_class.recordnew_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.blockmove_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.setreason_1_method",
- "id": "reference/js/blockly.events_namespace.blockmove_class.setreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.blockmove_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmove_class.type_property",
- "id": "reference/js/blockly.events_namespace.blockmove_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.newcoordinate_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newcoordinate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.newinputname_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newinputname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.newparentid_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.newparentid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.oldcoordinate_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldcoordinate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.oldinputname_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldinputname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.oldparentid_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.oldparentid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.reason_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.reason_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.blockmovejson_interface.recordundo_propertysignature",
- "id": "reference/js/blockly.events_namespace.blockmovejson_interface.recordundo_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubble_open_variable",
- "id": "reference/js/blockly.events_namespace.bubble_open_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class.blockid_property",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class.blockid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class.bubbletype_property",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class.bubbletype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class.isopen_property",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class.isopen_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopen_class.type_property",
- "id": "reference/js/blockly.events_namespace.bubbleopen_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopenjson_interface",
- "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopenjson_interface.blockid_propertysignature",
- "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.blockid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopenjson_interface.bubbletype_propertysignature",
- "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.bubbletype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbleopenjson_interface.isopen_propertysignature",
- "id": "reference/js/blockly.events_namespace.bubbleopenjson_interface.isopen_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bubbletype_enum",
- "id": "reference/js/blockly.events_namespace.bubbletype_enum"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bump_events_variable",
- "id": "reference/js/blockly.events_namespace.bump_events_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.bumpevent_typealias",
- "id": "reference/js/blockly.events_namespace.bumpevent_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.change_variable",
- "id": "reference/js/blockly.events_namespace.change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.clearpendingundo_1_function",
- "id": "reference/js/blockly.events_namespace.clearpendingundo_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class",
- "id": "reference/js/blockly.events_namespace.click_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class.blockid_property",
- "id": "reference/js/blockly.events_namespace.click_class.blockid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class.targettype_property",
- "id": "reference/js/blockly.events_namespace.click_class.targettype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.click_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_class.type_property",
- "id": "reference/js/blockly.events_namespace.click_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.click_variable",
- "id": "reference/js/blockly.events_namespace.click_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.clickjson_interface",
- "id": "reference/js/blockly.events_namespace.clickjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.clickjson_interface.blockid_propertysignature",
- "id": "reference/js/blockly.events_namespace.clickjson_interface.blockid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.clickjson_interface.targettype_propertysignature",
- "id": "reference/js/blockly.events_namespace.clickjson_interface.targettype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.clicktarget_enum",
- "id": "reference/js/blockly.events_namespace.clicktarget_enum"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_change_variable",
- "id": "reference/js/blockly.events_namespace.comment_change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_create_variable",
- "id": "reference/js/blockly.events_namespace.comment_create_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_delete_variable",
- "id": "reference/js/blockly.events_namespace.comment_delete_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_drag_variable",
- "id": "reference/js/blockly.events_namespace.comment_drag_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_move_variable",
- "id": "reference/js/blockly.events_namespace.comment_move_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.comment_resize_variable",
- "id": "reference/js/blockly.events_namespace.comment_resize_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class",
- "id": "reference/js/blockly.events_namespace.commentbase_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class.commentcreatedeletehelper_1_method",
- "id": "reference/js/blockly.events_namespace.commentbase_class.commentcreatedeletehelper_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class.commentid_property",
- "id": "reference/js/blockly.events_namespace.commentbase_class.commentid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.commentbase_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbase_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentbase_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbasejson_interface",
- "id": "reference/js/blockly.events_namespace.commentbasejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentbasejson_interface.commentid_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentbasejson_interface.commentid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class",
- "id": "reference/js/blockly.events_namespace.commentchange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.commentchange_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.newcontents__property",
- "id": "reference/js/blockly.events_namespace.commentchange_class.newcontents__property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.oldcontents__property",
- "id": "reference/js/blockly.events_namespace.commentchange_class.oldcontents__property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentchange_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentchange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchange_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentchange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchangejson_interface",
- "id": "reference/js/blockly.events_namespace.commentchangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchangejson_interface.newcontents_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentchangejson_interface.newcontents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentchangejson_interface.oldcontents_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentchangejson_interface.oldcontents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class.newcollapsed_property",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class.newcollapsed_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapse_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentcollapse_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapsejson_interface",
- "id": "reference/js/blockly.events_namespace.commentcollapsejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcollapsejson_interface.newcollapsed_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentcollapsejson_interface.newcollapsed_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class",
- "id": "reference/js/blockly.events_namespace.commentcreate_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class.json_property",
- "id": "reference/js/blockly.events_namespace.commentcreate_class.json_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentcreate_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentcreate_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentcreate_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreate_class.xml_property",
- "id": "reference/js/blockly.events_namespace.commentcreate_class.xml_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreatejson_interface",
- "id": "reference/js/blockly.events_namespace.commentcreatejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreatejson_interface.json_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentcreatejson_interface.json_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentcreatejson_interface.xml_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentcreatejson_interface.xml_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class",
- "id": "reference/js/blockly.events_namespace.commentdelete_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class.json_property",
- "id": "reference/js/blockly.events_namespace.commentdelete_class.json_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentdelete_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentdelete_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentdelete_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdelete_class.xml_property",
- "id": "reference/js/blockly.events_namespace.commentdelete_class.xml_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class",
- "id": "reference/js/blockly.events_namespace.commentdrag_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class.commentid_property",
- "id": "reference/js/blockly.events_namespace.commentdrag_class.commentid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class.isstart_property",
- "id": "reference/js/blockly.events_namespace.commentdrag_class.isstart_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentdrag_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdrag_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentdrag_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdragjson_interface",
- "id": "reference/js/blockly.events_namespace.commentdragjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdragjson_interface.commentid_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentdragjson_interface.commentid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentdragjson_interface.isstart_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentdragjson_interface.isstart_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class",
- "id": "reference/js/blockly.events_namespace.commentmove_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.comment__property",
- "id": "reference/js/blockly.events_namespace.commentmove_class.comment__property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.newcoordinate__property",
- "id": "reference/js/blockly.events_namespace.commentmove_class.newcoordinate__property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.oldcoordinate__property",
- "id": "reference/js/blockly.events_namespace.commentmove_class.oldcoordinate__property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.reason_property",
- "id": "reference/js/blockly.events_namespace.commentmove_class.reason_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.recordnew_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.recordnew_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.setoldcoordinate_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.setoldcoordinate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.setreason_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.setreason_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentmove_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmove_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentmove_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmovejson_interface",
- "id": "reference/js/blockly.events_namespace.commentmovejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmovejson_interface.newcoordinate_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentmovejson_interface.newcoordinate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentmovejson_interface.oldcoordinate_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentmovejson_interface.oldcoordinate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class",
- "id": "reference/js/blockly.events_namespace.commentresize_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.isnull_1_method",
- "id": "reference/js/blockly.events_namespace.commentresize_class.isnull_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.newsize_property",
- "id": "reference/js/blockly.events_namespace.commentresize_class.newsize_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.oldsize_property",
- "id": "reference/js/blockly.events_namespace.commentresize_class.oldsize_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.recordcurrentsizeasnewsize_1_method",
- "id": "reference/js/blockly.events_namespace.commentresize_class.recordcurrentsizeasnewsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.commentresize_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.commentresize_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresize_class.type_property",
- "id": "reference/js/blockly.events_namespace.commentresize_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresizejson_interface",
- "id": "reference/js/blockly.events_namespace.commentresizejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresizejson_interface.newheight_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentresizejson_interface.newheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresizejson_interface.newwidth_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentresizejson_interface.newwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresizejson_interface.oldheight_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentresizejson_interface.oldheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.commentresizejson_interface.oldwidth_propertysignature",
- "id": "reference/js/blockly.events_namespace.commentresizejson_interface.oldwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.create_variable",
- "id": "reference/js/blockly.events_namespace.create_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.delete_variable",
- "id": "reference/js/blockly.events_namespace.delete_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.disable_1_function",
- "id": "reference/js/blockly.events_namespace.disable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.disableorphans_1_function",
- "id": "reference/js/blockly.events_namespace.disableorphans_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.enable_1_function",
- "id": "reference/js/blockly.events_namespace.enable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.filter_1_function",
- "id": "reference/js/blockly.events_namespace.filter_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finished_loading_variable",
- "id": "reference/js/blockly.events_namespace.finished_loading_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finishedloading_class",
- "id": "reference/js/blockly.events_namespace.finishedloading_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finishedloading_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.finishedloading_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finishedloading_class.recordundo_property",
- "id": "reference/js/blockly.events_namespace.finishedloading_class.recordundo_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.finishedloading_class.type_property",
- "id": "reference/js/blockly.events_namespace.finishedloading_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.fire_1_function",
- "id": "reference/js/blockly.events_namespace.fire_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.fromjson_1_function",
- "id": "reference/js/blockly.events_namespace.fromjson_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.get_1_function",
- "id": "reference/js/blockly.events_namespace.get_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.getgroup_1_function",
- "id": "reference/js/blockly.events_namespace.getgroup_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.getrecordundo_1_function",
- "id": "reference/js/blockly.events_namespace.getrecordundo_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.isenabled_1_function",
- "id": "reference/js/blockly.events_namespace.isenabled_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.move_variable",
- "id": "reference/js/blockly.events_namespace.move_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class",
- "id": "reference/js/blockly.events_namespace.selected_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class.newelementid_property",
- "id": "reference/js/blockly.events_namespace.selected_class.newelementid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class.oldelementid_property",
- "id": "reference/js/blockly.events_namespace.selected_class.oldelementid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.selected_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_class.type_property",
- "id": "reference/js/blockly.events_namespace.selected_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selected_variable",
- "id": "reference/js/blockly.events_namespace.selected_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selectedjson_interface",
- "id": "reference/js/blockly.events_namespace.selectedjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selectedjson_interface.newelementid_propertysignature",
- "id": "reference/js/blockly.events_namespace.selectedjson_interface.newelementid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.selectedjson_interface.oldelementid_propertysignature",
- "id": "reference/js/blockly.events_namespace.selectedjson_interface.oldelementid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.setgroup_1_function",
- "id": "reference/js/blockly.events_namespace.setgroup_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.setrecordundo_1_function",
- "id": "reference/js/blockly.events_namespace.setrecordundo_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.theme_change_variable",
- "id": "reference/js/blockly.events_namespace.theme_change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechange_class",
- "id": "reference/js/blockly.events_namespace.themechange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechange_class.themename_property",
- "id": "reference/js/blockly.events_namespace.themechange_class.themename_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.themechange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechange_class.type_property",
- "id": "reference/js/blockly.events_namespace.themechange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechangejson_interface",
- "id": "reference/js/blockly.events_namespace.themechangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.themechangejson_interface.themename_propertysignature",
- "id": "reference/js/blockly.events_namespace.themechangejson_interface.themename_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolbox_item_select_variable",
- "id": "reference/js/blockly.events_namespace.toolbox_item_select_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class.newitem_property",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.newitem_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class.olditem_property",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.olditem_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselect_class.type_property",
- "id": "reference/js/blockly.events_namespace.toolboxitemselect_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselectjson_interface",
- "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselectjson_interface.newitem_propertysignature",
- "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface.newitem_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.toolboxitemselectjson_interface.olditem_propertysignature",
- "id": "reference/js/blockly.events_namespace.toolboxitemselectjson_interface.olditem_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcan_open_variable",
- "id": "reference/js/blockly.events_namespace.trashcan_open_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopen_class",
- "id": "reference/js/blockly.events_namespace.trashcanopen_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopen_class.isopen_property",
- "id": "reference/js/blockly.events_namespace.trashcanopen_class.isopen_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopen_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.trashcanopen_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopen_class.type_property",
- "id": "reference/js/blockly.events_namespace.trashcanopen_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopenjson_interface",
- "id": "reference/js/blockly.events_namespace.trashcanopenjson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.trashcanopenjson_interface.isopen_propertysignature",
- "id": "reference/js/blockly.events_namespace.trashcanopenjson_interface.isopen_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.ui_variable",
- "id": "reference/js/blockly.events_namespace.ui_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class",
- "id": "reference/js/blockly.events_namespace.uibase_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.uibase_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class.isuievent_property",
- "id": "reference/js/blockly.events_namespace.uibase_class.isuievent_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class.recordundo_property",
- "id": "reference/js/blockly.events_namespace.uibase_class.recordundo_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.uibase_class.workspaceid_property",
- "id": "reference/js/blockly.events_namespace.uibase_class.workspaceid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.var_create_variable",
- "id": "reference/js/blockly.events_namespace.var_create_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.var_delete_variable",
- "id": "reference/js/blockly.events_namespace.var_delete_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.var_rename_variable",
- "id": "reference/js/blockly.events_namespace.var_rename_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbase_class",
- "id": "reference/js/blockly.events_namespace.varbase_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbase_class.isblank_property",
- "id": "reference/js/blockly.events_namespace.varbase_class.isblank_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbase_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.varbase_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbase_class.varid_property",
- "id": "reference/js/blockly.events_namespace.varbase_class.varid_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbasejson_interface",
- "id": "reference/js/blockly.events_namespace.varbasejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varbasejson_interface.varid_propertysignature",
- "id": "reference/js/blockly.events_namespace.varbasejson_interface.varid_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class",
- "id": "reference/js/blockly.events_namespace.varcreate_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.varcreate_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.varcreate_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class.type_property",
- "id": "reference/js/blockly.events_namespace.varcreate_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class.varname_property",
- "id": "reference/js/blockly.events_namespace.varcreate_class.varname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreate_class.vartype_property",
- "id": "reference/js/blockly.events_namespace.varcreate_class.vartype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreatejson_interface",
- "id": "reference/js/blockly.events_namespace.varcreatejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreatejson_interface.varname_propertysignature",
- "id": "reference/js/blockly.events_namespace.varcreatejson_interface.varname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varcreatejson_interface.vartype_propertysignature",
- "id": "reference/js/blockly.events_namespace.varcreatejson_interface.vartype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class",
- "id": "reference/js/blockly.events_namespace.vardelete_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.vardelete_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.vardelete_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class.type_property",
- "id": "reference/js/blockly.events_namespace.vardelete_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class.varname_property",
- "id": "reference/js/blockly.events_namespace.vardelete_class.varname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardelete_class.vartype_property",
- "id": "reference/js/blockly.events_namespace.vardelete_class.vartype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardeletejson_interface",
- "id": "reference/js/blockly.events_namespace.vardeletejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardeletejson_interface.varname_propertysignature",
- "id": "reference/js/blockly.events_namespace.vardeletejson_interface.varname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vardeletejson_interface.vartype_propertysignature",
- "id": "reference/js/blockly.events_namespace.vardeletejson_interface.vartype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class",
- "id": "reference/js/blockly.events_namespace.varrename_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class.newname_property",
- "id": "reference/js/blockly.events_namespace.varrename_class.newname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class.oldname_property",
- "id": "reference/js/blockly.events_namespace.varrename_class.oldname_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.varrename_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.varrename_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrename_class.type_property",
- "id": "reference/js/blockly.events_namespace.varrename_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrenamejson_interface",
- "id": "reference/js/blockly.events_namespace.varrenamejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrenamejson_interface.newname_propertysignature",
- "id": "reference/js/blockly.events_namespace.varrenamejson_interface.newname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.varrenamejson_interface.oldname_propertysignature",
- "id": "reference/js/blockly.events_namespace.varrenamejson_interface.oldname_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class",
- "id": "reference/js/blockly.events_namespace.vartypechange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class.newtype_property",
- "id": "reference/js/blockly.events_namespace.vartypechange_class.newtype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class.oldtype_property",
- "id": "reference/js/blockly.events_namespace.vartypechange_class.oldtype_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class.run_1_method",
- "id": "reference/js/blockly.events_namespace.vartypechange_class.run_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.vartypechange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechange_class.type_property",
- "id": "reference/js/blockly.events_namespace.vartypechange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechangejson_interface",
- "id": "reference/js/blockly.events_namespace.vartypechangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechangejson_interface.newtype_propertysignature",
- "id": "reference/js/blockly.events_namespace.vartypechangejson_interface.newtype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.vartypechangejson_interface.oldtype_propertysignature",
- "id": "reference/js/blockly.events_namespace.vartypechangejson_interface.oldtype_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewport_change_variable",
- "id": "reference/js/blockly.events_namespace.viewport_change_variable"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class",
- "id": "reference/js/blockly.events_namespace.viewportchange_class"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.oldscale_property",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.oldscale_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.scale_property",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.scale_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.tojson_1_method",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.tojson_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.type_property",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.viewleft_property",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.viewleft_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchange_class.viewtop_property",
- "id": "reference/js/blockly.events_namespace.viewportchange_class.viewtop_property"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchangejson_interface",
- "id": "reference/js/blockly.events_namespace.viewportchangejson_interface"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchangejson_interface.oldscale_propertysignature",
- "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.oldscale_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchangejson_interface.scale_propertysignature",
- "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.scale_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchangejson_interface.viewleft_propertysignature",
- "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.viewleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.events_namespace.viewportchangejson_interface.viewtop_propertysignature",
- "id": "reference/js/blockly.events_namespace.viewportchangejson_interface.viewtop_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Extensions",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.extensions_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.apply_1_function",
- "id": "reference/js/blockly.extensions_namespace.apply_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.buildtooltipfordropdown_1_function",
- "id": "reference/js/blockly.extensions_namespace.buildtooltipfordropdown_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.buildtooltipwithfieldtext_1_function",
- "id": "reference/js/blockly.extensions_namespace.buildtooltipwithfieldtext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.isregistered_1_function",
- "id": "reference/js/blockly.extensions_namespace.isregistered_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.register_1_function",
- "id": "reference/js/blockly.extensions_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.registermixin_1_function",
- "id": "reference/js/blockly.extensions_namespace.registermixin_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.registermutator_1_function",
- "id": "reference/js/blockly.extensions_namespace.registermutator_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.test_only_variable",
- "id": "reference/js/blockly.extensions_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.extensions_namespace.unregister_1_function",
- "id": "reference/js/blockly.extensions_namespace.unregister_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "fieldRegistry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.fieldregistry_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.register_1_function",
- "id": "reference/js/blockly.fieldregistry_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.registrablefield_interface",
- "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface"
- },
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.registrablefield_interface._new__1_constructsignature",
- "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface._new__1_constructsignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.registrablefield_interface.fromjson_1_methodsignature",
- "id": "reference/js/blockly.fieldregistry_namespace.registrablefield_interface.fromjson_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.test_only_variable",
- "id": "reference/js/blockly.fieldregistry_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.fieldregistry_namespace.unregister_1_function",
- "id": "reference/js/blockly.fieldregistry_namespace.unregister_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "geras",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.geras_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.drawer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.highlighter_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.inlineinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.inlineinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.pathobject_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.renderer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.statementinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.geras_namespace.statementinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class.dark_path_offset_property",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class.dark_path_offset_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class.field_text_baseline_center_property",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class.field_text_baseline_center_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class.getcss__1_method",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class.getcss__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class.max_bottom_width_property",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class.max_bottom_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.constantprovider_class.statement_bottom_spacer_property",
- "id": "reference/js/blockly.geras_namespace.constantprovider_class.statement_bottom_spacer_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class",
- "id": "reference/js/blockly.geras_namespace.drawer_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.constants__property",
- "id": "reference/js/blockly.geras_namespace.drawer_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.draw_1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.draw_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawbottom__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawbottom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawinlineinput__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawinlineinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawjaggededge__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawjaggededge__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawleft__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawleft__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawrightsiderow__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawrightsiderow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawstatementinput__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawstatementinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawtop__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawtop__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.drawvalueinput__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.drawvalueinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.highlighter__property",
- "id": "reference/js/blockly.geras_namespace.drawer_class.highlighter__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.positionexternalvalueconnection__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.positionexternalvalueconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.positioninlineinputconnection__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.positioninlineinputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.positionnextconnection__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.positionnextconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.drawer_class.positionstatementinputconnection__1_method",
- "id": "reference/js/blockly.geras_namespace.drawer_class.positionstatementinputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.constantprovider_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.constantprovider_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.init_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.inside_corner_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.inside_corner_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.jagged_teeth_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.jagged_teeth_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makeinsidecorner_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makeinsidecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makejaggedteeth_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makejaggedteeth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makenotch_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makenotch_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makeoutsidecorner_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makeoutsidecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makepuzzletab_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makepuzzletab_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.makestarthat_1_method",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.makestarthat_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.notch_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.notch_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.offset_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.offset_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.outside_corner_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.outside_corner_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.puzzle_tab_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.puzzle_tab_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.start_hat_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.start_hat_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlightconstantprovider_class.start_point_property",
- "id": "reference/js/blockly.geras_namespace.highlightconstantprovider_class.start_point_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class",
- "id": "reference/js/blockly.geras_namespace.highlighter_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.constants__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawbottomrow_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawbottomrow_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawinlineinput_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawinlineinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawjaggededge__1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawjaggededge__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawleft_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawleft_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawrightsiderow_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawrightsiderow_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawstatementinput_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawstatementinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawtopcorner_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawtopcorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.drawvalueinput_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.drawvalueinput_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.getpath_1_method",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.getpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.highlightconstants__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.highlightconstants__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.info__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.info__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.inlinesteps__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.inlinesteps__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.insidecornerpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.insidecornerpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.jaggedteethpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.jaggedteethpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.notchpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.notchpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.outsidecornerpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.outsidecornerpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.puzzletabpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.puzzletabpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.rtl__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.rtl__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.startpaths__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.startpaths__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.highlighter_class.steps__property",
- "id": "reference/js/blockly.geras_namespace.highlighter_class.steps__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.inlineinput_class",
- "id": "reference/js/blockly.geras_namespace.inlineinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.inlineinput_class.constants__property",
- "id": "reference/js/blockly.geras_namespace.inlineinput_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class",
- "id": "reference/js/blockly.geras_namespace.pathobject_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.applycolour_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.colourdark_property",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.colourdark_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.constants_property",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.constants_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.fliprtl_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.fliprtl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.sethighlightpath_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.sethighlightpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.setpath_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.setpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.setstyle_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.setstyle_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.svgpathdark_property",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.svgpathdark_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.svgpathlight_property",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.svgpathlight_property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.updatedisabled__1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.updatedisabled__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.updatehighlighted_1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.updatehighlighted_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.pathobject_class.updateshadow__1_method",
- "id": "reference/js/blockly.geras_namespace.pathobject_class.updateshadow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class",
- "id": "reference/js/blockly.geras_namespace.renderer_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.gethighlightconstants_1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.gethighlightconstants_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.init_1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.makeconstants__1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.makeconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.makedrawer__1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.makedrawer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.makehighlightconstants__1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.makehighlightconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.makepathobject_1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.makepathobject_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.makerenderinfo__1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.makerenderinfo__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderer_class.refreshdom_1_method",
- "id": "reference/js/blockly.geras_namespace.renderer_class.refreshdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.addelemspacing__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.addelemspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.addinput__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.addinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.alignrowelements__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.alignrowelements__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.constants__property",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.finalize__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.finalize__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.getdesiredrowwidth__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.getdesiredrowwidth__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.getelemcenterline__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.getelemcenterline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.getinrowspacing__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.getinrowspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.getrenderer_1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.getrenderer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.getspacerrowheight__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.getspacerrowheight__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.populatebottomrow__1_method",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.populatebottomrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.renderinfo_class.renderer__property",
- "id": "reference/js/blockly.geras_namespace.renderinfo_class.renderer__property"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.statementinput_class",
- "id": "reference/js/blockly.geras_namespace.statementinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.geras_namespace.statementinput_class.constants__property",
- "id": "reference/js/blockly.geras_namespace.statementinput_class.constants__property"
- },
- ],
- },
- {
- "type": "category",
- "label": "icons",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icons_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class._constructor__1_constructor",
- "id": "reference/js/blockly.icons_namespace.commenticon_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class._constructor__1_constructor",
- "id": "reference/js/blockly.icons_namespace.icon_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class._constructor__1_constructor",
- "id": "reference/js/blockly.icons_namespace.icontype_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class._constructor__1_constructor",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class",
- "id": "reference/js/blockly.icons_namespace.commenticon_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.applycolour_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.bubbleisvisible_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.bubbleisvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.createbubble_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.createbubble_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.dispose_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.getbubble_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubble_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.getbubblelocation_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubblelocation_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.getbubblesize_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.getbubblesize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.getsize_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.gettext_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.gettext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.gettype_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.getweight_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.getweight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.initview_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.isclickableinflyout_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.isclickableinflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.loadstate_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.loadstate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.onbubblelocationchange_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.onbubblelocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.onclick_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.onlocationchange_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.onlocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.onsizechange_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.onsizechange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.ontextchange_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.ontextchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.savestate_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.savestate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.setbubblelocation_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblelocation_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.setbubblesize_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblesize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.setbubblevisible_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.setbubblevisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.settext_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.settext_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.sourceblock_property",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.sourceblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.type_property",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.updateeditable_1_method",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.updateeditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commenticon_class.weight_property",
- "id": "reference/js/blockly.icons_namespace.commenticon_class.weight_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.height_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.pinned_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.pinned_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.text_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.width_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.x_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.x_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.commentstate_interface.y_propertysignature",
- "id": "reference/js/blockly.icons_namespace.commentstate_interface.y_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.exceptions_namespace",
- "id": "reference/js/blockly.icons_namespace.exceptions_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.exceptions_namespace.duplicateicontype_class",
- "id": "reference/js/blockly.icons_namespace.exceptions_namespace.duplicateicontype_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.exceptions_namespace.duplicateicontype_class.icon_property",
- "id": "reference/js/blockly.icons_namespace.exceptions_namespace.duplicateicontype_class.icon_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class",
- "id": "reference/js/blockly.icons_namespace.icon_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.applycolour_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.canbefocused_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.canbefocused_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.dispose_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.getfocusableelement_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.getfocusableelement_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.getfocusabletree_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.getfocusabletree_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.getsize_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.getsourceblock_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.gettooltip_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.gettooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.gettype_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.getweight_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.getweight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.hideforinsertionmarker_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.hideforinsertionmarker_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.initview_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.isclickableinflyout_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.isclickableinflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.isshownwhencollapsed_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.isshownwhencollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.offsetinblock_property",
- "id": "reference/js/blockly.icons_namespace.icon_class.offsetinblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.onclick_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.onlocationchange_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.onlocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.onnodeblur_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.onnodeblur_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.onnodefocus_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.onnodefocus_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.setoffsetinblock_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.setoffsetinblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.settooltip_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.settooltip_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.sourceblock_property",
- "id": "reference/js/blockly.icons_namespace.icon_class.sourceblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.svgroot_property",
- "id": "reference/js/blockly.icons_namespace.icon_class.svgroot_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.tooltip_property",
- "id": "reference/js/blockly.icons_namespace.icon_class.tooltip_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.updatecollapsed_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.updatecollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.updateeditable_1_method",
- "id": "reference/js/blockly.icons_namespace.icon_class.updateeditable_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icon_class.workspacelocation_property",
- "id": "reference/js/blockly.icons_namespace.icon_class.workspacelocation_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class",
- "id": "reference/js/blockly.icons_namespace.icontype_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class.comment_property",
- "id": "reference/js/blockly.icons_namespace.icontype_class.comment_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class.equals_1_method",
- "id": "reference/js/blockly.icons_namespace.icontype_class.equals_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class.mutator_property",
- "id": "reference/js/blockly.icons_namespace.icontype_class.mutator_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class.tostring_1_method",
- "id": "reference/js/blockly.icons_namespace.icontype_class.tostring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.icontype_class.warning_property",
- "id": "reference/js/blockly.icons_namespace.icontype_class.warning_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.applycolour_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.bubbleisvisible_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.bubbleisvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.dispose_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.getbubble_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getbubble_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.getsize_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.gettype_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.getweight_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getweight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.getworkspace_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.getworkspace_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.initview_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.isclickableinflyout_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.isclickableinflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.onclick_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.onlocationchange_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.onlocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.setbubblevisible_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.setbubblevisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.sourceblock_property",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.sourceblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.type_property",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.updatecollapsed_1_method",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.updatecollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.mutatoricon_class.weight_property",
- "id": "reference/js/blockly.icons_namespace.mutatoricon_class.weight_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.registry_namespace",
- "id": "reference/js/blockly.icons_namespace.registry_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.registry_namespace.register_1_function",
- "id": "reference/js/blockly.icons_namespace.registry_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.registry_namespace.unregister_1_function",
- "id": "reference/js/blockly.icons_namespace.registry_namespace.unregister_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class",
- "id": "reference/js/blockly.icons_namespace.warningicon_class"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.applycolour_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.bubbleisvisible_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.bubbleisvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.dispose_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.getbubble_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.getbubble_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.getsize_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.getsize_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.gettype_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.gettype_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.getweight_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.getweight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.initview_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.initview_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.isclickableinflyout_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.isclickableinflyout_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.isshownwhencollapsed_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.isshownwhencollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.onclick_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.onclick_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.onlocationchange_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.onlocationchange_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.setbubblevisible_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.setbubblevisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.sourceblock_property",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.sourceblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.type_property",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.updatecollapsed_1_method",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.updatecollapsed_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.icons_namespace.warningicon_class.weight_property",
- "id": "reference/js/blockly.icons_namespace.warningicon_class.weight_property"
- },
- ],
- },
- {
- "type": "category",
- "label": "ICopyable",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.icopyable_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.icopyable_namespace.icopydata_interface",
- "id": "reference/js/blockly.icopyable_namespace.icopydata_interface"
- },
- {
- "type": "doc",
- "label": "blockly.icopyable_namespace.icopydata_interface.paster_propertysignature",
- "id": "reference/js/blockly.icopyable_namespace.icopydata_interface.paster_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "inputs",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.inputs_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.dummyinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.inputs_namespace.dummyinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.endrowinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.inputs_namespace.endrowinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class._constructor__1_constructor",
- "id": "reference/js/blockly.inputs_namespace.input_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.statementinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.inputs_namespace.statementinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.valueinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.inputs_namespace.valueinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.align_enum",
- "id": "reference/js/blockly.inputs_namespace.align_enum"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.dummyinput_class",
- "id": "reference/js/blockly.inputs_namespace.dummyinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.dummyinput_class.name_property",
- "id": "reference/js/blockly.inputs_namespace.dummyinput_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.dummyinput_class.type_property",
- "id": "reference/js/blockly.inputs_namespace.dummyinput_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.endrowinput_class",
- "id": "reference/js/blockly.inputs_namespace.endrowinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.endrowinput_class.name_property",
- "id": "reference/js/blockly.inputs_namespace.endrowinput_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.endrowinput_class.type_property",
- "id": "reference/js/blockly.inputs_namespace.endrowinput_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class",
- "id": "reference/js/blockly.inputs_namespace.input_class"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.align_property",
- "id": "reference/js/blockly.inputs_namespace.input_class.align_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.appendfield_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.appendfield_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.connection_property",
- "id": "reference/js/blockly.inputs_namespace.input_class.connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.dispose_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.fieldrow_property",
- "id": "reference/js/blockly.inputs_namespace.input_class.fieldrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.getshadowdom_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.getshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.getsourceblock_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.getsourceblock_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.init_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.insertfieldat_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.insertfieldat_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.isvisible_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.isvisible_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.makeconnection_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.makeconnection_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.name_property",
- "id": "reference/js/blockly.inputs_namespace.input_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.removefield_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.removefield_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.setalign_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.setalign_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.setcheck_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.setcheck_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.setshadowdom_1_method",
- "id": "reference/js/blockly.inputs_namespace.input_class.setshadowdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.input_class.type_property",
- "id": "reference/js/blockly.inputs_namespace.input_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.inputtypes_enum",
- "id": "reference/js/blockly.inputs_namespace.inputtypes_enum"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.statementinput_class",
- "id": "reference/js/blockly.inputs_namespace.statementinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.statementinput_class.connection_property",
- "id": "reference/js/blockly.inputs_namespace.statementinput_class.connection_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.statementinput_class.name_property",
- "id": "reference/js/blockly.inputs_namespace.statementinput_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.statementinput_class.type_property",
- "id": "reference/js/blockly.inputs_namespace.statementinput_class.type_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.valueinput_class",
- "id": "reference/js/blockly.inputs_namespace.valueinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.valueinput_class.name_property",
- "id": "reference/js/blockly.inputs_namespace.valueinput_class.name_property"
- },
- {
- "type": "doc",
- "label": "blockly.inputs_namespace.valueinput_class.type_property",
- "id": "reference/js/blockly.inputs_namespace.valueinput_class.type_property"
- },
- ],
- },
- {
- "type": "category",
- "label": "layers",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.layers_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.layers_namespace.block_variable",
- "id": "reference/js/blockly.layers_namespace.block_variable"
- },
- {
- "type": "doc",
- "label": "blockly.layers_namespace.bubble_variable",
- "id": "reference/js/blockly.layers_namespace.bubble_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "libraryBlocks",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.libraryblocks_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.blocks_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.blocks_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.colour_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.colour_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.lists_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.lists_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.logic_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.logic_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.loops_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.loops_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.math_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.math_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.procedures_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.procedures_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.texts_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.texts_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.variables_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.variables_variable"
- },
- {
- "type": "doc",
- "label": "blockly.libraryblocks_namespace.variablesdynamic_variable",
- "id": "reference/js/blockly.libraryblocks_namespace.variablesdynamic_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "MetricsManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.metricsmanager_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.absolutemetrics_interface",
- "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.absolutemetrics_interface.left_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface.left_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.absolutemetrics_interface.top_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.absolutemetrics_interface.top_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.containerregion_interface",
- "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.containerregion_interface.height_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.containerregion_interface.left_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.left_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.containerregion_interface.top_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.top_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.containerregion_interface.width_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.containerregion_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.fixededges_interface",
- "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.fixededges_interface.bottom_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.bottom_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.fixededges_interface.left_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.left_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.fixededges_interface.right_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.right_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.fixededges_interface.top_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.fixededges_interface.top_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface",
- "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.height_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.position_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.position_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.toolboxmetrics_interface.width_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.toolboxmetrics_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.uimetrics_interface",
- "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.uimetrics_interface.absolutemetrics_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.absolutemetrics_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.uimetrics_interface.toolboxmetrics_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.toolboxmetrics_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.metricsmanager_namespace.uimetrics_interface.viewmetrics_propertysignature",
- "id": "reference/js/blockly.metricsmanager_namespace.uimetrics_interface.viewmetrics_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Names",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.names_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.names_namespace.nametype_enum",
- "id": "reference/js/blockly.names_namespace.nametype_enum"
- },
- ],
- },
- {
- "type": "category",
- "label": "Options",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.options_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.options_namespace.gridoptions_interface",
- "id": "reference/js/blockly.options_namespace.gridoptions_interface"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.gridoptions_interface.colour_propertysignature",
- "id": "reference/js/blockly.options_namespace.gridoptions_interface.colour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.gridoptions_interface.length_propertysignature",
- "id": "reference/js/blockly.options_namespace.gridoptions_interface.length_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.gridoptions_interface.snap_propertysignature",
- "id": "reference/js/blockly.options_namespace.gridoptions_interface.snap_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.gridoptions_interface.spacing_propertysignature",
- "id": "reference/js/blockly.options_namespace.gridoptions_interface.spacing_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.moveoptions_interface",
- "id": "reference/js/blockly.options_namespace.moveoptions_interface"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.moveoptions_interface.drag_propertysignature",
- "id": "reference/js/blockly.options_namespace.moveoptions_interface.drag_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.moveoptions_interface.scrollbars_propertysignature",
- "id": "reference/js/blockly.options_namespace.moveoptions_interface.scrollbars_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.moveoptions_interface.wheel_propertysignature",
- "id": "reference/js/blockly.options_namespace.moveoptions_interface.wheel_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.scrollbaroptions_interface",
- "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.scrollbaroptions_interface.horizontal_propertysignature",
- "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface.horizontal_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.scrollbaroptions_interface.vertical_propertysignature",
- "id": "reference/js/blockly.options_namespace.scrollbaroptions_interface.vertical_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.controls_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.controls_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.maxscale_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.maxscale_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.minscale_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.minscale_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.pinch_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.pinch_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.scalespeed_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.scalespeed_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.startscale_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.startscale_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.options_namespace.zoomoptions_interface.wheel_propertysignature",
- "id": "reference/js/blockly.options_namespace.zoomoptions_interface.wheel_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Procedures",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.procedures_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.allprocedures_1_function",
- "id": "reference/js/blockly.procedures_namespace.allprocedures_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.category_name_variable",
- "id": "reference/js/blockly.procedures_namespace.category_name_variable"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.default_arg_variable",
- "id": "reference/js/blockly.procedures_namespace.default_arg_variable"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.findlegalname_1_function",
- "id": "reference/js/blockly.procedures_namespace.findlegalname_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.flyoutcategory_1_function",
- "id": "reference/js/blockly.procedures_namespace.flyoutcategory_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.flyoutcategory_2_function",
- "id": "reference/js/blockly.procedures_namespace.flyoutcategory_2_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.getcallers_1_function",
- "id": "reference/js/blockly.procedures_namespace.getcallers_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.getdefinition_1_function",
- "id": "reference/js/blockly.procedures_namespace.getdefinition_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.getid_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.getid_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.getname_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.getname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.gettypes_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.gettypes_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.savestate_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.savestate_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.setname_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.setname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.setproceduremodel_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.setproceduremodel_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iparametermodel_interface.settypes_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iparametermodel_interface.settypes_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iprocedureblock_interface",
- "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iprocedureblock_interface.doprocedureupdate_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.doprocedureupdate_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iprocedureblock_interface.getproceduremodel_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.getproceduremodel_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iprocedureblock_interface.isproceduredef_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iprocedureblock_interface.isproceduredef_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremap_interface",
- "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremap_interface.add_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface.add_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremap_interface.getprocedures_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremap_interface.getprocedures_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.deleteparameter_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.deleteparameter_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getenabled_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getenabled_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getid_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getid_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getname_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getparameter_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getparameter_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getparameters_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getparameters_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.getreturntypes_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.getreturntypes_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.insertparameter_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.insertparameter_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.savestate_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.savestate_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.setenabled_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setenabled_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.setname_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setname_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.iproceduremodel_interface.setreturntypes_1_methodsignature",
- "id": "reference/js/blockly.procedures_namespace.iproceduremodel_interface.setreturntypes_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.isnameused_1_function",
- "id": "reference/js/blockly.procedures_namespace.isnameused_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.isprocedureblock_1_function",
- "id": "reference/js/blockly.procedures_namespace.isprocedureblock_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.mutatecallers_1_function",
- "id": "reference/js/blockly.procedures_namespace.mutatecallers_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class.add_1_method",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.add_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class.clear_1_method",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class.delete_1_method",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.delete_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class.getprocedures_1_method",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.getprocedures_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.observableproceduremap_class.set_1_method",
- "id": "reference/js/blockly.procedures_namespace.observableproceduremap_class.set_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.proceduretuple_typealias",
- "id": "reference/js/blockly.procedures_namespace.proceduretuple_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.procedures_namespace.rename_1_function",
- "id": "reference/js/blockly.procedures_namespace.rename_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "registry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.registry_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class._constructor__1_constructor",
- "id": "reference/js/blockly.registry_namespace.type_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.default_variable",
- "id": "reference/js/blockly.registry_namespace.default_variable"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.getallitems_1_function",
- "id": "reference/js/blockly.registry_namespace.getallitems_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.getclass_1_function",
- "id": "reference/js/blockly.registry_namespace.getclass_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.getclassfromoptions_1_function",
- "id": "reference/js/blockly.registry_namespace.getclassfromoptions_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.getobject_1_function",
- "id": "reference/js/blockly.registry_namespace.getobject_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.hasitem_1_function",
- "id": "reference/js/blockly.registry_namespace.hasitem_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.register_1_function",
- "id": "reference/js/blockly.registry_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.test_only_variable",
- "id": "reference/js/blockly.registry_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class",
- "id": "reference/js/blockly.registry_namespace.type_class"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.block_dragger_property",
- "id": "reference/js/blockly.registry_namespace.type_class.block_dragger_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.connection_checker_property",
- "id": "reference/js/blockly.registry_namespace.type_class.connection_checker_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.connection_previewer_property",
- "id": "reference/js/blockly.registry_namespace.type_class.connection_previewer_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.cursor_property",
- "id": "reference/js/blockly.registry_namespace.type_class.cursor_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.event_property",
- "id": "reference/js/blockly.registry_namespace.type_class.event_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.field_property",
- "id": "reference/js/blockly.registry_namespace.type_class.field_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.flyout_inflater_property",
- "id": "reference/js/blockly.registry_namespace.type_class.flyout_inflater_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.flyouts_horizontal_toolbox_property",
- "id": "reference/js/blockly.registry_namespace.type_class.flyouts_horizontal_toolbox_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.flyouts_vertical_toolbox_property",
- "id": "reference/js/blockly.registry_namespace.type_class.flyouts_vertical_toolbox_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.input_property",
- "id": "reference/js/blockly.registry_namespace.type_class.input_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.metrics_manager_property",
- "id": "reference/js/blockly.registry_namespace.type_class.metrics_manager_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.renderer_property",
- "id": "reference/js/blockly.registry_namespace.type_class.renderer_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.theme_property",
- "id": "reference/js/blockly.registry_namespace.type_class.theme_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.toolbox_item_property",
- "id": "reference/js/blockly.registry_namespace.type_class.toolbox_item_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.toolbox_property",
- "id": "reference/js/blockly.registry_namespace.type_class.toolbox_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.tostring_1_method",
- "id": "reference/js/blockly.registry_namespace.type_class.tostring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.variable_map_property",
- "id": "reference/js/blockly.registry_namespace.type_class.variable_map_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.type_class.variable_model_property",
- "id": "reference/js/blockly.registry_namespace.type_class.variable_model_property"
- },
- {
- "type": "doc",
- "label": "blockly.registry_namespace.unregister_1_function",
- "id": "reference/js/blockly.registry_namespace.unregister_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "RenderedConnection",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.renderedconnection_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.renderedconnection_namespace.trackedstate_enum",
- "id": "reference/js/blockly.renderedconnection_namespace.trackedstate_enum"
- },
- ],
- },
- {
- "type": "category",
- "label": "renderManagement",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.rendermanagement_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.rendermanagement_namespace.finishqueuedrenders_1_function",
- "id": "reference/js/blockly.rendermanagement_namespace.finishqueuedrenders_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "serialization",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.serialization_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class._constructor__1_constructor",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class._constructor__1_constructor",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class._constructor__1_constructor",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class._constructor__1_constructor",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.append_1_function",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.append_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.clear_1_method",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.load_1_method",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.priority_property",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.priority_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.blockserializer_class.save_1_method",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.blockserializer_class.save_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface.block_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface.block_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.connectionstate_interface.shadow_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.connectionstate_interface.shadow_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.save_1_function",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.save_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.collapsed_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.collapsed_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.data_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.data_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.deletable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.deletable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.disabledreasons_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.disabledreasons_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.editable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.editable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.enabled_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.enabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.extrastate_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.extrastate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.fields_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.fields_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.icons_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.icons_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.id_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.inline_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.inline_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.inputs_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.inputs_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.movable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.movable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.next_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.next_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.type_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.type_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.x_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.x_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.blocks_namespace.state_interface.y_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.blocks_namespace.state_interface.y_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childblock_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childblock_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childstate_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.badconnectioncheck_class.childstate_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.deserializationerror_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.deserializationerror_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.missingblocktype_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingblocktype_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.missingblocktype_class.state_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingblocktype_class.state_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class.block_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class.block_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.missingconnection_class.state_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.missingconnection_class.state_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class.state_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.realchildofshadow_class.state_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.block_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.block_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.state_property",
- "id": "reference/js/blockly.serialization_namespace.exceptions_namespace.unregisteredicon_class.state_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.iserializer_interface",
- "id": "reference/js/blockly.serialization_namespace.iserializer_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.iserializer_interface.clear_1_methodsignature",
- "id": "reference/js/blockly.serialization_namespace.iserializer_interface.clear_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.iserializer_interface.load_1_methodsignature",
- "id": "reference/js/blockly.serialization_namespace.iserializer_interface.load_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.iserializer_interface.priority_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.iserializer_interface.priority_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.iserializer_interface.save_1_methodsignature",
- "id": "reference/js/blockly.serialization_namespace.iserializer_interface.save_1_methodsignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.priorities_namespace",
- "id": "reference/js/blockly.serialization_namespace.priorities_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.priorities_namespace.blocks_variable",
- "id": "reference/js/blockly.serialization_namespace.priorities_namespace.blocks_variable"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.priorities_namespace.procedures_variable",
- "id": "reference/js/blockly.serialization_namespace.priorities_namespace.procedures_variable"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.priorities_namespace.variables_variable",
- "id": "reference/js/blockly.serialization_namespace.priorities_namespace.variables_variable"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.priorities_namespace.workspace_comments_variable",
- "id": "reference/js/blockly.serialization_namespace.priorities_namespace.workspace_comments_variable"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.loadprocedure_1_function",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.loadprocedure_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.id_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.name_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.parameterstate_interface.types_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.parameterstate_interface.types_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.clear_1_method",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.load_1_method",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.priority_property",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.priority_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.procedureserializer_class.save_1_method",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.procedureserializer_class.save_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.saveprocedure_1_function",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.saveprocedure_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.state_interface",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.state_interface.id_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.state_interface.name_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.state_interface.parameters_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.parameters_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.procedures_namespace.state_interface.returntypes_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.procedures_namespace.state_interface.returntypes_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.registry_namespace",
- "id": "reference/js/blockly.serialization_namespace.registry_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.registry_namespace.register_1_function",
- "id": "reference/js/blockly.serialization_namespace.registry_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.registry_namespace.unregister_1_function",
- "id": "reference/js/blockly.serialization_namespace.registry_namespace.unregister_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.clear_1_method",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.load_1_method",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.priority_property",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.priority_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.variables_namespace.variableserializer_class.save_1_method",
- "id": "reference/js/blockly.serialization_namespace.variables_namespace.variableserializer_class.save_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.append_1_function",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.append_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.save_1_function",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.save_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.collapsed_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.collapsed_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.deletable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.deletable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.editable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.editable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.height_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.height_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.id_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.movable_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.movable_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.text_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.width_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.width_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.x_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.x_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.state_interface.y_propertysignature",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.state_interface.y_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.clear_1_method",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.clear_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.load_1_method",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.load_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.priority_property",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.priority_property"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.save_1_method",
- "id": "reference/js/blockly.serialization_namespace.workspacecomments_namespace.workspacecommentserializer_class.save_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspaces_namespace",
- "id": "reference/js/blockly.serialization_namespace.workspaces_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspaces_namespace.load_1_function",
- "id": "reference/js/blockly.serialization_namespace.workspaces_namespace.load_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.serialization_namespace.workspaces_namespace.save_1_function",
- "id": "reference/js/blockly.serialization_namespace.workspaces_namespace.save_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "ShortcutItems",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.shortcutitems_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.names_enum",
- "id": "reference/js/blockly.shortcutitems_namespace.names_enum"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registercopy_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registercopy_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registercut_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registercut_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registerdelete_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registerdelete_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registerescape_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registerescape_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registerpaste_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registerpaste_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registerredo_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registerredo_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutitems_namespace.registerundo_1_function",
- "id": "reference/js/blockly.shortcutitems_namespace.registerundo_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "ShortcutRegistry",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.shortcutregistry_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.allowcollision_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.allowcollision_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.callback_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.callback_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.keycodes_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.keycodes_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.metadata_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.metadata_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.name_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.keyboardshortcut_interface.preconditionfn_propertysignature",
- "id": "reference/js/blockly.shortcutregistry_namespace.keyboardshortcut_interface.preconditionfn_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.shortcutregistry_namespace.modifierkeys_enum",
- "id": "reference/js/blockly.shortcutregistry_namespace.modifierkeys_enum"
- },
- ],
- },
- {
- "type": "category",
- "label": "Theme",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.theme_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.theme_namespace.blockstyle_interface",
- "id": "reference/js/blockly.theme_namespace.blockstyle_interface"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.blockstyle_interface.colourprimary_propertysignature",
- "id": "reference/js/blockly.theme_namespace.blockstyle_interface.colourprimary_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.blockstyle_interface.coloursecondary_propertysignature",
- "id": "reference/js/blockly.theme_namespace.blockstyle_interface.coloursecondary_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.blockstyle_interface.colourtertiary_propertysignature",
- "id": "reference/js/blockly.theme_namespace.blockstyle_interface.colourtertiary_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.blockstyle_interface.hat_propertysignature",
- "id": "reference/js/blockly.theme_namespace.blockstyle_interface.hat_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.categorystyle_interface",
- "id": "reference/js/blockly.theme_namespace.categorystyle_interface"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.categorystyle_interface.colour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.categorystyle_interface.colour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.cursorcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.cursorcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.flyoutbackgroundcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutbackgroundcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.flyoutforegroundcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutforegroundcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.flyoutopacity_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.flyoutopacity_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.insertionmarkercolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.insertionmarkercolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.insertionmarkeropacity_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.insertionmarkeropacity_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.markercolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.markercolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.replacementglowcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.replacementglowcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.replacementglowopacity_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.replacementglowopacity_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.scrollbarcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.scrollbarcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.scrollbaropacity_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.scrollbaropacity_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.selectedglowcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.selectedglowcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.selectedglowopacity_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.selectedglowopacity_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.toolboxbackgroundcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.toolboxbackgroundcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.toolboxforegroundcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.toolboxforegroundcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.componentstyle_interface.workspacebackgroundcolour_propertysignature",
- "id": "reference/js/blockly.theme_namespace.componentstyle_interface.workspacebackgroundcolour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.fontstyle_interface",
- "id": "reference/js/blockly.theme_namespace.fontstyle_interface"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.fontstyle_interface.family_propertysignature",
- "id": "reference/js/blockly.theme_namespace.fontstyle_interface.family_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.fontstyle_interface.size_propertysignature",
- "id": "reference/js/blockly.theme_namespace.fontstyle_interface.size_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.theme_namespace.fontstyle_interface.weight_propertysignature",
- "id": "reference/js/blockly.theme_namespace.fontstyle_interface.weight_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ThemeManager",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.thememanager_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.thememanager_namespace.component_interface",
- "id": "reference/js/blockly.thememanager_namespace.component_interface"
- },
- {
- "type": "doc",
- "label": "blockly.thememanager_namespace.component_interface.element_propertysignature",
- "id": "reference/js/blockly.thememanager_namespace.component_interface.element_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.thememanager_namespace.component_interface.propertyname_propertysignature",
- "id": "reference/js/blockly.thememanager_namespace.component_interface.propertyname_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Themes",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.themes_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.themes_namespace.classic_variable",
- "id": "reference/js/blockly.themes_namespace.classic_variable"
- },
- {
- "type": "doc",
- "label": "blockly.themes_namespace.zelos_variable",
- "id": "reference/js/blockly.themes_namespace.zelos_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "thrasos",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.thrasos_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderer_class._constructor__1_constructor",
- "id": "reference/js/blockly.thrasos_namespace.renderer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class._constructor__1_constructor",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderer_class",
- "id": "reference/js/blockly.thrasos_namespace.renderer_class"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderer_class.makerenderinfo__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderer_class.makerenderinfo__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.addelemspacing__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.addelemspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.finalize__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.finalize__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.getelemcenterline__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getelemcenterline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.getinrowspacing__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getinrowspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.getrenderer_1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getrenderer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.getspacerrowheight__1_method",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.getspacerrowheight__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.thrasos_namespace.renderinfo_class.renderer__property",
- "id": "reference/js/blockly.thrasos_namespace.renderinfo_class.renderer__property"
- },
- ],
- },
- {
- "type": "category",
- "label": "Toast",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toast_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toast_namespace.assertiveness_enum",
- "id": "reference/js/blockly.toast_namespace.assertiveness_enum"
- },
- ],
- },
- {
- "type": "category",
- "label": "ToolboxCategory",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolboxcategory_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.closedicon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.container_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.container_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.contents_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.contents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.icon_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.icon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.label_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.label_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.openicon_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.openicon_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.row_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.row_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.rowcontentcontainer_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxcategory_namespace.cssconfig_interface.selected_propertysignature",
- "id": "reference/js/blockly.toolboxcategory_namespace.cssconfig_interface.selected_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "ToolboxSeparator",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.toolboxseparator_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_namespace.cssconfig_interface",
- "id": "reference/js/blockly.toolboxseparator_namespace.cssconfig_interface"
- },
- {
- "type": "doc",
- "label": "blockly.toolboxseparator_namespace.cssconfig_interface.container_propertysignature",
- "id": "reference/js/blockly.toolboxseparator_namespace.cssconfig_interface.container_propertysignature"
- },
- ],
- },
- {
- "type": "category",
- "label": "Tooltip",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.tooltip_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.bindmouseevents_1_function",
- "id": "reference/js/blockly.tooltip_namespace.bindmouseevents_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.createdom_1_function",
- "id": "reference/js/blockly.tooltip_namespace.createdom_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.customtooltip_typealias",
- "id": "reference/js/blockly.tooltip_namespace.customtooltip_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.getcustomtooltip_1_function",
- "id": "reference/js/blockly.tooltip_namespace.getcustomtooltip_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.getdiv_1_function",
- "id": "reference/js/blockly.tooltip_namespace.getdiv_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.gettooltipofobject_1_function",
- "id": "reference/js/blockly.tooltip_namespace.gettooltipofobject_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.hide_1_function",
- "id": "reference/js/blockly.tooltip_namespace.hide_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.hover_ms_variable",
- "id": "reference/js/blockly.tooltip_namespace.hover_ms_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.isvisible_1_function",
- "id": "reference/js/blockly.tooltip_namespace.isvisible_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.limit_variable",
- "id": "reference/js/blockly.tooltip_namespace.limit_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.margins_variable",
- "id": "reference/js/blockly.tooltip_namespace.margins_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.offset_x_variable",
- "id": "reference/js/blockly.tooltip_namespace.offset_x_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.offset_y_variable",
- "id": "reference/js/blockly.tooltip_namespace.offset_y_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.radius_ok_variable",
- "id": "reference/js/blockly.tooltip_namespace.radius_ok_variable"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.setcustomtooltip_1_function",
- "id": "reference/js/blockly.tooltip_namespace.setcustomtooltip_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.tipinfo_typealias",
- "id": "reference/js/blockly.tooltip_namespace.tipinfo_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.tooltip_namespace.unbindmouseevents_1_function",
- "id": "reference/js/blockly.tooltip_namespace.unbindmouseevents_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "Touch",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.touch_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.touch_namespace.checktouchidentifier_1_function",
- "id": "reference/js/blockly.touch_namespace.checktouchidentifier_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.touch_namespace.cleartouchidentifier_1_function",
- "id": "reference/js/blockly.touch_namespace.cleartouchidentifier_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.touch_namespace.gettouchidentifierfromevent_1_function",
- "id": "reference/js/blockly.touch_namespace.gettouchidentifierfromevent_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.touch_namespace.shouldhandleevent_1_function",
- "id": "reference/js/blockly.touch_namespace.shouldhandleevent_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.touch_namespace.touch_enabled_variable",
- "id": "reference/js/blockly.touch_namespace.touch_enabled_variable"
- },
- {
- "type": "doc",
- "label": "blockly.touch_namespace.touch_map_variable",
- "id": "reference/js/blockly.touch_namespace.touch_map_variable"
- },
- ],
- },
- {
- "type": "doc",
- "label": "uiPosition",
- "id": "reference/js/blockly.uiposition_namespace"
- },
- {
- "type": "category",
- "label": "utils",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.utils_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class._constructor__1_constructor",
- "id": "reference/js/blockly.utils_namespace.coordinate_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class._constructor__1_constructor",
- "id": "reference/js/blockly.utils_namespace.rect_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class._constructor__1_constructor",
- "id": "reference/js/blockly.utils_namespace.size_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.aria_namespace",
- "id": "reference/js/blockly.utils_namespace.aria_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.aria_namespace.role_enum",
- "id": "reference/js/blockly.utils_namespace.aria_namespace.role_enum"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.aria_namespace.setrole_1_function",
- "id": "reference/js/blockly.utils_namespace.aria_namespace.setrole_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.aria_namespace.setstate_1_function",
- "id": "reference/js/blockly.utils_namespace.aria_namespace.setstate_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.aria_namespace.state_enum",
- "id": "reference/js/blockly.utils_namespace.aria_namespace.state_enum"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.array_namespace",
- "id": "reference/js/blockly.utils_namespace.array_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.bind_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.bind_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.data_typealias",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.data_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.getscrolldeltapixels_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.getscrolldeltapixels_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.isrightbutton_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.isrightbutton_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.istargetinput_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.istargetinput_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.mousetosvg_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.mousetosvg_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.browserevents_namespace.unbind_1_function",
- "id": "reference/js/blockly.utils_namespace.browserevents_namespace.unbind_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace",
- "id": "reference/js/blockly.utils_namespace.colour_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.blend_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.blend_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.hextorgb_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.hextorgb_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.hsvtohex_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.hsvtohex_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.huetohex_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.huetohex_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.names_variable",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.names_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.parse_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.parse_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.colour_namespace.rgbtohex_1_function",
- "id": "reference/js/blockly.utils_namespace.colour_namespace.rgbtohex_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class",
- "id": "reference/js/blockly.utils_namespace.coordinate_class"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.clone_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.clone_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.difference_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.difference_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.distance_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.distance_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.equals_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.equals_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.magnitude_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.magnitude_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.scale_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.scale_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.sum_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.sum_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.translate_1_method",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.translate_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.x_property",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.x_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.coordinate_class.y_property",
- "id": "reference/js/blockly.utils_namespace.coordinate_class.y_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.deprecation_namespace",
- "id": "reference/js/blockly.utils_namespace.deprecation_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace",
- "id": "reference/js/blockly.utils_namespace.dom_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.addclass_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.addclass_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.createsvgelement_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.createsvgelement_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.getfasttextwidth_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.getfasttextwidth_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.getfasttextwidthwithsizestring_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.getfasttextwidthwithsizestring_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.gettextwidth_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.gettextwidth_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.hasclass_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.hasclass_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.html_ns_variable",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.html_ns_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.insertafter_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.insertafter_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.measurefontmetrics_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.measurefontmetrics_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.nodetype_enum",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.nodetype_enum"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.removeclass_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.removeclass_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.removeclasses_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.removeclasses_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.removenode_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.removenode_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.setcsstransform_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.setcsstransform_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.starttextwidthcache_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.starttextwidthcache_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.stoptextwidthcache_1_function",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.stoptextwidthcache_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.svg_ns_variable",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.svg_ns_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.dom_namespace.xlink_ns_variable",
- "id": "reference/js/blockly.utils_namespace.dom_namespace.xlink_ns_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.apply_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.apply_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.buildtooltipfordropdown_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.buildtooltipfordropdown_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.buildtooltipwithfieldtext_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.buildtooltipwithfieldtext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.isregistered_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.isregistered_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.register_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.register_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.registermixin_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.registermixin_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.registermutator_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.registermutator_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.test_only_variable",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.extensions_namespace.unregister_1_function",
- "id": "reference/js/blockly.utils_namespace.extensions_namespace.unregister_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.idgenerator_namespace",
- "id": "reference/js/blockly.utils_namespace.idgenerator_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.idgenerator_namespace.genuid_1_function",
- "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.genuid_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.idgenerator_namespace.getnextuniqueid_1_function",
- "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.getnextuniqueid_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.idgenerator_namespace.test_only_variable",
- "id": "reference/js/blockly.utils_namespace.idgenerator_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.keycodes_enum",
- "id": "reference/js/blockly.utils_namespace.keycodes_enum"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.math_namespace",
- "id": "reference/js/blockly.utils_namespace.math_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.math_namespace.clamp_1_function",
- "id": "reference/js/blockly.utils_namespace.math_namespace.clamp_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.math_namespace.todegrees_1_function",
- "id": "reference/js/blockly.utils_namespace.math_namespace.todegrees_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.math_namespace.toradians_1_function",
- "id": "reference/js/blockly.utils_namespace.math_namespace.toradians_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface",
- "id": "reference/js/blockly.utils_namespace.metrics_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.absoluteleft_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.absoluteleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.absolutetop_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.absolutetop_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.contentheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.contentheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.contentleft_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.contentleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.contenttop_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.contenttop_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.contentwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.contentwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.flyoutheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.flyoutheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.flyoutwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.flyoutwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.scrollheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.scrollleft_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.scrolltop_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.scrolltop_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.scrollwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.scrollwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.svgheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.svgheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.svgwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.svgwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.toolboxheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.toolboxposition_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxposition_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.toolboxwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.toolboxwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.viewheight_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.viewheight_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.viewleft_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.viewleft_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.viewtop_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.viewtop_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.metrics_interface.viewwidth_propertysignature",
- "id": "reference/js/blockly.utils_namespace.metrics_interface.viewwidth_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.object_namespace",
- "id": "reference/js/blockly.utils_namespace.object_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.object_namespace.deepmerge_1_function",
- "id": "reference/js/blockly.utils_namespace.object_namespace.deepmerge_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.parsing_namespace",
- "id": "reference/js/blockly.utils_namespace.parsing_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.parsing_namespace.checkmessagereferences_1_function",
- "id": "reference/js/blockly.utils_namespace.parsing_namespace.checkmessagereferences_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.parsing_namespace.parseblockcolour_1_function",
- "id": "reference/js/blockly.utils_namespace.parsing_namespace.parseblockcolour_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function",
- "id": "reference/js/blockly.utils_namespace.parsing_namespace.replacemessagereferences_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.parsing_namespace.tokenizeinterpolation_1_function",
- "id": "reference/js/blockly.utils_namespace.parsing_namespace.tokenizeinterpolation_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class",
- "id": "reference/js/blockly.utils_namespace.rect_class"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.bottom_property",
- "id": "reference/js/blockly.utils_namespace.rect_class.bottom_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.clone_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.clone_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.contains_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.contains_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.createfrompoint_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.createfrompoint_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.equals_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.equals_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.from_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.from_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.getheight_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.getheight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.getorigin_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.getorigin_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.getwidth_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.getwidth_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.intersects_1_method",
- "id": "reference/js/blockly.utils_namespace.rect_class.intersects_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.left_property",
- "id": "reference/js/blockly.utils_namespace.rect_class.left_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.right_property",
- "id": "reference/js/blockly.utils_namespace.rect_class.right_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.rect_class.top_property",
- "id": "reference/js/blockly.utils_namespace.rect_class.top_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class",
- "id": "reference/js/blockly.utils_namespace.size_class"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class.equals_1_method",
- "id": "reference/js/blockly.utils_namespace.size_class.equals_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class.height_property",
- "id": "reference/js/blockly.utils_namespace.size_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class.max_1_method",
- "id": "reference/js/blockly.utils_namespace.size_class.max_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class.min_1_method",
- "id": "reference/js/blockly.utils_namespace.size_class.min_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.size_class.width_property",
- "id": "reference/js/blockly.utils_namespace.size_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace",
- "id": "reference/js/blockly.utils_namespace.string_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace.commonwordprefix_1_function",
- "id": "reference/js/blockly.utils_namespace.string_namespace.commonwordprefix_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace.commonwordsuffix_1_function",
- "id": "reference/js/blockly.utils_namespace.string_namespace.commonwordsuffix_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace.isnumber_1_function",
- "id": "reference/js/blockly.utils_namespace.string_namespace.isnumber_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace.shorteststringlength_1_function",
- "id": "reference/js/blockly.utils_namespace.string_namespace.shorteststringlength_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.string_namespace.wrap_1_function",
- "id": "reference/js/blockly.utils_namespace.string_namespace.wrap_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace",
- "id": "reference/js/blockly.utils_namespace.style_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getborderbox_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getborderbox_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getcomputedstyle_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getcomputedstyle_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getcontaineroffsettoscrollinto_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getcontaineroffsettoscrollinto_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getpageoffset_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getpageoffset_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getsize_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getsize_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.getviewportpageoffset_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.getviewportpageoffset_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.scrollintocontainerview_1_function",
- "id": "reference/js/blockly.utils_namespace.style_namespace.scrollintocontainerview_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.style_namespace.test_only_variable",
- "id": "reference/js/blockly.utils_namespace.style_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svg_class",
- "id": "reference/js/blockly.utils_namespace.svg_class"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svg_class.tostring_1_method",
- "id": "reference/js/blockly.utils_namespace.svg_class.tostring_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.getdocumentscroll_1_function",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getdocumentscroll_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.getinjectiondivxy_1_function",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getinjectiondivxy_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.getrelativexy_1_function",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.getrelativexy_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.screentowscoordinates_1_function",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.screentowscoordinates_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.test_only_variable",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgmath_namespace.wstoscreencoordinates_1_function",
- "id": "reference/js/blockly.utils_namespace.svgmath_namespace.wstoscreencoordinates_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.arc_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.arc_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.curve_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.curve_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.line_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.line_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.lineonaxis_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.lineonaxis_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.lineto_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.lineto_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.moveby_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.moveby_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.moveto_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.moveto_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.svgpaths_namespace.point_1_function",
- "id": "reference/js/blockly.utils_namespace.svgpaths_namespace.point_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.blockxml_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.blockxml_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.collapsed_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.collapsed_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.data_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.data_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabled_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabledreasons_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.disabledreasons_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.enabled_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.enabled_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.extrastate_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.extrastate_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.fields_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.fields_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.gap_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.gap_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.icons_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.icons_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.id_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inline_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inline_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inputs_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.inputs_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.next_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.next_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.blockinfo_interface.type_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.blockinfo_interface.type_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.callbackkey_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.callbackkey_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.text_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttoninfo_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.buttonorlabelinfo_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.buttonorlabelinfo_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.categoryinfo_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.categoryinfo_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.categorystyle_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.categorystyle_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.colour_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.colour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.cssconfig_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.cssconfig_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.custom_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.custom_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.expanded_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.expanded_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.hidden_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.hidden_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.id_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.dynamiccategoryinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.flyoutdefinition_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutdefinition_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.flyoutiteminfo_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutiteminfo_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.flyoutiteminfoarray_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.flyoutiteminfoarray_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.id_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.labelinfo_interface.text_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.labelinfo_interface.text_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.parsetoolboxtree_1_function",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.parsetoolboxtree_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.position_enum",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.position_enum"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.cssconfig_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.cssconfig_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.gap_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.gap_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.id_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.separatorinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.categorystyle_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.categorystyle_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.colour_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.colour_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.contents_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.contents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.cssconfig_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.cssconfig_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.expanded_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.expanded_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.hidden_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.hidden_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.id_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.id_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.name_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.staticcategoryinfo_interface.name_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.test_only_variable",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.toolboxdefinition_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxdefinition_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.contents_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.contents_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.kind_propertysignature",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxinfo_interface.kind_propertysignature"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.toolbox_namespace.toolboxiteminfo_typealias",
- "id": "reference/js/blockly.utils_namespace.toolbox_namespace.toolboxiteminfo_typealias"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.android_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.android_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.gecko_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.gecko_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.ipad_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.ipad_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.iphone_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.iphone_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.javafx_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.javafx_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.mac_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.mac_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.mobile_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.mobile_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.useragent_namespace.raw_variable",
- "id": "reference/js/blockly.utils_namespace.useragent_namespace.raw_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace",
- "id": "reference/js/blockly.utils_namespace.xml_namespace"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.createelement_1_function",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.createelement_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.createtextnode_1_function",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.createtextnode_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.domtotext_1_function",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.domtotext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.injectdependencies_1_function",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.injectdependencies_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.name_space_variable",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.name_space_variable"
- },
- {
- "type": "doc",
- "label": "blockly.utils_namespace.xml_namespace.texttodom_1_function",
- "id": "reference/js/blockly.utils_namespace.xml_namespace.texttodom_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "Variables",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.variables_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.variables_namespace.alldevelopervariables_1_function",
- "id": "reference/js/blockly.variables_namespace.alldevelopervariables_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.allusedvarmodels_1_function",
- "id": "reference/js/blockly.variables_namespace.allusedvarmodels_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.category_name_variable",
- "id": "reference/js/blockly.variables_namespace.category_name_variable"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.createvariablebuttonhandler_1_function",
- "id": "reference/js/blockly.variables_namespace.createvariablebuttonhandler_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.deletevariable_1_function",
- "id": "reference/js/blockly.variables_namespace.deletevariable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.flyoutcategory_1_function",
- "id": "reference/js/blockly.variables_namespace.flyoutcategory_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.flyoutcategory_2_function",
- "id": "reference/js/blockly.variables_namespace.flyoutcategory_2_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.flyoutcategoryblocks_1_function",
- "id": "reference/js/blockly.variables_namespace.flyoutcategoryblocks_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.generateuniquename_1_function",
- "id": "reference/js/blockly.variables_namespace.generateuniquename_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.generateuniquenamefromoptions_1_function",
- "id": "reference/js/blockly.variables_namespace.generateuniquenamefromoptions_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.generatevariablefielddom_1_function",
- "id": "reference/js/blockly.variables_namespace.generatevariablefielddom_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.getorcreatevariablepackage_1_function",
- "id": "reference/js/blockly.variables_namespace.getorcreatevariablepackage_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.getvariable_1_function",
- "id": "reference/js/blockly.variables_namespace.getvariable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.getvariableusesbyid_1_function",
- "id": "reference/js/blockly.variables_namespace.getvariableusesbyid_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.nameusedwithanytype_1_function",
- "id": "reference/js/blockly.variables_namespace.nameusedwithanytype_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.promptname_1_function",
- "id": "reference/js/blockly.variables_namespace.promptname_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.renamevariable_1_function",
- "id": "reference/js/blockly.variables_namespace.renamevariable_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.test_only_variable",
- "id": "reference/js/blockly.variables_namespace.test_only_variable"
- },
- {
- "type": "doc",
- "label": "blockly.variables_namespace.var_letter_options_variable",
- "id": "reference/js/blockly.variables_namespace.var_letter_options_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "VariablesDynamic",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.variablesdynamic_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.category_name_variable",
- "id": "reference/js/blockly.variablesdynamic_namespace.category_name_variable"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.flyoutcategory_1_function",
- "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategory_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.flyoutcategory_2_function",
- "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategory_2_function"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.flyoutcategoryblocks_1_function",
- "id": "reference/js/blockly.variablesdynamic_namespace.flyoutcategoryblocks_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_colour_variable",
- "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_colour_variable"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_number_variable",
- "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_number_variable"
- },
- {
- "type": "doc",
- "label": "blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_string_variable",
- "id": "reference/js/blockly.variablesdynamic_namespace.oncreatevariablebuttonclick_string_variable"
- },
- ],
- },
- {
- "type": "category",
- "label": "WidgetDiv",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.widgetdiv_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.createdom_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.createdom_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.getdiv_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.getdiv_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.hide_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.hide_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.hideifowner_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.hideifowner_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.hideifownerisinworkspace_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.hideifownerisinworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.isvisible_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.isvisible_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.repositionforwindowresize_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.repositionforwindowresize_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.widgetdiv_namespace.show_1_function",
- "id": "reference/js/blockly.widgetdiv_namespace.show_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "Xml",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.xml_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.xml_namespace.appenddomtoworkspace_1_function",
- "id": "reference/js/blockly.xml_namespace.appenddomtoworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.blocktodom_1_function",
- "id": "reference/js/blockly.xml_namespace.blocktodom_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.blocktodomwithxy_1_function",
- "id": "reference/js/blockly.xml_namespace.blocktodomwithxy_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.clearworkspaceandloadfromxml_1_function",
- "id": "reference/js/blockly.xml_namespace.clearworkspaceandloadfromxml_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.deletenext_1_function",
- "id": "reference/js/blockly.xml_namespace.deletenext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.domtoblock_1_function",
- "id": "reference/js/blockly.xml_namespace.domtoblock_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.domtoprettytext_1_function",
- "id": "reference/js/blockly.xml_namespace.domtoprettytext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.domtotext_1_function",
- "id": "reference/js/blockly.xml_namespace.domtotext_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.domtovariables_1_function",
- "id": "reference/js/blockly.xml_namespace.domtovariables_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.domtoworkspace_1_function",
- "id": "reference/js/blockly.xml_namespace.domtoworkspace_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.loadworkspacecomment_1_function",
- "id": "reference/js/blockly.xml_namespace.loadworkspacecomment_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.saveworkspacecomment_1_function",
- "id": "reference/js/blockly.xml_namespace.saveworkspacecomment_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.variablestodom_1_function",
- "id": "reference/js/blockly.xml_namespace.variablestodom_1_function"
- },
- {
- "type": "doc",
- "label": "blockly.xml_namespace.workspacetodom_1_function",
- "id": "reference/js/blockly.xml_namespace.workspacetodom_1_function"
- },
- ],
- },
- {
- "type": "category",
- "label": "zelos",
- "link": {
- "type": "doc",
- "id": "reference/js/blockly.zelos_namespace"
- },
- "items": [
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.bottomrow_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.bottomrow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.drawer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.renderer_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.rightconnectionshape_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.statementinput_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.statementinput_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.toprow_class._constructor__1_constructor",
- "id": "reference/js/blockly.zelos_namespace.toprow_class._constructor__1_constructor"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.bottomrow_class",
- "id": "reference/js/blockly.zelos_namespace.bottomrow_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.bottomrow_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.zelos_namespace.bottomrow_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.bottomrow_class.hasleftsquarecorner_1_method",
- "id": "reference/js/blockly.zelos_namespace.bottomrow_class.hasleftsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.bottomrow_class.hasrightsquarecorner_1_method",
- "id": "reference/js/blockly.zelos_namespace.bottomrow_class.hasrightsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.createdom_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.createdom_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.cursor_colour_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.cursor_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.cursor_radius_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.cursor_radius_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.dispose_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.dispose_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_colour_full_block_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_colour_full_block_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_coloured_div_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_coloured_div_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_no_border_rect_shadow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_dropdown_svg_arrow_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_dropdown_svg_arrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_text_fontfamily_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_text_fontfamily_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_text_fontweight_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_text_fontweight_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.field_textinput_box_shadow_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.field_textinput_box_shadow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.full_block_fields_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.full_block_fields_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.generatesecondarycolour__1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.generatesecondarycolour__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.generatetertiarycolour__1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.generatetertiarycolour__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.getcss__1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.getcss__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.grid_unit_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.grid_unit_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.hexagonal_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.hexagonal_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.init_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.init_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.jagged_teeth_height_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.jagged_teeth_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.jagged_teeth_width_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.jagged_teeth_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makehexagonal_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makehexagonal_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makeinsidecorners_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makeinsidecorners_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makenotch_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makenotch_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makerounded_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makerounded_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makesquared_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makesquared_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.makestarthat_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.makestarthat_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.max_dynamic_connection_shape_width_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.max_dynamic_connection_shape_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.replacement_glow_colour_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacement_glow_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.replacement_glow_size_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacement_glow_size_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.replacementglowfilterid_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.replacementglowfilterid_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.rounded_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.rounded_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.selected_glow_colour_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selected_glow_colour_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.selected_glow_size_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selected_glow_size_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.selectedglowfilterid_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.selectedglowfilterid_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.setdynamicproperties__1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.setdynamicproperties__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.setfontconstants__1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.setfontconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.shape_in_shape_padding_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shape_in_shape_padding_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.shapefor_1_method",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shapefor_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.shapes_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.shapes_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.squared_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.squared_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.start_hat_height_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.start_hat_height_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.start_hat_width_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.start_hat_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.constantprovider_class.statement_input_spacer_min_width_property",
- "id": "reference/js/blockly.zelos_namespace.constantprovider_class.statement_input_spacer_min_width_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class",
- "id": "reference/js/blockly.zelos_namespace.drawer_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.draw_1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.draw_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawconnectionhighlightpath_1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawconnectionhighlightpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawflatbottom__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawflatbottom__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawflattop__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawflattop__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawinlineinput__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawinlineinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawleft__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawleft__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawleftdynamicconnection__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawleftdynamicconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawoutline__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawoutline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawrightdynamicconnection__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawrightdynamicconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawrightsiderow__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawrightsiderow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.drawstatementinput__1_method",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.drawstatementinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.drawer_class.info__property",
- "id": "reference/js/blockly.zelos_namespace.drawer_class.info__property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.applycolour_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.applycolour_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.begindrawing_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.begindrawing_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.constants_property",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.constants_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.enddrawing_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.enddrawing_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.fliprtl_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.fliprtl_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.outputshapetype_property",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.outputshapetype_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.setoutlinepath_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.setoutlinepath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.setpath_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.setpath_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.updatereplacementfade_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.updatereplacementfade_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.updateselected_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.updateselected_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.pathobject_class.updateshapeforinputhighlight_1_method",
- "id": "reference/js/blockly.zelos_namespace.pathobject_class.updateshapeforinputhighlight_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class",
- "id": "reference/js/blockly.zelos_namespace.renderer_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.constants__property",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.getconstants_1_method",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.getconstants_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.makeconstants__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.makeconstants__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.makedrawer__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.makedrawer__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.makepathobject_1_method",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.makepathobject_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderer_class.makerenderinfo__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderer_class.makerenderinfo__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.addalignmentpadding__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.addalignmentpadding__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.addinput__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.addinput__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.adjustxposition__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.adjustxposition__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.bottomrow_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.bottomrow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.constants__property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.constants__property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.finalize__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalize__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.finalizehorizontalalignment__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizehorizontalalignment__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.finalizeoutputconnection__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizeoutputconnection__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.finalizeverticalalignment__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.finalizeverticalalignment__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getdesiredrowwidth__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getdesiredrowwidth__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getelemcenterline__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getelemcenterline__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getinrowspacing__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getinrowspacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getnegativespacing__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getnegativespacing__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getrenderer_1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getrenderer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getspacerrowheight__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getspacerrowheight__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.getspacerrowwidth__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.getspacerrowwidth__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.hasstatementinput_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.hasstatementinput_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.isinline_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.isinline_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.ismultirow_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.ismultirow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.measure_1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.measure_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.renderer__property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.renderer__property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.rightside_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.rightside_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.shouldstartnewrow__1_method",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.shouldstartnewrow__1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.renderinfo_class.toprow_property",
- "id": "reference/js/blockly.zelos_namespace.renderinfo_class.toprow_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.rightconnectionshape_class",
- "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.rightconnectionshape_class.height_property",
- "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class.height_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.rightconnectionshape_class.width_property",
- "id": "reference/js/blockly.zelos_namespace.rightconnectionshape_class.width_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.statementinput_class",
- "id": "reference/js/blockly.zelos_namespace.statementinput_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.statementinput_class.connectedbottomnextconnection_property",
- "id": "reference/js/blockly.zelos_namespace.statementinput_class.connectedbottomnextconnection_property"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.toprow_class",
- "id": "reference/js/blockly.zelos_namespace.toprow_class"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.toprow_class.endswithelemspacer_1_method",
- "id": "reference/js/blockly.zelos_namespace.toprow_class.endswithelemspacer_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.toprow_class.hasleftsquarecorner_1_method",
- "id": "reference/js/blockly.zelos_namespace.toprow_class.hasleftsquarecorner_1_method"
- },
- {
- "type": "doc",
- "label": "blockly.zelos_namespace.toprow_class.hasrightsquarecorner_1_method",
- "id": "reference/js/blockly.zelos_namespace.toprow_class.hasrightsquarecorner_1_method"
- },
- ],
- },
- ]
- },
- {
- "type": "category",
- "label": "Variables",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "doc",
- "label": "Blocks",
- "id": "reference/js/blockly.blocks_variable"
- },
- {
- "type": "doc",
- "label": "COLLAPSE_CHARS",
- "id": "reference/js/blockly.collapse_chars_variable"
- },
- {
- "type": "doc",
- "label": "COLLAPSED_FIELD_NAME",
- "id": "reference/js/blockly.collapsed_field_name_variable"
- },
- {
- "type": "doc",
- "label": "COLLAPSED_INPUT_NAME",
- "id": "reference/js/blockly.collapsed_input_name_variable"
- },
- {
- "type": "doc",
- "label": "config",
- "id": "reference/js/blockly.config_variable"
- },
- {
- "type": "doc",
- "label": "defineBlocksWithJsonArray",
- "id": "reference/js/blockly.defineblockswithjsonarray_variable"
- },
- {
- "type": "doc",
- "label": "DELETE_VARIABLE_ID",
- "id": "reference/js/blockly.delete_variable_id_variable"
- },
- {
- "type": "doc",
- "label": "DropDownDiv",
- "id": "reference/js/blockly.dropdowndiv_variable"
- },
- {
- "type": "doc",
- "label": "getMainWorkspace",
- "id": "reference/js/blockly.getmainworkspace_variable"
- },
- {
- "type": "doc",
- "label": "getSelected",
- "id": "reference/js/blockly.getselected_variable"
- },
- {
- "type": "doc",
- "label": "INPUT_VALUE",
- "id": "reference/js/blockly.input_value_variable"
- },
- {
- "type": "doc",
- "label": "JavaScript",
- "id": "reference/js/blockly.javascript_variable"
- },
- {
- "type": "doc",
- "label": "keyboardNavigationController",
- "id": "reference/js/blockly.keyboardnavigationcontroller_variable"
- },
- {
- "type": "doc",
- "label": "Msg",
- "id": "reference/js/blockly.msg_variable"
- },
- {
- "type": "doc",
- "label": "NEXT_STATEMENT",
- "id": "reference/js/blockly.next_statement_variable"
- },
- {
- "type": "doc",
- "label": "OPPOSITE_TYPE",
- "id": "reference/js/blockly.opposite_type_variable"
- },
- {
- "type": "doc",
- "label": "OUTPUT_VALUE",
- "id": "reference/js/blockly.output_value_variable"
- },
- {
- "type": "doc",
- "label": "PREVIOUS_STATEMENT",
- "id": "reference/js/blockly.previous_statement_variable"
- },
- {
- "type": "doc",
- "label": "PROCEDURE_CATEGORY_NAME",
- "id": "reference/js/blockly.procedure_category_name_variable"
- },
- {
- "type": "doc",
- "label": "RENAME_VARIABLE_ID",
- "id": "reference/js/blockly.rename_variable_id_variable"
- },
- {
- "type": "doc",
- "label": "setParentContainer",
- "id": "reference/js/blockly.setparentcontainer_variable"
- },
- {
- "type": "doc",
- "label": "svgResize",
- "id": "reference/js/blockly.svgresize_variable"
- },
- {
- "type": "doc",
- "label": "TOOLBOX_AT_BOTTOM",
- "id": "reference/js/blockly.toolbox_at_bottom_variable"
- },
- {
- "type": "doc",
- "label": "TOOLBOX_AT_LEFT",
- "id": "reference/js/blockly.toolbox_at_left_variable"
- },
- {
- "type": "doc",
- "label": "TOOLBOX_AT_RIGHT",
- "id": "reference/js/blockly.toolbox_at_right_variable"
- },
- {
- "type": "doc",
- "label": "TOOLBOX_AT_TOP",
- "id": "reference/js/blockly.toolbox_at_top_variable"
- },
- {
- "type": "doc",
- "label": "VARIABLE_CATEGORY_NAME",
- "id": "reference/js/blockly.variable_category_name_variable"
- },
- {
- "type": "doc",
- "label": "VARIABLE_DYNAMIC_CATEGORY_NAME",
- "id": "reference/js/blockly.variable_dynamic_category_name_variable"
- },
- {
- "type": "doc",
- "label": "VERSION",
- "id": "reference/js/blockly.version_variable"
- },
- ]
- },
- {
- "type": "category",
- "label": "Type Aliases",
- "collapsible": true,
- "className": "hide-level-3",
- "items": [
- {
- "type": "doc",
- "label": "FieldCheckboxValidator",
- "id": "reference/js/blockly.fieldcheckboxvalidator_typealias"
- },
- {
- "type": "doc",
- "label": "FieldDropdownConfig",
- "id": "reference/js/blockly.fielddropdownconfig_typealias"
- },
- {
- "type": "doc",
- "label": "FieldDropdownValidator",
- "id": "reference/js/blockly.fielddropdownvalidator_typealias"
- },
- {
- "type": "doc",
- "label": "FieldNumberValidator",
- "id": "reference/js/blockly.fieldnumbervalidator_typealias"
- },
- {
- "type": "doc",
- "label": "FieldTextInputConfig",
- "id": "reference/js/blockly.fieldtextinputconfig_typealias"
- },
- {
- "type": "doc",
- "label": "FieldTextInputValidator",
- "id": "reference/js/blockly.fieldtextinputvalidator_typealias"
- },
- {
- "type": "doc",
- "label": "FieldValidator",
- "id": "reference/js/blockly.fieldvalidator_typealias"
- },
- {
- "type": "doc",
- "label": "FieldVariableValidator",
- "id": "reference/js/blockly.fieldvariablevalidator_typealias"
- },
- {
- "type": "doc",
- "label": "ICopyData",
- "id": "reference/js/blockly.icopydata_typealias"
- },
- {
- "type": "doc",
- "label": "MenuGenerator",
- "id": "reference/js/blockly.menugenerator_typealias"
- },
- {
- "type": "doc",
- "label": "MenuGeneratorFunction",
- "id": "reference/js/blockly.menugeneratorfunction_typealias"
- },
- {
- "type": "doc",
- "label": "MenuOption",
- "id": "reference/js/blockly.menuoption_typealias"
- },
- {
- "type": "doc",
- "label": "ReturnEphemeralFocus",
- "id": "reference/js/blockly.returnephemeralfocus_typealias"
- },
- ]
+ "id": "reference/blockly"
},
];
diff --git a/packages/docs/docusaurus.config.js b/packages/docs/docusaurus.config.js
index 5cdc7f175..526e5a007 100644
--- a/packages/docs/docusaurus.config.js
+++ b/packages/docs/docusaurus.config.js
@@ -40,6 +40,12 @@ const config = {
'@docusaurus/plugin-client-redirects',
{
fromExtensions: ['md', 'mdx'],
+ createRedirects(existingPath) {
+ if (existingPath.startsWith('/reference/')) {
+ return [existingPath.replace('/reference/', '/reference/js/')];
+ }
+ return undefined;
+ },
},
]
],
@@ -176,7 +182,7 @@ const config = {
},
{
label: 'Reference',
- to: '/reference/js/blockly',
+ to: '/reference',
},
],
},
diff --git a/packages/docs/sidebars.js b/packages/docs/sidebars.js
index da0c85ef4..ce9548004 100644
--- a/packages/docs/sidebars.js
+++ b/packages/docs/sidebars.js
@@ -1441,14 +1441,7 @@ const sidebars = {
],
},
],
- //referenceSidebar: referenceSidebar
- referenceSidebar: [
- {
- "type": "doc",
- "label": "Codelabs",
- "id": "codelabs/index",
- },
- ],
+ referenceSidebar: referenceSidebar,
};
export default sidebars;
|