@bit-sun/business-component 2.2.0-alpha.33 → 2.2.0-alpha.46

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.
@@ -52,6 +52,7 @@ declare class SearchItemTable extends React.Component {
52
52
  }) => JSX.Element;
53
53
  onChange: (e: CheckboxChangeEvent, label: any) => void;
54
54
  handleReset: () => void;
55
+ handleResetSetting: () => void;
55
56
  onSearch: (e: any) => void;
56
57
  onSearchSort: (e: any) => void;
57
58
  render(): JSX.Element;
@@ -52,6 +52,7 @@ declare class SortableTable extends React.Component {
52
52
  }) => JSX.Element;
53
53
  onChange: (e: CheckboxChangeEvent, title: any) => void;
54
54
  handleReset: () => void;
55
+ handleResetSetting: () => void;
55
56
  onSearch: (e: any) => void;
56
57
  onSearchSort: (e: any) => void;
57
58
  render(): JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<unknown>>;
3
+ export default _default;
@@ -0,0 +1,8 @@
1
+ interface TableSticky {
2
+ getContainer?: () => Window | HTMLElement;
3
+ }
4
+ declare const useSticky: (sticky: boolean | TableSticky) => {
5
+ isSticky: boolean;
6
+ container: Window | HTMLElement | Document;
7
+ };
8
+ export default useSticky;