@yaakapp/api 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/bindings/events.d.ts +8 -1
- package/package.json +1 -1
package/lib/bindings/events.d.ts
CHANGED
|
@@ -139,7 +139,14 @@ export type FormInputEditor = {
|
|
|
139
139
|
* Placeholder for the text input
|
|
140
140
|
*/
|
|
141
141
|
placeholder?: string | null;
|
|
142
|
-
|
|
142
|
+
/**
|
|
143
|
+
* Don't show the editor gutter (line numbers, folds, etc.)
|
|
144
|
+
*/
|
|
145
|
+
hideGutter?: boolean;
|
|
146
|
+
/**
|
|
147
|
+
* Language for syntax highlighting
|
|
148
|
+
*/
|
|
149
|
+
language?: EditorLanguage;
|
|
143
150
|
name: string;
|
|
144
151
|
/**
|
|
145
152
|
* Whether the user must fill in the argument
|