expo-native-sheet-emojis 1.0.2 → 1.0.3
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/ios/EmojiSearchBar.swift
CHANGED
|
@@ -98,7 +98,7 @@ class EmojiSearchBar: UIView, UITextFieldDelegate {
|
|
|
98
98
|
@objc private func textFieldDidChange() {
|
|
99
99
|
updateClearButtonVisibility()
|
|
100
100
|
debounceTimer?.invalidate()
|
|
101
|
-
debounceTimer = Timer.scheduledTimer(withTimeInterval: 0.
|
|
101
|
+
debounceTimer = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: false) { [weak self] _ in
|
|
102
102
|
guard let self = self else { return }
|
|
103
103
|
self.delegate?.searchBar(self, didChangeText: self.textField.text ?? "")
|
|
104
104
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = 'EmojiSheetModule'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.3'
|
|
4
4
|
s.summary = 'Native emoji picker bottom sheet for React Native'
|
|
5
5
|
s.description = 'A fully native iOS/Android emoji picker presented in a bottom sheet with search, skin tones, and theming support.'
|
|
6
6
|
s.author = ''
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-native-sheet-emojis",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "A fully native emoji picker bottom sheet for React Native. Built with Swift and Kotlin for maximum performance. Features search with multilingual keywords, skin tones, frequently used tracking, theming, and configurable layout.",
|
|
5
5
|
"main": "lib/commonjs/index.js",
|
|
6
6
|
"module": "lib/module/index.js",
|