fix: export Field-related types from Blockly #6877
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The basics
npm run format
andnpm run lint
The details
Resolves
Re-export Field types from Blockly
fixes #6870
Proposed Changes
FieldDropdownConfig
exportField{Name}Config
andField{Name}FromJsonConfig
types from./core/blockly.ts
Behavior Before Change
./core/blockly.ts
Behavior After Change
./core/blockly.ts
Reason for Changes
Test Coverage
N/A
Documentation
N/A
Additional Information
FieldDropdownConfig
is just a re-export ofFieldConfig
. Should we include this?FieldTextInputConfig
as a re-export ofFieldInputConfig
already, though the baseFieldInputConfig
isn't actually exported sinceFieldInput
is only used internallyFieldInput
types aren't exported. It is not a registered field since it was created for internal use when splitting the oldFieldInput
toFieldTextInput
. I don't think these types should be exported, though it's worth noting that this is deliberate../core/blockly.ts
, think it's worthwhile to exportUnattachedFieldError
orFieldProto
?FieldProto
isn't necessarily needed, though it could theoretically be used by and edge-case subclass that makes significant changes upon the base Field class