mirror of
https://github.com/google/blockly.git
synced 2025-12-16 06:10:12 +01:00
* feat: Parse message newlines as endOfRow dummies. * Fix the multilineinput field test. * Addressing PR feedback. * Addressing PR feedback. * Newline parsing now uses a new custom input. * npm run format * Added input_end_row to block factory. * Addres feedback, fix endrow after external value.
24 lines
548 B
TypeScript
24 lines
548 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {Align} from './inputs/align.js';
|
|
import {Input} from './inputs/input.js';
|
|
import {DummyInput} from './inputs/dummy_input.js';
|
|
import {EndRowInput} from './inputs/end_row_input.js';
|
|
import {StatementInput} from './inputs/statement_input.js';
|
|
import {ValueInput} from './inputs/value_input.js';
|
|
import {inputTypes} from './inputs/input_types.js';
|
|
|
|
export {
|
|
Align,
|
|
Input,
|
|
DummyInput,
|
|
EndRowInput,
|
|
StatementInput,
|
|
ValueInput,
|
|
inputTypes,
|
|
};
|