@rchemist/listgrid 0.2.17 → 0.2.18
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/components.css +4 -1
- package/dist/styles.css +4 -1
- package/package.json +1 -1
|
@@ -1429,7 +1429,10 @@
|
|
|
1429
1429
|
.rcm-table td {
|
|
1430
1430
|
padding: var(--rcm-space-sm) var(--rcm-space-md);
|
|
1431
1431
|
border-bottom: var(--rcm-border-width) solid var(--rcm-color-border);
|
|
1432
|
-
text-align
|
|
1432
|
+
/* text-align 은 ViewColumn / HeaderField 가 .text-left / .text-center / .text-right
|
|
1433
|
+
utility 로 셀 단위로 지정한다. 여기에 default `text-align: left` 를 두면 utility
|
|
1434
|
+
보다 specificity 가 높아 (0,1,1) vs (0,1,0) getListFieldAlignType() 의 center
|
|
1435
|
+
정렬이 무력화된다. 브라우저 기본 th/td 가 이미 left 라 default 가 필요 없다. */
|
|
1433
1436
|
}
|
|
1434
1437
|
|
|
1435
1438
|
.rcm-table th {
|
package/dist/styles.css
CHANGED
|
@@ -6398,7 +6398,10 @@
|
|
|
6398
6398
|
.rcm-table td {
|
|
6399
6399
|
padding: var(--rcm-space-sm) var(--rcm-space-md);
|
|
6400
6400
|
border-bottom: var(--rcm-border-width) solid var(--rcm-color-border);
|
|
6401
|
-
text-align
|
|
6401
|
+
/* text-align 은 ViewColumn / HeaderField 가 .text-left / .text-center / .text-right
|
|
6402
|
+
utility 로 셀 단위로 지정한다. 여기에 default `text-align: left` 를 두면 utility
|
|
6403
|
+
보다 specificity 가 높아 (0,1,1) vs (0,1,0) getListFieldAlignType() 의 center
|
|
6404
|
+
정렬이 무력화된다. 브라우저 기본 th/td 가 이미 left 라 default 가 필요 없다. */
|
|
6402
6405
|
}
|
|
6403
6406
|
|
|
6404
6407
|
.rcm-table th {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rchemist/listgrid",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.18",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Framework-free React CRUD UI engine — primitive-based design system, data-attr theming, and a full list/form renderer for RCM-framework-style entity backends.",
|
|
6
6
|
"keywords": [
|