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.
@@ -107,7 +107,7 @@ class EmojiSearchBar(
107
107
  onSearchChanged(s?.toString()?.trim() ?: "")
108
108
  }
109
109
  pendingRunnable = runnable
110
- handler.postDelayed(runnable, 300)
110
+ handler.postDelayed(runnable, 500)
111
111
  }
112
112
  })
113
113
  }
@@ -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.3, repeats: false) { [weak self] _ in
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.2'
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.2",
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",