sitepong 0.2.12 → 0.2.13
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/dist/entries/rn.js +6 -0
- package/dist/entries/rn.js.map +1 -1
- package/package.json +1 -1
package/dist/entries/rn.js
CHANGED
|
@@ -3865,6 +3865,12 @@ function extractAttrs(tag, props, componentName2) {
|
|
|
3865
3865
|
if (uri) attrs.src = String(uri);
|
|
3866
3866
|
}
|
|
3867
3867
|
if (componentName2) attrs.rnComponent = componentName2;
|
|
3868
|
+
if (props.activityState !== void 0 && props.activityState !== null) {
|
|
3869
|
+
attrs.activityState = String(props.activityState);
|
|
3870
|
+
}
|
|
3871
|
+
if (props.isFocused !== void 0 && props.isFocused !== null) {
|
|
3872
|
+
attrs.isFocused = String(props.isFocused);
|
|
3873
|
+
}
|
|
3868
3874
|
if (props.wtOverlay || props.accessibilityViewIsModal) attrs.wtOverlay = "true";
|
|
3869
3875
|
if (props.wtSensitive || props.secureTextEntry) attrs.wtSensitive = "true";
|
|
3870
3876
|
return attrs;
|