testio-tailwind 3.6.0 → 3.7.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.
Files changed (25) hide show
  1. package/.eleventy.js +2 -1
  2. package/package.json +1 -1
  3. package/src/_includes/example-header-agenticqa.njk +70 -0
  4. package/src/_layouts/page-example-agenticqa.njk +19 -0
  5. package/src/assets/{stylesheets/components/fonts → fonts}/testio.eot +0 -0
  6. package/src/assets/{stylesheets/components/fonts → fonts}/testio.svg +349 -226
  7. package/src/assets/{stylesheets/components/fonts → fonts}/testio.ttf +0 -0
  8. package/src/assets/{stylesheets/components/fonts → fonts}/testio.woff +0 -0
  9. package/src/assets/fonts/testio.woff2 +0 -0
  10. package/src/assets/stylesheets/app.css +3 -0
  11. package/src/assets/stylesheets/components/agenticqa/agenticqa_header.css +37 -0
  12. package/src/assets/stylesheets/components/agenticqa/agenticqa_sidebar.css +12 -0
  13. package/src/assets/stylesheets/components/iconfont.css +528 -140
  14. package/src/assets/stylesheets/components/icons.css +12 -0
  15. package/src/assets/stylesheets/components/layout.css +11 -1
  16. package/src/assets/stylesheets/components/list_item.css +2 -2
  17. package/src/assets/stylesheets/components/splitview.css +63 -16
  18. package/src/assets/stylesheets/components/tabs.css +14 -5
  19. package/src/assets/stylesheets/tailwind_config.css +3 -0
  20. package/src/assets/stylesheets/tailwind_custom_utilities.css +18 -1
  21. package/src/assets/stylesheets/tailwind_theme_dark.css +21 -3
  22. package/src/pages/agenticqa/header.haml +77 -0
  23. package/src/pages/components/splitview_item_collapsable.haml +1 -1
  24. package/src/pages/examples/agenticqa.haml +38 -0
  25. package/src/assets/stylesheets/components/fonts/testio.woff2 +0 -0
Binary file
@@ -89,3 +89,6 @@
89
89
  /*//// Design system styles ////*/
90
90
  @import './components/designsystem/designsystem-styles.css' layer(components);
91
91
 
92
+ /*//// Agentic QA components ////*/
93
+ @import './components/agenticqa/agenticqa_header.css' layer(components);
94
+ @import './components/agenticqa/agenticqa_sidebar.css' layer(components);
@@ -0,0 +1,37 @@
1
+
2
+ .header.agenticqa {
3
+ @apply justify-center shadow border-b-1 border-bordercolor;
4
+ height: 70px;
5
+ }
6
+
7
+ .header.agenticqa .header-wrapper {
8
+ @apply flex justify-between items-center w-full max-w-centered-content;
9
+ }
10
+
11
+
12
+ .header.agenticqa .navlink.header-logo {
13
+ @apply h-auto;
14
+ }
15
+
16
+ .header.agenticqa .header-logo::before {
17
+ content: url("/assets/images/logo_agenticqa/agenticqa_logo_purpleteal_white.svg");
18
+ height: 34px;
19
+ @media (width >= theme(--breakpoint-sm)) {
20
+ width: 142px;
21
+ }
22
+ }
23
+
24
+ .header.agenticqa .navlink {
25
+ @apply px-sm py-xxs uppercase rounded-full hover:bg-link-hover;
26
+ height: 34px;
27
+ }
28
+
29
+ .header.agenticqa .navlink.active {
30
+ @apply bg-transparent text-white hover:bg-link-hover;
31
+ }
32
+
33
+ .header.agenticqa .navlink.active::after {
34
+ @apply absolute block left-sm right-sm bottom-0 bg-link-hover;
35
+ content: '';
36
+ height: 2px;
37
+ }
@@ -0,0 +1,12 @@
1
+
2
+ .agenticqa .mobile-menu.sidebar {
3
+ @apply pt-spacing;
4
+ }
5
+
6
+ .agenticqa .mobile-menu.sidebar .navlink {
7
+ @apply items-center h-auto py-xs mb-sm leading-none;
8
+ }
9
+
10
+ .agenticqa .mobile-menu.sidebar .navlink:hover::after {
11
+ content: none;
12
+ }