@overmap-ai/blocks 1.0.15 → 1.0.16
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 +4 -6
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +4 -6
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/blocks.js
CHANGED
|
@@ -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
|
] }),
|