Skip to content

Commit 90807f6

Browse files
committed
Merge master
1 parent 000071c commit 90807f6

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

__tests__/features/virtualize/virtualize.rendering.spec.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// <reference types="@testing-library/jest-dom" />
12
import React from "react";
23
import { render, screen, act, waitFor } from "@testing-library/react";
34

rollup.config.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,20 @@ export default [
2626
plugins: [
2727
external(),
2828
babel({
29+
babelHelpers: "bundled",
2930
exclude: "node_modules/**",
3031
}),
3132
del({ targets: ["dist/*"] }),
32-
typescript({ sourceMap: false, declaration: false }),
33+
typescript({ declaration: false }),
3334
postcss({
3435
modules: true,
3536
}),
3637
],
38+
onwarn(error, warn) {
39+
if (error.code !== "CIRCULAR_DEPENDENCY") {
40+
warn(error);
41+
}
42+
},
3743
external: Object.keys(pkg.peerDependencies || {}),
3844
},
3945
{

src/components/transform-component/transform-component.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
user-select: none;
1414
margin: 0;
1515
padding: 0;
16+
transform: translate3d(0, 0, 0);
1617
}
1718
.content {
1819
display: flex;

0 commit comments

Comments
 (0)