1
- declare const enum IQAutoToolbarManageBehaviour {
1
+ declare const enum IQAutoToolbarManageBehavior {
2
2
BySubviews = 0 ,
3
3
4
4
ByTag = 1 ,
@@ -11,18 +11,41 @@ declare class IQBarButtonItem extends UIBarButtonItem {
11
11
12
12
static appearance ( ) : IQBarButtonItem ; // inherited from UIAppearance
13
13
14
+ /**
15
+ * @since 8.0
16
+ */
14
17
static appearanceForTraitCollection ( trait : UITraitCollection ) : IQBarButtonItem ; // inherited from UIAppearance
15
18
19
+ /**
20
+ * @since 8.0
21
+ * @deprecated 9.0
22
+ */
16
23
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : IQBarButtonItem ; // inherited from UIAppearance
17
24
18
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQBarButtonItem ; // inherited from UIAppearance
25
+ /**
26
+ * @since 9.0
27
+ */
28
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQBarButtonItem ; // inherited from UIAppearance
19
29
30
+ /**
31
+ * @since 5.0
32
+ * @deprecated 9.0
33
+ */
20
34
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : IQBarButtonItem ; // inherited from UIAppearance
21
35
22
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQBarButtonItem ; // inherited from UIAppearance
36
+ /**
37
+ * @since 9.0
38
+ */
39
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQBarButtonItem ; // inherited from UIAppearance
23
40
41
+ /**
42
+ * @since 14.0
43
+ */
24
44
static fixedSpaceItemOfWidth ( width : number ) : IQBarButtonItem ; // inherited from UIBarButtonItem
25
45
46
+ /**
47
+ * @since 14.0
48
+ */
26
49
static flexibleSpaceItem ( ) : IQBarButtonItem ; // inherited from UIBarButtonItem
27
50
28
51
static new ( ) : IQBarButtonItem ; // inherited from NSObject
@@ -137,7 +160,7 @@ declare class IQKeyboardManager extends NSObject {
137
160
138
161
toolbarDoneBarButtonItemText : string ;
139
162
140
- toolbarManageBehaviour : IQAutoToolbarManageBehaviour ;
163
+ toolbarManageBehavior : IQAutoToolbarManageBehavior ;
141
164
142
165
toolbarNextBarButtonItemAccessibilityLabel : string ;
143
166
@@ -163,6 +186,8 @@ declare class IQKeyboardManager extends NSObject {
163
186
164
187
registerAllNotifications ( ) : void ;
165
188
189
+ registerKeyboardSizeChangeWithIdentifierSizeHandler ( identifier : any , sizeHandler : ( p1 : CGSize ) => void ) : void ;
190
+
166
191
registerTextFieldViewClassDidBeginEditingNotificationNameDidEndEditingNotificationName ( aClass : typeof NSObject , didBeginEditingNotificationName : string , didEndEditingNotificationName : string ) : void ;
167
192
168
193
reloadInputViews ( ) : void ;
@@ -173,6 +198,8 @@ declare class IQKeyboardManager extends NSObject {
173
198
174
199
unregisterAllNotifications ( ) : void ;
175
200
201
+ unregisterKeyboardSizeChangeWithIdentifier ( identifier : any ) : void ;
202
+
176
203
unregisterTextFieldViewClassDidBeginEditingNotificationNameDidEndEditingNotificationName ( aClass : typeof NSObject , didBeginEditingNotificationName : string , didEndEditingNotificationName : string ) : void ;
177
204
}
178
205
@@ -215,15 +242,32 @@ declare class IQPreviousNextView extends UIView {
215
242
216
243
static appearance ( ) : IQPreviousNextView ; // inherited from UIAppearance
217
244
245
+ /**
246
+ * @since 8.0
247
+ */
218
248
static appearanceForTraitCollection ( trait : UITraitCollection ) : IQPreviousNextView ; // inherited from UIAppearance
219
249
250
+ /**
251
+ * @since 8.0
252
+ * @deprecated 9.0
253
+ */
220
254
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : IQPreviousNextView ; // inherited from UIAppearance
221
255
222
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQPreviousNextView ; // inherited from UIAppearance
256
+ /**
257
+ * @since 9.0
258
+ */
259
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQPreviousNextView ; // inherited from UIAppearance
223
260
261
+ /**
262
+ * @since 5.0
263
+ * @deprecated 9.0
264
+ */
224
265
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : IQPreviousNextView ; // inherited from UIAppearance
225
266
226
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQPreviousNextView ; // inherited from UIAppearance
267
+ /**
268
+ * @since 9.0
269
+ */
270
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQPreviousNextView ; // inherited from UIAppearance
227
271
228
272
static new ( ) : IQPreviousNextView ; // inherited from NSObject
229
273
}
@@ -233,18 +277,38 @@ declare class IQTextView extends UITextView {
233
277
234
278
static appearance ( ) : IQTextView ; // inherited from UIAppearance
235
279
280
+ /**
281
+ * @since 8.0
282
+ */
236
283
static appearanceForTraitCollection ( trait : UITraitCollection ) : IQTextView ; // inherited from UIAppearance
237
284
285
+ /**
286
+ * @since 8.0
287
+ * @deprecated 9.0
288
+ */
238
289
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : IQTextView ; // inherited from UIAppearance
239
290
240
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQTextView ; // inherited from UIAppearance
291
+ /**
292
+ * @since 9.0
293
+ */
294
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQTextView ; // inherited from UIAppearance
241
295
296
+ /**
297
+ * @since 5.0
298
+ * @deprecated 9.0
299
+ */
242
300
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : IQTextView ; // inherited from UIAppearance
243
301
244
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQTextView ; // inherited from UIAppearance
302
+ /**
303
+ * @since 9.0
304
+ */
305
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQTextView ; // inherited from UIAppearance
245
306
246
307
static new ( ) : IQTextView ; // inherited from NSObject
247
308
309
+ /**
310
+ * @since 16.0
311
+ */
248
312
static textViewUsingTextLayoutManager ( usingTextLayoutManager : boolean ) : IQTextView ; // inherited from UITextView
249
313
250
314
attributedPlaceholder : NSAttributedString ;
@@ -259,18 +323,41 @@ declare class IQTitleBarButtonItem extends IQBarButtonItem {
259
323
260
324
static appearance ( ) : IQTitleBarButtonItem ; // inherited from UIAppearance
261
325
326
+ /**
327
+ * @since 8.0
328
+ */
262
329
static appearanceForTraitCollection ( trait : UITraitCollection ) : IQTitleBarButtonItem ; // inherited from UIAppearance
263
330
331
+ /**
332
+ * @since 8.0
333
+ * @deprecated 9.0
334
+ */
264
335
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : IQTitleBarButtonItem ; // inherited from UIAppearance
265
336
266
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQTitleBarButtonItem ; // inherited from UIAppearance
337
+ /**
338
+ * @since 9.0
339
+ */
340
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQTitleBarButtonItem ; // inherited from UIAppearance
267
341
342
+ /**
343
+ * @since 5.0
344
+ * @deprecated 9.0
345
+ */
268
346
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : IQTitleBarButtonItem ; // inherited from UIAppearance
269
347
270
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQTitleBarButtonItem ; // inherited from UIAppearance
348
+ /**
349
+ * @since 9.0
350
+ */
351
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQTitleBarButtonItem ; // inherited from UIAppearance
271
352
353
+ /**
354
+ * @since 14.0
355
+ */
272
356
static fixedSpaceItemOfWidth ( width : number ) : IQTitleBarButtonItem ; // inherited from UIBarButtonItem
273
357
358
+ /**
359
+ * @since 14.0
360
+ */
274
361
static flexibleSpaceItem ( ) : IQTitleBarButtonItem ; // inherited from UIBarButtonItem
275
362
276
363
static new ( ) : IQTitleBarButtonItem ; // inherited from NSObject
@@ -291,15 +378,32 @@ declare class IQToolbar extends UIToolbar implements UIInputViewAudioFeedback {
291
378
292
379
static appearance ( ) : IQToolbar ; // inherited from UIAppearance
293
380
381
+ /**
382
+ * @since 8.0
383
+ */
294
384
static appearanceForTraitCollection ( trait : UITraitCollection ) : IQToolbar ; // inherited from UIAppearance
295
385
386
+ /**
387
+ * @since 8.0
388
+ * @deprecated 9.0
389
+ */
296
390
static appearanceForTraitCollectionWhenContainedIn ( trait : UITraitCollection , ContainerClass : typeof NSObject ) : IQToolbar ; // inherited from UIAppearance
297
391
298
- static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQToolbar ; // inherited from UIAppearance
392
+ /**
393
+ * @since 9.0
394
+ */
395
+ static appearanceForTraitCollectionWhenContainedInInstancesOfClasses ( trait : UITraitCollection , containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQToolbar ; // inherited from UIAppearance
299
396
397
+ /**
398
+ * @since 5.0
399
+ * @deprecated 9.0
400
+ */
300
401
static appearanceWhenContainedIn ( ContainerClass : typeof NSObject ) : IQToolbar ; // inherited from UIAppearance
301
402
302
- static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | typeof NSObject [ ] ) : IQToolbar ; // inherited from UIAppearance
403
+ /**
404
+ * @since 9.0
405
+ */
406
+ static appearanceWhenContainedInInstancesOfClasses ( containerTypes : NSArray < typeof NSObject > | ( typeof NSObject ) [ ] ) : IQToolbar ; // inherited from UIAppearance
303
407
304
408
static new ( ) : IQToolbar ; // inherited from NSObject
305
409
0 commit comments