react-table-edit 1.5.47 → 1.5.49
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/dist/component/calendar/index.d.ts +8 -0
- package/dist/component/sidebar-setting-column/index.d.ts +2 -0
- package/dist/component/table-view/header.d.ts +3 -3
- package/dist/index.js +306 -828
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +306 -828
- package/dist/index.mjs.map +1 -1
- package/dist/styles/index.css +1 -46
- package/dist/styles/index.css.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { DayButton, DayPicker } from "react-day-picker";
|
|
3
|
+
import { Button } from "reactstrap";
|
|
4
|
+
declare function CalendarComponent({ className, classNames, showOutsideDays, captionLayout, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
|
|
5
|
+
buttonVariant?: React.ComponentProps<typeof Button>["variant"];
|
|
6
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
declare function CalendarDayButton({ className, day, modifiers, ...props }: React.ComponentProps<typeof DayButton>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { CalendarComponent, CalendarDayButton };
|
|
@@ -4,6 +4,8 @@ export interface IFPropsDetail {
|
|
|
4
4
|
setColumn: any;
|
|
5
5
|
openSidebar: boolean;
|
|
6
6
|
handleSidebar: any;
|
|
7
|
+
resetDefaultColumns?: () => void;
|
|
8
|
+
formatSetting?: any;
|
|
7
9
|
}
|
|
8
10
|
declare const SidebarSetColumn: (props: IFPropsDetail) => import("react/jsx-runtime").JSX.Element;
|
|
9
11
|
export default SidebarSetColumn;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dispatch, SetStateAction } from 'react';
|
|
2
|
-
import { IColumnTable, IFFilterTable, IFOrderTable, IFTableEditFormat } from "../type";
|
|
3
2
|
import 'react-resizable/css/styles.css';
|
|
3
|
+
import { IColumnTable, IFFilterTable, IFOrderTable, IFTableEditFormat } from "../type";
|
|
4
4
|
type IFDataProps = {
|
|
5
5
|
idTable: string;
|
|
6
6
|
selectEnable: boolean;
|
|
@@ -20,8 +20,8 @@ type IFDataProps = {
|
|
|
20
20
|
fisrtObjWidthFixRight: number;
|
|
21
21
|
selectedRows: any[];
|
|
22
22
|
isMulti: boolean;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
allowFiltering?: boolean;
|
|
24
|
+
allowSorting?: boolean;
|
|
25
25
|
filterBy: IFFilterTable[];
|
|
26
26
|
orderBy: IFOrderTable[];
|
|
27
27
|
container: any;
|