@teamturing/react-kit 2.32.5 → 2.32.7

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 CHANGED
@@ -17702,6 +17702,8 @@ const DatagridBody = ({
17702
17702
  const BaseDatagridBody = styled__default.default.div`
17703
17703
  width: inherit;
17704
17704
 
17705
+ border-radius: inherit;
17706
+
17705
17707
  & > *:not(:last-child) {
17706
17708
  border-bottom-width: ${forcePixelValue(1)};
17707
17709
  border-bottom-style: solid;
@@ -17710,6 +17712,11 @@ const BaseDatagridBody = styled__default.default.div`
17710
17712
  }) => theme.colors['border/neutral']};
17711
17713
  }
17712
17714
 
17715
+ & > *:last-child {
17716
+ border-bottom-left-radius: inherit;
17717
+ border-bottom-right-radius: inherit;
17718
+ }
17719
+
17713
17720
  ${sx}
17714
17721
  `;
17715
17722
 
@@ -17752,6 +17759,9 @@ const DataGridHeaderWrapper = styled__default.default.div`
17752
17759
  theme
17753
17760
  }) => theme.colors['bg/neutral']};
17754
17761
 
17762
+ border-top-left-radius: inherit;
17763
+ border-top-right-radius: inherit;
17764
+
17755
17765
  ${sx}
17756
17766
  `;
17757
17767
 
@@ -17839,6 +17849,8 @@ const DatagridWrapper = styled__default.default.div`
17839
17849
  `;
17840
17850
  const BaseDatagrid = styled__default.default.div`
17841
17851
  width: inherit;
17852
+
17853
+ border-radius: inherit;
17842
17854
  `;
17843
17855
  var index$a = Object.assign(Datagrid, {
17844
17856
  Header: DatagridHeader,
@@ -11,6 +11,8 @@ const DatagridBody = ({
11
11
  const BaseDatagridBody = styled.div`
12
12
  width: inherit;
13
13
 
14
+ border-radius: inherit;
15
+
14
16
  & > *:not(:last-child) {
15
17
  border-bottom-width: ${forcePixelValue(1)};
16
18
  border-bottom-style: solid;
@@ -19,6 +21,11 @@ const BaseDatagridBody = styled.div`
19
21
  }) => theme.colors['border/neutral']};
20
22
  }
21
23
 
24
+ & > *:last-child {
25
+ border-bottom-left-radius: inherit;
26
+ border-bottom-right-radius: inherit;
27
+ }
28
+
22
29
  ${sx}
23
30
  `;
24
31
 
@@ -35,6 +35,9 @@ const DataGridHeaderWrapper = styled.div`
35
35
  theme
36
36
  }) => theme.colors['bg/neutral']};
37
37
 
38
+ border-top-left-radius: inherit;
39
+ border-top-right-radius: inherit;
40
+
38
41
  ${sx}
39
42
  `;
40
43
 
@@ -46,6 +46,8 @@ const DatagridWrapper = styled.div`
46
46
  `;
47
47
  const BaseDatagrid = styled.div`
48
48
  width: inherit;
49
+
50
+ border-radius: inherit;
49
51
  `;
50
52
  var index = Object.assign(Datagrid, {
51
53
  Header: DatagridHeader,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/react-kit",
3
- "version": "2.32.5",
3
+ "version": "2.32.7",
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",
@@ -57,7 +57,7 @@
57
57
  "@primer/behaviors": "^1.3.6",
58
58
  "@teamturing/icons": "^1.43.0",
59
59
  "@teamturing/token-studio": "^1.7.0",
60
- "@teamturing/utils": "^1.3.0",
60
+ "@teamturing/utils": "^1.4.0",
61
61
  "framer-motion": "^10.16.4",
62
62
  "lodash.debounce": "^4.0.8",
63
63
  "lodash.throttle": "^4.1.1",
@@ -66,5 +66,5 @@
66
66
  "react-textarea-autosize": "^8.5.3",
67
67
  "styled-system": "^5.1.5"
68
68
  },
69
- "gitHead": "583fce93dc916787ee7b22c77c3f81d287aefdb1"
69
+ "gitHead": "f249aab27e3757a30c9bde998cd0a55cb8eee2e0"
70
70
  }