testio-tailwind 3.7.0 → 3.8.0
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/package.json +1 -1
- package/src/_includes/page-with-sidebar-dark.njk +48 -0
- package/src/_layouts/page-example-agenticqa.njk +1 -1
- package/src/assets/images/profilepic_testinator.png +0 -0
- package/src/assets/stylesheets/app.css +1 -0
- package/src/assets/stylesheets/components/chat.css +115 -7
- package/src/assets/stylesheets/components/divider.css +3 -0
- package/src/assets/stylesheets/components/layout.css +1 -1
- package/src/assets/stylesheets/components/list_item.css +34 -1
- package/src/assets/stylesheets/components/lists.css +2 -2
- package/src/assets/stylesheets/components/splitview.css +11 -2
- package/src/assets/stylesheets/components/tags.css +22 -7
- package/src/assets/stylesheets/components/typography.css +1 -1
- package/src/assets/stylesheets/components/uploads.css +1 -1
- package/src/assets/stylesheets/tailwind_config.css +2 -0
- package/src/assets/stylesheets/tailwind_theme_dark.css +3 -2
- package/src/pages/agenticqa/chat_collapsable.haml +29 -0
- package/src/pages/agenticqa/chat_form.haml +15 -0
- package/src/pages/agenticqa/chat_history.haml +24 -0
- package/src/pages/agenticqa/chat_messages.haml +53 -0
- package/src/pages/agenticqa/index.njk +1 -1
- package/src/pages/agenticqa/listitem.haml +42 -0
- package/src/pages/components/tags.haml +11 -1
- package/src/pages/examples/agenticqa.haml +152 -2
- package/src/static/app.compiled.css +0 -20627
- package/src/static/app.compiled.css.map +0 -1
package/package.json
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
<nav class="sidebar manager">
|
|
3
|
+
<div class="navlinks">
|
|
4
|
+
{% set sortedSections = collection | sort(attribute='data.title') %}
|
|
5
|
+
{% for section in sortedSections %}
|
|
6
|
+
<a class="navlink" href="#{{ section.data.title }}">{{ section.data.title }}</a>
|
|
7
|
+
{% endfor %}
|
|
8
|
+
</div>
|
|
9
|
+
</nav>
|
|
10
|
+
|
|
11
|
+
<main tabindex="-1" id="main-content" class="main-content main-content-padding">
|
|
12
|
+
<article class="">
|
|
13
|
+
|
|
14
|
+
{% for item in navigation.items %}
|
|
15
|
+
{% if page.url == item.url %}
|
|
16
|
+
<h1 class="mb-heading">{{ item.text }}</h1>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{% endfor %}
|
|
19
|
+
|
|
20
|
+
{% set sortedSections = collection | sort(attribute='data.title') %}
|
|
21
|
+
{% for section in sortedSections %}
|
|
22
|
+
<section class="section" id="{{ section.data.title }}">
|
|
23
|
+
<div class="section-header">
|
|
24
|
+
<h4 class="section-title">{{ section.data.title }}</h2>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
{% if section.data.type == 'block' %}
|
|
28
|
+
{% set direction = 'y' %}
|
|
29
|
+
{% else %}
|
|
30
|
+
{% set direction = 'x' %}
|
|
31
|
+
{% endif %}
|
|
32
|
+
{{ section.templateContent | safe }}
|
|
33
|
+
|
|
34
|
+
<details class="mt-3">
|
|
35
|
+
<summary class="btn btn-sm btn-secondary inline-block cursor-pointer mb-2">
|
|
36
|
+
Show source
|
|
37
|
+
</summary>
|
|
38
|
+
<div class="prose max-w-none bg-gray-light p-2 rounded mb-1">
|
|
39
|
+
<pre><code class="html-preview">{{ section.templateContent | trim }}</code></pre>
|
|
40
|
+
</div>
|
|
41
|
+
</details>
|
|
42
|
+
</section>
|
|
43
|
+
{%- endfor -%}
|
|
44
|
+
</article>
|
|
45
|
+
</main>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
Binary file
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
@import './components/chat.css' layer(components);
|
|
31
31
|
@import './components/checkboxes_radiobuttons.css' layer(components);
|
|
32
32
|
@import './components/devices.css' layer(components);
|
|
33
|
+
@import './components/divider.css' layer(components);
|
|
33
34
|
@import './components/drawer.css' layer(components);
|
|
34
35
|
@import './components/dropdown.css' layer(components);
|
|
35
36
|
@import './components/emptystate_message.css' layer(components);
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
.list-chat-messages {
|
|
2
|
-
@apply grid gap-md;
|
|
2
|
+
@apply grid grid-cols-1 gap-md;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.list-chat-messages.full-width .chat-message-item {
|
|
6
|
+
@apply max-w-full;
|
|
3
7
|
}
|
|
4
8
|
|
|
5
9
|
.chat-message-item {
|
|
@@ -11,16 +15,23 @@
|
|
|
11
15
|
grid-template-columns: auto auto 1fr;
|
|
12
16
|
}
|
|
13
17
|
|
|
18
|
+
.dark .chat-message-item {
|
|
19
|
+
grid-template-areas: "chat-avatar chat-header"
|
|
20
|
+
"chat-avatar chat-message";
|
|
21
|
+
grid-template-columns: auto auto 1fr;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
14
25
|
.chat-avatar {
|
|
15
26
|
grid-area: chat-avatar;
|
|
16
27
|
}
|
|
17
28
|
|
|
18
29
|
img.chat-avatar {
|
|
19
|
-
@apply w-spacing h-spacing mr-xs rounded-full;
|
|
30
|
+
@apply w-spacing h-spacing mr-xs rounded-full dark:mr-md;
|
|
20
31
|
}
|
|
21
32
|
|
|
22
33
|
.chat-header {
|
|
23
|
-
@apply flex text-label py-xxs text-label-color;
|
|
34
|
+
@apply relative flex text-label py-xxs text-label-color dark:justify-between dark:px-sm dark:py-xs dark:bg-listitem dark:rounded-t;
|
|
24
35
|
grid-area: chat-header;
|
|
25
36
|
line-height: 1.3;
|
|
26
37
|
}
|
|
@@ -30,11 +41,15 @@ img.chat-avatar {
|
|
|
30
41
|
}
|
|
31
42
|
|
|
32
43
|
.chat-message {
|
|
33
|
-
@apply p-xs rounded bg-card dark:bg-
|
|
44
|
+
@apply p-xs rounded bg-card dark:w-full dark:px-sm dark:pt-0 dark:rounded-t-none dark:bg-listitem;
|
|
34
45
|
grid-area: chat-message;
|
|
35
46
|
min-width: 0;
|
|
36
47
|
}
|
|
37
48
|
|
|
49
|
+
.chat-message-item .chat-title {
|
|
50
|
+
@apply dark:grow shrink-0 dark:mr-md;
|
|
51
|
+
}
|
|
52
|
+
|
|
38
53
|
.chat-message .message-banner {
|
|
39
54
|
@apply relative flex flex-row items-center py-xxs pl-xs -mx-xs -mt-xs mb-xs text-white bg-info border-b border-white rounded-t;
|
|
40
55
|
&::before {
|
|
@@ -101,6 +116,7 @@ img.chat-avatar {
|
|
|
101
116
|
/*///// Your message /////*/
|
|
102
117
|
|
|
103
118
|
.chat-message-item.your-message {
|
|
119
|
+
@apply dark:pl-lg;
|
|
104
120
|
grid-template-areas: "chat-header chat-header chat-avatar "
|
|
105
121
|
"chat-actions chat-message chat-avatar";
|
|
106
122
|
grid-template-columns: 1fr auto auto;
|
|
@@ -108,7 +124,7 @@ img.chat-avatar {
|
|
|
108
124
|
}
|
|
109
125
|
|
|
110
126
|
.chat-message-item.your-message img.chat-avatar {
|
|
111
|
-
@apply ml-xs mr-0;
|
|
127
|
+
@apply ml-xs mr-0 dark:ml-md;
|
|
112
128
|
}
|
|
113
129
|
|
|
114
130
|
.chat-message-item.your-message .chat-actions {
|
|
@@ -116,12 +132,16 @@ img.chat-avatar {
|
|
|
116
132
|
}
|
|
117
133
|
|
|
118
134
|
.chat-message-item.your-message .chat-header {
|
|
119
|
-
@apply justify-end;
|
|
135
|
+
@apply justify-end dark:justify-between;
|
|
120
136
|
text-align: end;
|
|
121
137
|
}
|
|
122
138
|
|
|
139
|
+
.chat-message-item.your-message .chat-title {
|
|
140
|
+
@apply dark:text-left;
|
|
141
|
+
}
|
|
142
|
+
|
|
123
143
|
.chat-message-item.your-message .chat-message {
|
|
124
|
-
@apply text-white bg-primary dark:bg-
|
|
144
|
+
@apply text-white bg-primary dark:bg-listitem;
|
|
125
145
|
}
|
|
126
146
|
|
|
127
147
|
.chat-message-item.your-message .chat-message-addons .btn {
|
|
@@ -267,3 +287,91 @@ img.chat-avatar {
|
|
|
267
287
|
@apply absolute bottom-md sm:bottom-spacing right-xxs;
|
|
268
288
|
z-index: 1;
|
|
269
289
|
}
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
/*///// Collapsable message /////*/
|
|
293
|
+
|
|
294
|
+
.chat-message-item.collapsable {
|
|
295
|
+
@apply grid-cols-2 cursor-pointer;
|
|
296
|
+
grid-template-columns: auto 1fr;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.chat-message-item.collapsable.your-message {
|
|
300
|
+
@apply w-full;
|
|
301
|
+
grid-template-columns: 1fr auto;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.chat-message-item.collapsable > details {
|
|
305
|
+
@apply col-span-2;
|
|
306
|
+
grid-area: chat-header;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.chat-message-item.collapsable > details .chat-header {
|
|
310
|
+
@apply rounded-b cursor-pointer;
|
|
311
|
+
padding-left: 40px;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.chat-message-item.collapsable > details summary::before {
|
|
315
|
+
@apply absolute inline-block shrink-0 w-icon h-icon left-xs mr-xxs bg-label-color;
|
|
316
|
+
content: "";
|
|
317
|
+
mask-repeat: no-repeat;
|
|
318
|
+
mask-image: url("/assets/images/icons/triangle-centered-right.svg");
|
|
319
|
+
top: 8px;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.chat-message-item.collapsable > details[open] .chat-header::before {
|
|
323
|
+
mask-image: url("/assets/images/icons/triangle-centered-down.svg");
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.chat-message-item.collapsable > details[open] .chat-header {
|
|
327
|
+
@apply rounded-b-none;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.chat-action-row {
|
|
331
|
+
@apply flex flex-row pl-lg;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.chat-action-row .btn {
|
|
335
|
+
@apply mr-xs;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
/*///// Chat form /////*/
|
|
340
|
+
|
|
341
|
+
.chat-form-row {
|
|
342
|
+
@apply grid grid-cols-2 pl-lg;
|
|
343
|
+
grid-template-columns: 1fr auto;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.chat-form {
|
|
347
|
+
@apply bg-gray-darkest p-md rounded border border-bordercolor;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.chat-form-row .chat-avatar {
|
|
351
|
+
@apply ml-md mr-0;
|
|
352
|
+
grid-area: initial;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.chat-form .form-actions {
|
|
356
|
+
@apply flex flex-row mt-md;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.chat-form .form-actions .btn {
|
|
360
|
+
@apply mr-xs;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
/*///// Chat form /////*/
|
|
365
|
+
|
|
366
|
+
.chat-history-header {
|
|
367
|
+
@apply flex justify-center items-center w-full text-center text-label font-semibold text-gray-darker uppercase cursor-pointer bg-gray-darkest rounded-full hover:bg-link-hover hover:text-white;
|
|
368
|
+
height: 12px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.chat-history-collapsable[open] .chat-history-header {
|
|
372
|
+
@apply mb-md;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.chat-history-title {
|
|
376
|
+
@apply w-auto px-xs bg-card;
|
|
377
|
+
}
|
|
@@ -71,8 +71,22 @@ a.listitem:hover {
|
|
|
71
71
|
mask-image: url("/assets/images/icons/arrow-up.svg");
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
.dark .listitem .collapse-btn:after {
|
|
75
|
+
@apply w-icon bg-label-color;
|
|
76
|
+
mask-image: url("/assets/images/icons/triangle-centered-left.svg");
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.dark .listitem[open] > .listitem-header .collapse-btn:after {
|
|
80
|
+
mask-image: url("/assets/images/icons/triangle-centered-down.svg");
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dark .listitem .collapse-btn:hover:after {
|
|
84
|
+
@apply bg-white;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
74
88
|
.listitem-badge {
|
|
75
|
-
@apply flex justify-center items-start w-btn p-xxs pt-xs text-white bg-black dark:bg-gray-
|
|
89
|
+
@apply flex justify-center items-start w-btn p-xxs pt-xs text-white dark:font-bold dark:text-heading-5 dark:leading-none bg-black dark:bg-gray-750 rounded-l;
|
|
76
90
|
grid-area: badge;
|
|
77
91
|
}
|
|
78
92
|
|
|
@@ -302,3 +316,22 @@ a.listitem:hover {
|
|
|
302
316
|
.listitem-with-footer .listitem-footer .btn-square {
|
|
303
317
|
@apply flex-auto flex-grow-0 flex-shrink-0;
|
|
304
318
|
}
|
|
319
|
+
|
|
320
|
+
/*///// Attachments /////*/
|
|
321
|
+
|
|
322
|
+
.listitem-attachments {
|
|
323
|
+
@apply grid grid-cols-2 gap-xs place-content-start;
|
|
324
|
+
grid-template-columns: auto auto;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.listitem-attachments .attachment {
|
|
328
|
+
@apply h-full w-auto max-h-spacing-4xl;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.listitem-attachments .attachment .attachment-thumb {
|
|
332
|
+
@apply h-full w-auto;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.listitem-attachments .attachment .attachment-thumb img {
|
|
336
|
+
@apply h-full w-auto;
|
|
337
|
+
}
|
|
@@ -18,12 +18,12 @@ dl dd {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
dl.list-inline {
|
|
21
|
-
@apply grid gap-xs content-start;
|
|
21
|
+
@apply grid gap-xs content-start dark:text-label-color;
|
|
22
22
|
grid-template-columns: auto 1fr;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
dl.list-inline dt {
|
|
26
|
-
@apply pr-spacing;
|
|
26
|
+
@apply pr-spacing dark:pr-xs dark:pt-[2px];
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
dl.list-inline dd {
|
|
@@ -128,6 +128,10 @@
|
|
|
128
128
|
grid-template-columns: auto 1fr auto;
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
+
.dark .splitview-details-header {
|
|
132
|
+
grid-template-columns: 1fr auto;
|
|
133
|
+
}
|
|
134
|
+
|
|
131
135
|
.splitview-details-title {
|
|
132
136
|
@apply text-heading-3 dark:text-card-header;
|
|
133
137
|
}
|
|
@@ -177,6 +181,11 @@
|
|
|
177
181
|
}
|
|
178
182
|
}
|
|
179
183
|
|
|
184
|
+
.meta-info {
|
|
185
|
+
@apply grid grid-cols-2 gap-spacing place-content-start place-items-center text-label-color;
|
|
186
|
+
grid-template-columns: auto auto;
|
|
187
|
+
}
|
|
188
|
+
|
|
180
189
|
.splitview-details-content-grid {
|
|
181
190
|
@apply grid gap-xs mb-md;
|
|
182
191
|
|
|
@@ -366,9 +375,9 @@ body:not(.dark) .splitview-item.selected {
|
|
|
366
375
|
}
|
|
367
376
|
|
|
368
377
|
.grid-splitview .splitview-list {
|
|
369
|
-
@apply col-span-1 lg:col-span-2 overflow-y-visible;
|
|
378
|
+
@apply col-span-1 lg:col-span-2 overflow-y-visible h-fit;
|
|
370
379
|
}
|
|
371
380
|
|
|
372
381
|
.grid-splitview .splitview-details {
|
|
373
|
-
@apply
|
|
382
|
+
@apply block col-span-1 lg:col-span-3 h-auto min-h-auto overflow-y-visible;
|
|
374
383
|
}
|
|
@@ -7,14 +7,13 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.tag {
|
|
10
|
-
@apply inline-flex items-center flex-row
|
|
11
|
-
padding-top:
|
|
12
|
-
padding-bottom:
|
|
10
|
+
@apply inline-flex items-center flex-row px-xs dark:px-sm text-sm dark:text-base leading-normal bg-tag text-appbody-textcolor rounded;
|
|
11
|
+
padding-top: 3px;
|
|
12
|
+
padding-bottom: 3px;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.tag .icon {
|
|
16
|
-
|
|
17
|
-
font-size: var(--font-size-icon-xs);
|
|
16
|
+
@apply mr-icon-spacing h-icon-xs dark:h-icon text-icon-xs dark:text-icon;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
.tag.sm {
|
|
@@ -36,7 +35,7 @@
|
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
.tag.popover-tag:hover {
|
|
39
|
-
@apply bg-link-hover text-white;
|
|
38
|
+
@apply bg-link-hover! text-white;
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
.tag.popover-tag .icon {
|
|
@@ -46,5 +45,21 @@
|
|
|
46
45
|
}
|
|
47
46
|
|
|
48
47
|
.tag.popover-tag:hover .icon {
|
|
49
|
-
@apply text-white
|
|
48
|
+
@apply text-white!;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.tag.success {
|
|
52
|
+
@apply bg-success text-black;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.tag.danger {
|
|
56
|
+
@apply bg-danger text-white;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.tag.pending {
|
|
60
|
+
@apply bg-pending text-black;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.tag.light {
|
|
64
|
+
@apply bg-gray-lightest dark:bg-gray-darker text-black dark:text-white;
|
|
50
65
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
@apply relative inline-flex flex-col h-auto w-xxl overflow-visible rounded;
|
|
22
22
|
|
|
23
23
|
& .attachment-thumb {
|
|
24
|
-
@apply relative flex justify-center items-center w-xxl h-xxl overflow-hidden border-1 border-primary bg-primary rounded text-white;
|
|
24
|
+
@apply relative flex justify-center items-center w-xxl h-xxl overflow-hidden border-1 border-primary bg-primary rounded text-white dark:border-bordercolor;
|
|
25
25
|
|
|
26
26
|
& .icon {
|
|
27
27
|
@apply text-icon-lg;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
--color-disabled: #5f656d;
|
|
16
16
|
--color-listitem: #343A40;
|
|
17
17
|
--color-placeholder: #5f656d;
|
|
18
|
-
--color-tag: #
|
|
18
|
+
--color-tag: #262626;
|
|
19
19
|
--color-label-color: #888888;
|
|
20
20
|
--color-success: #33BA9E;
|
|
21
21
|
--color-danger: #FF3131;
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
/*//// Fontsize ////*/
|
|
39
|
-
--fontsize-card-header:
|
|
39
|
+
--fontsize-card-header: 1.125rem;
|
|
40
|
+
--font-size-label: 0.75rem;
|
|
40
41
|
}
|
|
41
42
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: agenticqa
|
|
3
|
+
title: Chat collapsable
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
.list-chat-messages.full-width
|
|
7
|
+
.chat-message-item.collapsable
|
|
8
|
+
%details
|
|
9
|
+
%summary.chat-header
|
|
10
|
+
%span.chat-title.label Collapsable message
|
|
11
|
+
%span.label 5 mins ago
|
|
12
|
+
.chat-message
|
|
13
|
+
Here's a short message.
|
|
14
|
+
.chat-message-item.collapsable
|
|
15
|
+
%img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
|
|
16
|
+
%details
|
|
17
|
+
%summary.chat-header
|
|
18
|
+
%span.chat-title.label Collapsable message
|
|
19
|
+
%span.label 5 mins ago
|
|
20
|
+
.chat-message
|
|
21
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
22
|
+
.chat-message-item.collapsable.your-message
|
|
23
|
+
%img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
|
|
24
|
+
%details
|
|
25
|
+
%summary.chat-header
|
|
26
|
+
%span.chat-title.label Collapsable message
|
|
27
|
+
%span.label 5 mins ago
|
|
28
|
+
.chat-message
|
|
29
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: agenticqa
|
|
3
|
+
title: Chat form
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
.chat-form-row
|
|
7
|
+
%form.chat-form
|
|
8
|
+
%h5.text-card-header.mb-xxs Re-Run this check
|
|
9
|
+
%p.font-light.mb-md Add additional instructions for re-running this check.
|
|
10
|
+
%textarea.form-control{placeholder:"Add your instructions or feedback for Testinator"}
|
|
11
|
+
.form-actions
|
|
12
|
+
%a.btn.btn-primary.rounded-full
|
|
13
|
+
%span.icon.icon-sync.mr-icon-spacing
|
|
14
|
+
re-run check
|
|
15
|
+
%button.btn.btn-secondary.rounded-full Cancel
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: agenticqa
|
|
3
|
+
title: Chat history
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
.card.p-card-padding
|
|
7
|
+
%details.chat-history-collapsable
|
|
8
|
+
%summary.chat-history-header
|
|
9
|
+
.chat-history-title Show complete history
|
|
10
|
+
.list-chat-messages.full-width
|
|
11
|
+
.chat-message-item
|
|
12
|
+
%img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
|
|
13
|
+
.chat-header
|
|
14
|
+
%span.chat-title.label Justification
|
|
15
|
+
%span.label 5 mins ago
|
|
16
|
+
.chat-message
|
|
17
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
18
|
+
.chat-message-item.your-message
|
|
19
|
+
%img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
|
|
20
|
+
.chat-header
|
|
21
|
+
%span.chat-title.label Justification
|
|
22
|
+
%span.label 5 mins ago
|
|
23
|
+
.chat-message
|
|
24
|
+
Here's a short message with bits of lorem ipsum.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: agenticqa
|
|
3
|
+
title: Chat messages
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
.list-chat-messages.full-width
|
|
7
|
+
.chat-message-item
|
|
8
|
+
%img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
|
|
9
|
+
.chat-header
|
|
10
|
+
%span.chat-title.label Justification
|
|
11
|
+
%span.label 5 mins ago
|
|
12
|
+
.chat-message
|
|
13
|
+
Here's a short message with bits of lorem ipsum.
|
|
14
|
+
.chat-message-item
|
|
15
|
+
%img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
|
|
16
|
+
.chat-header
|
|
17
|
+
%span.chat-title.label Justification
|
|
18
|
+
%span.label 5 mins ago
|
|
19
|
+
.chat-message
|
|
20
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
21
|
+
.chat-message-item.your-message
|
|
22
|
+
%img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
|
|
23
|
+
.chat-header
|
|
24
|
+
%span.chat-title.label Justification
|
|
25
|
+
%span.label 5 mins ago
|
|
26
|
+
.chat-message
|
|
27
|
+
Here's a short message with bits of lorem ipsum.
|
|
28
|
+
.chat-message-item.your-message
|
|
29
|
+
%img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
|
|
30
|
+
.chat-header
|
|
31
|
+
%span.chat-title.label Justification
|
|
32
|
+
%span.label 5 mins ago
|
|
33
|
+
.chat-message
|
|
34
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
35
|
+
.chat-message-item.collapsable.your-message
|
|
36
|
+
%img.chat-avatar{src:"/assets/images/placeholders/profile_supergirl.png"}
|
|
37
|
+
%details
|
|
38
|
+
%summary.chat-header
|
|
39
|
+
%span.chat-title.label Collapsable message
|
|
40
|
+
%span.label 5 mins ago
|
|
41
|
+
.chat-message
|
|
42
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
43
|
+
.chat-message-item.collapsable
|
|
44
|
+
%img.chat-avatar{src:"/assets/images/profilepic_testinator.png"}
|
|
45
|
+
%details
|
|
46
|
+
%summary.chat-header
|
|
47
|
+
%span.chat-title.label Collapsable message
|
|
48
|
+
%span.label 5 mins ago
|
|
49
|
+
.chat-message
|
|
50
|
+
Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
51
|
+
.chat-action-row
|
|
52
|
+
%a.btn.btn-primary.rounded-full re-run check
|
|
53
|
+
%a.btn.btn-secondary.rounded-full update check
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: agenticqa
|
|
3
|
+
title: list item
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
.list-listitems
|
|
7
|
+
%details.listitem
|
|
8
|
+
%summary.listitem-header
|
|
9
|
+
.listitem-badge 1
|
|
10
|
+
.listitem-title List item collapsable
|
|
11
|
+
.listitem-actions
|
|
12
|
+
.btn.collapse-btn
|
|
13
|
+
.listitem-content
|
|
14
|
+
.listitem-subheadline Subheadline
|
|
15
|
+
.listitem-card
|
|
16
|
+
%p Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
17
|
+
.listitem-subheadline AI Screenshots
|
|
18
|
+
.listitem-attachments
|
|
19
|
+
.attachment
|
|
20
|
+
%a.attachment-thumb{href:"/assets/images/placeholders/bugdetails.png"}
|
|
21
|
+
%img{src:'/assets/images/placeholders/bugdetails.png', alt:'Bug details'}
|
|
22
|
+
.attachment
|
|
23
|
+
%a.attachment-thumb{href:"/assets/images/placeholders/CustomerUI-Mobile-Sidebar.png"}
|
|
24
|
+
%img{src:'/assets/images/placeholders/CustomerUI-Mobile-Sidebar.png', alt:'Bug details'}
|
|
25
|
+
%details.listitem
|
|
26
|
+
%summary.listitem-header
|
|
27
|
+
.listitem-badge 2
|
|
28
|
+
.listitem-title List item collapsable
|
|
29
|
+
.listitem-actions
|
|
30
|
+
.btn.collapse-btn
|
|
31
|
+
.listitem-content
|
|
32
|
+
.listitem-subheadline Subheadline
|
|
33
|
+
.listitem-card
|
|
34
|
+
%p Here's a long message with mountains of Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
|
|
35
|
+
.listitem-subheadline AI Screenshots
|
|
36
|
+
.listitem-attachments
|
|
37
|
+
.attachment
|
|
38
|
+
%a.attachment-thumb{href:"/assets/images/placeholders/CustomerUI-Mobile-Sidebar.png"}
|
|
39
|
+
%img{src:'/assets/images/placeholders/CustomerUI-Mobile-Sidebar.png', alt:'Bug details'}
|
|
40
|
+
.attachment
|
|
41
|
+
%a.attachment-thumb{href:"/assets/images/placeholders/bugdetails.png"}
|
|
42
|
+
%img{src:'/assets/images/placeholders/bugdetails.png', alt:'Bug details'}
|
|
@@ -10,6 +10,16 @@ title: Tags
|
|
|
10
10
|
.tag.teamleader-verified
|
|
11
11
|
.icon.icon-verify-check.mr-xxs
|
|
12
12
|
TL
|
|
13
|
+
.list-tags.mt-xs
|
|
14
|
+
.tag.success
|
|
15
|
+
.icon.icon-check-circle
|
|
16
|
+
Success
|
|
17
|
+
.tag.danger
|
|
18
|
+
.icon.icon-cross-circle
|
|
19
|
+
Danger
|
|
20
|
+
.tag.pending
|
|
21
|
+
.icon.icon-sync
|
|
22
|
+
Pending
|
|
13
23
|
.list-tags.mt-xs
|
|
14
24
|
%details.popover-wrapper
|
|
15
25
|
%summary
|
|
@@ -23,7 +33,7 @@ title: Tags
|
|
|
23
33
|
.btn.btn-sm.btn-inverted Action
|
|
24
34
|
%details.popover-wrapper
|
|
25
35
|
%summary
|
|
26
|
-
.tag.popover-tag.
|
|
36
|
+
.tag.popover-tag.light
|
|
27
37
|
.icon.icon-check-thick-centered.text-success
|
|
28
38
|
Popover-tag
|
|
29
39
|
.popover-menu.info
|