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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blockly",
|
|
3
|
-
"version": "10.2.0-beta.
|
|
3
|
+
"version": "10.2.0-beta.2",
|
|
4
4
|
"description": "Blockly is a library for building visual programming editors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blockly"
|
|
@@ -37,14 +37,13 @@
|
|
|
37
37
|
"@wdio/selenium-standalone-service": "^8.0.2",
|
|
38
38
|
"async-done": "^2.0.0",
|
|
39
39
|
"chai": "^4.2.0",
|
|
40
|
-
"closure-calculate-chunks": "^3.0.2",
|
|
41
40
|
"concurrently": "^8.0.1",
|
|
42
41
|
"eslint": "^8.4.1",
|
|
43
42
|
"eslint-config-google": "^0.14.0",
|
|
44
|
-
"eslint-config-prettier": "^
|
|
43
|
+
"eslint-config-prettier": "^9.0.0",
|
|
45
44
|
"eslint-plugin-jsdoc": "^46.2.6",
|
|
45
|
+
"glob": "^10.3.4",
|
|
46
46
|
"google-closure-compiler": "^20230802.0.0",
|
|
47
|
-
"google-closure-deps": "^20230502.0.0",
|
|
48
47
|
"gulp": "^4.0.2",
|
|
49
48
|
"gulp-concat": "^2.6.1",
|
|
50
49
|
"gulp-gzip": "^1.4.2",
|
|
@@ -61,10 +60,10 @@
|
|
|
61
60
|
"markdown-tables-to-json": "^0.1.7",
|
|
62
61
|
"mocha": "^10.0.0",
|
|
63
62
|
"patch-package": "^8.0.0",
|
|
64
|
-
"prettier": "3.0.
|
|
63
|
+
"prettier": "3.0.3",
|
|
65
64
|
"readline-sync": "^1.4.10",
|
|
66
65
|
"rimraf": "^5.0.0",
|
|
67
|
-
"selenium-standalone": "^
|
|
66
|
+
"selenium-standalone": "^9.1.1",
|
|
68
67
|
"typescript": "^5.0.2",
|
|
69
68
|
"webdriverio": "^8.0.5",
|
|
70
69
|
"yargs": "^17.2.1"
|