@okta/odyssey-react-mui 1.14.2 → 1.14.4

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.
Files changed (74) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/DataTable/DataTable.js +330 -0
  3. package/dist/DataTable/DataTable.js.map +1 -0
  4. package/dist/DataTable/DataTableRowActions.js +89 -0
  5. package/dist/DataTable/DataTableRowActions.js.map +1 -0
  6. package/dist/DataTable/DataTableSettings.js +72 -0
  7. package/dist/DataTable/DataTableSettings.js.map +1 -0
  8. package/dist/DataTable/constants.js +14 -0
  9. package/dist/DataTable/constants.js.map +1 -0
  10. package/dist/DataTable/index.js +14 -0
  11. package/dist/DataTable/index.js.map +1 -0
  12. package/dist/DataTable/reorderDataRowsLocally.js +26 -0
  13. package/dist/DataTable/reorderDataRowsLocally.js.map +1 -0
  14. package/dist/DataTable/useRowReordering.js +179 -0
  15. package/dist/DataTable/useRowReordering.js.map +1 -0
  16. package/dist/IconWithTooltip.js +63 -0
  17. package/dist/IconWithTooltip.js.map +1 -0
  18. package/dist/index.js +2 -0
  19. package/dist/index.js.map +1 -1
  20. package/dist/labs/DataFilters.js +42 -14
  21. package/dist/labs/DataFilters.js.map +1 -1
  22. package/dist/labs/DataTable.js +16 -11
  23. package/dist/labs/DataTable.js.map +1 -1
  24. package/dist/labs/index.js +0 -1
  25. package/dist/labs/index.js.map +1 -1
  26. package/dist/properties/ts/odyssey-react-mui.js +18 -1
  27. package/dist/properties/ts/odyssey-react-mui.js.map +1 -1
  28. package/dist/src/DataTable/DataTable.d.ts +133 -0
  29. package/dist/src/DataTable/DataTable.d.ts.map +1 -0
  30. package/dist/src/DataTable/DataTableRowActions.d.ts +30 -0
  31. package/dist/src/DataTable/DataTableRowActions.d.ts.map +1 -0
  32. package/dist/src/DataTable/DataTableSettings.d.ts +27 -0
  33. package/dist/src/DataTable/DataTableSettings.d.ts.map +1 -0
  34. package/dist/src/DataTable/constants.d.ts +13 -0
  35. package/dist/src/DataTable/constants.d.ts.map +1 -0
  36. package/dist/src/DataTable/index.d.ts +15 -0
  37. package/dist/src/DataTable/index.d.ts.map +1 -0
  38. package/dist/src/DataTable/reorderDataRowsLocally.d.ts +26 -0
  39. package/dist/src/DataTable/reorderDataRowsLocally.d.ts.map +1 -0
  40. package/dist/src/DataTable/useRowReordering.d.ts +56 -0
  41. package/dist/src/DataTable/useRowReordering.d.ts.map +1 -0
  42. package/dist/src/IconWithTooltip.d.ts +31 -0
  43. package/dist/src/IconWithTooltip.d.ts.map +1 -0
  44. package/dist/src/OdysseyTranslationProvider.d.ts +1 -1
  45. package/dist/src/OdysseyTranslationProvider.d.ts.map +1 -1
  46. package/dist/src/index.d.ts +2 -0
  47. package/dist/src/index.d.ts.map +1 -1
  48. package/dist/src/labs/DataFilters.d.ts.map +1 -1
  49. package/dist/src/labs/DataTable.d.ts +2 -2
  50. package/dist/src/labs/DataTable.d.ts.map +1 -1
  51. package/dist/src/labs/index.d.ts +0 -1
  52. package/dist/src/labs/index.d.ts.map +1 -1
  53. package/dist/src/properties/ts/odyssey-react-mui.d.ts +18 -1
  54. package/dist/src/properties/ts/odyssey-react-mui.d.ts.map +1 -1
  55. package/dist/src/theme/components.d.ts.map +1 -1
  56. package/dist/theme/components.js +37 -18
  57. package/dist/theme/components.js.map +1 -1
  58. package/dist/tsconfig.production.tsbuildinfo +1 -1
  59. package/package.json +3 -3
  60. package/src/DataTable/DataTable.tsx +538 -0
  61. package/src/DataTable/DataTableRowActions.tsx +124 -0
  62. package/src/DataTable/DataTableSettings.tsx +109 -0
  63. package/src/DataTable/constants.ts +13 -0
  64. package/src/DataTable/index.tsx +22 -0
  65. package/src/DataTable/reorderDataRowsLocally.tsx +48 -0
  66. package/src/DataTable/useRowReordering.tsx +233 -0
  67. package/src/IconWithTooltip.tsx +90 -0
  68. package/src/index.ts +2 -0
  69. package/src/labs/DataFilters.tsx +60 -17
  70. package/src/labs/DataTable.tsx +24 -11
  71. package/src/labs/index.ts +0 -1
  72. package/src/properties/odyssey-react-mui.properties +19 -2
  73. package/src/properties/ts/odyssey-react-mui.ts +1 -1
  74. package/src/theme/components.tsx +43 -16
@@ -0,0 +1,133 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ /// <reference types="react" />
13
+ import { MRT_RowData, MRT_SortingState, MRT_TableOptions } from "material-react-table";
14
+ import { densityValues } from "./constants";
15
+ import { paginationTypeValues } from "../labs/DataTablePagination";
16
+ import { DataFilter } from "../labs/DataFilters";
17
+ import { DataTableRowActionsProps } from "./DataTableRowActions";
18
+ import { DataTableRowSelectionState } from ".";
19
+ export type DataTableProps = {
20
+ /**
21
+ * The columns that make up the table
22
+ */
23
+ columns: MRT_TableOptions<MRT_RowData>["columns"];
24
+ /**
25
+ * The total number of rows in the table. Optional, because it's sometimes impossible
26
+ * to calculate. Used in table pagination to know when to disable the "next"/"more" button.
27
+ */
28
+ totalRows?: number;
29
+ /**
30
+ * The function to get the ID of a row
31
+ */
32
+ getRowId?: MRT_TableOptions<MRT_RowData>["getRowId"];
33
+ /**
34
+ * The initial density of the table. This is available even if the table density
35
+ * isn't changeable.
36
+ */
37
+ initialDensity?: (typeof densityValues)[number];
38
+ /**
39
+ * If true, the end user will be able to change the table density.
40
+ */
41
+ hasChangeableDensity?: boolean;
42
+ /**
43
+ * If true, the end user can resize individual columns.
44
+ */
45
+ hasColumnResizing?: boolean;
46
+ /**
47
+ * If true, the end user will be able to show/hide columns.
48
+ */
49
+ hasColumnVisibility?: boolean;
50
+ /**
51
+ * If true, the end user will be able to filter columns.
52
+ */
53
+ hasFilters?: boolean;
54
+ /**
55
+ * If true, the table will include pagination controls.
56
+ */
57
+ hasPagination?: boolean;
58
+ /**
59
+ * If true, the table will include checkboxes on each row, enabling
60
+ * the user to select some or all rows.
61
+ */
62
+ hasRowSelection?: boolean;
63
+ /**
64
+ * If true, the global table search controls will be shown.
65
+ */
66
+ hasSearch?: boolean;
67
+ /**
68
+ * If true, the end user can sort columns (ascending, descending, or neither)
69
+ */
70
+ hasSorting?: boolean;
71
+ /**
72
+ * If true, the end user can reorder rows via a drag-and-drop interface
73
+ */
74
+ hasRowReordering?: boolean;
75
+ /**
76
+ * If true, the search field will include a Search button, rather than
77
+ * firing on input change.
78
+ */
79
+ hasSearchSubmitButton?: boolean;
80
+ /**
81
+ * The debounce time, in milliseconds, for the search input firing
82
+ * `onChangeSearch` when changed. If `hasSearchSubmitButton` is true,
83
+ * this doesn't do anything.
84
+ */
85
+ searchDelayTime?: number;
86
+ /**
87
+ * Callback that fires when a row (or rows) is selected or unselected.
88
+ */
89
+ onChangeRowSelection?: (rowSelection: DataTableRowSelectionState) => void;
90
+ /**
91
+ * Callback that fires whenever the table needs to fetch new data, due to changes in
92
+ * page, results per page, search input, filters, or sorting
93
+ */
94
+ getData: ({ page, resultsPerPage, search, filters, sort, }: {
95
+ page?: number;
96
+ resultsPerPage?: number;
97
+ search?: string;
98
+ filters?: DataFilter[];
99
+ sort?: MRT_SortingState;
100
+ }) => MRT_TableOptions<MRT_RowData>["data"] | Promise<MRT_TableOptions<MRT_RowData>["data"]>;
101
+ /**
102
+ * Callback that fires when the user reorders rows within the table. Can be used
103
+ * to propogate order change to the backend.
104
+ */
105
+ onReorderRows?: ({ rowId, newRowIndex, }: {
106
+ rowId: string;
107
+ newRowIndex: number;
108
+ }) => void;
109
+ /**
110
+ * The current page number.
111
+ */
112
+ currentPage?: number;
113
+ /**
114
+ * The number of results per page.
115
+ */
116
+ resultsPerPage?: number;
117
+ /**
118
+ * The type of pagination controls shown. Defaults to next/prev buttons, but can be
119
+ * set to a simple "Load more" button by setting to "loadMore".
120
+ */
121
+ paginationType?: (typeof paginationTypeValues)[number];
122
+ /**
123
+ * Action buttons to display in each row
124
+ */
125
+ rowActionButtons?: DataTableRowActionsProps["rowActionButtons"];
126
+ /**
127
+ * Menu items to include in the optional actions menu on each row.
128
+ */
129
+ rowActionMenuItems?: DataTableRowActionsProps["rowActionMenuItems"];
130
+ };
131
+ declare const MemoizedDataTable: import("react").MemoExoticComponent<({ columns, getRowId: getRowIdProp, currentPage, initialDensity, resultsPerPage, getData, onReorderRows, totalRows, hasSearchSubmitButton, searchDelayTime, paginationType, onChangeRowSelection, rowActionButtons, rowActionMenuItems, hasChangeableDensity, hasColumnResizing, hasColumnVisibility, hasFilters, hasPagination, hasRowReordering, hasRowSelection, hasSearch, hasSorting, }: DataTableProps) => import("react/jsx-runtime").JSX.Element>;
132
+ export { MemoizedDataTable as DataTable };
133
+ //# sourceMappingURL=DataTable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/DataTable/DataTable.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ import { MRT_Row, MRT_RowData } from "material-react-table";
13
+ import { Fragment, ReactElement } from "react";
14
+ import { Button } from "../Button";
15
+ import { MenuButtonProps } from "../MenuButton";
16
+ import { DataTableProps } from "./DataTable";
17
+ export type DataTableRowActionsProps = {
18
+ row: MRT_Row<MRT_RowData>;
19
+ rowIndex: number;
20
+ rowActionButtons?: (row: MRT_RowData) => ReactElement<typeof Button | typeof Fragment>;
21
+ rowActionMenuItems?: (row: MRT_RowData) => MenuButtonProps["children"];
22
+ totalRows?: DataTableProps["totalRows"];
23
+ updateRowOrder?: ({ rowId, newRowIndex, }: {
24
+ rowId: string;
25
+ newRowIndex: number;
26
+ }) => void;
27
+ };
28
+ declare const MemoizedDataTableRowActions: import("react").MemoExoticComponent<({ row, rowIndex, rowActionButtons, rowActionMenuItems, totalRows, updateRowOrder, }: DataTableRowActionsProps) => import("react/jsx-runtime").JSX.Element>;
29
+ export { MemoizedDataTableRowActions as DataTableRowActions };
30
+ //# sourceMappingURL=DataTableRowActions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataTableRowActions.d.ts","sourceRoot":"","sources":["../../../src/DataTable/DataTableRowActions.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAQ,MAAM,OAAO,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAGnC,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAQ5D,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAG7C,MAAM,MAAM,wBAAwB,GAAG;IACrC,GAAG,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,CAAC,EAAE,CACjB,GAAG,EAAE,WAAW,KACb,YAAY,CAAC,OAAO,MAAM,GAAG,OAAO,QAAQ,CAAC,CAAC;IACnD,kBAAkB,CAAC,EAAE,CAAC,GAAG,EAAE,WAAW,KAAK,eAAe,CAAC,UAAU,CAAC,CAAC;IACvE,SAAS,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC,CAAC;IACxC,cAAc,CAAC,EAAE,CAAC,EAChB,KAAK,EACL,WAAW,GACZ,EAAE;QACD,KAAK,EAAE,MAAM,CAAC;QACd,WAAW,EAAE,MAAM,CAAC;KACrB,KAAK,IAAI,CAAC;CACZ,CAAC;AA+EF,QAAA,MAAM,2BAA2B,4HAtE9B,wBAAwB,6CAsEkC,CAAC;AAC9D,OAAO,EAAE,2BAA2B,IAAI,mBAAmB,EAAE,CAAC"}
@@ -0,0 +1,27 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ import { Dispatch, SetStateAction } from "react";
13
+ import { densityValues } from "./constants";
14
+ import { DataTableProps } from "./DataTable";
15
+ import { MRT_VisibilityState } from "material-react-table";
16
+ export type DataTableSettingsProps = {
17
+ hasChangeableDensity: DataTableProps["hasChangeableDensity"];
18
+ rowDensity: (typeof densityValues)[number];
19
+ setRowDensity: Dispatch<SetStateAction<(typeof densityValues)[number]>>;
20
+ hasColumnVisibility: DataTableProps["hasColumnVisibility"];
21
+ columns: DataTableProps["columns"];
22
+ columnVisibility?: MRT_VisibilityState;
23
+ setColumnVisibility: Dispatch<SetStateAction<MRT_VisibilityState | undefined>>;
24
+ };
25
+ declare const MemoizedDataTableSettings: import("react").MemoExoticComponent<({ hasChangeableDensity, rowDensity, setRowDensity, hasColumnVisibility, columns, columnVisibility, setColumnVisibility, }: DataTableSettingsProps) => import("react/jsx-runtime").JSX.Element>;
26
+ export { MemoizedDataTableSettings as DataTableSettings };
27
+ //# sourceMappingURL=DataTableSettings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DataTableSettings.d.ts","sourceRoot":"","sources":["../../../src/DataTable/DataTableSettings.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAQ,MAAM,OAAO,CAAC;AAKvD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;AAG3D,MAAM,MAAM,sBAAsB,GAAG;IACnC,oBAAoB,EAAE,cAAc,CAAC,sBAAsB,CAAC,CAAC;IAC7D,UAAU,EAAE,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC;IAC3C,aAAa,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IACxE,mBAAmB,EAAE,cAAc,CAAC,qBAAqB,CAAC,CAAC;IAC3D,OAAO,EAAE,cAAc,CAAC,SAAS,CAAC,CAAC;IACnC,gBAAgB,CAAC,EAAE,mBAAmB,CAAC;IACvC,mBAAmB,EAAE,QAAQ,CAC3B,cAAc,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAChD,CAAC;CACH,CAAC;AA2EF,QAAA,MAAM,yBAAyB,kKAjE5B,sBAAsB,6CAiEgC,CAAC;AAC1D,OAAO,EAAE,yBAAyB,IAAI,iBAAiB,EAAE,CAAC"}
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ export declare const densityValues: readonly ["comfortable", "spacious", "compact"];
13
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/DataTable/constants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,eAAO,MAAM,aAAa,iDAAkD,CAAC"}
@@ -0,0 +1,15 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ export { DataTable, type DataTableProps } from "./DataTable";
13
+ export { densityValues } from "./constants";
14
+ export type { MRT_ColumnFiltersState as DataTableFiltersState, MRT_SortingState as DataTableSortingState, MRT_RowSelectionState as DataTableRowSelectionState, MRT_ColumnDef as DataTableColumn, MRT_RowData as DataTableRowData, MRT_Row as DataTableRow, } from "material-react-table";
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/DataTable/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,cAAc,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,YAAY,EACV,sBAAsB,IAAI,qBAAqB,EAC/C,gBAAgB,IAAI,qBAAqB,EACzC,qBAAqB,IAAI,0BAA0B,EACnD,aAAa,IAAI,eAAe,EAChC,WAAW,IAAI,gBAAgB,EAC/B,OAAO,IAAI,YAAY,GACxB,MAAM,sBAAsB,CAAC"}
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ import { MRT_RowData } from "material-react-table";
13
+ /**
14
+ * Reorders data rows locally.
15
+ *
16
+ * @param currentData - The current array of data rows.
17
+ * @param rowId - The ID of the row to move.
18
+ * @param newIndex - The new index to move the row to.
19
+ * @returns A new array of data with the row moved to the specified index.
20
+ */
21
+ export declare const reorderDataRowsLocally: ({ currentData, rowId, newRowIndex, }: {
22
+ currentData: MRT_RowData[];
23
+ rowId: string;
24
+ newRowIndex: number;
25
+ }) => MRT_RowData[];
26
+ //# sourceMappingURL=reorderDataRowsLocally.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reorderDataRowsLocally.d.ts","sourceRoot":"","sources":["../../../src/DataTable/reorderDataRowsLocally.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAEnD;;;;;;;GAOG;AACH,eAAO,MAAM,sBAAsB;iBAKpB,WAAW,EAAE;WACnB,MAAM;iBACA,MAAM;MACjB,WAAW,EAiBd,CAAC"}
@@ -0,0 +1,56 @@
1
+ /*!
2
+ * Copyright (c) 2023-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ import { Dispatch, SetStateAction, KeyboardEvent } from "react";
13
+ import { DataTableProps } from "./DataTable";
14
+ import { MRT_Row, MRT_RowData, MRT_TableInstance } from "material-react-table";
15
+ export declare const useRowReordering: ({ totalRows, onReorderRows, data, setData, draggingRow, setDraggingRow, resultsPerPage, page, }: {
16
+ totalRows: DataTableProps["totalRows"];
17
+ onReorderRows: DataTableProps["onReorderRows"];
18
+ data: MRT_RowData[];
19
+ setData: Dispatch<SetStateAction<MRT_RowData[]>>;
20
+ draggingRow?: MRT_Row<MRT_RowData> | null | undefined;
21
+ setDraggingRow: Dispatch<SetStateAction<MRT_Row<MRT_RowData> | null | undefined>>;
22
+ resultsPerPage: number;
23
+ page: number;
24
+ }) => {
25
+ dragHandleStyles: {
26
+ padding: string;
27
+ borderRadius: string;
28
+ "&:focus-visible": {
29
+ boxShadow: string;
30
+ outline: string;
31
+ outlineOffset: string;
32
+ };
33
+ };
34
+ dragHandleText: {
35
+ title: string;
36
+ "aria-label": string;
37
+ };
38
+ draggableTableBodyRowClassName: ({ currentRowId, draggingRowId, hoveredRowId, }: {
39
+ currentRowId: string;
40
+ draggingRowId?: string | undefined;
41
+ hoveredRowId?: string | undefined;
42
+ }) => "isDragging" | "isDragTarget" | "isDragging isDragTarget" | undefined;
43
+ handleDragHandleKeyDown: ({ table, row, event, }: {
44
+ table: MRT_TableInstance<MRT_RowData>;
45
+ row: MRT_Row<MRT_RowData>;
46
+ event: KeyboardEvent<HTMLButtonElement>;
47
+ }) => void;
48
+ handleDragHandleOnDragCapture: (table: MRT_TableInstance<MRT_RowData>) => void;
49
+ handleDragHandleOnDragEnd: (table: MRT_TableInstance<MRT_RowData>) => void;
50
+ resetDraggingAndHoveredRow: (table: MRT_TableInstance<MRT_RowData>) => void;
51
+ updateRowOrder: ({ rowId, newRowIndex, }: {
52
+ rowId: string;
53
+ newRowIndex: number;
54
+ }) => void;
55
+ };
56
+ //# sourceMappingURL=useRowReordering.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useRowReordering.d.ts","sourceRoot":"","sources":["../../../src/DataTable/useRowReordering.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAChE,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAG7C,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AAE/E,eAAO,MAAM,gBAAgB;eAUhB,cAAc,CAAC,WAAW,CAAC;mBACvB,cAAc,CAAC,eAAe,CAAC;UACxC,WAAW,EAAE;aACV,SAAS,eAAe,WAAW,EAAE,CAAC,CAAC;;oBAEhC,SACd,eAAe,QAAQ,WAAW,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC,CACxD;oBACe,MAAM;UAChB,MAAM;;;;;;;;;;;;;;;;sBAkDI,MAAM;;;;;eAiCb,kBAAkB,WAAW,CAAC;aAChC,QAAQ,WAAW,CAAC;eAClB,cAAc,iBAAiB,CAAC;;2CAsFhC,kBAAkB,WAAW,CAAC;uCAhBG,kBAAkB,WAAW,CAAC;wCAwB/D,kBAAkB,WAAW,CAAC;;eA7K9B,MAAM;qBACA,MAAM;;CA4LtB,CAAC"}
@@ -0,0 +1,31 @@
1
+ /*!
2
+ * Copyright (c) 2022-present, Okta, Inc. and/or its affiliates. All rights reserved.
3
+ * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.")
4
+ *
5
+ * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
6
+ * Unless required by applicable law or agreed to in writing, software
7
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
8
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9
+ *
10
+ * See the License for the specific language governing permissions and limitations under the License.
11
+ */
12
+ import { ReactNode } from "react";
13
+ import type { TooltipProps as MuiTooltipProps } from "@mui/material";
14
+ import { HtmlProps } from "./HtmlProps";
15
+ export type IconWithTooltipProps = {
16
+ /**
17
+ * The icon to render. Defaults to `InformationCircleIcon`
18
+ */
19
+ IconComponent?: ReactNode;
20
+ /**
21
+ * The placement of the Tooltip
22
+ */
23
+ placement?: MuiTooltipProps["placement"];
24
+ /**
25
+ * The text to display in the Tooltip
26
+ */
27
+ tooltipText: string;
28
+ } & Pick<HtmlProps, "testId" | "translate">;
29
+ declare const MemoizedIconWithTooltip: import("react").MemoExoticComponent<({ IconComponent, placement, testId, tooltipText, translate, }: IconWithTooltipProps) => import("react/jsx-runtime").JSX.Element>;
30
+ export { MemoizedIconWithTooltip as IconWithTooltip };
31
+ //# sourceMappingURL=IconWithTooltip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconWithTooltip.d.ts","sourceRoot":"","sources":["../../src/IconWithTooltip.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAQ,SAAS,EAAE,MAAM,OAAO,CAAC;AAGxC,OAAO,KAAK,EAAE,YAAY,IAAI,eAAe,EAAE,MAAM,eAAe,CAAC;AAErE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AA4BxC,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B;;OAEG;IACH,SAAS,CAAC,EAAE,eAAe,CAAC,WAAW,CAAC,CAAC;IACzC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,GAAG,IAAI,CAAC,SAAS,EAAE,QAAQ,GAAG,WAAW,CAAC,CAAC;AA4B5C,QAAA,MAAM,uBAAuB,sGApB1B,oBAAoB,6CAoB8B,CAAC;AAGtD,OAAO,EAAE,uBAAuB,IAAI,eAAe,EAAE,CAAC"}
@@ -13,7 +13,7 @@ import { ReactNode } from "react";
13
13
  import { DefaultSupportedLanguages } from "./OdysseyTranslationProvider.types";
14
14
  import { resources } from "./i18n";
15
15
  export type OdysseyI18nResourceKeys = (typeof resources)["en"];
16
- export declare const odysseyI18nResourceKeysList: ("fielderror.screenreader.text" | "breadcrumbs.home.text" | "breadcrumbs.label.text" | "close.text" | "fieldlabel.optional.text" | "fieldlabel.required.text" | "passwordfield.icon.label.show" | "passwordfield.icon.label.hide" | "severity.error" | "severity.info" | "severity.success" | "severity.warning" | "switch.active" | "switch.inactive" | "table.error" | "table.fetchedrows.text" | "table.fetchedrows.text_plural" | "table.rows.text" | "table.rows.text_plural")[];
16
+ export declare const odysseyI18nResourceKeysList: ("fielderror.screenreader.text" | "breadcrumbs.home.text" | "breadcrumbs.label.text" | "close.text" | "fieldlabel.optional.text" | "fieldlabel.required.text" | "filters.clear.label" | "filters.filter.any" | "filters.filter.clear" | "filters.filters.arialabel" | "filters.menuitem.any" | "filters.menuitem.selected" | "filters.search.label" | "passwordfield.icon.label.hide" | "passwordfield.icon.label.show" | "severity.error" | "severity.info" | "severity.success" | "severity.warning" | "switch.active" | "switch.inactive" | "table.actions" | "table.columnvisibility.arialabel" | "table.density.arialabel" | "table.draghandle.arialabel" | "table.draghandle.tooltip" | "table.error" | "table.fetchedrows.text" | "table.fetchedrows.text_plural" | "table.moreactions.arialabel" | "table.reorder.backward" | "table.reorder.forward" | "table.reorder.toback" | "table.reorder.tofront" | "table.rows.text" | "table.rows.text_plural")[];
17
17
  export type TranslationOverrides<SupportedLanguages extends string = DefaultSupportedLanguages> = Record<SupportedLanguages, Partial<OdysseyI18nResourceKeys>>;
18
18
  export type OdysseyTranslationProviderProps<SupportedLanguages extends string = DefaultSupportedLanguages> = {
19
19
  children: ReactNode;
@@ -1 +1 @@
1
- {"version":3,"file":"OdysseyTranslationProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyTranslationProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,OAAO,CAAC;AAE7C,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAE/E,OAAO,EAAmB,SAAS,EAAE,MAAM,QAAQ,CAAC;AAIpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC;AAC/D,eAAO,MAAM,2BAA2B,udAAsC,CAAC;AAE/E,MAAM,MAAM,oBAAoB,CAC9B,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D,MAAM,CAAC,kBAAkB,EAAE,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAcjE,MAAM,MAAM,+BAA+B,CACzC,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D;IACF,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,kBAAkB,GAAG,yBAAyB,CAAC;IAC9D,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CACjE,CAAC;AAMF,eAAO,MAAM,0BAA0B,wLAmCtC,CAAC"}
1
+ {"version":3,"file":"OdysseyTranslationProvider.d.ts","sourceRoot":"","sources":["../../src/OdysseyTranslationProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAa,MAAM,OAAO,CAAC;AAE7C,OAAO,EAAE,yBAAyB,EAAE,MAAM,oCAAoC,CAAC;AAE/E,OAAO,EAAmB,SAAS,EAAE,MAAM,QAAQ,CAAC;AAIpD,MAAM,MAAM,uBAAuB,GAAG,CAAC,OAAO,SAAS,CAAC,CAAC,IAAI,CAAC,CAAC;AAC/D,eAAO,MAAM,2BAA2B,o6BAAsC,CAAC;AAE/E,MAAM,MAAM,oBAAoB,CAC9B,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D,MAAM,CAAC,kBAAkB,EAAE,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAcjE,MAAM,MAAM,+BAA+B,CACzC,kBAAkB,SAAS,MAAM,GAAG,yBAAyB,IAC3D;IACF,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,CAAC,EAAE,kBAAkB,GAAG,yBAAyB,CAAC;IAC9D,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kBAAkB,CAAC,CAAC;CACjE,CAAC;AAMF,eAAO,MAAM,0BAA0B,wLAmCtC,CAAC"}
@@ -48,11 +48,13 @@ export * from "./CircularProgress";
48
48
  export * from "./CssBaseline";
49
49
  export * from "./createShadowRootElement";
50
50
  export * from "./createUniqueId";
51
+ export * from "./DataTable";
51
52
  export * from "./Dialog";
52
53
  export * from "./Fieldset";
53
54
  export * from "./FieldComponentProps";
54
55
  export * from "./Form";
55
56
  export * from "./HintLink";
57
+ export * from "./IconWithTooltip";
56
58
  export * from "./Link";
57
59
  export * from "./MenuButton";
58
60
  export * from "./MenuItem";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEvD,OAAO,EACL,WAAW;AACX,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,OAAO;AACP,4FAA4F;AAC5F,cAAc;AACd,4FAA4F;AAC5F,SAAS;AACT,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,aAAa;AACb,4FAA4F;AAC5F,QAAQ;AACR,4FAA4F;AAC5F,KAAK;AACL,4FAA4F;AAC5F,iBAAiB,EACjB,aAAa,GACd,MAAM,eAAe,CAAC;AAEvB,YAAY,EACV,gBAAgB,EAChB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,sBAAsB,EACtB,YAAY,GACb,MAAM,eAAe,CAAC;AAEvB,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAEvD,OAAO,EACL,WAAW;AACX,4FAA4F;AAC5F,iBAAiB;AACjB,4FAA4F;AAC5F,OAAO;AACP,4FAA4F;AAC5F,cAAc;AACd,4FAA4F;AAC5F,SAAS;AACT,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,YAAY;AACZ,4FAA4F;AAC5F,aAAa;AACb,4FAA4F;AAC5F,QAAQ;AACR,4FAA4F;AAC5F,KAAK;AACL,4FAA4F;AAC5F,iBAAiB,EACjB,aAAa,GACd,MAAM,eAAe,CAAC;AAEvB,YAAY,EACV,gBAAgB,EAChB,sBAAsB,EACtB,YAAY,EACZ,mBAAmB,EACnB,cAAc,EACd,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,aAAa,EACb,UAAU,EACV,sBAAsB,EACtB,YAAY,GACb,MAAM,eAAe,CAAC;AAEvB,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AACtB,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,uBAAuB,CAAC;AACtC,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAC1C,cAAc,mBAAmB,CAAC;AAClC,cAAc,wBAAwB,CAAC;AACvC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,iBAAiB,CAAC;AAChC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DataFilters.d.ts","sourceRoot":"","sources":["../../../src/labs/DataFilters.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAEL,SAAS,EAOV,MAAM,OAAO,CAAC;AA0Bf,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAElE,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC;AAG5D,MAAM,MAAM,UAAU,GAAG;IACvB;;;OAGG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC,eAAe,CAAC,CAAC;IACtD;;;;OAIG;IACH,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACnD,CAAC;AAGF,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC;;OAEG;IACH,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,KAAK,IAAI,CAAC;IACvD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;CAC7B,CAAC;AA2jBF,QAAA,MAAM,mBAAmB,iLAjjBtB,gBAAgB,6CAijB0B,CAAC;AAG9C,OAAO,EAAE,mBAAmB,IAAI,WAAW,EAAE,CAAC"}
1
+ {"version":3,"file":"DataFilters.d.ts","sourceRoot":"","sources":["../../../src/labs/DataFilters.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAEL,SAAS,EAOV,MAAM,OAAO,CAAC;AA2Bf,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAGlE,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,MAAM,EAAE,GAAG,SAAS,CAAC;AAG5D,MAAM,MAAM,UAAU,GAAG;IACvB;;;OAGG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC,eAAe,CAAC,CAAC;IACtD;;;;OAIG;IACH,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CACnD,CAAC;AAGF,MAAM,MAAM,gBAAgB,GAAG;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACzC;;OAEG;IACH,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,UAAU,CAAC,KAAK,IAAI,CAAC;IACvD;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,SAAS,CAAC;IAC9B;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;CAC7B,CAAC;AAomBF,QAAA,MAAM,mBAAmB,iLA1lBtB,gBAAgB,6CA0lB0B,CAAC;AAG9C,OAAO,EAAE,mBAAmB,IAAI,WAAW,EAAE,CAAC"}
@@ -17,7 +17,7 @@ import { Button } from "../Button";
17
17
  import { MenuItem } from "..";
18
18
  export declare const densityValues: readonly ["comfortable", "spacious", "compact"];
19
19
  export type { MRT_ColumnFiltersState, MRT_SortingState, MRT_ColumnDef as TableColumn, } from "material-react-table";
20
- export type DataColumn = {
20
+ export type DataTableColumn = {
21
21
  /**
22
22
  * The unique ID of the column
23
23
  */
@@ -81,7 +81,7 @@ export type DataTableProps = {
81
81
  /**
82
82
  * The columns that make up the table
83
83
  */
84
- columns: DataColumn[];
84
+ columns: DataTableColumn[];
85
85
  /**
86
86
  * The data that goes into the table, which will be displayed
87
87
  * as the table rows
@@ -1 +1 @@
1
- {"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/labs/DataTable.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"DataTable.d.ts","sourceRoot":"","sources":["../../../src/labs/DataTable.tsx"],"names":[],"mappings":"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"}
@@ -14,7 +14,6 @@ export { LocalizationProvider } from "@mui/x-date-pickers";
14
14
  export type { LocalizationProviderProps } from "@mui/x-date-pickers";
15
15
  export * from "./DatePicker";
16
16
  export * from "./datePickerTheme";
17
- export * from "./DataTable";
18
17
  export * from "./DataTablePagination";
19
18
  export * from "./DataFilters";
20
19
  export * from "./Drawer";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/labs/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,YAAY,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAErE,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAElC,cAAc,aAAa,CAAC;AAC5B,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAE9B,cAAc,UAAU,CAAC;AAEzB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAE1C,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/labs/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,oCAAoC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAC3D,YAAY,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAErE,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAElC,cAAc,uBAAuB,CAAC;AACtC,cAAc,eAAe,CAAC;AAE9B,cAAc,UAAU,CAAC;AAEzB,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAEjC,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAE1C,cAAc,UAAU,CAAC"}
@@ -5,17 +5,34 @@ export declare const translation: {
5
5
  "fielderror.screenreader.text": string;
6
6
  "fieldlabel.optional.text": string;
7
7
  "fieldlabel.required.text": string;
8
- "passwordfield.icon.label.show": string;
8
+ "filters.clear.label": string;
9
+ "filters.filter.any": string;
10
+ "filters.filter.clear": string;
11
+ "filters.filters.arialabel": string;
12
+ "filters.menuitem.any": string;
13
+ "filters.menuitem.selected": string;
14
+ "filters.search.label": string;
9
15
  "passwordfield.icon.label.hide": string;
16
+ "passwordfield.icon.label.show": string;
10
17
  "severity.error": string;
11
18
  "severity.info": string;
12
19
  "severity.success": string;
13
20
  "severity.warning": string;
14
21
  "switch.active": string;
15
22
  "switch.inactive": string;
23
+ "table.actions": string;
24
+ "table.columnvisibility.arialabel": string;
25
+ "table.density.arialabel": string;
26
+ "table.draghandle.arialabel": string;
27
+ "table.draghandle.tooltip": string;
16
28
  "table.error": string;
17
29
  "table.fetchedrows.text": string;
18
30
  "table.fetchedrows.text_plural": string;
31
+ "table.moreactions.arialabel": string;
32
+ "table.reorder.backward": string;
33
+ "table.reorder.forward": string;
34
+ "table.reorder.toback": string;
35
+ "table.reorder.tofront": string;
19
36
  "table.rows.text": string;
20
37
  "table.rows.text_plural": string;
21
38
  };
@@ -1 +1 @@
1
- {"version":3,"file":"odyssey-react-mui.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;CAAksB,CAAC"}
1
+ {"version":3,"file":"odyssey-react-mui.d.ts","sourceRoot":"","sources":["../../../../src/properties/ts/odyssey-react-mui.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA2+C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAuC7C,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AASvC,eAAO,MAAM,UAAU;mBAIN,YAAY;;MAEzB,YAAY,CAAC,YAAY,CA0uF5B,CAAC"}
1
+ {"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/theme/components.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAuC7C,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AASvC,eAAO,MAAM,UAAU;mBAIN,YAAY;;MAEzB,YAAY,CAAC,YAAY,CAqwF5B,CAAC"}