sales-frontend-components 0.0.77 → 0.0.79
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/data-table/data-table.module.scss +46 -0
- package/dist/debug-tool/debug-tool.module.scss +212 -0
- package/dist/debug-tool/features/network-log/network-log.module.scss +22 -0
- package/dist/index.cjs.js +408 -59
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +16 -2
- package/dist/index.esm.js +409 -62
- package/dist/index.esm.js.map +1 -1
- package/dist/modal/pre-standard/employee-search-modal/employee-search-modal.module.scss +95 -0
- package/dist/modal/pre-standard/organization-search-modal/organization-search-modal.module.scss +100 -0
- package/package.json +10 -10
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@use 'sales-frontend-design-system/design-system-context' as *;
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// 리사이징 중일 때 시각적 피드백
|
|
5
|
+
.is-resizing {
|
|
6
|
+
color: colors(text-body_1);
|
|
7
|
+
background-color: colors(surface-neutral_3);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
// 🎨 리사이징 핸들 스타일
|
|
12
|
+
.resize-handle {
|
|
13
|
+
position: absolute;
|
|
14
|
+
top: 0;
|
|
15
|
+
right: 0;
|
|
16
|
+
width: 5px; // 핸들 너비 (실제로는 투명)
|
|
17
|
+
height: 100%;
|
|
18
|
+
touch-action: none; // 모바일 터치 이벤트 제어
|
|
19
|
+
cursor: col-resize; // 커서 모양 변경
|
|
20
|
+
user-select: none; // 드래그 중 텍스트 선택 방지
|
|
21
|
+
|
|
22
|
+
// 핸들 오른쪽에 구분선 효과 추가
|
|
23
|
+
// &::after {
|
|
24
|
+
// position: absolute;
|
|
25
|
+
// top: 25%;
|
|
26
|
+
// right: 2px;
|
|
27
|
+
// width: 1px;
|
|
28
|
+
// height: 50%;
|
|
29
|
+
// content: '';
|
|
30
|
+
// background-color: #c0c0c0;
|
|
31
|
+
// transition: background-color 0.2s ease;
|
|
32
|
+
// }
|
|
33
|
+
|
|
34
|
+
// 핸들에 호버하거나, 부모 th가 리사이징 중일 때 구분선 강조
|
|
35
|
+
// &:hover::after,
|
|
36
|
+
// :global(.is-resizing) &::after {
|
|
37
|
+
// background-color: #2979ff; // 활성화 색상
|
|
38
|
+
// }
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// 🎨 피드백 메시지 셀 (Loading, No Data 등)
|
|
42
|
+
.feedback-cell {
|
|
43
|
+
padding: 48px;
|
|
44
|
+
color: #757575;
|
|
45
|
+
text-align: center;
|
|
46
|
+
}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
@use 'sales-frontend-design-system/design-system-context' as *;
|
|
2
|
+
|
|
3
|
+
.debug-tool-container {
|
|
4
|
+
position: fixed;
|
|
5
|
+
right: spacing(20);
|
|
6
|
+
bottom: spacing(20);
|
|
7
|
+
z-index: 9999;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.debug-floating-button {
|
|
11
|
+
position: fixed;
|
|
12
|
+
right: 10px;
|
|
13
|
+
bottom: 80px;
|
|
14
|
+
border-radius: 50%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.debug-menu-panel {
|
|
18
|
+
position: fixed;
|
|
19
|
+
right: spacing(20);
|
|
20
|
+
bottom: spacing(90); /* 버튼 위로 오도록 */
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
width: 350px;
|
|
24
|
+
max-height: 500px;
|
|
25
|
+
background-color: colors(background-100);
|
|
26
|
+
border: 1px solid colors(border-neutral_3);
|
|
27
|
+
border-radius: radius-basic(medium);
|
|
28
|
+
box-shadow: shadow(medium);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.panel-header {
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: space-between;
|
|
35
|
+
padding: spacing(10) spacing(15);
|
|
36
|
+
background-color: colors(background-200);
|
|
37
|
+
border-bottom: 1px solid colors(border-neutral_2);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.panel-header h2 {
|
|
41
|
+
margin: 0;
|
|
42
|
+
font-size: font-size(subtitle3);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* --- Console Log Panel --- */
|
|
46
|
+
.log-list-container {
|
|
47
|
+
flex: 1;
|
|
48
|
+
padding: spacing(10);
|
|
49
|
+
overflow-y: auto;
|
|
50
|
+
font-family: monospace;
|
|
51
|
+
font-size: font-size(body4);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.log-item {
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: flex-start;
|
|
57
|
+
padding: spacing(4) spacing(0);
|
|
58
|
+
border-bottom: 1px solid colors(border-neutral_2);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.log-timestamp {
|
|
62
|
+
margin-right: spacing(10);
|
|
63
|
+
color: colors(text-neutral_1);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.log-message {
|
|
67
|
+
margin: 0;
|
|
68
|
+
word-break: break-all;
|
|
69
|
+
white-space: pre-wrap;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.log-log {
|
|
73
|
+
color: colors(text-body);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.log-info {
|
|
77
|
+
color: colors(additional-semantic_1);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.log-warn {
|
|
81
|
+
color: colors(additional-semantic_3);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.log-error {
|
|
85
|
+
color: colors(additional-semantic_2);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.log-debug {
|
|
89
|
+
color: colors(text-neutral_2);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.log-return {
|
|
93
|
+
color: #8a2be2; // Keep as is if no direct mapping
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* --- Storage Panel --- */
|
|
97
|
+
.storage-table-container {
|
|
98
|
+
flex: 1;
|
|
99
|
+
overflow-y: auto;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.storage-table {
|
|
103
|
+
/* Keep for custom table styles if needed, otherwise remove */
|
|
104
|
+
width: 100%;
|
|
105
|
+
font-size: font-size(body4);
|
|
106
|
+
border-collapse: collapse;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.storage-row {
|
|
110
|
+
/* Keep for custom row styles if needed */
|
|
111
|
+
border-bottom: 1px solid colors(border-neutral_2);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.storage-key,
|
|
115
|
+
.storage-value,
|
|
116
|
+
.storage-actions {
|
|
117
|
+
/* Keep for custom cell styles if needed */
|
|
118
|
+
padding: spacing(8) spacing(12);
|
|
119
|
+
text-align: left;
|
|
120
|
+
word-break: break-all;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.storage-search-input {
|
|
124
|
+
/* New class for TextField in StoragePanel */
|
|
125
|
+
width: 100%;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/* --- Login Panel --- */
|
|
129
|
+
.login-form-container {
|
|
130
|
+
display: flex;
|
|
131
|
+
flex: 1;
|
|
132
|
+
flex-direction: column;
|
|
133
|
+
gap: spacing(15);
|
|
134
|
+
padding: spacing(20);
|
|
135
|
+
overflow-y: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.form-actions {
|
|
139
|
+
display: flex;
|
|
140
|
+
justify-content: flex-end;
|
|
141
|
+
margin-top: spacing(10);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* --- Script Executor Panel --- */
|
|
145
|
+
.script-executor-panel .panel-header {
|
|
146
|
+
flex-shrink: 0;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.script-executor-content {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex: 1;
|
|
152
|
+
flex-direction: column;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.script-input-section {
|
|
157
|
+
display: flex;
|
|
158
|
+
flex: 1;
|
|
159
|
+
flex-direction: column;
|
|
160
|
+
min-height: 150px;
|
|
161
|
+
border-bottom: 1px solid colors(border-neutral_3);
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.script-textarea {
|
|
165
|
+
flex: 1;
|
|
166
|
+
width: 100%;
|
|
167
|
+
padding: spacing(10);
|
|
168
|
+
font-family: monospace;
|
|
169
|
+
font-size: font-size(body3);
|
|
170
|
+
resize: none;
|
|
171
|
+
outline: none;
|
|
172
|
+
border: none;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.script-actions {
|
|
176
|
+
display: flex;
|
|
177
|
+
justify-content: flex-end;
|
|
178
|
+
padding: spacing(8);
|
|
179
|
+
border-top: 1px solid colors(border-neutral_2);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.script-output-section {
|
|
183
|
+
display: flex;
|
|
184
|
+
flex: 1;
|
|
185
|
+
flex-direction: column;
|
|
186
|
+
overflow: hidden;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.script-output-section .panel-header {
|
|
190
|
+
padding: spacing(8) spacing(15);
|
|
191
|
+
background-color: colors(background-200);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.script-output-section .log-list-container {
|
|
195
|
+
background-color: colors(background-100);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/* --- Page Navigation Panel --- */
|
|
199
|
+
.page-navigation-content {
|
|
200
|
+
display: flex;
|
|
201
|
+
gap: spacing(10);
|
|
202
|
+
align-items: center;
|
|
203
|
+
padding: spacing(20);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.log-content {
|
|
207
|
+
padding: 8px;
|
|
208
|
+
word-break: break-all;
|
|
209
|
+
white-space: pre-wrap;
|
|
210
|
+
background-color: #f5f5f5;
|
|
211
|
+
border-radius: 4px;
|
|
212
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.search-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
gap: 8px;
|
|
4
|
+
margin-bottom: 16px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.log-list {
|
|
8
|
+
max-height: 60vh;
|
|
9
|
+
overflow-y: auto;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.log-summary {
|
|
13
|
+
word-break: break-all;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.log-content {
|
|
17
|
+
padding: 8px;
|
|
18
|
+
word-break: break-all;
|
|
19
|
+
white-space: pre-wrap;
|
|
20
|
+
background-color: #f5f5f5;
|
|
21
|
+
border-radius: 4px;
|
|
22
|
+
}
|