synos-helena 21.8.2-beta.0 → 21.10.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/lib/index.d.ts CHANGED
@@ -92,7 +92,7 @@ export interface HLCardPropTypes {
92
92
  extra?: string | React.ReactNode;
93
93
  loading?: boolean;
94
94
  size?: 'default' | 'small';
95
- type?: 'inner';
95
+ type?: 'inner' | 'button';
96
96
  cover?: React.ReactNode;
97
97
  actions?: React.ReactNode[];
98
98
  tabList?: CardTabListType[];
@@ -100,6 +100,7 @@ export interface HLCardPropTypes {
100
100
  activeTabKey?: string;
101
101
  defaultActiveTabKey?: string;
102
102
  className?: string;
103
+ bordered?: boolean;
103
104
  bodyStyle?: CSSProperties;
104
105
  tabBarExtraContent?: React.ReactNode;
105
106
  }
@@ -403,6 +404,30 @@ export type PasswordPropTypes = HLInputPropTypes & {
403
404
 
404
405
  export const Password: React.FC<PasswordPropTypes>;
405
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
+
406
431
  export interface HLMainPropTypes {
407
432
  className?: string;
408
433
  }