@momo-kits/native-kits 0.156.6-beta.21-debug → 0.156.6-beta.22-debug
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/compose/build.gradle.kts
CHANGED
package/ios/Input/Input.swift
CHANGED
|
@@ -174,7 +174,7 @@ public struct Input: View {
|
|
|
174
174
|
onChangeText?("")
|
|
175
175
|
}) {
|
|
176
176
|
Icon(source: "24_navigation_close_circle_full", size: 16, color: Colors.black12)
|
|
177
|
-
.padding(.leading, Spacing.S).accessibility("ic_clear")
|
|
177
|
+
.padding(.leading, Spacing.S).accessibility(identifier: "ic_clear")
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
|
|
@@ -194,7 +194,7 @@ public struct Input: View {
|
|
|
194
194
|
size: 24,
|
|
195
195
|
color: rightIconColor
|
|
196
196
|
)
|
|
197
|
-
.padding(.leading, Spacing.S).accessibility("ic_show_hide")
|
|
197
|
+
.padding(.leading, Spacing.S).accessibility(identifier: "ic_show_hide")
|
|
198
198
|
}
|
|
199
199
|
}
|
|
200
200
|
} else if !rightIcon.isEmpty {
|
|
@@ -107,7 +107,7 @@ public struct InputPhoneNumber: View {
|
|
|
107
107
|
onChangeText?("")
|
|
108
108
|
}) {
|
|
109
109
|
Icon(source: "24_navigation_close_circle_full", size: 16, color: Colors.black12)
|
|
110
|
-
.padding(.leading, Spacing.S).accessibility("ic_clear")
|
|
110
|
+
.padding(.leading, Spacing.S).accessibility(identifier: "ic_clear")
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|