@kingsimba/nc-ui 0.1.29 → 0.1.30
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/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +795 -766
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -631,8 +631,8 @@ export declare interface InputProps {
|
|
|
631
631
|
defaultValue?: string;
|
|
632
632
|
/** Callback when value changes */
|
|
633
633
|
onChange?: (value: string) => void;
|
|
634
|
-
/** Callback when Enter key
|
|
635
|
-
onEnter?: () => void;
|
|
634
|
+
/** Callback when Enter key confirms the current value */
|
|
635
|
+
onEnter?: (value: string) => void;
|
|
636
636
|
/** Callback when input is cleared */
|
|
637
637
|
onClear?: () => void;
|
|
638
638
|
/** Placeholder text */
|