Skip to content

Commit e89f874

Browse files
committed
release(input-accessory): 1.0.2
1 parent 7a6d6ea commit e89f874

3 files changed

Lines changed: 14 additions & 4 deletions

File tree

packages/input-accessory/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.0.2 (2026-05-20)
2+
3+
### 🩹 Fixes
4+
5+
- **input-accessory:** improved positioning and state handling ([#664](https://github.com/NativeScript/plugins/pull/664))
6+
7+
### ❤️ Thank You
8+
9+
- Nathan Walker
10+
111
# 1.0.0 (2026-02-26)
212

313
### 🚀 Features

packages/input-accessory/index.ios.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ export class InputAccessoryManager extends InputAccessoryManagerBase {
5151
bottom: 10,
5252
right: 10,
5353
});
54-
nativeTextView.autocorrectionType = UITextAutocorrectionType.No;
54+
nativeTextView.autocorrectionType = UITextAutocorrectionType.Yes;
5555
nativeTextView.spellCheckingType = UITextSpellCheckingType.No;
5656
nativeTextView.smartQuotesType = UITextSmartQuotesType.No;
5757
nativeTextView.smartDashesType = UITextSmartDashesType.No;
5858
nativeTextView.smartInsertDeleteType = UITextSmartInsertDeleteType.No;
59-
nativeTextView.inputAssistantItem.leadingBarButtonGroups = [];
60-
nativeTextView.inputAssistantItem.trailingBarButtonGroups = [];
59+
nativeTextView.inputAssistantItem.leadingBarButtonGroups = Utils.ios.collections.jsArrayToNSArray([]);
60+
nativeTextView.inputAssistantItem.trailingBarButtonGroups = Utils.ios.collections.jsArrayToNSArray([]);
6161
this.keyboardTrackingView.setTextInputView(nativeTextView);
6262
}
6363

packages/input-accessory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/input-accessory",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "iOS/Android keyboard input accessory for NativeScript chat UIs — docked input bar, interactive dismiss, auto-scroll",
55
"main": "index",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)