synos-helena 21.10.0-beta.0 → 21.10.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/lib/index.d.ts CHANGED
@@ -52,6 +52,7 @@ import { DescriptionsProps } from 'antd/lib/descriptions';
52
52
  import { DividerProps } from 'antd/lib/divider';
53
53
  import { DrawerProps } from 'antd/lib/drawer';
54
54
  import { DropDownProps } from 'antd/lib/dropdown';
55
+ import { TableProps } from "antd";
55
56
  import { Form } from 'antd';
56
57
  import { ReactNode } from 'react';
57
58
  import { HLHeaderButtonPropTypes } from 'src/HLHeaderButton';
@@ -293,6 +294,12 @@ export interface HLDropdownButtonPropTypes {
293
294
 
294
295
  export const HLDropdownButton: React.FC<HLDropdownButtonPropTypes>;
295
296
 
297
+
298
+ export type HLEditTablePropTypes = TableProps & {
299
+ handleSave: (row: any) => void;
300
+ }
301
+ export const HLEditTable: React.FC<HLEditTablePropTypes>;
302
+
296
303
  export interface Page500PropTypes {
297
304
  supportPhone: string;
298
305
  }
@@ -716,6 +723,7 @@ export {
716
723
  AdvancedPowerSelectStoreInterface,
717
724
  HLFromTo,
718
725
  HLMarkDown,
726
+ HLEditTable,
719
727
  };
720
728
 
721
729
  declare module '*.module.css';