@mparticle/aquarium 1.20.0 → 1.21.1-chore-queryitem.valueselector-adding-extra-functionality.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/aquarium.js +1358 -1342
- package/dist/aquarium.umd.cjs +1 -1
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -609,6 +609,19 @@ export declare const InputNumber: (props: IInputNumberProps) => JSX_2.Element;
|
|
|
609
609
|
|
|
610
610
|
export { InputRef }
|
|
611
611
|
|
|
612
|
+
export declare interface INumberInputProps {
|
|
613
|
+
value?: number | undefined;
|
|
614
|
+
disabled?: boolean;
|
|
615
|
+
errorMessage?: string;
|
|
616
|
+
autoFocus: boolean;
|
|
617
|
+
placeholder?: string;
|
|
618
|
+
min?: number;
|
|
619
|
+
max?: number;
|
|
620
|
+
step?: number;
|
|
621
|
+
onChange?: (value: number | undefined) => void;
|
|
622
|
+
onPressEnter?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
|
|
623
|
+
}
|
|
624
|
+
|
|
612
625
|
export declare interface IPaginationProps extends PaginationProps {
|
|
613
626
|
}
|
|
614
627
|
|