@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.
- package/CHANGELOG.md +19 -0
- package/dist/definitions/forms/InputPassword/InputPassword.d.ts.map +1 -1
- package/dist/definitions/forms/InputText/InputTextContainer.web.d.ts.map +1 -1
- package/dist/definitions/forms/TextArea/TextArea.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +5 -1
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +5 -1
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.17.cjs.js +4 -0
- package/dist/index-node-22.17.cjs.js.map +1 -1
- package/dist/index-node-22.17.cjs.web.css +5 -1
- package/dist/index-node-22.17.cjs.web.js +7 -2
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.mjs +4 -0
- package/dist/index-node-22.17.es.mjs.map +1 -1
- package/dist/index-node-22.17.es.web.css +5 -1
- package/dist/index-node-22.17.es.web.mjs +7 -2
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.js +5 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +8 -3
- package/dist/index.es.web.js.map +1 -1
- package/dist/styles.css +5 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -7685,6 +7685,9 @@ const InputPassword = /*#__PURE__*/React.forwardRef(({
|
|
|
7685
7685
|
right: right || /*#__PURE__*/jsxRuntime.jsx(InputPressable, {
|
|
7686
7686
|
testID: "kitt.InputPassword.passwordToggle",
|
|
7687
7687
|
hitSlop: 20,
|
|
7688
|
+
style: {
|
|
7689
|
+
top: 15
|
|
7690
|
+
},
|
|
7688
7691
|
accessibilityRole: "button",
|
|
7689
7692
|
onPress: () => setIsVisible(prev => !prev),
|
|
7690
7693
|
children: /*#__PURE__*/jsxRuntime.jsx(InputIcon, {
|
|
@@ -8231,6 +8234,7 @@ const TextArea = /*#__PURE__*/React.forwardRef(({
|
|
|
8231
8234
|
multiline: true,
|
|
8232
8235
|
textAlignVertical: "top",
|
|
8233
8236
|
minHeight: "kitt.forms.textArea.minHeight",
|
|
8237
|
+
height: "100%",
|
|
8234
8238
|
...props,
|
|
8235
8239
|
onChange: e => {
|
|
8236
8240
|
if (!limit || e.nativeEvent.text.length <= limit) {
|