@refinedev/antd 5.43.0 → 5.43.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinedev/antd",
3
- "version": "5.43.0",
3
+ "version": "5.43.1",
4
4
  "private": false,
5
5
  "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
6
6
  "repository": {
@@ -46,8 +46,8 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esbuild-plugins/node-resolve": "^0.1.4",
49
- "@refinedev/cli": "^2.16.37",
50
- "@refinedev/core": "^4.54.0",
49
+ "@refinedev/cli": "^2.16.38",
50
+ "@refinedev/core": "^4.54.1",
51
51
  "@refinedev/ui-tests": "^1.14.9",
52
52
  "@testing-library/jest-dom": "^5.16.4",
53
53
  "@testing-library/react": "^13.1.1",
@@ -232,7 +232,7 @@ export const ThemedSiderV2: React.FC<RefineThemedLayoutV2SiderProps> = ({
232
232
  <Drawer
233
233
  open={mobileSiderOpen}
234
234
  onClose={() => setMobileSiderOpen(false)}
235
- placement="left"
235
+ placement={direction === "rtl" ? "right" : "left"}
236
236
  closable={false}
237
237
  width={200}
238
238
  bodyStyle={{
@@ -1,8 +1,8 @@
1
1
  import type { CSSProperties } from "react";
2
2
 
3
3
  export const drawerButtonStyles: CSSProperties = {
4
- borderTopLeftRadius: 0,
5
- borderBottomLeftRadius: 0,
4
+ borderStartStartRadius: 0,
5
+ borderEndStartRadius: 0,
6
6
  position: "fixed",
7
7
  top: 64,
8
8
  zIndex: 999,