@uniai-fe/uds-primitives 0.3.1 → 0.3.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.
package/dist/styles.css
CHANGED
|
@@ -3919,6 +3919,11 @@ figure.chip {
|
|
|
3919
3919
|
height: var(--table-line-cell-height-body);
|
|
3920
3920
|
}
|
|
3921
3921
|
|
|
3922
|
+
.table.table-container[data-layout=line] .table-body .table-native-cell.table-th .table-native-cell-text,
|
|
3923
|
+
.table.table-container[data-layout=line] .table-body .table-native-cell.table-th .table-cell-text {
|
|
3924
|
+
font-weight: 600;
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3922
3927
|
.table.table-container[data-layout=grid] .table-native-cell.table-th,
|
|
3923
3928
|
.table.table-container[data-layout=grid] .table-native-cell.table-td {
|
|
3924
3929
|
--table-cell-padding-inline: var(--table-grid-cell-padding-inline);
|
package/package.json
CHANGED
|
@@ -37,6 +37,18 @@
|
|
|
37
37
|
height: var(--table-line-cell-height-body);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
// 변경: line(list) 타입에서 tbody th 셀 텍스트를 600으로 고정한다.
|
|
41
|
+
.table.table-container[data-layout="line"]
|
|
42
|
+
.table-body
|
|
43
|
+
.table-native-cell.table-th
|
|
44
|
+
.table-native-cell-text,
|
|
45
|
+
.table.table-container[data-layout="line"]
|
|
46
|
+
.table-body
|
|
47
|
+
.table-native-cell.table-th
|
|
48
|
+
.table-cell-text {
|
|
49
|
+
font-weight: 600;
|
|
50
|
+
}
|
|
51
|
+
|
|
40
52
|
// 변경: grid 타입은 모든 셀 border와 헤더 배경을 기본 제공한다.
|
|
41
53
|
.table.table-container[data-layout="grid"] .table-native-cell.table-th,
|
|
42
54
|
.table.table-container[data-layout="grid"] .table-native-cell.table-td {
|