Content-Length: 827432 | pFad | http://github.com/NativeScript/plugins/commit/a860dbea9053545d05b5fb0324f762ef1dd70b13

E4 feat(iqkeyboardmanager): latest 6.5.19 pod · NativeScript/plugins@a860dbe · GitHub
Skip to content

Commit a860dbe

Browse files
committed
feat(iqkeyboardmanager): latest 6.5.19 pod
Fixes privacy manifests
1 parent 1d1deec commit a860dbe

File tree

4 files changed

+124
-22
lines changed

4 files changed

+124
-22
lines changed

apps/demo/src/plugin-demos/iqkeyboardmanager.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@
1111
<Label row="0" colSpan="2" text="Flip these default settings and try the effect with the textfields below" textWrap="true" class="title"/>
1212

1313
<Label row="1" text="Enable IQKeyboard" class="{{ iqKeyboardEnabled ? '' : 'disabled' }}"/>
14-
<Switch row="1" checked="{{ iqKeyboardEnabled }}" tap="{{ toggleIQKeyboard }}"/>
14+
<Switch row="1" col="1" checked="{{ iqKeyboardEnabled }}" tap="{{ toggleIQKeyboard }}"/>
1515

1616
<Label row="2" text="Enable IQKeyboard toolbar" class="{{ iqKeyboardToolbarEnabled ? '' : 'disabled' }}"/>
17-
<Switch row="2" checked="{{ iqKeyboardToolbarEnabled }}" tap="{{ toggleIQKeyboardToolbar }}"/>
17+
<Switch row="2" col="1" checked="{{ iqKeyboardToolbarEnabled }}" tap="{{ toggleIQKeyboardToolbar }}"/>
1818

1919
<Label row="3" text="Tap outside keeps keyboard open" class="{{ keepKeyboardOpenOnTouchOutside ? '' : 'disabled' }}"/>
20-
<Switch row="3" checked="{{ keepKeyboardOpenOnTouchOutside }}" tap="{{ toggleKeepKeyboardOpen }}"/>
20+
<Switch row="3" col="1" checked="{{ keepKeyboardOpenOnTouchOutside }}" tap="{{ toggleKeepKeyboardOpen }}"/>
2121

2222
<Label row="4" text="Show 'hint' in toolbar" class="{{ showHintInToolbar ? '' : 'disabled' }}"/>
23-
<Switch row="4" checked="{{ showHintInToolbar }}" tap="{{ toggleShowHintInToolbar }}"/>
23+
<Switch row="4" col="1" checked="{{ showHintInToolbar }}" tap="{{ toggleShowHintInToolbar }}"/>
2424

2525
<Label row="5" text="Change toolbar 'Done' button" class="{{ toggleDoneButtonTextChanged ? '' : 'disabled' }}"/>
26-
<Switch row="5" checked="{{ toggleDoneButtonTextChanged }}" tap="{{ toggleDoneButtonText }}"/>
26+
<Switch row="5" col="1" checked="{{ toggleDoneButtonTextChanged }}" tap="{{ toggleDoneButtonText }}"/>
2727

2828
<Label row="6" text="Dark keyboard appearance" class="{{ keyboardAppearanceDark ? '' : 'disabled' }}"/>
29-
<Switch row="6" checked="{{ keyboardAppearanceDark }}" tap="{{ toggleKeyboardAppearance }}"/>
29+
<Switch row="6" col="1" checked="{{ keyboardAppearanceDark }}" tap="{{ toggleKeyboardAppearance }}"/>
3030

3131
<Label row="7" text="Increased keyboard distance" class="{{ increaseKeyboardDistanceFromTextField ? '' : 'disabled' }}"/>
32-
<Switch row="7" checked="{{ increaseKeyboardDistanceFromTextField }}" tap="{{ toggleIncreaseKeyboardDistanceFromTextField }}"/>
32+
<Switch row="7" col="1" checked="{{ increaseKeyboardDistanceFromTextField }}" tap="{{ toggleIncreaseKeyboardDistanceFromTextField }}"/>
3333
</GridLayout>
3434
</iOS>
3535

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pod 'IQKeyboardManager', '~> 6.5.10'
1+
pod 'IQKeyboardManager', '~> 6.5.19'

packages/iqkeyboardmanager/typings/objc!IQKeyboardManager.d.ts

Lines changed: 116 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
declare const enum IQAutoToolbarManageBehaviour {
1+
declare const enum IQAutoToolbarManageBehavior {
22
BySubviews = 0,
33

44
ByTag = 1,
@@ -11,18 +11,41 @@ declare class IQBarButtonItem extends UIBarButtonItem {
1111

1212
static appearance(): IQBarButtonItem; // inherited from UIAppearance
1313

14+
/**
15+
* @since 8.0
16+
*/
1417
static appearanceForTraitCollection(trait: UITraitCollection): IQBarButtonItem; // inherited from UIAppearance
1518

19+
/**
20+
* @since 8.0
21+
* @deprecated 9.0
22+
*/
1623
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): IQBarButtonItem; // inherited from UIAppearance
1724

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
1929

30+
/**
31+
* @since 5.0
32+
* @deprecated 9.0
33+
*/
2034
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): IQBarButtonItem; // inherited from UIAppearance
2135

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
2340

41+
/**
42+
* @since 14.0
43+
*/
2444
static fixedSpaceItemOfWidth(width: number): IQBarButtonItem; // inherited from UIBarButtonItem
2545

46+
/**
47+
* @since 14.0
48+
*/
2649
static flexibleSpaceItem(): IQBarButtonItem; // inherited from UIBarButtonItem
2750

2851
static new(): IQBarButtonItem; // inherited from NSObject
@@ -137,7 +160,7 @@ declare class IQKeyboardManager extends NSObject {
137160

138161
toolbarDoneBarButtonItemText: string;
139162

140-
toolbarManageBehaviour: IQAutoToolbarManageBehaviour;
163+
toolbarManageBehavior: IQAutoToolbarManageBehavior;
141164

142165
toolbarNextBarButtonItemAccessibilityLabel: string;
143166

@@ -163,6 +186,8 @@ declare class IQKeyboardManager extends NSObject {
163186

164187
registerAllNotifications(): void;
165188

189+
registerKeyboardSizeChangeWithIdentifierSizeHandler(identifier: any, sizeHandler: (p1: CGSize) => void): void;
190+
166191
registerTextFieldViewClassDidBeginEditingNotificationNameDidEndEditingNotificationName(aClass: typeof NSObject, didBeginEditingNotificationName: string, didEndEditingNotificationName: string): void;
167192

168193
reloadInputViews(): void;
@@ -173,6 +198,8 @@ declare class IQKeyboardManager extends NSObject {
173198

174199
unregisterAllNotifications(): void;
175200

201+
unregisterKeyboardSizeChangeWithIdentifier(identifier: any): void;
202+
176203
unregisterTextFieldViewClassDidBeginEditingNotificationNameDidEndEditingNotificationName(aClass: typeof NSObject, didBeginEditingNotificationName: string, didEndEditingNotificationName: string): void;
177204
}
178205

@@ -215,15 +242,32 @@ declare class IQPreviousNextView extends UIView {
215242

216243
static appearance(): IQPreviousNextView; // inherited from UIAppearance
217244

245+
/**
246+
* @since 8.0
247+
*/
218248
static appearanceForTraitCollection(trait: UITraitCollection): IQPreviousNextView; // inherited from UIAppearance
219249

250+
/**
251+
* @since 8.0
252+
* @deprecated 9.0
253+
*/
220254
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): IQPreviousNextView; // inherited from UIAppearance
221255

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
223260

261+
/**
262+
* @since 5.0
263+
* @deprecated 9.0
264+
*/
224265
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): IQPreviousNextView; // inherited from UIAppearance
225266

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
227271

228272
static new(): IQPreviousNextView; // inherited from NSObject
229273
}
@@ -233,18 +277,38 @@ declare class IQTextView extends UITextView {
233277

234278
static appearance(): IQTextView; // inherited from UIAppearance
235279

280+
/**
281+
* @since 8.0
282+
*/
236283
static appearanceForTraitCollection(trait: UITraitCollection): IQTextView; // inherited from UIAppearance
237284

285+
/**
286+
* @since 8.0
287+
* @deprecated 9.0
288+
*/
238289
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): IQTextView; // inherited from UIAppearance
239290

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
241295

296+
/**
297+
* @since 5.0
298+
* @deprecated 9.0
299+
*/
242300
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): IQTextView; // inherited from UIAppearance
243301

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
245306

246307
static new(): IQTextView; // inherited from NSObject
247308

309+
/**
310+
* @since 16.0
311+
*/
248312
static textViewUsingTextLayoutManager(usingTextLayoutManager: boolean): IQTextView; // inherited from UITextView
249313

250314
attributedPlaceholder: NSAttributedString;
@@ -259,18 +323,41 @@ declare class IQTitleBarButtonItem extends IQBarButtonItem {
259323

260324
static appearance(): IQTitleBarButtonItem; // inherited from UIAppearance
261325

326+
/**
327+
* @since 8.0
328+
*/
262329
static appearanceForTraitCollection(trait: UITraitCollection): IQTitleBarButtonItem; // inherited from UIAppearance
263330

331+
/**
332+
* @since 8.0
333+
* @deprecated 9.0
334+
*/
264335
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): IQTitleBarButtonItem; // inherited from UIAppearance
265336

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
267341

342+
/**
343+
* @since 5.0
344+
* @deprecated 9.0
345+
*/
268346
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): IQTitleBarButtonItem; // inherited from UIAppearance
269347

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
271352

353+
/**
354+
* @since 14.0
355+
*/
272356
static fixedSpaceItemOfWidth(width: number): IQTitleBarButtonItem; // inherited from UIBarButtonItem
273357

358+
/**
359+
* @since 14.0
360+
*/
274361
static flexibleSpaceItem(): IQTitleBarButtonItem; // inherited from UIBarButtonItem
275362

276363
static new(): IQTitleBarButtonItem; // inherited from NSObject
@@ -291,15 +378,32 @@ declare class IQToolbar extends UIToolbar implements UIInputViewAudioFeedback {
291378

292379
static appearance(): IQToolbar; // inherited from UIAppearance
293380

381+
/**
382+
* @since 8.0
383+
*/
294384
static appearanceForTraitCollection(trait: UITraitCollection): IQToolbar; // inherited from UIAppearance
295385

386+
/**
387+
* @since 8.0
388+
* @deprecated 9.0
389+
*/
296390
static appearanceForTraitCollectionWhenContainedIn(trait: UITraitCollection, ContainerClass: typeof NSObject): IQToolbar; // inherited from UIAppearance
297391

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
299396

397+
/**
398+
* @since 5.0
399+
* @deprecated 9.0
400+
*/
300401
static appearanceWhenContainedIn(ContainerClass: typeof NSObject): IQToolbar; // inherited from UIAppearance
301402

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
303407

304408
static new(): IQToolbar; // inherited from NSObject
305409

tools/assets/App_Resources/iOS/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
platform :ios, '14.0'
22

3-
pod 'IQKeyboardManager', '~> 6.5.10'
4-
53
post_install do |installer|
64
installer.pods_project.targets.each do |target|
75
target.build_configurations.each do |config|

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/NativeScript/plugins/commit/a860dbea9053545d05b5fb0324f762ef1dd70b13

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy