magneto365.ui 2.69.0-beta → 2.69.0-beta.1
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/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +15 -16
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/InputPlus/InputPlus.interface.d.ts +4 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +15 -16
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/InputPlus/InputPlus.interface.d.ts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2651,6 +2651,10 @@ interface IInputPlus {
|
|
|
2651
2651
|
* this fn get the input value
|
|
2652
2652
|
*/
|
|
2653
2653
|
getValue?: (value: string) => void;
|
|
2654
|
+
/**
|
|
2655
|
+
* this property sets the max length
|
|
2656
|
+
*/
|
|
2657
|
+
maxLength?: number;
|
|
2654
2658
|
}
|
|
2655
2659
|
|
|
2656
2660
|
declare const InputPlus: React__default.FC<IInputPlus>;
|
package/package.json
CHANGED