amotify 0.0.57 → 0.0.58
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/dist/amotify.js +2 -2
- package/dist/amotify.min.css +1 -1
- package/dist/coreVender.js +1 -1
- package/package.json +1 -1
- package/src/functions/Button/_.tsx +1 -1
- package/src/functions/Input/_.tsx +7 -0
package/package.json
CHANGED
|
@@ -413,6 +413,13 @@ export const Input: amotify.fn.Input.Methods = {
|
|
|
413
413
|
rawParams = { ...rawParams }
|
|
414
414
|
if ( rawParams.rightIcon ) rawParams.paddingRight = rawParams.paddingRight ?? 3;
|
|
415
415
|
if ( rawParams.leftIcon ) rawParams.paddingLeft = rawParams.paddingLeft ?? 3;
|
|
416
|
+
rawParams = {
|
|
417
|
+
...rawParams,
|
|
418
|
+
freeCSS: {
|
|
419
|
+
whiteSpace: 'pre-wrap',
|
|
420
|
+
...rawParams.freeCSS
|
|
421
|
+
},
|
|
422
|
+
}
|
|
416
423
|
|
|
417
424
|
let params = DefaultStyles.Boxish( rawParams );
|
|
418
425
|
params.rows = params.rows || 5;
|