design-zystem 1.0.237 → 1.0.238
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/index.js +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3387,9 +3387,6 @@ var StyledTableHeaderCell = import_styled_components31.default.div.withConfig({
|
|
|
3387
3387
|
var SortingButton = import_styled_components31.default.span`
|
|
3388
3388
|
display: inline-flex;
|
|
3389
3389
|
align-items: center;
|
|
3390
|
-
padding: 2px 10px;
|
|
3391
|
-
background: ${(props) => props.$isSort ? "#f8af2d" : "#FFF5"};
|
|
3392
|
-
border-radius: 20px;
|
|
3393
3390
|
gap: 8px;
|
|
3394
3391
|
cursor: pointer;
|
|
3395
3392
|
`;
|
|
@@ -3421,7 +3418,7 @@ var TableHeaderCell = (props) => {
|
|
|
3421
3418
|
if (useSort) setHovered(false);
|
|
3422
3419
|
(_a2 = otherProps.onMouseLeave) == null ? void 0 : _a2.call(otherProps, e);
|
|
3423
3420
|
},
|
|
3424
|
-
children: useSort ? /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(SortingButton, {
|
|
3421
|
+
children: useSort ? /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(SortingButton, { children: [
|
|
3425
3422
|
children,
|
|
3426
3423
|
showArrow && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(SortArrow, { $opacity: arrowOpacity, children: arrowChar })
|
|
3427
3424
|
] }) : children
|
package/dist/index.mjs
CHANGED
|
@@ -3300,9 +3300,6 @@ var StyledTableHeaderCell = styled31.div.withConfig({
|
|
|
3300
3300
|
var SortingButton = styled31.span`
|
|
3301
3301
|
display: inline-flex;
|
|
3302
3302
|
align-items: center;
|
|
3303
|
-
padding: 2px 10px;
|
|
3304
|
-
background: ${(props) => props.$isSort ? "#f8af2d" : "#FFF5"};
|
|
3305
|
-
border-radius: 20px;
|
|
3306
3303
|
gap: 8px;
|
|
3307
3304
|
cursor: pointer;
|
|
3308
3305
|
`;
|
|
@@ -3334,7 +3331,7 @@ var TableHeaderCell = (props) => {
|
|
|
3334
3331
|
if (useSort) setHovered(false);
|
|
3335
3332
|
(_a2 = otherProps.onMouseLeave) == null ? void 0 : _a2.call(otherProps, e);
|
|
3336
3333
|
},
|
|
3337
|
-
children: useSort ? /* @__PURE__ */ jsxs15(SortingButton, {
|
|
3334
|
+
children: useSort ? /* @__PURE__ */ jsxs15(SortingButton, { children: [
|
|
3338
3335
|
children,
|
|
3339
3336
|
showArrow && /* @__PURE__ */ jsx35(SortArrow, { $opacity: arrowOpacity, children: arrowChar })
|
|
3340
3337
|
] }) : children
|