@symply.io/basic-components 1.4.0-alpha.1 → 1.4.0-alpha.2
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/CheckBox/index.d.ts +1 -0
- package/CheckBox/index.js +1 -0
- package/DataTable/index.d.ts +2 -1
- package/DataTable/index.js +2 -1
- package/DateInput/index.d.ts +4 -3
- package/DateInput/index.js +4 -3
- package/package.json +1 -1
package/CheckBox/index.d.ts
CHANGED
package/CheckBox/index.js
CHANGED
package/DataTable/index.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
|
+
import useTable from "./useTable";
|
1
2
|
import { DataTableProps, KvProps } from "./types";
|
2
3
|
declare function DataTable<RowProps extends KvProps, ExtendedProps extends KvProps>(props: DataTableProps<RowProps, ExtendedProps>): JSX.Element;
|
3
4
|
export default DataTable;
|
4
5
|
export * from "./types";
|
5
|
-
export {
|
6
|
+
export { useTable };
|
package/DataTable/index.js
CHANGED
@@ -15,6 +15,7 @@ import Table from "@mui/material/Table";
|
|
15
15
|
import TableContainer from "@mui/material/TableContainer";
|
16
16
|
import ThemeProvider from "@mui/material/styles/ThemeProvider";
|
17
17
|
import useCustomTheme from "../useCustomTheme";
|
18
|
+
import useTable from "./useTable";
|
18
19
|
import TableBody from "./TableBody";
|
19
20
|
import TableHeader from "./TableHeader";
|
20
21
|
import TableFooter from "./TableFooter";
|
@@ -58,4 +59,4 @@ function DataTable(props) {
|
|
58
59
|
}
|
59
60
|
export default DataTable;
|
60
61
|
export * from "./types";
|
61
|
-
export {
|
62
|
+
export { useTable };
|
package/DateInput/index.d.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
+
import MonthDayInput from "./MonthDayInput";
|
2
|
+
import MonthYearInput from "./MonthYearInput";
|
3
|
+
import FullDateInput from "./FullDateInput";
|
1
4
|
export * from "./MonthDayInput";
|
2
5
|
export * from "./MonthYearInput";
|
3
6
|
export * from "./FullDateInput";
|
4
|
-
export {
|
5
|
-
export { default as MonthYearInput } from "./MonthYearInput";
|
6
|
-
export { default as FullDateInput } from "./FullDateInput";
|
7
|
+
export { MonthDayInput, MonthYearInput, FullDateInput };
|
package/DateInput/index.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
+
import MonthDayInput from "./MonthDayInput";
|
2
|
+
import MonthYearInput from "./MonthYearInput";
|
3
|
+
import FullDateInput from "./FullDateInput";
|
1
4
|
export * from "./MonthDayInput";
|
2
5
|
export * from "./MonthYearInput";
|
3
6
|
export * from "./FullDateInput";
|
4
|
-
export {
|
5
|
-
export { default as MonthYearInput } from "./MonthYearInput";
|
6
|
-
export { default as FullDateInput } from "./FullDateInput";
|
7
|
+
export { MonthDayInput, MonthYearInput, FullDateInput };
|