blockly 12.0.1-beta.1 → 12.1.0
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 +250 -242
- package/blockly.mjs +4 -0
- package/blockly_compressed.js +250 -242
- package/blockly_compressed.js.map +1 -1
- package/core/blockly.d.ts +2 -1
- package/core/bubbles/bubble.d.ts +2 -2
- package/core/common.d.ts +8 -0
- package/core/flyout_base.d.ts +36 -8
- package/core/focus_manager.d.ts +27 -1
- package/core/interfaces/i_focusable_node.d.ts +10 -8
- package/core/keyboard_nav/block_navigation_policy.d.ts +24 -0
- package/core/keyboard_navigation_controller.d.ts +48 -0
- package/core/toolbox/toolbox.d.ts +2 -2
- package/index.mjs +4 -0
- package/package.json +1 -1
package/blockly.mjs
CHANGED
|
@@ -55,6 +55,7 @@ export const {
|
|
|
55
55
|
INPUT_VALUE,
|
|
56
56
|
Input,
|
|
57
57
|
InsertionMarkerPreviewer,
|
|
58
|
+
KeyboardNavigationController,
|
|
58
59
|
LabelFlyoutInflater,
|
|
59
60
|
LineCursor,
|
|
60
61
|
Marker,
|
|
@@ -144,7 +145,10 @@ export const {
|
|
|
144
145
|
isSelectable,
|
|
145
146
|
isSerializable,
|
|
146
147
|
isVariableBackedParameterModel,
|
|
148
|
+
keyboardNavigationController,
|
|
147
149
|
layers,
|
|
150
|
+
navigateBlock,
|
|
151
|
+
navigateStacks,
|
|
148
152
|
procedures,
|
|
149
153
|
registry,
|
|
150
154
|
renderManagement,
|