├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── documentation.yaml │ └── feature_request.yaml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── release.yml └── workflows │ ├── appengine_deploy.yml │ ├── assign_reviewers.yml │ ├── browser_test.yml │ ├── build.yml │ ├── conventional-label.yml │ ├── develop_freeze.yml │ ├── keyboard_plugin_test.yml │ ├── tag_module_cleanup.yml │ └── welcome_new_contributors.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _config.yml ├── api-extractor.json ├── appengine ├── .gcloudignore ├── README.txt ├── add_timestamps.py ├── app.yaml ├── apple-touch-icon.png ├── blockly_compressed.js ├── expiration.py ├── favicon.ico ├── index.yaml ├── main.py ├── redirect.html ├── requirements.txt ├── robots.txt ├── storage.js └── storage.py ├── blocks ├── blocks.ts ├── lists.ts ├── logic.ts ├── loops.ts ├── math.ts ├── procedures.ts ├── text.ts ├── variables.ts └── variables_dynamic.ts ├── commitlint.config.mjs ├── core ├── any_aliases.ts ├── block.ts ├── block_animations.ts ├── block_flyout_inflater.ts ├── block_svg.ts ├── blockly.ts ├── blockly_options.ts ├── blocks.ts ├── browser_events.ts ├── bubbles.ts ├── bubbles │ ├── bubble.ts │ ├── mini_workspace_bubble.ts │ ├── text_bubble.ts │ └── textinput_bubble.ts ├── bump_objects.ts ├── button_flyout_inflater.ts ├── clipboard.ts ├── clipboard │ ├── block_paster.ts │ ├── registry.ts │ └── workspace_comment_paster.ts ├── comments.ts ├── comments │ ├── collapse_comment_bar_button.ts │ ├── comment_bar_button.ts │ ├── comment_editor.ts │ ├── comment_view.ts │ ├── delete_comment_bar_button.ts │ ├── rendered_workspace_comment.ts │ └── workspace_comment.ts ├── common.ts ├── component_manager.ts ├── config.ts ├── connection.ts ├── connection_checker.ts ├── connection_db.ts ├── connection_type.ts ├── constants.ts ├── contextmenu.ts ├── contextmenu_items.ts ├── contextmenu_registry.ts ├── css.ts ├── delete_area.ts ├── dialog.ts ├── drag_target.ts ├── dragging.ts ├── dragging │ ├── block_drag_strategy.ts │ ├── bubble_drag_strategy.ts │ ├── comment_drag_strategy.ts │ └── dragger.ts ├── dropdowndiv.ts ├── events │ ├── events.ts │ ├── events_abstract.ts │ ├── events_block_base.ts │ ├── events_block_change.ts │ ├── events_block_create.ts │ ├── events_block_delete.ts │ ├── events_block_drag.ts │ ├── events_block_field_intermediate_change.ts │ ├── events_block_move.ts │ ├── events_bubble_open.ts │ ├── events_click.ts │ ├── events_comment_base.ts │ ├── events_comment_change.ts │ ├── events_comment_collapse.ts │ ├── events_comment_create.ts │ ├── events_comment_delete.ts │ ├── events_comment_drag.ts │ ├── events_comment_move.ts │ ├── events_comment_resize.ts │ ├── events_selected.ts │ ├── events_theme_change.ts │ ├── events_toolbox_item_select.ts │ ├── events_trashcan_open.ts │ ├── events_ui_base.ts │ ├── events_var_base.ts │ ├── events_var_create.ts │ ├── events_var_delete.ts │ ├── events_var_rename.ts │ ├── events_var_type_change.ts │ ├── events_viewport.ts │ ├── predicates.ts │ ├── type.ts │ ├── utils.ts │ └── workspace_events.ts ├── extensions.ts ├── field.ts ├── field_checkbox.ts ├── field_dropdown.ts ├── field_image.ts ├── field_input.ts ├── field_label.ts ├── field_label_serializable.ts ├── field_number.ts ├── field_registry.ts ├── field_textinput.ts ├── field_variable.ts ├── flyout_base.ts ├── flyout_button.ts ├── flyout_horizontal.ts ├── flyout_item.ts ├── flyout_metrics_manager.ts ├── flyout_navigator.ts ├── flyout_separator.ts ├── flyout_vertical.ts ├── focus_manager.ts ├── generator.ts ├── gesture.ts ├── grid.ts ├── icons.ts ├── icons │ ├── comment_icon.ts │ ├── exceptions.ts │ ├── icon.ts │ ├── icon_types.ts │ ├── mutator_icon.ts │ ├── registry.ts │ └── warning_icon.ts ├── inject.ts ├── inputs.ts ├── inputs │ ├── align.ts │ ├── dummy_input.ts │ ├── end_row_input.ts │ ├── input.ts │ ├── input_types.ts │ ├── statement_input.ts │ └── value_input.ts ├── insertion_marker_previewer.ts ├── interfaces │ ├── i_autohideable.ts │ ├── i_bounded_element.ts │ ├── i_bubble.ts │ ├── i_collapsible_toolbox_item.ts │ ├── i_comment_icon.ts │ ├── i_component.ts │ ├── i_connection_checker.ts │ ├── i_connection_previewer.ts │ ├── i_contextmenu.ts │ ├── i_copyable.ts │ ├── i_deletable.ts │ ├── i_delete_area.ts │ ├── i_drag_target.ts │ ├── i_draggable.ts │ ├── i_dragger.ts │ ├── i_flyout.ts │ ├── i_flyout_inflater.ts │ ├── i_focusable_node.ts │ ├── i_focusable_tree.ts │ ├── i_has_bubble.ts │ ├── i_icon.ts │ ├── i_keyboard_accessible.ts │ ├── i_legacy_procedure_blocks.ts │ ├── i_metrics_manager.ts │ ├── i_movable.ts │ ├── i_navigation_policy.ts │ ├── i_observable.ts │ ├── i_parameter_model.ts │ ├── i_paster.ts │ ├── i_positionable.ts │ ├── i_procedure_block.ts │ ├── i_procedure_map.ts │ ├── i_procedure_model.ts │ ├── i_registrable.ts │ ├── i_rendered_element.ts │ ├── i_selectable.ts │ ├── i_selectable_toolbox_item.ts │ ├── i_serializable.ts │ ├── i_serializer.ts │ ├── i_styleable.ts │ ├── i_toolbox.ts │ ├── i_toolbox_item.ts │ ├── i_variable_backed_parameter_model.ts │ ├── i_variable_map.ts │ └── i_variable_model.ts ├── internal_constants.ts ├── keyboard_nav │ ├── block_comment_navigation_policy.ts │ ├── block_navigation_policy.ts │ ├── comment_bar_button_navigation_policy.ts │ ├── comment_editor_navigation_policy.ts │ ├── connection_navigation_policy.ts │ ├── field_navigation_policy.ts │ ├── flyout_button_navigation_policy.ts │ ├── flyout_navigation_policy.ts │ ├── flyout_separator_navigation_policy.ts │ ├── icon_navigation_policy.ts │ ├── line_cursor.ts │ ├── marker.ts │ ├── workspace_comment_navigation_policy.ts │ └── workspace_navigation_policy.ts ├── keyboard_navigation_controller.ts ├── label_flyout_inflater.ts ├── layer_manager.ts ├── layers.ts ├── main.ts ├── marker_manager.ts ├── menu.ts ├── menu_separator.ts ├── menuitem.ts ├── metrics_manager.ts ├── msg.ts ├── names.ts ├── navigator.ts ├── observable_procedure_map.ts ├── options.ts ├── positionable_helpers.ts ├── procedures.ts ├── registry.ts ├── render_management.ts ├── rendered_connection.ts ├── renderers │ ├── common │ │ ├── block_rendering.ts │ │ ├── constants.ts │ │ ├── drawer.ts │ │ ├── i_path_object.ts │ │ ├── info.ts │ │ ├── path_object.ts │ │ └── renderer.ts │ ├── geras │ │ ├── constants.ts │ │ ├── drawer.ts │ │ ├── geras.ts │ │ ├── highlight_constants.ts │ │ ├── highlighter.ts │ │ ├── info.ts │ │ ├── measurables │ │ │ ├── inline_input.ts │ │ │ └── statement_input.ts │ │ ├── path_object.ts │ │ └── renderer.ts │ ├── measurables │ │ ├── base.ts │ │ ├── bottom_row.ts │ │ ├── connection.ts │ │ ├── external_value_input.ts │ │ ├── field.ts │ │ ├── hat.ts │ │ ├── icon.ts │ │ ├── in_row_spacer.ts │ │ ├── inline_input.ts │ │ ├── input_connection.ts │ │ ├── input_row.ts │ │ ├── jagged_edge.ts │ │ ├── next_connection.ts │ │ ├── output_connection.ts │ │ ├── previous_connection.ts │ │ ├── round_corner.ts │ │ ├── row.ts │ │ ├── spacer_row.ts │ │ ├── square_corner.ts │ │ ├── statement_input.ts │ │ ├── top_row.ts │ │ └── types.ts │ ├── thrasos │ │ ├── info.ts │ │ ├── renderer.ts │ │ └── thrasos.ts │ └── zelos │ │ ├── constants.ts │ │ ├── drawer.ts │ │ ├── info.ts │ │ ├── measurables │ │ ├── bottom_row.ts │ │ ├── inputs.ts │ │ ├── row_elements.ts │ │ └── top_row.ts │ │ ├── path_object.ts │ │ ├── renderer.ts │ │ └── zelos.ts ├── scrollbar.ts ├── scrollbar_pair.ts ├── separator_flyout_inflater.ts ├── serialization.ts ├── serialization │ ├── blocks.ts │ ├── exceptions.ts │ ├── priorities.ts │ ├── procedures.ts │ ├── registry.ts │ ├── variables.ts │ ├── workspace_comments.ts │ └── workspaces.ts ├── shortcut_items.ts ├── shortcut_registry.ts ├── sprites.ts ├── theme.ts ├── theme │ ├── classic.ts │ ├── themes.ts │ └── zelos.ts ├── theme_manager.ts ├── toast.ts ├── toolbox │ ├── category.ts │ ├── collapsible_category.ts │ ├── separator.ts │ ├── toolbox.ts │ └── toolbox_item.ts ├── tooltip.ts ├── touch.ts ├── trashcan.ts ├── utils.ts ├── utils │ ├── aria.ts │ ├── array.ts │ ├── colour.ts │ ├── coordinate.ts │ ├── deprecation.ts │ ├── dom.ts │ ├── drag.ts │ ├── focusable_tree_traverser.ts │ ├── idgenerator.ts │ ├── keycodes.ts │ ├── math.ts │ ├── metrics.ts │ ├── object.ts │ ├── parsing.ts │ ├── rect.ts │ ├── size.ts │ ├── string.ts │ ├── style.ts │ ├── svg.ts │ ├── svg_math.ts │ ├── svg_paths.ts │ ├── toolbox.ts │ ├── useragent.ts │ └── xml.ts ├── variable_map.ts ├── variable_model.ts ├── variables.ts ├── variables_dynamic.ts ├── widgetdiv.ts ├── workspace.ts ├── workspace_audio.ts ├── workspace_dragger.ts ├── workspace_svg.ts ├── xml.ts └── zoom_controls.ts ├── demos ├── blockfactory │ ├── analytics.js │ ├── app_controller.js │ ├── block_definition_extractor.js │ ├── block_exporter_controller.js │ ├── block_exporter_tools.js │ ├── block_exporter_view.js │ ├── block_library_controller.js │ ├── block_library_storage.js │ ├── block_library_view.js │ ├── block_option.js │ ├── blocks.js │ ├── cp.css │ ├── cp.js │ ├── factory.css │ ├── factory.js │ ├── factory_utils.js │ ├── icon.png │ ├── index.html │ ├── link.png │ ├── standard_categories.js │ └── workspacefactory │ │ ├── wfactory_controller.js │ │ ├── wfactory_generator.js │ │ ├── wfactory_init.js │ │ ├── wfactory_model.js │ │ └── wfactory_view.js ├── code │ ├── code.js │ ├── icon.png │ ├── icons.png │ ├── index.html │ ├── msg │ │ ├── ar.js │ │ ├── be-tarask.js │ │ ├── br.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── fa.js │ │ ├── fr.js │ │ ├── he.js │ │ ├── hr.js │ │ ├── hrx.js │ │ ├── hu.js │ │ ├── ia.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── kab.js │ │ ├── ko.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pms.js │ │ ├── pt-br.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sc.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── th.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-hans.js │ │ └── zh-hant.js │ └── style.css ├── index.html └── storage │ ├── icon.png │ └── index.html ├── eslint.config.mjs ├── generators ├── dart.ts ├── dart │ ├── dart_generator.ts │ ├── lists.ts │ ├── logic.ts │ ├── loops.ts │ ├── math.ts │ ├── procedures.ts │ ├── text.ts │ ├── variables.ts │ └── variables_dynamic.ts ├── javascript.ts ├── javascript │ ├── javascript_generator.ts │ ├── lists.ts │ ├── logic.ts │ ├── loops.ts │ ├── math.ts │ ├── procedures.ts │ ├── text.ts │ ├── variables.ts │ └── variables_dynamic.ts ├── lua.ts ├── lua │ ├── lists.ts │ ├── logic.ts │ ├── loops.ts │ ├── lua_generator.ts │ ├── math.ts │ ├── procedures.ts │ ├── text.ts │ ├── variables.ts │ └── variables_dynamic.ts ├── php.ts ├── php │ ├── lists.ts │ ├── logic.ts │ ├── loops.ts │ ├── math.ts │ ├── php_generator.ts │ ├── procedures.ts │ ├── text.ts │ ├── variables.ts │ └── variables_dynamic.ts ├── python.ts └── python │ ├── lists.ts │ ├── logic.ts │ ├── loops.ts │ ├── math.ts │ ├── procedures.ts │ ├── python_generator.ts │ ├── text.ts │ ├── variables.ts │ └── variables_dynamic.ts ├── gulpfile.mjs ├── jsconfig.json ├── media ├── 1x1.gif ├── click.mp3 ├── click.ogg ├── click.wav ├── delete-icon.svg ├── delete.mp3 ├── delete.ogg ├── delete.wav ├── disconnect.mp3 ├── disconnect.ogg ├── disconnect.wav ├── dropdown-arrow.svg ├── foldout-icon.svg ├── handclosed.cur ├── handdelete.cur ├── handopen.cur ├── pilcrow.png ├── quote0.png ├── quote1.png ├── resize-handle.svg ├── sprites.png └── sprites.svg ├── msg ├── json │ ├── README.md │ ├── ab.json │ ├── ace.json │ ├── af.json │ ├── am.json │ ├── ar.json │ ├── ast.json │ ├── az.json │ ├── ba.json │ ├── bcc.json │ ├── be-tarask.json │ ├── be.json │ ├── bg.json │ ├── bn.json │ ├── br.json │ ├── bs.json │ ├── ca.json │ ├── cdo.json │ ├── ce.json │ ├── constants.json │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── diq.json │ ├── dtp.json │ ├── dty.json │ ├── ee.json │ ├── el.json │ ├── en-gb.json │ ├── en.json │ ├── eo.json │ ├── es.json │ ├── et.json │ ├── eu.json │ ├── fa.json │ ├── fi.json │ ├── fo.json │ ├── fr.json │ ├── frr.json │ ├── gl.json │ ├── gn.json │ ├── gor.json │ ├── ha.json │ ├── hak.json │ ├── he.json │ ├── hi.json │ ├── hr.json │ ├── hrx.json │ ├── hsb.json │ ├── hu.json │ ├── hy.json │ ├── ia.json │ ├── id.json │ ├── ig.json │ ├── inh.json │ ├── is.json │ ├── it.json │ ├── ja.json │ ├── ka.json │ ├── kab.json │ ├── kbd-cyrl.json │ ├── km.json │ ├── kn.json │ ├── ko.json │ ├── ksh.json │ ├── ku-latn.json │ ├── ky.json │ ├── la.json │ ├── lb.json │ ├── lki.json │ ├── lo.json │ ├── lrc.json │ ├── lt.json │ ├── lv.json │ ├── mg.json │ ├── mk.json │ ├── ml.json │ ├── mnw.json │ ├── ms.json │ ├── my.json │ ├── mzn.json │ ├── nb.json │ ├── ne.json │ ├── nl.json │ ├── oc.json │ ├── olo.json │ ├── pa.json │ ├── pl.json │ ├── pms.json │ ├── ps.json │ ├── pt-br.json │ ├── pt.json │ ├── qqq.json │ ├── ro.json │ ├── ru.json │ ├── sc.json │ ├── sco.json │ ├── sd.json │ ├── shn.json │ ├── si.json │ ├── sk.json │ ├── skr-arab.json │ ├── sl.json │ ├── smn.json │ ├── sq.json │ ├── sr-latn.json │ ├── sr.json │ ├── sv.json │ ├── sw.json │ ├── synonyms.json │ ├── ta.json │ ├── tcy.json │ ├── tdd.json │ ├── te.json │ ├── th.json │ ├── ti.json │ ├── tl.json │ ├── tlh.json │ ├── tr.json │ ├── ug-arab.json │ ├── uk.json │ ├── ur.json │ ├── uz.json │ ├── vi.json │ ├── xmf.json │ ├── yo.json │ ├── zgh.json │ ├── zh-hans.json │ └── zh-hant.json └── messages.js ├── package.json ├── patches └── @microsoft+api-documenter+7.22.4.patch ├── sample.svg ├── scripts ├── goog_module │ └── convert-file.sh ├── gulpfiles │ ├── appengine_tasks.mjs │ ├── build_tasks.mjs │ ├── config.mjs │ ├── docs_tasks.mjs │ ├── git_tasks.mjs │ ├── helper_tasks.mjs │ ├── package_tasks.mjs │ ├── release_tasks.mjs │ └── test_tasks.mjs ├── helpers.js ├── i18n │ ├── common.py │ ├── create_messages.py │ ├── dedup_json.py │ ├── js_to_json.py │ └── tests.py ├── migration │ ├── cjs2esm │ ├── js2ts │ └── renamings.json5 ├── package │ ├── README.md │ ├── core-node.js │ ├── index.js │ └── templates │ │ ├── umd-msg.template │ │ └── umd.template ├── themes │ ├── blockStyles_example.json │ └── create_blockStyles.py └── tsick.js ├── tests ├── browser │ ├── .mocharc.js │ └── test │ │ ├── basic_block_factory_test.mjs │ │ ├── basic_block_test.mjs │ │ ├── basic_playground_test.mjs │ │ ├── block_undo_test.mjs │ │ ├── clipboard_test.mjs │ │ ├── delete_blocks_test.mjs │ │ ├── extensive_test.mjs │ │ ├── field_edits_test.mjs │ │ ├── hooks.mjs │ │ ├── mutator_test.mjs │ │ ├── procedure_test.mjs │ │ ├── test_setup.mjs │ │ ├── toolbox_drag_test.mjs │ │ └── workspace_comment_test.mjs ├── compile │ ├── index.html │ ├── main.js │ ├── test_blocks.js │ └── webdriver.js ├── generators │ ├── functions.xml │ ├── golden │ │ ├── generated.dart │ │ ├── generated.js │ │ ├── generated.lua │ │ ├── generated.php │ │ └── generated.py │ ├── index.html │ ├── lists.xml │ ├── logic.xml │ ├── loops1.xml │ ├── loops2.xml │ ├── loops3.xml │ ├── math.xml │ ├── text.xml │ ├── unittest.js │ ├── unittest_dart.js │ ├── unittest_javascript.js │ ├── unittest_lua.js │ ├── unittest_php.js │ ├── unittest_python.js │ ├── variables.xml │ └── webdriver.js ├── media │ ├── 200px.png │ ├── 30px.png │ ├── 50px.png │ ├── a.png │ ├── arrow.png │ ├── b.png │ ├── c.png │ ├── d.png │ ├── e.png │ ├── f.png │ ├── g.png │ ├── h.png │ ├── i.png │ ├── j.png │ ├── k.png │ ├── l.png │ └── m.png ├── migration │ ├── renamings.schema.json │ └── validate-renamings.mjs ├── mocha │ ├── .mocharc.js │ ├── block_json_test.js │ ├── block_test.js │ ├── blocks │ │ ├── lists_test.js │ │ ├── logic_ternary_test.js │ │ ├── loops_test.js │ │ ├── procedures_test.js │ │ └── variables_test.js │ ├── clipboard_test.js │ ├── comment_deserialization_test.js │ ├── comment_test.js │ ├── comment_view_test.js │ ├── connection_checker_test.js │ ├── connection_db_test.js │ ├── connection_test.js │ ├── contextmenu_items_test.js │ ├── contextmenu_test.js │ ├── cursor_test.js │ ├── dialog_test.js │ ├── dropdowndiv_test.js │ ├── event_block_change_test.js │ ├── event_block_create_test.js │ ├── event_block_delete_test.js │ ├── event_block_drag_test.js │ ├── event_block_field_intermediate_change_test.js │ ├── event_block_move_test.js │ ├── event_bubble_open_test.js │ ├── event_click_test.js │ ├── event_comment_change_test.js │ ├── event_comment_collapse_test.js │ ├── event_comment_create_test.js │ ├── event_comment_delete_test.js │ ├── event_comment_drag_test.js │ ├── event_comment_move_test.js │ ├── event_comment_resize_test.js │ ├── event_selected_test.js │ ├── event_test.js │ ├── event_theme_change_test.js │ ├── event_toolbox_item_select_test.js │ ├── event_trashcan_open_test.js │ ├── event_var_create_test.js │ ├── event_var_delete_test.js │ ├── event_var_rename_test.js │ ├── event_var_type_change_test.js │ ├── event_viewport_test.js │ ├── extensions_test.js │ ├── field_checkbox_test.js │ ├── field_colour_test.js │ ├── field_dropdown_test.js │ ├── field_image_test.js │ ├── field_label_serializable_test.js │ ├── field_label_test.js │ ├── field_number_test.js │ ├── field_registry_test.js │ ├── field_test.js │ ├── field_textinput_test.js │ ├── field_variable_test.js │ ├── flyout_test.js │ ├── focus_manager_test.js │ ├── focusable_tree_traverser_test.js │ ├── generator_test.js │ ├── gesture_test.js │ ├── icon_test.js │ ├── index.html │ ├── input_test.js │ ├── insertion_marker_test.js │ ├── jso_deserialization_test.js │ ├── jso_serialization_test.js │ ├── json_test.js │ ├── keyboard_navigation_controller_test.js │ ├── layering_test.js │ ├── metrics_test.js │ ├── mutator_test.js │ ├── names_test.js │ ├── navigation_test.js │ ├── old_workspace_comment_test.js │ ├── procedure_map_test.js │ ├── rect_test.js │ ├── registry_test.js │ ├── render_management_test.js │ ├── serializer_test.js │ ├── shortcut_items_test.js │ ├── shortcut_registry_test.js │ ├── test_helpers │ │ ├── block_definitions.js │ │ ├── code_generation.js │ │ ├── common.js │ │ ├── events.js │ │ ├── fields.js │ │ ├── icon_mocks.js │ │ ├── procedures.js │ │ ├── serialization.js │ │ ├── setup_teardown.js │ │ ├── toolbox_definitions.js │ │ ├── user_input.js │ │ ├── variables.js │ │ ├── warnings.js │ │ └── workspace.js │ ├── theme_test.js │ ├── toast_test.js │ ├── toolbox_test.js │ ├── tooltip_test.js │ ├── touch_test.js │ ├── trashcan_test.js │ ├── utils_test.js │ ├── variable_map_test.js │ ├── variable_model_test.js │ ├── webdriver.js │ ├── widget_div_test.js │ ├── workspace_comment_test.js │ ├── workspace_svg_test.js │ ├── workspace_test.js │ ├── xml_test.js │ └── zoom_controls_test.js ├── multi_playground.html ├── node │ ├── .mocharc.js │ ├── node_modules │ │ └── blockly-test │ └── run_node_test.mjs ├── playground.html ├── playgrounds │ ├── advanced_playground.html │ ├── iframe.html │ └── screenshot.js ├── scripts │ ├── check_metadata.sh │ ├── compile_typings.sh │ ├── load.mjs │ ├── setup_linux_env.sh │ └── update_metadata.sh ├── themes │ └── test_themes.js ├── typescript │ ├── README.md │ ├── src │ │ ├── field │ │ │ └── different_user_input.ts │ │ ├── generators.ts │ │ ├── generators │ │ │ ├── dart.ts │ │ │ ├── javascript.ts │ │ │ ├── lua.ts │ │ │ ├── php.ts │ │ │ └── python.ts │ │ └── msg.ts │ └── tsconfig.json └── xml │ ├── README.txt │ ├── blockly.xsd │ ├── invalid.xml │ ├── toolbox.xml │ └── workspace.xml ├── tsconfig.json ├── tsdoc.json └── typings ├── README.md ├── blocks.d.ts ├── core.d.ts ├── dart.d.ts ├── index.d.ts ├── javascript.d.ts ├── lua.d.ts ├── msg ├── ab.d.ts ├── ace.d.ts ├── af.d.ts ├── am.d.ts ├── ar.d.ts ├── ast.d.ts ├── az.d.ts ├── ba.d.ts ├── bcc.d.ts ├── be-tarask.d.ts ├── be.d.ts ├── bg.d.ts ├── bn.d.ts ├── br.d.ts ├── bs.d.ts ├── ca.d.ts ├── cdo.d.ts ├── ce.d.ts ├── cs.d.ts ├── da.d.ts ├── de.d.ts ├── diq.d.ts ├── dtp.d.ts ├── dty.d.ts ├── ee.d.ts ├── el.d.ts ├── en-gb.d.ts ├── en.d.ts ├── eo.d.ts ├── es.d.ts ├── et.d.ts ├── eu.d.ts ├── fa.d.ts ├── fi.d.ts ├── fo.d.ts ├── fr.d.ts ├── frr.d.ts ├── gl.d.ts ├── gn.d.ts ├── gor.d.ts ├── ha.d.ts ├── hak.d.ts ├── he.d.ts ├── hi.d.ts ├── hr.d.ts ├── hrx.d.ts ├── hsb.d.ts ├── hu.d.ts ├── hy.d.ts ├── ia.d.ts ├── id.d.ts ├── ig.d.ts ├── inh.d.ts ├── is.d.ts ├── it.d.ts ├── ja.d.ts ├── ka.d.ts ├── kab.d.ts ├── kbd-cyrl.d.ts ├── km.d.ts ├── kn.d.ts ├── ko.d.ts ├── ksh.d.ts ├── ku-latn.d.ts ├── ky.d.ts ├── la.d.ts ├── lb.d.ts ├── lki.d.ts ├── lo.d.ts ├── lrc.d.ts ├── lt.d.ts ├── lv.d.ts ├── mg.d.ts ├── mk.d.ts ├── ml.d.ts ├── mnw.d.ts ├── ms.d.ts ├── msg.d.ts ├── my.d.ts ├── mzn.d.ts ├── nb.d.ts ├── ne.d.ts ├── nl.d.ts ├── oc.d.ts ├── olo.d.ts ├── pa.d.ts ├── pl.d.ts ├── pms.d.ts ├── ps.d.ts ├── pt-br.d.ts ├── pt.d.ts ├── ro.d.ts ├── ru.d.ts ├── sc.d.ts ├── sco.d.ts ├── sd.d.ts ├── shn.d.ts ├── si.d.ts ├── sk.d.ts ├── skr-arab.d.ts ├── sl.d.ts ├── smn.d.ts ├── sq.d.ts ├── sr-latn.d.ts ├── sr.d.ts ├── sv.d.ts ├── sw.d.ts ├── ta.d.ts ├── tcy.d.ts ├── tdd.d.ts ├── te.d.ts ├── th.d.ts ├── ti.d.ts ├── tl.d.ts ├── tlh.d.ts ├── tr.d.ts ├── ug-arab.d.ts ├── uk.d.ts ├── ur.d.ts ├── uz.d.ts ├── vi.d.ts ├── xmf.d.ts ├── yo.d.ts ├── zgh.d.ts ├── zh-hans.d.ts └── zh-hant.d.ts ├── php.d.ts ├── python.d.ts ├── templates ├── blockly-header.template ├── blockly-interfaces.template └── msg.template └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @RaspberryPiFoundation/blockly-collaborators 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/appengine_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/workflows/appengine_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/assign_reviewers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/workflows/assign_reviewers.yml -------------------------------------------------------------------------------- /.github/workflows/browser_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/workflows/browser_test.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/develop_freeze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.github/workflows/develop_freeze.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | exclude: [] 2 | -------------------------------------------------------------------------------- /api-extractor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/api-extractor.json -------------------------------------------------------------------------------- /appengine/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/.gcloudignore -------------------------------------------------------------------------------- /appengine/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/README.txt -------------------------------------------------------------------------------- /appengine/add_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/add_timestamps.py -------------------------------------------------------------------------------- /appengine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/app.yaml -------------------------------------------------------------------------------- /appengine/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/apple-touch-icon.png -------------------------------------------------------------------------------- /appengine/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/blockly_compressed.js -------------------------------------------------------------------------------- /appengine/expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/expiration.py -------------------------------------------------------------------------------- /appengine/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/favicon.ico -------------------------------------------------------------------------------- /appengine/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/index.yaml -------------------------------------------------------------------------------- /appengine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/main.py -------------------------------------------------------------------------------- /appengine/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/redirect.html -------------------------------------------------------------------------------- /appengine/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-ndb 2 | -------------------------------------------------------------------------------- /appengine/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /storage 3 | -------------------------------------------------------------------------------- /appengine/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/storage.js -------------------------------------------------------------------------------- /appengine/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/appengine/storage.py -------------------------------------------------------------------------------- /blocks/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/blocks.ts -------------------------------------------------------------------------------- /blocks/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/lists.ts -------------------------------------------------------------------------------- /blocks/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/logic.ts -------------------------------------------------------------------------------- /blocks/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/loops.ts -------------------------------------------------------------------------------- /blocks/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/math.ts -------------------------------------------------------------------------------- /blocks/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/procedures.ts -------------------------------------------------------------------------------- /blocks/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/text.ts -------------------------------------------------------------------------------- /blocks/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/variables.ts -------------------------------------------------------------------------------- /blocks/variables_dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/blocks/variables_dynamic.ts -------------------------------------------------------------------------------- /commitlint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/commitlint.config.mjs -------------------------------------------------------------------------------- /core/any_aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/any_aliases.ts -------------------------------------------------------------------------------- /core/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/block.ts -------------------------------------------------------------------------------- /core/block_animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/block_animations.ts -------------------------------------------------------------------------------- /core/block_flyout_inflater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/block_flyout_inflater.ts -------------------------------------------------------------------------------- /core/block_svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/block_svg.ts -------------------------------------------------------------------------------- /core/blockly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/blockly.ts -------------------------------------------------------------------------------- /core/blockly_options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/blockly_options.ts -------------------------------------------------------------------------------- /core/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/blocks.ts -------------------------------------------------------------------------------- /core/browser_events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/browser_events.ts -------------------------------------------------------------------------------- /core/bubbles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bubbles.ts -------------------------------------------------------------------------------- /core/bubbles/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bubbles/bubble.ts -------------------------------------------------------------------------------- /core/bubbles/mini_workspace_bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bubbles/mini_workspace_bubble.ts -------------------------------------------------------------------------------- /core/bubbles/text_bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bubbles/text_bubble.ts -------------------------------------------------------------------------------- /core/bubbles/textinput_bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bubbles/textinput_bubble.ts -------------------------------------------------------------------------------- /core/bump_objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/bump_objects.ts -------------------------------------------------------------------------------- /core/button_flyout_inflater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/button_flyout_inflater.ts -------------------------------------------------------------------------------- /core/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/clipboard.ts -------------------------------------------------------------------------------- /core/clipboard/block_paster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/clipboard/block_paster.ts -------------------------------------------------------------------------------- /core/clipboard/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/clipboard/registry.ts -------------------------------------------------------------------------------- /core/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/comments.ts -------------------------------------------------------------------------------- /core/comments/comment_bar_button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/comments/comment_bar_button.ts -------------------------------------------------------------------------------- /core/comments/comment_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/comments/comment_editor.ts -------------------------------------------------------------------------------- /core/comments/comment_view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/comments/comment_view.ts -------------------------------------------------------------------------------- /core/comments/workspace_comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/comments/workspace_comment.ts -------------------------------------------------------------------------------- /core/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/common.ts -------------------------------------------------------------------------------- /core/component_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/component_manager.ts -------------------------------------------------------------------------------- /core/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/config.ts -------------------------------------------------------------------------------- /core/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/connection.ts -------------------------------------------------------------------------------- /core/connection_checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/connection_checker.ts -------------------------------------------------------------------------------- /core/connection_db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/connection_db.ts -------------------------------------------------------------------------------- /core/connection_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/connection_type.ts -------------------------------------------------------------------------------- /core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/constants.ts -------------------------------------------------------------------------------- /core/contextmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/contextmenu.ts -------------------------------------------------------------------------------- /core/contextmenu_items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/contextmenu_items.ts -------------------------------------------------------------------------------- /core/contextmenu_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/contextmenu_registry.ts -------------------------------------------------------------------------------- /core/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/css.ts -------------------------------------------------------------------------------- /core/delete_area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/delete_area.ts -------------------------------------------------------------------------------- /core/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dialog.ts -------------------------------------------------------------------------------- /core/drag_target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/drag_target.ts -------------------------------------------------------------------------------- /core/dragging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dragging.ts -------------------------------------------------------------------------------- /core/dragging/block_drag_strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dragging/block_drag_strategy.ts -------------------------------------------------------------------------------- /core/dragging/bubble_drag_strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dragging/bubble_drag_strategy.ts -------------------------------------------------------------------------------- /core/dragging/dragger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dragging/dragger.ts -------------------------------------------------------------------------------- /core/dropdowndiv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/dropdowndiv.ts -------------------------------------------------------------------------------- /core/events/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events.ts -------------------------------------------------------------------------------- /core/events/events_abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_abstract.ts -------------------------------------------------------------------------------- /core/events/events_block_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_base.ts -------------------------------------------------------------------------------- /core/events/events_block_change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_change.ts -------------------------------------------------------------------------------- /core/events/events_block_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_create.ts -------------------------------------------------------------------------------- /core/events/events_block_delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_delete.ts -------------------------------------------------------------------------------- /core/events/events_block_drag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_drag.ts -------------------------------------------------------------------------------- /core/events/events_block_move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_block_move.ts -------------------------------------------------------------------------------- /core/events/events_bubble_open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_bubble_open.ts -------------------------------------------------------------------------------- /core/events/events_click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_click.ts -------------------------------------------------------------------------------- /core/events/events_comment_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_base.ts -------------------------------------------------------------------------------- /core/events/events_comment_change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_change.ts -------------------------------------------------------------------------------- /core/events/events_comment_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_create.ts -------------------------------------------------------------------------------- /core/events/events_comment_delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_delete.ts -------------------------------------------------------------------------------- /core/events/events_comment_drag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_drag.ts -------------------------------------------------------------------------------- /core/events/events_comment_move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_move.ts -------------------------------------------------------------------------------- /core/events/events_comment_resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_comment_resize.ts -------------------------------------------------------------------------------- /core/events/events_selected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_selected.ts -------------------------------------------------------------------------------- /core/events/events_theme_change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_theme_change.ts -------------------------------------------------------------------------------- /core/events/events_trashcan_open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_trashcan_open.ts -------------------------------------------------------------------------------- /core/events/events_ui_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_ui_base.ts -------------------------------------------------------------------------------- /core/events/events_var_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_var_base.ts -------------------------------------------------------------------------------- /core/events/events_var_create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_var_create.ts -------------------------------------------------------------------------------- /core/events/events_var_delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_var_delete.ts -------------------------------------------------------------------------------- /core/events/events_var_rename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_var_rename.ts -------------------------------------------------------------------------------- /core/events/events_viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/events_viewport.ts -------------------------------------------------------------------------------- /core/events/predicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/predicates.ts -------------------------------------------------------------------------------- /core/events/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/type.ts -------------------------------------------------------------------------------- /core/events/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/utils.ts -------------------------------------------------------------------------------- /core/events/workspace_events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/events/workspace_events.ts -------------------------------------------------------------------------------- /core/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/extensions.ts -------------------------------------------------------------------------------- /core/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field.ts -------------------------------------------------------------------------------- /core/field_checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_checkbox.ts -------------------------------------------------------------------------------- /core/field_dropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_dropdown.ts -------------------------------------------------------------------------------- /core/field_image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_image.ts -------------------------------------------------------------------------------- /core/field_input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_input.ts -------------------------------------------------------------------------------- /core/field_label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_label.ts -------------------------------------------------------------------------------- /core/field_label_serializable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_label_serializable.ts -------------------------------------------------------------------------------- /core/field_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_number.ts -------------------------------------------------------------------------------- /core/field_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_registry.ts -------------------------------------------------------------------------------- /core/field_textinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_textinput.ts -------------------------------------------------------------------------------- /core/field_variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/field_variable.ts -------------------------------------------------------------------------------- /core/flyout_base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_base.ts -------------------------------------------------------------------------------- /core/flyout_button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_button.ts -------------------------------------------------------------------------------- /core/flyout_horizontal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_horizontal.ts -------------------------------------------------------------------------------- /core/flyout_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_item.ts -------------------------------------------------------------------------------- /core/flyout_metrics_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_metrics_manager.ts -------------------------------------------------------------------------------- /core/flyout_navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_navigator.ts -------------------------------------------------------------------------------- /core/flyout_separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_separator.ts -------------------------------------------------------------------------------- /core/flyout_vertical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/flyout_vertical.ts -------------------------------------------------------------------------------- /core/focus_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/focus_manager.ts -------------------------------------------------------------------------------- /core/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/generator.ts -------------------------------------------------------------------------------- /core/gesture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/gesture.ts -------------------------------------------------------------------------------- /core/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/grid.ts -------------------------------------------------------------------------------- /core/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons.ts -------------------------------------------------------------------------------- /core/icons/comment_icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/comment_icon.ts -------------------------------------------------------------------------------- /core/icons/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/exceptions.ts -------------------------------------------------------------------------------- /core/icons/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/icon.ts -------------------------------------------------------------------------------- /core/icons/icon_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/icon_types.ts -------------------------------------------------------------------------------- /core/icons/mutator_icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/mutator_icon.ts -------------------------------------------------------------------------------- /core/icons/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/registry.ts -------------------------------------------------------------------------------- /core/icons/warning_icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/icons/warning_icon.ts -------------------------------------------------------------------------------- /core/inject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inject.ts -------------------------------------------------------------------------------- /core/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs.ts -------------------------------------------------------------------------------- /core/inputs/align.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/align.ts -------------------------------------------------------------------------------- /core/inputs/dummy_input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/dummy_input.ts -------------------------------------------------------------------------------- /core/inputs/end_row_input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/end_row_input.ts -------------------------------------------------------------------------------- /core/inputs/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/input.ts -------------------------------------------------------------------------------- /core/inputs/input_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/input_types.ts -------------------------------------------------------------------------------- /core/inputs/statement_input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/statement_input.ts -------------------------------------------------------------------------------- /core/inputs/value_input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/inputs/value_input.ts -------------------------------------------------------------------------------- /core/insertion_marker_previewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/insertion_marker_previewer.ts -------------------------------------------------------------------------------- /core/interfaces/i_autohideable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_autohideable.ts -------------------------------------------------------------------------------- /core/interfaces/i_bounded_element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_bounded_element.ts -------------------------------------------------------------------------------- /core/interfaces/i_bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_bubble.ts -------------------------------------------------------------------------------- /core/interfaces/i_comment_icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_comment_icon.ts -------------------------------------------------------------------------------- /core/interfaces/i_component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_component.ts -------------------------------------------------------------------------------- /core/interfaces/i_contextmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_contextmenu.ts -------------------------------------------------------------------------------- /core/interfaces/i_copyable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_copyable.ts -------------------------------------------------------------------------------- /core/interfaces/i_deletable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_deletable.ts -------------------------------------------------------------------------------- /core/interfaces/i_delete_area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_delete_area.ts -------------------------------------------------------------------------------- /core/interfaces/i_drag_target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_drag_target.ts -------------------------------------------------------------------------------- /core/interfaces/i_draggable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_draggable.ts -------------------------------------------------------------------------------- /core/interfaces/i_dragger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_dragger.ts -------------------------------------------------------------------------------- /core/interfaces/i_flyout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_flyout.ts -------------------------------------------------------------------------------- /core/interfaces/i_flyout_inflater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_flyout_inflater.ts -------------------------------------------------------------------------------- /core/interfaces/i_focusable_node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_focusable_node.ts -------------------------------------------------------------------------------- /core/interfaces/i_focusable_tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_focusable_tree.ts -------------------------------------------------------------------------------- /core/interfaces/i_has_bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_has_bubble.ts -------------------------------------------------------------------------------- /core/interfaces/i_icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_icon.ts -------------------------------------------------------------------------------- /core/interfaces/i_metrics_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_metrics_manager.ts -------------------------------------------------------------------------------- /core/interfaces/i_movable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_movable.ts -------------------------------------------------------------------------------- /core/interfaces/i_observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_observable.ts -------------------------------------------------------------------------------- /core/interfaces/i_parameter_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_parameter_model.ts -------------------------------------------------------------------------------- /core/interfaces/i_paster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_paster.ts -------------------------------------------------------------------------------- /core/interfaces/i_positionable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_positionable.ts -------------------------------------------------------------------------------- /core/interfaces/i_procedure_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_procedure_block.ts -------------------------------------------------------------------------------- /core/interfaces/i_procedure_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_procedure_map.ts -------------------------------------------------------------------------------- /core/interfaces/i_procedure_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_procedure_model.ts -------------------------------------------------------------------------------- /core/interfaces/i_registrable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_registrable.ts -------------------------------------------------------------------------------- /core/interfaces/i_selectable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_selectable.ts -------------------------------------------------------------------------------- /core/interfaces/i_serializable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_serializable.ts -------------------------------------------------------------------------------- /core/interfaces/i_serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_serializer.ts -------------------------------------------------------------------------------- /core/interfaces/i_styleable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_styleable.ts -------------------------------------------------------------------------------- /core/interfaces/i_toolbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_toolbox.ts -------------------------------------------------------------------------------- /core/interfaces/i_toolbox_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_toolbox_item.ts -------------------------------------------------------------------------------- /core/interfaces/i_variable_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_variable_map.ts -------------------------------------------------------------------------------- /core/interfaces/i_variable_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/interfaces/i_variable_model.ts -------------------------------------------------------------------------------- /core/internal_constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/internal_constants.ts -------------------------------------------------------------------------------- /core/keyboard_nav/line_cursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/keyboard_nav/line_cursor.ts -------------------------------------------------------------------------------- /core/keyboard_nav/marker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/keyboard_nav/marker.ts -------------------------------------------------------------------------------- /core/label_flyout_inflater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/label_flyout_inflater.ts -------------------------------------------------------------------------------- /core/layer_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/layer_manager.ts -------------------------------------------------------------------------------- /core/layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/layers.ts -------------------------------------------------------------------------------- /core/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/main.ts -------------------------------------------------------------------------------- /core/marker_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/marker_manager.ts -------------------------------------------------------------------------------- /core/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/menu.ts -------------------------------------------------------------------------------- /core/menu_separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/menu_separator.ts -------------------------------------------------------------------------------- /core/menuitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/menuitem.ts -------------------------------------------------------------------------------- /core/metrics_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/metrics_manager.ts -------------------------------------------------------------------------------- /core/msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/msg.ts -------------------------------------------------------------------------------- /core/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/names.ts -------------------------------------------------------------------------------- /core/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/navigator.ts -------------------------------------------------------------------------------- /core/observable_procedure_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/observable_procedure_map.ts -------------------------------------------------------------------------------- /core/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/options.ts -------------------------------------------------------------------------------- /core/positionable_helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/positionable_helpers.ts -------------------------------------------------------------------------------- /core/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/procedures.ts -------------------------------------------------------------------------------- /core/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/registry.ts -------------------------------------------------------------------------------- /core/render_management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/render_management.ts -------------------------------------------------------------------------------- /core/rendered_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/rendered_connection.ts -------------------------------------------------------------------------------- /core/renderers/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/common/constants.ts -------------------------------------------------------------------------------- /core/renderers/common/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/common/drawer.ts -------------------------------------------------------------------------------- /core/renderers/common/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/common/info.ts -------------------------------------------------------------------------------- /core/renderers/common/path_object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/common/path_object.ts -------------------------------------------------------------------------------- /core/renderers/common/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/common/renderer.ts -------------------------------------------------------------------------------- /core/renderers/geras/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/constants.ts -------------------------------------------------------------------------------- /core/renderers/geras/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/drawer.ts -------------------------------------------------------------------------------- /core/renderers/geras/geras.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/geras.ts -------------------------------------------------------------------------------- /core/renderers/geras/highlighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/highlighter.ts -------------------------------------------------------------------------------- /core/renderers/geras/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/info.ts -------------------------------------------------------------------------------- /core/renderers/geras/path_object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/path_object.ts -------------------------------------------------------------------------------- /core/renderers/geras/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/geras/renderer.ts -------------------------------------------------------------------------------- /core/renderers/measurables/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/base.ts -------------------------------------------------------------------------------- /core/renderers/measurables/field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/field.ts -------------------------------------------------------------------------------- /core/renderers/measurables/hat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/hat.ts -------------------------------------------------------------------------------- /core/renderers/measurables/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/icon.ts -------------------------------------------------------------------------------- /core/renderers/measurables/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/row.ts -------------------------------------------------------------------------------- /core/renderers/measurables/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/measurables/types.ts -------------------------------------------------------------------------------- /core/renderers/thrasos/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/thrasos/info.ts -------------------------------------------------------------------------------- /core/renderers/thrasos/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/thrasos/renderer.ts -------------------------------------------------------------------------------- /core/renderers/thrasos/thrasos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/thrasos/thrasos.ts -------------------------------------------------------------------------------- /core/renderers/zelos/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/constants.ts -------------------------------------------------------------------------------- /core/renderers/zelos/drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/drawer.ts -------------------------------------------------------------------------------- /core/renderers/zelos/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/info.ts -------------------------------------------------------------------------------- /core/renderers/zelos/path_object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/path_object.ts -------------------------------------------------------------------------------- /core/renderers/zelos/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/renderer.ts -------------------------------------------------------------------------------- /core/renderers/zelos/zelos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/renderers/zelos/zelos.ts -------------------------------------------------------------------------------- /core/scrollbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/scrollbar.ts -------------------------------------------------------------------------------- /core/scrollbar_pair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/scrollbar_pair.ts -------------------------------------------------------------------------------- /core/separator_flyout_inflater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/separator_flyout_inflater.ts -------------------------------------------------------------------------------- /core/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization.ts -------------------------------------------------------------------------------- /core/serialization/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/blocks.ts -------------------------------------------------------------------------------- /core/serialization/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/exceptions.ts -------------------------------------------------------------------------------- /core/serialization/priorities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/priorities.ts -------------------------------------------------------------------------------- /core/serialization/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/procedures.ts -------------------------------------------------------------------------------- /core/serialization/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/registry.ts -------------------------------------------------------------------------------- /core/serialization/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/variables.ts -------------------------------------------------------------------------------- /core/serialization/workspaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/serialization/workspaces.ts -------------------------------------------------------------------------------- /core/shortcut_items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/shortcut_items.ts -------------------------------------------------------------------------------- /core/shortcut_registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/shortcut_registry.ts -------------------------------------------------------------------------------- /core/sprites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/sprites.ts -------------------------------------------------------------------------------- /core/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/theme.ts -------------------------------------------------------------------------------- /core/theme/classic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/theme/classic.ts -------------------------------------------------------------------------------- /core/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/theme/themes.ts -------------------------------------------------------------------------------- /core/theme/zelos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/theme/zelos.ts -------------------------------------------------------------------------------- /core/theme_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/theme_manager.ts -------------------------------------------------------------------------------- /core/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toast.ts -------------------------------------------------------------------------------- /core/toolbox/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toolbox/category.ts -------------------------------------------------------------------------------- /core/toolbox/collapsible_category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toolbox/collapsible_category.ts -------------------------------------------------------------------------------- /core/toolbox/separator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toolbox/separator.ts -------------------------------------------------------------------------------- /core/toolbox/toolbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toolbox/toolbox.ts -------------------------------------------------------------------------------- /core/toolbox/toolbox_item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/toolbox/toolbox_item.ts -------------------------------------------------------------------------------- /core/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/tooltip.ts -------------------------------------------------------------------------------- /core/touch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/touch.ts -------------------------------------------------------------------------------- /core/trashcan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/trashcan.ts -------------------------------------------------------------------------------- /core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils.ts -------------------------------------------------------------------------------- /core/utils/aria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/aria.ts -------------------------------------------------------------------------------- /core/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/array.ts -------------------------------------------------------------------------------- /core/utils/colour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/colour.ts -------------------------------------------------------------------------------- /core/utils/coordinate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/coordinate.ts -------------------------------------------------------------------------------- /core/utils/deprecation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/deprecation.ts -------------------------------------------------------------------------------- /core/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/dom.ts -------------------------------------------------------------------------------- /core/utils/drag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/drag.ts -------------------------------------------------------------------------------- /core/utils/idgenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/idgenerator.ts -------------------------------------------------------------------------------- /core/utils/keycodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/keycodes.ts -------------------------------------------------------------------------------- /core/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/math.ts -------------------------------------------------------------------------------- /core/utils/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/metrics.ts -------------------------------------------------------------------------------- /core/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/object.ts -------------------------------------------------------------------------------- /core/utils/parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/parsing.ts -------------------------------------------------------------------------------- /core/utils/rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/rect.ts -------------------------------------------------------------------------------- /core/utils/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/size.ts -------------------------------------------------------------------------------- /core/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/string.ts -------------------------------------------------------------------------------- /core/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/style.ts -------------------------------------------------------------------------------- /core/utils/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/svg.ts -------------------------------------------------------------------------------- /core/utils/svg_math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/svg_math.ts -------------------------------------------------------------------------------- /core/utils/svg_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/svg_paths.ts -------------------------------------------------------------------------------- /core/utils/toolbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/toolbox.ts -------------------------------------------------------------------------------- /core/utils/useragent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/useragent.ts -------------------------------------------------------------------------------- /core/utils/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/utils/xml.ts -------------------------------------------------------------------------------- /core/variable_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/variable_map.ts -------------------------------------------------------------------------------- /core/variable_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/variable_model.ts -------------------------------------------------------------------------------- /core/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/variables.ts -------------------------------------------------------------------------------- /core/variables_dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/variables_dynamic.ts -------------------------------------------------------------------------------- /core/widgetdiv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/widgetdiv.ts -------------------------------------------------------------------------------- /core/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/workspace.ts -------------------------------------------------------------------------------- /core/workspace_audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/workspace_audio.ts -------------------------------------------------------------------------------- /core/workspace_dragger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/workspace_dragger.ts -------------------------------------------------------------------------------- /core/workspace_svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/workspace_svg.ts -------------------------------------------------------------------------------- /core/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/xml.ts -------------------------------------------------------------------------------- /core/zoom_controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/core/zoom_controls.ts -------------------------------------------------------------------------------- /demos/blockfactory/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/analytics.js -------------------------------------------------------------------------------- /demos/blockfactory/app_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/app_controller.js -------------------------------------------------------------------------------- /demos/blockfactory/block_option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/block_option.js -------------------------------------------------------------------------------- /demos/blockfactory/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/blocks.js -------------------------------------------------------------------------------- /demos/blockfactory/cp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/cp.css -------------------------------------------------------------------------------- /demos/blockfactory/cp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/cp.js -------------------------------------------------------------------------------- /demos/blockfactory/factory.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/factory.css -------------------------------------------------------------------------------- /demos/blockfactory/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/factory.js -------------------------------------------------------------------------------- /demos/blockfactory/factory_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/factory_utils.js -------------------------------------------------------------------------------- /demos/blockfactory/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/icon.png -------------------------------------------------------------------------------- /demos/blockfactory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/index.html -------------------------------------------------------------------------------- /demos/blockfactory/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/blockfactory/link.png -------------------------------------------------------------------------------- /demos/code/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/code.js -------------------------------------------------------------------------------- /demos/code/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/icon.png -------------------------------------------------------------------------------- /demos/code/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/icons.png -------------------------------------------------------------------------------- /demos/code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/index.html -------------------------------------------------------------------------------- /demos/code/msg/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ar.js -------------------------------------------------------------------------------- /demos/code/msg/be-tarask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/be-tarask.js -------------------------------------------------------------------------------- /demos/code/msg/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/br.js -------------------------------------------------------------------------------- /demos/code/msg/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ca.js -------------------------------------------------------------------------------- /demos/code/msg/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/cs.js -------------------------------------------------------------------------------- /demos/code/msg/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/da.js -------------------------------------------------------------------------------- /demos/code/msg/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/de.js -------------------------------------------------------------------------------- /demos/code/msg/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/el.js -------------------------------------------------------------------------------- /demos/code/msg/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/en.js -------------------------------------------------------------------------------- /demos/code/msg/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/es.js -------------------------------------------------------------------------------- /demos/code/msg/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/et.js -------------------------------------------------------------------------------- /demos/code/msg/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/fa.js -------------------------------------------------------------------------------- /demos/code/msg/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/fr.js -------------------------------------------------------------------------------- /demos/code/msg/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/he.js -------------------------------------------------------------------------------- /demos/code/msg/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/hr.js -------------------------------------------------------------------------------- /demos/code/msg/hrx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/hrx.js -------------------------------------------------------------------------------- /demos/code/msg/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/hu.js -------------------------------------------------------------------------------- /demos/code/msg/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ia.js -------------------------------------------------------------------------------- /demos/code/msg/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/is.js -------------------------------------------------------------------------------- /demos/code/msg/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/it.js -------------------------------------------------------------------------------- /demos/code/msg/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ja.js -------------------------------------------------------------------------------- /demos/code/msg/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/kab.js -------------------------------------------------------------------------------- /demos/code/msg/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ko.js -------------------------------------------------------------------------------- /demos/code/msg/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/mk.js -------------------------------------------------------------------------------- /demos/code/msg/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ms.js -------------------------------------------------------------------------------- /demos/code/msg/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/nb.js -------------------------------------------------------------------------------- /demos/code/msg/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/nl.js -------------------------------------------------------------------------------- /demos/code/msg/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/oc.js -------------------------------------------------------------------------------- /demos/code/msg/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/pl.js -------------------------------------------------------------------------------- /demos/code/msg/pms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/pms.js -------------------------------------------------------------------------------- /demos/code/msg/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/pt-br.js -------------------------------------------------------------------------------- /demos/code/msg/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ro.js -------------------------------------------------------------------------------- /demos/code/msg/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ru.js -------------------------------------------------------------------------------- /demos/code/msg/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/sc.js -------------------------------------------------------------------------------- /demos/code/msg/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/sk.js -------------------------------------------------------------------------------- /demos/code/msg/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/sr.js -------------------------------------------------------------------------------- /demos/code/msg/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/sv.js -------------------------------------------------------------------------------- /demos/code/msg/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/ta.js -------------------------------------------------------------------------------- /demos/code/msg/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/th.js -------------------------------------------------------------------------------- /demos/code/msg/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/tlh.js -------------------------------------------------------------------------------- /demos/code/msg/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/tr.js -------------------------------------------------------------------------------- /demos/code/msg/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/uk.js -------------------------------------------------------------------------------- /demos/code/msg/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/vi.js -------------------------------------------------------------------------------- /demos/code/msg/zh-hans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/zh-hans.js -------------------------------------------------------------------------------- /demos/code/msg/zh-hant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/msg/zh-hant.js -------------------------------------------------------------------------------- /demos/code/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/code/style.css -------------------------------------------------------------------------------- /demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/index.html -------------------------------------------------------------------------------- /demos/storage/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/storage/icon.png -------------------------------------------------------------------------------- /demos/storage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/demos/storage/index.html -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generators/dart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart.ts -------------------------------------------------------------------------------- /generators/dart/dart_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/dart_generator.ts -------------------------------------------------------------------------------- /generators/dart/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/lists.ts -------------------------------------------------------------------------------- /generators/dart/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/logic.ts -------------------------------------------------------------------------------- /generators/dart/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/loops.ts -------------------------------------------------------------------------------- /generators/dart/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/math.ts -------------------------------------------------------------------------------- /generators/dart/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/procedures.ts -------------------------------------------------------------------------------- /generators/dart/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/text.ts -------------------------------------------------------------------------------- /generators/dart/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/variables.ts -------------------------------------------------------------------------------- /generators/dart/variables_dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/dart/variables_dynamic.ts -------------------------------------------------------------------------------- /generators/javascript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript.ts -------------------------------------------------------------------------------- /generators/javascript/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/lists.ts -------------------------------------------------------------------------------- /generators/javascript/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/logic.ts -------------------------------------------------------------------------------- /generators/javascript/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/loops.ts -------------------------------------------------------------------------------- /generators/javascript/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/math.ts -------------------------------------------------------------------------------- /generators/javascript/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/procedures.ts -------------------------------------------------------------------------------- /generators/javascript/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/text.ts -------------------------------------------------------------------------------- /generators/javascript/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/javascript/variables.ts -------------------------------------------------------------------------------- /generators/lua.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua.ts -------------------------------------------------------------------------------- /generators/lua/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/lists.ts -------------------------------------------------------------------------------- /generators/lua/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/logic.ts -------------------------------------------------------------------------------- /generators/lua/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/loops.ts -------------------------------------------------------------------------------- /generators/lua/lua_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/lua_generator.ts -------------------------------------------------------------------------------- /generators/lua/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/math.ts -------------------------------------------------------------------------------- /generators/lua/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/procedures.ts -------------------------------------------------------------------------------- /generators/lua/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/text.ts -------------------------------------------------------------------------------- /generators/lua/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/variables.ts -------------------------------------------------------------------------------- /generators/lua/variables_dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/lua/variables_dynamic.ts -------------------------------------------------------------------------------- /generators/php.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php.ts -------------------------------------------------------------------------------- /generators/php/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/lists.ts -------------------------------------------------------------------------------- /generators/php/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/logic.ts -------------------------------------------------------------------------------- /generators/php/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/loops.ts -------------------------------------------------------------------------------- /generators/php/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/math.ts -------------------------------------------------------------------------------- /generators/php/php_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/php_generator.ts -------------------------------------------------------------------------------- /generators/php/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/procedures.ts -------------------------------------------------------------------------------- /generators/php/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/text.ts -------------------------------------------------------------------------------- /generators/php/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/variables.ts -------------------------------------------------------------------------------- /generators/php/variables_dynamic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/php/variables_dynamic.ts -------------------------------------------------------------------------------- /generators/python.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python.ts -------------------------------------------------------------------------------- /generators/python/lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/lists.ts -------------------------------------------------------------------------------- /generators/python/logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/logic.ts -------------------------------------------------------------------------------- /generators/python/loops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/loops.ts -------------------------------------------------------------------------------- /generators/python/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/math.ts -------------------------------------------------------------------------------- /generators/python/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/procedures.ts -------------------------------------------------------------------------------- /generators/python/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/text.ts -------------------------------------------------------------------------------- /generators/python/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/generators/python/variables.ts -------------------------------------------------------------------------------- /gulpfile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/gulpfile.mjs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/jsconfig.json -------------------------------------------------------------------------------- /media/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/1x1.gif -------------------------------------------------------------------------------- /media/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/click.mp3 -------------------------------------------------------------------------------- /media/click.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/click.ogg -------------------------------------------------------------------------------- /media/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/click.wav -------------------------------------------------------------------------------- /media/delete-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/delete-icon.svg -------------------------------------------------------------------------------- /media/delete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/delete.mp3 -------------------------------------------------------------------------------- /media/delete.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/delete.ogg -------------------------------------------------------------------------------- /media/delete.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/delete.wav -------------------------------------------------------------------------------- /media/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/disconnect.mp3 -------------------------------------------------------------------------------- /media/disconnect.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/disconnect.ogg -------------------------------------------------------------------------------- /media/disconnect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/disconnect.wav -------------------------------------------------------------------------------- /media/dropdown-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/dropdown-arrow.svg -------------------------------------------------------------------------------- /media/foldout-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/foldout-icon.svg -------------------------------------------------------------------------------- /media/handclosed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/handclosed.cur -------------------------------------------------------------------------------- /media/handdelete.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/handdelete.cur -------------------------------------------------------------------------------- /media/handopen.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/handopen.cur -------------------------------------------------------------------------------- /media/pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/pilcrow.png -------------------------------------------------------------------------------- /media/quote0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/quote0.png -------------------------------------------------------------------------------- /media/quote1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/quote1.png -------------------------------------------------------------------------------- /media/resize-handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/resize-handle.svg -------------------------------------------------------------------------------- /media/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/sprites.png -------------------------------------------------------------------------------- /media/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/media/sprites.svg -------------------------------------------------------------------------------- /msg/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/README.md -------------------------------------------------------------------------------- /msg/json/ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ab.json -------------------------------------------------------------------------------- /msg/json/ace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ace.json -------------------------------------------------------------------------------- /msg/json/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/af.json -------------------------------------------------------------------------------- /msg/json/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/am.json -------------------------------------------------------------------------------- /msg/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ar.json -------------------------------------------------------------------------------- /msg/json/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ast.json -------------------------------------------------------------------------------- /msg/json/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/az.json -------------------------------------------------------------------------------- /msg/json/ba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ba.json -------------------------------------------------------------------------------- /msg/json/bcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/bcc.json -------------------------------------------------------------------------------- /msg/json/be-tarask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/be-tarask.json -------------------------------------------------------------------------------- /msg/json/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/be.json -------------------------------------------------------------------------------- /msg/json/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/bg.json -------------------------------------------------------------------------------- /msg/json/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/bn.json -------------------------------------------------------------------------------- /msg/json/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/br.json -------------------------------------------------------------------------------- /msg/json/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/bs.json -------------------------------------------------------------------------------- /msg/json/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ca.json -------------------------------------------------------------------------------- /msg/json/cdo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/cdo.json -------------------------------------------------------------------------------- /msg/json/ce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ce.json -------------------------------------------------------------------------------- /msg/json/constants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/constants.json -------------------------------------------------------------------------------- /msg/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/cs.json -------------------------------------------------------------------------------- /msg/json/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/da.json -------------------------------------------------------------------------------- /msg/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/de.json -------------------------------------------------------------------------------- /msg/json/diq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/diq.json -------------------------------------------------------------------------------- /msg/json/dtp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/dtp.json -------------------------------------------------------------------------------- /msg/json/dty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/dty.json -------------------------------------------------------------------------------- /msg/json/ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ee.json -------------------------------------------------------------------------------- /msg/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/el.json -------------------------------------------------------------------------------- /msg/json/en-gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/en-gb.json -------------------------------------------------------------------------------- /msg/json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/en.json -------------------------------------------------------------------------------- /msg/json/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/eo.json -------------------------------------------------------------------------------- /msg/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/es.json -------------------------------------------------------------------------------- /msg/json/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/et.json -------------------------------------------------------------------------------- /msg/json/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/eu.json -------------------------------------------------------------------------------- /msg/json/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/fa.json -------------------------------------------------------------------------------- /msg/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/fi.json -------------------------------------------------------------------------------- /msg/json/fo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/fo.json -------------------------------------------------------------------------------- /msg/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/fr.json -------------------------------------------------------------------------------- /msg/json/frr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/frr.json -------------------------------------------------------------------------------- /msg/json/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/gl.json -------------------------------------------------------------------------------- /msg/json/gn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/gn.json -------------------------------------------------------------------------------- /msg/json/gor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/gor.json -------------------------------------------------------------------------------- /msg/json/ha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ha.json -------------------------------------------------------------------------------- /msg/json/hak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hak.json -------------------------------------------------------------------------------- /msg/json/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/he.json -------------------------------------------------------------------------------- /msg/json/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hi.json -------------------------------------------------------------------------------- /msg/json/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hr.json -------------------------------------------------------------------------------- /msg/json/hrx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hrx.json -------------------------------------------------------------------------------- /msg/json/hsb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hsb.json -------------------------------------------------------------------------------- /msg/json/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hu.json -------------------------------------------------------------------------------- /msg/json/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/hy.json -------------------------------------------------------------------------------- /msg/json/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ia.json -------------------------------------------------------------------------------- /msg/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/id.json -------------------------------------------------------------------------------- /msg/json/ig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ig.json -------------------------------------------------------------------------------- /msg/json/inh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/inh.json -------------------------------------------------------------------------------- /msg/json/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/is.json -------------------------------------------------------------------------------- /msg/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/it.json -------------------------------------------------------------------------------- /msg/json/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ja.json -------------------------------------------------------------------------------- /msg/json/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ka.json -------------------------------------------------------------------------------- /msg/json/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/kab.json -------------------------------------------------------------------------------- /msg/json/kbd-cyrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/kbd-cyrl.json -------------------------------------------------------------------------------- /msg/json/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/km.json -------------------------------------------------------------------------------- /msg/json/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/kn.json -------------------------------------------------------------------------------- /msg/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ko.json -------------------------------------------------------------------------------- /msg/json/ksh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ksh.json -------------------------------------------------------------------------------- /msg/json/ku-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ku-latn.json -------------------------------------------------------------------------------- /msg/json/ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ky.json -------------------------------------------------------------------------------- /msg/json/la.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/la.json -------------------------------------------------------------------------------- /msg/json/lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lb.json -------------------------------------------------------------------------------- /msg/json/lki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lki.json -------------------------------------------------------------------------------- /msg/json/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lo.json -------------------------------------------------------------------------------- /msg/json/lrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lrc.json -------------------------------------------------------------------------------- /msg/json/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lt.json -------------------------------------------------------------------------------- /msg/json/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/lv.json -------------------------------------------------------------------------------- /msg/json/mg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/mg.json -------------------------------------------------------------------------------- /msg/json/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/mk.json -------------------------------------------------------------------------------- /msg/json/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ml.json -------------------------------------------------------------------------------- /msg/json/mnw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/mnw.json -------------------------------------------------------------------------------- /msg/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ms.json -------------------------------------------------------------------------------- /msg/json/my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/my.json -------------------------------------------------------------------------------- /msg/json/mzn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/mzn.json -------------------------------------------------------------------------------- /msg/json/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/nb.json -------------------------------------------------------------------------------- /msg/json/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ne.json -------------------------------------------------------------------------------- /msg/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/nl.json -------------------------------------------------------------------------------- /msg/json/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/oc.json -------------------------------------------------------------------------------- /msg/json/olo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/olo.json -------------------------------------------------------------------------------- /msg/json/pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/pa.json -------------------------------------------------------------------------------- /msg/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/pl.json -------------------------------------------------------------------------------- /msg/json/pms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/pms.json -------------------------------------------------------------------------------- /msg/json/ps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ps.json -------------------------------------------------------------------------------- /msg/json/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/pt-br.json -------------------------------------------------------------------------------- /msg/json/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/pt.json -------------------------------------------------------------------------------- /msg/json/qqq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/qqq.json -------------------------------------------------------------------------------- /msg/json/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ro.json -------------------------------------------------------------------------------- /msg/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ru.json -------------------------------------------------------------------------------- /msg/json/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sc.json -------------------------------------------------------------------------------- /msg/json/sco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sco.json -------------------------------------------------------------------------------- /msg/json/sd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sd.json -------------------------------------------------------------------------------- /msg/json/shn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/shn.json -------------------------------------------------------------------------------- /msg/json/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/si.json -------------------------------------------------------------------------------- /msg/json/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sk.json -------------------------------------------------------------------------------- /msg/json/skr-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/skr-arab.json -------------------------------------------------------------------------------- /msg/json/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sl.json -------------------------------------------------------------------------------- /msg/json/smn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/smn.json -------------------------------------------------------------------------------- /msg/json/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sq.json -------------------------------------------------------------------------------- /msg/json/sr-latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sr-latn.json -------------------------------------------------------------------------------- /msg/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sr.json -------------------------------------------------------------------------------- /msg/json/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sv.json -------------------------------------------------------------------------------- /msg/json/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/sw.json -------------------------------------------------------------------------------- /msg/json/synonyms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/synonyms.json -------------------------------------------------------------------------------- /msg/json/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ta.json -------------------------------------------------------------------------------- /msg/json/tcy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/tcy.json -------------------------------------------------------------------------------- /msg/json/tdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/tdd.json -------------------------------------------------------------------------------- /msg/json/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/te.json -------------------------------------------------------------------------------- /msg/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/th.json -------------------------------------------------------------------------------- /msg/json/ti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ti.json -------------------------------------------------------------------------------- /msg/json/tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/tl.json -------------------------------------------------------------------------------- /msg/json/tlh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/tlh.json -------------------------------------------------------------------------------- /msg/json/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/tr.json -------------------------------------------------------------------------------- /msg/json/ug-arab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ug-arab.json -------------------------------------------------------------------------------- /msg/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/uk.json -------------------------------------------------------------------------------- /msg/json/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/ur.json -------------------------------------------------------------------------------- /msg/json/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/uz.json -------------------------------------------------------------------------------- /msg/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/vi.json -------------------------------------------------------------------------------- /msg/json/xmf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/xmf.json -------------------------------------------------------------------------------- /msg/json/yo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/yo.json -------------------------------------------------------------------------------- /msg/json/zgh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/zgh.json -------------------------------------------------------------------------------- /msg/json/zh-hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/zh-hans.json -------------------------------------------------------------------------------- /msg/json/zh-hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/json/zh-hant.json -------------------------------------------------------------------------------- /msg/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/msg/messages.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/package.json -------------------------------------------------------------------------------- /sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/sample.svg -------------------------------------------------------------------------------- /scripts/goog_module/convert-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/goog_module/convert-file.sh -------------------------------------------------------------------------------- /scripts/gulpfiles/build_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/build_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/config.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/docs_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/docs_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/git_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/git_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/helper_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/helper_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/package_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/package_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/release_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/release_tasks.mjs -------------------------------------------------------------------------------- /scripts/gulpfiles/test_tasks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/gulpfiles/test_tasks.mjs -------------------------------------------------------------------------------- /scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/helpers.js -------------------------------------------------------------------------------- /scripts/i18n/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/i18n/common.py -------------------------------------------------------------------------------- /scripts/i18n/create_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/i18n/create_messages.py -------------------------------------------------------------------------------- /scripts/i18n/dedup_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/i18n/dedup_json.py -------------------------------------------------------------------------------- /scripts/i18n/js_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/i18n/js_to_json.py -------------------------------------------------------------------------------- /scripts/i18n/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/i18n/tests.py -------------------------------------------------------------------------------- /scripts/migration/cjs2esm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/migration/cjs2esm -------------------------------------------------------------------------------- /scripts/migration/js2ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/migration/js2ts -------------------------------------------------------------------------------- /scripts/migration/renamings.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/migration/renamings.json5 -------------------------------------------------------------------------------- /scripts/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/package/README.md -------------------------------------------------------------------------------- /scripts/package/core-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/package/core-node.js -------------------------------------------------------------------------------- /scripts/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/package/index.js -------------------------------------------------------------------------------- /scripts/themes/create_blockStyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/themes/create_blockStyles.py -------------------------------------------------------------------------------- /scripts/tsick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/scripts/tsick.js -------------------------------------------------------------------------------- /tests/browser/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/browser/.mocharc.js -------------------------------------------------------------------------------- /tests/browser/test/hooks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/browser/test/hooks.mjs -------------------------------------------------------------------------------- /tests/browser/test/mutator_test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/browser/test/mutator_test.mjs -------------------------------------------------------------------------------- /tests/browser/test/test_setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/browser/test/test_setup.mjs -------------------------------------------------------------------------------- /tests/compile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/compile/index.html -------------------------------------------------------------------------------- /tests/compile/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/compile/main.js -------------------------------------------------------------------------------- /tests/compile/test_blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/compile/test_blocks.js -------------------------------------------------------------------------------- /tests/compile/webdriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/compile/webdriver.js -------------------------------------------------------------------------------- /tests/generators/functions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/functions.xml -------------------------------------------------------------------------------- /tests/generators/golden/generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/golden/generated.js -------------------------------------------------------------------------------- /tests/generators/golden/generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/golden/generated.py -------------------------------------------------------------------------------- /tests/generators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/index.html -------------------------------------------------------------------------------- /tests/generators/lists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/lists.xml -------------------------------------------------------------------------------- /tests/generators/logic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/logic.xml -------------------------------------------------------------------------------- /tests/generators/loops1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/loops1.xml -------------------------------------------------------------------------------- /tests/generators/loops2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/loops2.xml -------------------------------------------------------------------------------- /tests/generators/loops3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/loops3.xml -------------------------------------------------------------------------------- /tests/generators/math.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/math.xml -------------------------------------------------------------------------------- /tests/generators/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/text.xml -------------------------------------------------------------------------------- /tests/generators/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/unittest.js -------------------------------------------------------------------------------- /tests/generators/unittest_dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/unittest_dart.js -------------------------------------------------------------------------------- /tests/generators/unittest_lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/unittest_lua.js -------------------------------------------------------------------------------- /tests/generators/unittest_php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/unittest_php.js -------------------------------------------------------------------------------- /tests/generators/unittest_python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/unittest_python.js -------------------------------------------------------------------------------- /tests/generators/variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/variables.xml -------------------------------------------------------------------------------- /tests/generators/webdriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/generators/webdriver.js -------------------------------------------------------------------------------- /tests/media/200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/200px.png -------------------------------------------------------------------------------- /tests/media/30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/30px.png -------------------------------------------------------------------------------- /tests/media/50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/50px.png -------------------------------------------------------------------------------- /tests/media/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/a.png -------------------------------------------------------------------------------- /tests/media/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/arrow.png -------------------------------------------------------------------------------- /tests/media/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/b.png -------------------------------------------------------------------------------- /tests/media/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/c.png -------------------------------------------------------------------------------- /tests/media/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/d.png -------------------------------------------------------------------------------- /tests/media/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/e.png -------------------------------------------------------------------------------- /tests/media/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/f.png -------------------------------------------------------------------------------- /tests/media/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/g.png -------------------------------------------------------------------------------- /tests/media/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/h.png -------------------------------------------------------------------------------- /tests/media/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/i.png -------------------------------------------------------------------------------- /tests/media/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/j.png -------------------------------------------------------------------------------- /tests/media/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/k.png -------------------------------------------------------------------------------- /tests/media/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/l.png -------------------------------------------------------------------------------- /tests/media/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/media/m.png -------------------------------------------------------------------------------- /tests/mocha/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/.mocharc.js -------------------------------------------------------------------------------- /tests/mocha/block_json_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/block_json_test.js -------------------------------------------------------------------------------- /tests/mocha/block_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/block_test.js -------------------------------------------------------------------------------- /tests/mocha/blocks/lists_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/blocks/lists_test.js -------------------------------------------------------------------------------- /tests/mocha/blocks/loops_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/blocks/loops_test.js -------------------------------------------------------------------------------- /tests/mocha/blocks/variables_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/blocks/variables_test.js -------------------------------------------------------------------------------- /tests/mocha/clipboard_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/clipboard_test.js -------------------------------------------------------------------------------- /tests/mocha/comment_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/comment_test.js -------------------------------------------------------------------------------- /tests/mocha/comment_view_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/comment_view_test.js -------------------------------------------------------------------------------- /tests/mocha/connection_db_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/connection_db_test.js -------------------------------------------------------------------------------- /tests/mocha/connection_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/connection_test.js -------------------------------------------------------------------------------- /tests/mocha/contextmenu_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/contextmenu_test.js -------------------------------------------------------------------------------- /tests/mocha/cursor_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/cursor_test.js -------------------------------------------------------------------------------- /tests/mocha/dialog_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/dialog_test.js -------------------------------------------------------------------------------- /tests/mocha/dropdowndiv_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/dropdowndiv_test.js -------------------------------------------------------------------------------- /tests/mocha/event_block_drag_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_block_drag_test.js -------------------------------------------------------------------------------- /tests/mocha/event_block_move_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_block_move_test.js -------------------------------------------------------------------------------- /tests/mocha/event_click_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_click_test.js -------------------------------------------------------------------------------- /tests/mocha/event_selected_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_selected_test.js -------------------------------------------------------------------------------- /tests/mocha/event_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_test.js -------------------------------------------------------------------------------- /tests/mocha/event_var_create_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_var_create_test.js -------------------------------------------------------------------------------- /tests/mocha/event_var_delete_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_var_delete_test.js -------------------------------------------------------------------------------- /tests/mocha/event_var_rename_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_var_rename_test.js -------------------------------------------------------------------------------- /tests/mocha/event_viewport_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/event_viewport_test.js -------------------------------------------------------------------------------- /tests/mocha/extensions_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/extensions_test.js -------------------------------------------------------------------------------- /tests/mocha/field_checkbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_checkbox_test.js -------------------------------------------------------------------------------- /tests/mocha/field_colour_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_colour_test.js -------------------------------------------------------------------------------- /tests/mocha/field_dropdown_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_dropdown_test.js -------------------------------------------------------------------------------- /tests/mocha/field_image_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_image_test.js -------------------------------------------------------------------------------- /tests/mocha/field_label_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_label_test.js -------------------------------------------------------------------------------- /tests/mocha/field_number_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_number_test.js -------------------------------------------------------------------------------- /tests/mocha/field_registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_registry_test.js -------------------------------------------------------------------------------- /tests/mocha/field_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_test.js -------------------------------------------------------------------------------- /tests/mocha/field_textinput_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_textinput_test.js -------------------------------------------------------------------------------- /tests/mocha/field_variable_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/field_variable_test.js -------------------------------------------------------------------------------- /tests/mocha/flyout_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/flyout_test.js -------------------------------------------------------------------------------- /tests/mocha/focus_manager_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/focus_manager_test.js -------------------------------------------------------------------------------- /tests/mocha/generator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/generator_test.js -------------------------------------------------------------------------------- /tests/mocha/gesture_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/gesture_test.js -------------------------------------------------------------------------------- /tests/mocha/icon_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/icon_test.js -------------------------------------------------------------------------------- /tests/mocha/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/index.html -------------------------------------------------------------------------------- /tests/mocha/input_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/input_test.js -------------------------------------------------------------------------------- /tests/mocha/insertion_marker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/insertion_marker_test.js -------------------------------------------------------------------------------- /tests/mocha/json_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/json_test.js -------------------------------------------------------------------------------- /tests/mocha/layering_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/layering_test.js -------------------------------------------------------------------------------- /tests/mocha/metrics_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/metrics_test.js -------------------------------------------------------------------------------- /tests/mocha/mutator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/mutator_test.js -------------------------------------------------------------------------------- /tests/mocha/names_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/names_test.js -------------------------------------------------------------------------------- /tests/mocha/navigation_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/navigation_test.js -------------------------------------------------------------------------------- /tests/mocha/procedure_map_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/procedure_map_test.js -------------------------------------------------------------------------------- /tests/mocha/rect_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/rect_test.js -------------------------------------------------------------------------------- /tests/mocha/registry_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/registry_test.js -------------------------------------------------------------------------------- /tests/mocha/serializer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/serializer_test.js -------------------------------------------------------------------------------- /tests/mocha/shortcut_items_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/shortcut_items_test.js -------------------------------------------------------------------------------- /tests/mocha/test_helpers/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/test_helpers/common.js -------------------------------------------------------------------------------- /tests/mocha/test_helpers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/test_helpers/events.js -------------------------------------------------------------------------------- /tests/mocha/test_helpers/fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/test_helpers/fields.js -------------------------------------------------------------------------------- /tests/mocha/test_helpers/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/test_helpers/warnings.js -------------------------------------------------------------------------------- /tests/mocha/theme_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/theme_test.js -------------------------------------------------------------------------------- /tests/mocha/toast_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/toast_test.js -------------------------------------------------------------------------------- /tests/mocha/toolbox_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/toolbox_test.js -------------------------------------------------------------------------------- /tests/mocha/tooltip_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/tooltip_test.js -------------------------------------------------------------------------------- /tests/mocha/touch_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/touch_test.js -------------------------------------------------------------------------------- /tests/mocha/trashcan_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/trashcan_test.js -------------------------------------------------------------------------------- /tests/mocha/utils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/utils_test.js -------------------------------------------------------------------------------- /tests/mocha/variable_map_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/variable_map_test.js -------------------------------------------------------------------------------- /tests/mocha/variable_model_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/variable_model_test.js -------------------------------------------------------------------------------- /tests/mocha/webdriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/webdriver.js -------------------------------------------------------------------------------- /tests/mocha/widget_div_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/widget_div_test.js -------------------------------------------------------------------------------- /tests/mocha/workspace_svg_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/workspace_svg_test.js -------------------------------------------------------------------------------- /tests/mocha/workspace_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/workspace_test.js -------------------------------------------------------------------------------- /tests/mocha/xml_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/xml_test.js -------------------------------------------------------------------------------- /tests/mocha/zoom_controls_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/mocha/zoom_controls_test.js -------------------------------------------------------------------------------- /tests/multi_playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/multi_playground.html -------------------------------------------------------------------------------- /tests/node/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/node/.mocharc.js -------------------------------------------------------------------------------- /tests/node/node_modules/blockly-test: -------------------------------------------------------------------------------- 1 | ../../../dist -------------------------------------------------------------------------------- /tests/node/run_node_test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/node/run_node_test.mjs -------------------------------------------------------------------------------- /tests/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/playground.html -------------------------------------------------------------------------------- /tests/playgrounds/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/playgrounds/iframe.html -------------------------------------------------------------------------------- /tests/playgrounds/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/playgrounds/screenshot.js -------------------------------------------------------------------------------- /tests/scripts/check_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/scripts/check_metadata.sh -------------------------------------------------------------------------------- /tests/scripts/compile_typings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/scripts/compile_typings.sh -------------------------------------------------------------------------------- /tests/scripts/load.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/scripts/load.mjs -------------------------------------------------------------------------------- /tests/scripts/setup_linux_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/scripts/setup_linux_env.sh -------------------------------------------------------------------------------- /tests/scripts/update_metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/scripts/update_metadata.sh -------------------------------------------------------------------------------- /tests/themes/test_themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/themes/test_themes.js -------------------------------------------------------------------------------- /tests/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/typescript/README.md -------------------------------------------------------------------------------- /tests/typescript/src/generators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/typescript/src/generators.ts -------------------------------------------------------------------------------- /tests/typescript/src/msg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/typescript/src/msg.ts -------------------------------------------------------------------------------- /tests/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/typescript/tsconfig.json -------------------------------------------------------------------------------- /tests/xml/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/xml/README.txt -------------------------------------------------------------------------------- /tests/xml/blockly.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/xml/blockly.xsd -------------------------------------------------------------------------------- /tests/xml/invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/xml/invalid.xml -------------------------------------------------------------------------------- /tests/xml/toolbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/xml/toolbox.xml -------------------------------------------------------------------------------- /tests/xml/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tests/xml/workspace.xml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/tsdoc.json -------------------------------------------------------------------------------- /typings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/README.md -------------------------------------------------------------------------------- /typings/blocks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/blocks.d.ts -------------------------------------------------------------------------------- /typings/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/core.d.ts -------------------------------------------------------------------------------- /typings/dart.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/dart.d.ts -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/index.d.ts -------------------------------------------------------------------------------- /typings/javascript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/javascript.d.ts -------------------------------------------------------------------------------- /typings/lua.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/lua.d.ts -------------------------------------------------------------------------------- /typings/msg/ab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ab.d.ts -------------------------------------------------------------------------------- /typings/msg/ace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ace.d.ts -------------------------------------------------------------------------------- /typings/msg/af.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/af.d.ts -------------------------------------------------------------------------------- /typings/msg/am.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/am.d.ts -------------------------------------------------------------------------------- /typings/msg/ar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ar.d.ts -------------------------------------------------------------------------------- /typings/msg/ast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ast.d.ts -------------------------------------------------------------------------------- /typings/msg/az.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/az.d.ts -------------------------------------------------------------------------------- /typings/msg/ba.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ba.d.ts -------------------------------------------------------------------------------- /typings/msg/bcc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/bcc.d.ts -------------------------------------------------------------------------------- /typings/msg/be-tarask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/be-tarask.d.ts -------------------------------------------------------------------------------- /typings/msg/be.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/be.d.ts -------------------------------------------------------------------------------- /typings/msg/bg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/bg.d.ts -------------------------------------------------------------------------------- /typings/msg/bn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/bn.d.ts -------------------------------------------------------------------------------- /typings/msg/br.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/br.d.ts -------------------------------------------------------------------------------- /typings/msg/bs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/bs.d.ts -------------------------------------------------------------------------------- /typings/msg/ca.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ca.d.ts -------------------------------------------------------------------------------- /typings/msg/cdo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/cdo.d.ts -------------------------------------------------------------------------------- /typings/msg/ce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ce.d.ts -------------------------------------------------------------------------------- /typings/msg/cs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/cs.d.ts -------------------------------------------------------------------------------- /typings/msg/da.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/da.d.ts -------------------------------------------------------------------------------- /typings/msg/de.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/de.d.ts -------------------------------------------------------------------------------- /typings/msg/diq.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/diq.d.ts -------------------------------------------------------------------------------- /typings/msg/dtp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/dtp.d.ts -------------------------------------------------------------------------------- /typings/msg/dty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/dty.d.ts -------------------------------------------------------------------------------- /typings/msg/ee.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ee.d.ts -------------------------------------------------------------------------------- /typings/msg/el.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/el.d.ts -------------------------------------------------------------------------------- /typings/msg/en-gb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/en-gb.d.ts -------------------------------------------------------------------------------- /typings/msg/en.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/en.d.ts -------------------------------------------------------------------------------- /typings/msg/eo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/eo.d.ts -------------------------------------------------------------------------------- /typings/msg/es.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/es.d.ts -------------------------------------------------------------------------------- /typings/msg/et.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/et.d.ts -------------------------------------------------------------------------------- /typings/msg/eu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/eu.d.ts -------------------------------------------------------------------------------- /typings/msg/fa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/fa.d.ts -------------------------------------------------------------------------------- /typings/msg/fi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/fi.d.ts -------------------------------------------------------------------------------- /typings/msg/fo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/fo.d.ts -------------------------------------------------------------------------------- /typings/msg/fr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/fr.d.ts -------------------------------------------------------------------------------- /typings/msg/frr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/frr.d.ts -------------------------------------------------------------------------------- /typings/msg/gl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/gl.d.ts -------------------------------------------------------------------------------- /typings/msg/gn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/gn.d.ts -------------------------------------------------------------------------------- /typings/msg/gor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/gor.d.ts -------------------------------------------------------------------------------- /typings/msg/ha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ha.d.ts -------------------------------------------------------------------------------- /typings/msg/hak.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hak.d.ts -------------------------------------------------------------------------------- /typings/msg/he.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/he.d.ts -------------------------------------------------------------------------------- /typings/msg/hi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hi.d.ts -------------------------------------------------------------------------------- /typings/msg/hr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hr.d.ts -------------------------------------------------------------------------------- /typings/msg/hrx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hrx.d.ts -------------------------------------------------------------------------------- /typings/msg/hsb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hsb.d.ts -------------------------------------------------------------------------------- /typings/msg/hu.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hu.d.ts -------------------------------------------------------------------------------- /typings/msg/hy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/hy.d.ts -------------------------------------------------------------------------------- /typings/msg/ia.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ia.d.ts -------------------------------------------------------------------------------- /typings/msg/id.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/id.d.ts -------------------------------------------------------------------------------- /typings/msg/ig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ig.d.ts -------------------------------------------------------------------------------- /typings/msg/inh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/inh.d.ts -------------------------------------------------------------------------------- /typings/msg/is.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/is.d.ts -------------------------------------------------------------------------------- /typings/msg/it.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/it.d.ts -------------------------------------------------------------------------------- /typings/msg/ja.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ja.d.ts -------------------------------------------------------------------------------- /typings/msg/ka.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ka.d.ts -------------------------------------------------------------------------------- /typings/msg/kab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/kab.d.ts -------------------------------------------------------------------------------- /typings/msg/kbd-cyrl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/kbd-cyrl.d.ts -------------------------------------------------------------------------------- /typings/msg/km.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/km.d.ts -------------------------------------------------------------------------------- /typings/msg/kn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/kn.d.ts -------------------------------------------------------------------------------- /typings/msg/ko.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ko.d.ts -------------------------------------------------------------------------------- /typings/msg/ksh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ksh.d.ts -------------------------------------------------------------------------------- /typings/msg/ku-latn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ku-latn.d.ts -------------------------------------------------------------------------------- /typings/msg/ky.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ky.d.ts -------------------------------------------------------------------------------- /typings/msg/la.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/la.d.ts -------------------------------------------------------------------------------- /typings/msg/lb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lb.d.ts -------------------------------------------------------------------------------- /typings/msg/lki.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lki.d.ts -------------------------------------------------------------------------------- /typings/msg/lo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lo.d.ts -------------------------------------------------------------------------------- /typings/msg/lrc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lrc.d.ts -------------------------------------------------------------------------------- /typings/msg/lt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lt.d.ts -------------------------------------------------------------------------------- /typings/msg/lv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/lv.d.ts -------------------------------------------------------------------------------- /typings/msg/mg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/mg.d.ts -------------------------------------------------------------------------------- /typings/msg/mk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/mk.d.ts -------------------------------------------------------------------------------- /typings/msg/ml.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ml.d.ts -------------------------------------------------------------------------------- /typings/msg/mnw.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/mnw.d.ts -------------------------------------------------------------------------------- /typings/msg/ms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ms.d.ts -------------------------------------------------------------------------------- /typings/msg/msg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/msg.d.ts -------------------------------------------------------------------------------- /typings/msg/my.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/my.d.ts -------------------------------------------------------------------------------- /typings/msg/mzn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/mzn.d.ts -------------------------------------------------------------------------------- /typings/msg/nb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/nb.d.ts -------------------------------------------------------------------------------- /typings/msg/ne.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ne.d.ts -------------------------------------------------------------------------------- /typings/msg/nl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/nl.d.ts -------------------------------------------------------------------------------- /typings/msg/oc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/oc.d.ts -------------------------------------------------------------------------------- /typings/msg/olo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/olo.d.ts -------------------------------------------------------------------------------- /typings/msg/pa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/pa.d.ts -------------------------------------------------------------------------------- /typings/msg/pl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/pl.d.ts -------------------------------------------------------------------------------- /typings/msg/pms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/pms.d.ts -------------------------------------------------------------------------------- /typings/msg/ps.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ps.d.ts -------------------------------------------------------------------------------- /typings/msg/pt-br.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/pt-br.d.ts -------------------------------------------------------------------------------- /typings/msg/pt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/pt.d.ts -------------------------------------------------------------------------------- /typings/msg/ro.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ro.d.ts -------------------------------------------------------------------------------- /typings/msg/ru.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ru.d.ts -------------------------------------------------------------------------------- /typings/msg/sc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sc.d.ts -------------------------------------------------------------------------------- /typings/msg/sco.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sco.d.ts -------------------------------------------------------------------------------- /typings/msg/sd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sd.d.ts -------------------------------------------------------------------------------- /typings/msg/shn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/shn.d.ts -------------------------------------------------------------------------------- /typings/msg/si.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/si.d.ts -------------------------------------------------------------------------------- /typings/msg/sk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sk.d.ts -------------------------------------------------------------------------------- /typings/msg/skr-arab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/skr-arab.d.ts -------------------------------------------------------------------------------- /typings/msg/sl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sl.d.ts -------------------------------------------------------------------------------- /typings/msg/smn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/smn.d.ts -------------------------------------------------------------------------------- /typings/msg/sq.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sq.d.ts -------------------------------------------------------------------------------- /typings/msg/sr-latn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sr-latn.d.ts -------------------------------------------------------------------------------- /typings/msg/sr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sr.d.ts -------------------------------------------------------------------------------- /typings/msg/sv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sv.d.ts -------------------------------------------------------------------------------- /typings/msg/sw.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/sw.d.ts -------------------------------------------------------------------------------- /typings/msg/ta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ta.d.ts -------------------------------------------------------------------------------- /typings/msg/tcy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/tcy.d.ts -------------------------------------------------------------------------------- /typings/msg/tdd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/tdd.d.ts -------------------------------------------------------------------------------- /typings/msg/te.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/te.d.ts -------------------------------------------------------------------------------- /typings/msg/th.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/th.d.ts -------------------------------------------------------------------------------- /typings/msg/ti.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ti.d.ts -------------------------------------------------------------------------------- /typings/msg/tl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/tl.d.ts -------------------------------------------------------------------------------- /typings/msg/tlh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/tlh.d.ts -------------------------------------------------------------------------------- /typings/msg/tr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/tr.d.ts -------------------------------------------------------------------------------- /typings/msg/ug-arab.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ug-arab.d.ts -------------------------------------------------------------------------------- /typings/msg/uk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/uk.d.ts -------------------------------------------------------------------------------- /typings/msg/ur.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/ur.d.ts -------------------------------------------------------------------------------- /typings/msg/uz.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/uz.d.ts -------------------------------------------------------------------------------- /typings/msg/vi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/vi.d.ts -------------------------------------------------------------------------------- /typings/msg/xmf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/xmf.d.ts -------------------------------------------------------------------------------- /typings/msg/yo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/yo.d.ts -------------------------------------------------------------------------------- /typings/msg/zgh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/zgh.d.ts -------------------------------------------------------------------------------- /typings/msg/zh-hans.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/zh-hans.d.ts -------------------------------------------------------------------------------- /typings/msg/zh-hant.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/msg/zh-hant.d.ts -------------------------------------------------------------------------------- /typings/php.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/php.d.ts -------------------------------------------------------------------------------- /typings/python.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/python.d.ts -------------------------------------------------------------------------------- /typings/templates/msg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/templates/msg.template -------------------------------------------------------------------------------- /typings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaspberryPiFoundation/blockly/HEAD/typings/tsconfig.json --------------------------------------------------------------------------------