@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
package/dist/index.es.web.js
CHANGED
|
@@ -5463,10 +5463,11 @@ function InputPressable(_ref) {
|
|
|
5463
5463
|
return /*#__PURE__*/jsx(Pressable$2, _objectSpread({}, props));
|
|
5464
5464
|
}
|
|
5465
5465
|
|
|
5466
|
-
var
|
|
5466
|
+
var styles$3 = {"inputTextContainer":"InputTextContainer-module_inputTextContainer__gzH8Q"};
|
|
5467
|
+
|
|
5467
5468
|
function InputTextContainer(props) {
|
|
5468
5469
|
return /*#__PURE__*/jsx("div", _objectSpread({
|
|
5469
|
-
className: inputTextContainer
|
|
5470
|
+
className: styles$3.inputTextContainer
|
|
5470
5471
|
}, props));
|
|
5471
5472
|
}
|
|
5472
5473
|
|
|
@@ -7181,6 +7182,9 @@ var InputPassword = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
7181
7182
|
right: right || /*#__PURE__*/jsx(InputPressable, {
|
|
7182
7183
|
testID: "kitt.InputPassword.passwordToggle",
|
|
7183
7184
|
hitSlop: 20,
|
|
7185
|
+
style: {
|
|
7186
|
+
top: 15
|
|
7187
|
+
},
|
|
7184
7188
|
accessibilityRole: "button",
|
|
7185
7189
|
onPress: function () {
|
|
7186
7190
|
return setIsVisible(function (prev) {
|
|
@@ -7718,7 +7722,8 @@ var TextArea = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
7718
7722
|
ref: ref,
|
|
7719
7723
|
multiline: true,
|
|
7720
7724
|
textAlignVertical: "top",
|
|
7721
|
-
minHeight: "kitt.forms.textArea.minHeight"
|
|
7725
|
+
minHeight: "kitt.forms.textArea.minHeight",
|
|
7726
|
+
height: "100%"
|
|
7722
7727
|
}, props), {}, {
|
|
7723
7728
|
onChange: function (e) {
|
|
7724
7729
|
if (!limit || e.nativeEvent.text.length <= limit) {
|