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.
- package/.prettierignore +30 -0
- package/.prettierrc.js +15 -0
- package/api-extractor.json +390 -0
- package/appengine/.gcloudignore +20 -0
- package/appengine/README.txt +42 -0
- package/appengine/add_timestamps.py +69 -0
- package/appengine/app.yaml +106 -0
- package/appengine/apple-touch-icon.png +0 -0
- package/appengine/blockly_compressed.js +11 -0
- package/appengine/expiration.py +52 -0
- package/appengine/favicon.ico +0 -0
- package/appengine/index.yaml +11 -0
- package/appengine/main.py +39 -0
- package/appengine/redirect.html +107 -0
- package/appengine/requirements.txt +1 -0
- package/appengine/robots.txt +2 -0
- package/appengine/storage.js +190 -0
- package/appengine/storage.py +125 -0
- package/blocks/blocks.ts +44 -0
- package/blocks/lists.ts +1065 -0
- package/blocks/logic.ts +712 -0
- package/blocks/loops.ts +408 -0
- package/blocks/math.ts +591 -0
- package/blocks/procedures.ts +1366 -0
- package/blocks/text.ts +1001 -0
- package/blocks/variables.ts +181 -0
- package/blocks/variables_dynamic.ts +192 -0
- package/core/any_aliases.ts +8 -0
- package/core/block.ts +2511 -0
- package/core/block_animations.ts +233 -0
- package/core/block_flyout_inflater.ts +283 -0
- package/core/block_svg.ts +1873 -0
- package/core/blockly.ts +644 -0
- package/core/blockly_options.ts +71 -0
- package/core/blocks.ts +18 -0
- package/core/browser_events.ts +256 -0
- package/core/bubbles/bubble.ts +732 -0
- package/core/bubbles/mini_workspace_bubble.ts +292 -0
- package/core/bubbles/text_bubble.ts +112 -0
- package/core/bubbles/textinput_bubble.ts +296 -0
- package/core/bubbles.ts +12 -0
- package/core/bump_objects.ts +188 -0
- package/core/button_flyout_inflater.ts +76 -0
- package/core/clipboard/block_paster.ts +154 -0
- package/core/clipboard/registry.ts +31 -0
- package/core/clipboard/workspace_comment_paster.ts +95 -0
- package/core/clipboard.ts +197 -0
- package/core/comments/collapse_comment_bar_button.ts +102 -0
- package/core/comments/comment_bar_button.ts +105 -0
- package/core/comments/comment_editor.ts +220 -0
- package/core/comments/comment_view.ts +773 -0
- package/core/comments/delete_comment_bar_button.ts +106 -0
- package/core/comments/rendered_workspace_comment.ts +361 -0
- package/core/comments/workspace_comment.ts +247 -0
- package/core/comments.ts +13 -0
- package/core/common.ts +347 -0
- package/core/component_manager.ts +247 -0
- package/core/config.ts +65 -0
- package/core/connection.ts +807 -0
- package/core/connection_checker.ts +348 -0
- package/core/connection_db.ts +297 -0
- package/core/connection_type.ts +21 -0
- package/core/constants.ts +23 -0
- package/core/contextmenu.ts +295 -0
- package/core/contextmenu_items.ts +684 -0
- package/core/contextmenu_registry.ts +278 -0
- package/core/css.ts +518 -0
- package/core/delete_area.ts +77 -0
- package/core/dialog.ts +167 -0
- package/core/drag_target.ts +97 -0
- package/core/dragging/block_drag_strategy.ts +523 -0
- package/core/dragging/bubble_drag_strategy.ts +49 -0
- package/core/dragging/comment_drag_strategy.ts +92 -0
- package/core/dragging/dragger.ts +174 -0
- package/core/dragging.ts +12 -0
- package/core/dropdowndiv.ts +792 -0
- package/core/events/events.ts +109 -0
- package/core/events/events_abstract.ts +129 -0
- package/core/events/events_block_base.ts +87 -0
- package/core/events/events_block_change.ts +259 -0
- package/core/events/events_block_create.ts +185 -0
- package/core/events/events_block_delete.ts +182 -0
- package/core/events/events_block_drag.ts +116 -0
- package/core/events/events_block_field_intermediate_change.ts +166 -0
- package/core/events/events_block_move.ts +306 -0
- package/core/events/events_bubble_open.ts +121 -0
- package/core/events/events_click.ts +110 -0
- package/core/events/events_comment_base.ts +126 -0
- package/core/events/events_comment_change.ts +156 -0
- package/core/events/events_comment_collapse.ts +103 -0
- package/core/events/events_comment_create.ts +114 -0
- package/core/events/events_comment_delete.ts +113 -0
- package/core/events/events_comment_drag.ts +99 -0
- package/core/events/events_comment_move.ts +206 -0
- package/core/events/events_comment_resize.ts +169 -0
- package/core/events/events_selected.ts +97 -0
- package/core/events/events_theme_change.ts +84 -0
- package/core/events/events_toolbox_item_select.ts +96 -0
- package/core/events/events_trashcan_open.ts +87 -0
- package/core/events/events_ui_base.ts +47 -0
- package/core/events/events_var_base.ts +88 -0
- package/core/events/events_var_create.ts +131 -0
- package/core/events/events_var_delete.ts +124 -0
- package/core/events/events_var_rename.ts +133 -0
- package/core/events/events_var_type_change.ts +122 -0
- package/core/events/events_viewport.ts +149 -0
- package/core/events/predicates.ts +166 -0
- package/core/events/type.ts +87 -0
- package/core/events/utils.ts +455 -0
- package/core/events/workspace_events.ts +46 -0
- package/core/extensions.ts +497 -0
- package/core/field.ts +1445 -0
- package/core/field_checkbox.ts +266 -0
- package/core/field_dropdown.ts +907 -0
- package/core/field_image.ts +307 -0
- package/core/field_input.ts +826 -0
- package/core/field_label.ts +150 -0
- package/core/field_label_serializable.ts +73 -0
- package/core/field_number.ts +381 -0
- package/core/field_registry.ts +115 -0
- package/core/field_textinput.ts +125 -0
- package/core/field_variable.ts +654 -0
- package/core/flyout_base.ts +1013 -0
- package/core/flyout_button.ts +447 -0
- package/core/flyout_horizontal.ts +375 -0
- package/core/flyout_item.ts +33 -0
- package/core/flyout_metrics_manager.ts +90 -0
- package/core/flyout_navigator.ts +24 -0
- package/core/flyout_separator.ts +94 -0
- package/core/flyout_vertical.ts +354 -0
- package/core/focus_manager.ts +675 -0
- package/core/generator.ts +611 -0
- package/core/gesture.ts +1190 -0
- package/core/grid.ts +267 -0
- package/core/icons/comment_icon.ts +429 -0
- package/core/icons/exceptions.ts +23 -0
- package/core/icons/icon.ts +204 -0
- package/core/icons/icon_types.ts +32 -0
- package/core/icons/mutator_icon.ts +360 -0
- package/core/icons/registry.ts +33 -0
- package/core/icons/warning_icon.ts +226 -0
- package/core/icons.ts +24 -0
- package/core/inject.ts +332 -0
- package/core/inputs/align.ts +14 -0
- package/core/inputs/dummy_input.ts +26 -0
- package/core/inputs/end_row_input.ts +31 -0
- package/core/inputs/input.ts +317 -0
- package/core/inputs/input_types.ts +27 -0
- package/core/inputs/statement_input.ts +34 -0
- package/core/inputs/value_input.ts +30 -0
- package/core/inputs.ts +23 -0
- package/core/insertion_marker_previewer.ts +268 -0
- package/core/interfaces/i_autohideable.ts +27 -0
- package/core/interfaces/i_bounded_element.ts +31 -0
- package/core/interfaces/i_bubble.ts +64 -0
- package/core/interfaces/i_collapsible_toolbox_item.ts +33 -0
- package/core/interfaces/i_comment_icon.ts +47 -0
- package/core/interfaces/i_component.ts +19 -0
- package/core/interfaces/i_connection_checker.ts +101 -0
- package/core/interfaces/i_connection_previewer.ts +50 -0
- package/core/interfaces/i_contextmenu.ts +21 -0
- package/core/interfaces/i_copyable.ts +39 -0
- package/core/interfaces/i_deletable.ts +35 -0
- package/core/interfaces/i_delete_area.ts +28 -0
- package/core/interfaces/i_drag_target.ts +67 -0
- package/core/interfaces/i_draggable.ts +73 -0
- package/core/interfaces/i_dragger.ts +35 -0
- package/core/interfaces/i_flyout.ts +190 -0
- package/core/interfaces/i_flyout_inflater.ts +51 -0
- package/core/interfaces/i_focusable_node.ts +120 -0
- package/core/interfaces/i_focusable_tree.ts +144 -0
- package/core/interfaces/i_has_bubble.ts +37 -0
- package/core/interfaces/i_icon.ts +116 -0
- package/core/interfaces/i_keyboard_accessible.ts +22 -0
- package/core/interfaces/i_legacy_procedure_blocks.ts +51 -0
- package/core/interfaces/i_metrics_manager.ts +150 -0
- package/core/interfaces/i_movable.ts +19 -0
- package/core/interfaces/i_navigation_policy.ts +69 -0
- package/core/interfaces/i_observable.ts +28 -0
- package/core/interfaces/i_parameter_model.ts +51 -0
- package/core/interfaces/i_paster.ts +25 -0
- package/core/interfaces/i_positionable.ts +33 -0
- package/core/interfaces/i_procedure_block.ts +29 -0
- package/core/interfaces/i_procedure_map.ts +18 -0
- package/core/interfaces/i_procedure_model.ts +71 -0
- package/core/interfaces/i_registrable.ts +12 -0
- package/core/interfaces/i_rendered_element.ts +19 -0
- package/core/interfaces/i_selectable.ts +41 -0
- package/core/interfaces/i_selectable_toolbox_item.ts +63 -0
- package/core/interfaces/i_serializable.ts +32 -0
- package/core/interfaces/i_serializer.ts +51 -0
- package/core/interfaces/i_styleable.ts +26 -0
- package/core/interfaces/i_toolbox.ts +121 -0
- package/core/interfaces/i_toolbox_item.ts +83 -0
- package/core/interfaces/i_variable_backed_parameter_model.ts +23 -0
- package/core/interfaces/i_variable_map.ts +65 -0
- package/core/interfaces/i_variable_model.ts +57 -0
- package/core/internal_constants.ts +47 -0
- package/core/keyboard_nav/block_comment_navigation_policy.ts +76 -0
- package/core/keyboard_nav/block_navigation_policy.ts +213 -0
- package/core/keyboard_nav/comment_bar_button_navigation_policy.ts +88 -0
- package/core/keyboard_nav/comment_editor_navigation_policy.ts +54 -0
- package/core/keyboard_nav/connection_navigation_policy.ts +155 -0
- package/core/keyboard_nav/field_navigation_policy.ts +85 -0
- package/core/keyboard_nav/flyout_button_navigation_policy.ts +76 -0
- package/core/keyboard_nav/flyout_navigation_policy.ts +111 -0
- package/core/keyboard_nav/flyout_separator_navigation_policy.ts +53 -0
- package/core/keyboard_nav/icon_navigation_policy.ts +93 -0
- package/core/keyboard_nav/line_cursor.ts +414 -0
- package/core/keyboard_nav/marker.ts +86 -0
- package/core/keyboard_nav/workspace_comment_navigation_policy.ts +77 -0
- package/core/keyboard_nav/workspace_navigation_policy.ts +77 -0
- package/core/keyboard_navigation_controller.ts +63 -0
- package/core/label_flyout_inflater.ts +75 -0
- package/core/layer_manager.ts +229 -0
- package/core/layers.ts +17 -0
- package/core/main.ts +31 -0
- package/core/marker_manager.ts +116 -0
- package/core/menu.ts +486 -0
- package/core/menu_separator.ts +38 -0
- package/core/menuitem.ts +289 -0
- package/core/metrics_manager.ts +486 -0
- package/core/msg.ts +27 -0
- package/core/names.ts +275 -0
- package/core/navigator.ts +123 -0
- package/core/observable_procedure_map.ts +66 -0
- package/core/options.ts +377 -0
- package/core/positionable_helpers.ts +186 -0
- package/core/procedures.ts +622 -0
- package/core/registry.ts +400 -0
- package/core/render_management.ts +193 -0
- package/core/rendered_connection.ts +690 -0
- package/core/renderers/common/block_rendering.ts +122 -0
- package/core/renderers/common/constants.ts +1226 -0
- package/core/renderers/common/drawer.ts +511 -0
- package/core/renderers/common/i_path_object.ts +109 -0
- package/core/renderers/common/info.ts +768 -0
- package/core/renderers/common/path_object.ts +260 -0
- package/core/renderers/common/renderer.ts +236 -0
- package/core/renderers/geras/constants.ts +42 -0
- package/core/renderers/geras/drawer.ts +166 -0
- package/core/renderers/geras/geras.ts +31 -0
- package/core/renderers/geras/highlight_constants.ts +342 -0
- package/core/renderers/geras/highlighter.ts +312 -0
- package/core/renderers/geras/info.ts +476 -0
- package/core/renderers/geras/measurables/inline_input.ts +36 -0
- package/core/renderers/geras/measurables/statement_input.ts +35 -0
- package/core/renderers/geras/path_object.ts +121 -0
- package/core/renderers/geras/renderer.ts +127 -0
- package/core/renderers/measurables/base.ts +40 -0
- package/core/renderers/measurables/bottom_row.ts +103 -0
- package/core/renderers/measurables/connection.ts +41 -0
- package/core/renderers/measurables/external_value_input.ts +51 -0
- package/core/renderers/measurables/field.ts +48 -0
- package/core/renderers/measurables/hat.ts +32 -0
- package/core/renderers/measurables/icon.ts +40 -0
- package/core/renderers/measurables/in_row_spacer.ts +36 -0
- package/core/renderers/measurables/inline_input.ts +61 -0
- package/core/renderers/measurables/input_connection.ts +56 -0
- package/core/renderers/measurables/input_row.ts +62 -0
- package/core/renderers/measurables/jagged_edge.ts +35 -0
- package/core/renderers/measurables/next_connection.ts +41 -0
- package/core/renderers/measurables/output_connection.ts +42 -0
- package/core/renderers/measurables/previous_connection.ts +41 -0
- package/core/renderers/measurables/round_corner.ts +41 -0
- package/core/renderers/measurables/row.ts +190 -0
- package/core/renderers/measurables/spacer_row.ts +43 -0
- package/core/renderers/measurables/square_corner.ts +39 -0
- package/core/renderers/measurables/statement_input.ts +47 -0
- package/core/renderers/measurables/top_row.ts +108 -0
- package/core/renderers/measurables/types.ts +362 -0
- package/core/renderers/thrasos/info.ts +327 -0
- package/core/renderers/thrasos/renderer.ts +39 -0
- package/core/renderers/thrasos/thrasos.ts +14 -0
- package/core/renderers/zelos/constants.ts +913 -0
- package/core/renderers/zelos/drawer.ts +272 -0
- package/core/renderers/zelos/info.ts +651 -0
- package/core/renderers/zelos/measurables/bottom_row.ts +44 -0
- package/core/renderers/zelos/measurables/inputs.ts +40 -0
- package/core/renderers/zelos/measurables/row_elements.ts +29 -0
- package/core/renderers/zelos/measurables/top_row.ts +50 -0
- package/core/renderers/zelos/path_object.ts +209 -0
- package/core/renderers/zelos/renderer.ts +91 -0
- package/core/renderers/zelos/zelos.ts +31 -0
- package/core/scrollbar.ts +898 -0
- package/core/scrollbar_pair.ts +349 -0
- package/core/separator_flyout_inflater.ts +83 -0
- package/core/serialization/blocks.ts +834 -0
- package/core/serialization/exceptions.ts +112 -0
- package/core/serialization/priorities.ts +25 -0
- package/core/serialization/procedures.ts +158 -0
- package/core/serialization/registry.ts +30 -0
- package/core/serialization/variables.ts +69 -0
- package/core/serialization/workspace_comments.ts +143 -0
- package/core/serialization/workspaces.ts +94 -0
- package/core/serialization.ts +32 -0
- package/core/shortcut_items.ts +405 -0
- package/core/shortcut_registry.ts +451 -0
- package/core/sprites.ts +15 -0
- package/core/theme/classic.ts +40 -0
- package/core/theme/themes.ts +12 -0
- package/core/theme/zelos.ts +80 -0
- package/core/theme.ts +232 -0
- package/core/theme_manager.ts +192 -0
- package/core/toast.ts +219 -0
- package/core/toolbox/category.ts +746 -0
- package/core/toolbox/collapsible_category.ts +287 -0
- package/core/toolbox/separator.ts +108 -0
- package/core/toolbox/toolbox.ts +1210 -0
- package/core/toolbox/toolbox_item.ts +181 -0
- package/core/tooltip.ts +466 -0
- package/core/touch.ts +155 -0
- package/core/trashcan.ts +730 -0
- package/core/utils/aria.ts +158 -0
- package/core/utils/array.ts +24 -0
- package/core/utils/colour.ts +265 -0
- package/core/utils/coordinate.ts +129 -0
- package/core/utils/deprecation.ts +47 -0
- package/core/utils/dom.ts +356 -0
- package/core/utils/drag.ts +74 -0
- package/core/utils/focusable_tree_traverser.ts +126 -0
- package/core/utils/idgenerator.ts +70 -0
- package/core/utils/keycodes.ts +154 -0
- package/core/utils/math.ts +50 -0
- package/core/utils/metrics.ts +86 -0
- package/core/utils/object.ts +33 -0
- package/core/utils/parsing.ts +286 -0
- package/core/utils/rect.ts +142 -0
- package/core/utils/size.ts +62 -0
- package/core/utils/string.ts +289 -0
- package/core/utils/style.ts +219 -0
- package/core/utils/svg.ts +84 -0
- package/core/utils/svg_math.ts +207 -0
- package/core/utils/svg_paths.ts +133 -0
- package/core/utils/toolbox.ts +417 -0
- package/core/utils/useragent.ts +86 -0
- package/core/utils/xml.ts +165 -0
- package/core/utils.ts +59 -0
- package/core/variable_map.ts +476 -0
- package/core/variable_model.ts +150 -0
- package/core/variables.ts +931 -0
- package/core/variables_dynamic.ts +230 -0
- package/core/widgetdiv.ts +349 -0
- package/core/workspace.ts +994 -0
- package/core/workspace_audio.ts +137 -0
- package/core/workspace_dragger.ts +81 -0
- package/core/workspace_svg.ts +2954 -0
- package/core/xml.ts +1126 -0
- package/core/zoom_controls.ts +495 -0
- package/demos/blockfactory/analytics.js +195 -0
- package/demos/blockfactory/app_controller.js +726 -0
- package/demos/blockfactory/block_definition_extractor.js +742 -0
- package/demos/blockfactory/block_exporter_controller.js +311 -0
- package/demos/blockfactory/block_exporter_tools.js +212 -0
- package/demos/blockfactory/block_exporter_view.js +101 -0
- package/demos/blockfactory/block_library_controller.js +325 -0
- package/demos/blockfactory/block_library_storage.js +149 -0
- package/demos/blockfactory/block_library_view.js +178 -0
- package/demos/blockfactory/block_option.js +151 -0
- package/demos/blockfactory/blocks.js +920 -0
- package/demos/blockfactory/cp.css +46 -0
- package/demos/blockfactory/cp.js +179 -0
- package/demos/blockfactory/factory.css +586 -0
- package/demos/blockfactory/factory.js +338 -0
- package/demos/blockfactory/factory_utils.js +1036 -0
- package/demos/blockfactory/icon.png +0 -0
- package/demos/blockfactory/index.html +767 -0
- package/demos/blockfactory/link.png +0 -0
- package/demos/blockfactory/standard_categories.js +384 -0
- package/demos/blockfactory/workspacefactory/wfactory_controller.js +1332 -0
- package/demos/blockfactory/workspacefactory/wfactory_generator.js +224 -0
- package/demos/blockfactory/workspacefactory/wfactory_init.js +541 -0
- package/demos/blockfactory/workspacefactory/wfactory_model.js +548 -0
- package/demos/blockfactory/workspacefactory/wfactory_view.js +424 -0
- package/demos/code/code.js +626 -0
- package/demos/code/icon.png +0 -0
- package/demos/code/icons.png +0 -0
- package/demos/code/index.html +359 -0
- package/demos/code/msg/ar.js +24 -0
- package/demos/code/msg/be-tarask.js +24 -0
- package/demos/code/msg/br.js +24 -0
- package/demos/code/msg/ca.js +24 -0
- package/demos/code/msg/cs.js +24 -0
- package/demos/code/msg/da.js +24 -0
- package/demos/code/msg/de.js +24 -0
- package/demos/code/msg/el.js +24 -0
- package/demos/code/msg/en.js +24 -0
- package/demos/code/msg/es.js +24 -0
- package/demos/code/msg/et.js +24 -0
- package/demos/code/msg/fa.js +24 -0
- package/demos/code/msg/fr.js +24 -0
- package/demos/code/msg/he.js +24 -0
- package/demos/code/msg/hr.js +24 -0
- package/demos/code/msg/hrx.js +24 -0
- package/demos/code/msg/hu.js +24 -0
- package/demos/code/msg/ia.js +24 -0
- package/demos/code/msg/is.js +24 -0
- package/demos/code/msg/it.js +24 -0
- package/demos/code/msg/ja.js +24 -0
- package/demos/code/msg/kab.js +24 -0
- package/demos/code/msg/ko.js +24 -0
- package/demos/code/msg/mk.js +24 -0
- package/demos/code/msg/ms.js +24 -0
- package/demos/code/msg/nb.js +24 -0
- package/demos/code/msg/nl.js +24 -0
- package/demos/code/msg/oc.js +24 -0
- package/demos/code/msg/pl.js +24 -0
- package/demos/code/msg/pms.js +24 -0
- package/demos/code/msg/pt-br.js +24 -0
- package/demos/code/msg/ro.js +24 -0
- package/demos/code/msg/ru.js +24 -0
- package/demos/code/msg/sc.js +24 -0
- package/demos/code/msg/sk.js +24 -0
- package/demos/code/msg/sr.js +24 -0
- package/demos/code/msg/sv.js +24 -0
- package/demos/code/msg/ta.js +24 -0
- package/demos/code/msg/th.js +24 -0
- package/demos/code/msg/tlh.js +24 -0
- package/demos/code/msg/tr.js +24 -0
- package/demos/code/msg/uk.js +24 -0
- package/demos/code/msg/vi.js +24 -0
- package/demos/code/msg/zh-hans.js +24 -0
- package/demos/code/msg/zh-hant.js +24 -0
- package/demos/code/style.css +184 -0
- package/demos/index.html +68 -0
- package/demos/storage/icon.png +0 -0
- package/demos/storage/index.html +104 -0
- package/eslint.config.mjs +314 -0
- package/generators/dart/dart_generator.ts +321 -0
- package/generators/dart/lists.ts +525 -0
- package/generators/dart/logic.ts +157 -0
- package/generators/dart/loops.ts +217 -0
- package/generators/dart/math.ts +559 -0
- package/generators/dart/procedures.ts +138 -0
- package/generators/dart/text.ts +405 -0
- package/generators/dart/variables.ts +32 -0
- package/generators/dart/variables_dynamic.ts +17 -0
- package/generators/dart.ts +50 -0
- package/generators/javascript/javascript_generator.ts +346 -0
- package/generators/javascript/lists.ts +465 -0
- package/generators/javascript/logic.ts +155 -0
- package/generators/javascript/loops.ts +245 -0
- package/generators/javascript/math.ts +450 -0
- package/generators/javascript/procedures.ts +142 -0
- package/generators/javascript/text.ts +418 -0
- package/generators/javascript/variables.ts +32 -0
- package/generators/javascript/variables_dynamic.ts +17 -0
- package/generators/javascript.ts +46 -0
- package/generators/lua/lists.ts +445 -0
- package/generators/lua/logic.ts +144 -0
- package/generators/lua/loops.ts +192 -0
- package/generators/lua/lua_generator.ts +225 -0
- package/generators/lua/math.ts +473 -0
- package/generators/lua/procedures.ts +144 -0
- package/generators/lua/text.ts +380 -0
- package/generators/lua/variables.ts +31 -0
- package/generators/lua/variables_dynamic.ts +17 -0
- package/generators/lua.ts +44 -0
- package/generators/php/lists.ts +585 -0
- package/generators/php/logic.ts +157 -0
- package/generators/php/loops.ts +218 -0
- package/generators/php/math.ts +408 -0
- package/generators/php/php_generator.ts +320 -0
- package/generators/php/procedures.ts +159 -0
- package/generators/php/text.ts +315 -0
- package/generators/php/variables.ts +32 -0
- package/generators/php/variables_dynamic.ts +17 -0
- package/generators/php.ts +46 -0
- package/generators/python/lists.ts +398 -0
- package/generators/python/logic.ts +152 -0
- package/generators/python/loops.ts +251 -0
- package/generators/python/math.ts +434 -0
- package/generators/python/procedures.ts +159 -0
- package/generators/python/python_generator.ts +355 -0
- package/generators/python/text.ts +338 -0
- package/generators/python/variables.ts +31 -0
- package/generators/python/variables_dynamic.ts +17 -0
- package/generators/python.ts +51 -0
- package/gulpfile.mjs +100 -0
- package/jsconfig.json +7 -0
- package/msg/json/README.md +33 -0
- package/msg/json/ab.json +222 -0
- package/msg/json/ace.json +7 -0
- package/msg/json/af.json +34 -0
- package/msg/json/am.json +30 -0
- package/msg/json/ar.json +355 -0
- package/msg/json/ast.json +10 -0
- package/msg/json/az.json +334 -0
- package/msg/json/ba.json +211 -0
- package/msg/json/bcc.json +290 -0
- package/msg/json/be-tarask.json +335 -0
- package/msg/json/be.json +326 -0
- package/msg/json/bg.json +347 -0
- package/msg/json/bn.json +189 -0
- package/msg/json/br.json +334 -0
- package/msg/json/bs.json +166 -0
- package/msg/json/ca.json +341 -0
- package/msg/json/cdo.json +6 -0
- package/msg/json/ce.json +328 -0
- package/msg/json/constants.json +12 -0
- package/msg/json/cs.json +344 -0
- package/msg/json/da.json +346 -0
- package/msg/json/de.json +369 -0
- package/msg/json/diq.json +264 -0
- package/msg/json/dtp.json +198 -0
- package/msg/json/dty.json +97 -0
- package/msg/json/ee.json +160 -0
- package/msg/json/el.json +356 -0
- package/msg/json/en-gb.json +199 -0
- package/msg/json/en.json +423 -0
- package/msg/json/eo.json +337 -0
- package/msg/json/es.json +361 -0
- package/msg/json/et.json +335 -0
- package/msg/json/eu.json +219 -0
- package/msg/json/fa.json +342 -0
- package/msg/json/fi.json +350 -0
- package/msg/json/fo.json +46 -0
- package/msg/json/fr.json +374 -0
- package/msg/json/frr.json +6 -0
- package/msg/json/gl.json +338 -0
- package/msg/json/gn.json +54 -0
- package/msg/json/gor.json +87 -0
- package/msg/json/ha.json +313 -0
- package/msg/json/hak.json +17 -0
- package/msg/json/he.json +355 -0
- package/msg/json/hi.json +318 -0
- package/msg/json/hr.json +337 -0
- package/msg/json/hrx.json +287 -0
- package/msg/json/hsb.json +128 -0
- package/msg/json/hu.json +349 -0
- package/msg/json/hy.json +337 -0
- package/msg/json/ia.json +337 -0
- package/msg/json/id.json +338 -0
- package/msg/json/ig.json +323 -0
- package/msg/json/inh.json +80 -0
- package/msg/json/is.json +331 -0
- package/msg/json/it.json +346 -0
- package/msg/json/ja.json +362 -0
- package/msg/json/ka.json +14 -0
- package/msg/json/kab.json +323 -0
- package/msg/json/kbd-cyrl.json +84 -0
- package/msg/json/km.json +29 -0
- package/msg/json/kn.json +333 -0
- package/msg/json/ko.json +377 -0
- package/msg/json/ksh.json +43 -0
- package/msg/json/ku-latn.json +41 -0
- package/msg/json/ky.json +71 -0
- package/msg/json/la.json +6 -0
- package/msg/json/lb.json +156 -0
- package/msg/json/lki.json +282 -0
- package/msg/json/lo.json +92 -0
- package/msg/json/lrc.json +123 -0
- package/msg/json/lt.json +321 -0
- package/msg/json/lv.json +324 -0
- package/msg/json/mg.json +58 -0
- package/msg/json/mk.json +178 -0
- package/msg/json/ml.json +35 -0
- package/msg/json/mnw.json +90 -0
- package/msg/json/ms.json +300 -0
- package/msg/json/my.json +57 -0
- package/msg/json/mzn.json +6 -0
- package/msg/json/nb.json +331 -0
- package/msg/json/ne.json +247 -0
- package/msg/json/nl.json +358 -0
- package/msg/json/oc.json +194 -0
- package/msg/json/olo.json +37 -0
- package/msg/json/pa.json +75 -0
- package/msg/json/pl.json +358 -0
- package/msg/json/pms.json +325 -0
- package/msg/json/ps.json +50 -0
- package/msg/json/pt-br.json +371 -0
- package/msg/json/pt.json +360 -0
- package/msg/json/qqq.json +430 -0
- package/msg/json/ro.json +333 -0
- package/msg/json/ru.json +363 -0
- package/msg/json/sc.json +283 -0
- package/msg/json/sco.json +11 -0
- package/msg/json/sd.json +158 -0
- package/msg/json/shn.json +109 -0
- package/msg/json/si.json +16 -0
- package/msg/json/sk.json +339 -0
- package/msg/json/skr-arab.json +117 -0
- package/msg/json/sl.json +355 -0
- package/msg/json/smn.json +133 -0
- package/msg/json/sq.json +343 -0
- package/msg/json/sr-latn.json +324 -0
- package/msg/json/sr.json +349 -0
- package/msg/json/sv.json +350 -0
- package/msg/json/sw.json +12 -0
- package/msg/json/synonyms.json +22 -0
- package/msg/json/ta.json +306 -0
- package/msg/json/tcy.json +316 -0
- package/msg/json/tdd.json +110 -0
- package/msg/json/te.json +101 -0
- package/msg/json/th.json +333 -0
- package/msg/json/ti.json +50 -0
- package/msg/json/tl.json +149 -0
- package/msg/json/tlh.json +179 -0
- package/msg/json/tr.json +370 -0
- package/msg/json/ug-arab.json +180 -0
- package/msg/json/uk.json +346 -0
- package/msg/json/ur.json +118 -0
- package/msg/json/uz.json +36 -0
- package/msg/json/vi.json +345 -0
- package/msg/json/xmf.json +99 -0
- package/msg/json/yo.json +316 -0
- package/msg/json/zgh.json +83 -0
- package/msg/json/zh-hans.json +374 -0
- package/msg/json/zh-hant.json +362 -0
- package/msg/messages.js +1695 -0
- package/package.json +36 -5
- package/scripts/gulpfiles/appengine_tasks.mjs +189 -0
- package/scripts/gulpfiles/build_tasks.mjs +753 -0
- package/scripts/gulpfiles/config.mjs +40 -0
- package/scripts/gulpfiles/docs_tasks.mjs +146 -0
- package/scripts/gulpfiles/git_tasks.mjs +167 -0
- package/scripts/gulpfiles/helper_tasks.mjs +25 -0
- package/scripts/gulpfiles/package_tasks.mjs +257 -0
- package/scripts/gulpfiles/release_tasks.mjs +174 -0
- package/scripts/gulpfiles/test_tasks.mjs +409 -0
- package/scripts/helpers.js +74 -0
- package/scripts/i18n/common.py +233 -0
- package/scripts/i18n/create_messages.py +167 -0
- package/scripts/i18n/dedup_json.py +72 -0
- package/scripts/i18n/js_to_json.py +135 -0
- package/scripts/i18n/tests.py +46 -0
- package/scripts/migration/renamings.json5 +1599 -0
- package/scripts/package/index.js +23 -0
- package/scripts/package/templates/umd-msg.template +16 -0
- package/scripts/package/templates/umd.template +13 -0
- package/scripts/themes/blockStyles_example.json +11 -0
- package/scripts/themes/create_blockStyles.py +184 -0
- package/scripts/tsick.js +86 -0
- package/tests/browser/.mocharc.js +7 -0
- package/tests/browser/test/basic_block_factory_test.mjs +44 -0
- package/tests/browser/test/basic_block_test.mjs +38 -0
- package/tests/browser/test/basic_playground_test.mjs +461 -0
- package/tests/browser/test/block_undo_test.mjs +50 -0
- package/tests/browser/test/clipboard_test.mjs +611 -0
- package/tests/browser/test/delete_blocks_test.mjs +217 -0
- package/tests/browser/test/extensive_test.mjs +191 -0
- package/tests/browser/test/field_edits_test.mjs +61 -0
- package/tests/browser/test/hooks.mjs +23 -0
- package/tests/browser/test/mutator_test.mjs +87 -0
- package/tests/browser/test/procedure_test.mjs +109 -0
- package/tests/browser/test/test_setup.mjs +623 -0
- package/tests/browser/test/toolbox_drag_test.mjs +219 -0
- package/tests/browser/test/workspace_comment_test.mjs +220 -0
- package/tests/compile/index.html +43 -0
- package/tests/compile/main.js +53 -0
- package/tests/compile/test_blocks.js +47 -0
- package/tests/compile/webdriver.js +81 -0
- package/tests/generators/functions.xml +561 -0
- package/tests/generators/golden/generated.dart +1604 -0
- package/tests/generators/golden/generated.js +1552 -0
- package/tests/generators/golden/generated.lua +1828 -0
- package/tests/generators/golden/generated.php +1611 -0
- package/tests/generators/golden/generated.py +1407 -0
- package/tests/generators/index.html +408 -0
- package/tests/generators/lists.xml +8675 -0
- package/tests/generators/logic.xml +1019 -0
- package/tests/generators/loops1.xml +345 -0
- package/tests/generators/loops2.xml +891 -0
- package/tests/generators/loops3.xml +735 -0
- package/tests/generators/math.xml +2077 -0
- package/tests/generators/text.xml +4651 -0
- package/tests/generators/unittest.js +103 -0
- package/tests/generators/unittest_dart.js +163 -0
- package/tests/generators/unittest_javascript.js +167 -0
- package/tests/generators/unittest_lua.js +165 -0
- package/tests/generators/unittest_php.js +154 -0
- package/tests/generators/unittest_python.js +138 -0
- package/tests/generators/variables.xml +68 -0
- package/tests/generators/webdriver.js +123 -0
- package/tests/media/200px.png +0 -0
- package/tests/media/30px.png +0 -0
- package/tests/media/50px.png +0 -0
- package/tests/media/a.png +0 -0
- package/tests/media/arrow.png +0 -0
- package/tests/media/b.png +0 -0
- package/tests/media/c.png +0 -0
- package/tests/media/d.png +0 -0
- package/tests/media/e.png +0 -0
- package/tests/media/f.png +0 -0
- package/tests/media/g.png +0 -0
- package/tests/media/h.png +0 -0
- package/tests/media/i.png +0 -0
- package/tests/media/j.png +0 -0
- package/tests/media/k.png +0 -0
- package/tests/media/l.png +0 -0
- package/tests/media/m.png +0 -0
- package/tests/migration/renamings.schema.json +59 -0
- package/tests/migration/validate-renamings.mjs +63 -0
- package/tests/mocha/.mocharc.js +6 -0
- package/tests/mocha/block_json_test.js +777 -0
- package/tests/mocha/block_test.js +2949 -0
- package/tests/mocha/blocks/lists_test.js +238 -0
- package/tests/mocha/blocks/logic_ternary_test.js +320 -0
- package/tests/mocha/blocks/loops_test.js +56 -0
- package/tests/mocha/blocks/procedures_test.js +2509 -0
- package/tests/mocha/blocks/variables_test.js +345 -0
- package/tests/mocha/clipboard_test.js +263 -0
- package/tests/mocha/comment_deserialization_test.js +122 -0
- package/tests/mocha/comment_test.js +215 -0
- package/tests/mocha/comment_view_test.js +188 -0
- package/tests/mocha/connection_checker_test.js +694 -0
- package/tests/mocha/connection_db_test.js +363 -0
- package/tests/mocha/connection_test.js +3738 -0
- package/tests/mocha/contextmenu_items_test.js +653 -0
- package/tests/mocha/contextmenu_test.js +73 -0
- package/tests/mocha/cursor_test.js +922 -0
- package/tests/mocha/dialog_test.js +168 -0
- package/tests/mocha/dropdowndiv_test.js +458 -0
- package/tests/mocha/event_block_change_test.js +126 -0
- package/tests/mocha/event_block_create_test.js +109 -0
- package/tests/mocha/event_block_delete_test.js +55 -0
- package/tests/mocha/event_block_drag_test.js +36 -0
- package/tests/mocha/event_block_field_intermediate_change_test.js +67 -0
- package/tests/mocha/event_block_move_test.js +39 -0
- package/tests/mocha/event_bubble_open_test.js +42 -0
- package/tests/mocha/event_click_test.js +40 -0
- package/tests/mocha/event_comment_change_test.js +39 -0
- package/tests/mocha/event_comment_collapse_test.js +34 -0
- package/tests/mocha/event_comment_create_test.js +38 -0
- package/tests/mocha/event_comment_delete_test.js +38 -0
- package/tests/mocha/event_comment_drag_test.js +35 -0
- package/tests/mocha/event_comment_move_test.js +40 -0
- package/tests/mocha/event_comment_resize_test.js +38 -0
- package/tests/mocha/event_selected_test.js +41 -0
- package/tests/mocha/event_test.js +1668 -0
- package/tests/mocha/event_theme_change_test.js +36 -0
- package/tests/mocha/event_toolbox_item_select_test.js +64 -0
- package/tests/mocha/event_trashcan_open_test.js +36 -0
- package/tests/mocha/event_var_create_test.js +54 -0
- package/tests/mocha/event_var_delete_test.js +54 -0
- package/tests/mocha/event_var_rename_test.js +39 -0
- package/tests/mocha/event_var_type_change_test.js +43 -0
- package/tests/mocha/event_viewport_test.js +39 -0
- package/tests/mocha/extensions_test.js +613 -0
- package/tests/mocha/field_checkbox_test.js +299 -0
- package/tests/mocha/field_colour_test.js +395 -0
- package/tests/mocha/field_dropdown_test.js +328 -0
- package/tests/mocha/field_image_test.js +351 -0
- package/tests/mocha/field_label_serializable_test.js +252 -0
- package/tests/mocha/field_label_test.js +226 -0
- package/tests/mocha/field_number_test.js +505 -0
- package/tests/mocha/field_registry_test.js +115 -0
- package/tests/mocha/field_test.js +821 -0
- package/tests/mocha/field_textinput_test.js +593 -0
- package/tests/mocha/field_variable_test.js +644 -0
- package/tests/mocha/flyout_test.js +650 -0
- package/tests/mocha/focus_manager_test.js +5979 -0
- package/tests/mocha/focusable_tree_traverser_test.js +602 -0
- package/tests/mocha/generator_test.js +233 -0
- package/tests/mocha/gesture_test.js +133 -0
- package/tests/mocha/icon_test.js +431 -0
- package/tests/mocha/index.html +354 -0
- package/tests/mocha/input_test.js +296 -0
- package/tests/mocha/insertion_marker_test.js +432 -0
- package/tests/mocha/jso_deserialization_test.js +848 -0
- package/tests/mocha/jso_serialization_test.js +1068 -0
- package/tests/mocha/json_test.js +303 -0
- package/tests/mocha/keyboard_navigation_controller_test.js +37 -0
- package/tests/mocha/layering_test.js +104 -0
- package/tests/mocha/menu_item_test.js +176 -0
- package/tests/mocha/metrics_test.js +671 -0
- package/tests/mocha/mutator_test.js +87 -0
- package/tests/mocha/names_test.js +97 -0
- package/tests/mocha/navigation_test.js +876 -0
- package/tests/mocha/old_workspace_comment_test.js +256 -0
- package/tests/mocha/procedure_map_test.js +52 -0
- package/tests/mocha/rect_test.js +1668 -0
- package/tests/mocha/registry_test.js +281 -0
- package/tests/mocha/render_management_test.js +127 -0
- package/tests/mocha/serializer_test.js +2100 -0
- package/tests/mocha/shortcut_items_test.js +563 -0
- package/tests/mocha/shortcut_registry_test.js +533 -0
- package/tests/mocha/test_helpers/block_definitions.js +204 -0
- package/tests/mocha/test_helpers/code_generation.js +114 -0
- package/tests/mocha/test_helpers/common.js +106 -0
- package/tests/mocha/test_helpers/events.js +290 -0
- package/tests/mocha/test_helpers/fields.js +310 -0
- package/tests/mocha/test_helpers/icon_mocks.js +130 -0
- package/tests/mocha/test_helpers/procedures.js +304 -0
- package/tests/mocha/test_helpers/serialization.js +124 -0
- package/tests/mocha/test_helpers/setup_teardown.js +232 -0
- package/tests/mocha/test_helpers/toolbox_definitions.js +269 -0
- package/tests/mocha/test_helpers/user_input.js +62 -0
- package/tests/mocha/test_helpers/variables.js +27 -0
- package/tests/mocha/test_helpers/warnings.js +83 -0
- package/tests/mocha/test_helpers/workspace.js +1659 -0
- package/tests/mocha/theme_test.js +307 -0
- package/tests/mocha/toast_test.js +129 -0
- package/tests/mocha/toolbox_test.js +821 -0
- package/tests/mocha/tooltip_test.js +276 -0
- package/tests/mocha/touch_test.js +109 -0
- package/tests/mocha/trashcan_test.js +376 -0
- package/tests/mocha/utils_test.js +557 -0
- package/tests/mocha/variable_map_test.js +470 -0
- package/tests/mocha/variable_model_test.js +85 -0
- package/tests/mocha/webdriver.js +110 -0
- package/tests/mocha/widget_div_test.js +427 -0
- package/tests/mocha/workspace_comment_test.js +197 -0
- package/tests/mocha/workspace_svg_test.js +922 -0
- package/tests/mocha/workspace_test.js +24 -0
- package/tests/mocha/xml_test.js +893 -0
- package/tests/mocha/zoom_controls_test.js +81 -0
- package/tests/multi_playground.html +482 -0
- package/tests/node/.mocharc.js +6 -0
- package/tests/node/run_node_test.mjs +191 -0
- package/tests/playground.html +1280 -0
- package/tests/playgrounds/advanced_playground.html +188 -0
- package/tests/playgrounds/iframe.html +40 -0
- package/tests/playgrounds/screenshot.js +123 -0
- package/tests/scripts/check_metadata.sh +170 -0
- package/tests/scripts/load.mjs +140 -0
- package/tests/scripts/setup_linux_env.sh +7 -0
- package/tests/scripts/update_metadata.sh +46 -0
- package/tests/themes/test_themes.js +62 -0
- package/tests/typescript/README.md +4 -0
- package/tests/typescript/src/field/different_user_input.ts +81 -0
- package/tests/typescript/src/generators/dart.ts +24 -0
- package/tests/typescript/src/generators/javascript.ts +28 -0
- package/tests/typescript/src/generators/lua.ts +24 -0
- package/tests/typescript/src/generators/php.ts +24 -0
- package/tests/typescript/src/generators/python.ts +24 -0
- package/tests/typescript/src/generators.ts +33 -0
- package/tests/typescript/src/msg.ts +20 -0
- package/tests/typescript/tsconfig.json +20 -0
- package/tests/xml/README.txt +11 -0
- package/tests/xml/blockly.xsd +178 -0
- package/tests/xml/invalid.xml +6 -0
- package/tests/xml/toolbox.xml +311 -0
- package/tests/xml/workspace.xml +114 -0
- package/tsconfig.json +37 -0
- package/tsdoc.json +25 -0
- package/typings/README.md +5 -0
- package/typings/templates/blockly-header.template +11 -0
- package/typings/templates/blockly-interfaces.template +83 -0
- package/typings/templates/msg.template +15 -0
- package/typings/tsconfig.json +23 -0
- package/blockly.min.js +0 -2740
- package/blockly.mjs +0 -163
- package/blockly_compressed.js +0 -1815
- package/blockly_compressed.js.map +0 -1
- package/blocks.js +0 -4
- package/blocks.mjs +0 -12
- package/blocks_compressed.js +0 -193
- package/blocks_compressed.js.map +0 -1
- package/core/any_aliases.d.ts +0 -7
- package/core/block.d.ts +0 -1006
- package/core/block_animations.d.ts +0 -34
- package/core/block_flyout_inflater.d.ts +0 -94
- package/core/block_svg.d.ts +0 -733
- package/core/blockly.d.ts +0 -286
- package/core/blockly_options.d.ts +0 -70
- package/core/blocks.d.ts +0 -17
- package/core/browser_events.d.ts +0 -82
- package/core/bubbles/bubble.d.ts +0 -228
- package/core/bubbles/mini_workspace_bubble.d.ts +0 -84
- package/core/bubbles/text_bubble.d.ts +0 -38
- package/core/bubbles/textinput_bubble.d.ts +0 -102
- package/core/bubbles.d.ts +0 -11
- package/core/bump_objects.d.ts +0 -37
- package/core/button_flyout_inflater.d.ts +0 -42
- package/core/clipboard/block_paster.d.ts +0 -34
- package/core/clipboard/registry.d.ts +0 -21
- package/core/clipboard/workspace_comment_paster.d.ts +0 -19
- package/core/clipboard.d.ts +0 -103
- package/core/comments/collapse_comment_bar_button.d.ts +0 -52
- package/core/comments/comment_bar_button.d.ts +0 -62
- package/core/comments/comment_editor.d.ts +0 -62
- package/core/comments/comment_view.d.ts +0 -213
- package/core/comments/delete_comment_bar_button.d.ts +0 -52
- package/core/comments/rendered_workspace_comment.d.ts +0 -121
- package/core/comments/workspace_comment.d.ts +0 -107
- package/core/comments.d.ts +0 -13
- package/core/common.d.ts +0 -163
- package/core/component_manager.d.ts +0 -112
- package/core/config.d.ts +0 -24
- package/core/connection.d.ts +0 -291
- package/core/connection_checker.d.ts +0 -85
- package/core/connection_db.d.ts +0 -100
- package/core/connection_type.d.ts +0 -15
- package/core/constants.d.ts +0 -19
- package/core/contextmenu.d.ts +0 -53
- package/core/contextmenu_items.d.ts +0 -73
- package/core/contextmenu_registry.d.ts +0 -173
- package/core/css.d.ts +0 -25
- package/core/delete_area.d.ts +0 -48
- package/core/dialog.d.ts +0 -82
- package/core/drag_target.d.ts +0 -75
- package/core/dragging/block_drag_strategy.d.ts +0 -121
- package/core/dragging/bubble_drag_strategy.d.ts +0 -20
- package/core/dragging/comment_drag_strategy.d.ts +0 -26
- package/core/dragging/dragger.d.ts +0 -49
- package/core/dragging.d.ts +0 -11
- package/core/dropdowndiv.d.ts +0 -208
- package/core/events/events.d.ts +0 -72
- package/core/events/events_abstract.d.ts +0 -72
- package/core/events/events_block_base.d.ts +0 -46
- package/core/events/events_block_change.d.ts +0 -100
- package/core/events/events_block_create.d.ts +0 -59
- package/core/events/events_block_delete.d.ts +0 -62
- package/core/events/events_block_drag.d.ts +0 -61
- package/core/events/events_block_field_intermediate_change.d.ts +0 -71
- package/core/events/events_block_move.d.ts +0 -115
- package/core/events/events_bubble_open.d.ts +0 -62
- package/core/events/events_click.d.ts +0 -64
- package/core/events/events_comment_base.d.ts +0 -55
- package/core/events/events_comment_change.d.ts +0 -64
- package/core/events/events_comment_collapse.d.ts +0 -40
- package/core/events/events_comment_create.d.ts +0 -57
- package/core/events/events_comment_delete.d.ts +0 -57
- package/core/events/events_comment_drag.d.ts +0 -51
- package/core/events/events_comment_move.d.ts +0 -93
- package/core/events/events_comment_resize.d.ts +0 -68
- package/core/events/events_selected.d.ts +0 -53
- package/core/events/events_theme_change.d.ts +0 -43
- package/core/events/events_toolbox_item_select.d.ts +0 -49
- package/core/events/events_trashcan_open.d.ts +0 -47
- package/core/events/events_ui_base.d.ts +0 -32
- package/core/events/events_var_base.d.ts +0 -46
- package/core/events/events_var_create.d.ts +0 -55
- package/core/events/events_var_delete.d.ts +0 -50
- package/core/events/events_var_rename.d.ts +0 -51
- package/core/events/events_var_type_change.d.ts +0 -55
- package/core/events/events_viewport.d.ts +0 -67
- package/core/events/predicates.d.ts +0 -87
- package/core/events/type.d.ts +0 -81
- package/core/events/utils.d.ts +0 -211
- package/core/events/workspace_events.d.ts +0 -23
- package/core/extensions.d.ts +0 -99
- package/core/field.d.ts +0 -724
- package/core/field_checkbox.d.ts +0 -156
- package/core/field_dropdown.d.ts +0 -295
- package/core/field_image.d.ts +0 -148
- package/core/field_input.d.ts +0 -293
- package/core/field_label.d.ts +0 -80
- package/core/field_label_serializable.d.ts +0 -50
- package/core/field_number.d.ts +0 -194
- package/core/field_registry.d.ts +0 -83
- package/core/field_textinput.d.ts +0 -78
- package/core/field_variable.d.ts +0 -261
- package/core/flyout_base.d.ts +0 -455
- package/core/flyout_button.d.ts +0 -139
- package/core/flyout_horizontal.d.ts +0 -87
- package/core/flyout_item.d.ts +0 -26
- package/core/flyout_metrics_manager.d.ts +0 -46
- package/core/flyout_navigator.d.ts +0 -11
- package/core/flyout_separator.d.ts +0 -64
- package/core/flyout_vertical.d.ts +0 -88
- package/core/focus_manager.d.ts +0 -266
- package/core/generator.d.ts +0 -279
- package/core/gesture.d.ts +0 -454
- package/core/grid.d.ts +0 -124
- package/core/icons/comment_icon.d.ts +0 -134
- package/core/icons/exceptions.d.ts +0 -17
- package/core/icons/icon.d.ts +0 -82
- package/core/icons/icon_types.d.ts +0 -25
- package/core/icons/mutator_icon.d.ts +0 -96
- package/core/icons/registry.d.ts +0 -23
- package/core/icons/warning_icon.d.ts +0 -77
- package/core/icons.d.ts +0 -14
- package/core/inject.d.ts +0 -16
- package/core/inputs/align.d.ts +0 -14
- package/core/inputs/dummy_input.d.ts +0 -20
- package/core/inputs/end_row_input.d.ts +0 -25
- package/core/inputs/input.d.ts +0 -147
- package/core/inputs/input_types.d.ts +0 -16
- package/core/inputs/statement_input.d.ts +0 -22
- package/core/inputs/value_input.d.ts +0 -20
- package/core/inputs.d.ts +0 -14
- package/core/insertion_marker_previewer.d.ts +0 -67
- package/core/interfaces/i_autohideable.d.ts +0 -21
- package/core/interfaces/i_bounded_element.d.ts +0 -27
- package/core/interfaces/i_bubble.d.ts +0 -55
- package/core/interfaces/i_collapsible_toolbox_item.d.ts +0 -28
- package/core/interfaces/i_comment_icon.d.ts +0 -24
- package/core/interfaces/i_component.d.ts +0 -17
- package/core/interfaces/i_connection_checker.d.ts +0 -75
- package/core/interfaces/i_connection_previewer.d.ts +0 -39
- package/core/interfaces/i_contextmenu.d.ts +0 -14
- package/core/interfaces/i_copyable.d.ts +0 -30
- package/core/interfaces/i_deletable.d.ts +0 -23
- package/core/interfaces/i_delete_area.d.ts +0 -25
- package/core/interfaces/i_drag_target.d.ts +0 -59
- package/core/interfaces/i_draggable.d.ts +0 -56
- package/core/interfaces/i_dragger.d.ts +0 -32
- package/core/interfaces/i_flyout.d.ts +0 -159
- package/core/interfaces/i_flyout_inflater.d.ts +0 -48
- package/core/interfaces/i_focusable_node.d.ts +0 -105
- package/core/interfaces/i_focusable_tree.d.ts +0 -125
- package/core/interfaces/i_has_bubble.d.ts +0 -27
- package/core/interfaces/i_icon.d.ts +0 -84
- package/core/interfaces/i_keyboard_accessible.d.ts +0 -19
- package/core/interfaces/i_legacy_procedure_blocks.d.ts +0 -34
- package/core/interfaces/i_metrics_manager.d.ts +0 -129
- package/core/interfaces/i_movable.d.ts +0 -17
- package/core/interfaces/i_navigation_policy.d.ts +0 -63
- package/core/interfaces/i_observable.d.ts +0 -21
- package/core/interfaces/i_parameter_model.d.ts +0 -44
- package/core/interfaces/i_paster.d.ts +0 -15
- package/core/interfaces/i_positionable.d.ts +0 -29
- package/core/interfaces/i_procedure_block.d.ts +0 -16
- package/core/interfaces/i_procedure_map.d.ts +0 -16
- package/core/interfaces/i_procedure_model.d.ts +0 -59
- package/core/interfaces/i_registrable.d.ts +0 -11
- package/core/interfaces/i_rendered_element.d.ts +0 -16
- package/core/interfaces/i_selectable.d.ts +0 -26
- package/core/interfaces/i_selectable_toolbox_item.d.ts +0 -51
- package/core/interfaces/i_serializable.d.ts +0 -24
- package/core/interfaces/i_serializer.d.ts +0 -45
- package/core/interfaces/i_styleable.d.ts +0 -23
- package/core/interfaces/i_toolbox.d.ts +0 -102
- package/core/interfaces/i_toolbox_item.d.ts +0 -71
- package/core/interfaces/i_variable_backed_parameter_model.d.ts +0 -17
- package/core/interfaces/i_variable_map.d.ts +0 -48
- package/core/interfaces/i_variable_model.d.ts +0 -36
- package/core/internal_constants.d.ts +0 -34
- package/core/keyboard_nav/block_comment_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/block_navigation_policy.d.ts +0 -84
- package/core/keyboard_nav/comment_bar_button_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/comment_editor_navigation_policy.d.ts +0 -34
- package/core/keyboard_nav/connection_navigation_policy.d.ts +0 -67
- package/core/keyboard_nav/field_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/flyout_button_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/flyout_navigation_policy.d.ts +0 -65
- package/core/keyboard_nav/flyout_separator_navigation_policy.d.ts +0 -33
- package/core/keyboard_nav/icon_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/line_cursor.d.ts +0 -187
- package/core/keyboard_nav/marker.d.ts +0 -53
- package/core/keyboard_nav/workspace_comment_navigation_policy.d.ts +0 -56
- package/core/keyboard_nav/workspace_navigation_policy.d.ts +0 -56
- package/core/keyboard_navigation_controller.d.ts +0 -48
- package/core/label_flyout_inflater.d.ts +0 -42
- package/core/layer_manager.d.ts +0 -86
- package/core/layers.d.ts +0 -16
- package/core/main.d.ts +0 -7
- package/core/marker_manager.d.ts +0 -72
- package/core/menu.d.ts +0 -170
- package/core/menu_separator.d.ts +0 -25
- package/core/menuitem.d.ts +0 -139
- package/core/metrics_manager.d.ts +0 -221
- package/core/msg.d.ts +0 -24
- package/core/names.d.ts +0 -139
- package/core/navigator.d.ts +0 -65
- package/core/observable_procedure_map.d.ts +0 -34
- package/core/options.d.ts +0 -148
- package/core/positionable_helpers.d.ts +0 -89
- package/core/procedures.d.ts +0 -108
- package/core/registry.d.ts +0 -158
- package/core/render_management.d.ts +0 -34
- package/core/rendered_connection.d.ts +0 -263
- package/core/renderers/common/block_rendering.d.ts +0 -63
- package/core/renderers/common/constants.d.ts +0 -454
- package/core/renderers/common/drawer.d.ts +0 -156
- package/core/renderers/common/i_path_object.d.ts +0 -88
- package/core/renderers/common/info.d.ts +0 -201
- package/core/renderers/common/path_object.d.ts +0 -130
- package/core/renderers/common/renderer.d.ts +0 -141
- package/core/renderers/geras/constants.d.ts +0 -22
- package/core/renderers/geras/drawer.d.ts +0 -44
- package/core/renderers/geras/geras.d.ts +0 -17
- package/core/renderers/geras/highlight_constants.d.ts +0 -100
- package/core/renderers/geras/highlighter.d.ts +0 -96
- package/core/renderers/geras/info.d.ts +0 -45
- package/core/renderers/geras/measurables/inline_input.d.ts +0 -22
- package/core/renderers/geras/measurables/statement_input.d.ts +0 -22
- package/core/renderers/geras/path_object.d.ts +0 -42
- package/core/renderers/geras/renderer.d.ts +0 -77
- package/core/renderers/measurables/base.d.ts +0 -26
- package/core/renderers/measurables/bottom_row.d.ts +0 -58
- package/core/renderers/measurables/connection.d.ts +0 -25
- package/core/renderers/measurables/external_value_input.d.ts +0 -25
- package/core/renderers/measurables/field.d.ts +0 -28
- package/core/renderers/measurables/hat.d.ts +0 -19
- package/core/renderers/measurables/icon.d.ts +0 -25
- package/core/renderers/measurables/in_row_spacer.d.ts +0 -20
- package/core/renderers/measurables/inline_input.d.ts +0 -22
- package/core/renderers/measurables/input_connection.d.ts +0 -28
- package/core/renderers/measurables/input_row.d.ts +0 -26
- package/core/renderers/measurables/jagged_edge.d.ts +0 -19
- package/core/renderers/measurables/next_connection.d.ts +0 -22
- package/core/renderers/measurables/output_connection.d.ts +0 -24
- package/core/renderers/measurables/previous_connection.d.ts +0 -22
- package/core/renderers/measurables/round_corner.d.ts +0 -20
- package/core/renderers/measurables/row.d.ts +0 -124
- package/core/renderers/measurables/spacer_row.d.ts +0 -27
- package/core/renderers/measurables/square_corner.d.ts +0 -20
- package/core/renderers/measurables/statement_input.d.ts +0 -21
- package/core/renderers/measurables/top_row.d.ts +0 -53
- package/core/renderers/measurables/types.d.ts +0 -258
- package/core/renderers/thrasos/info.d.ts +0 -37
- package/core/renderers/thrasos/renderer.d.ts +0 -28
- package/core/renderers/thrasos/thrasos.d.ts +0 -10
- package/core/renderers/zelos/constants.d.ts +0 -165
- package/core/renderers/zelos/drawer.d.ts +0 -51
- package/core/renderers/zelos/info.d.ts +0 -89
- package/core/renderers/zelos/measurables/bottom_row.d.ts +0 -26
- package/core/renderers/zelos/measurables/inputs.d.ts +0 -21
- package/core/renderers/zelos/measurables/row_elements.d.ts +0 -20
- package/core/renderers/zelos/measurables/top_row.d.ts +0 -28
- package/core/renderers/zelos/path_object.d.ts +0 -76
- package/core/renderers/zelos/renderer.d.ts +0 -64
- package/core/renderers/zelos/zelos.d.ts +0 -17
- package/core/scrollbar.d.ts +0 -348
- package/core/scrollbar_pair.d.ts +0 -121
- package/core/separator_flyout_inflater.d.ts +0 -57
- package/core/serialization/blocks.d.ts +0 -138
- package/core/serialization/exceptions.d.ts +0 -81
- package/core/serialization/priorities.d.ts +0 -20
- package/core/serialization/procedures.d.ts +0 -97
- package/core/serialization/registry.d.ts +0 -21
- package/core/serialization/variables.d.ts +0 -38
- package/core/serialization/workspace_comments.d.ts +0 -45
- package/core/serialization/workspaces.d.ts +0 -29
- package/core/serialization.d.ts +0 -19
- package/core/shortcut_items.d.ts +0 -54
- package/core/shortcut_registry.d.ts +0 -236
- package/core/sprites.d.ts +0 -15
- package/core/theme/classic.d.ts +0 -12
- package/core/theme/themes.d.ts +0 -9
- package/core/theme/zelos.d.ts +0 -11
- package/core/theme.d.ts +0 -151
- package/core/theme_manager.d.ts +0 -92
- package/core/toast.d.ts +0 -74
- package/core/toolbox/category.d.ts +0 -265
- package/core/toolbox/collapsible_category.d.ts +0 -99
- package/core/toolbox/separator.d.ts +0 -40
- package/core/toolbox/toolbox.d.ts +0 -417
- package/core/toolbox/toolbox_item.d.ts +0 -109
- package/core/tooltip.d.ts +0 -118
- package/core/touch.d.ts +0 -72
- package/core/trashcan.d.ts +0 -212
- package/core/utils/aria.d.ts +0 -69
- package/core/utils/array.d.ts +0 -15
- package/core/utils/colour.d.ts +0 -102
- package/core/utils/coordinate.d.ts +0 -87
- package/core/utils/deprecation.d.ts +0 -18
- package/core/utils/dom.d.ts +0 -154
- package/core/utils/drag.d.ts +0 -33
- package/core/utils/focusable_tree_traverser.d.ts +0 -53
- package/core/utils/idgenerator.d.ts +0 -33
- package/core/utils/keycodes.d.ts +0 -136
- package/core/utils/math.d.ts +0 -31
- package/core/utils/metrics.d.ts +0 -64
- package/core/utils/object.d.ts +0 -17
- package/core/utils/parsing.d.ts +0 -52
- package/core/utils/rect.d.ts +0 -82
- package/core/utils/size.d.ts +0 -44
- package/core/utils/string.d.ts +0 -46
- package/core/utils/style.d.ts +0 -89
- package/core/utils/svg.d.ts +0 -75
- package/core/utils/svg_math.d.ts +0 -64
- package/core/utils/svg_paths.d.ts +0 -103
- package/core/utils/toolbox.d.ts +0 -180
- package/core/utils/useragent.d.ts +0 -14
- package/core/utils/xml.d.ts +0 -96
- package/core/utils.d.ts +0 -31
- package/core/variable_map.d.ts +0 -164
- package/core/variable_model.d.ts +0 -73
- package/core/variables.d.ts +0 -238
- package/core/variables_dynamic.d.ts +0 -56
- package/core/widgetdiv.d.ts +0 -87
- package/core/workspace.d.ts +0 -482
- package/core/workspace_audio.d.ts +0 -61
- package/core/workspace_dragger.d.ts +0 -54
- package/core/workspace_svg.d.ts +0 -1103
- package/core/xml.d.ts +0 -127
- package/core/zoom_controls.d.ts +0 -134
- package/core.js +0 -4
- package/dart.js +0 -4
- package/dart.mjs +0 -6
- package/dart_compressed.js +0 -330
- package/dart_compressed.js.map +0 -1
- package/generators/dart/dart_generator.d.ts +0 -104
- package/generators/dart/lists.d.ts +0 -21
- package/generators/dart/logic.d.ts +0 -20
- package/generators/dart/loops.d.ts +0 -14
- package/generators/dart/math.d.ts +0 -26
- package/generators/dart/procedures.d.ts +0 -14
- package/generators/dart/text.d.ts +0 -25
- package/generators/dart/variables.d.ts +0 -14
- package/generators/dart/variables_dynamic.d.ts +0 -10
- package/generators/dart.d.ts +0 -18
- package/generators/javascript/javascript_generator.d.ts +0 -123
- package/generators/javascript/lists.d.ts +0 -21
- package/generators/javascript/logic.d.ts +0 -20
- package/generators/javascript/loops.d.ts +0 -14
- package/generators/javascript/math.d.ts +0 -26
- package/generators/javascript/procedures.d.ts +0 -14
- package/generators/javascript/text.d.ts +0 -25
- package/generators/javascript/variables.d.ts +0 -14
- package/generators/javascript/variables_dynamic.d.ts +0 -10
- package/generators/javascript.d.ts +0 -18
- package/generators/lua/lists.d.ts +0 -21
- package/generators/lua/logic.d.ts +0 -20
- package/generators/lua/loops.d.ts +0 -14
- package/generators/lua/lua_generator.d.ts +0 -91
- package/generators/lua/math.d.ts +0 -26
- package/generators/lua/procedures.d.ts +0 -14
- package/generators/lua/text.d.ts +0 -25
- package/generators/lua/variables.d.ts +0 -14
- package/generators/lua/variables_dynamic.d.ts +0 -10
- package/generators/lua.d.ts +0 -12
- package/generators/php/lists.d.ts +0 -21
- package/generators/php/logic.d.ts +0 -20
- package/generators/php/loops.d.ts +0 -14
- package/generators/php/math.d.ts +0 -26
- package/generators/php/php_generator.d.ts +0 -122
- package/generators/php/procedures.d.ts +0 -14
- package/generators/php/text.d.ts +0 -25
- package/generators/php/variables.d.ts +0 -14
- package/generators/php/variables_dynamic.d.ts +0 -10
- package/generators/php.d.ts +0 -13
- package/generators/python/lists.d.ts +0 -21
- package/generators/python/logic.d.ts +0 -20
- package/generators/python/loops.d.ts +0 -14
- package/generators/python/math.d.ts +0 -26
- package/generators/python/procedures.d.ts +0 -14
- package/generators/python/python_generator.d.ts +0 -111
- package/generators/python/text.d.ts +0 -25
- package/generators/python/variables.d.ts +0 -14
- package/generators/python/variables_dynamic.d.ts +0 -10
- package/generators/python.d.ts +0 -13
- package/index.js +0 -36
- package/index.mjs +0 -163
- package/javascript.js +0 -4
- package/javascript.mjs +0 -6
- package/javascript_compressed.js +0 -264
- package/javascript_compressed.js.map +0 -1
- package/lua.js +0 -4
- package/lua.mjs +0 -6
- package/lua_compressed.js +0 -373
- package/lua_compressed.js.map +0 -1
- package/media/click.ogg +0 -0
- package/media/click.wav +0 -0
- package/media/delete.ogg +0 -0
- package/media/delete.wav +0 -0
- package/media/disconnect.ogg +0 -0
- package/media/disconnect.wav +0 -0
- package/msg/ab.js +0 -465
- package/msg/ab.mjs +0 -446
- package/msg/ace.js +0 -465
- package/msg/ace.mjs +0 -446
- package/msg/af.js +0 -465
- package/msg/af.mjs +0 -446
- package/msg/am.js +0 -465
- package/msg/am.mjs +0 -446
- package/msg/ar.js +0 -465
- package/msg/ar.mjs +0 -446
- package/msg/ast.js +0 -465
- package/msg/ast.mjs +0 -446
- package/msg/az.js +0 -465
- package/msg/az.mjs +0 -446
- package/msg/ba.js +0 -465
- package/msg/ba.mjs +0 -446
- package/msg/bcc.js +0 -465
- package/msg/bcc.mjs +0 -446
- package/msg/be-tarask.js +0 -465
- package/msg/be-tarask.mjs +0 -446
- package/msg/be.js +0 -465
- package/msg/be.mjs +0 -446
- package/msg/bg.js +0 -465
- package/msg/bg.mjs +0 -446
- package/msg/bn.js +0 -465
- package/msg/bn.mjs +0 -446
- package/msg/br.js +0 -465
- package/msg/br.mjs +0 -446
- package/msg/bs.js +0 -465
- package/msg/bs.mjs +0 -446
- package/msg/ca.js +0 -465
- package/msg/ca.mjs +0 -446
- package/msg/cdo.js +0 -465
- package/msg/cdo.mjs +0 -446
- package/msg/ce.js +0 -465
- package/msg/ce.mjs +0 -446
- package/msg/cs.js +0 -465
- package/msg/cs.mjs +0 -446
- package/msg/da.js +0 -465
- package/msg/da.mjs +0 -446
- package/msg/de.js +0 -465
- package/msg/de.mjs +0 -446
- package/msg/diq.js +0 -465
- package/msg/diq.mjs +0 -446
- package/msg/dtp.js +0 -465
- package/msg/dtp.mjs +0 -446
- package/msg/dty.js +0 -465
- package/msg/dty.mjs +0 -446
- package/msg/ee.js +0 -465
- package/msg/ee.mjs +0 -446
- package/msg/el.js +0 -465
- package/msg/el.mjs +0 -446
- package/msg/en-gb.js +0 -465
- package/msg/en-gb.mjs +0 -446
- package/msg/en.js +0 -465
- package/msg/en.mjs +0 -446
- package/msg/eo.js +0 -465
- package/msg/eo.mjs +0 -446
- package/msg/es.js +0 -465
- package/msg/es.mjs +0 -446
- package/msg/et.js +0 -465
- package/msg/et.mjs +0 -446
- package/msg/eu.js +0 -465
- package/msg/eu.mjs +0 -446
- package/msg/fa.js +0 -465
- package/msg/fa.mjs +0 -446
- package/msg/fi.js +0 -465
- package/msg/fi.mjs +0 -446
- package/msg/fo.js +0 -465
- package/msg/fo.mjs +0 -446
- package/msg/fr.js +0 -465
- package/msg/fr.mjs +0 -446
- package/msg/frr.js +0 -465
- package/msg/frr.mjs +0 -446
- package/msg/gl.js +0 -465
- package/msg/gl.mjs +0 -446
- package/msg/gn.js +0 -465
- package/msg/gn.mjs +0 -446
- package/msg/gor.js +0 -465
- package/msg/gor.mjs +0 -446
- package/msg/ha.js +0 -465
- package/msg/ha.mjs +0 -446
- package/msg/hak.js +0 -465
- package/msg/hak.mjs +0 -446
- package/msg/he.js +0 -465
- package/msg/he.mjs +0 -446
- package/msg/hi.js +0 -465
- package/msg/hi.mjs +0 -446
- package/msg/hr.js +0 -465
- package/msg/hr.mjs +0 -446
- package/msg/hrx.js +0 -465
- package/msg/hrx.mjs +0 -446
- package/msg/hsb.js +0 -465
- package/msg/hsb.mjs +0 -446
- package/msg/hu.js +0 -465
- package/msg/hu.mjs +0 -446
- package/msg/hy.js +0 -465
- package/msg/hy.mjs +0 -446
- package/msg/ia.js +0 -465
- package/msg/ia.mjs +0 -446
- package/msg/id.js +0 -465
- package/msg/id.mjs +0 -446
- package/msg/ig.js +0 -465
- package/msg/ig.mjs +0 -446
- package/msg/inh.js +0 -465
- package/msg/inh.mjs +0 -446
- package/msg/is.js +0 -465
- package/msg/is.mjs +0 -446
- package/msg/it.js +0 -465
- package/msg/it.mjs +0 -446
- package/msg/ja.js +0 -465
- package/msg/ja.mjs +0 -446
- package/msg/ka.js +0 -465
- package/msg/ka.mjs +0 -446
- package/msg/kab.js +0 -465
- package/msg/kab.mjs +0 -446
- package/msg/kbd-cyrl.js +0 -465
- package/msg/kbd-cyrl.mjs +0 -446
- package/msg/km.js +0 -465
- package/msg/km.mjs +0 -446
- package/msg/kn.js +0 -465
- package/msg/kn.mjs +0 -446
- package/msg/ko.js +0 -465
- package/msg/ko.mjs +0 -446
- package/msg/ksh.js +0 -465
- package/msg/ksh.mjs +0 -446
- package/msg/ku-latn.js +0 -465
- package/msg/ku-latn.mjs +0 -446
- package/msg/ky.js +0 -465
- package/msg/ky.mjs +0 -446
- package/msg/la.js +0 -465
- package/msg/la.mjs +0 -446
- package/msg/lb.js +0 -465
- package/msg/lb.mjs +0 -446
- package/msg/lki.js +0 -465
- package/msg/lki.mjs +0 -446
- package/msg/lo.js +0 -465
- package/msg/lo.mjs +0 -446
- package/msg/lrc.js +0 -465
- package/msg/lrc.mjs +0 -446
- package/msg/lt.js +0 -465
- package/msg/lt.mjs +0 -446
- package/msg/lv.js +0 -465
- package/msg/lv.mjs +0 -446
- package/msg/mg.js +0 -465
- package/msg/mg.mjs +0 -446
- package/msg/mk.js +0 -465
- package/msg/mk.mjs +0 -446
- package/msg/ml.js +0 -465
- package/msg/ml.mjs +0 -446
- package/msg/mnw.js +0 -465
- package/msg/mnw.mjs +0 -446
- package/msg/ms.js +0 -465
- package/msg/ms.mjs +0 -446
- package/msg/my.js +0 -465
- package/msg/my.mjs +0 -446
- package/msg/mzn.js +0 -465
- package/msg/mzn.mjs +0 -446
- package/msg/nb.js +0 -465
- package/msg/nb.mjs +0 -446
- package/msg/ne.js +0 -465
- package/msg/ne.mjs +0 -446
- package/msg/nl.js +0 -465
- package/msg/nl.mjs +0 -446
- package/msg/oc.js +0 -465
- package/msg/oc.mjs +0 -446
- package/msg/olo.js +0 -465
- package/msg/olo.mjs +0 -446
- package/msg/pa.js +0 -465
- package/msg/pa.mjs +0 -446
- package/msg/pl.js +0 -465
- package/msg/pl.mjs +0 -446
- package/msg/pms.js +0 -465
- package/msg/pms.mjs +0 -446
- package/msg/ps.js +0 -465
- package/msg/ps.mjs +0 -446
- package/msg/pt-br.js +0 -465
- package/msg/pt-br.mjs +0 -446
- package/msg/pt.js +0 -465
- package/msg/pt.mjs +0 -446
- package/msg/ro.js +0 -465
- package/msg/ro.mjs +0 -446
- package/msg/ru.js +0 -465
- package/msg/ru.mjs +0 -446
- package/msg/sc.js +0 -465
- package/msg/sc.mjs +0 -446
- package/msg/sco.js +0 -465
- package/msg/sco.mjs +0 -446
- package/msg/sd.js +0 -465
- package/msg/sd.mjs +0 -446
- package/msg/shn.js +0 -465
- package/msg/shn.mjs +0 -446
- package/msg/si.js +0 -465
- package/msg/si.mjs +0 -446
- package/msg/sk.js +0 -465
- package/msg/sk.mjs +0 -446
- package/msg/skr-arab.js +0 -465
- package/msg/skr-arab.mjs +0 -446
- package/msg/sl.js +0 -465
- package/msg/sl.mjs +0 -446
- package/msg/smn.js +0 -465
- package/msg/smn.mjs +0 -446
- package/msg/sq.js +0 -465
- package/msg/sq.mjs +0 -446
- package/msg/sr-latn.js +0 -465
- package/msg/sr-latn.mjs +0 -446
- package/msg/sr.js +0 -465
- package/msg/sr.mjs +0 -446
- package/msg/sv.js +0 -465
- package/msg/sv.mjs +0 -446
- package/msg/sw.js +0 -465
- package/msg/sw.mjs +0 -446
- package/msg/ta.js +0 -465
- package/msg/ta.mjs +0 -446
- package/msg/tcy.js +0 -465
- package/msg/tcy.mjs +0 -446
- package/msg/tdd.js +0 -465
- package/msg/tdd.mjs +0 -446
- package/msg/te.js +0 -465
- package/msg/te.mjs +0 -446
- package/msg/th.js +0 -465
- package/msg/th.mjs +0 -446
- package/msg/ti.js +0 -465
- package/msg/ti.mjs +0 -446
- package/msg/tl.js +0 -465
- package/msg/tl.mjs +0 -446
- package/msg/tlh.js +0 -465
- package/msg/tlh.mjs +0 -446
- package/msg/tr.js +0 -465
- package/msg/tr.mjs +0 -446
- package/msg/ug-arab.js +0 -465
- package/msg/ug-arab.mjs +0 -446
- package/msg/uk.js +0 -465
- package/msg/uk.mjs +0 -446
- package/msg/ur.js +0 -465
- package/msg/ur.mjs +0 -446
- package/msg/uz.js +0 -465
- package/msg/uz.mjs +0 -446
- package/msg/vi.js +0 -465
- package/msg/vi.mjs +0 -446
- package/msg/xmf.js +0 -465
- package/msg/xmf.mjs +0 -446
- package/msg/yo.js +0 -465
- package/msg/yo.mjs +0 -446
- package/msg/zgh.js +0 -465
- package/msg/zgh.mjs +0 -446
- package/msg/zh-hans.js +0 -465
- package/msg/zh-hans.mjs +0 -446
- package/msg/zh-hant.js +0 -465
- package/msg/zh-hant.mjs +0 -446
- package/php.js +0 -4
- package/php.mjs +0 -6
- package/php_compressed.js +0 -283
- package/php_compressed.js.map +0 -1
- package/python.js +0 -4
- package/python.mjs +0 -6
- package/python_compressed.js +0 -208
- package/python_compressed.js.map +0 -1
- /package/{README.md → scripts/package/README.md} +0 -0
- /package/{core-node.js → scripts/package/core-node.js} +0 -0
- /package/{blocks.d.ts → typings/blocks.d.ts} +0 -0
- /package/{core.d.ts → typings/core.d.ts} +0 -0
- /package/{dart.d.ts → typings/dart.d.ts} +0 -0
- /package/{index.d.ts → typings/index.d.ts} +0 -0
- /package/{javascript.d.ts → typings/javascript.d.ts} +0 -0
- /package/{lua.d.ts → typings/lua.d.ts} +0 -0
- /package/{msg → typings/msg}/ab.d.ts +0 -0
- /package/{msg → typings/msg}/ace.d.ts +0 -0
- /package/{msg → typings/msg}/af.d.ts +0 -0
- /package/{msg → typings/msg}/am.d.ts +0 -0
- /package/{msg → typings/msg}/ar.d.ts +0 -0
- /package/{msg → typings/msg}/ast.d.ts +0 -0
- /package/{msg → typings/msg}/az.d.ts +0 -0
- /package/{msg → typings/msg}/ba.d.ts +0 -0
- /package/{msg → typings/msg}/bcc.d.ts +0 -0
- /package/{msg → typings/msg}/be-tarask.d.ts +0 -0
- /package/{msg → typings/msg}/be.d.ts +0 -0
- /package/{msg → typings/msg}/bg.d.ts +0 -0
- /package/{msg → typings/msg}/bn.d.ts +0 -0
- /package/{msg → typings/msg}/br.d.ts +0 -0
- /package/{msg → typings/msg}/bs.d.ts +0 -0
- /package/{msg → typings/msg}/ca.d.ts +0 -0
- /package/{msg → typings/msg}/cdo.d.ts +0 -0
- /package/{msg → typings/msg}/ce.d.ts +0 -0
- /package/{msg → typings/msg}/cs.d.ts +0 -0
- /package/{msg → typings/msg}/da.d.ts +0 -0
- /package/{msg → typings/msg}/de.d.ts +0 -0
- /package/{msg → typings/msg}/diq.d.ts +0 -0
- /package/{msg → typings/msg}/dtp.d.ts +0 -0
- /package/{msg → typings/msg}/dty.d.ts +0 -0
- /package/{msg → typings/msg}/ee.d.ts +0 -0
- /package/{msg → typings/msg}/el.d.ts +0 -0
- /package/{msg → typings/msg}/en-gb.d.ts +0 -0
- /package/{msg → typings/msg}/en.d.ts +0 -0
- /package/{msg → typings/msg}/eo.d.ts +0 -0
- /package/{msg → typings/msg}/es.d.ts +0 -0
- /package/{msg → typings/msg}/et.d.ts +0 -0
- /package/{msg → typings/msg}/eu.d.ts +0 -0
- /package/{msg → typings/msg}/fa.d.ts +0 -0
- /package/{msg → typings/msg}/fi.d.ts +0 -0
- /package/{msg → typings/msg}/fo.d.ts +0 -0
- /package/{msg → typings/msg}/fr.d.ts +0 -0
- /package/{msg → typings/msg}/frr.d.ts +0 -0
- /package/{msg → typings/msg}/gl.d.ts +0 -0
- /package/{msg → typings/msg}/gn.d.ts +0 -0
- /package/{msg → typings/msg}/gor.d.ts +0 -0
- /package/{msg → typings/msg}/ha.d.ts +0 -0
- /package/{msg → typings/msg}/hak.d.ts +0 -0
- /package/{msg → typings/msg}/he.d.ts +0 -0
- /package/{msg → typings/msg}/hi.d.ts +0 -0
- /package/{msg → typings/msg}/hr.d.ts +0 -0
- /package/{msg → typings/msg}/hrx.d.ts +0 -0
- /package/{msg → typings/msg}/hsb.d.ts +0 -0
- /package/{msg → typings/msg}/hu.d.ts +0 -0
- /package/{msg → typings/msg}/hy.d.ts +0 -0
- /package/{msg → typings/msg}/ia.d.ts +0 -0
- /package/{msg → typings/msg}/id.d.ts +0 -0
- /package/{msg → typings/msg}/ig.d.ts +0 -0
- /package/{msg → typings/msg}/inh.d.ts +0 -0
- /package/{msg → typings/msg}/is.d.ts +0 -0
- /package/{msg → typings/msg}/it.d.ts +0 -0
- /package/{msg → typings/msg}/ja.d.ts +0 -0
- /package/{msg → typings/msg}/ka.d.ts +0 -0
- /package/{msg → typings/msg}/kab.d.ts +0 -0
- /package/{msg → typings/msg}/kbd-cyrl.d.ts +0 -0
- /package/{msg → typings/msg}/km.d.ts +0 -0
- /package/{msg → typings/msg}/kn.d.ts +0 -0
- /package/{msg → typings/msg}/ko.d.ts +0 -0
- /package/{msg → typings/msg}/ksh.d.ts +0 -0
- /package/{msg → typings/msg}/ku-latn.d.ts +0 -0
- /package/{msg → typings/msg}/ky.d.ts +0 -0
- /package/{msg → typings/msg}/la.d.ts +0 -0
- /package/{msg → typings/msg}/lb.d.ts +0 -0
- /package/{msg → typings/msg}/lki.d.ts +0 -0
- /package/{msg → typings/msg}/lo.d.ts +0 -0
- /package/{msg → typings/msg}/lrc.d.ts +0 -0
- /package/{msg → typings/msg}/lt.d.ts +0 -0
- /package/{msg → typings/msg}/lv.d.ts +0 -0
- /package/{msg → typings/msg}/mg.d.ts +0 -0
- /package/{msg → typings/msg}/mk.d.ts +0 -0
- /package/{msg → typings/msg}/ml.d.ts +0 -0
- /package/{msg → typings/msg}/mnw.d.ts +0 -0
- /package/{msg → typings/msg}/ms.d.ts +0 -0
- /package/{msg → typings/msg}/msg.d.ts +0 -0
- /package/{msg → typings/msg}/my.d.ts +0 -0
- /package/{msg → typings/msg}/mzn.d.ts +0 -0
- /package/{msg → typings/msg}/nb.d.ts +0 -0
- /package/{msg → typings/msg}/ne.d.ts +0 -0
- /package/{msg → typings/msg}/nl.d.ts +0 -0
- /package/{msg → typings/msg}/oc.d.ts +0 -0
- /package/{msg → typings/msg}/olo.d.ts +0 -0
- /package/{msg → typings/msg}/pa.d.ts +0 -0
- /package/{msg → typings/msg}/pl.d.ts +0 -0
- /package/{msg → typings/msg}/pms.d.ts +0 -0
- /package/{msg → typings/msg}/ps.d.ts +0 -0
- /package/{msg → typings/msg}/pt-br.d.ts +0 -0
- /package/{msg → typings/msg}/pt.d.ts +0 -0
- /package/{msg → typings/msg}/ro.d.ts +0 -0
- /package/{msg → typings/msg}/ru.d.ts +0 -0
- /package/{msg → typings/msg}/sc.d.ts +0 -0
- /package/{msg → typings/msg}/sco.d.ts +0 -0
- /package/{msg → typings/msg}/sd.d.ts +0 -0
- /package/{msg → typings/msg}/shn.d.ts +0 -0
- /package/{msg → typings/msg}/si.d.ts +0 -0
- /package/{msg → typings/msg}/sk.d.ts +0 -0
- /package/{msg → typings/msg}/skr-arab.d.ts +0 -0
- /package/{msg → typings/msg}/sl.d.ts +0 -0
- /package/{msg → typings/msg}/smn.d.ts +0 -0
- /package/{msg → typings/msg}/sq.d.ts +0 -0
- /package/{msg → typings/msg}/sr-latn.d.ts +0 -0
- /package/{msg → typings/msg}/sr.d.ts +0 -0
- /package/{msg → typings/msg}/sv.d.ts +0 -0
- /package/{msg → typings/msg}/sw.d.ts +0 -0
- /package/{msg → typings/msg}/ta.d.ts +0 -0
- /package/{msg → typings/msg}/tcy.d.ts +0 -0
- /package/{msg → typings/msg}/tdd.d.ts +0 -0
- /package/{msg → typings/msg}/te.d.ts +0 -0
- /package/{msg → typings/msg}/th.d.ts +0 -0
- /package/{msg → typings/msg}/ti.d.ts +0 -0
- /package/{msg → typings/msg}/tl.d.ts +0 -0
- /package/{msg → typings/msg}/tlh.d.ts +0 -0
- /package/{msg → typings/msg}/tr.d.ts +0 -0
- /package/{msg → typings/msg}/ug-arab.d.ts +0 -0
- /package/{msg → typings/msg}/uk.d.ts +0 -0
- /package/{msg → typings/msg}/ur.d.ts +0 -0
- /package/{msg → typings/msg}/uz.d.ts +0 -0
- /package/{msg → typings/msg}/vi.d.ts +0 -0
- /package/{msg → typings/msg}/xmf.d.ts +0 -0
- /package/{msg → typings/msg}/yo.d.ts +0 -0
- /package/{msg → typings/msg}/zgh.d.ts +0 -0
- /package/{msg → typings/msg}/zh-hans.d.ts +0 -0
- /package/{msg → typings/msg}/zh-hant.d.ts +0 -0
- /package/{php.d.ts → typings/php.d.ts} +0 -0
- /package/{python.d.ts → typings/python.d.ts} +0 -0
package/core/grid.ts
ADDED
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2017 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Object for configuring and updating a workspace grid in
|
|
9
|
+
* Blockly.
|
|
10
|
+
*
|
|
11
|
+
* @class
|
|
12
|
+
*/
|
|
13
|
+
// Former goog.module ID: Blockly.Grid
|
|
14
|
+
|
|
15
|
+
import {GridOptions} from './options.js';
|
|
16
|
+
import {Coordinate} from './utils/coordinate.js';
|
|
17
|
+
import * as dom from './utils/dom.js';
|
|
18
|
+
import {Svg} from './utils/svg.js';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Class for a workspace's grid.
|
|
22
|
+
*/
|
|
23
|
+
export class Grid {
|
|
24
|
+
private spacing: number;
|
|
25
|
+
private length: number;
|
|
26
|
+
private scale: number = 1;
|
|
27
|
+
private readonly line1: SVGElement;
|
|
28
|
+
private readonly line2: SVGElement;
|
|
29
|
+
private snapToGrid: boolean;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @param pattern The grid's SVG pattern, created during injection.
|
|
33
|
+
* @param options A dictionary of normalized options for the grid.
|
|
34
|
+
* See grid documentation:
|
|
35
|
+
* https://developers.google.com/blockly/guides/configure/web/grid
|
|
36
|
+
*/
|
|
37
|
+
constructor(
|
|
38
|
+
private pattern: SVGElement,
|
|
39
|
+
options: GridOptions,
|
|
40
|
+
) {
|
|
41
|
+
/** The spacing of the grid lines (in px). */
|
|
42
|
+
this.spacing = options['spacing'] ?? 0;
|
|
43
|
+
|
|
44
|
+
/** How long the grid lines should be (in px). */
|
|
45
|
+
this.length = options['length'] ?? 1;
|
|
46
|
+
|
|
47
|
+
/** The horizontal grid line, if it exists. */
|
|
48
|
+
this.line1 = pattern.firstChild as SVGElement;
|
|
49
|
+
|
|
50
|
+
/** The vertical grid line, if it exists. */
|
|
51
|
+
this.line2 = this.line1 && (this.line1.nextSibling as SVGElement);
|
|
52
|
+
|
|
53
|
+
/** Whether blocks should snap to the grid. */
|
|
54
|
+
this.snapToGrid = options['snap'] ?? false;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Sets the spacing between the centers of the grid lines.
|
|
59
|
+
*
|
|
60
|
+
* This does not trigger snapping to the newly spaced grid. If you want to
|
|
61
|
+
* snap blocks to the grid programmatically that needs to be triggered
|
|
62
|
+
* on individual top-level blocks. The next time a block is dragged and
|
|
63
|
+
* dropped it will snap to the grid if snapping to the grid is enabled.
|
|
64
|
+
*/
|
|
65
|
+
setSpacing(spacing: number) {
|
|
66
|
+
this.spacing = spacing;
|
|
67
|
+
this.update(this.scale);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Get the spacing of the grid points (in px).
|
|
72
|
+
*
|
|
73
|
+
* @returns The spacing of the grid points.
|
|
74
|
+
*/
|
|
75
|
+
getSpacing(): number {
|
|
76
|
+
return this.spacing;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/** Sets the length of the grid lines. */
|
|
80
|
+
setLength(length: number) {
|
|
81
|
+
this.length = length;
|
|
82
|
+
this.update(this.scale);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/** Get the length of the grid lines (in px). */
|
|
86
|
+
getLength(): number {
|
|
87
|
+
return this.length;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Sets whether blocks should snap to the grid or not.
|
|
92
|
+
*
|
|
93
|
+
* Setting this to true does not trigger snapping. If you want to snap blocks
|
|
94
|
+
* to the grid programmatically that needs to be triggered on individual
|
|
95
|
+
* top-level blocks. The next time a block is dragged and dropped it will
|
|
96
|
+
* snap to the grid.
|
|
97
|
+
*/
|
|
98
|
+
setSnapToGrid(snap: boolean) {
|
|
99
|
+
this.snapToGrid = snap;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Whether blocks should snap to the grid.
|
|
104
|
+
*
|
|
105
|
+
* @returns True if blocks should snap, false otherwise.
|
|
106
|
+
*/
|
|
107
|
+
shouldSnap(): boolean {
|
|
108
|
+
return this.snapToGrid;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Get the ID of the pattern element, which should be randomized to avoid
|
|
113
|
+
* conflicts with other Blockly instances on the page.
|
|
114
|
+
*
|
|
115
|
+
* @returns The pattern ID.
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
118
|
+
getPatternId(): string {
|
|
119
|
+
return this.pattern.id;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Update the grid with a new scale.
|
|
124
|
+
*
|
|
125
|
+
* @param scale The new workspace scale.
|
|
126
|
+
* @internal
|
|
127
|
+
*/
|
|
128
|
+
update(scale: number) {
|
|
129
|
+
this.scale = scale;
|
|
130
|
+
const safeSpacing = this.spacing * scale;
|
|
131
|
+
|
|
132
|
+
this.pattern.setAttribute('width', `${safeSpacing}`);
|
|
133
|
+
this.pattern.setAttribute('height', `${safeSpacing}`);
|
|
134
|
+
|
|
135
|
+
let half = Math.floor(this.spacing / 2) + 0.5;
|
|
136
|
+
let start = half - this.length / 2;
|
|
137
|
+
let end = half + this.length / 2;
|
|
138
|
+
|
|
139
|
+
half *= scale;
|
|
140
|
+
start *= scale;
|
|
141
|
+
end *= scale;
|
|
142
|
+
|
|
143
|
+
this.setLineAttributes(this.line1, scale, start, end, half, half);
|
|
144
|
+
this.setLineAttributes(this.line2, scale, half, half, start, end);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Set the attributes on one of the lines in the grid. Use this to update the
|
|
149
|
+
* length and stroke width of the grid lines.
|
|
150
|
+
*
|
|
151
|
+
* @param line Which line to update.
|
|
152
|
+
* @param width The new stroke size (in px).
|
|
153
|
+
* @param x1 The new x start position of the line (in px).
|
|
154
|
+
* @param x2 The new x end position of the line (in px).
|
|
155
|
+
* @param y1 The new y start position of the line (in px).
|
|
156
|
+
* @param y2 The new y end position of the line (in px).
|
|
157
|
+
*/
|
|
158
|
+
private setLineAttributes(
|
|
159
|
+
line: SVGElement,
|
|
160
|
+
width: number,
|
|
161
|
+
x1: number,
|
|
162
|
+
x2: number,
|
|
163
|
+
y1: number,
|
|
164
|
+
y2: number,
|
|
165
|
+
) {
|
|
166
|
+
if (line) {
|
|
167
|
+
line.setAttribute('stroke-width', `${width}`);
|
|
168
|
+
line.setAttribute('x1', `${x1}`);
|
|
169
|
+
line.setAttribute('y1', `${y1}`);
|
|
170
|
+
line.setAttribute('x2', `${x2}`);
|
|
171
|
+
line.setAttribute('y2', `${y2}`);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Move the grid to a new x and y position, and make sure that change is
|
|
177
|
+
* visible.
|
|
178
|
+
*
|
|
179
|
+
* @param x The new x position of the grid (in px).
|
|
180
|
+
* @param y The new y position of the grid (in px).
|
|
181
|
+
* @internal
|
|
182
|
+
*/
|
|
183
|
+
moveTo(x: number, y: number) {
|
|
184
|
+
this.pattern.setAttribute('x', `${x}`);
|
|
185
|
+
this.pattern.setAttribute('y', `${y}`);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Given a coordinate, return the nearest coordinate aligned to the grid.
|
|
190
|
+
*
|
|
191
|
+
* @param xy A workspace coordinate.
|
|
192
|
+
* @returns Workspace coordinate of nearest grid point.
|
|
193
|
+
* If there's no change, return the same coordinate object.
|
|
194
|
+
*/
|
|
195
|
+
alignXY(xy: Coordinate): Coordinate {
|
|
196
|
+
const spacing = this.getSpacing();
|
|
197
|
+
const half = spacing / 2;
|
|
198
|
+
const x = Math.round(Math.round((xy.x - half) / spacing) * spacing + half);
|
|
199
|
+
const y = Math.round(Math.round((xy.y - half) / spacing) * spacing + half);
|
|
200
|
+
if (x === xy.x && y === xy.y) {
|
|
201
|
+
// No change.
|
|
202
|
+
return xy;
|
|
203
|
+
}
|
|
204
|
+
return new Coordinate(x, y);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Create the DOM for the grid described by options.
|
|
209
|
+
*
|
|
210
|
+
* @param rnd A random ID to append to the pattern's ID.
|
|
211
|
+
* @param gridOptions The object containing grid configuration.
|
|
212
|
+
* @param defs The root SVG element for this workspace's defs.
|
|
213
|
+
* @param injectionDiv The div containing the parent workspace and all related
|
|
214
|
+
* workspaces and block containers. CSS variables representing SVG patterns
|
|
215
|
+
* will be scoped to this container.
|
|
216
|
+
* @returns The SVG element for the grid pattern.
|
|
217
|
+
* @internal
|
|
218
|
+
*/
|
|
219
|
+
static createDom(
|
|
220
|
+
rnd: string,
|
|
221
|
+
gridOptions: GridOptions,
|
|
222
|
+
defs: SVGElement,
|
|
223
|
+
injectionDiv?: HTMLElement,
|
|
224
|
+
): SVGElement {
|
|
225
|
+
/*
|
|
226
|
+
<pattern id="blocklyGridPattern837493" patternUnits="userSpaceOnUse">
|
|
227
|
+
<rect stroke="#888" />
|
|
228
|
+
<rect stroke="#888" />
|
|
229
|
+
</pattern>
|
|
230
|
+
*/
|
|
231
|
+
const gridPattern = dom.createSvgElement(
|
|
232
|
+
Svg.PATTERN,
|
|
233
|
+
{'id': 'blocklyGridPattern' + rnd, 'patternUnits': 'userSpaceOnUse'},
|
|
234
|
+
defs,
|
|
235
|
+
);
|
|
236
|
+
// x1, y1, x1, x2 properties will be set later in update.
|
|
237
|
+
if ((gridOptions['length'] ?? 1) > 0 && (gridOptions['spacing'] ?? 0) > 0) {
|
|
238
|
+
dom.createSvgElement(
|
|
239
|
+
Svg.LINE,
|
|
240
|
+
{'stroke': gridOptions['colour']},
|
|
241
|
+
gridPattern,
|
|
242
|
+
);
|
|
243
|
+
if (gridOptions['length'] ?? 1 > 1) {
|
|
244
|
+
dom.createSvgElement(
|
|
245
|
+
Svg.LINE,
|
|
246
|
+
{'stroke': gridOptions['colour']},
|
|
247
|
+
gridPattern,
|
|
248
|
+
);
|
|
249
|
+
}
|
|
250
|
+
} else {
|
|
251
|
+
// Edge 16 doesn't handle empty patterns
|
|
252
|
+
dom.createSvgElement(Svg.LINE, {}, gridPattern);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if (injectionDiv) {
|
|
256
|
+
// Add CSS variables scoped to the injection div referencing the created
|
|
257
|
+
// patterns so that CSS can apply the patterns to any element in the
|
|
258
|
+
// injection div.
|
|
259
|
+
injectionDiv.style.setProperty(
|
|
260
|
+
'--blocklyGridPattern',
|
|
261
|
+
`url(#${gridPattern.id})`,
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
return gridPattern;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
@@ -0,0 +1,429 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Former goog.module ID: Blockly.Comment
|
|
8
|
+
|
|
9
|
+
import type {Block} from '../block.js';
|
|
10
|
+
import type {BlockSvg} from '../block_svg.js';
|
|
11
|
+
import {TextInputBubble} from '../bubbles/textinput_bubble.js';
|
|
12
|
+
import {EventType} from '../events/type.js';
|
|
13
|
+
import * as eventUtils from '../events/utils.js';
|
|
14
|
+
import type {IHasBubble} from '../interfaces/i_has_bubble.js';
|
|
15
|
+
import type {ISerializable} from '../interfaces/i_serializable.js';
|
|
16
|
+
import * as renderManagement from '../render_management.js';
|
|
17
|
+
import {Coordinate} from '../utils.js';
|
|
18
|
+
import * as dom from '../utils/dom.js';
|
|
19
|
+
import {Rect} from '../utils/rect.js';
|
|
20
|
+
import {Size} from '../utils/size.js';
|
|
21
|
+
import {Svg} from '../utils/svg.js';
|
|
22
|
+
import type {WorkspaceSvg} from '../workspace_svg.js';
|
|
23
|
+
import {Icon} from './icon.js';
|
|
24
|
+
import {IconType} from './icon_types.js';
|
|
25
|
+
import * as registry from './registry.js';
|
|
26
|
+
|
|
27
|
+
/** The size of the comment icon in workspace-scale units. */
|
|
28
|
+
const SIZE = 17;
|
|
29
|
+
|
|
30
|
+
/** The default width in workspace-scale units of the text input bubble. */
|
|
31
|
+
const DEFAULT_BUBBLE_WIDTH = 160;
|
|
32
|
+
|
|
33
|
+
/** The default height in workspace-scale units of the text input bubble. */
|
|
34
|
+
const DEFAULT_BUBBLE_HEIGHT = 80;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* An icon which allows the user to add comment text to a block.
|
|
38
|
+
*/
|
|
39
|
+
export class CommentIcon extends Icon implements IHasBubble, ISerializable {
|
|
40
|
+
/** The type string used to identify this icon. */
|
|
41
|
+
static readonly TYPE = IconType.COMMENT;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* The weight this icon has relative to other icons. Icons with more positive
|
|
45
|
+
* weight values are rendered farther toward the end of the block.
|
|
46
|
+
*/
|
|
47
|
+
static readonly WEIGHT = 3;
|
|
48
|
+
|
|
49
|
+
/** The bubble used to show comment text to the user. */
|
|
50
|
+
private textInputBubble: TextInputBubble | null = null;
|
|
51
|
+
|
|
52
|
+
/** The text of this comment. */
|
|
53
|
+
private text = '';
|
|
54
|
+
|
|
55
|
+
/** The size of this comment (which is applied to the editable bubble). */
|
|
56
|
+
private bubbleSize = new Size(DEFAULT_BUBBLE_WIDTH, DEFAULT_BUBBLE_HEIGHT);
|
|
57
|
+
|
|
58
|
+
/** The location of the comment bubble in workspace coordinates. */
|
|
59
|
+
private bubbleLocation?: Coordinate;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* The visibility of the bubble for this comment.
|
|
63
|
+
*
|
|
64
|
+
* This is used to track what the visible state /should/ be, not necessarily
|
|
65
|
+
* what it currently /is/. E.g. sometimes this will be true, but the block
|
|
66
|
+
* hasn't been rendered yet, so the bubble will not currently be visible.
|
|
67
|
+
*/
|
|
68
|
+
private bubbleVisiblity = false;
|
|
69
|
+
|
|
70
|
+
constructor(protected readonly sourceBlock: Block) {
|
|
71
|
+
super(sourceBlock);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
override getType(): IconType<CommentIcon> {
|
|
75
|
+
return CommentIcon.TYPE;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
override initView(pointerdownListener: (e: PointerEvent) => void): void {
|
|
79
|
+
if (this.svgRoot) return; // Already initialized.
|
|
80
|
+
|
|
81
|
+
super.initView(pointerdownListener);
|
|
82
|
+
|
|
83
|
+
// Circle.
|
|
84
|
+
dom.createSvgElement(
|
|
85
|
+
Svg.CIRCLE,
|
|
86
|
+
{'class': 'blocklyIconShape', 'r': '8', 'cx': '8', 'cy': '8'},
|
|
87
|
+
this.svgRoot,
|
|
88
|
+
);
|
|
89
|
+
// Can't use a real '?' text character since different browsers and
|
|
90
|
+
// operating systems render it differently. Body of question mark.
|
|
91
|
+
dom.createSvgElement(
|
|
92
|
+
Svg.PATH,
|
|
93
|
+
{
|
|
94
|
+
'class': 'blocklyIconSymbol',
|
|
95
|
+
'd':
|
|
96
|
+
'm6.8,10h2c0.003,-0.617 0.271,-0.962 0.633,-1.266 2.875,-2.405' +
|
|
97
|
+
'0.607,-5.534 -3.765,-3.874v1.7c3.12,-1.657 3.698,0.118 2.336,1.25' +
|
|
98
|
+
'-1.201,0.998 -1.201,1.528 -1.204,2.19z',
|
|
99
|
+
},
|
|
100
|
+
this.svgRoot,
|
|
101
|
+
);
|
|
102
|
+
// Dot of question mark.
|
|
103
|
+
dom.createSvgElement(
|
|
104
|
+
Svg.RECT,
|
|
105
|
+
{
|
|
106
|
+
'class': 'blocklyIconSymbol',
|
|
107
|
+
'x': '6.8',
|
|
108
|
+
'y': '10.78',
|
|
109
|
+
'height': '2',
|
|
110
|
+
'width': '2',
|
|
111
|
+
},
|
|
112
|
+
this.svgRoot,
|
|
113
|
+
);
|
|
114
|
+
dom.addClass(this.svgRoot!, 'blocklyCommentIcon');
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
override dispose() {
|
|
118
|
+
super.dispose();
|
|
119
|
+
this.textInputBubble?.dispose();
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
override getWeight(): number {
|
|
123
|
+
return CommentIcon.WEIGHT;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
override getSize(): Size {
|
|
127
|
+
return new Size(SIZE, SIZE);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
override applyColour(): void {
|
|
131
|
+
super.applyColour();
|
|
132
|
+
const colour = (this.sourceBlock as BlockSvg).getColour();
|
|
133
|
+
this.textInputBubble?.setColour(colour);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Updates the state of the bubble (editable / noneditable) to reflect the
|
|
138
|
+
* state of the bubble if the bubble is currently shown.
|
|
139
|
+
*/
|
|
140
|
+
override async updateEditable(): Promise<void> {
|
|
141
|
+
super.updateEditable();
|
|
142
|
+
if (this.bubbleIsVisible()) {
|
|
143
|
+
// Close and reopen the bubble to display the correct UI.
|
|
144
|
+
await this.setBubbleVisible(false);
|
|
145
|
+
await this.setBubbleVisible(true);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
override onLocationChange(blockOrigin: Coordinate): void {
|
|
150
|
+
const oldLocation = this.workspaceLocation;
|
|
151
|
+
super.onLocationChange(blockOrigin);
|
|
152
|
+
if (this.bubbleLocation) {
|
|
153
|
+
const newLocation = this.workspaceLocation;
|
|
154
|
+
const delta = Coordinate.difference(newLocation, oldLocation);
|
|
155
|
+
this.bubbleLocation = Coordinate.sum(this.bubbleLocation, delta);
|
|
156
|
+
}
|
|
157
|
+
const anchorLocation = this.getAnchorLocation();
|
|
158
|
+
this.textInputBubble?.setAnchorLocation(anchorLocation);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/** Sets the text of this comment. Updates any bubbles if they are visible. */
|
|
162
|
+
setText(text: string) {
|
|
163
|
+
const oldText = this.text;
|
|
164
|
+
eventUtils.fire(
|
|
165
|
+
new (eventUtils.get(EventType.BLOCK_CHANGE))(
|
|
166
|
+
this.sourceBlock,
|
|
167
|
+
'comment',
|
|
168
|
+
null,
|
|
169
|
+
oldText,
|
|
170
|
+
text,
|
|
171
|
+
),
|
|
172
|
+
);
|
|
173
|
+
this.text = text;
|
|
174
|
+
this.textInputBubble?.setText(this.text);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/** Returns the text of this comment. */
|
|
178
|
+
getText(): string {
|
|
179
|
+
return this.text;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Sets the size of the editable bubble for this comment. Resizes the
|
|
184
|
+
* bubble if it is visible.
|
|
185
|
+
*/
|
|
186
|
+
setBubbleSize(size: Size) {
|
|
187
|
+
this.bubbleSize = size;
|
|
188
|
+
this.textInputBubble?.setSize(this.bubbleSize, true);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/** @returns the size of the editable bubble for this comment. */
|
|
192
|
+
getBubbleSize(): Size {
|
|
193
|
+
return this.bubbleSize;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Sets the location of the comment bubble in the workspace.
|
|
198
|
+
*/
|
|
199
|
+
setBubbleLocation(location: Coordinate) {
|
|
200
|
+
this.bubbleLocation = location;
|
|
201
|
+
this.textInputBubble?.moveDuringDrag(location);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @returns the location of the comment bubble in the workspace.
|
|
206
|
+
*/
|
|
207
|
+
getBubbleLocation(): Coordinate | undefined {
|
|
208
|
+
return this.bubbleLocation;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* @returns the state of the comment as a JSON serializable value if the
|
|
213
|
+
* comment has text. Otherwise returns null.
|
|
214
|
+
*/
|
|
215
|
+
saveState(): CommentState | null {
|
|
216
|
+
if (this.text) {
|
|
217
|
+
const state: CommentState = {
|
|
218
|
+
'text': this.text,
|
|
219
|
+
'pinned': this.bubbleIsVisible(),
|
|
220
|
+
'height': this.bubbleSize.height,
|
|
221
|
+
'width': this.bubbleSize.width,
|
|
222
|
+
};
|
|
223
|
+
const location = this.getBubbleLocation();
|
|
224
|
+
if (location) {
|
|
225
|
+
state['x'] = this.sourceBlock.workspace.RTL
|
|
226
|
+
? this.sourceBlock.workspace.getWidth() -
|
|
227
|
+
(location.x + this.bubbleSize.width)
|
|
228
|
+
: location.x;
|
|
229
|
+
state['y'] = location.y;
|
|
230
|
+
}
|
|
231
|
+
return state;
|
|
232
|
+
}
|
|
233
|
+
return null;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/** Applies the given state to this comment. */
|
|
237
|
+
loadState(state: CommentState) {
|
|
238
|
+
this.text = state['text'] ?? '';
|
|
239
|
+
this.bubbleSize = new Size(
|
|
240
|
+
state['width'] ?? DEFAULT_BUBBLE_WIDTH,
|
|
241
|
+
state['height'] ?? DEFAULT_BUBBLE_HEIGHT,
|
|
242
|
+
);
|
|
243
|
+
this.bubbleVisiblity = state['pinned'] ?? false;
|
|
244
|
+
this.setBubbleVisible(this.bubbleVisiblity);
|
|
245
|
+
let x = state['x'];
|
|
246
|
+
const y = state['y'];
|
|
247
|
+
renderManagement.finishQueuedRenders().then(() => {
|
|
248
|
+
if (x && y) {
|
|
249
|
+
x = this.sourceBlock.workspace.RTL
|
|
250
|
+
? this.sourceBlock.workspace.getWidth() - (x + this.bubbleSize.width)
|
|
251
|
+
: x;
|
|
252
|
+
this.setBubbleLocation(new Coordinate(x, y));
|
|
253
|
+
}
|
|
254
|
+
});
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
override onClick(): void {
|
|
258
|
+
super.onClick();
|
|
259
|
+
this.setBubbleVisible(!this.bubbleIsVisible());
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
override isClickableInFlyout(): boolean {
|
|
263
|
+
return false;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Updates the text of this comment in response to changes in the text of
|
|
268
|
+
* the input bubble.
|
|
269
|
+
*/
|
|
270
|
+
onTextChange(): void {
|
|
271
|
+
if (!this.textInputBubble) return;
|
|
272
|
+
|
|
273
|
+
const newText = this.textInputBubble.getText();
|
|
274
|
+
if (this.text === newText) return;
|
|
275
|
+
|
|
276
|
+
eventUtils.fire(
|
|
277
|
+
new (eventUtils.get(EventType.BLOCK_CHANGE))(
|
|
278
|
+
this.sourceBlock,
|
|
279
|
+
'comment',
|
|
280
|
+
null,
|
|
281
|
+
this.text,
|
|
282
|
+
newText,
|
|
283
|
+
),
|
|
284
|
+
);
|
|
285
|
+
this.text = newText;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Updates the size of this icon in response to changes in the size of the
|
|
290
|
+
* input bubble.
|
|
291
|
+
*/
|
|
292
|
+
onSizeChange(): void {
|
|
293
|
+
if (this.textInputBubble) {
|
|
294
|
+
this.bubbleSize = this.textInputBubble.getSize();
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
onBubbleLocationChange(): void {
|
|
299
|
+
if (this.textInputBubble) {
|
|
300
|
+
this.bubbleLocation = this.textInputBubble.getRelativeToSurfaceXY();
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
bubbleIsVisible(): boolean {
|
|
305
|
+
return this.bubbleVisiblity;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
async setBubbleVisible(visible: boolean): Promise<void> {
|
|
309
|
+
if (this.bubbleVisiblity === visible) return;
|
|
310
|
+
this.bubbleVisiblity = visible;
|
|
311
|
+
|
|
312
|
+
await renderManagement.finishQueuedRenders();
|
|
313
|
+
|
|
314
|
+
if (
|
|
315
|
+
!this.sourceBlock.rendered ||
|
|
316
|
+
this.sourceBlock.isInFlyout ||
|
|
317
|
+
this.sourceBlock.isInsertionMarker()
|
|
318
|
+
)
|
|
319
|
+
return;
|
|
320
|
+
|
|
321
|
+
if (visible) {
|
|
322
|
+
if (this.sourceBlock.isEditable()) {
|
|
323
|
+
this.showEditableBubble();
|
|
324
|
+
} else {
|
|
325
|
+
this.showNonEditableBubble();
|
|
326
|
+
}
|
|
327
|
+
this.applyColour();
|
|
328
|
+
} else {
|
|
329
|
+
this.hideBubble();
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
eventUtils.fire(
|
|
333
|
+
new (eventUtils.get(EventType.BUBBLE_OPEN))(
|
|
334
|
+
this.sourceBlock,
|
|
335
|
+
visible,
|
|
336
|
+
'comment',
|
|
337
|
+
),
|
|
338
|
+
);
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
/** See IHasBubble.getBubble. */
|
|
342
|
+
getBubble(): TextInputBubble | null {
|
|
343
|
+
return this.textInputBubble;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Shows the editable text bubble for this comment, and adds change listeners
|
|
348
|
+
* to update the state of this icon in response to changes in the bubble.
|
|
349
|
+
*/
|
|
350
|
+
private showEditableBubble() {
|
|
351
|
+
this.createBubble();
|
|
352
|
+
this.textInputBubble?.addTextChangeListener(() => this.onTextChange());
|
|
353
|
+
this.textInputBubble?.addSizeChangeListener(() => this.onSizeChange());
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
/** Shows the non editable text bubble for this comment. */
|
|
357
|
+
private showNonEditableBubble() {
|
|
358
|
+
this.createBubble();
|
|
359
|
+
this.textInputBubble?.setEditable(false);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
protected createBubble() {
|
|
363
|
+
this.textInputBubble = new TextInputBubble(
|
|
364
|
+
this.sourceBlock.workspace as WorkspaceSvg,
|
|
365
|
+
this.getAnchorLocation(),
|
|
366
|
+
this.getBubbleOwnerRect(),
|
|
367
|
+
this,
|
|
368
|
+
);
|
|
369
|
+
this.textInputBubble.setText(this.getText());
|
|
370
|
+
this.textInputBubble.setSize(this.bubbleSize, true);
|
|
371
|
+
if (this.bubbleLocation) {
|
|
372
|
+
this.textInputBubble.moveDuringDrag(this.bubbleLocation);
|
|
373
|
+
}
|
|
374
|
+
this.textInputBubble.addTextChangeListener(() => this.onTextChange());
|
|
375
|
+
this.textInputBubble.addSizeChangeListener(() => this.onSizeChange());
|
|
376
|
+
this.textInputBubble.addLocationChangeListener(() =>
|
|
377
|
+
this.onBubbleLocationChange(),
|
|
378
|
+
);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/** Hides any open bubbles owned by this comment. */
|
|
382
|
+
private hideBubble() {
|
|
383
|
+
this.textInputBubble?.dispose();
|
|
384
|
+
this.textInputBubble = null;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* @returns the location the bubble should be anchored to.
|
|
389
|
+
* I.E. the middle of this icon.
|
|
390
|
+
*/
|
|
391
|
+
private getAnchorLocation(): Coordinate {
|
|
392
|
+
const midIcon = SIZE / 2;
|
|
393
|
+
return Coordinate.sum(
|
|
394
|
+
this.workspaceLocation,
|
|
395
|
+
new Coordinate(midIcon, midIcon),
|
|
396
|
+
);
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @returns the rect the bubble should avoid overlapping.
|
|
401
|
+
* I.E. the block that owns this icon.
|
|
402
|
+
*/
|
|
403
|
+
private getBubbleOwnerRect(): Rect {
|
|
404
|
+
return (this.sourceBlock as BlockSvg).getBoundingRectangleWithoutChildren();
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/** The save state format for a comment icon. */
|
|
409
|
+
export interface CommentState {
|
|
410
|
+
/** The text of the comment. */
|
|
411
|
+
text?: string;
|
|
412
|
+
|
|
413
|
+
/** True if the comment is open, false otherwise. */
|
|
414
|
+
pinned?: boolean;
|
|
415
|
+
|
|
416
|
+
/** The height of the comment bubble. */
|
|
417
|
+
height?: number;
|
|
418
|
+
|
|
419
|
+
/** The width of the comment bubble. */
|
|
420
|
+
width?: number;
|
|
421
|
+
|
|
422
|
+
/** The X coordinate of the comment bubble. */
|
|
423
|
+
x?: number;
|
|
424
|
+
|
|
425
|
+
/** The Y coordinate of the comment bubble. */
|
|
426
|
+
y?: number;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
registry.register(CommentIcon.TYPE, CommentIcon);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2023 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type {IIcon} from '../interfaces/i_icon.js';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Thrown when you add more than one icon of the same type to a block.
|
|
11
|
+
*/
|
|
12
|
+
export class DuplicateIconType extends Error {
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(public icon: IIcon) {
|
|
17
|
+
super(
|
|
18
|
+
`Tried to append an icon of type ${icon.getType()} when an icon of ` +
|
|
19
|
+
`that type already exists on the block. ` +
|
|
20
|
+
`Use getIcon to access the existing icon.`,
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
}
|