@teamturing/react-kit 2.21.1 → 2.21.2

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.
@@ -1,7 +1,7 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { GridProps } from '../Grid';
3
3
  import { SpaceProps } from '../Space';
4
- type Props = {} & Pick<GridProps, 'gapX' | 'alignItems' | 'justifyContent' | 'sx'> & Pick<SpaceProps, 'p' | 'px' | 'py' | 'pt' | 'pr' | 'pb' | 'pl' | 'padding' | 'paddingX' | 'paddingY' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft'>;
5
- declare const DatagridRow: ({ gapX, alignItems, justifyContent, sx, children, ...props }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
4
+ type Props = {} & Pick<GridProps, 'gapX' | 'alignItems' | 'justifyContent'> & Pick<SpaceProps, 'p' | 'px' | 'py' | 'pt' | 'pr' | 'pb' | 'pl' | 'padding' | 'paddingX' | 'paddingY' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'sx'>;
5
+ declare const DatagridRow: ({ gapX, alignItems, justifyContent, children, ...props }: PropsWithChildren<Props>) => import("react/jsx-runtime").JSX.Element;
6
6
  export default DatagridRow;
7
7
  export type { Props as DatagridRowProps };
@@ -9,7 +9,7 @@ declare const _default: (({ children, sx, ...props }: PropsWithChildren<Props>)
9
9
  Header: ({ leadingVisual: LeadingVisual, trailingAction, ...props }: DatagridHeaderProps) => import("react/jsx-runtime").JSX.Element;
10
10
  Subheader: ({ ...props }: PropsWithChildren<SxProp>) => import("react/jsx-runtime").JSX.Element;
11
11
  Body: ({ ...props }: PropsWithChildren<SxProp>) => import("react/jsx-runtime").JSX.Element;
12
- Row: ({ gapX, alignItems, justifyContent, sx, children, ...props }: PropsWithChildren<DatagridRowProps>) => import("react/jsx-runtime").JSX.Element;
12
+ Row: ({ gapX, alignItems, justifyContent, children, ...props }: PropsWithChildren<DatagridRowProps>) => import("react/jsx-runtime").JSX.Element;
13
13
  Cell: ({ children, ...props }: PropsWithChildren<Pick<import("../Grid").GridUnitProps, "size" | "sx">>) => import("react/jsx-runtime").JSX.Element;
14
14
  };
15
15
  export default _default;
package/dist/index.js CHANGED
@@ -17938,7 +17938,6 @@ const DatagridRow = ({
17938
17938
  gapX = 2,
17939
17939
  alignItems,
17940
17940
  justifyContent,
17941
- sx,
17942
17941
  children,
17943
17942
  ...props
17944
17943
  }) => /*#__PURE__*/jsxRuntimeExports.jsx(DatagridRowWrapper, {
@@ -17948,7 +17947,6 @@ const DatagridRow = ({
17948
17947
  gapX: gapX,
17949
17948
  alignItems: alignItems,
17950
17949
  justifyContent: justifyContent,
17951
- sx: sx,
17952
17950
  children: children
17953
17951
  })
17954
17952
  });
@@ -6,7 +6,6 @@ const DatagridRow = ({
6
6
  gapX = 2,
7
7
  alignItems,
8
8
  justifyContent,
9
- sx,
10
9
  children,
11
10
  ...props
12
11
  }) => /*#__PURE__*/jsxRuntimeExports.jsx(DatagridRowWrapper, {
@@ -16,7 +15,6 @@ const DatagridRow = ({
16
15
  gapX: gapX,
17
16
  alignItems: alignItems,
18
17
  justifyContent: justifyContent,
19
- sx: sx,
20
18
  children: children
21
19
  })
22
20
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.21.1",
3
+ "version": "2.21.2",
4
4
  "description": "React components, hooks for create teamturing web application",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -66,5 +66,5 @@
66
66
  "react-textarea-autosize": "^8.5.3",
67
67
  "styled-system": "^5.1.5"
68
68
  },
69
- "gitHead": "3a0cb94384dba95211ee8e691016216e883264a0"
69
+ "gitHead": "f5caa64d256d791522e41fb23dcb9d98ac2e8ec7"
70
70
  }