sales-frontend-components 0.0.58 → 0.0.59

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.
@@ -69,8 +69,7 @@
69
69
 
70
70
  .single-photo-item {
71
71
  position: relative;
72
- width: 187px;
73
- height: 187px;
72
+ width: 100%;
74
73
  aspect-ratio: 1;
75
74
  overflow: hidden;
76
75
  border-radius: radius-basic(xlarge);
@@ -78,8 +77,7 @@
78
77
 
79
78
  .photo-item {
80
79
  position: relative;
81
- width: 187px;
82
- height: 187px;
80
+ width: 100%;
83
81
  aspect-ratio: 1;
84
82
  overflow: hidden;
85
83
  border-radius: radius-basic(xlarge);
@@ -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
+ }