@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.
@@ -2,3 +2,4 @@ import CheckBox from "./CheckBox";
2
2
  import CheckBoxGroup from "./CheckBoxGroup";
3
3
  export * from "./types";
4
4
  export { CheckBox, CheckBoxGroup };
5
+ export default CheckBox;
package/CheckBox/index.js CHANGED
@@ -2,3 +2,4 @@ import CheckBox from "./CheckBox";
2
2
  import CheckBoxGroup from "./CheckBoxGroup";
3
3
  export * from "./types";
4
4
  export { CheckBox, CheckBoxGroup };
5
+ export default CheckBox;
@@ -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 { default as useDataTable } from "./useTable";
6
+ export { useTable };
@@ -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 { default as useDataTable } from "./useTable";
62
+ export { useTable };
@@ -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 { default as MonthDayInput } from "./MonthDayInput";
5
- export { default as MonthYearInput } from "./MonthYearInput";
6
- export { default as FullDateInput } from "./FullDateInput";
7
+ export { MonthDayInput, MonthYearInput, FullDateInput };
@@ -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 { default as MonthDayInput } from "./MonthDayInput";
5
- export { default as MonthYearInput } from "./MonthYearInput";
6
- export { default as FullDateInput } from "./FullDateInput";
7
+ export { MonthDayInput, MonthYearInput, FullDateInput };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symply.io/basic-components",
3
- "version": "1.4.0-alpha.1",
3
+ "version": "1.4.0-alpha.2",
4
4
  "description": "Basic and reusable components for all frontend of Symply apps",
5
5
  "keywords": [
6
6
  "react",