blockly 10.2.0-beta.1 → 10.2.0-beta.2
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 +1726 -1899
- package/blockly_compressed.js +1463 -1614
- package/blockly_compressed.js.map +1 -1
- package/blocks_compressed.js +162 -173
- package/blocks_compressed.js.map +1 -1
- package/core/block.d.ts +10 -0
- package/core/block_dragger.d.ts +5 -0
- package/core/block_svg.d.ts +14 -4
- package/core/component_manager.d.ts +5 -0
- package/core/connection.d.ts +5 -0
- package/core/contextmenu.d.ts +5 -3
- package/core/contextmenu_registry.d.ts +7 -2
- package/core/drag_target.d.ts +6 -0
- package/core/dropdowndiv.d.ts +5 -0
- package/core/events/events_block_base.d.ts +5 -0
- package/core/events/events_block_change.d.ts +5 -0
- package/core/events/events_block_create.d.ts +5 -0
- package/core/events/events_block_delete.d.ts +5 -0
- package/core/events/events_block_drag.d.ts +5 -0
- package/core/events/events_block_field_intermediate_change.d.ts +6 -0
- package/core/events/events_block_move.d.ts +5 -0
- package/core/events/events_bubble_open.d.ts +5 -0
- package/core/events/events_click.d.ts +5 -0
- package/core/events/events_marker_move.d.ts +5 -0
- package/core/events/events_ui_base.d.ts +6 -0
- package/core/events/events_var_base.d.ts +5 -0
- package/core/field.d.ts +17 -3
- package/core/field_checkbox.d.ts +5 -0
- package/core/field_colour.d.ts +27 -7
- package/core/field_image.d.ts +5 -0
- package/core/field_input.d.ts +19 -1
- package/core/field_label_serializable.d.ts +7 -0
- package/core/field_number.d.ts +5 -0
- package/core/field_textinput.d.ts +5 -0
- package/core/field_variable.d.ts +5 -0
- package/core/flyout_metrics_manager.d.ts +5 -0
- package/core/generator.d.ts +29 -1
- package/core/gesture.d.ts +6 -0
- package/core/icons/mutator_icon.d.ts +8 -0
- package/core/inputs/input.d.ts +5 -0
- package/core/keyboard_nav/ast_node.d.ts +6 -0
- package/core/keyboard_nav/marker.d.ts +6 -0
- package/core/main.d.ts +6 -4
- package/core/marker_manager.d.ts +5 -0
- package/core/menuitem.d.ts +5 -0
- package/core/metrics_manager.d.ts +5 -0
- package/core/options.d.ts +5 -0
- package/core/rendered_connection.d.ts +5 -0
- package/core/renderers/geras/geras.d.ts +5 -0
- package/core/renderers/minimalist/minimalist.d.ts +5 -0
- package/core/renderers/thrasos/thrasos.d.ts +5 -0
- package/core/renderers/zelos/zelos.d.ts +5 -0
- package/core/scrollbar.d.ts +5 -0
- package/core/serialization.d.ts +3 -0
- package/core/shortcut_registry.d.ts +6 -0
- package/core/theme_manager.d.ts +6 -0
- package/core/toolbox/collapsible_category.d.ts +5 -0
- package/core/toolbox/toolbox.d.ts +5 -0
- package/core/toolbox/toolbox_item.d.ts +5 -0
- package/core/trashcan.d.ts +5 -0
- package/core/utils/coordinate.d.ts +7 -0
- package/core/utils/rect.d.ts +7 -0
- package/core/utils/size.d.ts +7 -0
- package/core/utils/svg.d.ts +6 -0
- package/core/variable_map.d.ts +5 -0
- package/core/variable_model.d.ts +5 -0
- package/core/workspace.d.ts +9 -4
- package/core/workspace_comment_svg.d.ts +5 -0
- package/core/workspace_svg.d.ts +13 -2
- package/core/zoom_controls.d.ts +5 -0
- package/dart_compressed.js +88 -97
- package/dart_compressed.js.map +1 -1
- package/javascript_compressed.js +101 -112
- package/javascript_compressed.js.map +1 -1
- package/lua_compressed.js +75 -82
- package/lua_compressed.js.map +1 -1
- package/package.json +5 -6
- package/php_compressed.js +92 -100
- package/php_compressed.js.map +1 -1
- package/python_compressed.js +82 -92
- package/python_compressed.js.map +1 -1
- package/closure/goog/base.d.ts +0 -2
- package/closure/goog/base_minimal.d.ts +0 -19
- package/closure/goog/goog.d.ts +0 -26
package/closure/goog/base.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright The Closure Library Authors.
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* @fileoverview A minimal implementation of base.js.
|
|
8
|
-
*
|
|
9
|
-
* This file is used in place of base.js (Closure library bootstrap
|
|
10
|
-
* code) when building Blockly using the Closure Compiler. Refer to
|
|
11
|
-
* base.js for more information about items defined here.
|
|
12
|
-
*
|
|
13
|
-
* @provideGoog
|
|
14
|
-
*/
|
|
15
|
-
/** @define {boolean} Overridden to true by the compiler. */
|
|
16
|
-
declare var COMPILED: boolean;
|
|
17
|
-
/** @const */
|
|
18
|
-
declare var goog: typeof goog;
|
|
19
|
-
//# sourceMappingURL=base_minimal.d.ts.map
|
package/closure/goog/goog.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview ES6 module that exports symbols from base.js so that ES6
|
|
3
|
-
* modules do not need to use globals and so that is clear if a project is using
|
|
4
|
-
* Closure's base.js file. It is also a subset of properties in base.js, meaning
|
|
5
|
-
* it should be clearer what should not be used in ES6 modules
|
|
6
|
-
* (goog.module/provide are not exported here, for example). Though that is not
|
|
7
|
-
* to say that everything in this file should be used in an ES6 module; some
|
|
8
|
-
* depreciated functions are exported to make migration easier (e.g.
|
|
9
|
-
* goog.scope).
|
|
10
|
-
*
|
|
11
|
-
* Note that this does not load Closure's base.js file, it is still up to the
|
|
12
|
-
* programmer to include it. Nor does the fact that this is an ES6 module mean
|
|
13
|
-
* that projects no longer require deps.js files for debug loading - they do.
|
|
14
|
-
* Closure will need to load your ES6 modules for you if you have any Closure
|
|
15
|
-
* file (goog.provide/goog.module) dependencies, as they need to be available
|
|
16
|
-
* before the ES6 module evaluates.
|
|
17
|
-
*
|
|
18
|
-
* Also note that this file has special compiler handling! It is okay to export
|
|
19
|
-
* anything from this file, but the name also needs to exist on the global goog.
|
|
20
|
-
* This special compiler pass enforces that you always import this file as
|
|
21
|
-
* `import * as goog`, as many tools use regex based parsing to find
|
|
22
|
-
* goog.require calls.
|
|
23
|
-
*/
|
|
24
|
-
export const global: typeof globalThis;
|
|
25
|
-
export function declareModuleId(namespace: any): void;
|
|
26
|
-
//# sourceMappingURL=goog.d.ts.map
|