@infinite-table/infinite-react 7.3.4 → 7.3.5
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/index.d.ts +1 -1
- package/index.dev.js +4 -4
- package/index.dev.mjs +4 -4
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -3320,7 +3320,7 @@ type InfiniteTableHeaderProps<_T> = {
|
|
|
3320
3320
|
};
|
|
3321
3321
|
|
|
3322
3322
|
type InfiniteTableBodyProps<_T> = {
|
|
3323
|
-
|
|
3323
|
+
rowHoverClassNames?: string | string[];
|
|
3324
3324
|
};
|
|
3325
3325
|
|
|
3326
3326
|
declare function InfiniteTableBody<T>(props: InfiniteTableBodyProps<T>): React$1.JSX.Element;
|
package/index.dev.js
CHANGED
|
@@ -25362,7 +25362,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
25362
25362
|
}
|
|
25363
25363
|
let valid2 = isValidLicense(licenseKey, {
|
|
25364
25364
|
publishedAt: 1624970570587,
|
|
25365
|
-
version: "7.3.
|
|
25365
|
+
version: "7.3.5"
|
|
25366
25366
|
});
|
|
25367
25367
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
25368
25368
|
return true;
|
|
@@ -30002,13 +30002,13 @@ function InfiniteTableBody(props) {
|
|
|
30002
30002
|
if (!showHoverRows) {
|
|
30003
30003
|
return void 0;
|
|
30004
30004
|
}
|
|
30005
|
-
if (props.
|
|
30006
|
-
return Array.isArray(props.
|
|
30005
|
+
if (props.rowHoverClassNames) {
|
|
30006
|
+
return Array.isArray(props.rowHoverClassNames) ? [...InfiniteTableBody.rowHoverClassNames, ...props.rowHoverClassNames] : [...InfiniteTableBody.rowHoverClassNames, props.rowHoverClassNames];
|
|
30007
30007
|
}
|
|
30008
30008
|
return InfiniteTableBody.rowHoverClassNames;
|
|
30009
30009
|
}, [
|
|
30010
30010
|
showHoverRows,
|
|
30011
|
-
props.
|
|
30011
|
+
props.rowHoverClassNames,
|
|
30012
30012
|
InfiniteTableBody.rowHoverClassNames
|
|
30013
30013
|
]);
|
|
30014
30014
|
return /* @__PURE__ */ React77.createElement(InfiniteTableBodyContainer, { onContextMenu }, /* @__PURE__ */ React77.createElement(
|
package/index.dev.mjs
CHANGED
|
@@ -25311,7 +25311,7 @@ var useLicense = (licenseKey = "") => {
|
|
|
25311
25311
|
}
|
|
25312
25312
|
let valid2 = isValidLicense(licenseKey, {
|
|
25313
25313
|
publishedAt: 1624970570587,
|
|
25314
|
-
version: "7.3.
|
|
25314
|
+
version: "7.3.5"
|
|
25315
25315
|
});
|
|
25316
25316
|
if (!licenseKey && !valid2 && isInsidePlayground) {
|
|
25317
25317
|
return true;
|
|
@@ -29961,13 +29961,13 @@ function InfiniteTableBody(props) {
|
|
|
29961
29961
|
if (!showHoverRows) {
|
|
29962
29962
|
return void 0;
|
|
29963
29963
|
}
|
|
29964
|
-
if (props.
|
|
29965
|
-
return Array.isArray(props.
|
|
29964
|
+
if (props.rowHoverClassNames) {
|
|
29965
|
+
return Array.isArray(props.rowHoverClassNames) ? [...InfiniteTableBody.rowHoverClassNames, ...props.rowHoverClassNames] : [...InfiniteTableBody.rowHoverClassNames, props.rowHoverClassNames];
|
|
29966
29966
|
}
|
|
29967
29967
|
return InfiniteTableBody.rowHoverClassNames;
|
|
29968
29968
|
}, [
|
|
29969
29969
|
showHoverRows,
|
|
29970
|
-
props.
|
|
29970
|
+
props.rowHoverClassNames,
|
|
29971
29971
|
InfiniteTableBody.rowHoverClassNames
|
|
29972
29972
|
]);
|
|
29973
29973
|
return /* @__PURE__ */ React77.createElement(InfiniteTableBodyContainer, { onContextMenu }, /* @__PURE__ */ React77.createElement(
|