buncord-transcript 1.0.0 → 1.0.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.
@@ -1,695 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Transcript - ticket-001</title>
7
- <style>
8
-
9
- @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
10
- @import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');
11
-
12
- :root {
13
- /* Colors - Backgrounds */
14
- --background-primary: #313338;
15
- --background-secondary: #2b2d31;
16
- --background-tertiary: #1e1f22;
17
- --background-accent: #404249;
18
- --background-surface-high: #2b2d31;
19
- --background-modifier-hover: rgba(4,4,5,0.07);
20
-
21
- /* Colors - Text */
22
- --text-normal: #dbdee1;
23
- --text-muted: #949ba4;
24
- --text-link: #00a8fc;
25
- --header-primary: #f2f3f5;
26
- --header-secondary: #b5bac1;
27
-
28
- /* Colors - Interactive */
29
- --interactive-normal: #b5bac1;
30
- --interactive-hover: #dbdee1;
31
- --interactive-active: #ffffff;
32
-
33
- /* Colors - Brand & Status */
34
- --brand-experiment: #5865F2;
35
- --danger: #da373c;
36
- --positive: #23a559;
37
- --warning: #f0b232;
38
-
39
- /* Colors - Buttons (HSL) */
40
- --button-primary-bg: hsl(234.935 85.556% 64.706% / 1);
41
- --button-secondary-bg: hsl(240 4% 60.784% / 0.12);
42
- --button-success-bg: hsl(145.97 100% 26.275% / 1);
43
- --button-destructive-bg: hsl(355.636 64.706% 50% / 1);
44
-
45
- /* Components */
46
- --border-subtle: rgba(78, 80, 88, 0.48);
47
- --separator-color: #4f5359;
48
- --mention-bg: rgba(88, 101, 242, 0.3);
49
- --mention-hover-bg: rgba(88, 101, 242, 0.6);
50
-
51
- /* Spacing & Layout */
52
- --space-xxs: 2px;
53
- --space-xs: 4px;
54
- --space-sm: 8px;
55
- --space-md: 16px;
56
-
57
- /* Radii */
58
- --radius-xs: 4px;
59
- --radius-sm: 8px;
60
- --radius-round: 50%;
61
- }
62
-
63
- * { box-sizing: border-box; }
64
-
65
- body {
66
- background-color: var(--background-primary);
67
- color: var(--text-normal);
68
- font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
69
- font-size: 16px;
70
- line-height: 1.375rem;
71
- margin: 0;
72
- padding: 0;
73
- overflow-x: hidden;
74
- }
75
-
76
- a { color: var(--text-link); text-decoration: none; }
77
- a:hover { text-decoration: underline; }
78
-
79
- /* Header */
80
- .guild-header {
81
- background-color: var(--background-secondary);
82
- padding: 12px 16px;
83
- box-shadow: 0 1px 0 rgba(4,4,5,0.2), 0 1.5px 0 rgba(6,6,7,0.05), 0 2px 0 rgba(4,4,5,0.05);
84
- display: flex;
85
- align-items: center;
86
- position: sticky;
87
- top: 0;
88
- z-index: 100;
89
- }
90
-
91
- .guild-icon {
92
- width: 48px;
93
- height: 48px;
94
- border-radius: var(--radius-round);
95
- margin-right: 12px;
96
- }
97
-
98
- .guild-info h1 {
99
- font-size: 16px;
100
- line-height: 20px;
101
- font-weight: 600;
102
- color: var(--header-primary);
103
- margin: 0;
104
- }
105
-
106
- .channel-info {
107
- font-size: 14px;
108
- color: var(--header-secondary);
109
- margin: 2px 0 0;
110
- }
111
-
112
- /* Chat Log */
113
- .chatlog { padding: var(--space-md) 0; max-width: 100%; }
114
-
115
- .message-group {
116
- display: flex;
117
- margin-top: 1.0625rem;
118
- padding: var(--space-xxs) var(--space-md);
119
- position: relative;
120
- }
121
-
122
- .message-group:hover { background-color: var(--background-modifier-hover); }
123
-
124
- .author-avatar {
125
- width: 40px;
126
- height: 40px;
127
- border-radius: var(--radius-round);
128
- margin-right: var(--space-md);
129
- margin-top: var(--space-xxs);
130
- cursor: pointer;
131
- user-select: none;
132
- flex-shrink: 0;
133
- }
134
-
135
- .message-content-wrapper { flex: 1; min-width: 0; }
136
-
137
- .message-header {
138
- display: flex;
139
- align-items: center;
140
- line-height: 1.375rem;
141
- min-height: 1.375rem;
142
- }
143
-
144
- .author-name {
145
- font-size: 1rem;
146
- font-weight: 500;
147
- color: var(--header-primary);
148
- margin-right: 0.25rem;
149
- cursor: pointer;
150
- }
151
-
152
- .bot-tag {
153
- background-color: var(--brand-experiment);
154
- color: #fff;
155
- font-size: 0.625rem;
156
- text-transform: uppercase;
157
- vertical-align: top;
158
- height: 0.9375rem;
159
- padding: 0 0.275rem;
160
- border-radius: 0.1875rem;
161
- line-height: 0.9375rem;
162
- font-weight: 500;
163
- margin-left: 0.25rem;
164
- margin-right: 0.25rem;
165
- display: inline-flex;
166
- align-items: center;
167
- gap: 2px;
168
- }
169
-
170
- .timestamp {
171
- font-size: 0.75rem;
172
- color: var(--text-muted);
173
- margin-left: 0.25rem;
174
- font-weight: 400;
175
- }
176
-
177
- .message-body {
178
- font-size: 1rem;
179
- line-height: 1.375rem;
180
- color: var(--text-normal);
181
- white-space: pre-wrap;
182
- word-wrap: break-word;
183
- }
184
-
185
- /* Embeds */
186
- .embed {
187
- display: flex;
188
- max-width: 520px;
189
- background-color: var(--background-secondary);
190
- border-radius: var(--radius-xs);
191
- border-left: 4px solid var(--background-tertiary);
192
- margin-top: var(--space-sm);
193
- padding: var(--space-sm) var(--space-md) var(--space-md) 12px;
194
- flex-direction: column;
195
- box-sizing: border-box;
196
- font-size: 14px;
197
- }
198
-
199
- .embed-grid { display: grid; max-width: 100%; }
200
-
201
- .embed-author {
202
- display: flex;
203
- align-items: center;
204
- margin-bottom: var(--space-sm);
205
- margin-top: var(--space-sm);
206
- color: var(--header-primary);
207
- font-weight: 600;
208
- font-size: 14px;
209
- }
210
-
211
- .embed-author-icon {
212
- width: 24px;
213
- height: 24px;
214
- border-radius: var(--radius-round);
215
- margin-right: var(--space-sm);
216
- }
217
-
218
- .embed-title {
219
- font-size: 16px;
220
- font-weight: 600;
221
- color: var(--header-primary);
222
- margin-bottom: var(--space-xs);
223
- display: inline-block;
224
- }
225
-
226
- .embed-description {
227
- font-size: 14px;
228
- line-height: 18px;
229
- color: var(--text-normal);
230
- white-space: pre-wrap;
231
- margin-bottom: var(--space-sm);
232
- }
233
-
234
- .embed-field { margin-bottom: var(--space-sm); }
235
-
236
- .embed-field-name {
237
- color: var(--text-normal);
238
- font-weight: 600;
239
- margin-bottom: var(--space-xxs);
240
- }
241
-
242
- .embed-field-value {
243
- color: var(--text-normal);
244
- white-space: pre-wrap;
245
- }
246
-
247
- .embed-footer {
248
- margin-top: var(--space-sm);
249
- display: flex;
250
- align-items: center;
251
- font-size: 12px;
252
- color: var(--text-muted);
253
- }
254
- .embed-footer-icon {
255
- width: 20px;
256
- height: 20px;
257
- border-radius: var(--radius-round);
258
- margin-right: var(--space-sm);
259
- }
260
-
261
- .embed-image-large {
262
- margin-top: 10px;
263
- border-radius: var(--radius-xs);
264
- overflow: hidden;
265
- max-width: 100%;
266
- display: block;
267
- }
268
- .embed-image-large img {
269
- max-width: 100%;
270
- max-height: 400px;
271
- object-fit: contain;
272
- }
273
-
274
- .embed-content { width: 100%; }
275
-
276
- /* Attachments */
277
- .attachment {
278
- margin-top: var(--space-sm);
279
- max-width: 520px;
280
- border-radius: 3px;
281
- overflow: hidden;
282
- }
283
-
284
- .attachment-image img {
285
- max-width: 100%;
286
- max-height: 350px;
287
- cursor: pointer;
288
- border-radius: var(--radius-xs);
289
- }
290
-
291
- .mention {
292
- background-color: var(--mention-bg);
293
- color: #dee0fc;
294
- border-radius: 3px;
295
- padding: 0 2px;
296
- font-weight: 500;
297
- }
298
- .mention:hover {
299
- background-color: var(--mention-hover-bg);
300
- text-decoration: none;
301
- color: #fff;
302
- }
303
-
304
- /* Reply Reference */
305
- .reply-reference {
306
- font-size: 0.875rem;
307
- color: var(--text-muted);
308
- margin-bottom: var(--space-xs);
309
- margin-left: 20px;
310
- display: flex;
311
- align-items: center;
312
- position: relative;
313
- }
314
-
315
- .reply-reference::before {
316
- content: "";
317
- display: block;
318
- position: absolute;
319
- top: 50%;
320
- left: -36px;
321
- bottom: 0;
322
- right: 0;
323
- border-top: 2px solid #4e5058;
324
- border-left: 2px solid #4e5058;
325
- border-top-left-radius: 6px;
326
- width: 33px;
327
- height: 10px;
328
- margin-top: -1px;
329
- pointer-events: none;
330
- }
331
-
332
- .reply-user {
333
- font-weight: 600;
334
- margin-right: var(--space-xs);
335
- cursor: pointer;
336
- }
337
- .reply-user:hover { text-decoration: underline; }
338
- .reply-content { opacity: 0.8; }
339
- .reply-avatar {
340
- width: 16px;
341
- height: 16px;
342
- border-radius: var(--radius-round);
343
- margin-right: var(--space-xs);
344
- }
345
-
346
-
347
- /* Discord V2 Component Styles (Design System Implementation) */
348
- .discord-container {
349
- display: flex;
350
- flex-direction: column;
351
- background-color: var(--background-surface-high);
352
- border: 1px solid var(--border-subtle);
353
- border-radius: var(--radius-sm);
354
- padding: var(--space-md);
355
- gap: var(--space-sm);
356
- margin-top: var(--space-sm);
357
- max-width: 520px;
358
- color: var(--text-normal);
359
- font-size: 1rem;
360
- line-height: 1.375rem;
361
- overflow: hidden;
362
- }
363
-
364
- .discord-base-image {
365
- overflow: hidden;
366
- position: relative;
367
- background: var(--background-secondary);
368
- }
369
-
370
- .discord-button {
371
- color: #ffffff !important;
372
- padding: 2px 16px;
373
- border-radius: var(--radius-sm);
374
- text-decoration: none !important;
375
- display: inline-flex;
376
- align-items: center;
377
- justify-content: center;
378
- font-size: 14px;
379
- font-weight: 500;
380
- height: 32px;
381
- min-height: 32px;
382
- min-width: 60px;
383
- cursor: pointer;
384
- font-family: Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;
385
- text-align: center;
386
- box-sizing: border-box;
387
- border: none;
388
- outline: none;
389
- transition: background-color 0.2s ease;
390
- }
391
-
392
- .discord-button-primary { background-color: var(--button-primary-bg); }
393
- .discord-button-secondary { background-color: var(--button-secondary-bg); }
394
- .discord-button-success { background-color: var(--button-success-bg); }
395
- .discord-button-destructive { background-color: var(--button-destructive-bg); }
396
-
397
- .discord-select-menu {
398
- margin-top: var(--space-xxs);
399
- margin-bottom: var(--space-xxs);
400
- position: relative;
401
- width: 100%;
402
- max-width: 500px;
403
- height: 40px;
404
- background-color: var(--background-secondary);
405
- border-radius: var(--radius-xs);
406
- color: var(--interactive-normal);
407
- cursor: pointer;
408
- font-family: Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;
409
- font-size: 14px;
410
- display: flex;
411
- align-items: center;
412
- padding: 0 var(--space-sm);
413
- justify-content: space-between;
414
- box-sizing: border-box;
415
- border: 1px solid var(--background-tertiary);
416
- }
417
-
418
- .discord-media-gallery { display: grid; gap: var(--space-xs); border-radius: var(--radius-sm); overflow: hidden; margin-top: var(--space-sm); }
419
- .discord-separator { width: 100%; display: block; background-color: var(--separator-color); }
420
- .discord-section { display: flex; flexDirection: row; width: 100%; max-width: 500px; margin-top: var(--space-sm); }
421
- .discord-section-content { display: flex; flexDirection: column; width: 100%; }
422
- .discord-section-accessory { display: flex; width: 100%; max-width: 500px; justifyContent: flex-end; alignItems: center; }
423
-
424
- .message-component-group {
425
- display: flex;
426
- flex-wrap: wrap;
427
- gap: var(--space-sm);
428
- margin-top: var(--space-sm);
429
- }
430
-
431
-
432
-
433
- </style>
434
- </head>
435
- <body>
436
-
437
- <header class="guild-header">
438
- <img src="https://cdn.discordapp.com/icons/887462826343510046/c9066666879e69c4fae958155bb3a8f9.png" alt="Guild Icon" class="guild-icon">
439
- <div class="guild-info">
440
- <h1>ticket-001</h1>
441
- <div class="channel-info">Support ticket for User #123</div>
442
- </div>
443
- </header>
444
-
445
- <div class="chatlog">
446
- <div class="message-group" id="message-1">
447
-
448
- <div class="message-content-wrapper">
449
-
450
- <div class="message-header">
451
- <img src="https://cdn.discordapp.com/embed/avatars/0.png" class="author-avatar" alt="Customer">
452
- <span class="author-name" >Customer</span>
453
-
454
- <span class="timestamp">01/25/2026, 09:45 AM</span>
455
- </div>
456
-
457
- <div class="message-body">
458
- Hello, I need help with my account.
459
- </div>
460
-
461
-
462
-
463
-
464
-
465
-
466
-
467
- </div>
468
- </div>
469
- <div class="message-group" id="message-2">
470
-
471
- <div class="message-content-wrapper">
472
-
473
- <div class="message-header">
474
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" class="author-avatar" alt="Support Bot">
475
- <span class="author-name" >Support Bot</span>
476
- <span class="bot-tag"><svg width="10" height="10" viewBox="0 0 16 16" fill="currentColor"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L8 9.19 6.28 7.47a.75.75 0 0 0-1.06 1.06l1.75 1.75Z"></path></svg>APP</span>
477
- <span class="timestamp">01/25/2026, 09:47 AM</span>
478
- </div>
479
-
480
- <div class="message-body">
481
- Hi! <b>Support Bot</b> here. What seems to be the issue?
482
- </div>
483
-
484
-
485
-
486
-
487
-
488
-
489
-
490
- </div>
491
- </div>
492
- <div class="message-group" id="message-3">
493
-
494
- <div class="message-content-wrapper">
495
-
496
- <div class="message-header">
497
- <img src="https://cdn.discordapp.com/embed/avatars/0.png" class="author-avatar" alt="Customer">
498
- <span class="author-name" >Customer</span>
499
-
500
- <span class="timestamp">01/25/2026, 09:48 AM</span>
501
- </div>
502
-
503
- <div class="message-body">
504
- I cannot login. Here is a screenshot:
505
- </div>
506
-
507
- <div class="attachment attachment-image">
508
- <a href="https://via.placeholder.com/350x150" target="_blank"><img src="https://via.placeholder.com/350x150" alt="screenshot.png"></a>
509
- </div>
510
-
511
-
512
-
513
-
514
-
515
-
516
- </div>
517
- </div>
518
- <div class="message-group" id="message-4">
519
-
520
- <div class="message-content-wrapper">
521
-
522
- <div class="message-header">
523
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" class="author-avatar" alt="Support Bot">
524
- <span class="author-name" >Support Bot</span>
525
- <span class="bot-tag"><svg width="10" height="10" viewBox="0 0 16 16" fill="currentColor"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L8 9.19 6.28 7.47a.75.75 0 0 0-1.06 1.06l1.75 1.75Z"></path></svg>APP</span>
526
- <span class="timestamp">01/25/2026, 09:52 AM</span>
527
- </div>
528
-
529
- <div class="message-body">
530
-
531
- </div>
532
-
533
-
534
-
535
-
536
-
537
-
538
- <div class="embed" style="border-left-color: #5865f2;">
539
- <div class="embed-content">
540
- <div class="embed-author">
541
-
542
-
543
-
544
- </div>
545
-
546
- <div class="embed-title">
547
-
548
- Login Troubleshooting
549
- </div>
550
-
551
- <div class="embed-description">Please try the following steps:<br>1. Reset password<br>2. Clear cache</div>
552
-
553
- <div class="embed-fields">
554
- <div class="embed-field">
555
- <div class="embed-field-name">Step 1</div>
556
- <div class="embed-field-value">Click <a href="https://example.com" target="_blank">here</a> to reset.</div>
557
- </div>
558
- <div class="embed-field">
559
- <div class="embed-field-name">Step 2</div>
560
- <div class="embed-field-value">Settings &gt; Privacy &gt; Clear</div>
561
- </div>
562
- </div>
563
-
564
-
565
- <div class="embed-footer">
566
-
567
- <span>Automated Response • 01/25/2026, 09:52 AM</span>
568
- </div>
569
- </div>
570
- </div>
571
-
572
- </div>
573
- </div>
574
- <div class="message-group" id="message-5">
575
-
576
- <div class="message-content-wrapper">
577
-
578
- <div class="message-header">
579
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" class="author-avatar" alt="Support Bot">
580
- <span class="author-name" >Support Bot</span>
581
- <span class="bot-tag"><svg width="10" height="10" viewBox="0 0 16 16" fill="currentColor"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L8 9.19 6.28 7.47a.75.75 0 0 0-1.06 1.06l1.75 1.75Z"></path></svg>APP</span>
582
- <span class="timestamp">01/25/2026, 10:02 AM</span>
583
- </div>
584
-
585
- <div class="message-body">
586
- This message uses the new <b>Container</b> component:
587
- </div>
588
-
589
-
590
- <div class="discord-container">
591
- **Container Title**
592
- This is content inside a container.
593
- It has a different style than embeds.
594
- </div>
595
-
596
-
597
-
598
-
599
-
600
- </div>
601
- </div>
602
- <div class="message-group" id="message-6">
603
-
604
- <div class="message-content-wrapper">
605
-
606
- <div class="message-header">
607
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" class="author-avatar" alt="Support Bot">
608
- <span class="author-name" >Support Bot</span>
609
- <span class="bot-tag"><svg width="10" height="10" viewBox="0 0 16 16" fill="currentColor"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L8 9.19 6.28 7.47a.75.75 0 0 0-1.06 1.06l1.75 1.75Z"></path></svg>APP</span>
610
- <span class="timestamp">01/25/2026, 10:02 AM</span>
611
- </div>
612
-
613
- <div class="message-body">
614
- This message has interactive <b>components</b>:
615
- </div>
616
-
617
-
618
-
619
- <div class="message-component-group">
620
-
621
- <button class="discord-button discord-button-primary" type="button" >
622
- <span style="display: flex; align-items: center;"><img src="https://cdn.discordapp.com/emojis/123456789.webp?size=44&quality=lossless" alt="User" style="width: 16px; height: 16px; margin-right: 8px;"></span>
623
-
624
- <span style="display: flex; align-items: center;">Claim Ticket</span>
625
- </button>
626
-
627
-
628
-
629
- <button class="discord-button discord-button-destructive" type="button" >
630
-
631
- <span style="display: flex; align-items: center; margin-right: 8px;">🔒</span>
632
- <span style="display: flex; align-items: center;">Close Ticket</span>
633
- </button>
634
-
635
-
636
- </div>
637
- <div class="message-component-group">
638
-
639
-
640
- <div class="discord-select-menu">
641
- <div style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">Select a category...</div>
642
- <div style="display: flex; align-items: center; margin-left: 8px;">
643
- <svg width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M7 10L12 15L17 10H7Z" /></svg>
644
- </div>
645
- </div>
646
-
647
- </div>
648
-
649
- <div class="discord-media-gallery" style="grid-template-columns: repeat(3, 1fr);">
650
- <div class="discord-base-image" style="aspect-ratio: 16/9;">
651
- <img src="https://cdn.discordapp.com/embed/avatars/0.png" alt="Gallery Image 1" style="width: 100%; height: 100%; object-fit: cover;">
652
- </div>
653
- <div class="discord-base-image" style="aspect-ratio: 16/9;">
654
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" alt="Gallery Image 2" style="width: 100%; height: 100%; object-fit: cover;">
655
- </div>
656
- <div class="discord-base-image" style="aspect-ratio: 16/9;">
657
- <img src="https://cdn.discordapp.com/embed/avatars/2.png" alt="Gallery Image 3" style="width: 100%; height: 100%; object-fit: cover;">
658
- </div>
659
- </div>
660
-
661
- <div class="discord-separator" style="height: 1px; margin: 8px 0;"></div>
662
-
663
-
664
- </div>
665
- </div>
666
- <div class="message-group" id="message-7">
667
-
668
- <div class="message-content-wrapper">
669
-
670
- <div class="message-header">
671
- <img src="https://cdn.discordapp.com/embed/avatars/1.png" class="author-avatar" alt="Support Bot">
672
- <span class="author-name" >Support Bot</span>
673
- <span class="bot-tag"><svg width="10" height="10" viewBox="0 0 16 16" fill="currentColor"><path d="M7.47 10.78a.75.75 0 0 0 1.06 0l4.25-4.25a.75.75 0 0 0-1.06-1.06L8 9.19 6.28 7.47a.75.75 0 0 0-1.06 1.06l1.75 1.75Z"></path></svg>APP</span>
674
- <span class="timestamp">01/25/2026, 10:02 AM</span>
675
- </div>
676
-
677
- <div class="message-body">
678
- This message uses V2 Components (Type 17 Container):
679
- </div>
680
-
681
-
682
- <div class="discord-container">
683
- <div class="discord-section"><div class="discord-section-content"><b>Text Display</b> inside container.</div></div><div class="discord-separator" style="height: 1px; margin: 4px 0;"></div><div class="message-component-group"><button class="discord-button discord-button-primary" type="button" ><span style="display: flex; align-items: center;">Button Inside</span></button></div>
684
- </div>
685
-
686
-
687
-
688
-
689
-
690
- </div>
691
- </div>
692
- </div>
693
-
694
- </body>
695
- </html>