@ceed/cds 0.0.162 → 0.0.163-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.
|
@@ -20,5 +20,5 @@ interface CurrencyInputProps {
|
|
|
20
20
|
helperText?: React.ReactNode;
|
|
21
21
|
useMinorUnit?: boolean;
|
|
22
22
|
}
|
|
23
|
-
declare const CurrencyInput: React.ForwardRefExoticComponent<Omit<CurrencyInputProps & Omit<InputProps, "defaultValue" | "value"> & MotionProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
23
|
+
declare const CurrencyInput: React.ForwardRefExoticComponent<Omit<CurrencyInputProps & Omit<InputProps, "defaultValue" | "onChange" | "value"> & MotionProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
24
24
|
export { CurrencyInput };
|
|
@@ -21,6 +21,6 @@ interface BasePercentageInputProps {
|
|
|
21
21
|
min?: number;
|
|
22
22
|
max?: number;
|
|
23
23
|
}
|
|
24
|
-
export type PercentageInputProps = BasePercentageInputProps & Omit<InputProps, "value" | "defaultValue"> & MotionProps;
|
|
24
|
+
export type PercentageInputProps = BasePercentageInputProps & Omit<InputProps, "value" | "defaultValue" | "onChange"> & MotionProps;
|
|
25
25
|
declare const PercentageInput: React.ForwardRefExoticComponent<Omit<PercentageInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
26
26
|
export { PercentageInput };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceed/cds",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.163-0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -69,5 +69,6 @@
|
|
|
69
69
|
"type": "git",
|
|
70
70
|
"url": "git+ssh://git@github.com/Ecube-Labs/hds.git"
|
|
71
71
|
},
|
|
72
|
-
"packageManager": "yarn@4.1.0"
|
|
72
|
+
"packageManager": "yarn@4.1.0",
|
|
73
|
+
"stableVersion": "0.0.162"
|
|
73
74
|
}
|