@uniai-fe/uds-primitives 0.3.49 → 0.3.51
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
|
@@ -1341,10 +1341,6 @@
|
|
|
1341
1341
|
max-width: 100%;
|
|
1342
1342
|
}
|
|
1343
1343
|
|
|
1344
|
-
.calendar-trigger {
|
|
1345
|
-
width: 100%;
|
|
1346
|
-
}
|
|
1347
|
-
|
|
1348
1344
|
.calendar-container {
|
|
1349
1345
|
display: grid;
|
|
1350
1346
|
gap: var(--spacing-gap-3);
|
|
@@ -4494,10 +4490,10 @@ figure.chip {
|
|
|
4494
4490
|
height: var(--table-line-cell-height-body);
|
|
4495
4491
|
}
|
|
4496
4492
|
.table[data-layout=line] :where(.table-body) :where(.table-native-cell):where(.table-th) :where(.table-native-cell-text) {
|
|
4497
|
-
|
|
4493
|
+
--table-th-text-weight: 600;
|
|
4498
4494
|
}
|
|
4499
4495
|
.table[data-layout=line] :where(.table-body) :where(.table-native-cell):where(.table-th) :where(.table-cell-text) {
|
|
4500
|
-
|
|
4496
|
+
--table-th-text-weight: 600;
|
|
4501
4497
|
}
|
|
4502
4498
|
.table[data-layout=line] :where(.table-foot) :where(.table-native-cell):where(.table-td) {
|
|
4503
4499
|
height: var(--table-line-cell-height-body);
|
package/package.json
CHANGED
|
@@ -112,6 +112,13 @@ const CalendarRoot = forwardRef<HTMLElement, CalendarRootProps>(
|
|
|
112
112
|
alignOffset={alignOffset}
|
|
113
113
|
withPortal={withPortal}
|
|
114
114
|
portalContainer={portalContainer}
|
|
115
|
+
onInteractOutside={event => {
|
|
116
|
+
// 변경 설명: trigger 클릭은 outside dismiss에서 제외해 close 후 즉시 reopen 경합을 방지한다.
|
|
117
|
+
const nextTarget = event.target as HTMLElement | null;
|
|
118
|
+
if (nextTarget?.closest(".calendar-trigger")) {
|
|
119
|
+
event.preventDefault();
|
|
120
|
+
}
|
|
121
|
+
}}
|
|
115
122
|
>
|
|
116
123
|
{/* calendar 스킨 class는 content 내부에 고정한다. */}
|
|
117
124
|
<div className="calendar-root">{calendarNode}</div>
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
:where(.table-native-cell) {
|
|
83
83
|
&:where(.table-th) {
|
|
84
84
|
:where(.table-native-cell-text) {
|
|
85
|
-
|
|
85
|
+
--table-th-text-weight: 600;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
:where(.table-cell-text) {
|
|
89
|
-
|
|
89
|
+
--table-th-text-weight: 600;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|