@yaakapp/api 0.2.29 → 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 +32 -0
- package/package.json +1 -1
package/lib/bindings/events.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export type FormInputBase = {
|
|
|
106
106
|
* The label of the input
|
|
107
107
|
*/
|
|
108
108
|
label?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Visually hide the label of the input
|
|
111
|
+
*/
|
|
112
|
+
hideLabel?: boolean;
|
|
109
113
|
/**
|
|
110
114
|
* The default value
|
|
111
115
|
*/
|
|
@@ -121,6 +125,10 @@ export type FormInputCheckbox = {
|
|
|
121
125
|
* The label of the input
|
|
122
126
|
*/
|
|
123
127
|
label?: string;
|
|
128
|
+
/**
|
|
129
|
+
* Visually hide the label of the input
|
|
130
|
+
*/
|
|
131
|
+
hideLabel?: boolean;
|
|
124
132
|
/**
|
|
125
133
|
* The default value
|
|
126
134
|
*/
|
|
@@ -131,6 +139,10 @@ export type FormInputEditor = {
|
|
|
131
139
|
* Placeholder for the text input
|
|
132
140
|
*/
|
|
133
141
|
placeholder?: string | null;
|
|
142
|
+
/**
|
|
143
|
+
* Don't show the editor gutter (line numbers, folds, etc.)
|
|
144
|
+
*/
|
|
145
|
+
hideGutter?: boolean | null;
|
|
134
146
|
language: EditorLanguage;
|
|
135
147
|
name: string;
|
|
136
148
|
/**
|
|
@@ -141,6 +153,10 @@ export type FormInputEditor = {
|
|
|
141
153
|
* The label of the input
|
|
142
154
|
*/
|
|
143
155
|
label?: string;
|
|
156
|
+
/**
|
|
157
|
+
* Visually hide the label of the input
|
|
158
|
+
*/
|
|
159
|
+
hideLabel?: boolean;
|
|
144
160
|
/**
|
|
145
161
|
* The default value
|
|
146
162
|
*/
|
|
@@ -167,6 +183,10 @@ export type FormInputFile = {
|
|
|
167
183
|
* The label of the input
|
|
168
184
|
*/
|
|
169
185
|
label?: string;
|
|
186
|
+
/**
|
|
187
|
+
* Visually hide the label of the input
|
|
188
|
+
*/
|
|
189
|
+
hideLabel?: boolean;
|
|
170
190
|
/**
|
|
171
191
|
* The default value
|
|
172
192
|
*/
|
|
@@ -182,6 +202,10 @@ export type FormInputHttpRequest = {
|
|
|
182
202
|
* The label of the input
|
|
183
203
|
*/
|
|
184
204
|
label?: string;
|
|
205
|
+
/**
|
|
206
|
+
* Visually hide the label of the input
|
|
207
|
+
*/
|
|
208
|
+
hideLabel?: boolean;
|
|
185
209
|
/**
|
|
186
210
|
* The default value
|
|
187
211
|
*/
|
|
@@ -201,6 +225,10 @@ export type FormInputSelect = {
|
|
|
201
225
|
* The label of the input
|
|
202
226
|
*/
|
|
203
227
|
label?: string;
|
|
228
|
+
/**
|
|
229
|
+
* Visually hide the label of the input
|
|
230
|
+
*/
|
|
231
|
+
hideLabel?: boolean;
|
|
204
232
|
/**
|
|
205
233
|
* The default value
|
|
206
234
|
*/
|
|
@@ -228,6 +256,10 @@ export type FormInputText = {
|
|
|
228
256
|
* The label of the input
|
|
229
257
|
*/
|
|
230
258
|
label?: string;
|
|
259
|
+
/**
|
|
260
|
+
* Visually hide the label of the input
|
|
261
|
+
*/
|
|
262
|
+
hideLabel?: boolean;
|
|
231
263
|
/**
|
|
232
264
|
* The default value
|
|
233
265
|
*/
|