react-native-controlled-input 0.22.0 → 0.23.0

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.
@@ -43,6 +43,12 @@ using namespace facebook::react;
43
43
  return self;
44
44
  }
45
45
 
46
+ - (void)setTag:(NSInteger)tag
47
+ {
48
+ [super setTag:tag];
49
+ _inputView.tag = tag;
50
+ }
51
+
46
52
  - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps
47
53
  {
48
54
  const auto &oldViewProps = *std::static_pointer_cast<ControlledInputViewProps const>(_props);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-controlled-input",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "React Native controlled TextInput with strict value sync (Fabric)",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",