synos-helena 21.9.1 → 21.10.0-beta.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.
- package/CHANGELOG.md +4 -0
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +24 -0
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -404,6 +404,30 @@ export type PasswordPropTypes = HLInputPropTypes & {
|
|
|
404
404
|
|
|
405
405
|
export const Password: React.FC<PasswordPropTypes>;
|
|
406
406
|
|
|
407
|
+
|
|
408
|
+
export interface HLInputMonetaryPropTypes {
|
|
409
|
+
key?: any;
|
|
410
|
+
label?: string;
|
|
411
|
+
disabled?: boolean;
|
|
412
|
+
domainAttribute: string;
|
|
413
|
+
form?: Record<string, any>;
|
|
414
|
+
initialValue?: string | number;
|
|
415
|
+
placeholder?: string;
|
|
416
|
+
size?: 'large' | 'middle' | 'small';
|
|
417
|
+
rules?: any[];
|
|
418
|
+
min?: number;
|
|
419
|
+
max?: number;
|
|
420
|
+
ref?: ((instance: Input | null) => void) | React.RefObject<Input> | null;
|
|
421
|
+
style?: React.CSSProperties;
|
|
422
|
+
precision?: number;
|
|
423
|
+
stringMode?: boolean;
|
|
424
|
+
onChange?: (event: any) => void;
|
|
425
|
+
onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
426
|
+
onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
export const HLInputMonetary: React.FC<HLInputMonetaryPropTypes>;
|
|
430
|
+
|
|
407
431
|
export interface HLMainPropTypes {
|
|
408
432
|
className?: string;
|
|
409
433
|
}
|