@teamturing/react-kit 2.32.5 → 2.32.6
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamturing/react-kit",
|
|
3
|
-
"version": "2.32.
|
|
3
|
+
"version": "2.32.6",
|
|
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": "
|
|
69
|
+
"gitHead": "bfc5e130d8a1197200298af50fcbf5cdefa439ab"
|
|
70
70
|
}
|