@ornikar/kitt-universal 32.5.2 → 32.5.3-canary.00bf1c2f290a49f97769efc35573c95654f3a672.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.
@@ -7661,6 +7661,9 @@ const InputPassword = /*#__PURE__*/forwardRef(({
7661
7661
  right: right || /*#__PURE__*/jsx(InputPressable, {
7662
7662
  testID: "kitt.InputPassword.passwordToggle",
7663
7663
  hitSlop: 20,
7664
+ style: {
7665
+ top: 15
7666
+ },
7664
7667
  accessibilityRole: "button",
7665
7668
  onPress: () => setIsVisible(prev => !prev),
7666
7669
  children: /*#__PURE__*/jsx(InputIcon, {
@@ -8207,6 +8210,7 @@ const TextArea = /*#__PURE__*/forwardRef(({
8207
8210
  multiline: true,
8208
8211
  textAlignVertical: "top",
8209
8212
  minHeight: "kitt.forms.textArea.minHeight",
8213
+ height: "100%",
8210
8214
  ...props,
8211
8215
  onChange: e => {
8212
8216
  if (!limit || e.nativeEvent.text.length <= limit) {