scratch-blocks 1.1.206 → 2.0.0-beta.1

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 (1295) hide show
  1. package/.husky/commit-msg +0 -3
  2. package/CHANGELOG.md +111 -833
  3. package/TODO.md +16 -0
  4. package/blockly-rc/.eslintignore +28 -0
  5. package/blockly-rc/.eslintrc.js +187 -0
  6. package/blockly-rc/.gitattributes +1 -0
  7. package/blockly-rc/.github/CODEOWNERS +1 -0
  8. package/blockly-rc/.github/CONTRIBUTING.md +46 -0
  9. package/blockly-rc/.github/ISSUE_TEMPLATE/bug_report.yaml +58 -0
  10. package/blockly-rc/.github/ISSUE_TEMPLATE/config.yml +7 -0
  11. package/blockly-rc/.github/ISSUE_TEMPLATE/documentation.yaml +38 -0
  12. package/blockly-rc/.github/ISSUE_TEMPLATE/feature_request.yaml +39 -0
  13. package/blockly-rc/.github/PULL_REQUEST_TEMPLATE.md +42 -0
  14. package/blockly-rc/.github/dependabot.yml +27 -0
  15. package/blockly-rc/.github/release.yml +32 -0
  16. package/blockly-rc/.github/workflows/appengine_deploy.yml +54 -0
  17. package/blockly-rc/.github/workflows/assign_reviewers.yml +41 -0
  18. package/blockly-rc/.github/workflows/browser_test.yml +55 -0
  19. package/blockly-rc/.github/workflows/build.yml +86 -0
  20. package/blockly-rc/.github/workflows/conventional-label.yml +17 -0
  21. package/blockly-rc/.github/workflows/develop_freeze.yml +26 -0
  22. package/blockly-rc/.github/workflows/tag_module_cleanup.yml +37 -0
  23. package/blockly-rc/.github/workflows/welcome_new_contributors.yml +36 -0
  24. package/blockly-rc/.prettierignore +30 -0
  25. package/blockly-rc/.prettierrc.js +13 -0
  26. package/blockly-rc/CHANGELOG.md +77 -0
  27. package/blockly-rc/LICENSE +202 -0
  28. package/blockly-rc/README.md +80 -0
  29. package/blockly-rc/_config.yml +1 -0
  30. package/blockly-rc/api-extractor.json +385 -0
  31. package/blockly-rc/appengine/.gcloudignore +20 -0
  32. package/blockly-rc/appengine/README.txt +42 -0
  33. package/blockly-rc/appengine/add_timestamps.py +69 -0
  34. package/blockly-rc/appengine/app.yaml +104 -0
  35. package/blockly-rc/appengine/apple-touch-icon.png +0 -0
  36. package/blockly-rc/appengine/blockly_compressed.js +11 -0
  37. package/blockly-rc/appengine/expiration.py +52 -0
  38. package/blockly-rc/appengine/favicon.ico +0 -0
  39. package/blockly-rc/appengine/index.yaml +11 -0
  40. package/blockly-rc/appengine/main.py +39 -0
  41. package/blockly-rc/appengine/redirect.html +107 -0
  42. package/blockly-rc/appengine/requirements.txt +1 -0
  43. package/blockly-rc/appengine/robots.txt +2 -0
  44. package/blockly-rc/appengine/storage.js +190 -0
  45. package/blockly-rc/appengine/storage.py +125 -0
  46. package/blockly-rc/blocks/blocks.ts +44 -0
  47. package/blockly-rc/blocks/lists.ts +1085 -0
  48. package/blockly-rc/blocks/logic.ts +712 -0
  49. package/blockly-rc/blocks/loops.ts +408 -0
  50. package/blockly-rc/blocks/math.ts +591 -0
  51. package/blockly-rc/blocks/procedures.ts +1364 -0
  52. package/blockly-rc/blocks/text.ts +1007 -0
  53. package/blockly-rc/blocks/variables.ts +183 -0
  54. package/blockly-rc/blocks/variables_dynamic.ts +194 -0
  55. package/blockly-rc/core/any_aliases.ts +8 -0
  56. package/blockly-rc/core/block.ts +2523 -0
  57. package/blockly-rc/core/block_animations.ts +225 -0
  58. package/blockly-rc/core/block_flyout_inflater.ts +262 -0
  59. package/blockly-rc/core/block_svg.ts +1768 -0
  60. package/blockly-rc/core/blockly.ts +605 -0
  61. package/blockly-rc/core/blockly_options.ts +71 -0
  62. package/blockly-rc/core/blocks.ts +18 -0
  63. package/blockly-rc/core/browser_events.ts +244 -0
  64. package/blockly-rc/core/bubbles/bubble.ts +658 -0
  65. package/blockly-rc/core/bubbles/mini_workspace_bubble.ts +280 -0
  66. package/blockly-rc/core/bubbles/text_bubble.ts +103 -0
  67. package/blockly-rc/core/bubbles/textinput_bubble.ts +344 -0
  68. package/blockly-rc/core/bubbles.ts +12 -0
  69. package/blockly-rc/core/bump_objects.ts +192 -0
  70. package/blockly-rc/core/button_flyout_inflater.ts +63 -0
  71. package/blockly-rc/core/clipboard/block_paster.ts +142 -0
  72. package/blockly-rc/core/clipboard/registry.ts +31 -0
  73. package/blockly-rc/core/clipboard/workspace_comment_paster.ts +94 -0
  74. package/blockly-rc/core/clipboard.ts +113 -0
  75. package/blockly-rc/core/comments/comment_view.ts +899 -0
  76. package/blockly-rc/core/comments/rendered_workspace_comment.ts +297 -0
  77. package/blockly-rc/core/comments/workspace_comment.ts +237 -0
  78. package/blockly-rc/core/comments.ts +9 -0
  79. package/blockly-rc/core/common.ts +305 -0
  80. package/blockly-rc/core/component_manager.ts +235 -0
  81. package/blockly-rc/core/config.ts +65 -0
  82. package/blockly-rc/core/connection.ts +793 -0
  83. package/blockly-rc/core/connection_checker.ts +348 -0
  84. package/blockly-rc/core/connection_db.ts +297 -0
  85. package/blockly-rc/core/connection_type.ts +21 -0
  86. package/blockly-rc/core/constants.ts +23 -0
  87. package/blockly-rc/core/contextmenu.ts +268 -0
  88. package/blockly-rc/core/contextmenu_items.ts +700 -0
  89. package/blockly-rc/core/contextmenu_registry.ts +194 -0
  90. package/blockly-rc/core/css.ts +481 -0
  91. package/blockly-rc/core/delete_area.ts +77 -0
  92. package/blockly-rc/core/dialog.ts +121 -0
  93. package/blockly-rc/core/drag_target.ts +97 -0
  94. package/blockly-rc/core/dragging/block_drag_strategy.ts +454 -0
  95. package/blockly-rc/core/dragging/bubble_drag_strategy.ts +52 -0
  96. package/blockly-rc/core/dragging/comment_drag_strategy.ts +91 -0
  97. package/blockly-rc/core/dragging/dragger.ts +163 -0
  98. package/blockly-rc/core/dragging.ts +12 -0
  99. package/blockly-rc/core/dropdowndiv.ts +768 -0
  100. package/blockly-rc/core/events/events.ts +163 -0
  101. package/blockly-rc/core/events/events_abstract.ts +130 -0
  102. package/blockly-rc/core/events/events_block_base.ts +88 -0
  103. package/blockly-rc/core/events/events_block_change.ts +259 -0
  104. package/blockly-rc/core/events/events_block_create.ts +185 -0
  105. package/blockly-rc/core/events/events_block_delete.ts +182 -0
  106. package/blockly-rc/core/events/events_block_drag.ts +116 -0
  107. package/blockly-rc/core/events/events_block_field_intermediate_change.ts +167 -0
  108. package/blockly-rc/core/events/events_block_move.ts +307 -0
  109. package/blockly-rc/core/events/events_bubble_open.ts +120 -0
  110. package/blockly-rc/core/events/events_click.ts +110 -0
  111. package/blockly-rc/core/events/events_comment_base.ts +126 -0
  112. package/blockly-rc/core/events/events_comment_change.ts +161 -0
  113. package/blockly-rc/core/events/events_comment_collapse.ts +103 -0
  114. package/blockly-rc/core/events/events_comment_create.ts +118 -0
  115. package/blockly-rc/core/events/events_comment_delete.ts +117 -0
  116. package/blockly-rc/core/events/events_comment_drag.ts +99 -0
  117. package/blockly-rc/core/events/events_comment_move.ts +207 -0
  118. package/blockly-rc/core/events/events_comment_resize.ts +174 -0
  119. package/blockly-rc/core/events/events_marker_move.ts +134 -0
  120. package/blockly-rc/core/events/events_selected.ts +98 -0
  121. package/blockly-rc/core/events/events_theme_change.ts +84 -0
  122. package/blockly-rc/core/events/events_toolbox_item_select.ts +96 -0
  123. package/blockly-rc/core/events/events_trashcan_open.ts +88 -0
  124. package/blockly-rc/core/events/events_ui_base.ts +47 -0
  125. package/blockly-rc/core/events/events_var_base.ts +89 -0
  126. package/blockly-rc/core/events/events_var_create.ts +129 -0
  127. package/blockly-rc/core/events/events_var_delete.ts +124 -0
  128. package/blockly-rc/core/events/events_var_rename.ts +133 -0
  129. package/blockly-rc/core/events/events_var_type_change.ts +122 -0
  130. package/blockly-rc/core/events/events_viewport.ts +149 -0
  131. package/blockly-rc/core/events/utils.ts +595 -0
  132. package/blockly-rc/core/events/workspace_events.ts +46 -0
  133. package/blockly-rc/core/extensions.ts +491 -0
  134. package/blockly-rc/core/field.ts +1471 -0
  135. package/blockly-rc/core/field_checkbox.ts +271 -0
  136. package/blockly-rc/core/field_dropdown.ts +857 -0
  137. package/blockly-rc/core/field_image.ts +297 -0
  138. package/blockly-rc/core/field_input.ts +755 -0
  139. package/blockly-rc/core/field_label.ts +150 -0
  140. package/blockly-rc/core/field_label_serializable.ts +73 -0
  141. package/blockly-rc/core/field_number.ts +381 -0
  142. package/blockly-rc/core/field_registry.ts +115 -0
  143. package/blockly-rc/core/field_textinput.ts +117 -0
  144. package/blockly-rc/core/field_variable.ts +651 -0
  145. package/blockly-rc/core/flyout_base.ts +968 -0
  146. package/blockly-rc/core/flyout_button.ts +416 -0
  147. package/blockly-rc/core/flyout_horizontal.ts +374 -0
  148. package/blockly-rc/core/flyout_metrics_manager.ts +90 -0
  149. package/blockly-rc/core/flyout_separator.ts +61 -0
  150. package/blockly-rc/core/flyout_vertical.ts +353 -0
  151. package/blockly-rc/core/generator.ts +611 -0
  152. package/blockly-rc/core/gesture.ts +1191 -0
  153. package/blockly-rc/core/grid.ts +252 -0
  154. package/blockly-rc/core/icons/comment_icon.ts +435 -0
  155. package/blockly-rc/core/icons/exceptions.ts +23 -0
  156. package/blockly-rc/core/icons/icon.ts +147 -0
  157. package/blockly-rc/core/icons/icon_types.ts +32 -0
  158. package/blockly-rc/core/icons/mutator_icon.ts +354 -0
  159. package/blockly-rc/core/icons/registry.ts +33 -0
  160. package/blockly-rc/core/icons/warning_icon.ts +219 -0
  161. package/blockly-rc/core/icons.ts +24 -0
  162. package/blockly-rc/core/inject.ts +428 -0
  163. package/blockly-rc/core/inputs/align.ts +14 -0
  164. package/blockly-rc/core/inputs/dummy_input.ts +26 -0
  165. package/blockly-rc/core/inputs/end_row_input.ts +31 -0
  166. package/blockly-rc/core/inputs/input.ts +318 -0
  167. package/blockly-rc/core/inputs/input_types.ts +27 -0
  168. package/blockly-rc/core/inputs/statement_input.ts +34 -0
  169. package/blockly-rc/core/inputs/value_input.ts +30 -0
  170. package/blockly-rc/core/inputs.ts +23 -0
  171. package/blockly-rc/core/insertion_marker_manager.ts +742 -0
  172. package/blockly-rc/core/insertion_marker_previewer.ts +254 -0
  173. package/blockly-rc/core/interfaces/i_ast_node_location.ts +12 -0
  174. package/blockly-rc/core/interfaces/i_ast_node_location_svg.ts +28 -0
  175. package/blockly-rc/core/interfaces/i_ast_node_location_with_block.ts +22 -0
  176. package/blockly-rc/core/interfaces/i_autohideable.ts +22 -0
  177. package/blockly-rc/core/interfaces/i_bounded_element.ts +30 -0
  178. package/blockly-rc/core/interfaces/i_bubble.ts +63 -0
  179. package/blockly-rc/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
  180. package/blockly-rc/core/interfaces/i_comment_icon.ts +47 -0
  181. package/blockly-rc/core/interfaces/i_component.ts +19 -0
  182. package/blockly-rc/core/interfaces/i_connection_checker.ts +100 -0
  183. package/blockly-rc/core/interfaces/i_connection_previewer.ts +50 -0
  184. package/blockly-rc/core/interfaces/i_contextmenu.ts +16 -0
  185. package/blockly-rc/core/interfaces/i_copyable.ts +31 -0
  186. package/blockly-rc/core/interfaces/i_deletable.ts +34 -0
  187. package/blockly-rc/core/interfaces/i_delete_area.ts +28 -0
  188. package/blockly-rc/core/interfaces/i_drag_target.ts +69 -0
  189. package/blockly-rc/core/interfaces/i_draggable.ts +72 -0
  190. package/blockly-rc/core/interfaces/i_dragger.ts +35 -0
  191. package/blockly-rc/core/interfaces/i_flyout.ts +189 -0
  192. package/blockly-rc/core/interfaces/i_flyout_inflater.ts +41 -0
  193. package/blockly-rc/core/interfaces/i_has_bubble.ts +20 -0
  194. package/blockly-rc/core/interfaces/i_icon.ts +114 -0
  195. package/blockly-rc/core/interfaces/i_keyboard_accessible.ts +21 -0
  196. package/blockly-rc/core/interfaces/i_legacy_procedure_blocks.ts +50 -0
  197. package/blockly-rc/core/interfaces/i_metrics_manager.ts +149 -0
  198. package/blockly-rc/core/interfaces/i_movable.ts +19 -0
  199. package/blockly-rc/core/interfaces/i_observable.ts +24 -0
  200. package/blockly-rc/core/interfaces/i_parameter_model.ts +51 -0
  201. package/blockly-rc/core/interfaces/i_paster.ts +25 -0
  202. package/blockly-rc/core/interfaces/i_positionable.ts +33 -0
  203. package/blockly-rc/core/interfaces/i_procedure_block.ts +27 -0
  204. package/blockly-rc/core/interfaces/i_procedure_map.ts +18 -0
  205. package/blockly-rc/core/interfaces/i_procedure_model.ts +71 -0
  206. package/blockly-rc/core/interfaces/i_registrable.ts +12 -0
  207. package/blockly-rc/core/interfaces/i_rendered_element.ts +22 -0
  208. package/blockly-rc/core/interfaces/i_selectable.ts +34 -0
  209. package/blockly-rc/core/interfaces/i_selectable_toolbox_item.ts +63 -0
  210. package/blockly-rc/core/interfaces/i_serializable.ts +28 -0
  211. package/blockly-rc/core/interfaces/i_serializer.ts +55 -0
  212. package/blockly-rc/core/interfaces/i_styleable.ts +26 -0
  213. package/blockly-rc/core/interfaces/i_toolbox.ts +112 -0
  214. package/blockly-rc/core/interfaces/i_toolbox_item.ts +81 -0
  215. package/blockly-rc/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
  216. package/blockly-rc/core/interfaces/i_variable_map.ts +65 -0
  217. package/blockly-rc/core/interfaces/i_variable_model.ts +57 -0
  218. package/blockly-rc/core/internal_constants.ts +47 -0
  219. package/blockly-rc/core/keyboard_nav/ast_node.ts +884 -0
  220. package/blockly-rc/core/keyboard_nav/basic_cursor.ts +223 -0
  221. package/blockly-rc/core/keyboard_nav/cursor.ts +138 -0
  222. package/blockly-rc/core/keyboard_nav/marker.ts +113 -0
  223. package/blockly-rc/core/keyboard_nav/tab_navigate_cursor.ts +46 -0
  224. package/blockly-rc/core/label_flyout_inflater.ts +59 -0
  225. package/blockly-rc/core/layer_manager.ts +186 -0
  226. package/blockly-rc/core/layers.ts +17 -0
  227. package/blockly-rc/core/main.ts +31 -0
  228. package/blockly-rc/core/marker_manager.ts +189 -0
  229. package/blockly-rc/core/menu.ts +463 -0
  230. package/blockly-rc/core/menuitem.ts +221 -0
  231. package/blockly-rc/core/metrics_manager.ts +486 -0
  232. package/blockly-rc/core/msg.ts +27 -0
  233. package/blockly-rc/core/names.ts +275 -0
  234. package/blockly-rc/core/observable_procedure_map.ts +66 -0
  235. package/blockly-rc/core/options.ts +377 -0
  236. package/blockly-rc/core/positionable_helpers.ts +186 -0
  237. package/blockly-rc/core/procedures.ts +510 -0
  238. package/blockly-rc/core/registry.ts +400 -0
  239. package/blockly-rc/core/render_management.ts +193 -0
  240. package/blockly-rc/core/rendered_connection.ts +571 -0
  241. package/blockly-rc/core/renderers/common/block_rendering.ts +120 -0
  242. package/blockly-rc/core/renderers/common/constants.ts +1198 -0
  243. package/blockly-rc/core/renderers/common/drawer.ts +518 -0
  244. package/blockly-rc/core/renderers/common/i_path_object.ts +137 -0
  245. package/blockly-rc/core/renderers/common/info.ts +767 -0
  246. package/blockly-rc/core/renderers/common/marker_svg.ts +765 -0
  247. package/blockly-rc/core/renderers/common/path_object.ts +324 -0
  248. package/blockly-rc/core/renderers/common/renderer.ts +281 -0
  249. package/blockly-rc/core/renderers/geras/constants.ts +46 -0
  250. package/blockly-rc/core/renderers/geras/drawer.ts +167 -0
  251. package/blockly-rc/core/renderers/geras/geras.ts +31 -0
  252. package/blockly-rc/core/renderers/geras/highlight_constants.ts +342 -0
  253. package/blockly-rc/core/renderers/geras/highlighter.ts +313 -0
  254. package/blockly-rc/core/renderers/geras/info.ts +478 -0
  255. package/blockly-rc/core/renderers/geras/measurables/inline_input.ts +37 -0
  256. package/blockly-rc/core/renderers/geras/measurables/statement_input.ts +36 -0
  257. package/blockly-rc/core/renderers/geras/path_object.ts +135 -0
  258. package/blockly-rc/core/renderers/geras/renderer.ts +124 -0
  259. package/blockly-rc/core/renderers/measurables/base.ts +41 -0
  260. package/blockly-rc/core/renderers/measurables/bottom_row.ts +104 -0
  261. package/blockly-rc/core/renderers/measurables/connection.ts +43 -0
  262. package/blockly-rc/core/renderers/measurables/external_value_input.ts +53 -0
  263. package/blockly-rc/core/renderers/measurables/field.ts +50 -0
  264. package/blockly-rc/core/renderers/measurables/hat.ts +33 -0
  265. package/blockly-rc/core/renderers/measurables/icon.ts +42 -0
  266. package/blockly-rc/core/renderers/measurables/in_row_spacer.ts +29 -0
  267. package/blockly-rc/core/renderers/measurables/inline_input.ts +63 -0
  268. package/blockly-rc/core/renderers/measurables/input_connection.ts +57 -0
  269. package/blockly-rc/core/renderers/measurables/input_row.ts +67 -0
  270. package/blockly-rc/core/renderers/measurables/jagged_edge.ts +28 -0
  271. package/blockly-rc/core/renderers/measurables/next_connection.ts +34 -0
  272. package/blockly-rc/core/renderers/measurables/output_connection.ts +43 -0
  273. package/blockly-rc/core/renderers/measurables/previous_connection.ts +34 -0
  274. package/blockly-rc/core/renderers/measurables/round_corner.ts +34 -0
  275. package/blockly-rc/core/renderers/measurables/row.ts +191 -0
  276. package/blockly-rc/core/renderers/measurables/spacer_row.ts +44 -0
  277. package/blockly-rc/core/renderers/measurables/square_corner.ts +32 -0
  278. package/blockly-rc/core/renderers/measurables/statement_input.ts +41 -0
  279. package/blockly-rc/core/renderers/measurables/top_row.ts +110 -0
  280. package/blockly-rc/core/renderers/measurables/types.ts +319 -0
  281. package/blockly-rc/core/renderers/thrasos/info.ts +328 -0
  282. package/blockly-rc/core/renderers/thrasos/renderer.ts +40 -0
  283. package/blockly-rc/core/renderers/thrasos/thrasos.ts +14 -0
  284. package/blockly-rc/core/renderers/zelos/constants.ts +877 -0
  285. package/blockly-rc/core/renderers/zelos/drawer.ts +274 -0
  286. package/blockly-rc/core/renderers/zelos/info.ts +652 -0
  287. package/blockly-rc/core/renderers/zelos/marker_svg.ts +145 -0
  288. package/blockly-rc/core/renderers/zelos/measurables/bottom_row.ts +44 -0
  289. package/blockly-rc/core/renderers/zelos/measurables/inputs.ts +41 -0
  290. package/blockly-rc/core/renderers/zelos/measurables/row_elements.ts +29 -0
  291. package/blockly-rc/core/renderers/zelos/measurables/top_row.ts +50 -0
  292. package/blockly-rc/core/renderers/zelos/path_object.ts +209 -0
  293. package/blockly-rc/core/renderers/zelos/renderer.ts +143 -0
  294. package/blockly-rc/core/renderers/zelos/zelos.ts +33 -0
  295. package/blockly-rc/core/scrollbar.ts +898 -0
  296. package/blockly-rc/core/scrollbar_pair.ts +349 -0
  297. package/blockly-rc/core/separator_flyout_inflater.ts +69 -0
  298. package/blockly-rc/core/serialization/blocks.ts +868 -0
  299. package/blockly-rc/core/serialization/exceptions.ts +112 -0
  300. package/blockly-rc/core/serialization/priorities.ts +25 -0
  301. package/blockly-rc/core/serialization/procedures.ts +158 -0
  302. package/blockly-rc/core/serialization/registry.ts +30 -0
  303. package/blockly-rc/core/serialization/variables.ts +68 -0
  304. package/blockly-rc/core/serialization/workspace_comments.ts +143 -0
  305. package/blockly-rc/core/serialization/workspaces.ts +94 -0
  306. package/blockly-rc/core/serialization.ts +32 -0
  307. package/blockly-rc/core/shortcut_items.ts +338 -0
  308. package/blockly-rc/core/shortcut_registry.ts +368 -0
  309. package/blockly-rc/core/sprites.ts +15 -0
  310. package/blockly-rc/core/theme/classic.ts +40 -0
  311. package/blockly-rc/core/theme/themes.ts +12 -0
  312. package/blockly-rc/core/theme/zelos.ts +80 -0
  313. package/blockly-rc/core/theme.ts +232 -0
  314. package/blockly-rc/core/theme_manager.ts +192 -0
  315. package/blockly-rc/core/toolbox/category.ts +739 -0
  316. package/blockly-rc/core/toolbox/collapsible_category.ts +288 -0
  317. package/blockly-rc/core/toolbox/separator.ts +105 -0
  318. package/blockly-rc/core/toolbox/toolbox.ts +1134 -0
  319. package/blockly-rc/core/toolbox/toolbox_item.ts +152 -0
  320. package/blockly-rc/core/tooltip.ts +466 -0
  321. package/blockly-rc/core/touch.ts +155 -0
  322. package/blockly-rc/core/trashcan.ts +748 -0
  323. package/blockly-rc/core/utils/aria.ts +144 -0
  324. package/blockly-rc/core/utils/array.ts +24 -0
  325. package/blockly-rc/core/utils/colour.ts +265 -0
  326. package/blockly-rc/core/utils/coordinate.ts +129 -0
  327. package/blockly-rc/core/utils/deprecation.ts +47 -0
  328. package/blockly-rc/core/utils/dom.ts +356 -0
  329. package/blockly-rc/core/utils/idgenerator.ts +70 -0
  330. package/blockly-rc/core/utils/keycodes.ts +154 -0
  331. package/blockly-rc/core/utils/math.ts +50 -0
  332. package/blockly-rc/core/utils/metrics.ts +86 -0
  333. package/blockly-rc/core/utils/object.ts +28 -0
  334. package/blockly-rc/core/utils/parsing.ts +287 -0
  335. package/blockly-rc/core/utils/rect.ts +69 -0
  336. package/blockly-rc/core/utils/size.ts +62 -0
  337. package/blockly-rc/core/utils/string.ts +289 -0
  338. package/blockly-rc/core/utils/style.ts +219 -0
  339. package/blockly-rc/core/utils/svg.ts +84 -0
  340. package/blockly-rc/core/utils/svg_math.ts +208 -0
  341. package/blockly-rc/core/utils/svg_paths.ts +133 -0
  342. package/blockly-rc/core/utils/toolbox.ts +419 -0
  343. package/blockly-rc/core/utils/useragent.ts +86 -0
  344. package/blockly-rc/core/utils/xml.ts +165 -0
  345. package/blockly-rc/core/utils.ts +59 -0
  346. package/blockly-rc/core/variable_map.ts +437 -0
  347. package/blockly-rc/core/variable_model.ts +149 -0
  348. package/blockly-rc/core/variables.ts +773 -0
  349. package/blockly-rc/core/variables_dynamic.ts +142 -0
  350. package/blockly-rc/core/widgetdiv.ts +319 -0
  351. package/blockly-rc/core/workspace.ts +957 -0
  352. package/blockly-rc/core/workspace_audio.ts +171 -0
  353. package/blockly-rc/core/workspace_dragger.ts +97 -0
  354. package/blockly-rc/core/workspace_svg.ts +2519 -0
  355. package/blockly-rc/core/xml.ts +1133 -0
  356. package/blockly-rc/core/zoom_controls.ts +492 -0
  357. package/blockly-rc/demos/blockfactory/analytics.js +195 -0
  358. package/blockly-rc/demos/blockfactory/app_controller.js +726 -0
  359. package/blockly-rc/demos/blockfactory/block_definition_extractor.js +742 -0
  360. package/blockly-rc/demos/blockfactory/block_exporter_controller.js +311 -0
  361. package/blockly-rc/demos/blockfactory/block_exporter_tools.js +212 -0
  362. package/blockly-rc/demos/blockfactory/block_exporter_view.js +101 -0
  363. package/blockly-rc/demos/blockfactory/block_library_controller.js +325 -0
  364. package/blockly-rc/demos/blockfactory/block_library_storage.js +149 -0
  365. package/blockly-rc/demos/blockfactory/block_library_view.js +178 -0
  366. package/blockly-rc/demos/blockfactory/block_option.js +151 -0
  367. package/blockly-rc/demos/blockfactory/blocks.js +916 -0
  368. package/blockly-rc/demos/blockfactory/cp.css +46 -0
  369. package/blockly-rc/demos/blockfactory/cp.js +179 -0
  370. package/blockly-rc/demos/blockfactory/factory.css +586 -0
  371. package/blockly-rc/demos/blockfactory/factory.js +337 -0
  372. package/blockly-rc/demos/blockfactory/factory_utils.js +1036 -0
  373. package/blockly-rc/demos/blockfactory/icon.png +0 -0
  374. package/blockly-rc/demos/blockfactory/index.html +767 -0
  375. package/blockly-rc/demos/blockfactory/link.png +0 -0
  376. package/blockly-rc/demos/blockfactory/standard_categories.js +384 -0
  377. package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
  378. package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
  379. package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
  380. package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
  381. package/blockly-rc/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
  382. package/blockly-rc/demos/code/code.js +626 -0
  383. package/blockly-rc/demos/code/icon.png +0 -0
  384. package/blockly-rc/demos/code/icons.png +0 -0
  385. package/blockly-rc/demos/code/index.html +359 -0
  386. package/blockly-rc/demos/code/msg/ar.js +24 -0
  387. package/blockly-rc/demos/code/msg/be-tarask.js +24 -0
  388. package/blockly-rc/demos/code/msg/br.js +24 -0
  389. package/blockly-rc/demos/code/msg/ca.js +24 -0
  390. package/blockly-rc/demos/code/msg/cs.js +24 -0
  391. package/blockly-rc/demos/code/msg/da.js +24 -0
  392. package/blockly-rc/demos/code/msg/de.js +24 -0
  393. package/blockly-rc/demos/code/msg/el.js +24 -0
  394. package/blockly-rc/demos/code/msg/en.js +24 -0
  395. package/blockly-rc/demos/code/msg/es.js +24 -0
  396. package/blockly-rc/demos/code/msg/et.js +24 -0
  397. package/blockly-rc/demos/code/msg/fa.js +24 -0
  398. package/blockly-rc/demos/code/msg/fr.js +24 -0
  399. package/blockly-rc/demos/code/msg/he.js +24 -0
  400. package/blockly-rc/demos/code/msg/hr.js +24 -0
  401. package/blockly-rc/demos/code/msg/hrx.js +24 -0
  402. package/blockly-rc/demos/code/msg/hu.js +24 -0
  403. package/blockly-rc/demos/code/msg/ia.js +24 -0
  404. package/blockly-rc/demos/code/msg/is.js +24 -0
  405. package/blockly-rc/demos/code/msg/it.js +24 -0
  406. package/blockly-rc/demos/code/msg/ja.js +24 -0
  407. package/blockly-rc/demos/code/msg/kab.js +24 -0
  408. package/blockly-rc/demos/code/msg/ko.js +24 -0
  409. package/blockly-rc/demos/code/msg/mk.js +24 -0
  410. package/blockly-rc/demos/code/msg/ms.js +24 -0
  411. package/blockly-rc/demos/code/msg/nb.js +24 -0
  412. package/blockly-rc/demos/code/msg/nl.js +24 -0
  413. package/blockly-rc/demos/code/msg/oc.js +24 -0
  414. package/blockly-rc/demos/code/msg/pl.js +24 -0
  415. package/blockly-rc/demos/code/msg/pms.js +24 -0
  416. package/blockly-rc/demos/code/msg/pt-br.js +24 -0
  417. package/blockly-rc/demos/code/msg/ro.js +24 -0
  418. package/blockly-rc/demos/code/msg/ru.js +24 -0
  419. package/blockly-rc/demos/code/msg/sc.js +24 -0
  420. package/blockly-rc/demos/code/msg/sk.js +24 -0
  421. package/blockly-rc/demos/code/msg/sr.js +24 -0
  422. package/blockly-rc/demos/code/msg/sv.js +24 -0
  423. package/blockly-rc/demos/code/msg/ta.js +24 -0
  424. package/blockly-rc/demos/code/msg/th.js +24 -0
  425. package/blockly-rc/demos/code/msg/tlh.js +24 -0
  426. package/blockly-rc/demos/code/msg/tr.js +24 -0
  427. package/blockly-rc/demos/code/msg/uk.js +24 -0
  428. package/blockly-rc/demos/code/msg/vi.js +24 -0
  429. package/blockly-rc/demos/code/msg/zh-hans.js +24 -0
  430. package/blockly-rc/demos/code/msg/zh-hant.js +24 -0
  431. package/blockly-rc/demos/code/style.css +184 -0
  432. package/blockly-rc/demos/index.html +68 -0
  433. package/blockly-rc/demos/minimap/icon.png +0 -0
  434. package/blockly-rc/demos/minimap/index.html +91 -0
  435. package/blockly-rc/demos/minimap/minimap.js +302 -0
  436. package/blockly-rc/demos/mobile/README.md +53 -0
  437. package/blockly-rc/demos/mobile/android/README.md +45 -0
  438. package/blockly-rc/demos/mobile/android/app/build.gradle +64 -0
  439. package/blockly-rc/demos/mobile/android/app/proguard-rules.pro +21 -0
  440. package/blockly-rc/demos/mobile/android/app/src/androidTest/java/com/example/blocklywebview/ExampleInstrumentedTest.java +26 -0
  441. package/blockly-rc/demos/mobile/android/app/src/main/AndroidManifest.xml +21 -0
  442. package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/BlocklyWebViewFragment.java +40 -0
  443. package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/JsDialogHelper.java +150 -0
  444. package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/WebChromeClient.java +32 -0
  445. package/blockly-rc/demos/mobile/android/app/src/main/java/com/google/blockly/android/webview/demo/MainActivity.java +18 -0
  446. package/blockly-rc/demos/mobile/android/app/src/main/res/drawable/ic_launcher_background.xml +74 -0
  447. package/blockly-rc/demos/mobile/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +34 -0
  448. package/blockly-rc/demos/mobile/android/app/src/main/res/layout/activity_main.xml +17 -0
  449. package/blockly-rc/demos/mobile/android/app/src/main/res/layout/js_prompt.xml +37 -0
  450. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
  451. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
  452. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  453. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  454. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  455. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  456. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  457. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  458. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  459. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  460. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  461. package/blockly-rc/demos/mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  462. package/blockly-rc/demos/mobile/android/app/src/main/res/values/colors.xml +6 -0
  463. package/blockly-rc/demos/mobile/android/app/src/main/res/values/js_dialog_helper.xml +7 -0
  464. package/blockly-rc/demos/mobile/android/app/src/main/res/values/strings.xml +3 -0
  465. package/blockly-rc/demos/mobile/android/app/src/main/res/values/styles.xml +11 -0
  466. package/blockly-rc/demos/mobile/android/app/src/test/java/com/example/blocklywebview/ExampleUnitTest.java +17 -0
  467. package/blockly-rc/demos/mobile/android/build.gradle +27 -0
  468. package/blockly-rc/demos/mobile/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  469. package/blockly-rc/demos/mobile/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  470. package/blockly-rc/demos/mobile/android/gradle.properties +13 -0
  471. package/blockly-rc/demos/mobile/android/gradlew +172 -0
  472. package/blockly-rc/demos/mobile/android/gradlew.bat +84 -0
  473. package/blockly-rc/demos/mobile/android/settings.gradle +1 -0
  474. package/blockly-rc/demos/mobile/html/index.html +31 -0
  475. package/blockly-rc/demos/mobile/html/ln_resources.sh +22 -0
  476. package/blockly-rc/demos/mobile/html/toolbox_standard.js +333 -0
  477. package/blockly-rc/demos/mobile/ios/Blockly WebView/AppDelegate.swift +46 -0
  478. package/blockly-rc/demos/mobile/ios/Blockly WebView/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
  479. package/blockly-rc/demos/mobile/ios/Blockly WebView/Assets.xcassets/Contents.json +6 -0
  480. package/blockly-rc/demos/mobile/ios/Blockly WebView/Base.lproj/LaunchScreen.storyboard +25 -0
  481. package/blockly-rc/demos/mobile/ios/Blockly WebView/Base.lproj/Main.storyboard +44 -0
  482. package/blockly-rc/demos/mobile/ios/Blockly WebView/Info.plist +45 -0
  483. package/blockly-rc/demos/mobile/ios/Blockly WebView/ViewController.swift +110 -0
  484. package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.pbxproj +390 -0
  485. package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  486. package/blockly-rc/demos/mobile/ios/Blockly WebView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  487. package/blockly-rc/demos/mobile/ios/cp_resources.sh +21 -0
  488. package/blockly-rc/demos/storage/icon.png +0 -0
  489. package/blockly-rc/demos/storage/index.html +104 -0
  490. package/blockly-rc/generators/dart/dart_generator.ts +321 -0
  491. package/blockly-rc/generators/dart/lists.ts +525 -0
  492. package/blockly-rc/generators/dart/logic.ts +155 -0
  493. package/blockly-rc/generators/dart/loops.ts +217 -0
  494. package/blockly-rc/generators/dart/math.ts +559 -0
  495. package/blockly-rc/generators/dart/procedures.ts +138 -0
  496. package/blockly-rc/generators/dart/text.ts +405 -0
  497. package/blockly-rc/generators/dart/variables.ts +32 -0
  498. package/blockly-rc/generators/dart/variables_dynamic.ts +17 -0
  499. package/blockly-rc/generators/dart.ts +50 -0
  500. package/blockly-rc/generators/javascript/javascript_generator.ts +346 -0
  501. package/blockly-rc/generators/javascript/lists.ts +465 -0
  502. package/blockly-rc/generators/javascript/logic.ts +153 -0
  503. package/blockly-rc/generators/javascript/loops.ts +245 -0
  504. package/blockly-rc/generators/javascript/math.ts +450 -0
  505. package/blockly-rc/generators/javascript/procedures.ts +142 -0
  506. package/blockly-rc/generators/javascript/text.ts +418 -0
  507. package/blockly-rc/generators/javascript/variables.ts +32 -0
  508. package/blockly-rc/generators/javascript/variables_dynamic.ts +17 -0
  509. package/blockly-rc/generators/javascript.ts +46 -0
  510. package/blockly-rc/generators/lua/lists.ts +445 -0
  511. package/blockly-rc/generators/lua/logic.ts +142 -0
  512. package/blockly-rc/generators/lua/loops.ts +192 -0
  513. package/blockly-rc/generators/lua/lua_generator.ts +225 -0
  514. package/blockly-rc/generators/lua/math.ts +473 -0
  515. package/blockly-rc/generators/lua/procedures.ts +144 -0
  516. package/blockly-rc/generators/lua/text.ts +380 -0
  517. package/blockly-rc/generators/lua/variables.ts +31 -0
  518. package/blockly-rc/generators/lua/variables_dynamic.ts +17 -0
  519. package/blockly-rc/generators/lua.ts +44 -0
  520. package/blockly-rc/generators/php/lists.ts +585 -0
  521. package/blockly-rc/generators/php/logic.ts +155 -0
  522. package/blockly-rc/generators/php/loops.ts +218 -0
  523. package/blockly-rc/generators/php/math.ts +408 -0
  524. package/blockly-rc/generators/php/php_generator.ts +320 -0
  525. package/blockly-rc/generators/php/procedures.ts +159 -0
  526. package/blockly-rc/generators/php/text.ts +315 -0
  527. package/blockly-rc/generators/php/variables.ts +32 -0
  528. package/blockly-rc/generators/php/variables_dynamic.ts +17 -0
  529. package/blockly-rc/generators/php.ts +46 -0
  530. package/blockly-rc/generators/python/lists.ts +398 -0
  531. package/blockly-rc/generators/python/logic.ts +148 -0
  532. package/blockly-rc/generators/python/loops.ts +251 -0
  533. package/blockly-rc/generators/python/math.ts +434 -0
  534. package/blockly-rc/generators/python/procedures.ts +159 -0
  535. package/blockly-rc/generators/python/python_generator.ts +355 -0
  536. package/blockly-rc/generators/python/text.ts +338 -0
  537. package/blockly-rc/generators/python/variables.ts +31 -0
  538. package/blockly-rc/generators/python/variables_dynamic.ts +17 -0
  539. package/blockly-rc/generators/python.ts +51 -0
  540. package/blockly-rc/gulpfile.js +54 -0
  541. package/blockly-rc/jsconfig.json +7 -0
  542. package/blockly-rc/media/1x1.gif +0 -0
  543. package/blockly-rc/media/click.mp3 +0 -0
  544. package/blockly-rc/media/click.ogg +0 -0
  545. package/blockly-rc/media/click.wav +0 -0
  546. package/blockly-rc/media/delete-icon.svg +1 -0
  547. package/blockly-rc/media/delete.mp3 +0 -0
  548. package/blockly-rc/media/delete.ogg +0 -0
  549. package/blockly-rc/media/delete.wav +0 -0
  550. package/blockly-rc/media/disconnect.mp3 +0 -0
  551. package/blockly-rc/media/disconnect.ogg +0 -0
  552. package/blockly-rc/media/disconnect.wav +0 -0
  553. package/blockly-rc/media/dropdown-arrow.svg +1 -0
  554. package/blockly-rc/media/foldout-icon.svg +1 -0
  555. package/blockly-rc/media/handclosed.cur +0 -0
  556. package/blockly-rc/media/handdelete.cur +0 -0
  557. package/blockly-rc/media/handopen.cur +0 -0
  558. package/blockly-rc/media/pilcrow.png +0 -0
  559. package/blockly-rc/media/quote0.png +0 -0
  560. package/blockly-rc/media/quote1.png +0 -0
  561. package/blockly-rc/media/resize-handle.svg +3 -0
  562. package/blockly-rc/media/sprites.png +0 -0
  563. package/blockly-rc/media/sprites.svg +74 -0
  564. package/blockly-rc/msg/json/README.md +33 -0
  565. package/blockly-rc/msg/json/ab.json +222 -0
  566. package/blockly-rc/msg/json/ace.json +7 -0
  567. package/blockly-rc/msg/json/af.json +34 -0
  568. package/blockly-rc/msg/json/am.json +30 -0
  569. package/blockly-rc/msg/json/ar.json +355 -0
  570. package/blockly-rc/msg/json/ast.json +10 -0
  571. package/blockly-rc/msg/json/az.json +332 -0
  572. package/blockly-rc/msg/json/ba.json +211 -0
  573. package/blockly-rc/msg/json/bcc.json +290 -0
  574. package/blockly-rc/msg/json/be-tarask.json +334 -0
  575. package/blockly-rc/msg/json/be.json +324 -0
  576. package/blockly-rc/msg/json/bg.json +345 -0
  577. package/blockly-rc/msg/json/bn.json +189 -0
  578. package/blockly-rc/msg/json/br.json +334 -0
  579. package/blockly-rc/msg/json/bs.json +166 -0
  580. package/blockly-rc/msg/json/ca.json +341 -0
  581. package/blockly-rc/msg/json/cdo.json +6 -0
  582. package/blockly-rc/msg/json/ce.json +326 -0
  583. package/blockly-rc/msg/json/constants.json +12 -0
  584. package/blockly-rc/msg/json/cs.json +343 -0
  585. package/blockly-rc/msg/json/da.json +346 -0
  586. package/blockly-rc/msg/json/de.json +369 -0
  587. package/blockly-rc/msg/json/diq.json +258 -0
  588. package/blockly-rc/msg/json/dtp.json +198 -0
  589. package/blockly-rc/msg/json/dty.json +97 -0
  590. package/blockly-rc/msg/json/ee.json +160 -0
  591. package/blockly-rc/msg/json/el.json +356 -0
  592. package/blockly-rc/msg/json/en-gb.json +199 -0
  593. package/blockly-rc/msg/json/en.json +400 -0
  594. package/blockly-rc/msg/json/eo.json +337 -0
  595. package/blockly-rc/msg/json/es.json +358 -0
  596. package/blockly-rc/msg/json/et.json +326 -0
  597. package/blockly-rc/msg/json/eu.json +219 -0
  598. package/blockly-rc/msg/json/fa.json +341 -0
  599. package/blockly-rc/msg/json/fi.json +350 -0
  600. package/blockly-rc/msg/json/fo.json +46 -0
  601. package/blockly-rc/msg/json/fr.json +373 -0
  602. package/blockly-rc/msg/json/frr.json +6 -0
  603. package/blockly-rc/msg/json/gl.json +338 -0
  604. package/blockly-rc/msg/json/gn.json +54 -0
  605. package/blockly-rc/msg/json/gor.json +87 -0
  606. package/blockly-rc/msg/json/ha.json +313 -0
  607. package/blockly-rc/msg/json/hak.json +17 -0
  608. package/blockly-rc/msg/json/he.json +354 -0
  609. package/blockly-rc/msg/json/hi.json +318 -0
  610. package/blockly-rc/msg/json/hr.json +327 -0
  611. package/blockly-rc/msg/json/hrx.json +287 -0
  612. package/blockly-rc/msg/json/hsb.json +128 -0
  613. package/blockly-rc/msg/json/hu.json +349 -0
  614. package/blockly-rc/msg/json/hy.json +337 -0
  615. package/blockly-rc/msg/json/ia.json +337 -0
  616. package/blockly-rc/msg/json/id.json +335 -0
  617. package/blockly-rc/msg/json/ig.json +323 -0
  618. package/blockly-rc/msg/json/inh.json +80 -0
  619. package/blockly-rc/msg/json/is.json +331 -0
  620. package/blockly-rc/msg/json/it.json +346 -0
  621. package/blockly-rc/msg/json/ja.json +361 -0
  622. package/blockly-rc/msg/json/ka.json +14 -0
  623. package/blockly-rc/msg/json/kab.json +323 -0
  624. package/blockly-rc/msg/json/kbd-cyrl.json +84 -0
  625. package/blockly-rc/msg/json/km.json +29 -0
  626. package/blockly-rc/msg/json/kn.json +332 -0
  627. package/blockly-rc/msg/json/ko.json +372 -0
  628. package/blockly-rc/msg/json/ksh.json +43 -0
  629. package/blockly-rc/msg/json/ku-latn.json +41 -0
  630. package/blockly-rc/msg/json/ky.json +71 -0
  631. package/blockly-rc/msg/json/la.json +6 -0
  632. package/blockly-rc/msg/json/lb.json +156 -0
  633. package/blockly-rc/msg/json/lki.json +282 -0
  634. package/blockly-rc/msg/json/lo.json +92 -0
  635. package/blockly-rc/msg/json/lrc.json +123 -0
  636. package/blockly-rc/msg/json/lt.json +321 -0
  637. package/blockly-rc/msg/json/lv.json +324 -0
  638. package/blockly-rc/msg/json/mg.json +58 -0
  639. package/blockly-rc/msg/json/mk.json +178 -0
  640. package/blockly-rc/msg/json/ml.json +35 -0
  641. package/blockly-rc/msg/json/mnw.json +90 -0
  642. package/blockly-rc/msg/json/ms.json +300 -0
  643. package/blockly-rc/msg/json/my.json +57 -0
  644. package/blockly-rc/msg/json/mzn.json +6 -0
  645. package/blockly-rc/msg/json/nb.json +330 -0
  646. package/blockly-rc/msg/json/ne.json +247 -0
  647. package/blockly-rc/msg/json/nl.json +357 -0
  648. package/blockly-rc/msg/json/oc.json +194 -0
  649. package/blockly-rc/msg/json/olo.json +37 -0
  650. package/blockly-rc/msg/json/pa.json +69 -0
  651. package/blockly-rc/msg/json/pl.json +357 -0
  652. package/blockly-rc/msg/json/pms.json +324 -0
  653. package/blockly-rc/msg/json/ps.json +50 -0
  654. package/blockly-rc/msg/json/pt-br.json +369 -0
  655. package/blockly-rc/msg/json/pt.json +358 -0
  656. package/blockly-rc/msg/json/qqq.json +406 -0
  657. package/blockly-rc/msg/json/ro.json +333 -0
  658. package/blockly-rc/msg/json/ru.json +363 -0
  659. package/blockly-rc/msg/json/sc.json +283 -0
  660. package/blockly-rc/msg/json/sco.json +11 -0
  661. package/blockly-rc/msg/json/sd.json +158 -0
  662. package/blockly-rc/msg/json/shn.json +109 -0
  663. package/blockly-rc/msg/json/si.json +16 -0
  664. package/blockly-rc/msg/json/sk.json +332 -0
  665. package/blockly-rc/msg/json/skr-arab.json +117 -0
  666. package/blockly-rc/msg/json/sl.json +355 -0
  667. package/blockly-rc/msg/json/smn.json +133 -0
  668. package/blockly-rc/msg/json/sq.json +343 -0
  669. package/blockly-rc/msg/json/sr-latn.json +324 -0
  670. package/blockly-rc/msg/json/sr.json +348 -0
  671. package/blockly-rc/msg/json/sv.json +347 -0
  672. package/blockly-rc/msg/json/sw.json +12 -0
  673. package/blockly-rc/msg/json/synonyms.json +22 -0
  674. package/blockly-rc/msg/json/ta.json +306 -0
  675. package/blockly-rc/msg/json/tcy.json +316 -0
  676. package/blockly-rc/msg/json/tdd.json +109 -0
  677. package/blockly-rc/msg/json/te.json +101 -0
  678. package/blockly-rc/msg/json/th.json +333 -0
  679. package/blockly-rc/msg/json/ti.json +50 -0
  680. package/blockly-rc/msg/json/tl.json +129 -0
  681. package/blockly-rc/msg/json/tlh.json +179 -0
  682. package/blockly-rc/msg/json/tr.json +369 -0
  683. package/blockly-rc/msg/json/ug-arab.json +132 -0
  684. package/blockly-rc/msg/json/uk.json +345 -0
  685. package/blockly-rc/msg/json/ur.json +117 -0
  686. package/blockly-rc/msg/json/uz.json +36 -0
  687. package/blockly-rc/msg/json/vi.json +345 -0
  688. package/blockly-rc/msg/json/xmf.json +96 -0
  689. package/blockly-rc/msg/json/yo.json +316 -0
  690. package/blockly-rc/msg/json/zgh.json +83 -0
  691. package/blockly-rc/msg/json/zh-hans.json +372 -0
  692. package/blockly-rc/msg/json/zh-hant.json +362 -0
  693. package/blockly-rc/msg/messages.js +1616 -0
  694. package/blockly-rc/package-lock.json +12324 -0
  695. package/blockly-rc/package.json +149 -0
  696. package/blockly-rc/patches/@microsoft+api-documenter+7.22.4.patch +81 -0
  697. package/blockly-rc/scripts/goog_module/convert-file.sh +406 -0
  698. package/blockly-rc/scripts/gulpfiles/appengine_tasks.js +195 -0
  699. package/blockly-rc/scripts/gulpfiles/build_tasks.js +752 -0
  700. package/blockly-rc/scripts/gulpfiles/config.js +41 -0
  701. package/blockly-rc/scripts/gulpfiles/docs_tasks.js +147 -0
  702. package/blockly-rc/scripts/gulpfiles/git_tasks.js +181 -0
  703. package/blockly-rc/scripts/gulpfiles/helper_tasks.js +19 -0
  704. package/blockly-rc/scripts/gulpfiles/package_tasks.js +262 -0
  705. package/blockly-rc/scripts/gulpfiles/release_tasks.js +183 -0
  706. package/blockly-rc/scripts/gulpfiles/test_tasks.js +405 -0
  707. package/blockly-rc/scripts/helpers.js +74 -0
  708. package/blockly-rc/scripts/i18n/common.py +233 -0
  709. package/blockly-rc/scripts/i18n/create_messages.py +167 -0
  710. package/blockly-rc/scripts/i18n/dedup_json.py +72 -0
  711. package/blockly-rc/scripts/i18n/js_to_json.py +135 -0
  712. package/blockly-rc/scripts/i18n/tests.py +46 -0
  713. package/blockly-rc/scripts/migration/cjs2esm +162 -0
  714. package/blockly-rc/scripts/migration/js2ts +168 -0
  715. package/blockly-rc/scripts/migration/renamings.json5 +1599 -0
  716. package/blockly-rc/scripts/package/README.md +93 -0
  717. package/blockly-rc/scripts/package/core-node.js +31 -0
  718. package/blockly-rc/scripts/package/index.js +23 -0
  719. package/blockly-rc/scripts/package/templates/umd-msg.template +16 -0
  720. package/blockly-rc/scripts/package/templates/umd.template +13 -0
  721. package/blockly-rc/scripts/themes/blockStyles_example.json +11 -0
  722. package/blockly-rc/scripts/themes/create_blockStyles.py +181 -0
  723. package/blockly-rc/scripts/tsick.js +86 -0
  724. package/blockly-rc/tests/.eslintrc.json +10 -0
  725. package/blockly-rc/tests/browser/.eslintrc.json +29 -0
  726. package/blockly-rc/tests/browser/.mocharc.js +6 -0
  727. package/blockly-rc/tests/browser/test/basic_block_factory_test.mjs +44 -0
  728. package/blockly-rc/tests/browser/test/basic_block_test.mjs +39 -0
  729. package/blockly-rc/tests/browser/test/basic_playground_test.mjs +198 -0
  730. package/blockly-rc/tests/browser/test/block_undo_test.mjs +50 -0
  731. package/blockly-rc/tests/browser/test/delete_blocks_test.mjs +211 -0
  732. package/blockly-rc/tests/browser/test/extensive_test.mjs +195 -0
  733. package/blockly-rc/tests/browser/test/field_edits_test.mjs +61 -0
  734. package/blockly-rc/tests/browser/test/hooks.mjs +23 -0
  735. package/blockly-rc/tests/browser/test/mutator_test.mjs +88 -0
  736. package/blockly-rc/tests/browser/test/procedure_test.mjs +109 -0
  737. package/blockly-rc/tests/browser/test/test_setup.mjs +589 -0
  738. package/blockly-rc/tests/browser/test/toolbox_drag_test.mjs +207 -0
  739. package/blockly-rc/tests/browser/test/workspace_comment_test.mjs +224 -0
  740. package/blockly-rc/tests/compile/index.html +43 -0
  741. package/blockly-rc/tests/compile/main.js +53 -0
  742. package/blockly-rc/tests/compile/test_blocks.js +47 -0
  743. package/blockly-rc/tests/compile/webdriver.js +81 -0
  744. package/blockly-rc/tests/generators/functions.xml +561 -0
  745. package/blockly-rc/tests/generators/golden/generated.dart +1604 -0
  746. package/blockly-rc/tests/generators/golden/generated.js +1552 -0
  747. package/blockly-rc/tests/generators/golden/generated.lua +1828 -0
  748. package/blockly-rc/tests/generators/golden/generated.php +1611 -0
  749. package/blockly-rc/tests/generators/golden/generated.py +1407 -0
  750. package/blockly-rc/tests/generators/index.html +405 -0
  751. package/blockly-rc/tests/generators/lists.xml +8675 -0
  752. package/blockly-rc/tests/generators/logic.xml +1019 -0
  753. package/blockly-rc/tests/generators/loops1.xml +345 -0
  754. package/blockly-rc/tests/generators/loops2.xml +891 -0
  755. package/blockly-rc/tests/generators/loops3.xml +735 -0
  756. package/blockly-rc/tests/generators/math.xml +2077 -0
  757. package/blockly-rc/tests/generators/text.xml +4651 -0
  758. package/blockly-rc/tests/generators/unittest.js +103 -0
  759. package/blockly-rc/tests/generators/unittest_dart.js +163 -0
  760. package/blockly-rc/tests/generators/unittest_javascript.js +167 -0
  761. package/blockly-rc/tests/generators/unittest_lua.js +165 -0
  762. package/blockly-rc/tests/generators/unittest_php.js +154 -0
  763. package/blockly-rc/tests/generators/unittest_python.js +138 -0
  764. package/blockly-rc/tests/generators/variables.xml +68 -0
  765. package/blockly-rc/tests/generators/webdriver.js +123 -0
  766. package/blockly-rc/tests/media/200px.png +0 -0
  767. package/blockly-rc/tests/media/30px.png +0 -0
  768. package/blockly-rc/tests/media/50px.png +0 -0
  769. package/blockly-rc/tests/media/a.png +0 -0
  770. package/blockly-rc/tests/media/arrow.png +0 -0
  771. package/blockly-rc/tests/media/b.png +0 -0
  772. package/blockly-rc/tests/media/c.png +0 -0
  773. package/blockly-rc/tests/media/d.png +0 -0
  774. package/blockly-rc/tests/media/e.png +0 -0
  775. package/blockly-rc/tests/media/f.png +0 -0
  776. package/blockly-rc/tests/media/g.png +0 -0
  777. package/blockly-rc/tests/media/h.png +0 -0
  778. package/blockly-rc/tests/media/i.png +0 -0
  779. package/blockly-rc/tests/media/j.png +0 -0
  780. package/blockly-rc/tests/media/k.png +0 -0
  781. package/blockly-rc/tests/media/l.png +0 -0
  782. package/blockly-rc/tests/media/m.png +0 -0
  783. package/blockly-rc/tests/migration/renamings.schema.json +59 -0
  784. package/blockly-rc/tests/migration/validate-renamings.mjs +60 -0
  785. package/blockly-rc/tests/mocha/.eslintrc.json +21 -0
  786. package/blockly-rc/tests/mocha/.mocharc.js +6 -0
  787. package/blockly-rc/tests/mocha/astnode_test.js +850 -0
  788. package/blockly-rc/tests/mocha/block_json_test.js +777 -0
  789. package/blockly-rc/tests/mocha/block_test.js +2743 -0
  790. package/blockly-rc/tests/mocha/blocks/lists_test.js +196 -0
  791. package/blockly-rc/tests/mocha/blocks/logic_ternary_test.js +320 -0
  792. package/blockly-rc/tests/mocha/blocks/loops_test.js +56 -0
  793. package/blockly-rc/tests/mocha/blocks/procedures_test.js +2495 -0
  794. package/blockly-rc/tests/mocha/blocks/variables_test.js +311 -0
  795. package/blockly-rc/tests/mocha/clipboard_test.js +136 -0
  796. package/blockly-rc/tests/mocha/comment_deserialization_test.js +122 -0
  797. package/blockly-rc/tests/mocha/comment_test.js +170 -0
  798. package/blockly-rc/tests/mocha/comment_view_test.js +188 -0
  799. package/blockly-rc/tests/mocha/connection_checker_test.js +666 -0
  800. package/blockly-rc/tests/mocha/connection_db_test.js +362 -0
  801. package/blockly-rc/tests/mocha/connection_test.js +3738 -0
  802. package/blockly-rc/tests/mocha/contextmenu_items_test.js +488 -0
  803. package/blockly-rc/tests/mocha/contextmenu_test.js +71 -0
  804. package/blockly-rc/tests/mocha/cursor_test.js +134 -0
  805. package/blockly-rc/tests/mocha/dropdowndiv_test.js +116 -0
  806. package/blockly-rc/tests/mocha/event_block_change_test.js +126 -0
  807. package/blockly-rc/tests/mocha/event_block_create_test.js +109 -0
  808. package/blockly-rc/tests/mocha/event_block_delete_test.js +55 -0
  809. package/blockly-rc/tests/mocha/event_block_drag_test.js +36 -0
  810. package/blockly-rc/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
  811. package/blockly-rc/tests/mocha/event_block_move_test.js +39 -0
  812. package/blockly-rc/tests/mocha/event_bubble_open_test.js +42 -0
  813. package/blockly-rc/tests/mocha/event_click_test.js +40 -0
  814. package/blockly-rc/tests/mocha/event_comment_change_test.js +39 -0
  815. package/blockly-rc/tests/mocha/event_comment_collapse_test.js +34 -0
  816. package/blockly-rc/tests/mocha/event_comment_create_test.js +38 -0
  817. package/blockly-rc/tests/mocha/event_comment_delete_test.js +38 -0
  818. package/blockly-rc/tests/mocha/event_comment_drag_test.js +35 -0
  819. package/blockly-rc/tests/mocha/event_comment_move_test.js +40 -0
  820. package/blockly-rc/tests/mocha/event_comment_resize_test.js +38 -0
  821. package/blockly-rc/tests/mocha/event_marker_move_test.js +44 -0
  822. package/blockly-rc/tests/mocha/event_selected_test.js +41 -0
  823. package/blockly-rc/tests/mocha/event_test.js +1578 -0
  824. package/blockly-rc/tests/mocha/event_theme_change_test.js +36 -0
  825. package/blockly-rc/tests/mocha/event_toolbox_item_select_test.js +64 -0
  826. package/blockly-rc/tests/mocha/event_trashcan_open_test.js +36 -0
  827. package/blockly-rc/tests/mocha/event_var_create_test.js +54 -0
  828. package/blockly-rc/tests/mocha/event_var_delete_test.js +54 -0
  829. package/blockly-rc/tests/mocha/event_var_rename_test.js +39 -0
  830. package/blockly-rc/tests/mocha/event_var_type_change_test.js +43 -0
  831. package/blockly-rc/tests/mocha/event_viewport_test.js +39 -0
  832. package/blockly-rc/tests/mocha/extensions_test.js +613 -0
  833. package/blockly-rc/tests/mocha/field_checkbox_test.js +299 -0
  834. package/blockly-rc/tests/mocha/field_colour_test.js +395 -0
  835. package/blockly-rc/tests/mocha/field_dropdown_test.js +282 -0
  836. package/blockly-rc/tests/mocha/field_image_test.js +241 -0
  837. package/blockly-rc/tests/mocha/field_label_serializable_test.js +252 -0
  838. package/blockly-rc/tests/mocha/field_label_test.js +226 -0
  839. package/blockly-rc/tests/mocha/field_number_test.js +505 -0
  840. package/blockly-rc/tests/mocha/field_registry_test.js +116 -0
  841. package/blockly-rc/tests/mocha/field_test.js +822 -0
  842. package/blockly-rc/tests/mocha/field_textinput_test.js +297 -0
  843. package/blockly-rc/tests/mocha/field_variable_test.js +611 -0
  844. package/blockly-rc/tests/mocha/flyout_test.js +638 -0
  845. package/blockly-rc/tests/mocha/generator_test.js +233 -0
  846. package/blockly-rc/tests/mocha/gesture_test.js +97 -0
  847. package/blockly-rc/tests/mocha/icon_test.js +369 -0
  848. package/blockly-rc/tests/mocha/index.html +229 -0
  849. package/blockly-rc/tests/mocha/input_test.js +296 -0
  850. package/blockly-rc/tests/mocha/insertion_marker_manager_test.js +443 -0
  851. package/blockly-rc/tests/mocha/insertion_marker_test.js +432 -0
  852. package/blockly-rc/tests/mocha/jso_deserialization_test.js +849 -0
  853. package/blockly-rc/tests/mocha/jso_serialization_test.js +1067 -0
  854. package/blockly-rc/tests/mocha/json_test.js +315 -0
  855. package/blockly-rc/tests/mocha/keydown_test.js +364 -0
  856. package/blockly-rc/tests/mocha/layering_test.js +95 -0
  857. package/blockly-rc/tests/mocha/metrics_test.js +671 -0
  858. package/blockly-rc/tests/mocha/mutator_test.js +87 -0
  859. package/blockly-rc/tests/mocha/names_test.js +97 -0
  860. package/blockly-rc/tests/mocha/old_workspace_comment_test.js +256 -0
  861. package/blockly-rc/tests/mocha/procedure_map_test.js +57 -0
  862. package/blockly-rc/tests/mocha/registry_test.js +281 -0
  863. package/blockly-rc/tests/mocha/render_management_test.js +127 -0
  864. package/blockly-rc/tests/mocha/serializer_test.js +2104 -0
  865. package/blockly-rc/tests/mocha/shortcut_registry_test.js +450 -0
  866. package/blockly-rc/tests/mocha/test_helpers/block_definitions.js +204 -0
  867. package/blockly-rc/tests/mocha/test_helpers/code_generation.js +115 -0
  868. package/blockly-rc/tests/mocha/test_helpers/common.js +106 -0
  869. package/blockly-rc/tests/mocha/test_helpers/events.js +290 -0
  870. package/blockly-rc/tests/mocha/test_helpers/fields.js +310 -0
  871. package/blockly-rc/tests/mocha/test_helpers/icon_mocks.js +81 -0
  872. package/blockly-rc/tests/mocha/test_helpers/procedures.js +302 -0
  873. package/blockly-rc/tests/mocha/test_helpers/serialization.js +124 -0
  874. package/blockly-rc/tests/mocha/test_helpers/setup_teardown.js +209 -0
  875. package/blockly-rc/tests/mocha/test_helpers/toolbox_definitions.js +271 -0
  876. package/blockly-rc/tests/mocha/test_helpers/user_input.js +62 -0
  877. package/blockly-rc/tests/mocha/test_helpers/variables.js +23 -0
  878. package/blockly-rc/tests/mocha/test_helpers/warnings.js +83 -0
  879. package/blockly-rc/tests/mocha/test_helpers/workspace.js +1691 -0
  880. package/blockly-rc/tests/mocha/theme_test.js +307 -0
  881. package/blockly-rc/tests/mocha/toolbox_test.js +761 -0
  882. package/blockly-rc/tests/mocha/tooltip_test.js +276 -0
  883. package/blockly-rc/tests/mocha/touch_test.js +109 -0
  884. package/blockly-rc/tests/mocha/trashcan_test.js +375 -0
  885. package/blockly-rc/tests/mocha/utils_test.js +536 -0
  886. package/blockly-rc/tests/mocha/variable_map_test.js +509 -0
  887. package/blockly-rc/tests/mocha/variable_model_test.js +85 -0
  888. package/blockly-rc/tests/mocha/webdriver.js +96 -0
  889. package/blockly-rc/tests/mocha/widget_div_test.js +272 -0
  890. package/blockly-rc/tests/mocha/workspace_comment_test.js +171 -0
  891. package/blockly-rc/tests/mocha/workspace_svg_test.js +414 -0
  892. package/blockly-rc/tests/mocha/workspace_test.js +27 -0
  893. package/blockly-rc/tests/mocha/xml_test.js +951 -0
  894. package/blockly-rc/tests/mocha/zoom_controls_test.js +81 -0
  895. package/blockly-rc/tests/multi_playground.html +482 -0
  896. package/blockly-rc/tests/node/.eslintrc.json +12 -0
  897. package/blockly-rc/tests/node/.mocharc.js +6 -0
  898. package/blockly-rc/tests/node/run_node_test.mjs +72 -0
  899. package/blockly-rc/tests/playground.html +1280 -0
  900. package/blockly-rc/tests/playgrounds/advanced_playground.html +158 -0
  901. package/blockly-rc/tests/playgrounds/iframe.html +40 -0
  902. package/blockly-rc/tests/playgrounds/screenshot.js +123 -0
  903. package/blockly-rc/tests/scripts/check_metadata.sh +166 -0
  904. package/blockly-rc/tests/scripts/compile_typings.sh +32 -0
  905. package/blockly-rc/tests/scripts/load.mjs +140 -0
  906. package/blockly-rc/tests/scripts/setup_linux_env.sh +7 -0
  907. package/blockly-rc/tests/scripts/update_metadata.sh +46 -0
  908. package/blockly-rc/tests/themes/test_themes.js +62 -0
  909. package/blockly-rc/tests/typescript/README.md +4 -0
  910. package/blockly-rc/tests/typescript/src/field/different_user_input.ts +81 -0
  911. package/blockly-rc/tests/typescript/src/generators/dart.ts +24 -0
  912. package/blockly-rc/tests/typescript/src/generators/javascript.ts +28 -0
  913. package/blockly-rc/tests/typescript/src/generators/lua.ts +24 -0
  914. package/blockly-rc/tests/typescript/src/generators/php.ts +24 -0
  915. package/blockly-rc/tests/typescript/src/generators/python.ts +24 -0
  916. package/blockly-rc/tests/typescript/src/generators.ts +31 -0
  917. package/blockly-rc/tests/typescript/src/msg.ts +20 -0
  918. package/blockly-rc/tests/typescript/tsconfig.json +20 -0
  919. package/blockly-rc/tests/xml/README.txt +11 -0
  920. package/blockly-rc/tests/xml/blockly.xsd +178 -0
  921. package/blockly-rc/tests/xml/invalid.xml +6 -0
  922. package/blockly-rc/tests/xml/toolbox.xml +311 -0
  923. package/blockly-rc/tests/xml/workspace.xml +114 -0
  924. package/blockly-rc/tsconfig.json +37 -0
  925. package/blockly-rc/tsdoc.json +35 -0
  926. package/blockly-rc/typings/README.md +5 -0
  927. package/blockly-rc/typings/blocks.d.ts +17 -0
  928. package/blockly-rc/typings/core.d.ts +7 -0
  929. package/blockly-rc/typings/dart.d.ts +7 -0
  930. package/blockly-rc/typings/index.d.ts +10 -0
  931. package/blockly-rc/typings/javascript.d.ts +7 -0
  932. package/blockly-rc/typings/lua.d.ts +7 -0
  933. package/blockly-rc/typings/msg/ab.d.ts +8 -0
  934. package/blockly-rc/typings/msg/ace.d.ts +8 -0
  935. package/blockly-rc/typings/msg/af.d.ts +8 -0
  936. package/blockly-rc/typings/msg/am.d.ts +8 -0
  937. package/blockly-rc/typings/msg/ar.d.ts +8 -0
  938. package/blockly-rc/typings/msg/ast.d.ts +8 -0
  939. package/blockly-rc/typings/msg/az.d.ts +8 -0
  940. package/blockly-rc/typings/msg/ba.d.ts +8 -0
  941. package/blockly-rc/typings/msg/bcc.d.ts +8 -0
  942. package/blockly-rc/typings/msg/be-tarask.d.ts +8 -0
  943. package/blockly-rc/typings/msg/be.d.ts +8 -0
  944. package/blockly-rc/typings/msg/bg.d.ts +8 -0
  945. package/blockly-rc/typings/msg/bn.d.ts +8 -0
  946. package/blockly-rc/typings/msg/br.d.ts +8 -0
  947. package/blockly-rc/typings/msg/bs.d.ts +8 -0
  948. package/blockly-rc/typings/msg/ca.d.ts +8 -0
  949. package/blockly-rc/typings/msg/cdo.d.ts +8 -0
  950. package/blockly-rc/typings/msg/ce.d.ts +8 -0
  951. package/blockly-rc/typings/msg/cs.d.ts +8 -0
  952. package/blockly-rc/typings/msg/da.d.ts +8 -0
  953. package/blockly-rc/typings/msg/de.d.ts +8 -0
  954. package/blockly-rc/typings/msg/diq.d.ts +8 -0
  955. package/blockly-rc/typings/msg/dtp.d.ts +8 -0
  956. package/blockly-rc/typings/msg/dty.d.ts +8 -0
  957. package/blockly-rc/typings/msg/ee.d.ts +8 -0
  958. package/blockly-rc/typings/msg/el.d.ts +8 -0
  959. package/blockly-rc/typings/msg/en-gb.d.ts +8 -0
  960. package/blockly-rc/typings/msg/en.d.ts +8 -0
  961. package/blockly-rc/typings/msg/eo.d.ts +8 -0
  962. package/blockly-rc/typings/msg/es.d.ts +8 -0
  963. package/blockly-rc/typings/msg/et.d.ts +8 -0
  964. package/blockly-rc/typings/msg/eu.d.ts +8 -0
  965. package/blockly-rc/typings/msg/fa.d.ts +8 -0
  966. package/blockly-rc/typings/msg/fi.d.ts +8 -0
  967. package/blockly-rc/typings/msg/fo.d.ts +8 -0
  968. package/blockly-rc/typings/msg/fr.d.ts +8 -0
  969. package/blockly-rc/typings/msg/frr.d.ts +8 -0
  970. package/blockly-rc/typings/msg/gl.d.ts +8 -0
  971. package/blockly-rc/typings/msg/gn.d.ts +8 -0
  972. package/blockly-rc/typings/msg/gor.d.ts +8 -0
  973. package/blockly-rc/typings/msg/ha.d.ts +8 -0
  974. package/blockly-rc/typings/msg/hak.d.ts +8 -0
  975. package/blockly-rc/typings/msg/he.d.ts +8 -0
  976. package/blockly-rc/typings/msg/hi.d.ts +8 -0
  977. package/blockly-rc/typings/msg/hr.d.ts +8 -0
  978. package/blockly-rc/typings/msg/hrx.d.ts +8 -0
  979. package/blockly-rc/typings/msg/hsb.d.ts +8 -0
  980. package/blockly-rc/typings/msg/hu.d.ts +8 -0
  981. package/blockly-rc/typings/msg/hy.d.ts +8 -0
  982. package/blockly-rc/typings/msg/ia.d.ts +8 -0
  983. package/blockly-rc/typings/msg/id.d.ts +8 -0
  984. package/blockly-rc/typings/msg/ig.d.ts +8 -0
  985. package/blockly-rc/typings/msg/inh.d.ts +8 -0
  986. package/blockly-rc/typings/msg/is.d.ts +8 -0
  987. package/blockly-rc/typings/msg/it.d.ts +8 -0
  988. package/blockly-rc/typings/msg/ja.d.ts +8 -0
  989. package/blockly-rc/typings/msg/ka.d.ts +8 -0
  990. package/blockly-rc/typings/msg/kab.d.ts +8 -0
  991. package/blockly-rc/typings/msg/kbd-cyrl.d.ts +8 -0
  992. package/blockly-rc/typings/msg/km.d.ts +8 -0
  993. package/blockly-rc/typings/msg/kn.d.ts +8 -0
  994. package/blockly-rc/typings/msg/ko.d.ts +8 -0
  995. package/blockly-rc/typings/msg/ksh.d.ts +8 -0
  996. package/blockly-rc/typings/msg/ku-latn.d.ts +8 -0
  997. package/blockly-rc/typings/msg/ky.d.ts +8 -0
  998. package/blockly-rc/typings/msg/la.d.ts +8 -0
  999. package/blockly-rc/typings/msg/lb.d.ts +8 -0
  1000. package/blockly-rc/typings/msg/lki.d.ts +8 -0
  1001. package/blockly-rc/typings/msg/lo.d.ts +8 -0
  1002. package/blockly-rc/typings/msg/lrc.d.ts +8 -0
  1003. package/blockly-rc/typings/msg/lt.d.ts +8 -0
  1004. package/blockly-rc/typings/msg/lv.d.ts +8 -0
  1005. package/blockly-rc/typings/msg/mg.d.ts +8 -0
  1006. package/blockly-rc/typings/msg/mk.d.ts +8 -0
  1007. package/blockly-rc/typings/msg/ml.d.ts +8 -0
  1008. package/blockly-rc/typings/msg/mnw.d.ts +8 -0
  1009. package/blockly-rc/typings/msg/ms.d.ts +8 -0
  1010. package/blockly-rc/typings/msg/msg.d.ts +440 -0
  1011. package/blockly-rc/typings/msg/my.d.ts +8 -0
  1012. package/blockly-rc/typings/msg/mzn.d.ts +8 -0
  1013. package/blockly-rc/typings/msg/nb.d.ts +8 -0
  1014. package/blockly-rc/typings/msg/ne.d.ts +8 -0
  1015. package/blockly-rc/typings/msg/nl.d.ts +8 -0
  1016. package/blockly-rc/typings/msg/oc.d.ts +8 -0
  1017. package/blockly-rc/typings/msg/olo.d.ts +8 -0
  1018. package/blockly-rc/typings/msg/pa.d.ts +8 -0
  1019. package/blockly-rc/typings/msg/pl.d.ts +8 -0
  1020. package/blockly-rc/typings/msg/pms.d.ts +8 -0
  1021. package/blockly-rc/typings/msg/ps.d.ts +8 -0
  1022. package/blockly-rc/typings/msg/pt-br.d.ts +8 -0
  1023. package/blockly-rc/typings/msg/pt.d.ts +8 -0
  1024. package/blockly-rc/typings/msg/ro.d.ts +8 -0
  1025. package/blockly-rc/typings/msg/ru.d.ts +8 -0
  1026. package/blockly-rc/typings/msg/sc.d.ts +8 -0
  1027. package/blockly-rc/typings/msg/sco.d.ts +8 -0
  1028. package/blockly-rc/typings/msg/sd.d.ts +8 -0
  1029. package/blockly-rc/typings/msg/shn.d.ts +8 -0
  1030. package/blockly-rc/typings/msg/si.d.ts +8 -0
  1031. package/blockly-rc/typings/msg/sk.d.ts +8 -0
  1032. package/blockly-rc/typings/msg/skr-arab.d.ts +8 -0
  1033. package/blockly-rc/typings/msg/sl.d.ts +8 -0
  1034. package/blockly-rc/typings/msg/smn.d.ts +8 -0
  1035. package/blockly-rc/typings/msg/sq.d.ts +8 -0
  1036. package/blockly-rc/typings/msg/sr-latn.d.ts +8 -0
  1037. package/blockly-rc/typings/msg/sr.d.ts +8 -0
  1038. package/blockly-rc/typings/msg/sv.d.ts +8 -0
  1039. package/blockly-rc/typings/msg/sw.d.ts +8 -0
  1040. package/blockly-rc/typings/msg/ta.d.ts +8 -0
  1041. package/blockly-rc/typings/msg/tcy.d.ts +8 -0
  1042. package/blockly-rc/typings/msg/tdd.d.ts +8 -0
  1043. package/blockly-rc/typings/msg/te.d.ts +8 -0
  1044. package/blockly-rc/typings/msg/th.d.ts +8 -0
  1045. package/blockly-rc/typings/msg/ti.d.ts +8 -0
  1046. package/blockly-rc/typings/msg/tl.d.ts +8 -0
  1047. package/blockly-rc/typings/msg/tlh.d.ts +8 -0
  1048. package/blockly-rc/typings/msg/tr.d.ts +8 -0
  1049. package/blockly-rc/typings/msg/ug-arab.d.ts +8 -0
  1050. package/blockly-rc/typings/msg/uk.d.ts +8 -0
  1051. package/blockly-rc/typings/msg/ur.d.ts +8 -0
  1052. package/blockly-rc/typings/msg/uz.d.ts +8 -0
  1053. package/blockly-rc/typings/msg/vi.d.ts +8 -0
  1054. package/blockly-rc/typings/msg/xmf.d.ts +8 -0
  1055. package/blockly-rc/typings/msg/yo.d.ts +8 -0
  1056. package/blockly-rc/typings/msg/zgh.d.ts +8 -0
  1057. package/blockly-rc/typings/msg/zh-hans.d.ts +8 -0
  1058. package/blockly-rc/typings/msg/zh-hant.d.ts +8 -0
  1059. package/blockly-rc/typings/php.d.ts +7 -0
  1060. package/blockly-rc/typings/python.d.ts +7 -0
  1061. package/blockly-rc/typings/templates/blockly-header.template +11 -0
  1062. package/blockly-rc/typings/templates/blockly-interfaces.template +83 -0
  1063. package/blockly-rc/typings/templates/msg.template +15 -0
  1064. package/blockly-rc/typings/tsconfig.json +23 -0
  1065. package/continuous-toolbox.d.ts +1 -0
  1066. package/dist/main.js +2 -0
  1067. package/dist/main.js.LICENSE.txt +163 -0
  1068. package/media/delete-icon.svg +10 -0
  1069. package/media/resize-handle.svg +3 -0
  1070. package/msg/scratch_msgs.js +184 -164
  1071. package/package.json +25 -40
  1072. package/release.config.js +8 -0
  1073. package/src/block_reporting.js +31 -0
  1074. package/src/blocks/colour.js +56 -0
  1075. package/src/blocks/control.js +492 -0
  1076. package/src/blocks/data.js +690 -0
  1077. package/src/blocks/event.js +305 -0
  1078. package/src/blocks/looks.js +537 -0
  1079. package/src/blocks/math.js +137 -0
  1080. package/src/blocks/matrix.js +47 -0
  1081. package/src/blocks/motion.js +513 -0
  1082. package/src/blocks/note.js +48 -0
  1083. package/src/blocks/operators.js +463 -0
  1084. package/src/blocks/procedures.js +1009 -0
  1085. package/src/blocks/sensing.js +441 -0
  1086. package/src/blocks/sound.js +205 -0
  1087. package/src/blocks/text.js +45 -0
  1088. package/src/blocks/vertical_extensions.js +309 -0
  1089. package/src/categories.js +15 -0
  1090. package/src/checkable_continuous_flyout.js +138 -0
  1091. package/src/checkbox_bubble.js +282 -0
  1092. package/src/colours.js +77 -0
  1093. package/src/constants.js +63 -0
  1094. package/src/context_menu_items.js +150 -0
  1095. package/src/css.js +1197 -0
  1096. package/src/data_category.js +556 -0
  1097. package/src/events/events_block_comment_base.js +35 -0
  1098. package/src/events/events_block_comment_change.js +43 -0
  1099. package/src/events/events_block_comment_collapse.js +43 -0
  1100. package/src/events/events_block_comment_create.js +52 -0
  1101. package/src/events/events_block_comment_delete.js +27 -0
  1102. package/src/events/events_block_comment_move.js +54 -0
  1103. package/src/events/events_block_comment_resize.js +52 -0
  1104. package/src/events/events_block_drag_end.js +33 -0
  1105. package/src/events/events_block_drag_outside.js +30 -0
  1106. package/src/events/events_scratch_variable_create.js +67 -0
  1107. package/src/fields/field_angle.js +433 -0
  1108. package/src/fields/field_colour_slider.js +388 -0
  1109. package/src/fields/field_dropdown.js +42 -0
  1110. package/src/fields/field_matrix.js +634 -0
  1111. package/src/fields/field_note.js +937 -0
  1112. package/src/fields/field_number.js +380 -0
  1113. package/src/fields/field_textinput_removable.js +107 -0
  1114. package/src/fields/field_variable.js +171 -0
  1115. package/src/fields/field_variable_getter.js +109 -0
  1116. package/src/fields/field_vertical_separator.js +139 -0
  1117. package/src/flyout_checkbox_icon.js +88 -0
  1118. package/src/glows.js +98 -0
  1119. package/src/index.ts +137 -0
  1120. package/src/procedures.js +425 -0
  1121. package/src/recyclable_block_flyout_inflater.js +194 -0
  1122. package/src/renderer/bowler_hat.js +17 -0
  1123. package/src/renderer/constants.js +45 -0
  1124. package/src/renderer/drawer.js +51 -0
  1125. package/src/renderer/path_object.js +35 -0
  1126. package/src/renderer/render_info.js +98 -0
  1127. package/src/renderer/renderer.js +74 -0
  1128. package/src/scratch_block_paster.js +46 -0
  1129. package/src/scratch_blocks_utils.js +148 -0
  1130. package/src/scratch_comment_bubble.js +169 -0
  1131. package/src/scratch_comment_icon.js +195 -0
  1132. package/src/scratch_connection_checker.js +29 -0
  1133. package/src/scratch_continuous_category.js +80 -0
  1134. package/src/scratch_continuous_toolbox.js +78 -0
  1135. package/src/scratch_dragger.js +142 -0
  1136. package/src/scratch_variable_map.js +25 -0
  1137. package/src/scratch_variable_model.js +24 -0
  1138. package/src/shadows.js +61 -0
  1139. package/src/status_indicator_label.js +186 -0
  1140. package/src/status_indicator_label_flyout_inflater.js +42 -0
  1141. package/src/variables.js +355 -0
  1142. package/temp-use-blockly-v12-rc.sh +26 -0
  1143. package/tsconfig.json +13 -0
  1144. package/blockly_compressed_horizontal.js +0 -2255
  1145. package/blockly_compressed_vertical.js +0 -2283
  1146. package/blockly_uncompressed_horizontal.js +0 -1210
  1147. package/blockly_uncompressed_vertical.js +0 -1210
  1148. package/blocks_common/colour.js +0 -61
  1149. package/blocks_common/math.js +0 -159
  1150. package/blocks_common/matrix.js +0 -54
  1151. package/blocks_common/note.js +0 -58
  1152. package/blocks_common/text.js +0 -57
  1153. package/blocks_compressed.js +0 -36
  1154. package/blocks_compressed_horizontal.js +0 -67
  1155. package/blocks_compressed_vertical.js +0 -208
  1156. package/blocks_horizontal/control.js +0 -212
  1157. package/blocks_horizontal/default_toolbox.js +0 -139
  1158. package/blocks_horizontal/event.js +0 -190
  1159. package/blocks_horizontal/wedo.js +0 -325
  1160. package/blocks_vertical/control.js +0 -532
  1161. package/blocks_vertical/data.js +0 -666
  1162. package/blocks_vertical/default_toolbox.js +0 -564
  1163. package/blocks_vertical/event.js +0 -329
  1164. package/blocks_vertical/extensions.js +0 -294
  1165. package/blocks_vertical/looks.js +0 -591
  1166. package/blocks_vertical/motion.js +0 -587
  1167. package/blocks_vertical/operators.js +0 -470
  1168. package/blocks_vertical/procedures.js +0 -973
  1169. package/blocks_vertical/sensing.js +0 -539
  1170. package/blocks_vertical/sound.js +0 -246
  1171. package/blocks_vertical/vertical_extensions.js +0 -266
  1172. package/build/gen_blocks.js +0 -1
  1173. package/build/test_expect.js +0 -1
  1174. package/build/test_input.js +0 -1
  1175. package/build.py +0 -636
  1176. package/cleanup.sh +0 -101
  1177. package/core/block.js +0 -1837
  1178. package/core/block_animations.js +0 -107
  1179. package/core/block_drag_surface.js +0 -299
  1180. package/core/block_dragger.js +0 -421
  1181. package/core/block_events.js +0 -531
  1182. package/core/block_render_svg_horizontal.js +0 -890
  1183. package/core/block_render_svg_vertical.js +0 -1732
  1184. package/core/block_svg.js +0 -1316
  1185. package/core/blockly.js +0 -622
  1186. package/core/blocks.js +0 -37
  1187. package/core/bubble.js +0 -664
  1188. package/core/bubble_dragger.js +0 -285
  1189. package/core/colours.js +0 -160
  1190. package/core/comment.js +0 -293
  1191. package/core/comment_events.js +0 -539
  1192. package/core/connection.js +0 -766
  1193. package/core/connection_db.js +0 -300
  1194. package/core/constants.js +0 -387
  1195. package/core/contextmenu.js +0 -519
  1196. package/core/css.js +0 -1351
  1197. package/core/data_category.js +0 -490
  1198. package/core/dragged_connection_manager.js +0 -260
  1199. package/core/dropdowndiv.js +0 -408
  1200. package/core/events.js +0 -429
  1201. package/core/events_abstract.js +0 -113
  1202. package/core/extensions.js +0 -450
  1203. package/core/field.js +0 -807
  1204. package/core/field_angle.js +0 -398
  1205. package/core/field_checkbox.js +0 -133
  1206. package/core/field_colour.js +0 -253
  1207. package/core/field_colour_slider.js +0 -387
  1208. package/core/field_date.js +0 -353
  1209. package/core/field_dropdown.js +0 -483
  1210. package/core/field_iconmenu.js +0 -309
  1211. package/core/field_image.js +0 -193
  1212. package/core/field_label.js +0 -136
  1213. package/core/field_label_serializable.js +0 -125
  1214. package/core/field_matrix.js +0 -566
  1215. package/core/field_note.js +0 -850
  1216. package/core/field_number.js +0 -366
  1217. package/core/field_numberdropdown.js +0 -77
  1218. package/core/field_textdropdown.js +0 -164
  1219. package/core/field_textinput.js +0 -675
  1220. package/core/field_textinput_removable.js +0 -105
  1221. package/core/field_variable.js +0 -385
  1222. package/core/field_variable_getter.js +0 -185
  1223. package/core/field_vertical_separator.js +0 -161
  1224. package/core/flyout_base.js +0 -923
  1225. package/core/flyout_button.js +0 -322
  1226. package/core/flyout_dragger.js +0 -83
  1227. package/core/flyout_extension_category_header.js +0 -159
  1228. package/core/flyout_horizontal.js +0 -475
  1229. package/core/flyout_vertical.js +0 -770
  1230. package/core/generator.js +0 -426
  1231. package/core/gesture.js +0 -1011
  1232. package/core/grid.js +0 -227
  1233. package/core/icon.js +0 -205
  1234. package/core/inject.js +0 -491
  1235. package/core/input.js +0 -285
  1236. package/core/insertion_marker_manager.js +0 -678
  1237. package/core/msg.js +0 -62
  1238. package/core/mutator.js +0 -426
  1239. package/core/names.js +0 -198
  1240. package/core/options.js +0 -244
  1241. package/core/procedures.js +0 -577
  1242. package/core/rendered_connection.js +0 -417
  1243. package/core/scratch_block_comment.js +0 -653
  1244. package/core/scratch_blocks_utils.js +0 -244
  1245. package/core/scratch_bubble.js +0 -696
  1246. package/core/scratch_events.js +0 -131
  1247. package/core/scratch_msgs.js +0 -85
  1248. package/core/scrollbar.js +0 -875
  1249. package/core/toolbox.js +0 -801
  1250. package/core/tooltip.js +0 -337
  1251. package/core/touch.js +0 -226
  1252. package/core/trashcan.js +0 -343
  1253. package/core/ui_events.js +0 -91
  1254. package/core/ui_menu_utils.js +0 -68
  1255. package/core/utils.js +0 -948
  1256. package/core/variable_events.js +0 -259
  1257. package/core/variable_map.js +0 -415
  1258. package/core/variable_model.js +0 -116
  1259. package/core/variables.js +0 -674
  1260. package/core/warning.js +0 -199
  1261. package/core/widgetdiv.js +0 -344
  1262. package/core/workspace.js +0 -673
  1263. package/core/workspace_audio.js +0 -170
  1264. package/core/workspace_comment.js +0 -432
  1265. package/core/workspace_comment_render_svg.js +0 -723
  1266. package/core/workspace_comment_svg.js +0 -611
  1267. package/core/workspace_drag_surface_svg.js +0 -195
  1268. package/core/workspace_dragger.js +0 -132
  1269. package/core/workspace_svg.js +0 -2267
  1270. package/core/xml.js +0 -919
  1271. package/core/zoom_controls.js +0 -301
  1272. package/dist/horizontal.js +0 -222
  1273. package/dist/vertical.js +0 -222
  1274. package/dist/web/horizontal.js +0 -232
  1275. package/dist/web/vertical.js +0 -232
  1276. package/local_build.sh +0 -70
  1277. package/pack/scratch-blocks-1.1.206.tgz +0 -0
  1278. package/pull_from_blockly.sh +0 -151
  1279. package/shim/blockly_compressed_horizontal-blocks_compressed.js +0 -1
  1280. package/shim/blockly_compressed_horizontal.Blockly.js +0 -1
  1281. package/shim/blockly_compressed_horizontal.goog.js +0 -1
  1282. package/shim/blockly_compressed_horizontal.js +0 -1
  1283. package/shim/blockly_compressed_vertical-blocks_compressed.js +0 -1
  1284. package/shim/blockly_compressed_vertical.Blockly.js +0 -1
  1285. package/shim/blockly_compressed_vertical.goog.js +0 -1
  1286. package/shim/blockly_compressed_vertical.js +0 -1
  1287. package/shim/blocks_compressed_horizontal-blockly_compressed_horizontal-messages.js +0 -1
  1288. package/shim/blocks_compressed_horizontal.js +0 -1
  1289. package/shim/blocks_compressed_vertical-blockly_compressed_vertical-messages.js +0 -1
  1290. package/shim/blocks_compressed_vertical.js +0 -1
  1291. package/shim/gh-pages.js +0 -1
  1292. package/shim/horizontal.js +0 -1
  1293. package/shim/index.js +0 -17
  1294. package/shim/vertical.js +0 -1
  1295. /package/media/{comment-arrow-down.svg → foldout-icon.svg} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,845 +3,123 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [1.1.206](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.205...v1.1.206) (2024-08-02)
6
+ # [2.0.0-beta.1](https://github.com/scratchfoundation/scratch-blocks/compare/v1.2.0-beta.1...v2.0.0-beta.1) (2024-10-18)
7
+
8
+
9
+ * fix!: bump to v2.0 to reflect Blockly un-forking ([aa87110](https://github.com/scratchfoundation/scratch-blocks/commit/aa87110dbd2edbf7eb94c5b293e8878d869f7350))
10
+
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ * scratch-blocks is no longer a divergent fork of
15
+ Blockly, and instead depends on Blockly as a regular node_modules
16
+ dependency.
17
+
18
+ Thanks, @gonfunko and everyone else at Google who helped with this
19
+ effort!
20
+
21
+ # [1.2.0-beta.1](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.86...v1.2.0-beta.1) (2024-10-18)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * Add support for flyout labels with status indicators ([#212](https://github.com/scratchfoundation/scratch-blocks/issues/212)) ([665d196](https://github.com/scratchfoundation/scratch-blocks/commit/665d1963759caab39c1a0078a81e5e3b63734f05))
27
+ * add support for Scratch-style block comments ([#83](https://github.com/scratchfoundation/scratch-blocks/issues/83)) ([8902091](https://github.com/scratchfoundation/scratch-blocks/commit/8902091c2da8ab68aeac6e2a3954741197a50b37))
28
+ * add support for Scratch-style procedures ([#39](https://github.com/scratchfoundation/scratch-blocks/issues/39)) ([13647eb](https://github.com/scratchfoundation/scratch-blocks/commit/13647eb36439926e82cbe847a643f592702690ab))
29
+ * add zoom controls config ([#126](https://github.com/scratchfoundation/scratch-blocks/issues/126)) ([a09ae24](https://github.com/scratchfoundation/scratch-blocks/commit/a09ae248a1c3aa422942b1f9d21487c79c0c4b86))
30
+ * allow focusing fields in the flyout on mobile ([#184](https://github.com/scratchfoundation/scratch-blocks/issues/184)) ([6c9d3a6](https://github.com/scratchfoundation/scratch-blocks/commit/6c9d3a6026f67fd4a173c718d7a2ba66b69922f6))
31
+ * allow specifying the function to be used for prompting about variable creation/edits ([#106](https://github.com/scratchfoundation/scratch-blocks/issues/106)) ([4cfe66f](https://github.com/scratchfoundation/scratch-blocks/commit/4cfe66fa0419e6140ff6f7cad1c1bfc884917a72))
32
+ * clean up data block definitions ([#90](https://github.com/scratchfoundation/scratch-blocks/issues/90)) ([9ea96e2](https://github.com/scratchfoundation/scratch-blocks/commit/9ea96e27f43688bcf81bdc006adac129a1b286c8))
33
+ * correctly align extension block icons ([#182](https://github.com/scratchfoundation/scratch-blocks/issues/182)) ([e3dbad1](https://github.com/scratchfoundation/scratch-blocks/commit/e3dbad1feb19c5e72ac66ba9aa9e6f47580a414b))
34
+ * delete context menu to display the correct number of blocks ([#127](https://github.com/scratchfoundation/scratch-blocks/issues/127)) ([a65d24a](https://github.com/scratchfoundation/scratch-blocks/commit/a65d24a38daf8a740d5230ee9a7fbac5ae70e2af))
35
+ * **deps:** after installing deps, replace Blockly v11 with v12 RC ([677ff6f](https://github.com/scratchfoundation/scratch-blocks/commit/677ff6f9589ef84b849822e17a705583a55e50db))
36
+ * **deps:** clone Blockly RC over HTTP instead of SSH ([8a861f0](https://github.com/scratchfoundation/scratch-blocks/commit/8a861f0aac2737de08cc3e1c65942a99d21f1ba8))
37
+ * display icons in the toolbox for extension categories ([#47](https://github.com/scratchfoundation/scratch-blocks/issues/47)) ([b53eadd](https://github.com/scratchfoundation/scratch-blocks/commit/b53eaddcf2ca261ea5798f342e0ec600bf60ca19))
38
+ * don't hide the drag surface ([#38](https://github.com/scratchfoundation/scratch-blocks/issues/38)) ([7f70f09](https://github.com/scratchfoundation/scratch-blocks/commit/7f70f09e11972be8a6ee512323a0a39a52ef0452))
39
+ * don't show global/local options when renaming a variable ([#123](https://github.com/scratchfoundation/scratch-blocks/issues/123)) ([22a6b73](https://github.com/scratchfoundation/scratch-blocks/commit/22a6b733636b738d200c67ae53caee3e072e043a))
40
+ * don't show scope options when renaming a variable from the variable getter context menu ([#139](https://github.com/scratchfoundation/scratch-blocks/issues/139)) ([375e56d](https://github.com/scratchfoundation/scratch-blocks/commit/375e56db6918dc3475d5c8f29f53cd03f138e4a7))
41
+ * don't warn about procedure references when moving the definition on the workspace ([#131](https://github.com/scratchfoundation/scratch-blocks/issues/131)) ([cda58cc](https://github.com/scratchfoundation/scratch-blocks/commit/cda58ccfa799a0d301d6ba842c6546c1eb9f5614))
42
+ * enable and style workspace comments ([#82](https://github.com/scratchfoundation/scratch-blocks/issues/82)) ([98ccb62](https://github.com/scratchfoundation/scratch-blocks/commit/98ccb62d7280d2cc711337581464138a281453e3))
43
+ * enable dragging arguments out of procedure blocks ([#119](https://github.com/scratchfoundation/scratch-blocks/issues/119)) ([0ca0620](https://github.com/scratchfoundation/scratch-blocks/commit/0ca0620aad343cdbb1d632ddf3ae73a70085aa03))
44
+ * Export colours. ([7c346fa](https://github.com/scratchfoundation/scratch-blocks/commit/7c346fa2424962d7796e42232d9e7db5899dfd5a))
45
+ * Export Scratch messages. ([09326a1](https://github.com/scratchfoundation/scratch-blocks/commit/09326a1c82e5dfa4316d426cd745a8f1c52315b9))
46
+ * fix a crash when adding a broadcast message ([#150](https://github.com/scratchfoundation/scratch-blocks/issues/150)) ([8e165ce](https://github.com/scratchfoundation/scratch-blocks/commit/8e165cec9a45f5f9d17f2255ed3fd58f834881f7))
47
+ * fix alignment of "define" text baseline on custom blocks ([#220](https://github.com/scratchfoundation/scratch-blocks/issues/220)) ([cc4d9f9](https://github.com/scratchfoundation/scratch-blocks/commit/cc4d9f9bc7520313145c4c0cb9978c4dfc6b3bfc))
48
+ * fix bug that caused the number/string input in the custom block editor to have square corners ([#213](https://github.com/scratchfoundation/scratch-blocks/issues/213)) ([c3ee958](https://github.com/scratchfoundation/scratch-blocks/commit/c3ee958a5b5b8cf1ae375f82b5dce88a81ee62dd))
49
+ * fix bug that could cause duplicated procedure argument blocks to create more duplicates on drag ([#217](https://github.com/scratchfoundation/scratch-blocks/issues/217)) ([6a1c8a9](https://github.com/scratchfoundation/scratch-blocks/commit/6a1c8a9e745d77f2aec49c3cae06dd6836bd58ef))
50
+ * fix bug that prevented modal dialogs from appearing on mobile ([#183](https://github.com/scratchfoundation/scratch-blocks/issues/183)) ([37e0f10](https://github.com/scratchfoundation/scratch-blocks/commit/37e0f10f4a59e1bb32734b955b7f2f17e4f2fca0))
51
+ * fix bug that prevented showing the contextual menu on blocks ([#176](https://github.com/scratchfoundation/scratch-blocks/issues/176)) ([2e98ff1](https://github.com/scratchfoundation/scratch-blocks/commit/2e98ff15a149b0ff44e30e7023b36d1605030311))
52
+ * fix color of block reporter dropdown text ([#205](https://github.com/scratchfoundation/scratch-blocks/issues/205)) ([73d978e](https://github.com/scratchfoundation/scratch-blocks/commit/73d978e6c98d546774398e4d48faa7c181fdac11))
53
+ * fix dropdown menu metrics ([#148](https://github.com/scratchfoundation/scratch-blocks/issues/148)) ([40eee91](https://github.com/scratchfoundation/scratch-blocks/commit/40eee91711fb2cc76494221ce2f8b08fc5d9f868))
54
+ * fix exception when editing custom blocks ([#105](https://github.com/scratchfoundation/scratch-blocks/issues/105)) ([7478546](https://github.com/scratchfoundation/scratch-blocks/commit/747854658b5db2f4cfc00d827ef00c1081ab3c28))
55
+ * fix positioning of categories when scrolling via the toolbox ([#186](https://github.com/scratchfoundation/scratch-blocks/issues/186)) ([6d14530](https://github.com/scratchfoundation/scratch-blocks/commit/6d1453082c3ed220c0ff09bf5b785a49df9f4312))
56
+ * fix styling of dropdown menus ([#152](https://github.com/scratchfoundation/scratch-blocks/issues/152)) ([0e80277](https://github.com/scratchfoundation/scratch-blocks/commit/0e802773ce3749a3f74f5fec986aba54312a56cd))
57
+ * fix the color of procedure argument blocks ([#216](https://github.com/scratchfoundation/scratch-blocks/issues/216)) ([88c700e](https://github.com/scratchfoundation/scratch-blocks/commit/88c700e40ea9ed05d3a237936ae44d2b62b1424f))
58
+ * fix the colors of the angle picker dropdown ([#179](https://github.com/scratchfoundation/scratch-blocks/issues/179)) ([59896d2](https://github.com/scratchfoundation/scratch-blocks/commit/59896d2f55e12f5f28bb8bc615f4b5eb186e0ae6))
59
+ * fix the flyout width at 250 pixels ([#168](https://github.com/scratchfoundation/scratch-blocks/issues/168)) ([a47aba6](https://github.com/scratchfoundation/scratch-blocks/commit/a47aba6189fbbb825ad24bd05ab3c8ecdc3dc972))
60
+ * fix the styling of contextual menus ([#147](https://github.com/scratchfoundation/scratch-blocks/issues/147)) ([6fbc2e5](https://github.com/scratchfoundation/scratch-blocks/commit/6fbc2e5ef4d24279be3073021319e717963d76e4))
61
+ * fix toolbox category selection ([#141](https://github.com/scratchfoundation/scratch-blocks/issues/141)) ([d3e1a1b](https://github.com/scratchfoundation/scratch-blocks/commit/d3e1a1b39099ec8a8ca72f3cac21fac5d588d449))
62
+ * fix wrapping of long category labels ([#166](https://github.com/scratchfoundation/scratch-blocks/issues/166)) ([7b39ac1](https://github.com/scratchfoundation/scratch-blocks/commit/7b39ac141bf353edf0cc5379289a33dd3a3ecba8))
63
+ * fixed bug where broadcast messages would appear in the variable dropdown list ([#124](https://github.com/scratchfoundation/scratch-blocks/issues/124)) ([b1e67f6](https://github.com/scratchfoundation/scratch-blocks/commit/b1e67f62dcedbd35e1b92d1ec1c773ff74b2ef56))
64
+ * improve positioning of newly created procedure blocks ([#121](https://github.com/scratchfoundation/scratch-blocks/issues/121)) ([84a9e5b](https://github.com/scratchfoundation/scratch-blocks/commit/84a9e5b8e9aba2688fd10672a852827311f32259))
65
+ * improve reliability of block value reporting ([#77](https://github.com/scratchfoundation/scratch-blocks/issues/77)) ([cb5b068](https://github.com/scratchfoundation/scratch-blocks/commit/cb5b068afa6e781e649754b55fc013a02112431e))
66
+ * improve sizing and rendering of comments ([#219](https://github.com/scratchfoundation/scratch-blocks/issues/219)) ([1279c0a](https://github.com/scratchfoundation/scratch-blocks/commit/1279c0aacefb8bbfaaa9786531a56c5a45cf24ee))
67
+ * load CSS and fix up UI appearance ([#33](https://github.com/scratchfoundation/scratch-blocks/issues/33)) ([1645129](https://github.com/scratchfoundation/scratch-blocks/commit/1645129950797408d01e3966a9d1b7bdf6223226))
68
+ * load the continuous toolbox ([#31](https://github.com/scratchfoundation/scratch-blocks/issues/31)) ([ea68b1c](https://github.com/scratchfoundation/scratch-blocks/commit/ea68b1c25f055288e2ee39f846c17e5861f1a01f))
69
+ * make block images work in all contexts ([#30](https://github.com/scratchfoundation/scratch-blocks/issues/30)) ([920febf](https://github.com/scratchfoundation/scratch-blocks/commit/920febf5c3304bcf3a561b1e7c0e016540399540))
70
+ * make FieldNumber a subclass of FieldTextInput ([#214](https://github.com/scratchfoundation/scratch-blocks/issues/214)) ([3ae2235](https://github.com/scratchfoundation/scratch-blocks/commit/3ae22356f5ee9ed5da55b744657a033e43ad1ce0))
71
+ * make variable names case-sensitive ([#122](https://github.com/scratchfoundation/scratch-blocks/issues/122)) ([46854cd](https://github.com/scratchfoundation/scratch-blocks/commit/46854cdb7c9fe92b8621a9e36acd6f94e9383a9f))
72
+ * match Scratch behaviors around dragging and connection stickiness ([#80](https://github.com/scratchfoundation/scratch-blocks/issues/80)) ([fd1bc58](https://github.com/scratchfoundation/scratch-blocks/commit/fd1bc58bdef66697b0630d1c67f5a04d01dfa716))
73
+ * miscellaneous UI fixits ([#41](https://github.com/scratchfoundation/scratch-blocks/issues/41)) ([300a1ce](https://github.com/scratchfoundation/scratch-blocks/commit/300a1ce564a55cb65ef2e01792a0ba1149621c50))
74
+ * modernize and reenable the colour slider field ([#42](https://github.com/scratchfoundation/scratch-blocks/issues/42)) ([4f97982](https://github.com/scratchfoundation/scratch-blocks/commit/4f979828f1122d5cf314a8de464457ae8b925ed7))
75
+ * more closely align flyout layout with Scratch ([#45](https://github.com/scratchfoundation/scratch-blocks/issues/45)) ([49663ed](https://github.com/scratchfoundation/scratch-blocks/commit/49663ed2f823ea45a04c0201d467d4e06e0d7078))
76
+ * prevent deleting procedure definition blocks with references by dragging to the flyout ([#120](https://github.com/scratchfoundation/scratch-blocks/issues/120)) ([fa9367d](https://github.com/scratchfoundation/scratch-blocks/commit/fa9367d975e8c3fd45321248eb365c9cd0477dbb))
77
+ * prevent dragging blocks into the slot occupied by the procedure definition block's example caller block ([#118](https://github.com/scratchfoundation/scratch-blocks/issues/118)) ([453ffa9](https://github.com/scratchfoundation/scratch-blocks/commit/453ffa9654927be023571f5bb496a1d0ff36aad9))
78
+ * re-export scratch-blocks utility functions ([#26](https://github.com/scratchfoundation/scratch-blocks/issues/26)) ([685ecfc](https://github.com/scratchfoundation/scratch-blocks/commit/685ecfc0ce9f3c9335393f5af71eb3755aabedd4))
79
+ * readd the control blocks ([#22](https://github.com/scratchfoundation/scratch-blocks/issues/22)) ([f69d4ac](https://github.com/scratchfoundation/scratch-blocks/commit/f69d4ac8ebd128b318919f4a3ac5222d211adfbb))
80
+ * readd the data blocks ([#29](https://github.com/scratchfoundation/scratch-blocks/issues/29)) ([fafed65](https://github.com/scratchfoundation/scratch-blocks/commit/fafed65e73f59877200741c36244d082f2b3aad1))
81
+ * readd the event blocks ([#21](https://github.com/scratchfoundation/scratch-blocks/issues/21)) ([4de530f](https://github.com/scratchfoundation/scratch-blocks/commit/4de530f00310ee27c0ad55940c9cb6bf1208df91))
82
+ * readd the looks blocks ([#23](https://github.com/scratchfoundation/scratch-blocks/issues/23)) ([34f07c0](https://github.com/scratchfoundation/scratch-blocks/commit/34f07c0ed7982963ded8563b5f45d374e740d98c))
83
+ * readd the motion blocks ([#20](https://github.com/scratchfoundation/scratch-blocks/issues/20)) ([79398c2](https://github.com/scratchfoundation/scratch-blocks/commit/79398c2ebae7329d0d428bab5870e559423ab36b))
84
+ * readd the operator blocks and dependencies ([#19](https://github.com/scratchfoundation/scratch-blocks/issues/19)) ([8024e9f](https://github.com/scratchfoundation/scratch-blocks/commit/8024e9fd638586d26e6b47424e0067c0387af8cd))
85
+ * readd the sensing blocks ([#27](https://github.com/scratchfoundation/scratch-blocks/issues/27)) ([9f5f135](https://github.com/scratchfoundation/scratch-blocks/commit/9f5f1351be5818fb9392214b8047acace8333a65))
86
+ * readd the sound blocks ([#24](https://github.com/scratchfoundation/scratch-blocks/issues/24)) ([6837513](https://github.com/scratchfoundation/scratch-blocks/commit/6837513d3f217e94522a3ce756273d6ff8e7538c))
87
+ * reenable reporting block values ([#55](https://github.com/scratchfoundation/scratch-blocks/issues/55)) ([70c8cfd](https://github.com/scratchfoundation/scratch-blocks/commit/70c8cfd73ee1081eafcb2773fe56a4e078cb2bea))
88
+ * reenable shadows for blocks being dragged ([#79](https://github.com/scratchfoundation/scratch-blocks/issues/79)) ([94d2a2c](https://github.com/scratchfoundation/scratch-blocks/commit/94d2a2ca55c0d0265a79237610bcf8c246d74a9b))
89
+ * reenable support for checkboxes in the flyout ([#43](https://github.com/scratchfoundation/scratch-blocks/issues/43)) ([e603c67](https://github.com/scratchfoundation/scratch-blocks/commit/e603c67cf7c55ff09c292991ef6b9f9ac3aae0f9))
90
+ * reenable support for dragging blocks between sprites ([#130](https://github.com/scratchfoundation/scratch-blocks/issues/130)) ([3d8b998](https://github.com/scratchfoundation/scratch-blocks/commit/3d8b998f3be7e76adf313a60b81f29b871266c94))
91
+ * reenable the matrix field ([#49](https://github.com/scratchfoundation/scratch-blocks/issues/49)) ([aa3341b](https://github.com/scratchfoundation/scratch-blocks/commit/aa3341b69e51de847f177124660a304e2bca8446))
92
+ * reenable the mobile numpad field ([#54](https://github.com/scratchfoundation/scratch-blocks/issues/54)) ([003afd0](https://github.com/scratchfoundation/scratch-blocks/commit/003afd04b98ae1d3688b5356885e27c116fc61ac))
93
+ * reenable the note block and picker field ([#48](https://github.com/scratchfoundation/scratch-blocks/issues/48)) ([de62d77](https://github.com/scratchfoundation/scratch-blocks/commit/de62d7752eb80f67a654ae2e87820ad4183e833d))
94
+ * reenable the vertical separator field ([#46](https://github.com/scratchfoundation/scratch-blocks/issues/46)) ([48e931f](https://github.com/scratchfoundation/scratch-blocks/commit/48e931fa9de3e31b18f088557c2cbfd0738b4bc6))
95
+ * remove canvas transition ([#129](https://github.com/scratchfoundation/scratch-blocks/issues/129)) ([ff4b115](https://github.com/scratchfoundation/scratch-blocks/commit/ff4b1151d702be0be5dabf1f1032fd08b8d58e3e))
96
+ * remove underscore from a few createProcedureDefCallback calls ([#40](https://github.com/scratchfoundation/scratch-blocks/issues/40)) ([4e794f6](https://github.com/scratchfoundation/scratch-blocks/commit/4e794f6503dfba1d12f9e99905660d305d34e309))
97
+ * render the procedure definition block like Scratch ([#115](https://github.com/scratchfoundation/scratch-blocks/issues/115)) ([2a543f5](https://github.com/scratchfoundation/scratch-blocks/commit/2a543f56f6d45bcc970cfe56dbfdea6ff26c833a))
98
+ * resolve error when adding the stop block to the workspace ([#56](https://github.com/scratchfoundation/scratch-blocks/issues/56)) ([f3e059c](https://github.com/scratchfoundation/scratch-blocks/commit/f3e059cbf5cf3ce4e063871632a213c8d58f1000))
99
+ * resolve various UI issues ([#117](https://github.com/scratchfoundation/scratch-blocks/issues/117)) ([4b74d5c](https://github.com/scratchfoundation/scratch-blocks/commit/4b74d5ca4ffaf7dfd7c040bce5cfd725c96d848a))
100
+ * select new variable blocks' monitor checkboxes after creation ([#140](https://github.com/scratchfoundation/scratch-blocks/issues/140)) ([3811d93](https://github.com/scratchfoundation/scratch-blocks/commit/3811d93f57c2a72a8a830a7326e2d27694bec7b7))
101
+ * show connection highlights for boolean inputs ([#181](https://github.com/scratchfoundation/scratch-blocks/issues/181)) ([303611a](https://github.com/scratchfoundation/scratch-blocks/commit/303611a5475b4c5914d14c7fa04915d0cb0a0d03))
102
+ * show the glow only when blocks are running ([#57](https://github.com/scratchfoundation/scratch-blocks/issues/57)) ([33e9e91](https://github.com/scratchfoundation/scratch-blocks/commit/33e9e91be1210c1699bc3491df5d9c7c191bc30d))
103
+ * show the name of the list in the list getter block context menu ([#132](https://github.com/scratchfoundation/scratch-blocks/issues/132)) ([eb839fc](https://github.com/scratchfoundation/scratch-blocks/commit/eb839fcef9e8befad591cf35c00044adff9269f6))
104
+ * update the flyout for compatibility with the new flyout API ([#209](https://github.com/scratchfoundation/scratch-blocks/issues/209)) ([7ce9991](https://github.com/scratchfoundation/scratch-blocks/commit/7ce9991b6f1b6a504847097ebd098f0ec1e50e52))
105
+ * use non-deprecated input type constants ([#78](https://github.com/scratchfoundation/scratch-blocks/issues/78)) ([1f1c859](https://github.com/scratchfoundation/scratch-blocks/commit/1f1c8598a5dac8bb42dd82fff7edc7eda7fe4225))
106
+ * use Scratch-style text blocks ([#37](https://github.com/scratchfoundation/scratch-blocks/issues/37)) ([6bbbdf7](https://github.com/scratchfoundation/scratch-blocks/commit/6bbbdf763ba43d3dc0af7bad15478f848455f4df))
107
+ * use Scratch's FieldAngle ([#138](https://github.com/scratchfoundation/scratch-blocks/issues/138)) ([ef7911c](https://github.com/scratchfoundation/scratch-blocks/commit/ef7911cf7fd12d6370733bdd3778560925bd050c))
7
108
 
8
109
 
9
- ### Bug Fixes
10
-
11
- * **deps:** lock file maintenance ([f03ec32](https://github.com/scratchfoundation/scratch-blocks/commit/f03ec32bc617fc09c68937c4bd9a9b61c71a292c))
12
-
13
- ## [1.1.205](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.204...v1.1.205) (2024-08-02)
14
-
15
-
16
- ### Bug Fixes
17
-
18
- * **deps:** lock file maintenance ([ce2d072](https://github.com/scratchfoundation/scratch-blocks/commit/ce2d0728f4ac52f4639c6c12f4ad56a0550771b6))
19
-
20
- ## [1.1.204](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.203...v1.1.204) (2024-08-01)
21
-
22
-
23
- ### Bug Fixes
24
-
25
- * **deps:** lock file maintenance ([634c1f9](https://github.com/scratchfoundation/scratch-blocks/commit/634c1f9772d7eca2bc46323239cc04d9f5f4edb1))
26
-
27
- ## [1.1.203](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.202...v1.1.203) (2024-07-31)
28
-
29
-
30
- ### Bug Fixes
31
-
32
- * **deps:** lock file maintenance ([24e1180](https://github.com/scratchfoundation/scratch-blocks/commit/24e118097140b3bde773fe1ebf545ae357a6dcea))
33
-
34
- ## [1.1.202](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.201...v1.1.202) (2024-07-31)
35
-
36
-
37
- ### Bug Fixes
38
-
39
- * **deps:** lock file maintenance ([91b2386](https://github.com/scratchfoundation/scratch-blocks/commit/91b23866d2890ace246fc95e4ff0847c62f67490))
40
-
41
- ## [1.1.201](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.200...v1.1.201) (2024-07-29)
42
-
43
-
44
- ### Bug Fixes
45
-
46
- * **deps:** lock file maintenance ([9a13c39](https://github.com/scratchfoundation/scratch-blocks/commit/9a13c39bd04dacd81bcdc62d628731f55e8029ce))
47
-
48
- ## [1.1.200](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.199...v1.1.200) (2024-07-29)
49
-
50
-
51
- ### Bug Fixes
52
-
53
- * **deps:** lock file maintenance ([69ed11b](https://github.com/scratchfoundation/scratch-blocks/commit/69ed11b46404e5dcbe1826a5333e02bb1d9e582a))
54
-
55
- ## [1.1.199](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.198...v1.1.199) (2024-07-28)
56
-
57
-
58
- ### Bug Fixes
59
-
60
- * **deps:** lock file maintenance ([d12aa91](https://github.com/scratchfoundation/scratch-blocks/commit/d12aa91f3813920da9700871a692c1c0c98b3f18))
61
-
62
- ## [1.1.198](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.197...v1.1.198) (2024-07-27)
63
-
64
-
65
- ### Bug Fixes
66
-
67
- * **deps:** lock file maintenance ([c6abb84](https://github.com/scratchfoundation/scratch-blocks/commit/c6abb84c364a8c52641c01478945670b658aeb51))
68
-
69
- ## [1.1.197](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.196...v1.1.197) (2024-07-27)
70
-
71
-
72
- ### Bug Fixes
73
-
74
- * **deps:** lock file maintenance ([69e6333](https://github.com/scratchfoundation/scratch-blocks/commit/69e6333ebf1c330ad9bd3ff5c669e0014f77a6db))
75
-
76
- ## [1.1.196](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.195...v1.1.196) (2024-07-26)
77
-
78
-
79
- ### Bug Fixes
80
-
81
- * **deps:** lock file maintenance ([996605a](https://github.com/scratchfoundation/scratch-blocks/commit/996605aa41c3f7fb064e597c32490f800bdcba72))
82
-
83
- ## [1.1.195](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.194...v1.1.195) (2024-07-25)
84
-
85
-
86
- ### Bug Fixes
87
-
88
- * **deps:** lock file maintenance ([1d9beda](https://github.com/scratchfoundation/scratch-blocks/commit/1d9beda67699fe9c7827a507cba51296fae30b5c))
89
-
90
- ## [1.1.194](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.193...v1.1.194) (2024-07-24)
91
-
92
-
93
- ### Bug Fixes
94
-
95
- * **deps:** lock file maintenance ([bb064ef](https://github.com/scratchfoundation/scratch-blocks/commit/bb064ef53ef4fae16703e20e0d2427c38ecdfec0))
96
-
97
- ## [1.1.193](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.192...v1.1.193) (2024-07-23)
98
-
99
-
100
- ### Bug Fixes
101
-
102
- * **deps:** lock file maintenance ([986bc7c](https://github.com/scratchfoundation/scratch-blocks/commit/986bc7cb9cdfaf5a3c644c59cf2514504f111c0e))
103
-
104
- ## [1.1.192](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.191...v1.1.192) (2024-07-22)
105
-
106
-
107
- ### Bug Fixes
108
-
109
- * **deps:** lock file maintenance ([fa93b04](https://github.com/scratchfoundation/scratch-blocks/commit/fa93b0451e8ac87ef0e236e320f246d286f357d5))
110
-
111
- ## [1.1.191](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.190...v1.1.191) (2024-07-21)
112
-
113
-
114
- ### Bug Fixes
115
-
116
- * **deps:** lock file maintenance ([7a655b9](https://github.com/scratchfoundation/scratch-blocks/commit/7a655b9c87bab1401687f5ac8fb69a8ac9ead649))
117
-
118
- ## [1.1.190](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.189...v1.1.190) (2024-07-20)
119
-
120
-
121
- ### Bug Fixes
122
-
123
- * **deps:** lock file maintenance ([cddf23d](https://github.com/scratchfoundation/scratch-blocks/commit/cddf23d245bfea8887b12d362e1c2b6e25a37335))
124
-
125
- ## [1.1.189](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.188...v1.1.189) (2024-07-19)
126
-
127
-
128
- ### Bug Fixes
129
-
130
- * **deps:** lock file maintenance ([180a044](https://github.com/scratchfoundation/scratch-blocks/commit/180a044ea29c0293794b58b80d7607e382bd6f69))
131
-
132
- ## [1.1.188](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.187...v1.1.188) (2024-07-18)
133
-
134
-
135
- ### Bug Fixes
136
-
137
- * **deps:** lock file maintenance ([375b029](https://github.com/scratchfoundation/scratch-blocks/commit/375b029cdea889640770bb6dfaa00e422d578089))
138
-
139
- ## [1.1.187](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.186...v1.1.187) (2024-07-17)
140
-
141
-
142
- ### Bug Fixes
143
-
144
- * **deps:** lock file maintenance ([ce43bcc](https://github.com/scratchfoundation/scratch-blocks/commit/ce43bcc1aa7e570e9e427d319c995a07e18462a0))
145
-
146
- ## [1.1.186](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.185...v1.1.186) (2024-07-16)
147
-
148
-
149
- ### Bug Fixes
150
-
151
- * **deps:** lock file maintenance ([6129e79](https://github.com/scratchfoundation/scratch-blocks/commit/6129e79bb4c2580002c68082ddd24a10d5d1ffe0))
152
-
153
- ## [1.1.185](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.184...v1.1.185) (2024-07-15)
154
-
155
-
156
- ### Bug Fixes
157
-
158
- * **deps:** lock file maintenance ([fb9bcd3](https://github.com/scratchfoundation/scratch-blocks/commit/fb9bcd3944abb3e84c4625872aceb3be47d7d908))
159
-
160
- ## [1.1.184](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.183...v1.1.184) (2024-07-14)
161
-
162
-
163
- ### Bug Fixes
164
-
165
- * **deps:** lock file maintenance ([5b3a8a0](https://github.com/scratchfoundation/scratch-blocks/commit/5b3a8a0f25980aaf12fcd539ea01915d4595a46e))
166
-
167
- ## [1.1.183](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.182...v1.1.183) (2024-07-13)
168
-
169
-
170
- ### Bug Fixes
171
-
172
- * **deps:** lock file maintenance ([ce83755](https://github.com/scratchfoundation/scratch-blocks/commit/ce837552aa20e799a013bf655ab91314f1ac615f))
173
-
174
- ## [1.1.182](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.181...v1.1.182) (2024-07-12)
175
-
176
-
177
- ### Bug Fixes
178
-
179
- * **deps:** lock file maintenance ([be830ee](https://github.com/scratchfoundation/scratch-blocks/commit/be830ee243cb7ea630e45ba11a46eadbf2f696c7))
180
-
181
- ## [1.1.181](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.180...v1.1.181) (2024-07-12)
182
-
183
-
184
- ### Bug Fixes
185
-
186
- * **deps:** lock file maintenance ([a8f28ce](https://github.com/scratchfoundation/scratch-blocks/commit/a8f28cec1c27e4d062f7ddfde53b865d4d7e859e))
187
-
188
- ## [1.1.180](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.179...v1.1.180) (2024-07-12)
189
-
190
-
191
- ### Bug Fixes
192
-
193
- * **deps:** lock file maintenance ([e6c655f](https://github.com/scratchfoundation/scratch-blocks/commit/e6c655f2abd5525fed050b1d5e670d7d9ae434ad))
194
-
195
- ## [1.1.179](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.178...v1.1.179) (2024-07-11)
196
-
197
-
198
- ### Bug Fixes
199
-
200
- * **deps:** lock file maintenance ([e30b2ef](https://github.com/scratchfoundation/scratch-blocks/commit/e30b2ef9b0facad4777193429084ef191b2b9731))
201
-
202
- ## [1.1.178](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.177...v1.1.178) (2024-07-10)
203
-
204
-
205
- ### Bug Fixes
206
-
207
- * **deps:** lock file maintenance ([f3a29bc](https://github.com/scratchfoundation/scratch-blocks/commit/f3a29bcf729044de00276254b51c1938e53f90c1))
208
-
209
- ## [1.1.177](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.176...v1.1.177) (2024-07-09)
210
-
211
-
212
- ### Bug Fixes
213
-
214
- * **deps:** lock file maintenance ([38143d4](https://github.com/scratchfoundation/scratch-blocks/commit/38143d44a4c2b88ca949df065ac2652a5a9d06ac))
215
-
216
- ## [1.1.176](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.175...v1.1.176) (2024-07-09)
217
-
218
-
219
- ### Bug Fixes
220
-
221
- * **deps:** lock file maintenance ([631abb4](https://github.com/scratchfoundation/scratch-blocks/commit/631abb4c60355f26f9df20e2be4a43985aeb890d))
222
-
223
- ## [1.1.175](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.174...v1.1.175) (2024-07-08)
224
-
225
-
226
- ### Bug Fixes
227
-
228
- * **deps:** lock file maintenance ([ce36722](https://github.com/scratchfoundation/scratch-blocks/commit/ce3672280436aa8eaf102cc913e2c56089670f2d))
229
-
230
- ## [1.1.174](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.173...v1.1.174) (2024-07-07)
231
-
232
-
233
- ### Bug Fixes
234
-
235
- * **deps:** lock file maintenance ([0cbcafe](https://github.com/scratchfoundation/scratch-blocks/commit/0cbcafe32a527fce7b303e633158c1ed3312a72f))
236
-
237
- ## [1.1.173](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.172...v1.1.173) (2024-07-04)
238
-
239
-
240
- ### Bug Fixes
241
-
242
- * **deps:** lock file maintenance ([0df4a92](https://github.com/scratchfoundation/scratch-blocks/commit/0df4a923b9b26efb1c1fbaf306d30293fab3c4fb))
243
-
244
- ## [1.1.172](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.171...v1.1.172) (2024-07-04)
245
-
246
-
247
- ### Bug Fixes
248
-
249
- * **deps:** lock file maintenance ([9ac5f7e](https://github.com/scratchfoundation/scratch-blocks/commit/9ac5f7e01ccc80f0187ef9d16ca76039f6c948f7))
250
-
251
- ## [1.1.171](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.170...v1.1.171) (2024-07-03)
252
-
253
-
254
- ### Bug Fixes
255
-
256
- * **deps:** lock file maintenance ([5edd55a](https://github.com/scratchfoundation/scratch-blocks/commit/5edd55a04d2d5ac44ba64a6fed6ae653f521e843))
257
-
258
- ## [1.1.170](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.169...v1.1.170) (2024-07-03)
259
-
260
-
261
- ### Bug Fixes
262
-
263
- * **deps:** lock file maintenance ([23a43ad](https://github.com/scratchfoundation/scratch-blocks/commit/23a43ad4464c02e05f0d6c275113b0297c8dfee9))
264
-
265
- ## [1.1.169](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.168...v1.1.169) (2024-07-02)
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * **deps:** lock file maintenance ([3db2383](https://github.com/scratchfoundation/scratch-blocks/commit/3db2383a8b7930a293bf4fe9d735184b7917f842))
271
-
272
- ## [1.1.168](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.167...v1.1.168) (2024-07-02)
273
-
274
-
275
- ### Bug Fixes
276
-
277
- * **deps:** lock file maintenance ([2815ed3](https://github.com/scratchfoundation/scratch-blocks/commit/2815ed3bc7ce7c784e66d50a372187873c6c6007))
278
-
279
- ## [1.1.167](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.166...v1.1.167) (2024-07-01)
280
-
281
-
282
- ### Bug Fixes
283
-
284
- * **deps:** lock file maintenance ([aaf644e](https://github.com/scratchfoundation/scratch-blocks/commit/aaf644e2fbf7226c24c269590b6123b104105283))
285
-
286
- ## [1.1.166](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.165...v1.1.166) (2024-06-30)
287
-
288
-
289
- ### Bug Fixes
290
-
291
- * **deps:** lock file maintenance ([565090d](https://github.com/scratchfoundation/scratch-blocks/commit/565090de92a33405aa89bccfafae9d9030bd0790))
292
-
293
- ## [1.1.165](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.164...v1.1.165) (2024-06-28)
294
-
295
-
296
- ### Bug Fixes
297
-
298
- * **deps:** lock file maintenance ([bf1fa9e](https://github.com/scratchfoundation/scratch-blocks/commit/bf1fa9e1a3850533fffd9f5fdcc05c70e7e4b0b4))
299
-
300
- ## [1.1.164](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.163...v1.1.164) (2024-06-28)
301
-
302
-
303
- ### Bug Fixes
304
-
305
- * **deps:** lock file maintenance ([8cd9f3a](https://github.com/scratchfoundation/scratch-blocks/commit/8cd9f3a8ca3066e5f1ba30e018da7b6c24047bc3))
306
-
307
- ## [1.1.163](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.162...v1.1.163) (2024-06-27)
308
-
309
-
310
- ### Bug Fixes
311
-
312
- * **deps:** lock file maintenance ([be9ae67](https://github.com/scratchfoundation/scratch-blocks/commit/be9ae67d3e4b77cdb68484708a3bd5610bc89df9))
313
-
314
- ## [1.1.162](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.161...v1.1.162) (2024-06-26)
315
-
316
-
317
- ### Bug Fixes
318
-
319
- * **deps:** lock file maintenance ([985a48b](https://github.com/scratchfoundation/scratch-blocks/commit/985a48b84f79dc5ed3d39987990783de8a216097))
320
-
321
- ## [1.1.161](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.160...v1.1.161) (2024-06-26)
322
-
323
-
324
- ### Bug Fixes
325
-
326
- * **deps:** lock file maintenance ([ef90c4e](https://github.com/scratchfoundation/scratch-blocks/commit/ef90c4e68f5b33b1aba1919c4d212c9a00471332))
327
-
328
- ## [1.1.160](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.159...v1.1.160) (2024-06-24)
329
-
330
-
331
- ### Bug Fixes
332
-
333
- * **deps:** lock file maintenance ([47e0476](https://github.com/scratchfoundation/scratch-blocks/commit/47e0476a9fc18a66aefb3b1b11c24b122e2fe828))
334
-
335
- ## [1.1.159](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.158...v1.1.159) (2024-06-24)
336
-
337
-
338
- ### Bug Fixes
339
-
340
- * **deps:** lock file maintenance ([3cf914e](https://github.com/scratchfoundation/scratch-blocks/commit/3cf914e34b0920668f3a38771c027bc275cddedc))
341
-
342
- ## [1.1.158](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.157...v1.1.158) (2024-06-23)
343
-
344
-
345
- ### Bug Fixes
346
-
347
- * **deps:** lock file maintenance ([ca1a438](https://github.com/scratchfoundation/scratch-blocks/commit/ca1a43845aa6a06f65dca7761287b36759886ce3))
348
-
349
- ## [1.1.157](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.156...v1.1.157) (2024-06-22)
350
-
351
-
352
- ### Bug Fixes
353
-
354
- * **deps:** lock file maintenance ([5d0b1a5](https://github.com/scratchfoundation/scratch-blocks/commit/5d0b1a51f6129435482080e2fb6e661bb863b4ff))
355
-
356
- ## [1.1.156](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.155...v1.1.156) (2024-06-21)
357
-
358
-
359
- ### Bug Fixes
360
-
361
- * **deps:** lock file maintenance ([c930edc](https://github.com/scratchfoundation/scratch-blocks/commit/c930edc64a2a64f4a300dcbfadff22789a464b05))
362
-
363
- ## [1.1.155](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.154...v1.1.155) (2024-06-20)
364
-
365
-
366
- ### Bug Fixes
367
-
368
- * **deps:** lock file maintenance ([abb2527](https://github.com/scratchfoundation/scratch-blocks/commit/abb2527af49aefb6457aeb78e8fbc8f3cd9a8296))
369
-
370
- ## [1.1.154](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.153...v1.1.154) (2024-06-19)
371
-
372
-
373
- ### Bug Fixes
374
-
375
- * **deps:** lock file maintenance ([f625559](https://github.com/scratchfoundation/scratch-blocks/commit/f625559da32cd7b0d292d0acb024379e0ce02594))
376
-
377
- ## [1.1.153](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.152...v1.1.153) (2024-06-18)
378
-
379
-
380
- ### Bug Fixes
381
-
382
- * **deps:** lock file maintenance ([f1d96ea](https://github.com/scratchfoundation/scratch-blocks/commit/f1d96ea850dddc392c088af790cef0a36ccffd0c))
383
-
384
- ## [1.1.152](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.151...v1.1.152) (2024-06-17)
385
-
386
-
387
- ### Bug Fixes
388
-
389
- * **deps:** lock file maintenance ([2753283](https://github.com/scratchfoundation/scratch-blocks/commit/2753283ec8df9bd2452ee90a9e467b6c701adcff))
390
-
391
- ## [1.1.151](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.150...v1.1.151) (2024-06-16)
392
-
393
-
394
- ### Bug Fixes
395
-
396
- * **deps:** lock file maintenance ([fe3699a](https://github.com/scratchfoundation/scratch-blocks/commit/fe3699a010bb515ec0215c28c89320057f87ea78))
397
-
398
- ## [1.1.150](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.149...v1.1.150) (2024-06-16)
399
-
400
-
401
- ### Bug Fixes
402
-
403
- * **deps:** lock file maintenance ([9be316e](https://github.com/scratchfoundation/scratch-blocks/commit/9be316e9a315318ed89093afbbf1bd2708c011ba))
404
-
405
- ## [1.1.149](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.148...v1.1.149) (2024-06-15)
406
-
407
-
408
- ### Bug Fixes
409
-
410
- * **deps:** lock file maintenance ([bd6c9df](https://github.com/scratchfoundation/scratch-blocks/commit/bd6c9df5f352dd7607d889c51b961d6b6eef2ec6))
411
-
412
- ## [1.1.148](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.147...v1.1.148) (2024-06-15)
413
-
414
-
415
- ### Bug Fixes
416
-
417
- * **deps:** lock file maintenance ([e17d972](https://github.com/scratchfoundation/scratch-blocks/commit/e17d972fd221ec1e2037e6e8943dbaa388f35713))
418
-
419
- ## [1.1.147](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.146...v1.1.147) (2024-06-14)
420
-
421
-
422
- ### Bug Fixes
423
-
424
- * **deps:** lock file maintenance ([52db517](https://github.com/scratchfoundation/scratch-blocks/commit/52db5171003c0c586f3832e0a1ceb1ba3f980f5b))
425
-
426
- ## [1.1.146](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.145...v1.1.146) (2024-06-13)
427
-
428
-
429
- ### Bug Fixes
430
-
431
- * **deps:** lock file maintenance ([f030d5b](https://github.com/scratchfoundation/scratch-blocks/commit/f030d5b3b0d5f2716cffad90d8755f5f50939b2d))
432
-
433
- ## [1.1.145](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.144...v1.1.145) (2024-06-12)
434
-
435
-
436
- ### Bug Fixes
437
-
438
- * **deps:** lock file maintenance ([54c4908](https://github.com/scratchfoundation/scratch-blocks/commit/54c49080c4de4adf237c748da35fdb9e36b7d07b))
439
-
440
- ## [1.1.144](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.143...v1.1.144) (2024-06-11)
441
-
442
-
443
- ### Bug Fixes
444
-
445
- * **deps:** lock file maintenance ([bdd5b4b](https://github.com/scratchfoundation/scratch-blocks/commit/bdd5b4bb0040074786c1495406fe02ba281435e5))
446
-
447
- ## [1.1.143](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.142...v1.1.143) (2024-06-11)
448
-
449
-
450
- ### Bug Fixes
451
-
452
- * **deps:** lock file maintenance ([cd618ca](https://github.com/scratchfoundation/scratch-blocks/commit/cd618ca3b11e171d978946a13f621eb8b3fcdf64))
453
-
454
- ## [1.1.142](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.141...v1.1.142) (2024-06-10)
455
-
456
-
457
- ### Bug Fixes
458
-
459
- * **deps:** lock file maintenance ([f1fb6fe](https://github.com/scratchfoundation/scratch-blocks/commit/f1fb6fec5747694f8c1f0c3c8e1304a5ea3f6842))
460
-
461
- ## [1.1.141](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.140...v1.1.141) (2024-06-09)
462
-
463
-
464
- ### Bug Fixes
465
-
466
- * **deps:** lock file maintenance ([bc49026](https://github.com/scratchfoundation/scratch-blocks/commit/bc49026c845bbd72c855c20c18d569b4f0771635))
467
-
468
- ## [1.1.140](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.139...v1.1.140) (2024-06-08)
469
-
470
-
471
- ### Bug Fixes
472
-
473
- * **deps:** lock file maintenance ([4525909](https://github.com/scratchfoundation/scratch-blocks/commit/452590917b726e6e3d4f0ab29abca61554212ee2))
474
-
475
- ## [1.1.139](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.138...v1.1.139) (2024-06-07)
476
-
477
-
478
- ### Bug Fixes
479
-
480
- * **deps:** lock file maintenance ([e27ae83](https://github.com/scratchfoundation/scratch-blocks/commit/e27ae8398af9b9722311fa5ab99f9ec900fe77e0))
481
-
482
- ## [1.1.138](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.137...v1.1.138) (2024-06-06)
483
-
484
-
485
- ### Bug Fixes
486
-
487
- * **deps:** lock file maintenance ([91a713d](https://github.com/scratchfoundation/scratch-blocks/commit/91a713d6d77fefe61a2032ad26667eb285661e51))
488
-
489
- ## [1.1.137](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.136...v1.1.137) (2024-06-05)
490
-
491
-
492
- ### Bug Fixes
493
-
494
- * **deps:** lock file maintenance ([727018c](https://github.com/scratchfoundation/scratch-blocks/commit/727018c95c7d2a3882723c346886824302643bb7))
495
-
496
- ## [1.1.136](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.135...v1.1.136) (2024-06-04)
497
-
498
-
499
- ### Bug Fixes
500
-
501
- * **deps:** lock file maintenance ([f9ac21f](https://github.com/scratchfoundation/scratch-blocks/commit/f9ac21fa8e5f8df99a66d16836d924282747571a))
502
-
503
- ## [1.1.135](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.134...v1.1.135) (2024-06-03)
504
-
505
-
506
- ### Bug Fixes
507
-
508
- * **deps:** lock file maintenance ([c714bb7](https://github.com/scratchfoundation/scratch-blocks/commit/c714bb72a5b31845eb2f4636f0bdec3975c784a4))
509
-
510
- ## [1.1.134](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.133...v1.1.134) (2024-06-03)
511
-
512
-
513
- ### Bug Fixes
514
-
515
- * **deps:** lock file maintenance ([b194ad6](https://github.com/scratchfoundation/scratch-blocks/commit/b194ad6199c7d7ed649f81744c6862007c3ef2e6))
516
-
517
- ## [1.1.133](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.132...v1.1.133) (2024-06-02)
518
-
519
-
520
- ### Bug Fixes
521
-
522
- * **deps:** lock file maintenance ([cce9512](https://github.com/scratchfoundation/scratch-blocks/commit/cce9512b5a59da9136956c6ed366981656849d66))
523
-
524
- ## [1.1.132](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.131...v1.1.132) (2024-06-02)
525
-
526
-
527
- ### Bug Fixes
528
-
529
- * **deps:** lock file maintenance ([770836c](https://github.com/scratchfoundation/scratch-blocks/commit/770836cea01f09fa58eb633a812618b412b5ffca))
530
-
531
- ## [1.1.131](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.130...v1.1.131) (2024-06-01)
532
-
533
-
534
- ### Bug Fixes
535
-
536
- * **deps:** lock file maintenance ([dae0421](https://github.com/scratchfoundation/scratch-blocks/commit/dae04218135505e5247ff1e12c8a6afc11a56396))
537
-
538
- ## [1.1.130](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.129...v1.1.130) (2024-06-01)
539
-
540
-
541
- ### Bug Fixes
542
-
543
- * **deps:** lock file maintenance ([48c13fb](https://github.com/scratchfoundation/scratch-blocks/commit/48c13fbaf1fe9777014e398e39547eae96666aa4))
544
-
545
- ## [1.1.129](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.128...v1.1.129) (2024-05-31)
546
-
547
-
548
- ### Bug Fixes
549
-
550
- * **deps:** lock file maintenance ([8ef6fe7](https://github.com/scratchfoundation/scratch-blocks/commit/8ef6fe70b416cdc56eeb463dd81b7b292126fef8))
551
-
552
- ## [1.1.128](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.127...v1.1.128) (2024-05-30)
553
-
554
-
555
- ### Bug Fixes
556
-
557
- * **deps:** lock file maintenance ([3f80f13](https://github.com/scratchfoundation/scratch-blocks/commit/3f80f13d9e2f78961389ec90098ecda1a5cf9cef))
558
-
559
- ## [1.1.127](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.126...v1.1.127) (2024-05-29)
560
-
561
-
562
- ### Bug Fixes
563
-
564
- * **deps:** lock file maintenance ([5b5e9f9](https://github.com/scratchfoundation/scratch-blocks/commit/5b5e9f996f95270672362e6346c767868f10dc24))
565
-
566
- ## [1.1.126](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.125...v1.1.126) (2024-05-26)
567
-
568
-
569
- ### Bug Fixes
570
-
571
- * **deps:** lock file maintenance ([2ea5191](https://github.com/scratchfoundation/scratch-blocks/commit/2ea51917a1a0a5d7a4d34a1884448827b0a8e18c))
572
-
573
- ## [1.1.125](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.124...v1.1.125) (2024-05-26)
574
-
575
-
576
- ### Bug Fixes
577
-
578
- * **deps:** lock file maintenance ([7fab9d8](https://github.com/scratchfoundation/scratch-blocks/commit/7fab9d851736a9e3bf2337069ef8af5561050ae6))
579
-
580
- ## [1.1.124](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.123...v1.1.124) (2024-05-25)
581
-
582
-
583
- ### Bug Fixes
584
-
585
- * **deps:** lock file maintenance ([0eda647](https://github.com/scratchfoundation/scratch-blocks/commit/0eda647b16eeb06d7deb9669db3abaac1f1fa96b))
586
-
587
- ## [1.1.123](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.122...v1.1.123) (2024-05-24)
588
-
589
-
590
- ### Bug Fixes
591
-
592
- * **deps:** lock file maintenance ([80396c8](https://github.com/scratchfoundation/scratch-blocks/commit/80396c8ecbe548312ee196e3538ab54a07168058))
593
-
594
- ## [1.1.122](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.121...v1.1.122) (2024-05-24)
595
-
596
-
597
- ### Bug Fixes
598
-
599
- * **deps:** lock file maintenance ([4918868](https://github.com/scratchfoundation/scratch-blocks/commit/4918868463c577d41fc0afad18393b78cd1dad88))
600
-
601
- ## [1.1.121](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.120...v1.1.121) (2024-05-23)
602
-
603
-
604
- ### Bug Fixes
605
-
606
- * **deps:** lock file maintenance ([4c1855a](https://github.com/scratchfoundation/scratch-blocks/commit/4c1855ade366c7d6c1d9ddc41769dc33cf0dff04))
607
-
608
- ## [1.1.120](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.119...v1.1.120) (2024-05-23)
609
-
610
-
611
- ### Bug Fixes
612
-
613
- * **deps:** lock file maintenance ([4723caf](https://github.com/scratchfoundation/scratch-blocks/commit/4723caf60864b51ed35f1577dede36dbc8968352))
614
-
615
- ## [1.1.119](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.118...v1.1.119) (2024-05-19)
616
-
617
-
618
- ### Bug Fixes
619
-
620
- * **deps:** lock file maintenance ([8302b44](https://github.com/scratchfoundation/scratch-blocks/commit/8302b4485e7b219dd1b0a14bb7ba2740383a88d7))
621
-
622
- ## [1.1.118](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.117...v1.1.118) (2024-05-18)
623
-
624
-
625
- ### Bug Fixes
626
-
627
- * **deps:** lock file maintenance ([d071017](https://github.com/scratchfoundation/scratch-blocks/commit/d0710177f085ea47d46256268a8b332eeba112f9))
628
-
629
- ## [1.1.117](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.116...v1.1.117) (2024-05-17)
630
-
631
-
632
- ### Bug Fixes
633
-
634
- * **deps:** lock file maintenance ([ef80dd2](https://github.com/scratchfoundation/scratch-blocks/commit/ef80dd2ec5fd76e5f1299eb86f6eb676e1362004))
635
-
636
- ## [1.1.116](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.115...v1.1.116) (2024-05-15)
637
-
638
-
639
- ### Bug Fixes
640
-
641
- * **deps:** lock file maintenance ([9e03aaf](https://github.com/scratchfoundation/scratch-blocks/commit/9e03aaf14fc9f08c4d3e5e9a220065cf6f1ae7d0))
642
-
643
- ## [1.1.115](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.114...v1.1.115) (2024-05-14)
644
-
645
-
646
- ### Bug Fixes
647
-
648
- * **deps:** lock file maintenance ([f5b691b](https://github.com/scratchfoundation/scratch-blocks/commit/f5b691b5c45538a0a81a046604792b7338d3d3b2))
649
-
650
- ## [1.1.114](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.113...v1.1.114) (2024-05-13)
651
-
652
-
653
- ### Bug Fixes
654
-
655
- * **deps:** lock file maintenance ([6411381](https://github.com/scratchfoundation/scratch-blocks/commit/64113812360554a9edf1f04cdf82d86d201e1a14))
656
-
657
- ## [1.1.113](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.112...v1.1.113) (2024-05-12)
658
-
659
-
660
- ### Bug Fixes
661
-
662
- * **deps:** lock file maintenance ([0f2cd62](https://github.com/scratchfoundation/scratch-blocks/commit/0f2cd62cd84ffd5f7f172bbb653a0ece305c3c5d))
663
-
664
- ## [1.1.112](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.111...v1.1.112) (2024-05-11)
665
-
666
-
667
- ### Bug Fixes
668
-
669
- * **deps:** lock file maintenance ([adbebde](https://github.com/scratchfoundation/scratch-blocks/commit/adbebdedc54c53b8a8412f21e6c245d79c3c30e9))
670
-
671
- ## [1.1.111](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.110...v1.1.111) (2024-05-10)
672
-
673
-
674
- ### Bug Fixes
675
-
676
- * **deps:** lock file maintenance ([d475996](https://github.com/scratchfoundation/scratch-blocks/commit/d47599680f5946c1372278f61baac8fb93e98216))
677
-
678
- ## [1.1.110](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.109...v1.1.110) (2024-05-09)
679
-
680
-
681
- ### Bug Fixes
682
-
683
- * **deps:** lock file maintenance ([3fd3eac](https://github.com/scratchfoundation/scratch-blocks/commit/3fd3eac98f9e6e9b0f406d6de078f40dafb7186b))
684
-
685
- ## [1.1.109](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.108...v1.1.109) (2024-05-08)
686
-
687
-
688
- ### Bug Fixes
689
-
690
- * **deps:** lock file maintenance ([b281476](https://github.com/scratchfoundation/scratch-blocks/commit/b2814762eee7ea64e0fee22a051521b60e4df27c))
691
-
692
- ## [1.1.108](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.107...v1.1.108) (2024-05-06)
693
-
694
-
695
- ### Bug Fixes
696
-
697
- * **deps:** lock file maintenance ([d2c940b](https://github.com/scratchfoundation/scratch-blocks/commit/d2c940b77d37a5882fe6cbb98d72a106b7812920))
698
-
699
- ## [1.1.107](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.106...v1.1.107) (2024-05-05)
700
-
701
-
702
- ### Bug Fixes
703
-
704
- * **deps:** lock file maintenance ([794875e](https://github.com/scratchfoundation/scratch-blocks/commit/794875eeb78037da67d70f5fc85fd2f75f116dcb))
705
-
706
- ## [1.1.106](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.105...v1.1.106) (2024-05-03)
707
-
708
-
709
- ### Bug Fixes
710
-
711
- * **deps:** lock file maintenance ([c1fa17e](https://github.com/scratchfoundation/scratch-blocks/commit/c1fa17e45d1df145b68e104ad4a969c0670e43f7))
712
-
713
- ## [1.1.105](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.104...v1.1.105) (2024-05-02)
714
-
715
-
716
- ### Bug Fixes
717
-
718
- * **deps:** lock file maintenance ([dc610ea](https://github.com/scratchfoundation/scratch-blocks/commit/dc610eabdd46186d17b437937bbd87fccc27990e))
719
-
720
- ## [1.1.104](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.103...v1.1.104) (2024-04-30)
721
-
722
-
723
- ### Bug Fixes
724
-
725
- * **deps:** lock file maintenance ([d3c7783](https://github.com/scratchfoundation/scratch-blocks/commit/d3c77834e2c995da70a0f024ef9d3fa4d939d0f1))
726
-
727
- ## [1.1.103](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.102...v1.1.103) (2024-04-30)
728
-
729
-
730
- ### Bug Fixes
731
-
732
- * **deps:** lock file maintenance ([44bf8ca](https://github.com/scratchfoundation/scratch-blocks/commit/44bf8ca0b57e40226cf292a3adec391443889076))
733
-
734
- ## [1.1.102](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.101...v1.1.102) (2024-04-29)
735
-
736
-
737
- ### Bug Fixes
738
-
739
- * **deps:** lock file maintenance ([a00fa5c](https://github.com/scratchfoundation/scratch-blocks/commit/a00fa5c6c09328b6c7b87af0d42eb2888d7bc520))
740
-
741
- ## [1.1.101](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.100...v1.1.101) (2024-04-29)
742
-
743
-
744
- ### Bug Fixes
745
-
746
- * **deps:** lock file maintenance ([8969200](https://github.com/scratchfoundation/scratch-blocks/commit/8969200ead3155748d51aa25d820c74421b8383c))
747
-
748
- ## [1.1.100](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.99...v1.1.100) (2024-04-28)
749
-
750
-
751
- ### Bug Fixes
752
-
753
- * **deps:** lock file maintenance ([fc6e93a](https://github.com/scratchfoundation/scratch-blocks/commit/fc6e93af22d567748c82c72d4fb9489b7f6206e6))
754
-
755
- ## [1.1.99](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.98...v1.1.99) (2024-04-27)
756
-
757
-
758
- ### Bug Fixes
759
-
760
- * **deps:** lock file maintenance ([3991624](https://github.com/scratchfoundation/scratch-blocks/commit/39916249a4ac8122ef56d028300d9b4ca750cf59))
761
-
762
- ## [1.1.98](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.97...v1.1.98) (2024-04-26)
763
-
764
-
765
- ### Bug Fixes
766
-
767
- * **deps:** lock file maintenance ([5e1bad7](https://github.com/scratchfoundation/scratch-blocks/commit/5e1bad7a355c0d7f48cb853cceb716cbf26a1b9e))
768
-
769
- ## [1.1.97](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.96...v1.1.97) (2024-04-25)
770
-
771
-
772
- ### Bug Fixes
773
-
774
- * **deps:** lock file maintenance ([c9f8fef](https://github.com/scratchfoundation/scratch-blocks/commit/c9f8feff7b9952171f1ff01061ed2f6c07bc5899))
775
-
776
- ## [1.1.96](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.95...v1.1.96) (2024-04-24)
777
-
778
-
779
- ### Bug Fixes
780
-
781
- * **deps:** lock file maintenance ([070162c](https://github.com/scratchfoundation/scratch-blocks/commit/070162c72fa1c74327a8dca112cc9a831814930c))
782
-
783
- ## [1.1.95](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.94...v1.1.95) (2024-04-23)
784
-
785
-
786
- ### Bug Fixes
787
-
788
- * **deps:** lock file maintenance ([575802a](https://github.com/scratchfoundation/scratch-blocks/commit/575802a5459a676e23bc9f5dd44843b33382fbc4))
789
-
790
- ## [1.1.94](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.93...v1.1.94) (2024-04-21)
791
-
792
-
793
- ### Bug Fixes
794
-
795
- * **deps:** lock file maintenance ([94ddb2e](https://github.com/scratchfoundation/scratch-blocks/commit/94ddb2e912ea383672d24be7a30c486786ce9596))
796
-
797
- ## [1.1.93](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.92...v1.1.93) (2024-04-20)
798
-
799
-
800
- ### Bug Fixes
801
-
802
- * **deps:** lock file maintenance ([92de01a](https://github.com/scratchfoundation/scratch-blocks/commit/92de01aa4cabd33289305c703878ac76b125dbce))
803
-
804
- ## [1.1.92](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.91...v1.1.92) (2024-04-18)
805
-
806
-
807
- ### Bug Fixes
808
-
809
- * **deps:** lock file maintenance ([c7f13ab](https://github.com/scratchfoundation/scratch-blocks/commit/c7f13ab7c8bfd085d132e93acfe74f6669cd610b))
810
-
811
- ## [1.1.91](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.90...v1.1.91) (2024-04-18)
812
-
813
-
814
- ### Bug Fixes
815
-
816
- * **deps:** lock file maintenance ([4572779](https://github.com/scratchfoundation/scratch-blocks/commit/4572779f8e3cd2e59797690cf2e6fbcb0a1e1633))
817
-
818
- ## [1.1.90](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.89...v1.1.90) (2024-04-16)
819
-
820
-
821
- ### Bug Fixes
822
-
823
- * **deps:** lock file maintenance ([2424cf2](https://github.com/scratchfoundation/scratch-blocks/commit/2424cf2aa13492198cf333a5de6958f222169bfa))
824
-
825
- ## [1.1.89](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.88...v1.1.89) (2024-04-15)
826
-
827
-
828
- ### Bug Fixes
829
-
830
- * **deps:** lock file maintenance ([ccb2eda](https://github.com/scratchfoundation/scratch-blocks/commit/ccb2edaa2048a3746635f5ef7b325e78094647a7))
831
-
832
- ## [1.1.88](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.87...v1.1.88) (2024-04-14)
833
-
834
-
835
- ### Bug Fixes
836
-
837
- * **deps:** lock file maintenance ([09e252f](https://github.com/scratchfoundation/scratch-blocks/commit/09e252f9e11c6e6d84f1c0fc73d64af85ccbbb36))
110
+ ### Features
838
111
 
839
- ## [1.1.87](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.86...v1.1.87) (2024-04-13)
112
+ * add a block inflater that supports recycling ([#207](https://github.com/scratchfoundation/scratch-blocks/issues/207)) ([0701679](https://github.com/scratchfoundation/scratch-blocks/commit/07016799832530cf851c14be484158e58bdaa9dd))
113
+ * add bubbles/icons for block flyout checkboxes ([#208](https://github.com/scratchfoundation/scratch-blocks/issues/208)) ([39b2162](https://github.com/scratchfoundation/scratch-blocks/commit/39b2162db62973860c904f0b78f1d7f27abebc99))
114
+ * add custom Scratch variable model and creation event classes ([#86](https://github.com/scratchfoundation/scratch-blocks/issues/86)) ([2598ede](https://github.com/scratchfoundation/scratch-blocks/commit/2598ede046de74164922bd919695eae65bd0c9b2))
115
+ * clean up and export Scratch's variables.js ([#88](https://github.com/scratchfoundation/scratch-blocks/issues/88)) ([5c1acfe](https://github.com/scratchfoundation/scratch-blocks/commit/5c1acfe3dc1bb0bf406ba20ffd1e25b22356fbd7))
116
+ * readd support for the custom Data toolbox category ([#87](https://github.com/scratchfoundation/scratch-blocks/issues/87)) ([dcfbf39](https://github.com/scratchfoundation/scratch-blocks/commit/dcfbf391cfcf2dbdf04c84b7e5c4d1463c18ed1d))
117
+ * reenable Scratch's FieldVariable subclass ([#91](https://github.com/scratchfoundation/scratch-blocks/issues/91)) ([7c891e3](https://github.com/scratchfoundation/scratch-blocks/commit/7c891e35207b6f561917f27739917cb84755d57c))
840
118
 
841
119
 
842
- ### Bug Fixes
120
+ ### Reverts
843
121
 
844
- * **deps:** lock file maintenance ([4f41a8a](https://github.com/scratchfoundation/scratch-blocks/commit/4f41a8a4e91a66ee9bda1fb52cb19fe6c52e0c35))
122
+ * Revert "fix: add zoom controls config (#126)" (#128) ([8e1dc14](https://github.com/scratchfoundation/scratch-blocks/commit/8e1dc14483d6e012734a30b666af7aa5427c58f9)), closes [#126](https://github.com/scratchfoundation/scratch-blocks/issues/126) [#128](https://github.com/scratchfoundation/scratch-blocks/issues/128)
845
123
 
846
124
  ## [1.1.86](https://github.com/scratchfoundation/scratch-blocks/compare/v1.1.85...v1.1.86) (2024-04-12)
847
125