blockly 12.3.1 → 12.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1636) hide show
  1. package/.prettierignore +30 -0
  2. package/.prettierrc.js +15 -0
  3. package/api-extractor.json +390 -0
  4. package/appengine/.gcloudignore +20 -0
  5. package/appengine/README.txt +42 -0
  6. package/appengine/add_timestamps.py +69 -0
  7. package/appengine/app.yaml +106 -0
  8. package/appengine/apple-touch-icon.png +0 -0
  9. package/appengine/blockly_compressed.js +11 -0
  10. package/appengine/expiration.py +52 -0
  11. package/appengine/favicon.ico +0 -0
  12. package/appengine/index.yaml +11 -0
  13. package/appengine/main.py +39 -0
  14. package/appengine/redirect.html +107 -0
  15. package/appengine/requirements.txt +1 -0
  16. package/appengine/robots.txt +2 -0
  17. package/appengine/storage.js +190 -0
  18. package/appengine/storage.py +125 -0
  19. package/blocks/blocks.ts +44 -0
  20. package/blocks/lists.ts +1065 -0
  21. package/blocks/logic.ts +712 -0
  22. package/blocks/loops.ts +408 -0
  23. package/blocks/math.ts +591 -0
  24. package/blocks/procedures.ts +1366 -0
  25. package/blocks/text.ts +1001 -0
  26. package/blocks/variables.ts +181 -0
  27. package/blocks/variables_dynamic.ts +192 -0
  28. package/core/any_aliases.ts +8 -0
  29. package/core/block.ts +2511 -0
  30. package/core/block_animations.ts +233 -0
  31. package/core/block_flyout_inflater.ts +283 -0
  32. package/core/block_svg.ts +1873 -0
  33. package/core/blockly.ts +644 -0
  34. package/core/blockly_options.ts +71 -0
  35. package/core/blocks.ts +18 -0
  36. package/core/browser_events.ts +256 -0
  37. package/core/bubbles/bubble.ts +732 -0
  38. package/core/bubbles/mini_workspace_bubble.ts +292 -0
  39. package/core/bubbles/text_bubble.ts +112 -0
  40. package/core/bubbles/textinput_bubble.ts +296 -0
  41. package/core/bubbles.ts +12 -0
  42. package/core/bump_objects.ts +188 -0
  43. package/core/button_flyout_inflater.ts +76 -0
  44. package/core/clipboard/block_paster.ts +154 -0
  45. package/core/clipboard/registry.ts +31 -0
  46. package/core/clipboard/workspace_comment_paster.ts +95 -0
  47. package/core/clipboard.ts +197 -0
  48. package/core/comments/collapse_comment_bar_button.ts +102 -0
  49. package/core/comments/comment_bar_button.ts +105 -0
  50. package/core/comments/comment_editor.ts +220 -0
  51. package/core/comments/comment_view.ts +773 -0
  52. package/core/comments/delete_comment_bar_button.ts +106 -0
  53. package/core/comments/rendered_workspace_comment.ts +361 -0
  54. package/core/comments/workspace_comment.ts +247 -0
  55. package/core/comments.ts +13 -0
  56. package/core/common.ts +347 -0
  57. package/core/component_manager.ts +247 -0
  58. package/core/config.ts +65 -0
  59. package/core/connection.ts +807 -0
  60. package/core/connection_checker.ts +348 -0
  61. package/core/connection_db.ts +297 -0
  62. package/core/connection_type.ts +21 -0
  63. package/core/constants.ts +23 -0
  64. package/core/contextmenu.ts +295 -0
  65. package/core/contextmenu_items.ts +684 -0
  66. package/core/contextmenu_registry.ts +278 -0
  67. package/core/css.ts +518 -0
  68. package/core/delete_area.ts +77 -0
  69. package/core/dialog.ts +167 -0
  70. package/core/drag_target.ts +97 -0
  71. package/core/dragging/block_drag_strategy.ts +523 -0
  72. package/core/dragging/bubble_drag_strategy.ts +49 -0
  73. package/core/dragging/comment_drag_strategy.ts +92 -0
  74. package/core/dragging/dragger.ts +174 -0
  75. package/core/dragging.ts +12 -0
  76. package/core/dropdowndiv.ts +792 -0
  77. package/core/events/events.ts +109 -0
  78. package/core/events/events_abstract.ts +129 -0
  79. package/core/events/events_block_base.ts +87 -0
  80. package/core/events/events_block_change.ts +259 -0
  81. package/core/events/events_block_create.ts +185 -0
  82. package/core/events/events_block_delete.ts +182 -0
  83. package/core/events/events_block_drag.ts +116 -0
  84. package/core/events/events_block_field_intermediate_change.ts +166 -0
  85. package/core/events/events_block_move.ts +306 -0
  86. package/core/events/events_bubble_open.ts +121 -0
  87. package/core/events/events_click.ts +110 -0
  88. package/core/events/events_comment_base.ts +126 -0
  89. package/core/events/events_comment_change.ts +156 -0
  90. package/core/events/events_comment_collapse.ts +103 -0
  91. package/core/events/events_comment_create.ts +114 -0
  92. package/core/events/events_comment_delete.ts +113 -0
  93. package/core/events/events_comment_drag.ts +99 -0
  94. package/core/events/events_comment_move.ts +206 -0
  95. package/core/events/events_comment_resize.ts +169 -0
  96. package/core/events/events_selected.ts +97 -0
  97. package/core/events/events_theme_change.ts +84 -0
  98. package/core/events/events_toolbox_item_select.ts +96 -0
  99. package/core/events/events_trashcan_open.ts +87 -0
  100. package/core/events/events_ui_base.ts +47 -0
  101. package/core/events/events_var_base.ts +88 -0
  102. package/core/events/events_var_create.ts +131 -0
  103. package/core/events/events_var_delete.ts +124 -0
  104. package/core/events/events_var_rename.ts +133 -0
  105. package/core/events/events_var_type_change.ts +122 -0
  106. package/core/events/events_viewport.ts +149 -0
  107. package/core/events/predicates.ts +166 -0
  108. package/core/events/type.ts +87 -0
  109. package/core/events/utils.ts +455 -0
  110. package/core/events/workspace_events.ts +46 -0
  111. package/core/extensions.ts +497 -0
  112. package/core/field.ts +1445 -0
  113. package/core/field_checkbox.ts +266 -0
  114. package/core/field_dropdown.ts +907 -0
  115. package/core/field_image.ts +307 -0
  116. package/core/field_input.ts +826 -0
  117. package/core/field_label.ts +150 -0
  118. package/core/field_label_serializable.ts +73 -0
  119. package/core/field_number.ts +381 -0
  120. package/core/field_registry.ts +115 -0
  121. package/core/field_textinput.ts +125 -0
  122. package/core/field_variable.ts +654 -0
  123. package/core/flyout_base.ts +1013 -0
  124. package/core/flyout_button.ts +447 -0
  125. package/core/flyout_horizontal.ts +375 -0
  126. package/core/flyout_item.ts +33 -0
  127. package/core/flyout_metrics_manager.ts +90 -0
  128. package/core/flyout_navigator.ts +24 -0
  129. package/core/flyout_separator.ts +94 -0
  130. package/core/flyout_vertical.ts +354 -0
  131. package/core/focus_manager.ts +675 -0
  132. package/core/generator.ts +611 -0
  133. package/core/gesture.ts +1190 -0
  134. package/core/grid.ts +267 -0
  135. package/core/icons/comment_icon.ts +429 -0
  136. package/core/icons/exceptions.ts +23 -0
  137. package/core/icons/icon.ts +204 -0
  138. package/core/icons/icon_types.ts +32 -0
  139. package/core/icons/mutator_icon.ts +360 -0
  140. package/core/icons/registry.ts +33 -0
  141. package/core/icons/warning_icon.ts +226 -0
  142. package/core/icons.ts +24 -0
  143. package/core/inject.ts +332 -0
  144. package/core/inputs/align.ts +14 -0
  145. package/core/inputs/dummy_input.ts +26 -0
  146. package/core/inputs/end_row_input.ts +31 -0
  147. package/core/inputs/input.ts +317 -0
  148. package/core/inputs/input_types.ts +27 -0
  149. package/core/inputs/statement_input.ts +34 -0
  150. package/core/inputs/value_input.ts +30 -0
  151. package/core/inputs.ts +23 -0
  152. package/core/insertion_marker_previewer.ts +268 -0
  153. package/core/interfaces/i_autohideable.ts +27 -0
  154. package/core/interfaces/i_bounded_element.ts +31 -0
  155. package/core/interfaces/i_bubble.ts +64 -0
  156. package/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
  157. package/core/interfaces/i_comment_icon.ts +47 -0
  158. package/core/interfaces/i_component.ts +19 -0
  159. package/core/interfaces/i_connection_checker.ts +101 -0
  160. package/core/interfaces/i_connection_previewer.ts +50 -0
  161. package/core/interfaces/i_contextmenu.ts +21 -0
  162. package/core/interfaces/i_copyable.ts +39 -0
  163. package/core/interfaces/i_deletable.ts +35 -0
  164. package/core/interfaces/i_delete_area.ts +28 -0
  165. package/core/interfaces/i_drag_target.ts +67 -0
  166. package/core/interfaces/i_draggable.ts +73 -0
  167. package/core/interfaces/i_dragger.ts +35 -0
  168. package/core/interfaces/i_flyout.ts +190 -0
  169. package/core/interfaces/i_flyout_inflater.ts +51 -0
  170. package/core/interfaces/i_focusable_node.ts +120 -0
  171. package/core/interfaces/i_focusable_tree.ts +144 -0
  172. package/core/interfaces/i_has_bubble.ts +37 -0
  173. package/core/interfaces/i_icon.ts +116 -0
  174. package/core/interfaces/i_keyboard_accessible.ts +22 -0
  175. package/core/interfaces/i_legacy_procedure_blocks.ts +51 -0
  176. package/core/interfaces/i_metrics_manager.ts +150 -0
  177. package/core/interfaces/i_movable.ts +19 -0
  178. package/core/interfaces/i_navigation_policy.ts +69 -0
  179. package/core/interfaces/i_observable.ts +28 -0
  180. package/core/interfaces/i_parameter_model.ts +51 -0
  181. package/core/interfaces/i_paster.ts +25 -0
  182. package/core/interfaces/i_positionable.ts +33 -0
  183. package/core/interfaces/i_procedure_block.ts +29 -0
  184. package/core/interfaces/i_procedure_map.ts +18 -0
  185. package/core/interfaces/i_procedure_model.ts +71 -0
  186. package/core/interfaces/i_registrable.ts +12 -0
  187. package/core/interfaces/i_rendered_element.ts +19 -0
  188. package/core/interfaces/i_selectable.ts +41 -0
  189. package/core/interfaces/i_selectable_toolbox_item.ts +63 -0
  190. package/core/interfaces/i_serializable.ts +32 -0
  191. package/core/interfaces/i_serializer.ts +51 -0
  192. package/core/interfaces/i_styleable.ts +26 -0
  193. package/core/interfaces/i_toolbox.ts +121 -0
  194. package/core/interfaces/i_toolbox_item.ts +83 -0
  195. package/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
  196. package/core/interfaces/i_variable_map.ts +65 -0
  197. package/core/interfaces/i_variable_model.ts +57 -0
  198. package/core/internal_constants.ts +47 -0
  199. package/core/keyboard_nav/block_comment_navigation_policy.ts +76 -0
  200. package/core/keyboard_nav/block_navigation_policy.ts +213 -0
  201. package/core/keyboard_nav/comment_bar_button_navigation_policy.ts +88 -0
  202. package/core/keyboard_nav/comment_editor_navigation_policy.ts +54 -0
  203. package/core/keyboard_nav/connection_navigation_policy.ts +155 -0
  204. package/core/keyboard_nav/field_navigation_policy.ts +85 -0
  205. package/core/keyboard_nav/flyout_button_navigation_policy.ts +76 -0
  206. package/core/keyboard_nav/flyout_navigation_policy.ts +111 -0
  207. package/core/keyboard_nav/flyout_separator_navigation_policy.ts +53 -0
  208. package/core/keyboard_nav/icon_navigation_policy.ts +93 -0
  209. package/core/keyboard_nav/line_cursor.ts +414 -0
  210. package/core/keyboard_nav/marker.ts +86 -0
  211. package/core/keyboard_nav/workspace_comment_navigation_policy.ts +77 -0
  212. package/core/keyboard_nav/workspace_navigation_policy.ts +77 -0
  213. package/core/keyboard_navigation_controller.ts +63 -0
  214. package/core/label_flyout_inflater.ts +75 -0
  215. package/core/layer_manager.ts +229 -0
  216. package/core/layers.ts +17 -0
  217. package/core/main.ts +31 -0
  218. package/core/marker_manager.ts +116 -0
  219. package/core/menu.ts +486 -0
  220. package/core/menu_separator.ts +38 -0
  221. package/core/menuitem.ts +289 -0
  222. package/core/metrics_manager.ts +486 -0
  223. package/core/msg.ts +27 -0
  224. package/core/names.ts +275 -0
  225. package/core/navigator.ts +123 -0
  226. package/core/observable_procedure_map.ts +66 -0
  227. package/core/options.ts +377 -0
  228. package/core/positionable_helpers.ts +186 -0
  229. package/core/procedures.ts +622 -0
  230. package/core/registry.ts +400 -0
  231. package/core/render_management.ts +193 -0
  232. package/core/rendered_connection.ts +690 -0
  233. package/core/renderers/common/block_rendering.ts +122 -0
  234. package/core/renderers/common/constants.ts +1226 -0
  235. package/core/renderers/common/drawer.ts +511 -0
  236. package/core/renderers/common/i_path_object.ts +109 -0
  237. package/core/renderers/common/info.ts +768 -0
  238. package/core/renderers/common/path_object.ts +260 -0
  239. package/core/renderers/common/renderer.ts +236 -0
  240. package/core/renderers/geras/constants.ts +42 -0
  241. package/core/renderers/geras/drawer.ts +166 -0
  242. package/core/renderers/geras/geras.ts +31 -0
  243. package/core/renderers/geras/highlight_constants.ts +342 -0
  244. package/core/renderers/geras/highlighter.ts +312 -0
  245. package/core/renderers/geras/info.ts +476 -0
  246. package/core/renderers/geras/measurables/inline_input.ts +36 -0
  247. package/core/renderers/geras/measurables/statement_input.ts +35 -0
  248. package/core/renderers/geras/path_object.ts +121 -0
  249. package/core/renderers/geras/renderer.ts +127 -0
  250. package/core/renderers/measurables/base.ts +40 -0
  251. package/core/renderers/measurables/bottom_row.ts +103 -0
  252. package/core/renderers/measurables/connection.ts +41 -0
  253. package/core/renderers/measurables/external_value_input.ts +51 -0
  254. package/core/renderers/measurables/field.ts +48 -0
  255. package/core/renderers/measurables/hat.ts +32 -0
  256. package/core/renderers/measurables/icon.ts +40 -0
  257. package/core/renderers/measurables/in_row_spacer.ts +36 -0
  258. package/core/renderers/measurables/inline_input.ts +61 -0
  259. package/core/renderers/measurables/input_connection.ts +56 -0
  260. package/core/renderers/measurables/input_row.ts +62 -0
  261. package/core/renderers/measurables/jagged_edge.ts +35 -0
  262. package/core/renderers/measurables/next_connection.ts +41 -0
  263. package/core/renderers/measurables/output_connection.ts +42 -0
  264. package/core/renderers/measurables/previous_connection.ts +41 -0
  265. package/core/renderers/measurables/round_corner.ts +41 -0
  266. package/core/renderers/measurables/row.ts +190 -0
  267. package/core/renderers/measurables/spacer_row.ts +43 -0
  268. package/core/renderers/measurables/square_corner.ts +39 -0
  269. package/core/renderers/measurables/statement_input.ts +47 -0
  270. package/core/renderers/measurables/top_row.ts +108 -0
  271. package/core/renderers/measurables/types.ts +362 -0
  272. package/core/renderers/thrasos/info.ts +327 -0
  273. package/core/renderers/thrasos/renderer.ts +39 -0
  274. package/core/renderers/thrasos/thrasos.ts +14 -0
  275. package/core/renderers/zelos/constants.ts +913 -0
  276. package/core/renderers/zelos/drawer.ts +272 -0
  277. package/core/renderers/zelos/info.ts +651 -0
  278. package/core/renderers/zelos/measurables/bottom_row.ts +44 -0
  279. package/core/renderers/zelos/measurables/inputs.ts +40 -0
  280. package/core/renderers/zelos/measurables/row_elements.ts +29 -0
  281. package/core/renderers/zelos/measurables/top_row.ts +50 -0
  282. package/core/renderers/zelos/path_object.ts +209 -0
  283. package/core/renderers/zelos/renderer.ts +91 -0
  284. package/core/renderers/zelos/zelos.ts +31 -0
  285. package/core/scrollbar.ts +898 -0
  286. package/core/scrollbar_pair.ts +349 -0
  287. package/core/separator_flyout_inflater.ts +83 -0
  288. package/core/serialization/blocks.ts +834 -0
  289. package/core/serialization/exceptions.ts +112 -0
  290. package/core/serialization/priorities.ts +25 -0
  291. package/core/serialization/procedures.ts +158 -0
  292. package/core/serialization/registry.ts +30 -0
  293. package/core/serialization/variables.ts +69 -0
  294. package/core/serialization/workspace_comments.ts +143 -0
  295. package/core/serialization/workspaces.ts +94 -0
  296. package/core/serialization.ts +32 -0
  297. package/core/shortcut_items.ts +405 -0
  298. package/core/shortcut_registry.ts +451 -0
  299. package/core/sprites.ts +15 -0
  300. package/core/theme/classic.ts +40 -0
  301. package/core/theme/themes.ts +12 -0
  302. package/core/theme/zelos.ts +80 -0
  303. package/core/theme.ts +232 -0
  304. package/core/theme_manager.ts +192 -0
  305. package/core/toast.ts +219 -0
  306. package/core/toolbox/category.ts +746 -0
  307. package/core/toolbox/collapsible_category.ts +287 -0
  308. package/core/toolbox/separator.ts +108 -0
  309. package/core/toolbox/toolbox.ts +1210 -0
  310. package/core/toolbox/toolbox_item.ts +181 -0
  311. package/core/tooltip.ts +466 -0
  312. package/core/touch.ts +155 -0
  313. package/core/trashcan.ts +730 -0
  314. package/core/utils/aria.ts +158 -0
  315. package/core/utils/array.ts +24 -0
  316. package/core/utils/colour.ts +265 -0
  317. package/core/utils/coordinate.ts +129 -0
  318. package/core/utils/deprecation.ts +47 -0
  319. package/core/utils/dom.ts +356 -0
  320. package/core/utils/drag.ts +74 -0
  321. package/core/utils/focusable_tree_traverser.ts +126 -0
  322. package/core/utils/idgenerator.ts +70 -0
  323. package/core/utils/keycodes.ts +154 -0
  324. package/core/utils/math.ts +50 -0
  325. package/core/utils/metrics.ts +86 -0
  326. package/core/utils/object.ts +33 -0
  327. package/core/utils/parsing.ts +286 -0
  328. package/core/utils/rect.ts +142 -0
  329. package/core/utils/size.ts +62 -0
  330. package/core/utils/string.ts +289 -0
  331. package/core/utils/style.ts +219 -0
  332. package/core/utils/svg.ts +84 -0
  333. package/core/utils/svg_math.ts +207 -0
  334. package/core/utils/svg_paths.ts +133 -0
  335. package/core/utils/toolbox.ts +417 -0
  336. package/core/utils/useragent.ts +86 -0
  337. package/core/utils/xml.ts +165 -0
  338. package/core/utils.ts +59 -0
  339. package/core/variable_map.ts +476 -0
  340. package/core/variable_model.ts +150 -0
  341. package/core/variables.ts +931 -0
  342. package/core/variables_dynamic.ts +230 -0
  343. package/core/widgetdiv.ts +349 -0
  344. package/core/workspace.ts +994 -0
  345. package/core/workspace_audio.ts +137 -0
  346. package/core/workspace_dragger.ts +81 -0
  347. package/core/workspace_svg.ts +2954 -0
  348. package/core/xml.ts +1126 -0
  349. package/core/zoom_controls.ts +495 -0
  350. package/demos/blockfactory/analytics.js +195 -0
  351. package/demos/blockfactory/app_controller.js +726 -0
  352. package/demos/blockfactory/block_definition_extractor.js +742 -0
  353. package/demos/blockfactory/block_exporter_controller.js +311 -0
  354. package/demos/blockfactory/block_exporter_tools.js +212 -0
  355. package/demos/blockfactory/block_exporter_view.js +101 -0
  356. package/demos/blockfactory/block_library_controller.js +325 -0
  357. package/demos/blockfactory/block_library_storage.js +149 -0
  358. package/demos/blockfactory/block_library_view.js +178 -0
  359. package/demos/blockfactory/block_option.js +151 -0
  360. package/demos/blockfactory/blocks.js +920 -0
  361. package/demos/blockfactory/cp.css +46 -0
  362. package/demos/blockfactory/cp.js +179 -0
  363. package/demos/blockfactory/factory.css +586 -0
  364. package/demos/blockfactory/factory.js +338 -0
  365. package/demos/blockfactory/factory_utils.js +1036 -0
  366. package/demos/blockfactory/icon.png +0 -0
  367. package/demos/blockfactory/index.html +767 -0
  368. package/demos/blockfactory/link.png +0 -0
  369. package/demos/blockfactory/standard_categories.js +384 -0
  370. package/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
  371. package/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
  372. package/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
  373. package/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
  374. package/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
  375. package/demos/code/code.js +626 -0
  376. package/demos/code/icon.png +0 -0
  377. package/demos/code/icons.png +0 -0
  378. package/demos/code/index.html +359 -0
  379. package/demos/code/msg/ar.js +24 -0
  380. package/demos/code/msg/be-tarask.js +24 -0
  381. package/demos/code/msg/br.js +24 -0
  382. package/demos/code/msg/ca.js +24 -0
  383. package/demos/code/msg/cs.js +24 -0
  384. package/demos/code/msg/da.js +24 -0
  385. package/demos/code/msg/de.js +24 -0
  386. package/demos/code/msg/el.js +24 -0
  387. package/demos/code/msg/en.js +24 -0
  388. package/demos/code/msg/es.js +24 -0
  389. package/demos/code/msg/et.js +24 -0
  390. package/demos/code/msg/fa.js +24 -0
  391. package/demos/code/msg/fr.js +24 -0
  392. package/demos/code/msg/he.js +24 -0
  393. package/demos/code/msg/hr.js +24 -0
  394. package/demos/code/msg/hrx.js +24 -0
  395. package/demos/code/msg/hu.js +24 -0
  396. package/demos/code/msg/ia.js +24 -0
  397. package/demos/code/msg/is.js +24 -0
  398. package/demos/code/msg/it.js +24 -0
  399. package/demos/code/msg/ja.js +24 -0
  400. package/demos/code/msg/kab.js +24 -0
  401. package/demos/code/msg/ko.js +24 -0
  402. package/demos/code/msg/mk.js +24 -0
  403. package/demos/code/msg/ms.js +24 -0
  404. package/demos/code/msg/nb.js +24 -0
  405. package/demos/code/msg/nl.js +24 -0
  406. package/demos/code/msg/oc.js +24 -0
  407. package/demos/code/msg/pl.js +24 -0
  408. package/demos/code/msg/pms.js +24 -0
  409. package/demos/code/msg/pt-br.js +24 -0
  410. package/demos/code/msg/ro.js +24 -0
  411. package/demos/code/msg/ru.js +24 -0
  412. package/demos/code/msg/sc.js +24 -0
  413. package/demos/code/msg/sk.js +24 -0
  414. package/demos/code/msg/sr.js +24 -0
  415. package/demos/code/msg/sv.js +24 -0
  416. package/demos/code/msg/ta.js +24 -0
  417. package/demos/code/msg/th.js +24 -0
  418. package/demos/code/msg/tlh.js +24 -0
  419. package/demos/code/msg/tr.js +24 -0
  420. package/demos/code/msg/uk.js +24 -0
  421. package/demos/code/msg/vi.js +24 -0
  422. package/demos/code/msg/zh-hans.js +24 -0
  423. package/demos/code/msg/zh-hant.js +24 -0
  424. package/demos/code/style.css +184 -0
  425. package/demos/index.html +68 -0
  426. package/demos/storage/icon.png +0 -0
  427. package/demos/storage/index.html +104 -0
  428. package/eslint.config.mjs +314 -0
  429. package/generators/dart/dart_generator.ts +321 -0
  430. package/generators/dart/lists.ts +525 -0
  431. package/generators/dart/logic.ts +157 -0
  432. package/generators/dart/loops.ts +217 -0
  433. package/generators/dart/math.ts +559 -0
  434. package/generators/dart/procedures.ts +138 -0
  435. package/generators/dart/text.ts +405 -0
  436. package/generators/dart/variables.ts +32 -0
  437. package/generators/dart/variables_dynamic.ts +17 -0
  438. package/generators/dart.ts +50 -0
  439. package/generators/javascript/javascript_generator.ts +346 -0
  440. package/generators/javascript/lists.ts +465 -0
  441. package/generators/javascript/logic.ts +155 -0
  442. package/generators/javascript/loops.ts +245 -0
  443. package/generators/javascript/math.ts +450 -0
  444. package/generators/javascript/procedures.ts +142 -0
  445. package/generators/javascript/text.ts +418 -0
  446. package/generators/javascript/variables.ts +32 -0
  447. package/generators/javascript/variables_dynamic.ts +17 -0
  448. package/generators/javascript.ts +46 -0
  449. package/generators/lua/lists.ts +445 -0
  450. package/generators/lua/logic.ts +144 -0
  451. package/generators/lua/loops.ts +192 -0
  452. package/generators/lua/lua_generator.ts +225 -0
  453. package/generators/lua/math.ts +473 -0
  454. package/generators/lua/procedures.ts +144 -0
  455. package/generators/lua/text.ts +380 -0
  456. package/generators/lua/variables.ts +31 -0
  457. package/generators/lua/variables_dynamic.ts +17 -0
  458. package/generators/lua.ts +44 -0
  459. package/generators/php/lists.ts +585 -0
  460. package/generators/php/logic.ts +157 -0
  461. package/generators/php/loops.ts +218 -0
  462. package/generators/php/math.ts +408 -0
  463. package/generators/php/php_generator.ts +320 -0
  464. package/generators/php/procedures.ts +159 -0
  465. package/generators/php/text.ts +315 -0
  466. package/generators/php/variables.ts +32 -0
  467. package/generators/php/variables_dynamic.ts +17 -0
  468. package/generators/php.ts +46 -0
  469. package/generators/python/lists.ts +398 -0
  470. package/generators/python/logic.ts +152 -0
  471. package/generators/python/loops.ts +251 -0
  472. package/generators/python/math.ts +434 -0
  473. package/generators/python/procedures.ts +159 -0
  474. package/generators/python/python_generator.ts +355 -0
  475. package/generators/python/text.ts +338 -0
  476. package/generators/python/variables.ts +31 -0
  477. package/generators/python/variables_dynamic.ts +17 -0
  478. package/generators/python.ts +51 -0
  479. package/gulpfile.mjs +100 -0
  480. package/jsconfig.json +7 -0
  481. package/msg/json/README.md +33 -0
  482. package/msg/json/ab.json +222 -0
  483. package/msg/json/ace.json +7 -0
  484. package/msg/json/af.json +34 -0
  485. package/msg/json/am.json +30 -0
  486. package/msg/json/ar.json +355 -0
  487. package/msg/json/ast.json +10 -0
  488. package/msg/json/az.json +334 -0
  489. package/msg/json/ba.json +211 -0
  490. package/msg/json/bcc.json +290 -0
  491. package/msg/json/be-tarask.json +335 -0
  492. package/msg/json/be.json +326 -0
  493. package/msg/json/bg.json +347 -0
  494. package/msg/json/bn.json +189 -0
  495. package/msg/json/br.json +334 -0
  496. package/msg/json/bs.json +166 -0
  497. package/msg/json/ca.json +341 -0
  498. package/msg/json/cdo.json +6 -0
  499. package/msg/json/ce.json +328 -0
  500. package/msg/json/constants.json +12 -0
  501. package/msg/json/cs.json +344 -0
  502. package/msg/json/da.json +346 -0
  503. package/msg/json/de.json +369 -0
  504. package/msg/json/diq.json +264 -0
  505. package/msg/json/dtp.json +198 -0
  506. package/msg/json/dty.json +97 -0
  507. package/msg/json/ee.json +160 -0
  508. package/msg/json/el.json +356 -0
  509. package/msg/json/en-gb.json +199 -0
  510. package/msg/json/en.json +423 -0
  511. package/msg/json/eo.json +337 -0
  512. package/msg/json/es.json +361 -0
  513. package/msg/json/et.json +335 -0
  514. package/msg/json/eu.json +219 -0
  515. package/msg/json/fa.json +342 -0
  516. package/msg/json/fi.json +350 -0
  517. package/msg/json/fo.json +46 -0
  518. package/msg/json/fr.json +374 -0
  519. package/msg/json/frr.json +6 -0
  520. package/msg/json/gl.json +338 -0
  521. package/msg/json/gn.json +54 -0
  522. package/msg/json/gor.json +87 -0
  523. package/msg/json/ha.json +313 -0
  524. package/msg/json/hak.json +17 -0
  525. package/msg/json/he.json +355 -0
  526. package/msg/json/hi.json +318 -0
  527. package/msg/json/hr.json +337 -0
  528. package/msg/json/hrx.json +287 -0
  529. package/msg/json/hsb.json +128 -0
  530. package/msg/json/hu.json +349 -0
  531. package/msg/json/hy.json +337 -0
  532. package/msg/json/ia.json +337 -0
  533. package/msg/json/id.json +338 -0
  534. package/msg/json/ig.json +323 -0
  535. package/msg/json/inh.json +80 -0
  536. package/msg/json/is.json +331 -0
  537. package/msg/json/it.json +346 -0
  538. package/msg/json/ja.json +362 -0
  539. package/msg/json/ka.json +14 -0
  540. package/msg/json/kab.json +323 -0
  541. package/msg/json/kbd-cyrl.json +84 -0
  542. package/msg/json/km.json +29 -0
  543. package/msg/json/kn.json +333 -0
  544. package/msg/json/ko.json +377 -0
  545. package/msg/json/ksh.json +43 -0
  546. package/msg/json/ku-latn.json +41 -0
  547. package/msg/json/ky.json +71 -0
  548. package/msg/json/la.json +6 -0
  549. package/msg/json/lb.json +156 -0
  550. package/msg/json/lki.json +282 -0
  551. package/msg/json/lo.json +92 -0
  552. package/msg/json/lrc.json +123 -0
  553. package/msg/json/lt.json +321 -0
  554. package/msg/json/lv.json +324 -0
  555. package/msg/json/mg.json +58 -0
  556. package/msg/json/mk.json +178 -0
  557. package/msg/json/ml.json +35 -0
  558. package/msg/json/mnw.json +90 -0
  559. package/msg/json/ms.json +300 -0
  560. package/msg/json/my.json +57 -0
  561. package/msg/json/mzn.json +6 -0
  562. package/msg/json/nb.json +331 -0
  563. package/msg/json/ne.json +247 -0
  564. package/msg/json/nl.json +358 -0
  565. package/msg/json/oc.json +194 -0
  566. package/msg/json/olo.json +37 -0
  567. package/msg/json/pa.json +75 -0
  568. package/msg/json/pl.json +358 -0
  569. package/msg/json/pms.json +325 -0
  570. package/msg/json/ps.json +50 -0
  571. package/msg/json/pt-br.json +371 -0
  572. package/msg/json/pt.json +360 -0
  573. package/msg/json/qqq.json +430 -0
  574. package/msg/json/ro.json +333 -0
  575. package/msg/json/ru.json +363 -0
  576. package/msg/json/sc.json +283 -0
  577. package/msg/json/sco.json +11 -0
  578. package/msg/json/sd.json +158 -0
  579. package/msg/json/shn.json +109 -0
  580. package/msg/json/si.json +16 -0
  581. package/msg/json/sk.json +339 -0
  582. package/msg/json/skr-arab.json +117 -0
  583. package/msg/json/sl.json +355 -0
  584. package/msg/json/smn.json +133 -0
  585. package/msg/json/sq.json +343 -0
  586. package/msg/json/sr-latn.json +324 -0
  587. package/msg/json/sr.json +349 -0
  588. package/msg/json/sv.json +350 -0
  589. package/msg/json/sw.json +12 -0
  590. package/msg/json/synonyms.json +22 -0
  591. package/msg/json/ta.json +306 -0
  592. package/msg/json/tcy.json +316 -0
  593. package/msg/json/tdd.json +110 -0
  594. package/msg/json/te.json +101 -0
  595. package/msg/json/th.json +333 -0
  596. package/msg/json/ti.json +50 -0
  597. package/msg/json/tl.json +149 -0
  598. package/msg/json/tlh.json +179 -0
  599. package/msg/json/tr.json +370 -0
  600. package/msg/json/ug-arab.json +180 -0
  601. package/msg/json/uk.json +346 -0
  602. package/msg/json/ur.json +118 -0
  603. package/msg/json/uz.json +36 -0
  604. package/msg/json/vi.json +345 -0
  605. package/msg/json/xmf.json +99 -0
  606. package/msg/json/yo.json +316 -0
  607. package/msg/json/zgh.json +83 -0
  608. package/msg/json/zh-hans.json +374 -0
  609. package/msg/json/zh-hant.json +362 -0
  610. package/msg/messages.js +1695 -0
  611. package/package.json +36 -5
  612. package/scripts/gulpfiles/appengine_tasks.mjs +189 -0
  613. package/scripts/gulpfiles/build_tasks.mjs +753 -0
  614. package/scripts/gulpfiles/config.mjs +40 -0
  615. package/scripts/gulpfiles/docs_tasks.mjs +146 -0
  616. package/scripts/gulpfiles/git_tasks.mjs +167 -0
  617. package/scripts/gulpfiles/helper_tasks.mjs +25 -0
  618. package/scripts/gulpfiles/package_tasks.mjs +257 -0
  619. package/scripts/gulpfiles/release_tasks.mjs +174 -0
  620. package/scripts/gulpfiles/test_tasks.mjs +409 -0
  621. package/scripts/helpers.js +74 -0
  622. package/scripts/i18n/common.py +233 -0
  623. package/scripts/i18n/create_messages.py +167 -0
  624. package/scripts/i18n/dedup_json.py +72 -0
  625. package/scripts/i18n/js_to_json.py +135 -0
  626. package/scripts/i18n/tests.py +46 -0
  627. package/scripts/migration/renamings.json5 +1599 -0
  628. package/scripts/package/index.js +23 -0
  629. package/scripts/package/templates/umd-msg.template +16 -0
  630. package/scripts/package/templates/umd.template +13 -0
  631. package/scripts/themes/blockStyles_example.json +11 -0
  632. package/scripts/themes/create_blockStyles.py +184 -0
  633. package/scripts/tsick.js +86 -0
  634. package/tests/browser/.mocharc.js +7 -0
  635. package/tests/browser/test/basic_block_factory_test.mjs +44 -0
  636. package/tests/browser/test/basic_block_test.mjs +38 -0
  637. package/tests/browser/test/basic_playground_test.mjs +461 -0
  638. package/tests/browser/test/block_undo_test.mjs +50 -0
  639. package/tests/browser/test/clipboard_test.mjs +611 -0
  640. package/tests/browser/test/delete_blocks_test.mjs +217 -0
  641. package/tests/browser/test/extensive_test.mjs +191 -0
  642. package/tests/browser/test/field_edits_test.mjs +61 -0
  643. package/tests/browser/test/hooks.mjs +23 -0
  644. package/tests/browser/test/mutator_test.mjs +87 -0
  645. package/tests/browser/test/procedure_test.mjs +109 -0
  646. package/tests/browser/test/test_setup.mjs +623 -0
  647. package/tests/browser/test/toolbox_drag_test.mjs +219 -0
  648. package/tests/browser/test/workspace_comment_test.mjs +220 -0
  649. package/tests/compile/index.html +43 -0
  650. package/tests/compile/main.js +53 -0
  651. package/tests/compile/test_blocks.js +47 -0
  652. package/tests/compile/webdriver.js +81 -0
  653. package/tests/generators/functions.xml +561 -0
  654. package/tests/generators/golden/generated.dart +1604 -0
  655. package/tests/generators/golden/generated.js +1552 -0
  656. package/tests/generators/golden/generated.lua +1828 -0
  657. package/tests/generators/golden/generated.php +1611 -0
  658. package/tests/generators/golden/generated.py +1407 -0
  659. package/tests/generators/index.html +408 -0
  660. package/tests/generators/lists.xml +8675 -0
  661. package/tests/generators/logic.xml +1019 -0
  662. package/tests/generators/loops1.xml +345 -0
  663. package/tests/generators/loops2.xml +891 -0
  664. package/tests/generators/loops3.xml +735 -0
  665. package/tests/generators/math.xml +2077 -0
  666. package/tests/generators/text.xml +4651 -0
  667. package/tests/generators/unittest.js +103 -0
  668. package/tests/generators/unittest_dart.js +163 -0
  669. package/tests/generators/unittest_javascript.js +167 -0
  670. package/tests/generators/unittest_lua.js +165 -0
  671. package/tests/generators/unittest_php.js +154 -0
  672. package/tests/generators/unittest_python.js +138 -0
  673. package/tests/generators/variables.xml +68 -0
  674. package/tests/generators/webdriver.js +123 -0
  675. package/tests/media/200px.png +0 -0
  676. package/tests/media/30px.png +0 -0
  677. package/tests/media/50px.png +0 -0
  678. package/tests/media/a.png +0 -0
  679. package/tests/media/arrow.png +0 -0
  680. package/tests/media/b.png +0 -0
  681. package/tests/media/c.png +0 -0
  682. package/tests/media/d.png +0 -0
  683. package/tests/media/e.png +0 -0
  684. package/tests/media/f.png +0 -0
  685. package/tests/media/g.png +0 -0
  686. package/tests/media/h.png +0 -0
  687. package/tests/media/i.png +0 -0
  688. package/tests/media/j.png +0 -0
  689. package/tests/media/k.png +0 -0
  690. package/tests/media/l.png +0 -0
  691. package/tests/media/m.png +0 -0
  692. package/tests/migration/renamings.schema.json +59 -0
  693. package/tests/migration/validate-renamings.mjs +63 -0
  694. package/tests/mocha/.mocharc.js +6 -0
  695. package/tests/mocha/block_json_test.js +777 -0
  696. package/tests/mocha/block_test.js +2949 -0
  697. package/tests/mocha/blocks/lists_test.js +238 -0
  698. package/tests/mocha/blocks/logic_ternary_test.js +320 -0
  699. package/tests/mocha/blocks/loops_test.js +56 -0
  700. package/tests/mocha/blocks/procedures_test.js +2509 -0
  701. package/tests/mocha/blocks/variables_test.js +345 -0
  702. package/tests/mocha/clipboard_test.js +263 -0
  703. package/tests/mocha/comment_deserialization_test.js +122 -0
  704. package/tests/mocha/comment_test.js +215 -0
  705. package/tests/mocha/comment_view_test.js +188 -0
  706. package/tests/mocha/connection_checker_test.js +694 -0
  707. package/tests/mocha/connection_db_test.js +363 -0
  708. package/tests/mocha/connection_test.js +3738 -0
  709. package/tests/mocha/contextmenu_items_test.js +653 -0
  710. package/tests/mocha/contextmenu_test.js +73 -0
  711. package/tests/mocha/cursor_test.js +922 -0
  712. package/tests/mocha/dialog_test.js +168 -0
  713. package/tests/mocha/dropdowndiv_test.js +458 -0
  714. package/tests/mocha/event_block_change_test.js +126 -0
  715. package/tests/mocha/event_block_create_test.js +109 -0
  716. package/tests/mocha/event_block_delete_test.js +55 -0
  717. package/tests/mocha/event_block_drag_test.js +36 -0
  718. package/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
  719. package/tests/mocha/event_block_move_test.js +39 -0
  720. package/tests/mocha/event_bubble_open_test.js +42 -0
  721. package/tests/mocha/event_click_test.js +40 -0
  722. package/tests/mocha/event_comment_change_test.js +39 -0
  723. package/tests/mocha/event_comment_collapse_test.js +34 -0
  724. package/tests/mocha/event_comment_create_test.js +38 -0
  725. package/tests/mocha/event_comment_delete_test.js +38 -0
  726. package/tests/mocha/event_comment_drag_test.js +35 -0
  727. package/tests/mocha/event_comment_move_test.js +40 -0
  728. package/tests/mocha/event_comment_resize_test.js +38 -0
  729. package/tests/mocha/event_selected_test.js +41 -0
  730. package/tests/mocha/event_test.js +1668 -0
  731. package/tests/mocha/event_theme_change_test.js +36 -0
  732. package/tests/mocha/event_toolbox_item_select_test.js +64 -0
  733. package/tests/mocha/event_trashcan_open_test.js +36 -0
  734. package/tests/mocha/event_var_create_test.js +54 -0
  735. package/tests/mocha/event_var_delete_test.js +54 -0
  736. package/tests/mocha/event_var_rename_test.js +39 -0
  737. package/tests/mocha/event_var_type_change_test.js +43 -0
  738. package/tests/mocha/event_viewport_test.js +39 -0
  739. package/tests/mocha/extensions_test.js +613 -0
  740. package/tests/mocha/field_checkbox_test.js +299 -0
  741. package/tests/mocha/field_colour_test.js +395 -0
  742. package/tests/mocha/field_dropdown_test.js +328 -0
  743. package/tests/mocha/field_image_test.js +351 -0
  744. package/tests/mocha/field_label_serializable_test.js +252 -0
  745. package/tests/mocha/field_label_test.js +226 -0
  746. package/tests/mocha/field_number_test.js +505 -0
  747. package/tests/mocha/field_registry_test.js +115 -0
  748. package/tests/mocha/field_test.js +821 -0
  749. package/tests/mocha/field_textinput_test.js +593 -0
  750. package/tests/mocha/field_variable_test.js +644 -0
  751. package/tests/mocha/flyout_test.js +650 -0
  752. package/tests/mocha/focus_manager_test.js +5979 -0
  753. package/tests/mocha/focusable_tree_traverser_test.js +602 -0
  754. package/tests/mocha/generator_test.js +233 -0
  755. package/tests/mocha/gesture_test.js +133 -0
  756. package/tests/mocha/icon_test.js +431 -0
  757. package/tests/mocha/index.html +354 -0
  758. package/tests/mocha/input_test.js +296 -0
  759. package/tests/mocha/insertion_marker_test.js +432 -0
  760. package/tests/mocha/jso_deserialization_test.js +848 -0
  761. package/tests/mocha/jso_serialization_test.js +1068 -0
  762. package/tests/mocha/json_test.js +303 -0
  763. package/tests/mocha/keyboard_navigation_controller_test.js +37 -0
  764. package/tests/mocha/layering_test.js +104 -0
  765. package/tests/mocha/menu_item_test.js +176 -0
  766. package/tests/mocha/metrics_test.js +671 -0
  767. package/tests/mocha/mutator_test.js +87 -0
  768. package/tests/mocha/names_test.js +97 -0
  769. package/tests/mocha/navigation_test.js +876 -0
  770. package/tests/mocha/old_workspace_comment_test.js +256 -0
  771. package/tests/mocha/procedure_map_test.js +52 -0
  772. package/tests/mocha/rect_test.js +1668 -0
  773. package/tests/mocha/registry_test.js +281 -0
  774. package/tests/mocha/render_management_test.js +127 -0
  775. package/tests/mocha/serializer_test.js +2100 -0
  776. package/tests/mocha/shortcut_items_test.js +563 -0
  777. package/tests/mocha/shortcut_registry_test.js +533 -0
  778. package/tests/mocha/test_helpers/block_definitions.js +204 -0
  779. package/tests/mocha/test_helpers/code_generation.js +114 -0
  780. package/tests/mocha/test_helpers/common.js +106 -0
  781. package/tests/mocha/test_helpers/events.js +290 -0
  782. package/tests/mocha/test_helpers/fields.js +310 -0
  783. package/tests/mocha/test_helpers/icon_mocks.js +130 -0
  784. package/tests/mocha/test_helpers/procedures.js +304 -0
  785. package/tests/mocha/test_helpers/serialization.js +124 -0
  786. package/tests/mocha/test_helpers/setup_teardown.js +232 -0
  787. package/tests/mocha/test_helpers/toolbox_definitions.js +269 -0
  788. package/tests/mocha/test_helpers/user_input.js +62 -0
  789. package/tests/mocha/test_helpers/variables.js +27 -0
  790. package/tests/mocha/test_helpers/warnings.js +83 -0
  791. package/tests/mocha/test_helpers/workspace.js +1659 -0
  792. package/tests/mocha/theme_test.js +307 -0
  793. package/tests/mocha/toast_test.js +129 -0
  794. package/tests/mocha/toolbox_test.js +821 -0
  795. package/tests/mocha/tooltip_test.js +276 -0
  796. package/tests/mocha/touch_test.js +109 -0
  797. package/tests/mocha/trashcan_test.js +376 -0
  798. package/tests/mocha/utils_test.js +557 -0
  799. package/tests/mocha/variable_map_test.js +470 -0
  800. package/tests/mocha/variable_model_test.js +85 -0
  801. package/tests/mocha/webdriver.js +110 -0
  802. package/tests/mocha/widget_div_test.js +427 -0
  803. package/tests/mocha/workspace_comment_test.js +197 -0
  804. package/tests/mocha/workspace_svg_test.js +922 -0
  805. package/tests/mocha/workspace_test.js +24 -0
  806. package/tests/mocha/xml_test.js +893 -0
  807. package/tests/mocha/zoom_controls_test.js +81 -0
  808. package/tests/multi_playground.html +482 -0
  809. package/tests/node/.mocharc.js +6 -0
  810. package/tests/node/run_node_test.mjs +191 -0
  811. package/tests/playground.html +1280 -0
  812. package/tests/playgrounds/advanced_playground.html +188 -0
  813. package/tests/playgrounds/iframe.html +40 -0
  814. package/tests/playgrounds/screenshot.js +123 -0
  815. package/tests/scripts/check_metadata.sh +170 -0
  816. package/tests/scripts/load.mjs +140 -0
  817. package/tests/scripts/setup_linux_env.sh +7 -0
  818. package/tests/scripts/update_metadata.sh +46 -0
  819. package/tests/themes/test_themes.js +62 -0
  820. package/tests/typescript/README.md +4 -0
  821. package/tests/typescript/src/field/different_user_input.ts +81 -0
  822. package/tests/typescript/src/generators/dart.ts +24 -0
  823. package/tests/typescript/src/generators/javascript.ts +28 -0
  824. package/tests/typescript/src/generators/lua.ts +24 -0
  825. package/tests/typescript/src/generators/php.ts +24 -0
  826. package/tests/typescript/src/generators/python.ts +24 -0
  827. package/tests/typescript/src/generators.ts +33 -0
  828. package/tests/typescript/src/msg.ts +20 -0
  829. package/tests/typescript/tsconfig.json +20 -0
  830. package/tests/xml/README.txt +11 -0
  831. package/tests/xml/blockly.xsd +178 -0
  832. package/tests/xml/invalid.xml +6 -0
  833. package/tests/xml/toolbox.xml +311 -0
  834. package/tests/xml/workspace.xml +114 -0
  835. package/tsconfig.json +37 -0
  836. package/tsdoc.json +25 -0
  837. package/typings/README.md +5 -0
  838. package/typings/templates/blockly-header.template +11 -0
  839. package/typings/templates/blockly-interfaces.template +83 -0
  840. package/typings/templates/msg.template +15 -0
  841. package/typings/tsconfig.json +23 -0
  842. package/blockly.min.js +0 -2740
  843. package/blockly.mjs +0 -163
  844. package/blockly_compressed.js +0 -1815
  845. package/blockly_compressed.js.map +0 -1
  846. package/blocks.js +0 -4
  847. package/blocks.mjs +0 -12
  848. package/blocks_compressed.js +0 -193
  849. package/blocks_compressed.js.map +0 -1
  850. package/core/any_aliases.d.ts +0 -7
  851. package/core/block.d.ts +0 -1006
  852. package/core/block_animations.d.ts +0 -34
  853. package/core/block_flyout_inflater.d.ts +0 -94
  854. package/core/block_svg.d.ts +0 -733
  855. package/core/blockly.d.ts +0 -286
  856. package/core/blockly_options.d.ts +0 -70
  857. package/core/blocks.d.ts +0 -17
  858. package/core/browser_events.d.ts +0 -82
  859. package/core/bubbles/bubble.d.ts +0 -228
  860. package/core/bubbles/mini_workspace_bubble.d.ts +0 -84
  861. package/core/bubbles/text_bubble.d.ts +0 -38
  862. package/core/bubbles/textinput_bubble.d.ts +0 -102
  863. package/core/bubbles.d.ts +0 -11
  864. package/core/bump_objects.d.ts +0 -37
  865. package/core/button_flyout_inflater.d.ts +0 -42
  866. package/core/clipboard/block_paster.d.ts +0 -34
  867. package/core/clipboard/registry.d.ts +0 -21
  868. package/core/clipboard/workspace_comment_paster.d.ts +0 -19
  869. package/core/clipboard.d.ts +0 -103
  870. package/core/comments/collapse_comment_bar_button.d.ts +0 -52
  871. package/core/comments/comment_bar_button.d.ts +0 -62
  872. package/core/comments/comment_editor.d.ts +0 -62
  873. package/core/comments/comment_view.d.ts +0 -213
  874. package/core/comments/delete_comment_bar_button.d.ts +0 -52
  875. package/core/comments/rendered_workspace_comment.d.ts +0 -121
  876. package/core/comments/workspace_comment.d.ts +0 -107
  877. package/core/comments.d.ts +0 -13
  878. package/core/common.d.ts +0 -163
  879. package/core/component_manager.d.ts +0 -112
  880. package/core/config.d.ts +0 -24
  881. package/core/connection.d.ts +0 -291
  882. package/core/connection_checker.d.ts +0 -85
  883. package/core/connection_db.d.ts +0 -100
  884. package/core/connection_type.d.ts +0 -15
  885. package/core/constants.d.ts +0 -19
  886. package/core/contextmenu.d.ts +0 -53
  887. package/core/contextmenu_items.d.ts +0 -73
  888. package/core/contextmenu_registry.d.ts +0 -173
  889. package/core/css.d.ts +0 -25
  890. package/core/delete_area.d.ts +0 -48
  891. package/core/dialog.d.ts +0 -82
  892. package/core/drag_target.d.ts +0 -75
  893. package/core/dragging/block_drag_strategy.d.ts +0 -121
  894. package/core/dragging/bubble_drag_strategy.d.ts +0 -20
  895. package/core/dragging/comment_drag_strategy.d.ts +0 -26
  896. package/core/dragging/dragger.d.ts +0 -49
  897. package/core/dragging.d.ts +0 -11
  898. package/core/dropdowndiv.d.ts +0 -208
  899. package/core/events/events.d.ts +0 -72
  900. package/core/events/events_abstract.d.ts +0 -72
  901. package/core/events/events_block_base.d.ts +0 -46
  902. package/core/events/events_block_change.d.ts +0 -100
  903. package/core/events/events_block_create.d.ts +0 -59
  904. package/core/events/events_block_delete.d.ts +0 -62
  905. package/core/events/events_block_drag.d.ts +0 -61
  906. package/core/events/events_block_field_intermediate_change.d.ts +0 -71
  907. package/core/events/events_block_move.d.ts +0 -115
  908. package/core/events/events_bubble_open.d.ts +0 -62
  909. package/core/events/events_click.d.ts +0 -64
  910. package/core/events/events_comment_base.d.ts +0 -55
  911. package/core/events/events_comment_change.d.ts +0 -64
  912. package/core/events/events_comment_collapse.d.ts +0 -40
  913. package/core/events/events_comment_create.d.ts +0 -57
  914. package/core/events/events_comment_delete.d.ts +0 -57
  915. package/core/events/events_comment_drag.d.ts +0 -51
  916. package/core/events/events_comment_move.d.ts +0 -93
  917. package/core/events/events_comment_resize.d.ts +0 -68
  918. package/core/events/events_selected.d.ts +0 -53
  919. package/core/events/events_theme_change.d.ts +0 -43
  920. package/core/events/events_toolbox_item_select.d.ts +0 -49
  921. package/core/events/events_trashcan_open.d.ts +0 -47
  922. package/core/events/events_ui_base.d.ts +0 -32
  923. package/core/events/events_var_base.d.ts +0 -46
  924. package/core/events/events_var_create.d.ts +0 -55
  925. package/core/events/events_var_delete.d.ts +0 -50
  926. package/core/events/events_var_rename.d.ts +0 -51
  927. package/core/events/events_var_type_change.d.ts +0 -55
  928. package/core/events/events_viewport.d.ts +0 -67
  929. package/core/events/predicates.d.ts +0 -87
  930. package/core/events/type.d.ts +0 -81
  931. package/core/events/utils.d.ts +0 -211
  932. package/core/events/workspace_events.d.ts +0 -23
  933. package/core/extensions.d.ts +0 -99
  934. package/core/field.d.ts +0 -724
  935. package/core/field_checkbox.d.ts +0 -156
  936. package/core/field_dropdown.d.ts +0 -295
  937. package/core/field_image.d.ts +0 -148
  938. package/core/field_input.d.ts +0 -293
  939. package/core/field_label.d.ts +0 -80
  940. package/core/field_label_serializable.d.ts +0 -50
  941. package/core/field_number.d.ts +0 -194
  942. package/core/field_registry.d.ts +0 -83
  943. package/core/field_textinput.d.ts +0 -78
  944. package/core/field_variable.d.ts +0 -261
  945. package/core/flyout_base.d.ts +0 -455
  946. package/core/flyout_button.d.ts +0 -139
  947. package/core/flyout_horizontal.d.ts +0 -87
  948. package/core/flyout_item.d.ts +0 -26
  949. package/core/flyout_metrics_manager.d.ts +0 -46
  950. package/core/flyout_navigator.d.ts +0 -11
  951. package/core/flyout_separator.d.ts +0 -64
  952. package/core/flyout_vertical.d.ts +0 -88
  953. package/core/focus_manager.d.ts +0 -266
  954. package/core/generator.d.ts +0 -279
  955. package/core/gesture.d.ts +0 -454
  956. package/core/grid.d.ts +0 -124
  957. package/core/icons/comment_icon.d.ts +0 -134
  958. package/core/icons/exceptions.d.ts +0 -17
  959. package/core/icons/icon.d.ts +0 -82
  960. package/core/icons/icon_types.d.ts +0 -25
  961. package/core/icons/mutator_icon.d.ts +0 -96
  962. package/core/icons/registry.d.ts +0 -23
  963. package/core/icons/warning_icon.d.ts +0 -77
  964. package/core/icons.d.ts +0 -14
  965. package/core/inject.d.ts +0 -16
  966. package/core/inputs/align.d.ts +0 -14
  967. package/core/inputs/dummy_input.d.ts +0 -20
  968. package/core/inputs/end_row_input.d.ts +0 -25
  969. package/core/inputs/input.d.ts +0 -147
  970. package/core/inputs/input_types.d.ts +0 -16
  971. package/core/inputs/statement_input.d.ts +0 -22
  972. package/core/inputs/value_input.d.ts +0 -20
  973. package/core/inputs.d.ts +0 -14
  974. package/core/insertion_marker_previewer.d.ts +0 -67
  975. package/core/interfaces/i_autohideable.d.ts +0 -21
  976. package/core/interfaces/i_bounded_element.d.ts +0 -27
  977. package/core/interfaces/i_bubble.d.ts +0 -55
  978. package/core/interfaces/i_collapsible_toolbox_item.d.ts +0 -28
  979. package/core/interfaces/i_comment_icon.d.ts +0 -24
  980. package/core/interfaces/i_component.d.ts +0 -17
  981. package/core/interfaces/i_connection_checker.d.ts +0 -75
  982. package/core/interfaces/i_connection_previewer.d.ts +0 -39
  983. package/core/interfaces/i_contextmenu.d.ts +0 -14
  984. package/core/interfaces/i_copyable.d.ts +0 -30
  985. package/core/interfaces/i_deletable.d.ts +0 -23
  986. package/core/interfaces/i_delete_area.d.ts +0 -25
  987. package/core/interfaces/i_drag_target.d.ts +0 -59
  988. package/core/interfaces/i_draggable.d.ts +0 -56
  989. package/core/interfaces/i_dragger.d.ts +0 -32
  990. package/core/interfaces/i_flyout.d.ts +0 -159
  991. package/core/interfaces/i_flyout_inflater.d.ts +0 -48
  992. package/core/interfaces/i_focusable_node.d.ts +0 -105
  993. package/core/interfaces/i_focusable_tree.d.ts +0 -125
  994. package/core/interfaces/i_has_bubble.d.ts +0 -27
  995. package/core/interfaces/i_icon.d.ts +0 -84
  996. package/core/interfaces/i_keyboard_accessible.d.ts +0 -19
  997. package/core/interfaces/i_legacy_procedure_blocks.d.ts +0 -34
  998. package/core/interfaces/i_metrics_manager.d.ts +0 -129
  999. package/core/interfaces/i_movable.d.ts +0 -17
  1000. package/core/interfaces/i_navigation_policy.d.ts +0 -63
  1001. package/core/interfaces/i_observable.d.ts +0 -21
  1002. package/core/interfaces/i_parameter_model.d.ts +0 -44
  1003. package/core/interfaces/i_paster.d.ts +0 -15
  1004. package/core/interfaces/i_positionable.d.ts +0 -29
  1005. package/core/interfaces/i_procedure_block.d.ts +0 -16
  1006. package/core/interfaces/i_procedure_map.d.ts +0 -16
  1007. package/core/interfaces/i_procedure_model.d.ts +0 -59
  1008. package/core/interfaces/i_registrable.d.ts +0 -11
  1009. package/core/interfaces/i_rendered_element.d.ts +0 -16
  1010. package/core/interfaces/i_selectable.d.ts +0 -26
  1011. package/core/interfaces/i_selectable_toolbox_item.d.ts +0 -51
  1012. package/core/interfaces/i_serializable.d.ts +0 -24
  1013. package/core/interfaces/i_serializer.d.ts +0 -45
  1014. package/core/interfaces/i_styleable.d.ts +0 -23
  1015. package/core/interfaces/i_toolbox.d.ts +0 -102
  1016. package/core/interfaces/i_toolbox_item.d.ts +0 -71
  1017. package/core/interfaces/i_variable_backed_parameter_model.d.ts +0 -17
  1018. package/core/interfaces/i_variable_map.d.ts +0 -48
  1019. package/core/interfaces/i_variable_model.d.ts +0 -36
  1020. package/core/internal_constants.d.ts +0 -34
  1021. package/core/keyboard_nav/block_comment_navigation_policy.d.ts +0 -56
  1022. package/core/keyboard_nav/block_navigation_policy.d.ts +0 -84
  1023. package/core/keyboard_nav/comment_bar_button_navigation_policy.d.ts +0 -56
  1024. package/core/keyboard_nav/comment_editor_navigation_policy.d.ts +0 -34
  1025. package/core/keyboard_nav/connection_navigation_policy.d.ts +0 -67
  1026. package/core/keyboard_nav/field_navigation_policy.d.ts +0 -56
  1027. package/core/keyboard_nav/flyout_button_navigation_policy.d.ts +0 -56
  1028. package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
  1029. package/core/keyboard_nav/flyout_separator_navigation_policy.d.ts +0 -33
  1030. package/core/keyboard_nav/icon_navigation_policy.d.ts +0 -56
  1031. package/core/keyboard_nav/line_cursor.d.ts +0 -187
  1032. package/core/keyboard_nav/marker.d.ts +0 -53
  1033. package/core/keyboard_nav/workspace_comment_navigation_policy.d.ts +0 -56
  1034. package/core/keyboard_nav/workspace_navigation_policy.d.ts +0 -56
  1035. package/core/keyboard_navigation_controller.d.ts +0 -48
  1036. package/core/label_flyout_inflater.d.ts +0 -42
  1037. package/core/layer_manager.d.ts +0 -86
  1038. package/core/layers.d.ts +0 -16
  1039. package/core/main.d.ts +0 -7
  1040. package/core/marker_manager.d.ts +0 -72
  1041. package/core/menu.d.ts +0 -170
  1042. package/core/menu_separator.d.ts +0 -25
  1043. package/core/menuitem.d.ts +0 -139
  1044. package/core/metrics_manager.d.ts +0 -221
  1045. package/core/msg.d.ts +0 -24
  1046. package/core/names.d.ts +0 -139
  1047. package/core/navigator.d.ts +0 -65
  1048. package/core/observable_procedure_map.d.ts +0 -34
  1049. package/core/options.d.ts +0 -148
  1050. package/core/positionable_helpers.d.ts +0 -89
  1051. package/core/procedures.d.ts +0 -108
  1052. package/core/registry.d.ts +0 -158
  1053. package/core/render_management.d.ts +0 -34
  1054. package/core/rendered_connection.d.ts +0 -263
  1055. package/core/renderers/common/block_rendering.d.ts +0 -63
  1056. package/core/renderers/common/constants.d.ts +0 -454
  1057. package/core/renderers/common/drawer.d.ts +0 -156
  1058. package/core/renderers/common/i_path_object.d.ts +0 -88
  1059. package/core/renderers/common/info.d.ts +0 -201
  1060. package/core/renderers/common/path_object.d.ts +0 -130
  1061. package/core/renderers/common/renderer.d.ts +0 -141
  1062. package/core/renderers/geras/constants.d.ts +0 -22
  1063. package/core/renderers/geras/drawer.d.ts +0 -44
  1064. package/core/renderers/geras/geras.d.ts +0 -17
  1065. package/core/renderers/geras/highlight_constants.d.ts +0 -100
  1066. package/core/renderers/geras/highlighter.d.ts +0 -96
  1067. package/core/renderers/geras/info.d.ts +0 -45
  1068. package/core/renderers/geras/measurables/inline_input.d.ts +0 -22
  1069. package/core/renderers/geras/measurables/statement_input.d.ts +0 -22
  1070. package/core/renderers/geras/path_object.d.ts +0 -42
  1071. package/core/renderers/geras/renderer.d.ts +0 -77
  1072. package/core/renderers/measurables/base.d.ts +0 -26
  1073. package/core/renderers/measurables/bottom_row.d.ts +0 -58
  1074. package/core/renderers/measurables/connection.d.ts +0 -25
  1075. package/core/renderers/measurables/external_value_input.d.ts +0 -25
  1076. package/core/renderers/measurables/field.d.ts +0 -28
  1077. package/core/renderers/measurables/hat.d.ts +0 -19
  1078. package/core/renderers/measurables/icon.d.ts +0 -25
  1079. package/core/renderers/measurables/in_row_spacer.d.ts +0 -20
  1080. package/core/renderers/measurables/inline_input.d.ts +0 -22
  1081. package/core/renderers/measurables/input_connection.d.ts +0 -28
  1082. package/core/renderers/measurables/input_row.d.ts +0 -26
  1083. package/core/renderers/measurables/jagged_edge.d.ts +0 -19
  1084. package/core/renderers/measurables/next_connection.d.ts +0 -22
  1085. package/core/renderers/measurables/output_connection.d.ts +0 -24
  1086. package/core/renderers/measurables/previous_connection.d.ts +0 -22
  1087. package/core/renderers/measurables/round_corner.d.ts +0 -20
  1088. package/core/renderers/measurables/row.d.ts +0 -124
  1089. package/core/renderers/measurables/spacer_row.d.ts +0 -27
  1090. package/core/renderers/measurables/square_corner.d.ts +0 -20
  1091. package/core/renderers/measurables/statement_input.d.ts +0 -21
  1092. package/core/renderers/measurables/top_row.d.ts +0 -53
  1093. package/core/renderers/measurables/types.d.ts +0 -258
  1094. package/core/renderers/thrasos/info.d.ts +0 -37
  1095. package/core/renderers/thrasos/renderer.d.ts +0 -28
  1096. package/core/renderers/thrasos/thrasos.d.ts +0 -10
  1097. package/core/renderers/zelos/constants.d.ts +0 -165
  1098. package/core/renderers/zelos/drawer.d.ts +0 -51
  1099. package/core/renderers/zelos/info.d.ts +0 -89
  1100. package/core/renderers/zelos/measurables/bottom_row.d.ts +0 -26
  1101. package/core/renderers/zelos/measurables/inputs.d.ts +0 -21
  1102. package/core/renderers/zelos/measurables/row_elements.d.ts +0 -20
  1103. package/core/renderers/zelos/measurables/top_row.d.ts +0 -28
  1104. package/core/renderers/zelos/path_object.d.ts +0 -76
  1105. package/core/renderers/zelos/renderer.d.ts +0 -64
  1106. package/core/renderers/zelos/zelos.d.ts +0 -17
  1107. package/core/scrollbar.d.ts +0 -348
  1108. package/core/scrollbar_pair.d.ts +0 -121
  1109. package/core/separator_flyout_inflater.d.ts +0 -57
  1110. package/core/serialization/blocks.d.ts +0 -138
  1111. package/core/serialization/exceptions.d.ts +0 -81
  1112. package/core/serialization/priorities.d.ts +0 -20
  1113. package/core/serialization/procedures.d.ts +0 -97
  1114. package/core/serialization/registry.d.ts +0 -21
  1115. package/core/serialization/variables.d.ts +0 -38
  1116. package/core/serialization/workspace_comments.d.ts +0 -45
  1117. package/core/serialization/workspaces.d.ts +0 -29
  1118. package/core/serialization.d.ts +0 -19
  1119. package/core/shortcut_items.d.ts +0 -54
  1120. package/core/shortcut_registry.d.ts +0 -236
  1121. package/core/sprites.d.ts +0 -15
  1122. package/core/theme/classic.d.ts +0 -12
  1123. package/core/theme/themes.d.ts +0 -9
  1124. package/core/theme/zelos.d.ts +0 -11
  1125. package/core/theme.d.ts +0 -151
  1126. package/core/theme_manager.d.ts +0 -92
  1127. package/core/toast.d.ts +0 -74
  1128. package/core/toolbox/category.d.ts +0 -265
  1129. package/core/toolbox/collapsible_category.d.ts +0 -99
  1130. package/core/toolbox/separator.d.ts +0 -40
  1131. package/core/toolbox/toolbox.d.ts +0 -417
  1132. package/core/toolbox/toolbox_item.d.ts +0 -109
  1133. package/core/tooltip.d.ts +0 -118
  1134. package/core/touch.d.ts +0 -72
  1135. package/core/trashcan.d.ts +0 -212
  1136. package/core/utils/aria.d.ts +0 -69
  1137. package/core/utils/array.d.ts +0 -15
  1138. package/core/utils/colour.d.ts +0 -102
  1139. package/core/utils/coordinate.d.ts +0 -87
  1140. package/core/utils/deprecation.d.ts +0 -18
  1141. package/core/utils/dom.d.ts +0 -154
  1142. package/core/utils/drag.d.ts +0 -33
  1143. package/core/utils/focusable_tree_traverser.d.ts +0 -53
  1144. package/core/utils/idgenerator.d.ts +0 -33
  1145. package/core/utils/keycodes.d.ts +0 -136
  1146. package/core/utils/math.d.ts +0 -31
  1147. package/core/utils/metrics.d.ts +0 -64
  1148. package/core/utils/object.d.ts +0 -17
  1149. package/core/utils/parsing.d.ts +0 -52
  1150. package/core/utils/rect.d.ts +0 -82
  1151. package/core/utils/size.d.ts +0 -44
  1152. package/core/utils/string.d.ts +0 -46
  1153. package/core/utils/style.d.ts +0 -89
  1154. package/core/utils/svg.d.ts +0 -75
  1155. package/core/utils/svg_math.d.ts +0 -64
  1156. package/core/utils/svg_paths.d.ts +0 -103
  1157. package/core/utils/toolbox.d.ts +0 -180
  1158. package/core/utils/useragent.d.ts +0 -14
  1159. package/core/utils/xml.d.ts +0 -96
  1160. package/core/utils.d.ts +0 -31
  1161. package/core/variable_map.d.ts +0 -164
  1162. package/core/variable_model.d.ts +0 -73
  1163. package/core/variables.d.ts +0 -238
  1164. package/core/variables_dynamic.d.ts +0 -56
  1165. package/core/widgetdiv.d.ts +0 -87
  1166. package/core/workspace.d.ts +0 -482
  1167. package/core/workspace_audio.d.ts +0 -61
  1168. package/core/workspace_dragger.d.ts +0 -54
  1169. package/core/workspace_svg.d.ts +0 -1103
  1170. package/core/xml.d.ts +0 -127
  1171. package/core/zoom_controls.d.ts +0 -134
  1172. package/core.js +0 -4
  1173. package/dart.js +0 -4
  1174. package/dart.mjs +0 -6
  1175. package/dart_compressed.js +0 -330
  1176. package/dart_compressed.js.map +0 -1
  1177. package/generators/dart/dart_generator.d.ts +0 -104
  1178. package/generators/dart/lists.d.ts +0 -21
  1179. package/generators/dart/logic.d.ts +0 -20
  1180. package/generators/dart/loops.d.ts +0 -14
  1181. package/generators/dart/math.d.ts +0 -26
  1182. package/generators/dart/procedures.d.ts +0 -14
  1183. package/generators/dart/text.d.ts +0 -25
  1184. package/generators/dart/variables.d.ts +0 -14
  1185. package/generators/dart/variables_dynamic.d.ts +0 -10
  1186. package/generators/dart.d.ts +0 -18
  1187. package/generators/javascript/javascript_generator.d.ts +0 -123
  1188. package/generators/javascript/lists.d.ts +0 -21
  1189. package/generators/javascript/logic.d.ts +0 -20
  1190. package/generators/javascript/loops.d.ts +0 -14
  1191. package/generators/javascript/math.d.ts +0 -26
  1192. package/generators/javascript/procedures.d.ts +0 -14
  1193. package/generators/javascript/text.d.ts +0 -25
  1194. package/generators/javascript/variables.d.ts +0 -14
  1195. package/generators/javascript/variables_dynamic.d.ts +0 -10
  1196. package/generators/javascript.d.ts +0 -18
  1197. package/generators/lua/lists.d.ts +0 -21
  1198. package/generators/lua/logic.d.ts +0 -20
  1199. package/generators/lua/loops.d.ts +0 -14
  1200. package/generators/lua/lua_generator.d.ts +0 -91
  1201. package/generators/lua/math.d.ts +0 -26
  1202. package/generators/lua/procedures.d.ts +0 -14
  1203. package/generators/lua/text.d.ts +0 -25
  1204. package/generators/lua/variables.d.ts +0 -14
  1205. package/generators/lua/variables_dynamic.d.ts +0 -10
  1206. package/generators/lua.d.ts +0 -12
  1207. package/generators/php/lists.d.ts +0 -21
  1208. package/generators/php/logic.d.ts +0 -20
  1209. package/generators/php/loops.d.ts +0 -14
  1210. package/generators/php/math.d.ts +0 -26
  1211. package/generators/php/php_generator.d.ts +0 -122
  1212. package/generators/php/procedures.d.ts +0 -14
  1213. package/generators/php/text.d.ts +0 -25
  1214. package/generators/php/variables.d.ts +0 -14
  1215. package/generators/php/variables_dynamic.d.ts +0 -10
  1216. package/generators/php.d.ts +0 -13
  1217. package/generators/python/lists.d.ts +0 -21
  1218. package/generators/python/logic.d.ts +0 -20
  1219. package/generators/python/loops.d.ts +0 -14
  1220. package/generators/python/math.d.ts +0 -26
  1221. package/generators/python/procedures.d.ts +0 -14
  1222. package/generators/python/python_generator.d.ts +0 -111
  1223. package/generators/python/text.d.ts +0 -25
  1224. package/generators/python/variables.d.ts +0 -14
  1225. package/generators/python/variables_dynamic.d.ts +0 -10
  1226. package/generators/python.d.ts +0 -13
  1227. package/index.js +0 -36
  1228. package/index.mjs +0 -163
  1229. package/javascript.js +0 -4
  1230. package/javascript.mjs +0 -6
  1231. package/javascript_compressed.js +0 -264
  1232. package/javascript_compressed.js.map +0 -1
  1233. package/lua.js +0 -4
  1234. package/lua.mjs +0 -6
  1235. package/lua_compressed.js +0 -373
  1236. package/lua_compressed.js.map +0 -1
  1237. package/media/click.ogg +0 -0
  1238. package/media/click.wav +0 -0
  1239. package/media/delete.ogg +0 -0
  1240. package/media/delete.wav +0 -0
  1241. package/media/disconnect.ogg +0 -0
  1242. package/media/disconnect.wav +0 -0
  1243. package/msg/ab.js +0 -465
  1244. package/msg/ab.mjs +0 -446
  1245. package/msg/ace.js +0 -465
  1246. package/msg/ace.mjs +0 -446
  1247. package/msg/af.js +0 -465
  1248. package/msg/af.mjs +0 -446
  1249. package/msg/am.js +0 -465
  1250. package/msg/am.mjs +0 -446
  1251. package/msg/ar.js +0 -465
  1252. package/msg/ar.mjs +0 -446
  1253. package/msg/ast.js +0 -465
  1254. package/msg/ast.mjs +0 -446
  1255. package/msg/az.js +0 -465
  1256. package/msg/az.mjs +0 -446
  1257. package/msg/ba.js +0 -465
  1258. package/msg/ba.mjs +0 -446
  1259. package/msg/bcc.js +0 -465
  1260. package/msg/bcc.mjs +0 -446
  1261. package/msg/be-tarask.js +0 -465
  1262. package/msg/be-tarask.mjs +0 -446
  1263. package/msg/be.js +0 -465
  1264. package/msg/be.mjs +0 -446
  1265. package/msg/bg.js +0 -465
  1266. package/msg/bg.mjs +0 -446
  1267. package/msg/bn.js +0 -465
  1268. package/msg/bn.mjs +0 -446
  1269. package/msg/br.js +0 -465
  1270. package/msg/br.mjs +0 -446
  1271. package/msg/bs.js +0 -465
  1272. package/msg/bs.mjs +0 -446
  1273. package/msg/ca.js +0 -465
  1274. package/msg/ca.mjs +0 -446
  1275. package/msg/cdo.js +0 -465
  1276. package/msg/cdo.mjs +0 -446
  1277. package/msg/ce.js +0 -465
  1278. package/msg/ce.mjs +0 -446
  1279. package/msg/cs.js +0 -465
  1280. package/msg/cs.mjs +0 -446
  1281. package/msg/da.js +0 -465
  1282. package/msg/da.mjs +0 -446
  1283. package/msg/de.js +0 -465
  1284. package/msg/de.mjs +0 -446
  1285. package/msg/diq.js +0 -465
  1286. package/msg/diq.mjs +0 -446
  1287. package/msg/dtp.js +0 -465
  1288. package/msg/dtp.mjs +0 -446
  1289. package/msg/dty.js +0 -465
  1290. package/msg/dty.mjs +0 -446
  1291. package/msg/ee.js +0 -465
  1292. package/msg/ee.mjs +0 -446
  1293. package/msg/el.js +0 -465
  1294. package/msg/el.mjs +0 -446
  1295. package/msg/en-gb.js +0 -465
  1296. package/msg/en-gb.mjs +0 -446
  1297. package/msg/en.js +0 -465
  1298. package/msg/en.mjs +0 -446
  1299. package/msg/eo.js +0 -465
  1300. package/msg/eo.mjs +0 -446
  1301. package/msg/es.js +0 -465
  1302. package/msg/es.mjs +0 -446
  1303. package/msg/et.js +0 -465
  1304. package/msg/et.mjs +0 -446
  1305. package/msg/eu.js +0 -465
  1306. package/msg/eu.mjs +0 -446
  1307. package/msg/fa.js +0 -465
  1308. package/msg/fa.mjs +0 -446
  1309. package/msg/fi.js +0 -465
  1310. package/msg/fi.mjs +0 -446
  1311. package/msg/fo.js +0 -465
  1312. package/msg/fo.mjs +0 -446
  1313. package/msg/fr.js +0 -465
  1314. package/msg/fr.mjs +0 -446
  1315. package/msg/frr.js +0 -465
  1316. package/msg/frr.mjs +0 -446
  1317. package/msg/gl.js +0 -465
  1318. package/msg/gl.mjs +0 -446
  1319. package/msg/gn.js +0 -465
  1320. package/msg/gn.mjs +0 -446
  1321. package/msg/gor.js +0 -465
  1322. package/msg/gor.mjs +0 -446
  1323. package/msg/ha.js +0 -465
  1324. package/msg/ha.mjs +0 -446
  1325. package/msg/hak.js +0 -465
  1326. package/msg/hak.mjs +0 -446
  1327. package/msg/he.js +0 -465
  1328. package/msg/he.mjs +0 -446
  1329. package/msg/hi.js +0 -465
  1330. package/msg/hi.mjs +0 -446
  1331. package/msg/hr.js +0 -465
  1332. package/msg/hr.mjs +0 -446
  1333. package/msg/hrx.js +0 -465
  1334. package/msg/hrx.mjs +0 -446
  1335. package/msg/hsb.js +0 -465
  1336. package/msg/hsb.mjs +0 -446
  1337. package/msg/hu.js +0 -465
  1338. package/msg/hu.mjs +0 -446
  1339. package/msg/hy.js +0 -465
  1340. package/msg/hy.mjs +0 -446
  1341. package/msg/ia.js +0 -465
  1342. package/msg/ia.mjs +0 -446
  1343. package/msg/id.js +0 -465
  1344. package/msg/id.mjs +0 -446
  1345. package/msg/ig.js +0 -465
  1346. package/msg/ig.mjs +0 -446
  1347. package/msg/inh.js +0 -465
  1348. package/msg/inh.mjs +0 -446
  1349. package/msg/is.js +0 -465
  1350. package/msg/is.mjs +0 -446
  1351. package/msg/it.js +0 -465
  1352. package/msg/it.mjs +0 -446
  1353. package/msg/ja.js +0 -465
  1354. package/msg/ja.mjs +0 -446
  1355. package/msg/ka.js +0 -465
  1356. package/msg/ka.mjs +0 -446
  1357. package/msg/kab.js +0 -465
  1358. package/msg/kab.mjs +0 -446
  1359. package/msg/kbd-cyrl.js +0 -465
  1360. package/msg/kbd-cyrl.mjs +0 -446
  1361. package/msg/km.js +0 -465
  1362. package/msg/km.mjs +0 -446
  1363. package/msg/kn.js +0 -465
  1364. package/msg/kn.mjs +0 -446
  1365. package/msg/ko.js +0 -465
  1366. package/msg/ko.mjs +0 -446
  1367. package/msg/ksh.js +0 -465
  1368. package/msg/ksh.mjs +0 -446
  1369. package/msg/ku-latn.js +0 -465
  1370. package/msg/ku-latn.mjs +0 -446
  1371. package/msg/ky.js +0 -465
  1372. package/msg/ky.mjs +0 -446
  1373. package/msg/la.js +0 -465
  1374. package/msg/la.mjs +0 -446
  1375. package/msg/lb.js +0 -465
  1376. package/msg/lb.mjs +0 -446
  1377. package/msg/lki.js +0 -465
  1378. package/msg/lki.mjs +0 -446
  1379. package/msg/lo.js +0 -465
  1380. package/msg/lo.mjs +0 -446
  1381. package/msg/lrc.js +0 -465
  1382. package/msg/lrc.mjs +0 -446
  1383. package/msg/lt.js +0 -465
  1384. package/msg/lt.mjs +0 -446
  1385. package/msg/lv.js +0 -465
  1386. package/msg/lv.mjs +0 -446
  1387. package/msg/mg.js +0 -465
  1388. package/msg/mg.mjs +0 -446
  1389. package/msg/mk.js +0 -465
  1390. package/msg/mk.mjs +0 -446
  1391. package/msg/ml.js +0 -465
  1392. package/msg/ml.mjs +0 -446
  1393. package/msg/mnw.js +0 -465
  1394. package/msg/mnw.mjs +0 -446
  1395. package/msg/ms.js +0 -465
  1396. package/msg/ms.mjs +0 -446
  1397. package/msg/my.js +0 -465
  1398. package/msg/my.mjs +0 -446
  1399. package/msg/mzn.js +0 -465
  1400. package/msg/mzn.mjs +0 -446
  1401. package/msg/nb.js +0 -465
  1402. package/msg/nb.mjs +0 -446
  1403. package/msg/ne.js +0 -465
  1404. package/msg/ne.mjs +0 -446
  1405. package/msg/nl.js +0 -465
  1406. package/msg/nl.mjs +0 -446
  1407. package/msg/oc.js +0 -465
  1408. package/msg/oc.mjs +0 -446
  1409. package/msg/olo.js +0 -465
  1410. package/msg/olo.mjs +0 -446
  1411. package/msg/pa.js +0 -465
  1412. package/msg/pa.mjs +0 -446
  1413. package/msg/pl.js +0 -465
  1414. package/msg/pl.mjs +0 -446
  1415. package/msg/pms.js +0 -465
  1416. package/msg/pms.mjs +0 -446
  1417. package/msg/ps.js +0 -465
  1418. package/msg/ps.mjs +0 -446
  1419. package/msg/pt-br.js +0 -465
  1420. package/msg/pt-br.mjs +0 -446
  1421. package/msg/pt.js +0 -465
  1422. package/msg/pt.mjs +0 -446
  1423. package/msg/ro.js +0 -465
  1424. package/msg/ro.mjs +0 -446
  1425. package/msg/ru.js +0 -465
  1426. package/msg/ru.mjs +0 -446
  1427. package/msg/sc.js +0 -465
  1428. package/msg/sc.mjs +0 -446
  1429. package/msg/sco.js +0 -465
  1430. package/msg/sco.mjs +0 -446
  1431. package/msg/sd.js +0 -465
  1432. package/msg/sd.mjs +0 -446
  1433. package/msg/shn.js +0 -465
  1434. package/msg/shn.mjs +0 -446
  1435. package/msg/si.js +0 -465
  1436. package/msg/si.mjs +0 -446
  1437. package/msg/sk.js +0 -465
  1438. package/msg/sk.mjs +0 -446
  1439. package/msg/skr-arab.js +0 -465
  1440. package/msg/skr-arab.mjs +0 -446
  1441. package/msg/sl.js +0 -465
  1442. package/msg/sl.mjs +0 -446
  1443. package/msg/smn.js +0 -465
  1444. package/msg/smn.mjs +0 -446
  1445. package/msg/sq.js +0 -465
  1446. package/msg/sq.mjs +0 -446
  1447. package/msg/sr-latn.js +0 -465
  1448. package/msg/sr-latn.mjs +0 -446
  1449. package/msg/sr.js +0 -465
  1450. package/msg/sr.mjs +0 -446
  1451. package/msg/sv.js +0 -465
  1452. package/msg/sv.mjs +0 -446
  1453. package/msg/sw.js +0 -465
  1454. package/msg/sw.mjs +0 -446
  1455. package/msg/ta.js +0 -465
  1456. package/msg/ta.mjs +0 -446
  1457. package/msg/tcy.js +0 -465
  1458. package/msg/tcy.mjs +0 -446
  1459. package/msg/tdd.js +0 -465
  1460. package/msg/tdd.mjs +0 -446
  1461. package/msg/te.js +0 -465
  1462. package/msg/te.mjs +0 -446
  1463. package/msg/th.js +0 -465
  1464. package/msg/th.mjs +0 -446
  1465. package/msg/ti.js +0 -465
  1466. package/msg/ti.mjs +0 -446
  1467. package/msg/tl.js +0 -465
  1468. package/msg/tl.mjs +0 -446
  1469. package/msg/tlh.js +0 -465
  1470. package/msg/tlh.mjs +0 -446
  1471. package/msg/tr.js +0 -465
  1472. package/msg/tr.mjs +0 -446
  1473. package/msg/ug-arab.js +0 -465
  1474. package/msg/ug-arab.mjs +0 -446
  1475. package/msg/uk.js +0 -465
  1476. package/msg/uk.mjs +0 -446
  1477. package/msg/ur.js +0 -465
  1478. package/msg/ur.mjs +0 -446
  1479. package/msg/uz.js +0 -465
  1480. package/msg/uz.mjs +0 -446
  1481. package/msg/vi.js +0 -465
  1482. package/msg/vi.mjs +0 -446
  1483. package/msg/xmf.js +0 -465
  1484. package/msg/xmf.mjs +0 -446
  1485. package/msg/yo.js +0 -465
  1486. package/msg/yo.mjs +0 -446
  1487. package/msg/zgh.js +0 -465
  1488. package/msg/zgh.mjs +0 -446
  1489. package/msg/zh-hans.js +0 -465
  1490. package/msg/zh-hans.mjs +0 -446
  1491. package/msg/zh-hant.js +0 -465
  1492. package/msg/zh-hant.mjs +0 -446
  1493. package/php.js +0 -4
  1494. package/php.mjs +0 -6
  1495. package/php_compressed.js +0 -283
  1496. package/php_compressed.js.map +0 -1
  1497. package/python.js +0 -4
  1498. package/python.mjs +0 -6
  1499. package/python_compressed.js +0 -208
  1500. package/python_compressed.js.map +0 -1
  1501. /package/{README.md → scripts/package/README.md} +0 -0
  1502. /package/{core-node.js → scripts/package/core-node.js} +0 -0
  1503. /package/{blocks.d.ts → typings/blocks.d.ts} +0 -0
  1504. /package/{core.d.ts → typings/core.d.ts} +0 -0
  1505. /package/{dart.d.ts → typings/dart.d.ts} +0 -0
  1506. /package/{index.d.ts → typings/index.d.ts} +0 -0
  1507. /package/{javascript.d.ts → typings/javascript.d.ts} +0 -0
  1508. /package/{lua.d.ts → typings/lua.d.ts} +0 -0
  1509. /package/{msg → typings/msg}/ab.d.ts +0 -0
  1510. /package/{msg → typings/msg}/ace.d.ts +0 -0
  1511. /package/{msg → typings/msg}/af.d.ts +0 -0
  1512. /package/{msg → typings/msg}/am.d.ts +0 -0
  1513. /package/{msg → typings/msg}/ar.d.ts +0 -0
  1514. /package/{msg → typings/msg}/ast.d.ts +0 -0
  1515. /package/{msg → typings/msg}/az.d.ts +0 -0
  1516. /package/{msg → typings/msg}/ba.d.ts +0 -0
  1517. /package/{msg → typings/msg}/bcc.d.ts +0 -0
  1518. /package/{msg → typings/msg}/be-tarask.d.ts +0 -0
  1519. /package/{msg → typings/msg}/be.d.ts +0 -0
  1520. /package/{msg → typings/msg}/bg.d.ts +0 -0
  1521. /package/{msg → typings/msg}/bn.d.ts +0 -0
  1522. /package/{msg → typings/msg}/br.d.ts +0 -0
  1523. /package/{msg → typings/msg}/bs.d.ts +0 -0
  1524. /package/{msg → typings/msg}/ca.d.ts +0 -0
  1525. /package/{msg → typings/msg}/cdo.d.ts +0 -0
  1526. /package/{msg → typings/msg}/ce.d.ts +0 -0
  1527. /package/{msg → typings/msg}/cs.d.ts +0 -0
  1528. /package/{msg → typings/msg}/da.d.ts +0 -0
  1529. /package/{msg → typings/msg}/de.d.ts +0 -0
  1530. /package/{msg → typings/msg}/diq.d.ts +0 -0
  1531. /package/{msg → typings/msg}/dtp.d.ts +0 -0
  1532. /package/{msg → typings/msg}/dty.d.ts +0 -0
  1533. /package/{msg → typings/msg}/ee.d.ts +0 -0
  1534. /package/{msg → typings/msg}/el.d.ts +0 -0
  1535. /package/{msg → typings/msg}/en-gb.d.ts +0 -0
  1536. /package/{msg → typings/msg}/en.d.ts +0 -0
  1537. /package/{msg → typings/msg}/eo.d.ts +0 -0
  1538. /package/{msg → typings/msg}/es.d.ts +0 -0
  1539. /package/{msg → typings/msg}/et.d.ts +0 -0
  1540. /package/{msg → typings/msg}/eu.d.ts +0 -0
  1541. /package/{msg → typings/msg}/fa.d.ts +0 -0
  1542. /package/{msg → typings/msg}/fi.d.ts +0 -0
  1543. /package/{msg → typings/msg}/fo.d.ts +0 -0
  1544. /package/{msg → typings/msg}/fr.d.ts +0 -0
  1545. /package/{msg → typings/msg}/frr.d.ts +0 -0
  1546. /package/{msg → typings/msg}/gl.d.ts +0 -0
  1547. /package/{msg → typings/msg}/gn.d.ts +0 -0
  1548. /package/{msg → typings/msg}/gor.d.ts +0 -0
  1549. /package/{msg → typings/msg}/ha.d.ts +0 -0
  1550. /package/{msg → typings/msg}/hak.d.ts +0 -0
  1551. /package/{msg → typings/msg}/he.d.ts +0 -0
  1552. /package/{msg → typings/msg}/hi.d.ts +0 -0
  1553. /package/{msg → typings/msg}/hr.d.ts +0 -0
  1554. /package/{msg → typings/msg}/hrx.d.ts +0 -0
  1555. /package/{msg → typings/msg}/hsb.d.ts +0 -0
  1556. /package/{msg → typings/msg}/hu.d.ts +0 -0
  1557. /package/{msg → typings/msg}/hy.d.ts +0 -0
  1558. /package/{msg → typings/msg}/ia.d.ts +0 -0
  1559. /package/{msg → typings/msg}/id.d.ts +0 -0
  1560. /package/{msg → typings/msg}/ig.d.ts +0 -0
  1561. /package/{msg → typings/msg}/inh.d.ts +0 -0
  1562. /package/{msg → typings/msg}/is.d.ts +0 -0
  1563. /package/{msg → typings/msg}/it.d.ts +0 -0
  1564. /package/{msg → typings/msg}/ja.d.ts +0 -0
  1565. /package/{msg → typings/msg}/ka.d.ts +0 -0
  1566. /package/{msg → typings/msg}/kab.d.ts +0 -0
  1567. /package/{msg → typings/msg}/kbd-cyrl.d.ts +0 -0
  1568. /package/{msg → typings/msg}/km.d.ts +0 -0
  1569. /package/{msg → typings/msg}/kn.d.ts +0 -0
  1570. /package/{msg → typings/msg}/ko.d.ts +0 -0
  1571. /package/{msg → typings/msg}/ksh.d.ts +0 -0
  1572. /package/{msg → typings/msg}/ku-latn.d.ts +0 -0
  1573. /package/{msg → typings/msg}/ky.d.ts +0 -0
  1574. /package/{msg → typings/msg}/la.d.ts +0 -0
  1575. /package/{msg → typings/msg}/lb.d.ts +0 -0
  1576. /package/{msg → typings/msg}/lki.d.ts +0 -0
  1577. /package/{msg → typings/msg}/lo.d.ts +0 -0
  1578. /package/{msg → typings/msg}/lrc.d.ts +0 -0
  1579. /package/{msg → typings/msg}/lt.d.ts +0 -0
  1580. /package/{msg → typings/msg}/lv.d.ts +0 -0
  1581. /package/{msg → typings/msg}/mg.d.ts +0 -0
  1582. /package/{msg → typings/msg}/mk.d.ts +0 -0
  1583. /package/{msg → typings/msg}/ml.d.ts +0 -0
  1584. /package/{msg → typings/msg}/mnw.d.ts +0 -0
  1585. /package/{msg → typings/msg}/ms.d.ts +0 -0
  1586. /package/{msg → typings/msg}/msg.d.ts +0 -0
  1587. /package/{msg → typings/msg}/my.d.ts +0 -0
  1588. /package/{msg → typings/msg}/mzn.d.ts +0 -0
  1589. /package/{msg → typings/msg}/nb.d.ts +0 -0
  1590. /package/{msg → typings/msg}/ne.d.ts +0 -0
  1591. /package/{msg → typings/msg}/nl.d.ts +0 -0
  1592. /package/{msg → typings/msg}/oc.d.ts +0 -0
  1593. /package/{msg → typings/msg}/olo.d.ts +0 -0
  1594. /package/{msg → typings/msg}/pa.d.ts +0 -0
  1595. /package/{msg → typings/msg}/pl.d.ts +0 -0
  1596. /package/{msg → typings/msg}/pms.d.ts +0 -0
  1597. /package/{msg → typings/msg}/ps.d.ts +0 -0
  1598. /package/{msg → typings/msg}/pt-br.d.ts +0 -0
  1599. /package/{msg → typings/msg}/pt.d.ts +0 -0
  1600. /package/{msg → typings/msg}/ro.d.ts +0 -0
  1601. /package/{msg → typings/msg}/ru.d.ts +0 -0
  1602. /package/{msg → typings/msg}/sc.d.ts +0 -0
  1603. /package/{msg → typings/msg}/sco.d.ts +0 -0
  1604. /package/{msg → typings/msg}/sd.d.ts +0 -0
  1605. /package/{msg → typings/msg}/shn.d.ts +0 -0
  1606. /package/{msg → typings/msg}/si.d.ts +0 -0
  1607. /package/{msg → typings/msg}/sk.d.ts +0 -0
  1608. /package/{msg → typings/msg}/skr-arab.d.ts +0 -0
  1609. /package/{msg → typings/msg}/sl.d.ts +0 -0
  1610. /package/{msg → typings/msg}/smn.d.ts +0 -0
  1611. /package/{msg → typings/msg}/sq.d.ts +0 -0
  1612. /package/{msg → typings/msg}/sr-latn.d.ts +0 -0
  1613. /package/{msg → typings/msg}/sr.d.ts +0 -0
  1614. /package/{msg → typings/msg}/sv.d.ts +0 -0
  1615. /package/{msg → typings/msg}/sw.d.ts +0 -0
  1616. /package/{msg → typings/msg}/ta.d.ts +0 -0
  1617. /package/{msg → typings/msg}/tcy.d.ts +0 -0
  1618. /package/{msg → typings/msg}/tdd.d.ts +0 -0
  1619. /package/{msg → typings/msg}/te.d.ts +0 -0
  1620. /package/{msg → typings/msg}/th.d.ts +0 -0
  1621. /package/{msg → typings/msg}/ti.d.ts +0 -0
  1622. /package/{msg → typings/msg}/tl.d.ts +0 -0
  1623. /package/{msg → typings/msg}/tlh.d.ts +0 -0
  1624. /package/{msg → typings/msg}/tr.d.ts +0 -0
  1625. /package/{msg → typings/msg}/ug-arab.d.ts +0 -0
  1626. /package/{msg → typings/msg}/uk.d.ts +0 -0
  1627. /package/{msg → typings/msg}/ur.d.ts +0 -0
  1628. /package/{msg → typings/msg}/uz.d.ts +0 -0
  1629. /package/{msg → typings/msg}/vi.d.ts +0 -0
  1630. /package/{msg → typings/msg}/xmf.d.ts +0 -0
  1631. /package/{msg → typings/msg}/yo.d.ts +0 -0
  1632. /package/{msg → typings/msg}/zgh.d.ts +0 -0
  1633. /package/{msg → typings/msg}/zh-hans.d.ts +0 -0
  1634. /package/{msg → typings/msg}/zh-hant.d.ts +0 -0
  1635. /package/{php.d.ts → typings/php.d.ts} +0 -0
  1636. /package/{python.d.ts → typings/python.d.ts} +0 -0
@@ -0,0 +1,1873 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2012 Google LLC
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ /**
8
+ * Methods for graphically rendering a block as SVG.
9
+ *
10
+ * @class
11
+ */
12
+ // Former goog.module ID: Blockly.BlockSvg
13
+
14
+ // Unused import preserved for side-effects. Remove if unneeded.
15
+ import './events/events_selected.js';
16
+
17
+ import {Block} from './block.js';
18
+ import * as blockAnimations from './block_animations.js';
19
+ import * as browserEvents from './browser_events.js';
20
+ import {BlockCopyData, BlockPaster} from './clipboard/block_paster.js';
21
+ import * as common from './common.js';
22
+ import {config} from './config.js';
23
+ import type {Connection} from './connection.js';
24
+ import {ConnectionType} from './connection_type.js';
25
+ import * as constants from './constants.js';
26
+ import * as ContextMenu from './contextmenu.js';
27
+ import {
28
+ ContextMenuOption,
29
+ ContextMenuRegistry,
30
+ LegacyContextMenuOption,
31
+ } from './contextmenu_registry.js';
32
+ import {BlockDragStrategy} from './dragging/block_drag_strategy.js';
33
+ import type {BlockMove} from './events/events_block_move.js';
34
+ import {EventType} from './events/type.js';
35
+ import * as eventUtils from './events/utils.js';
36
+ import {FieldLabel} from './field_label.js';
37
+ import {getFocusManager} from './focus_manager.js';
38
+ import {IconType} from './icons/icon_types.js';
39
+ import {MutatorIcon} from './icons/mutator_icon.js';
40
+ import {WarningIcon} from './icons/warning_icon.js';
41
+ import type {Input} from './inputs/input.js';
42
+ import type {IBoundedElement} from './interfaces/i_bounded_element.js';
43
+ import {IContextMenu} from './interfaces/i_contextmenu.js';
44
+ import type {ICopyable} from './interfaces/i_copyable.js';
45
+ import {IDeletable} from './interfaces/i_deletable.js';
46
+ import type {IDragStrategy, IDraggable} from './interfaces/i_draggable.js';
47
+ import type {IFocusableNode} from './interfaces/i_focusable_node.js';
48
+ import type {IFocusableTree} from './interfaces/i_focusable_tree.js';
49
+ import {IIcon} from './interfaces/i_icon.js';
50
+ import * as internalConstants from './internal_constants.js';
51
+ import {Msg} from './msg.js';
52
+ import * as renderManagement from './render_management.js';
53
+ import {RenderedConnection} from './rendered_connection.js';
54
+ import type {IPathObject} from './renderers/common/i_path_object.js';
55
+ import * as blocks from './serialization/blocks.js';
56
+ import type {BlockStyle} from './theme.js';
57
+ import * as Tooltip from './tooltip.js';
58
+ import {idGenerator} from './utils.js';
59
+ import {Coordinate} from './utils/coordinate.js';
60
+ import * as dom from './utils/dom.js';
61
+ import {Rect} from './utils/rect.js';
62
+ import {Svg} from './utils/svg.js';
63
+ import * as svgMath from './utils/svg_math.js';
64
+ import {FlyoutItemInfo} from './utils/toolbox.js';
65
+ import type {Workspace} from './workspace.js';
66
+ import type {WorkspaceSvg} from './workspace_svg.js';
67
+
68
+ /**
69
+ * Class for a block's SVG representation.
70
+ * Not normally called directly, workspace.newBlock() is preferred.
71
+ */
72
+ export class BlockSvg
73
+ extends Block
74
+ implements
75
+ IBoundedElement,
76
+ IContextMenu,
77
+ ICopyable<BlockCopyData>,
78
+ IDraggable,
79
+ IDeletable,
80
+ IFocusableNode
81
+ {
82
+ /**
83
+ * Constant for identifying rows that are to be rendered inline.
84
+ * Don't collide with Blockly.inputTypes.
85
+ */
86
+ static readonly INLINE = -1;
87
+
88
+ /**
89
+ * ID to give the "collapsed warnings" warning. Allows us to remove the
90
+ * "collapsed warnings" warning without removing any warnings that belong to
91
+ * the block.
92
+ */
93
+ static readonly COLLAPSED_WARNING_ID = 'TEMP_COLLAPSED_WARNING_';
94
+ override decompose?: (p1: Workspace) => BlockSvg;
95
+ // override compose?: ((p1: BlockSvg) => void)|null;
96
+
97
+ /**
98
+ * An optional method which saves a record of blocks connected to
99
+ * this block so they can be later restored after this block is
100
+ * recoomposed (reconfigured). Typically records the connected
101
+ * blocks on properties on blocks in the mutator flyout, so that
102
+ * rearranging those component blocks will automatically rearrange
103
+ * the corresponding connected blocks on this block after this block
104
+ * is recomposed.
105
+ *
106
+ * To keep the saved connection information up-to-date, MutatorIcon
107
+ * arranges for an event listener to call this method any time the
108
+ * mutator flyout is open and a change occurs on this block's
109
+ * workspace.
110
+ *
111
+ * @param rootBlock The root block in the mutator flyout.
112
+ */
113
+ saveConnections?: (rootBlock: BlockSvg) => void;
114
+
115
+ customContextMenu?: (
116
+ p1: Array<ContextMenuOption | LegacyContextMenuOption>,
117
+ ) => void;
118
+
119
+ /**
120
+ * Height of this block, not including any statement blocks above or below.
121
+ * Height is in workspace units.
122
+ */
123
+ height = 0;
124
+
125
+ /**
126
+ * Width of this block, including any connected value blocks.
127
+ * Width is in workspace units.
128
+ */
129
+ width = 0;
130
+
131
+ /**
132
+ * Width of this block, not including any connected value blocks.
133
+ * Width is in workspace units.
134
+ *
135
+ * @internal
136
+ */
137
+ childlessWidth = 0;
138
+
139
+ /**
140
+ * Map from IDs for warnings text to PIDs of functions to apply them.
141
+ * Used to be able to maintain multiple warnings.
142
+ */
143
+ private warningTextDb = new Map<string, ReturnType<typeof setTimeout>>();
144
+
145
+ /** Block's mutator icon (if any). */
146
+ mutator: MutatorIcon | null = null;
147
+
148
+ private svgGroup: SVGGElement;
149
+ style: BlockStyle;
150
+ /** @internal */
151
+ pathObject: IPathObject;
152
+
153
+ /** Is this block a BlockSVG? */
154
+ override readonly rendered = true;
155
+
156
+ private visuallyDisabled = false;
157
+
158
+ override workspace: WorkspaceSvg;
159
+ // TODO(b/109816955): remove '!', see go/strict-prop-init-fix.
160
+ override outputConnection!: RenderedConnection;
161
+ // TODO(b/109816955): remove '!', see go/strict-prop-init-fix.
162
+ override nextConnection!: RenderedConnection;
163
+ // TODO(b/109816955): remove '!', see go/strict-prop-init-fix.
164
+ override previousConnection!: RenderedConnection;
165
+
166
+ private translation = '';
167
+
168
+ /** Whether this block is currently being dragged. */
169
+ private dragging = false;
170
+
171
+ /**
172
+ * The location of the top left of this block (in workspace coordinates)
173
+ * relative to either its parent block, or the workspace origin if it has no
174
+ * parent.
175
+ *
176
+ * @internal
177
+ */
178
+ relativeCoords = new Coordinate(0, 0);
179
+
180
+ private dragStrategy: IDragStrategy = new BlockDragStrategy(this);
181
+
182
+ /**
183
+ * @param workspace The block's workspace.
184
+ * @param prototypeName Name of the language object containing type-specific
185
+ * functions for this block.
186
+ * @param opt_id Optional ID. Use this ID if provided, otherwise create a new
187
+ * ID.
188
+ */
189
+ constructor(workspace: WorkspaceSvg, prototypeName: string, opt_id?: string) {
190
+ super(workspace, prototypeName, opt_id);
191
+ if (!workspace.rendered) {
192
+ throw TypeError('Cannot create a rendered block in a headless workspace');
193
+ }
194
+ this.workspace = workspace;
195
+ this.svgGroup = dom.createSvgElement(Svg.G, {});
196
+
197
+ if (prototypeName) {
198
+ dom.addClass(this.svgGroup, prototypeName);
199
+ }
200
+ /** A block style object. */
201
+ this.style = workspace.getRenderer().getConstants().getBlockStyle(null);
202
+
203
+ /** The renderer's path object. */
204
+ this.pathObject = workspace
205
+ .getRenderer()
206
+ .makePathObject(this.svgGroup, this.style);
207
+
208
+ const svgPath = this.pathObject.svgPath;
209
+ (svgPath as any).tooltip = this;
210
+ Tooltip.bindMouseEvents(svgPath);
211
+
212
+ // Expose this block's ID on its top-level SVG group.
213
+ this.svgGroup.setAttribute('data-id', this.id);
214
+
215
+ // The page-wide unique ID of this Block used for focusing.
216
+ svgPath.id = idGenerator.getNextUniqueId();
217
+
218
+ this.doInit_();
219
+ }
220
+
221
+ /**
222
+ * Create and initialize the SVG representation of the block.
223
+ * May be called more than once.
224
+ */
225
+ initSvg() {
226
+ if (this.initialized) return;
227
+ for (const input of this.inputList) {
228
+ input.init();
229
+ }
230
+ for (const icon of this.getIcons()) {
231
+ icon.initView(this.createIconPointerDownListener(icon));
232
+ icon.updateEditable();
233
+ }
234
+ this.applyColour();
235
+ this.pathObject.updateMovable(this.isMovable() || this.isInFlyout);
236
+ const svg = this.getSvgRoot();
237
+ if (svg) {
238
+ browserEvents.conditionalBind(svg, 'pointerdown', this, this.onMouseDown);
239
+ }
240
+
241
+ if (!svg.parentNode) {
242
+ this.workspace.getCanvas().appendChild(svg);
243
+ }
244
+ this.initialized = true;
245
+ }
246
+
247
+ /**
248
+ * Get the secondary colour of a block.
249
+ *
250
+ * @returns #RRGGBB string.
251
+ */
252
+ getColourSecondary(): string {
253
+ return this.style.colourSecondary;
254
+ }
255
+
256
+ /**
257
+ * Get the tertiary colour of a block.
258
+ *
259
+ * @returns #RRGGBB string.
260
+ */
261
+ getColourTertiary(): string {
262
+ return this.style.colourTertiary;
263
+ }
264
+
265
+ /** Selects this block. Highlights the block visually. */
266
+ select() {
267
+ this.addSelect();
268
+ common.fireSelectedEvent(this);
269
+ }
270
+
271
+ /** Unselects this block. Unhighlights the block visually. */
272
+ unselect() {
273
+ this.removeSelect();
274
+ common.fireSelectedEvent(null);
275
+ }
276
+
277
+ /**
278
+ * Sets the parent of this block to be a new block or null.
279
+ *
280
+ * @param newParent New parent block.
281
+ * @internal
282
+ */
283
+ override setParent(newParent: this | null) {
284
+ const oldParent = this.parentBlock_;
285
+ if (newParent === oldParent) {
286
+ return;
287
+ }
288
+
289
+ dom.startTextWidthCache();
290
+ super.setParent(newParent);
291
+ dom.stopTextWidthCache();
292
+
293
+ const svgRoot = this.getSvgRoot();
294
+
295
+ // Bail early if workspace is clearing, or we aren't rendered.
296
+ // We won't need to reattach ourselves anywhere.
297
+ if (this.workspace.isClearing || !svgRoot) {
298
+ return;
299
+ }
300
+
301
+ const oldXY = this.getRelativeToSurfaceXY();
302
+ const focusedNode = getFocusManager().getFocusedNode();
303
+ const restoreFocus = this.getSvgRoot().contains(
304
+ focusedNode?.getFocusableElement() ?? null,
305
+ );
306
+ if (newParent) {
307
+ (newParent as BlockSvg).getSvgRoot().appendChild(svgRoot);
308
+ // appendChild() clears focus state, so re-focus the previously focused
309
+ // node in case it was this block and would otherwise lose its focus. Once
310
+ // Element.moveBefore() has better browser support, it should be used
311
+ // instead.
312
+ if (restoreFocus && focusedNode) {
313
+ getFocusManager().focusNode(focusedNode);
314
+ }
315
+ } else if (oldParent) {
316
+ // If we are losing a parent, we want to move our DOM element to the
317
+ // root of the workspace. Try to insert it before any top-level
318
+ // block being dragged, but note that blocks can have the
319
+ // blocklyDragging class even if they're not top blocks (especially
320
+ // at start and end of a drag).
321
+ const draggingBlockElement = this.workspace
322
+ .getCanvas()
323
+ .querySelector('.blocklyDragging');
324
+ const draggingParentElement = draggingBlockElement?.parentElement as
325
+ | SVGElement
326
+ | null
327
+ | undefined;
328
+ const canvas = this.workspace.getCanvas();
329
+ if (draggingParentElement === canvas) {
330
+ canvas.insertBefore(svgRoot, draggingBlockElement);
331
+ } else {
332
+ canvas.appendChild(svgRoot);
333
+ // appendChild() clears focus state, so re-focus the previously focused
334
+ // node in case it was this block and would otherwise lose its focus. Once
335
+ // Element.moveBefore() has better browser support, it should be used
336
+ // instead.
337
+ if (restoreFocus && focusedNode) {
338
+ getFocusManager().focusNode(focusedNode);
339
+ }
340
+ }
341
+ this.translate(oldXY.x, oldXY.y);
342
+ }
343
+
344
+ this.applyColour();
345
+ }
346
+
347
+ /**
348
+ * Return the coordinates of the top-left corner of this block relative to the
349
+ * drawing surface's origin (0,0), in workspace units.
350
+ * If the block is on the workspace, (0, 0) is the origin of the workspace
351
+ * coordinate system.
352
+ * This does not change with workspace scale.
353
+ *
354
+ * @returns Object with .x and .y properties in workspace coordinates.
355
+ */
356
+ override getRelativeToSurfaceXY(): Coordinate {
357
+ const layerManager = this.workspace.getLayerManager();
358
+ if (!layerManager) {
359
+ throw new Error(
360
+ 'Cannot calculate position because the workspace has not been appended',
361
+ );
362
+ }
363
+ let x = 0;
364
+ let y = 0;
365
+
366
+ let element: SVGElement = this.getSvgRoot();
367
+ if (element) {
368
+ do {
369
+ // Loop through this block and every parent.
370
+ const xy = svgMath.getRelativeXY(element);
371
+ x += xy.x;
372
+ y += xy.y;
373
+ element = element.parentNode as SVGElement;
374
+ } while (element && !layerManager.hasLayer(element));
375
+ }
376
+ return new Coordinate(x, y);
377
+ }
378
+
379
+ /**
380
+ * Move a block by a relative offset.
381
+ *
382
+ * @param dx Horizontal offset in workspace units.
383
+ * @param dy Vertical offset in workspace units.
384
+ * @param reason Why is this move happening? 'drag', 'bump', 'snap', ...
385
+ */
386
+ override moveBy(dx: number, dy: number, reason?: string[]) {
387
+ if (this.parentBlock_) {
388
+ throw Error('Block has parent');
389
+ }
390
+ const eventsEnabled = eventUtils.isEnabled();
391
+ let event: BlockMove | null = null;
392
+ if (eventsEnabled) {
393
+ event = new (eventUtils.get(EventType.BLOCK_MOVE)!)(this) as BlockMove;
394
+ if (reason) event.setReason(reason);
395
+ }
396
+
397
+ const delta = new Coordinate(dx, dy);
398
+ const currLoc = this.getRelativeToSurfaceXY();
399
+ const newLoc = Coordinate.sum(currLoc, delta);
400
+ this.translate(newLoc.x, newLoc.y);
401
+ this.updateComponentLocations(newLoc);
402
+
403
+ if (eventsEnabled && event) {
404
+ event!.recordNew();
405
+ eventUtils.fire(event);
406
+ }
407
+ this.workspace.resizeContents();
408
+ }
409
+
410
+ /**
411
+ * Transforms a block by setting the translation on the transform attribute
412
+ * of the block's SVG.
413
+ *
414
+ * @param x The x coordinate of the translation in workspace units.
415
+ * @param y The y coordinate of the translation in workspace units.
416
+ */
417
+ translate(x: number, y: number) {
418
+ this.translation = `translate(${x}, ${y})`;
419
+ this.relativeCoords = new Coordinate(x, y);
420
+ this.getSvgRoot().setAttribute('transform', this.getTranslation());
421
+ }
422
+
423
+ /**
424
+ * Returns the SVG translation of this block.
425
+ *
426
+ * @internal
427
+ */
428
+ getTranslation(): string {
429
+ return this.translation;
430
+ }
431
+
432
+ /**
433
+ * Move a block to a position.
434
+ *
435
+ * @param xy The position to move to in workspace units.
436
+ * @param reason Why is this move happening? 'drag', 'bump', 'snap', ...
437
+ */
438
+ moveTo(xy: Coordinate, reason?: string[]) {
439
+ const curXY = this.getRelativeToSurfaceXY();
440
+ this.moveBy(xy.x - curXY.x, xy.y - curXY.y, reason);
441
+ }
442
+
443
+ /**
444
+ * Move this block during a drag.
445
+ * This block must be a top-level block.
446
+ *
447
+ * @param newLoc The location to translate to, in workspace coordinates.
448
+ * @internal
449
+ */
450
+ moveDuringDrag(newLoc: Coordinate) {
451
+ this.translate(newLoc.x, newLoc.y);
452
+ this.getSvgRoot().setAttribute('transform', this.getTranslation());
453
+ this.updateComponentLocations(newLoc);
454
+ }
455
+
456
+ /** Snap this block to the nearest grid point. */
457
+ snapToGrid() {
458
+ if (this.isDeadOrDying()) return;
459
+ if (this.getParent()) return;
460
+ if (this.isInFlyout) return;
461
+ const grid = this.workspace.getGrid();
462
+ if (!grid?.shouldSnap()) return;
463
+ const currentXY = this.getRelativeToSurfaceXY();
464
+ const alignedXY = grid.alignXY(currentXY);
465
+ if (alignedXY !== currentXY) {
466
+ this.moveTo(alignedXY, ['snap']);
467
+ }
468
+ }
469
+
470
+ /**
471
+ * Returns the coordinates of a bounding box describing the dimensions of this
472
+ * block and any blocks stacked below it.
473
+ * Coordinate system: workspace coordinates.
474
+ *
475
+ * @returns Object with coordinates of the bounding box.
476
+ */
477
+ getBoundingRectangle(): Rect {
478
+ return this.getBoundingRectangleWithDimensions(this.getHeightWidth());
479
+ }
480
+
481
+ /**
482
+ * Returns the coordinates of a bounding box describing the dimensions of this
483
+ * block alone.
484
+ * Coordinate system: workspace coordinates.
485
+ *
486
+ * @returns Object with coordinates of the bounding box.
487
+ */
488
+ getBoundingRectangleWithoutChildren(): Rect {
489
+ return this.getBoundingRectangleWithDimensions({
490
+ height: this.height,
491
+ width: this.childlessWidth,
492
+ });
493
+ }
494
+
495
+ private getBoundingRectangleWithDimensions(blockBounds: {
496
+ height: number;
497
+ width: number;
498
+ }) {
499
+ const blockXY = this.getRelativeToSurfaceXY();
500
+ let left;
501
+ let right;
502
+ if (this.RTL) {
503
+ left = blockXY.x - blockBounds.width;
504
+ right = blockXY.x;
505
+ } else {
506
+ left = blockXY.x;
507
+ right = blockXY.x + blockBounds.width;
508
+ }
509
+ return new Rect(blockXY.y, blockXY.y + blockBounds.height, left, right);
510
+ }
511
+
512
+ /**
513
+ * Notify every input on this block to mark its fields as dirty.
514
+ * A dirty field is a field that needs to be re-rendered.
515
+ */
516
+ markDirty() {
517
+ this.pathObject.constants = this.workspace.getRenderer().getConstants();
518
+ for (let i = 0, input; (input = this.inputList[i]); i++) {
519
+ input.markDirty();
520
+ }
521
+ }
522
+
523
+ /**
524
+ * Set whether the block is collapsed or not.
525
+ *
526
+ * @param collapsed True if collapsed.
527
+ */
528
+ override setCollapsed(collapsed: boolean) {
529
+ if (this.collapsed_ === collapsed) {
530
+ return;
531
+ }
532
+ super.setCollapsed(collapsed);
533
+ this.updateCollapsed();
534
+ }
535
+
536
+ /**
537
+ * Traverses child blocks to see if any of them have a warning.
538
+ *
539
+ * @returns true if any child has a warning, false otherwise.
540
+ */
541
+ private childHasWarning(): boolean {
542
+ const next = this.getNextBlock();
543
+ const excluded = next ? new Set(next.getDescendants(false)) : null;
544
+ const descendants = this.getDescendants(false);
545
+
546
+ for (const descendant of descendants) {
547
+ if (descendant === this) {
548
+ continue;
549
+ }
550
+ if (excluded?.has(descendant)) {
551
+ continue;
552
+ }
553
+ if (descendant.getIcon(WarningIcon.TYPE)) {
554
+ return true;
555
+ }
556
+ }
557
+
558
+ return false;
559
+ }
560
+
561
+ /**
562
+ * Makes sure that when the block is collapsed, it is rendered correctly
563
+ * for that state.
564
+ */
565
+ private updateCollapsed() {
566
+ const collapsed = this.isCollapsed();
567
+ const collapsedInputName = constants.COLLAPSED_INPUT_NAME;
568
+ const collapsedFieldName = constants.COLLAPSED_FIELD_NAME;
569
+
570
+ for (let i = 0, input; (input = this.inputList[i]); i++) {
571
+ if (input.name !== collapsedInputName) {
572
+ input.setVisible(!collapsed);
573
+ }
574
+ }
575
+
576
+ for (const icon of this.getIcons()) {
577
+ icon.updateCollapsed();
578
+ }
579
+
580
+ if (!collapsed) {
581
+ this.updateDisabled();
582
+ this.removeInput(collapsedInputName);
583
+ dom.removeClass(this.svgGroup, 'blocklyCollapsed');
584
+ this.setWarningText(null, BlockSvg.COLLAPSED_WARNING_ID);
585
+ return;
586
+ }
587
+
588
+ dom.addClass(this.svgGroup, 'blocklyCollapsed');
589
+ if (this.childHasWarning()) {
590
+ this.setWarningText(
591
+ Msg['COLLAPSED_WARNINGS_WARNING'],
592
+ BlockSvg.COLLAPSED_WARNING_ID,
593
+ );
594
+ }
595
+
596
+ const text = this.toString(internalConstants.COLLAPSE_CHARS);
597
+ const field = this.getField(collapsedFieldName);
598
+ if (field) {
599
+ field.setValue(text);
600
+ return;
601
+ }
602
+ const input =
603
+ this.getInput(collapsedInputName) ||
604
+ this.appendDummyInput(collapsedInputName);
605
+ input.appendField(new FieldLabel(text), collapsedFieldName);
606
+ }
607
+
608
+ /**
609
+ * Handle a pointerdown on an SVG block.
610
+ *
611
+ * @param e Pointer down event.
612
+ */
613
+ private onMouseDown(e: PointerEvent) {
614
+ if (this.workspace.isReadOnly()) return;
615
+
616
+ const gesture = this.workspace.getGesture(e);
617
+ if (gesture) {
618
+ gesture.handleBlockStart(e, this);
619
+ }
620
+ }
621
+
622
+ /**
623
+ * Load the block's help page in a new window.
624
+ *
625
+ * @internal
626
+ */
627
+ showHelp() {
628
+ const url =
629
+ typeof this.helpUrl === 'function' ? this.helpUrl() : this.helpUrl;
630
+ if (url) {
631
+ window.open(url);
632
+ }
633
+ }
634
+
635
+ /**
636
+ * Generate the context menu for this block.
637
+ *
638
+ * @returns Context menu options or null if no menu.
639
+ */
640
+ protected generateContextMenu(
641
+ e: Event,
642
+ ): Array<ContextMenuOption | LegacyContextMenuOption> | null {
643
+ if (this.workspace.isReadOnly() || !this.contextMenu) {
644
+ return null;
645
+ }
646
+ const menuOptions = ContextMenuRegistry.registry.getContextMenuOptions(
647
+ {block: this, focusedNode: this},
648
+ e,
649
+ );
650
+
651
+ // Allow the block to add or modify menuOptions.
652
+ if (this.customContextMenu) {
653
+ this.customContextMenu(menuOptions);
654
+ }
655
+
656
+ return menuOptions;
657
+ }
658
+
659
+ /**
660
+ * Gets the location in which to show the context menu for this block.
661
+ * Use the location of a click if the block was clicked, or a location
662
+ * based on the block's fields otherwise.
663
+ */
664
+ protected calculateContextMenuLocation(e: Event): Coordinate {
665
+ // Open the menu where the user clicked, if they clicked
666
+ if (e instanceof PointerEvent) {
667
+ return new Coordinate(e.clientX, e.clientY);
668
+ }
669
+
670
+ // Otherwise, calculate a location.
671
+ // Get the location of the top-left corner of the block in
672
+ // screen coordinates.
673
+ const blockCoords = svgMath.wsToScreenCoordinates(
674
+ this.workspace,
675
+ this.getRelativeToSurfaceXY(),
676
+ );
677
+
678
+ // Prefer a y position below the first field in the block.
679
+ const fieldBoundingClientRect = this.inputList
680
+ .filter((input) => input.isVisible())
681
+ .flatMap((input) => input.fieldRow)
682
+ .find((f) => f.isVisible())
683
+ ?.getSvgRoot()
684
+ ?.getBoundingClientRect();
685
+
686
+ const y =
687
+ fieldBoundingClientRect && fieldBoundingClientRect.height
688
+ ? fieldBoundingClientRect.y + fieldBoundingClientRect.height
689
+ : blockCoords.y + this.height;
690
+
691
+ return new Coordinate(
692
+ this.RTL ? blockCoords.x - 5 : blockCoords.x + 5,
693
+ y + 5,
694
+ );
695
+ }
696
+
697
+ /**
698
+ * Show the context menu for this block.
699
+ *
700
+ * @param e Mouse event.
701
+ * @internal
702
+ */
703
+ showContextMenu(e: Event) {
704
+ const menuOptions = this.generateContextMenu(e);
705
+
706
+ const location = this.calculateContextMenuLocation(e);
707
+
708
+ if (menuOptions && menuOptions.length) {
709
+ ContextMenu.show(e, menuOptions, this.RTL, this.workspace, location);
710
+ ContextMenu.setCurrentBlock(this);
711
+ }
712
+ }
713
+
714
+ /**
715
+ * Updates the locations of any parts of the block that need to know where
716
+ * they are (e.g. connections, icons).
717
+ *
718
+ * @param blockOrigin The top-left of this block in workspace coordinates.
719
+ * @internal
720
+ */
721
+ updateComponentLocations(blockOrigin: Coordinate) {
722
+ if (!this.dragging) this.updateConnectionLocations(blockOrigin);
723
+ this.updateIconLocations(blockOrigin);
724
+ this.updateFieldLocations(blockOrigin);
725
+
726
+ for (const child of this.getChildren(false)) {
727
+ child.updateComponentLocations(
728
+ Coordinate.sum(blockOrigin, child.relativeCoords),
729
+ );
730
+ }
731
+ }
732
+
733
+ private updateConnectionLocations(blockOrigin: Coordinate) {
734
+ for (const conn of this.getConnections_(false)) {
735
+ conn.moveToOffset(blockOrigin);
736
+ }
737
+ }
738
+
739
+ private updateIconLocations(blockOrigin: Coordinate) {
740
+ for (const icon of this.getIcons()) {
741
+ icon.onLocationChange(blockOrigin);
742
+ }
743
+ }
744
+
745
+ private updateFieldLocations(blockOrigin: Coordinate) {
746
+ for (const input of this.inputList) {
747
+ for (const field of input.fieldRow) {
748
+ field.onLocationChange(blockOrigin);
749
+ }
750
+ }
751
+ }
752
+
753
+ /**
754
+ * Add a CSS class to the SVG group of this block.
755
+ *
756
+ * @param className
757
+ */
758
+ addClass(className: string) {
759
+ dom.addClass(this.svgGroup, className);
760
+ }
761
+
762
+ /**
763
+ * Remove a CSS class from the SVG group of this block.
764
+ *
765
+ * @param className
766
+ */
767
+ removeClass(className: string) {
768
+ dom.removeClass(this.svgGroup, className);
769
+ }
770
+
771
+ /**
772
+ * Recursively adds or removes the dragging class to this node and its
773
+ * children.
774
+ *
775
+ * @param adding True if adding, false if removing.
776
+ * @internal
777
+ */
778
+ setDragging(adding: boolean) {
779
+ this.dragging = adding;
780
+ if (adding) {
781
+ this.translation = '';
782
+ common.draggingConnections.push(...this.getConnections_(true));
783
+ this.addClass('blocklyDragging');
784
+ } else {
785
+ common.draggingConnections.length = 0;
786
+ this.removeClass('blocklyDragging');
787
+ }
788
+ // Recurse through all blocks attached under this one.
789
+ for (let i = 0; i < this.childBlocks_.length; i++) {
790
+ (this.childBlocks_[i] as BlockSvg).setDragging(adding);
791
+ }
792
+ }
793
+
794
+ /**
795
+ * Set whether this block is movable or not.
796
+ *
797
+ * @param movable True if movable.
798
+ */
799
+ override setMovable(movable: boolean) {
800
+ super.setMovable(movable);
801
+ this.pathObject.updateMovable(movable);
802
+ }
803
+
804
+ /**
805
+ * Set whether this block is editable or not.
806
+ *
807
+ * @param editable True if editable.
808
+ */
809
+ override setEditable(editable: boolean) {
810
+ super.setEditable(editable);
811
+
812
+ if (editable) {
813
+ dom.removeClass(this.svgGroup, 'blocklyNotEditable');
814
+ } else {
815
+ dom.addClass(this.svgGroup, 'blocklyNotEditable');
816
+ }
817
+
818
+ const icons = this.getIcons();
819
+ for (let i = 0; i < icons.length; i++) {
820
+ icons[i].updateEditable();
821
+ }
822
+ }
823
+
824
+ /**
825
+ * Sets whether this block is a shadow block or not.
826
+ * This method is internal and should not be called by users of Blockly. To
827
+ * create shadow blocks programmatically call connection.setShadowState
828
+ *
829
+ * @param shadow True if a shadow.
830
+ * @internal
831
+ */
832
+ override setShadow(shadow: boolean) {
833
+ super.setShadow(shadow);
834
+ this.applyColour();
835
+ }
836
+
837
+ /**
838
+ * Set whether this block is an insertion marker block or not.
839
+ * Once set this cannot be unset.
840
+ *
841
+ * @param insertionMarker True if an insertion marker.
842
+ * @internal
843
+ */
844
+ override setInsertionMarker(insertionMarker: boolean) {
845
+ if (this.isInsertionMarker_ === insertionMarker) {
846
+ return; // No change.
847
+ }
848
+ this.isInsertionMarker_ = insertionMarker;
849
+ if (this.isInsertionMarker_) {
850
+ this.setColour(
851
+ this.workspace.getRenderer().getConstants().INSERTION_MARKER_COLOUR,
852
+ );
853
+ this.pathObject.updateInsertionMarker(true);
854
+ }
855
+ }
856
+
857
+ /**
858
+ * Return the root node of the SVG or null if none exists.
859
+ *
860
+ * @returns The root SVG node (probably a group).
861
+ */
862
+ getSvgRoot(): SVGGElement {
863
+ return this.svgGroup;
864
+ }
865
+
866
+ /**
867
+ * Dispose of this block.
868
+ *
869
+ * @param healStack If true, then try to heal any gap by connecting the next
870
+ * statement with the previous statement. Otherwise, dispose of all
871
+ * children of this block.
872
+ * @param animate If true, show a disposal animation and sound.
873
+ */
874
+ override dispose(healStack?: boolean, animate?: boolean) {
875
+ this.disposing = true;
876
+
877
+ Tooltip.dispose();
878
+ ContextMenu.hide();
879
+
880
+ // If this block (or a descendant) was focused, focus its parent or
881
+ // workspace instead.
882
+ const focusManager = getFocusManager();
883
+ if (
884
+ this.getSvgRoot().contains(
885
+ focusManager.getFocusedNode()?.getFocusableElement() ?? null,
886
+ )
887
+ ) {
888
+ let parent: BlockSvg | undefined | null = this.getParent();
889
+ if (!parent) {
890
+ // In some cases, blocks are disconnected from their parents before
891
+ // being deleted. Attempt to infer if there was a parent by checking
892
+ // for a connection within a radius of 0. Even if this wasn't a parent,
893
+ // it must be adjacent to this block and so is as good an option as any
894
+ // to focus after deleting.
895
+ const connection = this.outputConnection ?? this.previousConnection;
896
+ if (connection) {
897
+ const targetConnection = connection.closest(
898
+ 0,
899
+ new Coordinate(0, 0),
900
+ ).connection;
901
+ parent = targetConnection?.getSourceBlock();
902
+ }
903
+ }
904
+ if (parent) {
905
+ focusManager.focusNode(parent);
906
+ } else {
907
+ setTimeout(() => focusManager.focusTree(this.workspace), 0);
908
+ }
909
+ }
910
+
911
+ if (animate) {
912
+ this.unplug(healStack);
913
+ blockAnimations.disposeUiEffect(this);
914
+ }
915
+
916
+ super.dispose(!!healStack);
917
+ dom.removeNode(this.svgGroup);
918
+ }
919
+
920
+ /**
921
+ * Disposes of this block without doing things required by the top block.
922
+ * E.g. does trigger UI effects, remove nodes, etc.
923
+ */
924
+ override disposeInternal() {
925
+ this.disposing = true;
926
+ super.disposeInternal();
927
+
928
+ if (getFocusManager().getFocusedNode() === this) {
929
+ this.workspace.cancelCurrentGesture();
930
+ }
931
+
932
+ [...this.warningTextDb.values()].forEach((n) => clearTimeout(n));
933
+ this.warningTextDb.clear();
934
+
935
+ this.getIcons().forEach((i) => i.dispose());
936
+ }
937
+
938
+ /**
939
+ * Delete a block and hide chaff when doing so. The block will not be deleted
940
+ * if it's in a flyout. This is called from the context menu and keyboard
941
+ * shortcuts as the full delete action. If you are disposing of a block from
942
+ * the workspace and don't need to perform flyout checks, handle event
943
+ * grouping, or hide chaff, then use `block.dispose()` directly.
944
+ */
945
+ checkAndDelete() {
946
+ if (this.workspace.isFlyout) {
947
+ return;
948
+ }
949
+ eventUtils.setGroup(true);
950
+ this.workspace.hideChaff();
951
+ if (this.outputConnection) {
952
+ // Do not attempt to heal rows
953
+ // (https://github.com/google/blockly/issues/4832)
954
+ this.dispose(false, true);
955
+ } else {
956
+ this.dispose(/* heal */ true, true);
957
+ }
958
+ eventUtils.setGroup(false);
959
+ }
960
+
961
+ /**
962
+ * Encode a block for copying.
963
+ *
964
+ * @param addNextBlocks If true, copy subsequent blocks attached to this one
965
+ * as well.
966
+ *
967
+ * @returns Copy metadata, or null if the block is an insertion marker.
968
+ */
969
+ toCopyData(addNextBlocks = false): BlockCopyData | null {
970
+ if (this.isInsertionMarker_) {
971
+ return null;
972
+ }
973
+ return {
974
+ paster: BlockPaster.TYPE,
975
+ blockState: blocks.save(this, {
976
+ addCoordinates: true,
977
+ addNextBlocks,
978
+ saveIds: false,
979
+ }) as blocks.State,
980
+ typeCounts: common.getBlockTypeCounts(this, true),
981
+ };
982
+ }
983
+
984
+ /**
985
+ * Updates the colour of the block to match the block's state.
986
+ *
987
+ * @internal
988
+ */
989
+ applyColour() {
990
+ this.pathObject.applyColour?.(this);
991
+
992
+ const icons = this.getIcons();
993
+ for (let i = 0; i < icons.length; i++) {
994
+ icons[i].applyColour();
995
+ }
996
+
997
+ for (const field of this.getFields()) {
998
+ field.applyColour();
999
+ }
1000
+ }
1001
+
1002
+ /**
1003
+ * Updates the colour of the block (and children) to match the current
1004
+ * disabled state.
1005
+ *
1006
+ * @internal
1007
+ */
1008
+ updateDisabled() {
1009
+ const disabled = !this.isEnabled() || this.getInheritedDisabled();
1010
+
1011
+ if (this.visuallyDisabled === disabled) {
1012
+ this.getNextBlock()?.updateDisabled();
1013
+ return;
1014
+ }
1015
+
1016
+ this.applyColour();
1017
+ this.visuallyDisabled = disabled;
1018
+ for (const child of this.getChildren(false)) {
1019
+ child.updateDisabled();
1020
+ }
1021
+ }
1022
+
1023
+ /**
1024
+ * Set this block's warning text.
1025
+ *
1026
+ * @param text The text, or null to delete.
1027
+ * @param id An optional ID for the warning text to be able to maintain
1028
+ * multiple warnings.
1029
+ */
1030
+ override setWarningText(text: string | null, id: string = '') {
1031
+ if (!id) {
1032
+ // Kill all previous pending processes, this edit supersedes them all.
1033
+ for (const timeout of this.warningTextDb.values()) {
1034
+ clearTimeout(timeout);
1035
+ }
1036
+ this.warningTextDb.clear();
1037
+ } else if (this.warningTextDb.has(id)) {
1038
+ // Only queue up the latest change. Kill any earlier pending process.
1039
+ clearTimeout(this.warningTextDb.get(id)!);
1040
+ this.warningTextDb.delete(id);
1041
+ }
1042
+ if (this.workspace.isDragging()) {
1043
+ // Don't change the warning text during a drag.
1044
+ // Wait until the drag finishes.
1045
+ this.warningTextDb.set(
1046
+ id,
1047
+ setTimeout(() => {
1048
+ if (!this.isDeadOrDying()) {
1049
+ this.warningTextDb.delete(id);
1050
+ this.setWarningText(text, id);
1051
+ }
1052
+ }, 100),
1053
+ );
1054
+ return;
1055
+ }
1056
+ if (this.isInFlyout) {
1057
+ text = null;
1058
+ }
1059
+
1060
+ const icon = this.getIcon(WarningIcon.TYPE) as WarningIcon | undefined;
1061
+ if (text) {
1062
+ // Bubble up to add a warning on top-most collapsed block.
1063
+ // TODO(#6020): This warning is never removed.
1064
+ let parent = this.getSurroundParent();
1065
+ let collapsedParent = null;
1066
+ while (parent) {
1067
+ if (parent.isCollapsed()) {
1068
+ collapsedParent = parent;
1069
+ }
1070
+ parent = parent.getSurroundParent();
1071
+ }
1072
+ if (collapsedParent) {
1073
+ collapsedParent.setWarningText(
1074
+ Msg['COLLAPSED_WARNINGS_WARNING'],
1075
+ BlockSvg.COLLAPSED_WARNING_ID,
1076
+ );
1077
+ }
1078
+
1079
+ if (icon) {
1080
+ (icon as WarningIcon).addMessage(text, id);
1081
+ } else {
1082
+ this.addIcon(new WarningIcon(this).addMessage(text, id));
1083
+ }
1084
+ } else if (icon) {
1085
+ // Dispose all warnings if no ID is given.
1086
+ if (!id) {
1087
+ this.removeIcon(WarningIcon.TYPE);
1088
+ } else {
1089
+ // Remove just this warning id's message.
1090
+ icon.addMessage('', id);
1091
+ // Then remove the entire icon if there is no longer any text.
1092
+ if (!icon.getText()) this.removeIcon(WarningIcon.TYPE);
1093
+ }
1094
+ }
1095
+ }
1096
+
1097
+ /**
1098
+ * Give this block a mutator dialog.
1099
+ *
1100
+ * @param mutator A mutator dialog instance or null to remove.
1101
+ */
1102
+ override setMutator(mutator: MutatorIcon | null) {
1103
+ this.removeIcon(MutatorIcon.TYPE);
1104
+ if (mutator) this.addIcon(mutator);
1105
+ }
1106
+
1107
+ override addIcon<T extends IIcon>(icon: T): T {
1108
+ super.addIcon(icon);
1109
+
1110
+ if (icon instanceof MutatorIcon) this.mutator = icon;
1111
+
1112
+ icon.initView(this.createIconPointerDownListener(icon));
1113
+ icon.applyColour();
1114
+ icon.updateEditable();
1115
+ this.queueRender();
1116
+
1117
+ return icon;
1118
+ }
1119
+
1120
+ /**
1121
+ * Creates a pointer down event listener for the icon to append to its
1122
+ * root svg.
1123
+ */
1124
+ private createIconPointerDownListener(icon: IIcon) {
1125
+ return (e: PointerEvent) => {
1126
+ if (this.isDeadOrDying()) return;
1127
+ const gesture = this.workspace.getGesture(e);
1128
+ if (gesture) {
1129
+ this.bringToFront();
1130
+ gesture.setStartIcon(icon);
1131
+ getFocusManager().focusNode(icon);
1132
+ }
1133
+ };
1134
+ }
1135
+
1136
+ override removeIcon(type: IconType<IIcon>): boolean {
1137
+ const removed = super.removeIcon(type);
1138
+
1139
+ if (type.equals(MutatorIcon.TYPE)) this.mutator = null;
1140
+
1141
+ this.queueRender();
1142
+
1143
+ return removed;
1144
+ }
1145
+
1146
+ /**
1147
+ * Add or remove a reason why the block might be disabled. If a block has
1148
+ * any reasons to be disabled, then the block itself will be considered
1149
+ * disabled. A block could be disabled for multiple independent reasons
1150
+ * simultaneously, such as when the user manually disables it, or the block
1151
+ * is invalid.
1152
+ *
1153
+ * @param disabled If true, then the block should be considered disabled for
1154
+ * at least the provided reason, otherwise the block is no longer disabled
1155
+ * for that reason.
1156
+ * @param reason A language-neutral identifier for a reason why the block
1157
+ * could be disabled. Call this method again with the same identifier to
1158
+ * update whether the block is currently disabled for this reason.
1159
+ */
1160
+ override setDisabledReason(disabled: boolean, reason: string): void {
1161
+ const wasEnabled = this.isEnabled();
1162
+ super.setDisabledReason(disabled, reason);
1163
+ if (this.isEnabled() !== wasEnabled && !this.getInheritedDisabled()) {
1164
+ this.updateDisabled();
1165
+ }
1166
+ }
1167
+
1168
+ /**
1169
+ * Add blocklyNotDeletable class when block is not deletable
1170
+ * Or remove class when block is deletable
1171
+ */
1172
+ override setDeletable(deletable: boolean) {
1173
+ super.setDeletable(deletable);
1174
+
1175
+ if (deletable) {
1176
+ dom.removeClass(this.svgGroup, 'blocklyNotDeletable');
1177
+ } else {
1178
+ dom.addClass(this.svgGroup, 'blocklyNotDeletable');
1179
+ }
1180
+ }
1181
+
1182
+ /**
1183
+ * Set whether the block is highlighted or not. Block highlighting is
1184
+ * often used to visually mark blocks currently being executed.
1185
+ *
1186
+ * @param highlighted True if highlighted.
1187
+ */
1188
+ setHighlighted(highlighted: boolean) {
1189
+ this.pathObject.updateHighlighted(highlighted);
1190
+ }
1191
+
1192
+ /**
1193
+ * Adds the visual "select" effect to the block, but does not actually select
1194
+ * it or fire an event.
1195
+ *
1196
+ * @see BlockSvg#select
1197
+ */
1198
+ addSelect() {
1199
+ this.pathObject.updateSelected(true);
1200
+ }
1201
+
1202
+ /**
1203
+ * Removes the visual "select" effect from the block, but does not actually
1204
+ * unselect it or fire an event.
1205
+ *
1206
+ * @see BlockSvg#unselect
1207
+ */
1208
+ removeSelect() {
1209
+ this.pathObject.updateSelected(false);
1210
+ }
1211
+
1212
+ /**
1213
+ * Update the cursor over this block by adding or removing a class.
1214
+ *
1215
+ * @param enable True if the delete cursor should be shown, false otherwise.
1216
+ * @internal
1217
+ */
1218
+ setDeleteStyle(enable: boolean) {
1219
+ this.pathObject.updateDraggingDelete(enable);
1220
+ }
1221
+
1222
+ // Overrides of functions on Blockly.Block that take into account whether the
1223
+ // block has been rendered.
1224
+
1225
+ /**
1226
+ * Get the colour of a block.
1227
+ *
1228
+ * @returns #RRGGBB string.
1229
+ */
1230
+ override getColour(): string {
1231
+ return this.style.colourPrimary;
1232
+ }
1233
+
1234
+ /**
1235
+ * Change the colour of a block.
1236
+ *
1237
+ * @param colour HSV hue value, or #RRGGBB string.
1238
+ */
1239
+ override setColour(colour: number | string) {
1240
+ super.setColour(colour);
1241
+ const styleObj = this.workspace
1242
+ .getRenderer()
1243
+ .getConstants()
1244
+ .getBlockStyleForColour(this.colour_);
1245
+
1246
+ this.pathObject.setStyle?.(styleObj.style);
1247
+ this.style = styleObj.style;
1248
+ this.styleName_ = styleObj.name;
1249
+
1250
+ this.applyColour();
1251
+ }
1252
+
1253
+ /**
1254
+ * Set the style and colour values of a block.
1255
+ *
1256
+ * @param blockStyleName Name of the block style.
1257
+ * @throws {Error} if the block style does not exist.
1258
+ */
1259
+ override setStyle(blockStyleName: string) {
1260
+ const blockStyle = this.workspace
1261
+ .getRenderer()
1262
+ .getConstants()
1263
+ .getBlockStyle(blockStyleName);
1264
+
1265
+ if (this.styleName_) {
1266
+ dom.removeClass(this.svgGroup, this.styleName_);
1267
+ }
1268
+
1269
+ if (blockStyle) {
1270
+ this.hat = blockStyle.hat;
1271
+ this.pathObject.setStyle?.(blockStyle);
1272
+ // Set colour to match Block.
1273
+ this.colour_ = blockStyle.colourPrimary;
1274
+ this.style = blockStyle;
1275
+
1276
+ this.applyColour();
1277
+
1278
+ dom.addClass(this.svgGroup, blockStyleName);
1279
+ this.styleName_ = blockStyleName;
1280
+ } else {
1281
+ throw Error('Invalid style name: ' + blockStyleName);
1282
+ }
1283
+ }
1284
+
1285
+ /**
1286
+ * Returns the BlockStyle object used to style this block.
1287
+ *
1288
+ * @returns This block's style object.
1289
+ */
1290
+ getStyle(): BlockStyle {
1291
+ return this.style;
1292
+ }
1293
+
1294
+ /**
1295
+ * Move this block to the front of the visible workspace.
1296
+ * <g> tags do not respect z-index so SVG renders them in the
1297
+ * order that they are in the DOM. By placing this block first within the
1298
+ * block group's <g>, it will render on top of any other blocks.
1299
+ * Use sparingly, this method is expensive because it reorders the DOM
1300
+ * nodes.
1301
+ *
1302
+ * @param blockOnly True to only move this block to the front without
1303
+ * adjusting its parents.
1304
+ */
1305
+ bringToFront(blockOnly = false) {
1306
+ const previouslyFocused = getFocusManager().getFocusedNode();
1307
+ /* eslint-disable-next-line @typescript-eslint/no-this-alias */
1308
+ let block: this | null = this;
1309
+ if (block.isDeadOrDying()) {
1310
+ return;
1311
+ }
1312
+ do {
1313
+ const root = block.getSvgRoot();
1314
+ const parent = root.parentNode;
1315
+ const childNodes = parent!.childNodes;
1316
+ // Avoid moving the block if it's already at the bottom.
1317
+ if (childNodes[childNodes.length - 1] !== root) {
1318
+ parent!.appendChild(root);
1319
+ }
1320
+ if (blockOnly) break;
1321
+ block = block.getParent();
1322
+ } while (block);
1323
+ if (previouslyFocused) {
1324
+ // Bringing a block to the front of the stack doesn't fundamentally change
1325
+ // the logical structure of the page, but it does change element ordering
1326
+ // which can take automatically take away focus from a node. Ensure focus
1327
+ // is restored to avoid a discontinuity.
1328
+ getFocusManager().focusNode(previouslyFocused);
1329
+ }
1330
+ }
1331
+
1332
+ /**
1333
+ * Set whether this block can chain onto the bottom of another block.
1334
+ *
1335
+ * @param newBoolean True if there can be a previous statement.
1336
+ * @param opt_check Statement type or list of statement types. Null/undefined
1337
+ * if any type could be connected.
1338
+ */
1339
+ override setPreviousStatement(
1340
+ newBoolean: boolean,
1341
+ opt_check?: string | string[] | null,
1342
+ ) {
1343
+ super.setPreviousStatement(newBoolean, opt_check);
1344
+ this.queueRender();
1345
+ }
1346
+
1347
+ /**
1348
+ * Set whether another block can chain onto the bottom of this block.
1349
+ *
1350
+ * @param newBoolean True if there can be a next statement.
1351
+ * @param opt_check Statement type or list of statement types. Null/undefined
1352
+ * if any type could be connected.
1353
+ */
1354
+ override setNextStatement(
1355
+ newBoolean: boolean,
1356
+ opt_check?: string | string[] | null,
1357
+ ) {
1358
+ super.setNextStatement(newBoolean, opt_check);
1359
+ this.queueRender();
1360
+ }
1361
+
1362
+ /**
1363
+ * Set whether this block returns a value.
1364
+ *
1365
+ * @param newBoolean True if there is an output.
1366
+ * @param opt_check Returned type or list of returned types. Null or
1367
+ * undefined if any type could be returned (e.g. variable get).
1368
+ */
1369
+ override setOutput(
1370
+ newBoolean: boolean,
1371
+ opt_check?: string | string[] | null,
1372
+ ) {
1373
+ super.setOutput(newBoolean, opt_check);
1374
+ this.queueRender();
1375
+ }
1376
+
1377
+ /**
1378
+ * Set whether value inputs are arranged horizontally or vertically.
1379
+ *
1380
+ * @param newBoolean True if inputs are horizontal.
1381
+ */
1382
+ override setInputsInline(newBoolean: boolean) {
1383
+ super.setInputsInline(newBoolean);
1384
+ this.queueRender();
1385
+ }
1386
+
1387
+ /**
1388
+ * Remove an input from this block.
1389
+ *
1390
+ * @param name The name of the input.
1391
+ * @param opt_quiet True to prevent error if input is not present.
1392
+ * @returns True if operation succeeds, false if input is not present and
1393
+ * opt_quiet is true
1394
+ * @throws {Error} if the input is not present and opt_quiet is not true.
1395
+ */
1396
+ override removeInput(name: string, opt_quiet?: boolean): boolean {
1397
+ const removed = super.removeInput(name, opt_quiet);
1398
+ this.queueRender();
1399
+ return removed;
1400
+ }
1401
+
1402
+ /**
1403
+ * Move a numbered input to a different location on this block.
1404
+ *
1405
+ * @param inputIndex Index of the input to move.
1406
+ * @param refIndex Index of input that should be after the moved input.
1407
+ */
1408
+ override moveNumberedInputBefore(inputIndex: number, refIndex: number) {
1409
+ super.moveNumberedInputBefore(inputIndex, refIndex);
1410
+ this.queueRender();
1411
+ }
1412
+
1413
+ /** @override */
1414
+ override appendInput(input: Input): Input {
1415
+ super.appendInput(input);
1416
+ this.queueRender();
1417
+ return input;
1418
+ }
1419
+
1420
+ /**
1421
+ * Sets whether this block's connections are tracked in the database or not.
1422
+ *
1423
+ * Used by the deserializer to be more efficient. Setting a connection's
1424
+ * tracked_ value to false keeps it from adding itself to the db when it
1425
+ * gets its first moveTo call, saving expensive ops for later.
1426
+ *
1427
+ * @param track If true, start tracking. If false, stop tracking.
1428
+ * @internal
1429
+ */
1430
+ setConnectionTracking(track: boolean) {
1431
+ if (this.previousConnection) {
1432
+ this.previousConnection.setTracking(track);
1433
+ }
1434
+ if (this.outputConnection) {
1435
+ this.outputConnection.setTracking(track);
1436
+ }
1437
+ if (this.nextConnection) {
1438
+ this.nextConnection.setTracking(track);
1439
+ const child = this.nextConnection.targetBlock();
1440
+ if (child) {
1441
+ child.setConnectionTracking(track);
1442
+ }
1443
+ }
1444
+
1445
+ if (this.collapsed_) {
1446
+ // When track is true, we don't want to start tracking collapsed
1447
+ // connections. When track is false, we're already not tracking
1448
+ // collapsed connections, so no need to update.
1449
+ return;
1450
+ }
1451
+
1452
+ for (let i = 0; i < this.inputList.length; i++) {
1453
+ const conn = this.inputList[i].connection as RenderedConnection;
1454
+ if (conn) {
1455
+ conn.setTracking(track);
1456
+
1457
+ // Pass tracking on down the chain.
1458
+ const block = conn.targetBlock();
1459
+ if (block) {
1460
+ block.setConnectionTracking(track);
1461
+ }
1462
+ }
1463
+ }
1464
+ }
1465
+
1466
+ /**
1467
+ * Returns connections originating from this block.
1468
+ *
1469
+ * @param all If true, return all connections even hidden ones.
1470
+ * Otherwise, for a collapsed block don't return inputs connections.
1471
+ * @returns Array of connections.
1472
+ * @internal
1473
+ */
1474
+ override getConnections_(all: boolean): RenderedConnection[] {
1475
+ const myConnections = [];
1476
+ if (this.outputConnection) {
1477
+ myConnections.push(this.outputConnection);
1478
+ }
1479
+ if (this.previousConnection) {
1480
+ myConnections.push(this.previousConnection);
1481
+ }
1482
+ if (this.nextConnection) {
1483
+ myConnections.push(this.nextConnection);
1484
+ }
1485
+ if (all || !this.collapsed_) {
1486
+ for (let i = 0, input; (input = this.inputList[i]); i++) {
1487
+ if (input.connection) {
1488
+ myConnections.push(input.connection as RenderedConnection);
1489
+ }
1490
+ }
1491
+ }
1492
+ return myConnections;
1493
+ }
1494
+
1495
+ /**
1496
+ * Walks down a stack of blocks and finds the last next connection on the
1497
+ * stack.
1498
+ *
1499
+ * @param ignoreShadows If true,the last connection on a non-shadow block will
1500
+ * be returned. If false, this will follow shadows to find the last
1501
+ * connection.
1502
+ * @returns The last next connection on the stack, or null.
1503
+ * @internal
1504
+ */
1505
+ override lastConnectionInStack(
1506
+ ignoreShadows: boolean,
1507
+ ): RenderedConnection | null {
1508
+ return super.lastConnectionInStack(ignoreShadows) as RenderedConnection;
1509
+ }
1510
+
1511
+ /**
1512
+ * Find the connection on this block that corresponds to the given connection
1513
+ * on the other block.
1514
+ * Used to match connections between a block and its insertion marker.
1515
+ *
1516
+ * @param otherBlock The other block to match against.
1517
+ * @param conn The other connection to match.
1518
+ * @returns The matching connection on this block, or null.
1519
+ * @internal
1520
+ */
1521
+ override getMatchingConnection(
1522
+ otherBlock: Block,
1523
+ conn: Connection,
1524
+ ): RenderedConnection | null {
1525
+ return super.getMatchingConnection(otherBlock, conn) as RenderedConnection;
1526
+ }
1527
+
1528
+ /**
1529
+ * Create a connection of the specified type.
1530
+ *
1531
+ * @param type The type of the connection to create.
1532
+ * @returns A new connection of the specified type.
1533
+ * @internal
1534
+ */
1535
+ override makeConnection_(type: ConnectionType): RenderedConnection {
1536
+ return new RenderedConnection(this, type);
1537
+ }
1538
+
1539
+ /**
1540
+ * Return the next statement block directly connected to this block.
1541
+ *
1542
+ * @returns The next statement block or null.
1543
+ */
1544
+ override getNextBlock(): BlockSvg | null {
1545
+ return super.getNextBlock() as BlockSvg;
1546
+ }
1547
+
1548
+ /**
1549
+ * Returns the block connected to the previous connection.
1550
+ *
1551
+ * @returns The previous statement block or null.
1552
+ */
1553
+ override getPreviousBlock(): BlockSvg | null {
1554
+ return super.getPreviousBlock() as BlockSvg;
1555
+ }
1556
+
1557
+ /**
1558
+ * Bumps unconnected blocks out of alignment.
1559
+ *
1560
+ * Two blocks which aren't actually connected should not coincidentally line
1561
+ * up on screen, because that creates confusion for end-users.
1562
+ */
1563
+ override bumpNeighbours() {
1564
+ const root = this.getRootBlock();
1565
+ if (
1566
+ this.isDeadOrDying() ||
1567
+ this.workspace.isDragging() ||
1568
+ root.isInFlyout
1569
+ ) {
1570
+ return;
1571
+ }
1572
+
1573
+ function neighbourIsInStack(neighbour: RenderedConnection) {
1574
+ return neighbour.getSourceBlock().getRootBlock() === root;
1575
+ }
1576
+
1577
+ for (const conn of this.getConnections_(false)) {
1578
+ if (conn.isSuperior()) {
1579
+ // Recurse down the block stack.
1580
+ conn.targetBlock()?.bumpNeighbours();
1581
+ }
1582
+
1583
+ for (const neighbour of conn.neighbours(config.snapRadius)) {
1584
+ if (neighbourIsInStack(neighbour)) continue;
1585
+ if (conn.isConnected() && neighbour.isConnected()) continue;
1586
+
1587
+ if (conn.isSuperior()) {
1588
+ neighbour.bumpAwayFrom(conn, /* initiatedByThis = */ false);
1589
+ } else {
1590
+ conn.bumpAwayFrom(neighbour, /* initiatedByThis = */ true);
1591
+ }
1592
+ }
1593
+ }
1594
+ }
1595
+
1596
+ /**
1597
+ * Snap to grid, and then bump neighbouring blocks away at the end of the next
1598
+ * render.
1599
+ */
1600
+ scheduleSnapAndBump() {
1601
+ this.snapToGrid();
1602
+ this.bumpNeighbours();
1603
+ }
1604
+
1605
+ /**
1606
+ * Position a block so that it doesn't move the target block when connected.
1607
+ * The block to position is usually either the first block in a dragged stack
1608
+ * or an insertion marker.
1609
+ *
1610
+ * @param sourceConnection The connection on the moving block's stack.
1611
+ * @param originalOffsetToTarget The connection original offset to the target connection
1612
+ * @param originalOffsetInBlock The connection original offset in its block
1613
+ * @internal
1614
+ */
1615
+ positionNearConnection(
1616
+ sourceConnection: RenderedConnection,
1617
+ originalOffsetToTarget: {x: number; y: number},
1618
+ originalOffsetInBlock: Coordinate,
1619
+ ) {
1620
+ // We only need to position the new block if it's before the existing one,
1621
+ // otherwise its position is set by the previous block.
1622
+ if (
1623
+ sourceConnection.type === ConnectionType.NEXT_STATEMENT ||
1624
+ sourceConnection.type === ConnectionType.INPUT_VALUE
1625
+ ) {
1626
+ // First move the block to match the orginal target connection position
1627
+ let dx = originalOffsetToTarget.x;
1628
+ let dy = originalOffsetToTarget.y;
1629
+ // Then adjust its position according to the connection resize
1630
+ dx += originalOffsetInBlock.x - sourceConnection.getOffsetInBlock().x;
1631
+ dy += originalOffsetInBlock.y - sourceConnection.getOffsetInBlock().y;
1632
+
1633
+ this.moveBy(dx, dy);
1634
+ }
1635
+ }
1636
+
1637
+ /**
1638
+ * Find all the blocks that are directly nested inside this one.
1639
+ * Includes value and statement inputs, as well as any following statement.
1640
+ * Excludes any connection on an output tab or any preceding statement.
1641
+ * Blocks are optionally sorted by position; top to bottom.
1642
+ *
1643
+ * @param ordered Sort the list if true.
1644
+ * @returns Array of blocks.
1645
+ */
1646
+ override getChildren(ordered: boolean): BlockSvg[] {
1647
+ return super.getChildren(ordered) as BlockSvg[];
1648
+ }
1649
+
1650
+ /**
1651
+ * Triggers a rerender after a delay to allow for batching.
1652
+ *
1653
+ * @returns A promise that resolves after the currently queued renders have
1654
+ * been completed. Used for triggering other behavior that relies on
1655
+ * updated size/position location for the block.
1656
+ * @internal
1657
+ */
1658
+ queueRender(): Promise<void> {
1659
+ return renderManagement.queueRender(this);
1660
+ }
1661
+
1662
+ /**
1663
+ * Immediately lays out and reflows a block based on its contents and
1664
+ * settings.
1665
+ */
1666
+ render() {
1667
+ this.queueRender();
1668
+ renderManagement.triggerQueuedRenders();
1669
+ }
1670
+
1671
+ /**
1672
+ * Renders this block in a way that's compatible with the more efficient
1673
+ * render management system.
1674
+ *
1675
+ * @internal
1676
+ */
1677
+ renderEfficiently() {
1678
+ dom.startTextWidthCache();
1679
+
1680
+ if (this.isCollapsed()) {
1681
+ this.updateCollapsed();
1682
+ }
1683
+
1684
+ if (!this.isEnabled()) {
1685
+ this.updateDisabled();
1686
+ }
1687
+
1688
+ this.workspace.getRenderer().render(this);
1689
+ this.tightenChildrenEfficiently();
1690
+
1691
+ dom.stopTextWidthCache();
1692
+ }
1693
+
1694
+ /**
1695
+ * Tightens all children of this block so they are snuggly rendered against
1696
+ * their parent connections.
1697
+ *
1698
+ * Does not update connection locations, so that they can be updated more
1699
+ * efficiently by the render management system.
1700
+ *
1701
+ * @internal
1702
+ */
1703
+ tightenChildrenEfficiently() {
1704
+ for (const input of this.inputList) {
1705
+ const conn = input.connection as RenderedConnection;
1706
+ if (conn) conn.tightenEfficiently();
1707
+ }
1708
+ if (this.nextConnection) this.nextConnection.tightenEfficiently();
1709
+ }
1710
+
1711
+ /**
1712
+ * Returns a bounding box describing the dimensions of this block
1713
+ * and any blocks stacked below it.
1714
+ *
1715
+ * @returns Object with height and width properties in workspace units.
1716
+ * @internal
1717
+ */
1718
+ getHeightWidth(): {height: number; width: number} {
1719
+ let height = this.height;
1720
+ let width = this.width;
1721
+ // Recursively add size of subsequent blocks.
1722
+ const nextBlock = this.getNextBlock();
1723
+ if (nextBlock) {
1724
+ const nextHeightWidth = nextBlock.getHeightWidth();
1725
+ const tabHeight = this.workspace
1726
+ .getRenderer()
1727
+ .getConstants().NOTCH_HEIGHT;
1728
+ height += nextHeightWidth.height - tabHeight;
1729
+ width = Math.max(width, nextHeightWidth.width);
1730
+ }
1731
+ return {height, width};
1732
+ }
1733
+
1734
+ /**
1735
+ * Visual effect to show that if the dragging block is dropped, this block
1736
+ * will be replaced. If a shadow block, it will disappear. Otherwise it will
1737
+ * bump.
1738
+ *
1739
+ * @param add True if highlighting should be added.
1740
+ * @internal
1741
+ */
1742
+ fadeForReplacement(add: boolean) {
1743
+ // TODO (7204): Remove these internal methods.
1744
+ (this.pathObject as AnyDuringMigration).updateReplacementFade(add);
1745
+ }
1746
+
1747
+ /**
1748
+ * Visual effect to show that if the dragging block is dropped it will connect
1749
+ * to this input.
1750
+ *
1751
+ * @param conn The connection on the input to highlight.
1752
+ * @param add True if highlighting should be added.
1753
+ * @internal
1754
+ */
1755
+ highlightShapeForInput(conn: RenderedConnection, add: boolean) {
1756
+ // TODO (7204): Remove these internal methods.
1757
+ (this.pathObject as AnyDuringMigration).updateShapeForInputHighlight(
1758
+ conn,
1759
+ add,
1760
+ );
1761
+ }
1762
+
1763
+ /**
1764
+ * Returns the drag strategy currently in use by this block.
1765
+ *
1766
+ * @internal
1767
+ * @returns This block's drag strategy.
1768
+ */
1769
+ getDragStrategy(): IDragStrategy {
1770
+ return this.dragStrategy;
1771
+ }
1772
+
1773
+ /** Sets the drag strategy for this block. */
1774
+ setDragStrategy(dragStrategy: IDragStrategy) {
1775
+ this.dragStrategy = dragStrategy;
1776
+ }
1777
+
1778
+ /** Returns whether this block is copyable or not. */
1779
+ isCopyable(): boolean {
1780
+ return this.isOwnDeletable() && this.isOwnMovable();
1781
+ }
1782
+
1783
+ /** Returns whether this block is movable or not. */
1784
+ override isMovable(): boolean {
1785
+ return this.dragStrategy.isMovable();
1786
+ }
1787
+
1788
+ /** Starts a drag on the block. */
1789
+ startDrag(e?: PointerEvent): void {
1790
+ this.dragStrategy.startDrag(e);
1791
+ }
1792
+
1793
+ /** Drags the block to the given location. */
1794
+ drag(newLoc: Coordinate, e?: PointerEvent): void {
1795
+ this.dragStrategy.drag(newLoc, e);
1796
+ }
1797
+
1798
+ /** Ends the drag on the block. */
1799
+ endDrag(e?: PointerEvent): void {
1800
+ this.dragStrategy.endDrag(e);
1801
+ }
1802
+
1803
+ /** Moves the block back to where it was at the start of a drag. */
1804
+ revertDrag(): void {
1805
+ this.dragStrategy.revertDrag();
1806
+ }
1807
+
1808
+ /**
1809
+ * Returns a representation of this block that can be displayed in a flyout.
1810
+ */
1811
+ toFlyoutInfo(): FlyoutItemInfo[] {
1812
+ const json: FlyoutItemInfo = {
1813
+ kind: 'BLOCK',
1814
+ ...blocks.save(this),
1815
+ };
1816
+
1817
+ const toRemove = new Set(['id', 'height', 'width', 'pinned', 'enabled']);
1818
+
1819
+ // Traverse the JSON recursively.
1820
+ const traverseJson = function (json: {[key: string]: unknown}) {
1821
+ for (const key in json) {
1822
+ if (toRemove.has(key)) {
1823
+ delete json[key];
1824
+ } else if (typeof json[key] === 'object') {
1825
+ traverseJson(json[key] as {[key: string]: unknown});
1826
+ }
1827
+ }
1828
+ };
1829
+
1830
+ traverseJson(json as unknown as {[key: string]: unknown});
1831
+ return [json];
1832
+ }
1833
+
1834
+ override jsonInit(json: AnyDuringMigration): void {
1835
+ super.jsonInit(json);
1836
+
1837
+ if (json['classes']) {
1838
+ this.addClass(
1839
+ Array.isArray(json['classes'])
1840
+ ? json['classes'].join(' ')
1841
+ : json['classes'],
1842
+ );
1843
+ }
1844
+ }
1845
+
1846
+ /** See IFocusableNode.getFocusableElement. */
1847
+ getFocusableElement(): HTMLElement | SVGElement {
1848
+ return this.pathObject.svgPath;
1849
+ }
1850
+
1851
+ /** See IFocusableNode.getFocusableTree. */
1852
+ getFocusableTree(): IFocusableTree {
1853
+ return this.workspace;
1854
+ }
1855
+
1856
+ /** See IFocusableNode.onNodeFocus. */
1857
+ onNodeFocus(): void {
1858
+ this.select();
1859
+ this.workspace.scrollBoundsIntoView(
1860
+ this.getBoundingRectangleWithoutChildren(),
1861
+ );
1862
+ }
1863
+
1864
+ /** See IFocusableNode.onNodeBlur. */
1865
+ onNodeBlur(): void {
1866
+ this.unselect();
1867
+ }
1868
+
1869
+ /** See IFocusableNode.canBeFocused. */
1870
+ canBeFocused(): boolean {
1871
+ return true;
1872
+ }
1873
+ }