@yaakapp/api 0.2.29 → 0.3.0
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 +28 -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
|
*/
|
|
@@ -141,6 +149,10 @@ export type FormInputEditor = {
|
|
|
141
149
|
* The label of the input
|
|
142
150
|
*/
|
|
143
151
|
label?: string;
|
|
152
|
+
/**
|
|
153
|
+
* Visually hide the label of the input
|
|
154
|
+
*/
|
|
155
|
+
hideLabel?: boolean;
|
|
144
156
|
/**
|
|
145
157
|
* The default value
|
|
146
158
|
*/
|
|
@@ -167,6 +179,10 @@ export type FormInputFile = {
|
|
|
167
179
|
* The label of the input
|
|
168
180
|
*/
|
|
169
181
|
label?: string;
|
|
182
|
+
/**
|
|
183
|
+
* Visually hide the label of the input
|
|
184
|
+
*/
|
|
185
|
+
hideLabel?: boolean;
|
|
170
186
|
/**
|
|
171
187
|
* The default value
|
|
172
188
|
*/
|
|
@@ -182,6 +198,10 @@ export type FormInputHttpRequest = {
|
|
|
182
198
|
* The label of the input
|
|
183
199
|
*/
|
|
184
200
|
label?: string;
|
|
201
|
+
/**
|
|
202
|
+
* Visually hide the label of the input
|
|
203
|
+
*/
|
|
204
|
+
hideLabel?: boolean;
|
|
185
205
|
/**
|
|
186
206
|
* The default value
|
|
187
207
|
*/
|
|
@@ -201,6 +221,10 @@ export type FormInputSelect = {
|
|
|
201
221
|
* The label of the input
|
|
202
222
|
*/
|
|
203
223
|
label?: string;
|
|
224
|
+
/**
|
|
225
|
+
* Visually hide the label of the input
|
|
226
|
+
*/
|
|
227
|
+
hideLabel?: boolean;
|
|
204
228
|
/**
|
|
205
229
|
* The default value
|
|
206
230
|
*/
|
|
@@ -228,6 +252,10 @@ export type FormInputText = {
|
|
|
228
252
|
* The label of the input
|
|
229
253
|
*/
|
|
230
254
|
label?: string;
|
|
255
|
+
/**
|
|
256
|
+
* Visually hide the label of the input
|
|
257
|
+
*/
|
|
258
|
+
hideLabel?: boolean;
|
|
231
259
|
/**
|
|
232
260
|
* The default value
|
|
233
261
|
*/
|