blockly 12.0.0-beta.2 → 12.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blockly.min.js +148 -127
- package/blockly.mjs +3 -3
- package/blockly_compressed.js +148 -127
- package/blockly_compressed.js.map +1 -1
- package/core/block_svg.d.ts +0 -8
- package/core/blockly.d.ts +4 -5
- package/core/dragging/block_drag_strategy.d.ts +12 -0
- package/core/field.d.ts +3 -7
- package/core/field_input.d.ts +1 -7
- package/core/field_variable.d.ts +3 -3
- package/core/focus_manager.d.ts +163 -0
- package/core/interfaces/i_focusable_node.d.ts +4 -1
- package/core/interfaces/i_focusable_tree.d.ts +23 -13
- package/core/keyboard_nav/ast_node.d.ts +6 -6
- package/core/keyboard_nav/line_cursor.d.ts +313 -0
- package/core/marker_manager.d.ts +3 -3
- package/core/registry.d.ts +2 -2
- package/core/renderers/zelos/path_object.d.ts +2 -1
- package/core/utils/focusable_tree_traverser.d.ts +53 -0
- package/core/workspace.d.ts +0 -1
- package/core/workspace_svg.d.ts +15 -2
- package/index.mjs +3 -3
- package/package.json +1 -1
- package/core/keyboard_nav/basic_cursor.d.ts +0 -96
- package/core/keyboard_nav/cursor.d.ts +0 -44
- package/core/keyboard_nav/tab_navigate_cursor.d.ts +0 -20
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2019 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { ASTNode } from './ast_node.js';
|
|
7
|
-
import { BasicCursor } from './basic_cursor.js';
|
|
8
|
-
/**
|
|
9
|
-
* A cursor for navigating between tab navigable fields.
|
|
10
|
-
*/
|
|
11
|
-
export declare class TabNavigateCursor extends BasicCursor {
|
|
12
|
-
/**
|
|
13
|
-
* Skip all nodes except for tab navigable fields.
|
|
14
|
-
*
|
|
15
|
-
* @param node The AST node to check whether it is valid.
|
|
16
|
-
* @returns True if the node should be visited, false otherwise.
|
|
17
|
-
*/
|
|
18
|
-
validNode_(node: ASTNode | null): boolean;
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=tab_navigate_cursor.d.ts.map
|