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
package/blockly.mjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import Blockly from './blockly_compressed.js';
|
|
2
2
|
export const {
|
|
3
3
|
ASTNode,
|
|
4
|
-
BasicCursor,
|
|
5
4
|
Block,
|
|
6
5
|
BlockFlyoutInflater,
|
|
7
6
|
BlockSvg,
|
|
@@ -21,7 +20,6 @@ export const {
|
|
|
21
20
|
ContextMenuItems,
|
|
22
21
|
ContextMenuRegistry,
|
|
23
22
|
Css,
|
|
24
|
-
Cursor,
|
|
25
23
|
DELETE_VARIABLE_ID,
|
|
26
24
|
DeleteArea,
|
|
27
25
|
DragTarget,
|
|
@@ -42,6 +40,7 @@ export const {
|
|
|
42
40
|
FlyoutItem,
|
|
43
41
|
FlyoutMetricsManager,
|
|
44
42
|
FlyoutSeparator,
|
|
43
|
+
FocusManager,
|
|
45
44
|
Generator,
|
|
46
45
|
Gesture,
|
|
47
46
|
Grid,
|
|
@@ -50,6 +49,7 @@ export const {
|
|
|
50
49
|
Input,
|
|
51
50
|
InsertionMarkerPreviewer,
|
|
52
51
|
LabelFlyoutInflater,
|
|
52
|
+
LineCursor,
|
|
53
53
|
Marker,
|
|
54
54
|
MarkerManager,
|
|
55
55
|
Menu,
|
|
@@ -75,7 +75,6 @@ export const {
|
|
|
75
75
|
TOOLBOX_AT_LEFT,
|
|
76
76
|
TOOLBOX_AT_RIGHT,
|
|
77
77
|
TOOLBOX_AT_TOP,
|
|
78
|
-
TabNavigateCursor,
|
|
79
78
|
Theme,
|
|
80
79
|
ThemeManager,
|
|
81
80
|
Themes,
|
|
@@ -117,6 +116,7 @@ export const {
|
|
|
117
116
|
dragging,
|
|
118
117
|
fieldRegistry,
|
|
119
118
|
geras,
|
|
119
|
+
getFocusManager,
|
|
120
120
|
getMainWorkspace,
|
|
121
121
|
getSelected,
|
|
122
122
|
hasBubble,
|