Skip to content

Commit 0d07a20

Browse files
committed
feat: Add new input block types to command mapping
- Introduced new command mappings for various input blocks including text, textarea, select, slider, checkbox, date, date range, file, and button blocks. Signed-off-by: Tomas Kislan <tomas@kislan.sk>
1 parent 56bf25e commit 0d07a20

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/commands.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,13 @@ export interface ICommandNameArgumentTypeMapping {
187187
[DSCommands.ContinueEditSessionInCodespace]: [];
188188
[DSCommands.AddSqlBlock]: [];
189189
[DSCommands.AddBigNumberChartBlock]: [];
190+
[DSCommands.AddInputTextBlock]: [];
191+
[DSCommands.AddInputTextareaBlock]: [];
192+
[DSCommands.AddInputSelectBlock]: [];
193+
[DSCommands.AddInputSliderBlock]: [];
194+
[DSCommands.AddInputCheckboxBlock]: [];
195+
[DSCommands.AddInputDateBlock]: [];
196+
[DSCommands.AddInputDateRangeBlock]: [];
197+
[DSCommands.AddInputFileBlock]: [];
198+
[DSCommands.AddButtonBlock]: [];
190199
}

0 commit comments

Comments
 (0)