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.
Files changed (84) hide show
  1. package/blockly.min.js +1726 -1899
  2. package/blockly_compressed.js +1463 -1614
  3. package/blockly_compressed.js.map +1 -1
  4. package/blocks_compressed.js +162 -173
  5. package/blocks_compressed.js.map +1 -1
  6. package/core/block.d.ts +10 -0
  7. package/core/block_dragger.d.ts +5 -0
  8. package/core/block_svg.d.ts +14 -4
  9. package/core/component_manager.d.ts +5 -0
  10. package/core/connection.d.ts +5 -0
  11. package/core/contextmenu.d.ts +5 -3
  12. package/core/contextmenu_registry.d.ts +7 -2
  13. package/core/drag_target.d.ts +6 -0
  14. package/core/dropdowndiv.d.ts +5 -0
  15. package/core/events/events_block_base.d.ts +5 -0
  16. package/core/events/events_block_change.d.ts +5 -0
  17. package/core/events/events_block_create.d.ts +5 -0
  18. package/core/events/events_block_delete.d.ts +5 -0
  19. package/core/events/events_block_drag.d.ts +5 -0
  20. package/core/events/events_block_field_intermediate_change.d.ts +6 -0
  21. package/core/events/events_block_move.d.ts +5 -0
  22. package/core/events/events_bubble_open.d.ts +5 -0
  23. package/core/events/events_click.d.ts +5 -0
  24. package/core/events/events_marker_move.d.ts +5 -0
  25. package/core/events/events_ui_base.d.ts +6 -0
  26. package/core/events/events_var_base.d.ts +5 -0
  27. package/core/field.d.ts +17 -3
  28. package/core/field_checkbox.d.ts +5 -0
  29. package/core/field_colour.d.ts +27 -7
  30. package/core/field_image.d.ts +5 -0
  31. package/core/field_input.d.ts +19 -1
  32. package/core/field_label_serializable.d.ts +7 -0
  33. package/core/field_number.d.ts +5 -0
  34. package/core/field_textinput.d.ts +5 -0
  35. package/core/field_variable.d.ts +5 -0
  36. package/core/flyout_metrics_manager.d.ts +5 -0
  37. package/core/generator.d.ts +29 -1
  38. package/core/gesture.d.ts +6 -0
  39. package/core/icons/mutator_icon.d.ts +8 -0
  40. package/core/inputs/input.d.ts +5 -0
  41. package/core/keyboard_nav/ast_node.d.ts +6 -0
  42. package/core/keyboard_nav/marker.d.ts +6 -0
  43. package/core/main.d.ts +6 -4
  44. package/core/marker_manager.d.ts +5 -0
  45. package/core/menuitem.d.ts +5 -0
  46. package/core/metrics_manager.d.ts +5 -0
  47. package/core/options.d.ts +5 -0
  48. package/core/rendered_connection.d.ts +5 -0
  49. package/core/renderers/geras/geras.d.ts +5 -0
  50. package/core/renderers/minimalist/minimalist.d.ts +5 -0
  51. package/core/renderers/thrasos/thrasos.d.ts +5 -0
  52. package/core/renderers/zelos/zelos.d.ts +5 -0
  53. package/core/scrollbar.d.ts +5 -0
  54. package/core/serialization.d.ts +3 -0
  55. package/core/shortcut_registry.d.ts +6 -0
  56. package/core/theme_manager.d.ts +6 -0
  57. package/core/toolbox/collapsible_category.d.ts +5 -0
  58. package/core/toolbox/toolbox.d.ts +5 -0
  59. package/core/toolbox/toolbox_item.d.ts +5 -0
  60. package/core/trashcan.d.ts +5 -0
  61. package/core/utils/coordinate.d.ts +7 -0
  62. package/core/utils/rect.d.ts +7 -0
  63. package/core/utils/size.d.ts +7 -0
  64. package/core/utils/svg.d.ts +6 -0
  65. package/core/variable_map.d.ts +5 -0
  66. package/core/variable_model.d.ts +5 -0
  67. package/core/workspace.d.ts +9 -4
  68. package/core/workspace_comment_svg.d.ts +5 -0
  69. package/core/workspace_svg.d.ts +13 -2
  70. package/core/zoom_controls.d.ts +5 -0
  71. package/dart_compressed.js +88 -97
  72. package/dart_compressed.js.map +1 -1
  73. package/javascript_compressed.js +101 -112
  74. package/javascript_compressed.js.map +1 -1
  75. package/lua_compressed.js +75 -82
  76. package/lua_compressed.js.map +1 -1
  77. package/package.json +5 -6
  78. package/php_compressed.js +92 -100
  79. package/php_compressed.js.map +1 -1
  80. package/python_compressed.js +82 -92
  81. package/python_compressed.js.map +1 -1
  82. package/closure/goog/base.d.ts +0 -2
  83. package/closure/goog/base_minimal.d.ts +0 -19
  84. 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.1",
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": "^8.8.0",
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.0",
63
+ "prettier": "3.0.3",
65
64
  "readline-sync": "^1.4.10",
66
65
  "rimraf": "^5.0.0",
67
- "selenium-standalone": "^8.0.3",
66
+ "selenium-standalone": "^9.1.1",
68
67
  "typescript": "^5.0.2",
69
68
  "webdriverio": "^8.0.5",
70
69
  "yargs": "^17.2.1"