@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
|
@@ -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) {
|