@yaakapp/api 0.3.0 → 0.3.1
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 +4 -0
- package/package.json +1 -1
package/lib/bindings/events.d.ts
CHANGED
|
@@ -139,6 +139,10 @@ export type FormInputEditor = {
|
|
|
139
139
|
* Placeholder for the text input
|
|
140
140
|
*/
|
|
141
141
|
placeholder?: string | null;
|
|
142
|
+
/**
|
|
143
|
+
* Don't show the editor gutter (line numbers, folds, etc.)
|
|
144
|
+
*/
|
|
145
|
+
hideGutter?: boolean | null;
|
|
142
146
|
language: EditorLanguage;
|
|
143
147
|
name: string;
|
|
144
148
|
/**
|