diff --git a/examples/backpack-demo/index.js b/examples/backpack-demo/index.js index 99a5dd64cf..18183987b7 100644 --- a/examples/backpack-demo/index.js +++ b/examples/backpack-demo/index.js @@ -135,10 +135,6 @@ const toolbox = { kind: 'block', type: 'text', }, - { - kind: 'block', - type: 'text_multiline', - }, { 'kind': 'label', 'text': 'Input/Output:', diff --git a/examples/custom-renderer-codelab/src/toolbox.js b/examples/custom-renderer-codelab/src/toolbox.js index 0da9795cbb..074caabc32 100644 --- a/examples/custom-renderer-codelab/src/toolbox.js +++ b/examples/custom-renderer-codelab/src/toolbox.js @@ -328,10 +328,6 @@ export const toolbox = { kind: 'block', type: 'text', }, - { - kind: 'block', - type: 'text_multiline', - }, { kind: 'block', type: 'text_join', diff --git a/examples/custom-toolbox-codelab/complete-code/index.html b/examples/custom-toolbox-codelab/complete-code/index.html index 3635b1fb28..aed4465694 100644 --- a/examples/custom-toolbox-codelab/complete-code/index.html +++ b/examples/custom-toolbox-codelab/complete-code/index.html @@ -193,7 +193,6 @@

Toolbox Customization Codelab

- diff --git a/examples/custom-toolbox-codelab/starter-code/index.html b/examples/custom-toolbox-codelab/starter-code/index.html index ae5262dee4..e0a35217d5 100644 --- a/examples/custom-toolbox-codelab/starter-code/index.html +++ b/examples/custom-toolbox-codelab/starter-code/index.html @@ -183,7 +183,6 @@

Toolbox Customization Codelab

- diff --git a/examples/devsite-demo/toolbox.js b/examples/devsite-demo/toolbox.js index a5a974d1ec..e7e0a1c950 100644 --- a/examples/devsite-demo/toolbox.js +++ b/examples/devsite-demo/toolbox.js @@ -277,10 +277,6 @@ const toolboxJson = { kind: 'BLOCK', type: 'text', }, - { - kind: 'BLOCK', - type: 'text_multiline', - }, { kind: 'BLOCK', type: 'text_join', diff --git a/examples/devsite-landing-demo/toolbox.js b/examples/devsite-landing-demo/toolbox.js index 1544e53c5c..1fb849cd59 100644 --- a/examples/devsite-landing-demo/toolbox.js +++ b/examples/devsite-landing-demo/toolbox.js @@ -278,10 +278,6 @@ let toolboxJson = { kind: 'BLOCK', type: 'text', }, - { - kind: 'BLOCK', - type: 'text_multiline', - }, { kind: 'BLOCK', type: 'text_join', diff --git a/examples/keyboard-navigation-codelab/src/toolbox.js b/examples/keyboard-navigation-codelab/src/toolbox.js index 0da9795cbb..074caabc32 100644 --- a/examples/keyboard-navigation-codelab/src/toolbox.js +++ b/examples/keyboard-navigation-codelab/src/toolbox.js @@ -328,10 +328,6 @@ export const toolbox = { kind: 'block', type: 'text', }, - { - kind: 'block', - type: 'text_multiline', - }, { kind: 'block', type: 'text_join', diff --git a/examples/sample-app-ts/src/toolbox.ts b/examples/sample-app-ts/src/toolbox.ts index 0da9795cbb..074caabc32 100644 --- a/examples/sample-app-ts/src/toolbox.ts +++ b/examples/sample-app-ts/src/toolbox.ts @@ -328,10 +328,6 @@ export const toolbox = { kind: 'block', type: 'text', }, - { - kind: 'block', - type: 'text_multiline', - }, { kind: 'block', type: 'text_join', diff --git a/examples/sample-app/src/toolbox.js b/examples/sample-app/src/toolbox.js index 0da9795cbb..074caabc32 100644 --- a/examples/sample-app/src/toolbox.js +++ b/examples/sample-app/src/toolbox.js @@ -328,10 +328,6 @@ export const toolbox = { kind: 'block', type: 'text', }, - { - kind: 'block', - type: 'text_multiline', - }, { kind: 'block', type: 'text_join', diff --git a/plugins/block-test/src/fields/defaults.js b/plugins/block-test/src/fields/defaults.js index 732802a6c8..ae7493d343 100644 --- a/plugins/block-test/src/fields/defaults.js +++ b/plugins/block-test/src/fields/defaults.js @@ -58,19 +58,6 @@ Blockly.defineBlocksWithJsonArray([ helpUrl: '', output: 'String', }, - { - type: 'test_fields_multilinetext', - message0: 'code %1', - args0: [ - { - type: 'field_multilinetext', - name: 'CODE', - text: 'default1\ndefault2', - }, - ], - style: 'math_blocks', - tooltip: 'test tooltip', - }, { type: 'test_fields_checkbox', message0: 'checkbox %1', @@ -246,10 +233,6 @@ export const category = { kind: 'BLOCK', type: 'test_fields_only_text_input', }, - { - kind: 'BLOCK', - type: 'test_fields_multilinetext', - }, { kind: 'BLOCK', type: 'test_fields_variable', diff --git a/plugins/dev-tools/src/toolboxCategories.js b/plugins/dev-tools/src/toolboxCategories.js index 6da9ce7781..ba77527066 100644 --- a/plugins/dev-tools/src/toolboxCategories.js +++ b/plugins/dev-tools/src/toolboxCategories.js @@ -367,13 +367,6 @@ export default { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/strict-connection-checker/src/toolboxCategories.js b/plugins/strict-connection-checker/src/toolboxCategories.js index 90e1880b14..ff5644d3f4 100644 --- a/plugins/strict-connection-checker/src/toolboxCategories.js +++ b/plugins/strict-connection-checker/src/toolboxCategories.js @@ -367,13 +367,6 @@ export default { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/theme-dark/test/index.js b/plugins/theme-dark/test/index.js index 575c2d8a68..610670d3be 100644 --- a/plugins/theme-dark/test/index.js +++ b/plugins/theme-dark/test/index.js @@ -380,13 +380,6 @@ const toolbox = { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/theme-deuteranopia/test/index.js b/plugins/theme-deuteranopia/test/index.js index 6dbc15f55c..daadae1c56 100644 --- a/plugins/theme-deuteranopia/test/index.js +++ b/plugins/theme-deuteranopia/test/index.js @@ -380,13 +380,6 @@ const toolbox = { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/theme-highcontrast/test/index.js b/plugins/theme-highcontrast/test/index.js index 1c2a919db9..4e4de38dad 100644 --- a/plugins/theme-highcontrast/test/index.js +++ b/plugins/theme-highcontrast/test/index.js @@ -380,13 +380,6 @@ const toolbox = { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/theme-modern/test/index.js b/plugins/theme-modern/test/index.js index 6b1824f203..641a15ea9b 100644 --- a/plugins/theme-modern/test/index.js +++ b/plugins/theme-modern/test/index.js @@ -380,13 +380,6 @@ const toolbox = { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block', diff --git a/plugins/theme-tritanopia/test/index.js b/plugins/theme-tritanopia/test/index.js index 3e6fc496cf..84250ac224 100644 --- a/plugins/theme-tritanopia/test/index.js +++ b/plugins/theme-tritanopia/test/index.js @@ -380,13 +380,6 @@ const toolbox = { TEXT: '', }, }, - { - type: 'text_multiline', - kind: 'block', - fields: { - TEXT: '', - }, - }, { type: 'text_join', kind: 'block',