@overmap-ai/blocks 1.0.15 → 1.0.17-table-style-changes.0
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/blocks.js +19 -21
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +19 -21
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +32 -27
- package/package.json +1 -1
package/dist/blocks.js
CHANGED
|
@@ -2967,21 +2967,21 @@ const SelectAllCheckbox = memo(function SelectAllCheckbox2({
|
|
|
2967
2967
|
childrenWithProps
|
|
2968
2968
|
] });
|
|
2969
2969
|
});
|
|
2970
|
-
const tableContainer = "
|
|
2971
|
-
const headerContainer = "
|
|
2972
|
-
const tableTopContainer = "
|
|
2973
|
-
const searchContainer = "
|
|
2974
|
-
const columnFilterSelect = "
|
|
2975
|
-
const table = "
|
|
2976
|
-
const tableHeaderCell = "
|
|
2977
|
-
const showSortIcon = "
|
|
2978
|
-
const tableRow = "
|
|
2979
|
-
const tableCell = "
|
|
2980
|
-
const noDataTextContainer = "
|
|
2981
|
-
const tableBottomContainer = "
|
|
2982
|
-
const rowsPerPageContainer = "
|
|
2983
|
-
const rowsPerPageText = "
|
|
2984
|
-
const pageText = "
|
|
2970
|
+
const tableContainer = "_tableContainer_1tfxw_1";
|
|
2971
|
+
const headerContainer = "_headerContainer_1tfxw_13";
|
|
2972
|
+
const tableTopContainer = "_tableTopContainer_1tfxw_17";
|
|
2973
|
+
const searchContainer = "_searchContainer_1tfxw_21";
|
|
2974
|
+
const columnFilterSelect = "_columnFilterSelect_1tfxw_31";
|
|
2975
|
+
const table = "_table_1tfxw_1";
|
|
2976
|
+
const tableHeaderCell = "_tableHeaderCell_1tfxw_49";
|
|
2977
|
+
const showSortIcon = "_showSortIcon_1tfxw_64";
|
|
2978
|
+
const tableRow = "_tableRow_1tfxw_68";
|
|
2979
|
+
const tableCell = "_tableCell_1tfxw_83";
|
|
2980
|
+
const noDataTextContainer = "_noDataTextContainer_1tfxw_93";
|
|
2981
|
+
const tableBottomContainer = "_tableBottomContainer_1tfxw_99";
|
|
2982
|
+
const rowsPerPageContainer = "_rowsPerPageContainer_1tfxw_103";
|
|
2983
|
+
const rowsPerPageText = "_rowsPerPageText_1tfxw_113";
|
|
2984
|
+
const pageText = "_pageText_1tfxw_118";
|
|
2985
2985
|
const styles$1 = {
|
|
2986
2986
|
tableContainer,
|
|
2987
2987
|
headerContainer,
|
|
@@ -3330,8 +3330,8 @@ const _Table = forwardRef(function Table2(props, ref) {
|
|
|
3330
3330
|
children: (_Close) => ""
|
|
3331
3331
|
}
|
|
3332
3332
|
),
|
|
3333
|
-
showFilterButton && isColumnFilterValueSelected && /* @__PURE__ */
|
|
3334
|
-
|
|
3333
|
+
showFilterButton && isColumnFilterValueSelected && /* @__PURE__ */ jsx(
|
|
3334
|
+
IconButton,
|
|
3335
3335
|
{
|
|
3336
3336
|
variant: "surface",
|
|
3337
3337
|
color: "crimson",
|
|
@@ -3339,10 +3339,8 @@ const _Table = forwardRef(function Table2(props, ref) {
|
|
|
3339
3339
|
setColumnFilterValues(defaultColumnFilterValues);
|
|
3340
3340
|
pagination.fns.onSetPage(0);
|
|
3341
3341
|
},
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
"Clear filters"
|
|
3345
|
-
]
|
|
3342
|
+
"aria-label": "Clear filters",
|
|
3343
|
+
children: /* @__PURE__ */ jsx(Cross2Icon, {})
|
|
3346
3344
|
}
|
|
3347
3345
|
)
|
|
3348
3346
|
] }),
|