@prokodo/ui 0.1.12 → 0.1.14

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 (96) hide show
  1. package/README.md +6 -1
  2. package/dist/components/accordion/Accordion.css +46 -0
  3. package/dist/components/accordion/Accordion.module.css +46 -0
  4. package/dist/components/accordion/Accordion.module.scss.js +4 -0
  5. package/dist/components/accordion/Accordion.view.js +25 -5
  6. package/dist/components/autocomplete/Autocomplete.client.js +132 -0
  7. package/dist/components/autocomplete/Autocomplete.css +317 -0
  8. package/dist/components/autocomplete/Autocomplete.js +12 -0
  9. package/dist/components/autocomplete/Autocomplete.lazy.js +12 -0
  10. package/dist/components/autocomplete/Autocomplete.module.css +317 -0
  11. package/dist/components/autocomplete/Autocomplete.module.scss.js +21 -0
  12. package/dist/components/autocomplete/Autocomplete.server.js +11 -0
  13. package/dist/components/autocomplete/Autocomplete.view.js +142 -0
  14. package/dist/components/autocomplete/index.js +4 -0
  15. package/dist/components/button/Button.css +114 -6
  16. package/dist/components/button/Button.module.css +114 -6
  17. package/dist/components/button/Button.module.scss.js +10 -2
  18. package/dist/components/button/Button.view.js +1 -0
  19. package/dist/components/checkbox/Checkbox.client.js +42 -0
  20. package/dist/components/checkbox/Checkbox.css +312 -0
  21. package/dist/components/checkbox/Checkbox.js +12 -0
  22. package/dist/components/checkbox/Checkbox.lazy.js +12 -0
  23. package/dist/components/checkbox/Checkbox.module.css +312 -0
  24. package/dist/components/checkbox/Checkbox.module.scss.js +20 -0
  25. package/dist/components/checkbox/Checkbox.server.js +20 -0
  26. package/dist/components/checkbox/Checkbox.view.js +86 -0
  27. package/dist/components/checkbox/index.js +4 -0
  28. package/dist/components/checkbox-group/CheckboxGroup.client.js +57 -0
  29. package/dist/components/checkbox-group/CheckboxGroup.css +238 -0
  30. package/dist/components/checkbox-group/CheckboxGroup.js +13 -0
  31. package/dist/components/checkbox-group/CheckboxGroup.lazy.js +12 -0
  32. package/dist/components/checkbox-group/CheckboxGroup.module.css +238 -0
  33. package/dist/components/checkbox-group/CheckboxGroup.module.scss.js +15 -0
  34. package/dist/components/checkbox-group/CheckboxGroup.server.js +25 -0
  35. package/dist/components/checkbox-group/CheckboxGroup.view.js +97 -0
  36. package/dist/components/checkbox-group/index.js +4 -0
  37. package/dist/components/dialog/Dialog.view.js +2 -1
  38. package/dist/components/dynamic-list/DynamicList.view.js +1 -1
  39. package/dist/components/input/Input.css +2 -2
  40. package/dist/components/input/Input.module.css +2 -2
  41. package/dist/components/rich-text/RichText.css +0 -1
  42. package/dist/components/rich-text/RichText.module.css +0 -1
  43. package/dist/components/snackbar/Snackbar.css +5 -1
  44. package/dist/components/snackbar/Snackbar.module.css +5 -1
  45. package/dist/components/tabs/Tabs.client.js +182 -0
  46. package/dist/components/tabs/Tabs.css +330 -0
  47. package/dist/components/tabs/Tabs.js +13 -0
  48. package/dist/components/tabs/Tabs.lazy.js +15 -0
  49. package/dist/components/tabs/Tabs.module.css +330 -0
  50. package/dist/components/tabs/Tabs.module.scss.js +19 -0
  51. package/dist/components/tabs/Tabs.server.js +11 -0
  52. package/dist/components/tabs/Tabs.view.js +157 -0
  53. package/dist/components/tabs/index.js +4 -0
  54. package/dist/components/tooltip/Tooltip.client.js +10 -1
  55. package/dist/components/tooltip/Tooltip.css +1 -0
  56. package/dist/components/tooltip/Tooltip.module.css +1 -0
  57. package/dist/constants/project.js +1 -1
  58. package/dist/index.js +8 -0
  59. package/dist/theme.css +937 -74
  60. package/dist/tsconfig.build.tsbuildinfo +1 -1
  61. package/dist/types/components/accordion/Accordion.d.ts +3 -0
  62. package/dist/types/components/accordion/Accordion.lazy.d.ts +3 -0
  63. package/dist/types/components/accordion/Accordion.model.d.ts +3 -0
  64. package/dist/types/components/accordion/Accordion.view.d.ts +1 -1
  65. package/dist/types/components/autocomplete/Autocomplete.client.d.ts +5 -0
  66. package/dist/types/components/autocomplete/Autocomplete.d.ts +4 -0
  67. package/dist/types/components/autocomplete/Autocomplete.lazy.d.ts +5 -0
  68. package/dist/types/components/autocomplete/Autocomplete.model.d.ts +58 -0
  69. package/dist/types/components/autocomplete/Autocomplete.server.d.ts +3 -0
  70. package/dist/types/components/autocomplete/Autocomplete.view.d.ts +3 -0
  71. package/dist/types/components/autocomplete/index.d.ts +2 -0
  72. package/dist/types/components/checkbox/Checkbox.client.d.ts +4 -0
  73. package/dist/types/components/checkbox/Checkbox.d.ts +18 -0
  74. package/dist/types/components/checkbox/Checkbox.lazy.d.ts +19 -0
  75. package/dist/types/components/checkbox/Checkbox.model.d.ts +23 -0
  76. package/dist/types/components/checkbox/Checkbox.server.d.ts +3 -0
  77. package/dist/types/components/checkbox/Checkbox.view.d.ts +3 -0
  78. package/dist/types/components/checkbox/index.d.ts +2 -0
  79. package/dist/types/components/checkbox-group/CheckboxGroup.client.d.ts +4 -0
  80. package/dist/types/components/checkbox-group/CheckboxGroup.d.ts +4 -0
  81. package/dist/types/components/checkbox-group/CheckboxGroup.lazy.d.ts +5 -0
  82. package/dist/types/components/checkbox-group/CheckboxGroup.model.d.ts +38 -0
  83. package/dist/types/components/checkbox-group/CheckboxGroup.server.d.ts +3 -0
  84. package/dist/types/components/checkbox-group/CheckboxGroup.view.d.ts +3 -0
  85. package/dist/types/components/checkbox-group/index.d.ts +2 -0
  86. package/dist/types/components/dialog/Dialog.model.d.ts +1 -0
  87. package/dist/types/components/dialog/Dialog.view.d.ts +1 -1
  88. package/dist/types/components/tabs/Tabs.client.d.ts +5 -0
  89. package/dist/types/components/tabs/Tabs.d.ts +4 -0
  90. package/dist/types/components/tabs/Tabs.lazy.d.ts +5 -0
  91. package/dist/types/components/tabs/Tabs.model.d.ts +43 -0
  92. package/dist/types/components/tabs/Tabs.server.d.ts +3 -0
  93. package/dist/types/components/tabs/Tabs.view.d.ts +3 -0
  94. package/dist/types/components/tabs/index.d.ts +2 -0
  95. package/dist/types/index.d.ts +4 -0
  96. package/package.json +21 -1
package/dist/theme.css CHANGED
@@ -160,7 +160,7 @@
160
160
  --color-secondary-700: #2393a2;
161
161
  --color-secondary-800: #236c77;
162
162
  --color-secondary-900: #1e484e;
163
- --color-success: #2e7d32;
163
+ --color-success: #20E381;
164
164
  --color-warning: #f7b529;
165
165
  --color-error: #f0453a;
166
166
  --elevation-1: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
@@ -192,6 +192,10 @@
192
192
  --gradient-border-6: linear-gradient(90deg, var(--color-secondary-500) 4.63%, var(--color-primary-500) 100%);
193
193
  --gradient-border-7: linear-gradient(90deg, var(--color-primary-500), var(--color-secondary-500), var(--color-primary-500));
194
194
  --gradient-border-8: linear-gradient(90deg, var(--color-grey-100) 4.63%, var(--color-grey-300) 100%);
195
+ --gradient-border-info: linear-gradient(112deg, var(--color-grey-100) 0%, var(--color-grey-300) 100%);
196
+ --gradient-border-success: linear-gradient(112deg, #20E381 0%, #10CCB8 100%);
197
+ --gradient-border-warning: linear-gradient(112deg, #FFCC00 0%, #CCA300 100%);
198
+ --gradient-border-error: linear-gradient(112deg, #EB5550 0%, #FF4444 100%);
195
199
  --gradient-text-primary-secondary: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-primary-800) 50%, var(--color-secondary-500) 100%);
196
200
  --gradient-text-primary-secondary-primary: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-secondary-500) 50%, var(--color-primary-500) 100%);
197
201
  --gradient-text-primary: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-grey-400) 100%);
@@ -236,7 +240,7 @@
236
240
  --color-secondary-700: #AFF3FF;
237
241
  --color-secondary-800: #CCF7FF;
238
242
  --color-secondary-900: #E6FBFF;
239
- --color-success: #2e7d32;
243
+ --color-success: #20E381;
240
244
  --color-warning: #f7b529;
241
245
  --color-error: #f0453a;
242
246
  --elevation-1: 0 4px 6px rgba(255, 255, 255, 0.1), 0 1px 3px rgba(255, 255, 255, 0.08);
@@ -266,6 +270,11 @@
266
270
  --gradient-border-4: linear-gradient(112.34deg, var(--color-primary-500) 0%, var(--color-secondary-500) 100%);
267
271
  --gradient-border-5: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-secondary-500) 100%);
268
272
  --gradient-border-7: linear-gradient(180deg, var(--color-grey-400) 0%, var(--color-grey-600) 100%);
273
+ --gradient-border-8: linear-gradient(90deg, var(--color-grey-100) 4.63%, var(--color-grey-300) 100%);
274
+ --gradient-border-info: linear-gradient(112deg, var(--color-grey-100) 0%, var(--color-grey-300) 100%);
275
+ --gradient-border-success: linear-gradient(112deg, #20E381 0%, #10CCB8 100%);
276
+ --gradient-border-warning: linear-gradient(112deg, #FFCC00 0%, #CCA300 100%);
277
+ --gradient-border-error: linear-gradient(112deg, #EB5550 0%, #FF4444 100%);
269
278
  --gradient-text-primary-secondary: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-primary-800) 50%, var(--color-secondary-500) 100%);
270
279
  --gradient-text-primary: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-grey-700) 100%);
271
280
  --gradient-text-grey: linear-gradient(90deg, var(--color-grey-700) 0%, var(--color-grey-900) 100%);
@@ -287,6 +296,9 @@
287
296
  display: flex;
288
297
  flex-direction: column;
289
298
  }
299
+ .prokodo-Accordion--panel {
300
+ gap: 0;
301
+ }
290
302
  .prokodo-Accordion__item {
291
303
  border: 1px solid var(--color-grey-200);
292
304
  border-radius: 0.75rem;
@@ -298,6 +310,12 @@
298
310
  .prokodo-Accordion__item--is-expanded {
299
311
  border-color: var(--color-primary-500);
300
312
  }
313
+ .prokodo-Accordion__item--panel {
314
+ border-radius: 0;
315
+ margin-bottom: 0;
316
+ box-shadow: none;
317
+ border: none;
318
+ }
301
319
  .prokodo-Accordion__header {
302
320
  display: flex;
303
321
  align-items: center;
@@ -358,6 +376,43 @@
358
376
  animation: none !important;
359
377
  box-shadow: var(--elevation-1);
360
378
  }
379
+ .prokodo-Accordion__header__wrapper--panel {
380
+ position: relative;
381
+ border: none;
382
+ border-bottom: 2px solid transparent;
383
+ background: linear-gradient(var(--header-bg, var(--color-white)), var(--header-bg, var(--color-white)));
384
+ border-radius: 0;
385
+ }
386
+ .prokodo-Accordion__header__wrapper--panel::after {
387
+ content: "";
388
+ position: absolute;
389
+ left: 0;
390
+ right: 0;
391
+ bottom: 0;
392
+ height: 2px;
393
+ background: linear-gradient(90deg, var(--color-primary-500), var(--color-secondary-500), var(--color-primary-500));
394
+ background-size: 0% 100%;
395
+ background-position: 0 0;
396
+ background-repeat: no-repeat;
397
+ transition: background-size 0.35s ease;
398
+ }
399
+ .prokodo-Accordion__header__wrapper--panel:hover, .prokodo-Accordion__header__wrapper--panel:focus-visible {
400
+ animation: none;
401
+ }
402
+ .prokodo-Accordion__header__wrapper--panel:hover::after, .prokodo-Accordion__header__wrapper--panel:focus-visible::after {
403
+ background-size: 200% 100%;
404
+ animation: accordionBorderShift 2s linear;
405
+ }
406
+ .prokodo-Accordion__header__wrapper--panel--is-expanded {
407
+ border-radius: 0;
408
+ box-shadow: none;
409
+ animation: none !important;
410
+ }
411
+ .prokodo-Accordion__header__wrapper--panel--is-expanded::after {
412
+ background-size: 100% 100%;
413
+ background-position: 100% 0;
414
+ animation: none !important;
415
+ }
361
416
  .prokodo-Accordion__title {
362
417
  width: calc(100% - 20px);
363
418
  margin: 0;
@@ -473,6 +528,197 @@ html[data-theme=dark] .prokodo-Accordion__icon {
473
528
  transition: opacity 1500ms ease-out, transform 500ms ease-out, visibility 1500ms ease-out;
474
529
  }
475
530
 
531
+ @keyframes fade-in {
532
+ from {
533
+ opacity: 0;
534
+ transform: translateY(-4px);
535
+ }
536
+ to {
537
+ opacity: 1;
538
+ transform: translateY(0);
539
+ }
540
+ }
541
+ .prokodo-Autocomplete {
542
+ position: relative;
543
+ }
544
+ .prokodo-Autocomplete__inputWrap {
545
+ position: relative;
546
+ z-index: 41;
547
+ border-radius: 1.5rem;
548
+ }
549
+ .prokodo-Autocomplete__input {
550
+ width: 100%;
551
+ }
552
+ .prokodo-Autocomplete__input__inner--is-open, .prokodo-Autocomplete__input__node--is-open {
553
+ border-bottom-left-radius: 0 !important;
554
+ border-bottom-right-radius: 0 !important;
555
+ }
556
+ .prokodo-Autocomplete__input__inner--is-open {
557
+ background: var(--gradient-border-4);
558
+ }
559
+ .prokodo-Autocomplete__list {
560
+ position: absolute;
561
+ top: 100%;
562
+ left: 0;
563
+ width: calc(100% - 4px);
564
+ margin: 0;
565
+ padding: 0 2px 2px;
566
+ list-style: none;
567
+ transform: none;
568
+ border-bottom-left-radius: 1.5rem;
569
+ border-bottom-right-radius: 1.5rem;
570
+ border-top-left-radius: 0;
571
+ border-top-right-radius: 0;
572
+ background: var(--gradient-border-4);
573
+ margin-top: -2px;
574
+ box-shadow: var(--elevation-3);
575
+ max-height: 260px;
576
+ overflow: auto;
577
+ z-index: 50;
578
+ animation: fade-in 180ms ease-out;
579
+ scrollbar-width: none;
580
+ }
581
+ .prokodo-Autocomplete__list::-webkit-scrollbar {
582
+ display: none;
583
+ }
584
+ .prokodo-Autocomplete__state {
585
+ display: flex;
586
+ align-items: center;
587
+ gap: 0.5rem;
588
+ margin: 0;
589
+ padding: 0.5rem 1rem 1rem 1rem;
590
+ background: var(--color-white);
591
+ color: var(--color-grey-700);
592
+ border-bottom-left-radius: 1.5rem;
593
+ border-bottom-right-radius: 1.5rem;
594
+ font-weight: 400;
595
+ font-size: 1rem;
596
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
597
+ font-style: normal;
598
+ line-height: 1.45;
599
+ letter-spacing: 0.03em;
600
+ text-transform: none;
601
+ text-align: left;
602
+ text-decoration: none;
603
+ }
604
+ @media screen and (min-width: 480px) {
605
+ .prokodo-Autocomplete__state {
606
+ font-size: 0.875rem;
607
+ line-height: 1.4;
608
+ }
609
+ }
610
+ @media screen and (min-width: 960px) {
611
+ .prokodo-Autocomplete__state {
612
+ font-size: 0.875rem;
613
+ line-height: 1.4;
614
+ }
615
+ }
616
+ html[data-theme=dark] .prokodo-Autocomplete__state {
617
+ background: rgb(16, 19, 27);
618
+ color: var(--color-grey-500);
619
+ }
620
+ .prokodo-Autocomplete__itemRow {
621
+ list-style: none;
622
+ margin: 0;
623
+ padding: 0;
624
+ }
625
+ .prokodo-Autocomplete__itemRow--is-last {
626
+ border-bottom-left-radius: 1.5rem;
627
+ border-bottom-right-radius: 1.5rem;
628
+ }
629
+ .prokodo-Autocomplete__item {
630
+ width: 100%;
631
+ border: none;
632
+ background: var(--color-white);
633
+ color: inherit;
634
+ text-align: left;
635
+ display: grid;
636
+ grid-gap: 0.25rem;
637
+ gap: 0.25rem;
638
+ padding: 0.5rem 1rem;
639
+ cursor: pointer;
640
+ transition: background-color 120ms ease;
641
+ }
642
+ html[data-theme=dark] .prokodo-Autocomplete__item {
643
+ background: rgb(16, 19, 27);
644
+ }
645
+ .prokodo-Autocomplete__item:hover {
646
+ background: var(--color-primary-50);
647
+ }
648
+ html[data-theme=dark] .prokodo-Autocomplete__item:hover {
649
+ background: var(--color-primary-50);
650
+ }
651
+ .prokodo-Autocomplete__item:focus-visible {
652
+ outline: 0;
653
+ background: var(--color-primary-50);
654
+ }
655
+ html[data-theme=dark] .prokodo-Autocomplete__item:focus-visible {
656
+ background: var(--color-primary-50);
657
+ }
658
+ .prokodo-Autocomplete__item--is-first {
659
+ border-top-left-radius: 0;
660
+ border-top-right-radius: 0;
661
+ }
662
+ .prokodo-Autocomplete__item--is-last {
663
+ border-bottom-left-radius: 1.5rem;
664
+ border-bottom-right-radius: 1.5rem;
665
+ }
666
+ .prokodo-Autocomplete__item--is-active {
667
+ background: var(--color-primary-100);
668
+ }
669
+ html[data-theme=dark] .prokodo-Autocomplete__item--is-active {
670
+ background: var(--color-primary-100);
671
+ }
672
+ .prokodo-Autocomplete__itemLabel {
673
+ margin: 0;
674
+ color: var(--color-grey-900);
675
+ font-weight: 400;
676
+ font-size: 1rem;
677
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
678
+ font-style: normal;
679
+ line-height: 1.45;
680
+ letter-spacing: 0.03em;
681
+ text-transform: none;
682
+ text-align: left;
683
+ text-decoration: none;
684
+ }
685
+ @media screen and (min-width: 480px) {
686
+ .prokodo-Autocomplete__itemLabel {
687
+ font-size: 0.875rem;
688
+ line-height: 1.4;
689
+ }
690
+ }
691
+ @media screen and (min-width: 960px) {
692
+ .prokodo-Autocomplete__itemLabel {
693
+ font-size: 0.875rem;
694
+ line-height: 1.4;
695
+ }
696
+ }
697
+ .prokodo-Autocomplete__itemDescription {
698
+ margin: 0;
699
+ color: var(--color-grey-700);
700
+ font-weight: 400;
701
+ font-size: 1rem;
702
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
703
+ font-style: normal;
704
+ line-height: 1.45;
705
+ letter-spacing: 0.03em;
706
+ text-transform: none;
707
+ text-align: left;
708
+ text-decoration: none;
709
+ }
710
+ @media screen and (min-width: 480px) {
711
+ .prokodo-Autocomplete__itemDescription {
712
+ font-size: 0.875rem;
713
+ line-height: 1.4;
714
+ }
715
+ }
716
+ @media screen and (min-width: 960px) {
717
+ .prokodo-Autocomplete__itemDescription {
718
+ font-size: 0.875rem;
719
+ line-height: 1.4;
720
+ }
721
+ }
476
722
  .prokodo-Avatar {
477
723
  position: relative;
478
724
  display: flex;
@@ -567,29 +813,58 @@ html[data-theme=dark] .prokodo-Button {
567
813
  border-radius: 1.5rem;
568
814
  border-radius: 1.5rem;
569
815
  }
570
- .prokodo-Button--has-bg-primary, .prokodo-Button--has-bg-secondary, .prokodo-Button--has-bg-info, .prokodo-Button--has-bg-error {
571
- color: #FFFFFF !important;
816
+ .prokodo-Button--has-bg-primary, .prokodo-Button--has-bg-secondary, .prokodo-Button--has-bg-success, .prokodo-Button--has-bg-warning {
817
+ color: #000000;
572
818
  }
573
- .prokodo-Button--has-bg-success, .prokodo-Button--has-bg-warning {
574
- color: var(--color-black);
819
+ .prokodo-Button--has-bg-info, .prokodo-Button--has-bg-error {
820
+ color: #FFFFFF;
575
821
  }
576
822
  .prokodo-Button--has-bg-primary {
577
823
  background: var(--gradient-background-primary);
824
+ color: #000000;
825
+ }
826
+ html[data-theme=dark] .prokodo-Button--has-bg-primary {
827
+ color: #FFFFFF;
828
+ }
829
+ html[data-theme=dark] .prokodo-Button--has-bg-inherit {
830
+ color: var(--color-grey-900);
831
+ background: linear-gradient(112deg, var(--color-grey-200) 0%, var(--color-grey-300) 100%);
832
+ background-color: var(--color-grey-300);
578
833
  }
579
834
  .prokodo-Button--has-bg-secondary {
580
835
  background: var(--gradient-background-secondary);
836
+ color: #000000;
837
+ }
838
+ html[data-theme=dark] .prokodo-Button--has-bg-secondary {
839
+ color: #FFFFFF;
581
840
  }
582
841
  .prokodo-Button--is-disabled, .prokodo-Button--has-bg-info {
583
842
  background: var(--gradient-background-info);
843
+ color: #FFFFFF;
844
+ }
845
+ html[data-theme=dark] .prokodo-Button--is-disabled, html[data-theme=dark] .prokodo-Button--has-bg-info {
846
+ color: var(--color-grey-700);
584
847
  }
585
848
  .prokodo-Button--has-bg-success {
586
849
  background: var(--gradient-background-success);
850
+ color: #000000;
851
+ }
852
+ html[data-theme=dark] .prokodo-Button--has-bg-success {
853
+ color: #000000;
587
854
  }
588
855
  .prokodo-Button--has-bg-warning {
589
856
  background: var(--gradient-background-warning);
857
+ color: #000000;
858
+ }
859
+ html[data-theme=dark] .prokodo-Button--has-bg-warning {
860
+ color: #000000;
590
861
  }
591
862
  .prokodo-Button--has-bg-error {
592
863
  background: var(--gradient-background-error);
864
+ color: #FFFFFF;
865
+ }
866
+ html[data-theme=dark] .prokodo-Button--has-bg-error {
867
+ color: #FFFFFF;
593
868
  }
594
869
  .prokodo-Button--has-text-inherit, .prokodo-Button--has-text-primary, .prokodo-Button--has-text-secondary, .prokodo-Button--has-text-info, .prokodo-Button--has-text-success, .prokodo-Button--has-text-warning, .prokodo-Button--has-text-error {
595
870
  background: none;
@@ -645,7 +920,7 @@ html[data-theme=dark] .prokodo-Button {
645
920
  .prokodo-Button--has-variant-outlined {
646
921
  position: relative;
647
922
  background: none;
648
- color: var(--color-black) !important;
923
+ color: var(--color-black);
649
924
  }
650
925
  .prokodo-Button--has-variant-outlined::before {
651
926
  content: "";
@@ -666,6 +941,66 @@ html[data-theme=dark] .prokodo-Button {
666
941
  html[data-theme=dark] .prokodo-Button--has-variant-outlined {
667
942
  background: none;
668
943
  }
944
+ .prokodo-Button--has-variant-outlined--has-outline-inherit {
945
+ color: var(--color-black);
946
+ }
947
+ .prokodo-Button--has-variant-outlined--has-outline-inherit::before {
948
+ background: var(--gradient-border-8);
949
+ }
950
+ .prokodo-Button--has-variant-outlined--has-outline-primary {
951
+ color: var(--color-black);
952
+ }
953
+ .prokodo-Button--has-variant-outlined--has-outline-primary::before {
954
+ background: var(--gradient-border-4);
955
+ }
956
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-primary {
957
+ color: var(--color-primary-500);
958
+ }
959
+ .prokodo-Button--has-variant-outlined--has-outline-secondary {
960
+ color: var(--color-black);
961
+ }
962
+ .prokodo-Button--has-variant-outlined--has-outline-secondary::before {
963
+ background: var(--gradient-border-2);
964
+ }
965
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-secondary {
966
+ color: var(--color-secondary-500);
967
+ }
968
+ .prokodo-Button--has-variant-outlined--has-outline-info {
969
+ color: var(--color-black);
970
+ }
971
+ .prokodo-Button--has-variant-outlined--has-outline-info::before {
972
+ background: var(--gradient-border-info);
973
+ }
974
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-info {
975
+ color: #FFFFFF;
976
+ }
977
+ .prokodo-Button--has-variant-outlined--has-outline-success {
978
+ color: var(--color-black);
979
+ }
980
+ .prokodo-Button--has-variant-outlined--has-outline-success::before {
981
+ background: var(--gradient-border-success);
982
+ }
983
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-success {
984
+ color: var(--color-success);
985
+ }
986
+ .prokodo-Button--has-variant-outlined--has-outline-warning {
987
+ color: var(--color-black);
988
+ }
989
+ .prokodo-Button--has-variant-outlined--has-outline-warning::before {
990
+ background: var(--gradient-border-warning);
991
+ }
992
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-warning {
993
+ color: var(--color-warning);
994
+ }
995
+ .prokodo-Button--has-variant-outlined--has-outline-error {
996
+ color: var(--color-black);
997
+ }
998
+ .prokodo-Button--has-variant-outlined--has-outline-error::before {
999
+ background: var(--gradient-border-error);
1000
+ }
1001
+ html[data-theme=dark] .prokodo-Button--has-variant-outlined--has-outline-error {
1002
+ color: var(--color-error);
1003
+ }
669
1004
  .prokodo-Button--has-image, .prokodo-Button--has-icon {
670
1005
  display: flex;
671
1006
  align-items: center;
@@ -684,6 +1019,26 @@ html[data-theme=dark] .prokodo-Button--has-variant-outlined {
684
1019
  }
685
1020
  .prokodo-Button--is-disabled {
686
1021
  cursor: default;
1022
+ box-shadow: none;
1023
+ color: var(--color-grey-500);
1024
+ background: var(--color-grey-100);
1025
+ background-color: var(--color-grey-100);
1026
+ }
1027
+ .prokodo-Button--is-disabled::before {
1028
+ background: var(--gradient-border-8);
1029
+ }
1030
+ .prokodo-Button--is-disabled:hover {
1031
+ color: var(--color-grey-500);
1032
+ background: var(--color-grey-100);
1033
+ background-color: var(--color-grey-100);
1034
+ }
1035
+ html[data-theme=dark] .prokodo-Button--is-disabled {
1036
+ color: var(--color-grey-600);
1037
+ background: linear-gradient(112deg, var(--color-grey-200) 0%, var(--color-grey-300) 100%);
1038
+ background-color: var(--color-grey-300);
1039
+ }
1040
+ html[data-theme=dark] .prokodo-Button--is-disabled::before {
1041
+ background: linear-gradient(112deg, var(--color-grey-300) 0%, var(--color-grey-500) 100%);
687
1042
  }
688
1043
  .prokodo-Button__title {
689
1044
  display: flex;
@@ -727,7 +1082,6 @@ html[data-theme=dark] .prokodo-Button--has-variant-outlined {
727
1082
  width: 100%;
728
1083
  }
729
1084
  .prokodo-Button__content--icon-only {
730
- padding: 0.5rem;
731
1085
  border-radius: 2000rem;
732
1086
  }
733
1087
 
@@ -912,83 +1266,383 @@ html[data-theme=dark] .prokodo-Card__background {
912
1266
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
913
1267
  z-index: 10;
914
1268
  }
915
- .prokodo-Carousel__mobile__tutorial__animation {
916
- min-height: 100px;
917
- width: 100%;
1269
+ .prokodo-Carousel__mobile__tutorial__animation {
1270
+ min-height: 100px;
1271
+ width: 100%;
1272
+ }
1273
+ .prokodo-Carousel__mobile__tutorial--is-hidden {
1274
+ opacity: 0;
1275
+ visibility: hidden;
1276
+ }
1277
+ @media screen and (min-width: 480px) {
1278
+ .prokodo-Carousel__mobile__tutorial {
1279
+ position: absolute;
1280
+ top: auto;
1281
+ left: -99999px;
1282
+ width: 0;
1283
+ height: 0;
1284
+ text-indent: -99999px;
1285
+ }
1286
+ }
1287
+ .prokodo-Carousel__controls {
1288
+ display: flex;
1289
+ width: 100%;
1290
+ align-items: center;
1291
+ justify-content: space-between;
1292
+ opacity: 0;
1293
+ }
1294
+ @media screen and (min-width: 480px) {
1295
+ .prokodo-Carousel__controls {
1296
+ opacity: 1;
1297
+ }
1298
+ }
1299
+ .prokodo-Carousel__button {
1300
+ padding: 0.25rem;
1301
+ }
1302
+ .prokodo-Carousel__dots {
1303
+ display: flex;
1304
+ margin: 2rem auto 0 auto;
1305
+ text-align: center;
1306
+ }
1307
+ .prokodo-Carousel__dots__dot {
1308
+ position: relative;
1309
+ display: inline-block;
1310
+ width: 12px;
1311
+ height: 12px;
1312
+ border-radius: 50%;
1313
+ margin: 0 5px;
1314
+ border: none;
1315
+ background: none;
1316
+ cursor: pointer;
1317
+ }
1318
+ .prokodo-Carousel__dots__dot::before {
1319
+ content: "";
1320
+ position: absolute;
1321
+ top: 0;
1322
+ left: 0;
1323
+ right: 0;
1324
+ bottom: 0;
1325
+ border-radius: inherit;
1326
+ padding: 2px;
1327
+ -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
1328
+ mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
1329
+ -webkit-mask-composite: xor;
1330
+ mask-composite: exclude;
1331
+ z-index: 0;
1332
+ background: var(--gradient-border-4);
1333
+ }
1334
+ .prokodo-Carousel__dots__dot--is-active {
1335
+ background-color: #FFFFFF;
1336
+ }
1337
+ @media screen and (max-width: 1280px) {
1338
+ .prokodo-Carousel__dots__dot {
1339
+ position: absolute;
1340
+ top: auto;
1341
+ left: -99999px;
1342
+ width: 0;
1343
+ height: 0;
1344
+ text-indent: -99999px;
1345
+ }
1346
+ }
1347
+
1348
+ .prokodo-Checkbox {
1349
+ display: grid;
1350
+ grid-template-columns: auto 1fr auto;
1351
+ align-items: center;
1352
+ grid-gap: 0.75rem;
1353
+ gap: 0.75rem;
1354
+ padding: 0.5rem 0;
1355
+ border-radius: 12px;
1356
+ background: transparent;
1357
+ border: 1px solid transparent;
1358
+ box-shadow: none;
1359
+ cursor: pointer;
1360
+ -webkit-user-select: none;
1361
+ -moz-user-select: none;
1362
+ user-select: none;
1363
+ }
1364
+ .prokodo-Checkbox--disabled {
1365
+ opacity: 0.55;
1366
+ cursor: not-allowed;
1367
+ }
1368
+ .prokodo-Checkbox:focus-within {
1369
+ outline: 3px solid #1E90FF;
1370
+ outline-offset: 4px;
1371
+ border-radius: 1.5rem;
1372
+ }
1373
+ .prokodo-Checkbox--card {
1374
+ padding: 0.5rem 0;
1375
+ border-radius: 12px;
1376
+ background: transparent;
1377
+ border: 1px solid transparent;
1378
+ box-shadow: none;
1379
+ }
1380
+ .prokodo-Checkbox__left {
1381
+ display: inline-flex;
1382
+ align-items: center;
1383
+ }
1384
+ .prokodo-Checkbox__input {
1385
+ position: absolute;
1386
+ opacity: 0;
1387
+ width: 1px;
1388
+ height: 1px;
1389
+ margin: 0;
1390
+ padding: 0;
1391
+ pointer-events: none;
1392
+ }
1393
+ .prokodo-Checkbox__control {
1394
+ width: 18px;
1395
+ height: 18px;
1396
+ border-radius: 6px;
1397
+ position: relative;
1398
+ border: 2px solid rgba(255, 255, 255, 0.18);
1399
+ background: rgba(255, 255, 255, 0.02);
1400
+ box-shadow: var(--inner-elevation-1);
1401
+ display: inline-flex;
1402
+ align-items: center;
1403
+ justify-content: center;
1404
+ transition: border-color 140ms ease, background 140ms ease;
1405
+ }
1406
+ .prokodo-Checkbox__control::after {
1407
+ content: "";
1408
+ width: 9px;
1409
+ height: 5px;
1410
+ border-left: 2px solid var(--color-primary-500, #2f6bff);
1411
+ border-bottom: 2px solid var(--color-primary-500, #2f6bff);
1412
+ position: absolute;
1413
+ top: 50%;
1414
+ left: 50%;
1415
+ transform: translate(-50%, -50%) rotate(-45deg) scale(0.6);
1416
+ opacity: 0;
1417
+ transition: transform 140ms ease, opacity 140ms ease;
1418
+ }
1419
+ .prokodo-Checkbox__control--checked {
1420
+ border-color: rgba(255, 255, 255, 0.32);
1421
+ }
1422
+ .prokodo-Checkbox__control--checked::after {
1423
+ opacity: 1;
1424
+ transform: translate(-50%, -50%) rotate(-45deg) scale(1);
1425
+ }
1426
+ .prokodo-Checkbox__control--card {
1427
+ box-shadow: var(--inner-elevation-1);
1428
+ }
1429
+ .prokodo-Checkbox__control--card.prokodo-Checkbox__control--checked {
1430
+ background: rgba(255, 255, 255, 0.1);
1431
+ }
1432
+ .prokodo-Checkbox__body {
1433
+ min-width: 0;
1434
+ display: flex;
1435
+ flex-direction: column;
1436
+ gap: 0.25rem;
1437
+ }
1438
+ .prokodo-Checkbox__row {
1439
+ display: inline-flex;
1440
+ align-items: center;
1441
+ gap: 0.5rem;
1442
+ min-width: 0;
1443
+ }
1444
+ .prokodo-Checkbox__title {
1445
+ white-space: nowrap;
1446
+ overflow: hidden;
1447
+ text-overflow: ellipsis;
1448
+ color: var(--color-grey-900);
1449
+ margin: 0;
1450
+ font-weight: 400;
1451
+ font-size: 1.125rem;
1452
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1453
+ font-style: normal;
1454
+ line-height: 1.55;
1455
+ letter-spacing: 0.03em;
1456
+ text-transform: none;
1457
+ text-align: left;
1458
+ text-decoration: none;
1459
+ }
1460
+ @media screen and (min-width: 480px) {
1461
+ .prokodo-Checkbox__title {
1462
+ font-size: 1rem;
1463
+ }
1464
+ }
1465
+ @media screen and (min-width: 960px) {
1466
+ .prokodo-Checkbox__title {
1467
+ font-size: 1rem;
1468
+ }
1469
+ }
1470
+ .prokodo-Checkbox__requiredMark {
1471
+ color: var(--color-error);
1472
+ line-height: 1;
1473
+ font-weight: 400;
1474
+ font-size: 1.125rem;
1475
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1476
+ font-style: normal;
1477
+ line-height: 1.55;
1478
+ letter-spacing: 0.03em;
1479
+ text-transform: none;
1480
+ text-align: left;
1481
+ text-decoration: none;
1482
+ }
1483
+ @media screen and (min-width: 480px) {
1484
+ .prokodo-Checkbox__requiredMark {
1485
+ font-size: 1rem;
1486
+ }
1487
+ }
1488
+ @media screen and (min-width: 960px) {
1489
+ .prokodo-Checkbox__requiredMark {
1490
+ font-size: 1rem;
1491
+ }
1492
+ }
1493
+ .prokodo-Checkbox__desc {
1494
+ color: var(--color-grey-700);
1495
+ opacity: 0.82;
1496
+ overflow: hidden;
1497
+ text-overflow: ellipsis;
1498
+ display: -webkit-box;
1499
+ line-clamp: 2;
1500
+ -webkit-box-orient: vertical;
1501
+ font-weight: 400;
1502
+ font-size: 1rem;
1503
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1504
+ font-style: normal;
1505
+ line-height: 1.45;
1506
+ letter-spacing: 0.03em;
1507
+ text-transform: none;
1508
+ text-align: left;
1509
+ text-decoration: none;
1510
+ }
1511
+ @media screen and (min-width: 480px) {
1512
+ .prokodo-Checkbox__desc {
1513
+ font-size: 0.875rem;
1514
+ line-height: 1.4;
1515
+ }
1516
+ }
1517
+ @media screen and (min-width: 960px) {
1518
+ .prokodo-Checkbox__desc {
1519
+ font-size: 0.875rem;
1520
+ line-height: 1.4;
1521
+ }
1522
+ }
1523
+ .prokodo-Checkbox__right {
1524
+ justify-self: end;
1525
+ display: inline-flex;
1526
+ align-items: center;
1527
+ align-self: start;
1528
+ margin-top: 2px;
1529
+ }
1530
+ .prokodo-Checkbox__rightIcon {
1531
+ color: var(--color-grey-700);
1532
+ opacity: 0.9;
1533
+ }
1534
+
1535
+ .prokodo-CheckboxGroup {
1536
+ margin: 0;
1537
+ padding: 0;
1538
+ border: 0;
1539
+ min-width: 0;
1540
+ }
1541
+ .prokodo-CheckboxGroup__legend {
1542
+ margin: 0 0 0.5rem 0;
1543
+ padding: 0;
1544
+ opacity: 0.82;
1545
+ display: inline-flex;
1546
+ align-items: center;
1547
+ gap: 0.25rem;
1548
+ font-weight: 400;
1549
+ font-size: 1rem;
1550
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1551
+ font-style: normal;
1552
+ line-height: 1.45;
1553
+ letter-spacing: 0.03em;
1554
+ text-transform: none;
1555
+ text-align: left;
1556
+ text-decoration: none;
1557
+ }
1558
+ @media screen and (min-width: 480px) {
1559
+ .prokodo-CheckboxGroup__legend {
1560
+ font-size: 0.875rem;
1561
+ line-height: 1.4;
1562
+ }
1563
+ }
1564
+ @media screen and (min-width: 960px) {
1565
+ .prokodo-CheckboxGroup__legend {
1566
+ font-size: 0.875rem;
1567
+ line-height: 1.4;
1568
+ }
1569
+ }
1570
+ .prokodo-CheckboxGroup__legend--is-hidden {
1571
+ position: absolute;
1572
+ top: auto;
1573
+ left: -99999px;
1574
+ width: 0;
1575
+ height: 0;
1576
+ text-indent: -99999px;
918
1577
  }
919
- .prokodo-Carousel__mobile__tutorial--is-hidden {
920
- opacity: 0;
921
- visibility: hidden;
1578
+ .prokodo-CheckboxGroup__legendLabel {
1579
+ color: var(--color-grey-900);
1580
+ font-weight: 400;
1581
+ font-size: 1rem;
1582
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1583
+ font-style: normal;
1584
+ line-height: 1.45;
1585
+ letter-spacing: 0.03em;
1586
+ text-transform: none;
1587
+ text-align: left;
1588
+ text-decoration: none;
922
1589
  }
923
1590
  @media screen and (min-width: 480px) {
924
- .prokodo-Carousel__mobile__tutorial {
925
- position: absolute;
926
- top: auto;
927
- left: -99999px;
928
- width: 0;
929
- height: 0;
930
- text-indent: -99999px;
1591
+ .prokodo-CheckboxGroup__legendLabel {
1592
+ font-size: 0.875rem;
1593
+ line-height: 1.4;
931
1594
  }
932
1595
  }
933
- .prokodo-Carousel__controls {
934
- display: flex;
935
- width: 100%;
936
- align-items: center;
937
- justify-content: space-between;
938
- opacity: 0;
1596
+ @media screen and (min-width: 960px) {
1597
+ .prokodo-CheckboxGroup__legendLabel {
1598
+ font-size: 0.875rem;
1599
+ line-height: 1.4;
1600
+ }
1601
+ }
1602
+ .prokodo-CheckboxGroup__legendRequiredMark {
1603
+ color: var(--color-error);
1604
+ line-height: 1;
1605
+ font-weight: 400;
1606
+ font-size: 1rem;
1607
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
1608
+ font-style: normal;
1609
+ line-height: 1.45;
1610
+ letter-spacing: 0.03em;
1611
+ text-transform: none;
1612
+ text-align: left;
1613
+ text-decoration: none;
939
1614
  }
940
1615
  @media screen and (min-width: 480px) {
941
- .prokodo-Carousel__controls {
942
- opacity: 1;
1616
+ .prokodo-CheckboxGroup__legendRequiredMark {
1617
+ font-size: 0.875rem;
1618
+ line-height: 1.4;
943
1619
  }
944
1620
  }
945
- .prokodo-Carousel__button {
946
- padding: 0.25rem;
1621
+ @media screen and (min-width: 960px) {
1622
+ .prokodo-CheckboxGroup__legendRequiredMark {
1623
+ font-size: 0.875rem;
1624
+ line-height: 1.4;
1625
+ }
947
1626
  }
948
- .prokodo-Carousel__dots {
1627
+ .prokodo-CheckboxGroup__list {
949
1628
  display: flex;
950
- margin: 2rem auto 0 auto;
951
- text-align: center;
1629
+ flex-direction: column;
1630
+ gap: 0.5rem;
1631
+ min-width: 0;
952
1632
  }
953
- .prokodo-Carousel__dots__dot {
954
- position: relative;
955
- display: inline-block;
956
- width: 12px;
957
- height: 12px;
958
- border-radius: 50%;
959
- margin: 0 5px;
960
- border: none;
961
- background: none;
962
- cursor: pointer;
1633
+ .prokodo-CheckboxGroup__list--plain {
1634
+ gap: 0;
963
1635
  }
964
- .prokodo-Carousel__dots__dot::before {
965
- content: "";
966
- position: absolute;
967
- top: 0;
968
- left: 0;
969
- right: 0;
970
- bottom: 0;
971
- border-radius: inherit;
972
- padding: 2px;
973
- -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
974
- mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
975
- -webkit-mask-composite: xor;
976
- mask-composite: exclude;
977
- z-index: 0;
978
- background: var(--gradient-border-4);
1636
+ .prokodo-CheckboxGroup__list--grid {
1637
+ display: grid;
1638
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
979
1639
  }
980
- .prokodo-Carousel__dots__dot--is-active {
981
- background-color: #FFFFFF;
1640
+ .prokodo-CheckboxGroup__item {
1641
+ min-width: 0;
982
1642
  }
983
- @media screen and (max-width: 1280px) {
984
- .prokodo-Carousel__dots__dot {
985
- position: absolute;
986
- top: auto;
987
- left: -99999px;
988
- width: 0;
989
- height: 0;
990
- text-indent: -99999px;
991
- }
1643
+ .prokodo-CheckboxGroup__item--disabled {
1644
+ opacity: 0.55;
1645
+ cursor: not-allowed;
992
1646
  }
993
1647
 
994
1648
  .prokodo-Chip {
@@ -2289,8 +2943,8 @@ html[data-theme=dark] .prokodo-Input__input textarea:-moz-autofill {
2289
2943
  background: var(--gradient-border-8);
2290
2944
  }
2291
2945
  .prokodo-Input__input__node {
2292
- width: calc(100% - 1.5rem - 1.5rem - 0.25rem);
2293
- padding: 0.875rem 1.5rem;
2946
+ width: calc(100% - 1rem - 1rem - 0.25rem);
2947
+ padding: 0.875rem 1rem;
2294
2948
  margin: 2px;
2295
2949
  border: none;
2296
2950
  outline: none;
@@ -3665,7 +4319,6 @@ html[data-theme=dark] .prokodo-RichText__pre {
3665
4319
  .prokodo-RichText__ul, .prokodo-RichText__ol {
3666
4320
  padding: 0;
3667
4321
  list-style-type: none;
3668
- color: var(--color-grey-500);
3669
4322
  }
3670
4323
  .prokodo-RichText__li {
3671
4324
  display: flex;
@@ -4547,7 +5200,11 @@ html[data-theme=dark] .prokodo-Skeleton::after {
4547
5200
  color: var(--color-black);
4548
5201
  }
4549
5202
  .prokodo-Snackbar--info {
4550
- background-color: var(--color-info);
5203
+ background-color: var(--color-grey-500);
5204
+ }
5205
+ html[data-theme=dark] .prokodo-Snackbar--info {
5206
+ background-color: var(--color-grey-300);
5207
+ color: var(--color-grey-900);
4551
5208
  }
4552
5209
  .prokodo-Snackbar__message {
4553
5210
  flex: 1 1;
@@ -5090,6 +5747,211 @@ html[data-theme=dark] .prokodo-Skeleton::after {
5090
5747
  padding-bottom: 1rem;
5091
5748
  }
5092
5749
 
5750
+ .prokodo-Tabs {
5751
+ width: 100%;
5752
+ }
5753
+ .prokodo-Tabs--vertical {
5754
+ display: grid;
5755
+ grid-gap: 1rem;
5756
+ gap: 1rem;
5757
+ grid-template-columns: minmax(px-to-rem(180px), px-to-rem(260px)) 1fr;
5758
+ }
5759
+ .prokodo-Tabs__list {
5760
+ align-items: stretch;
5761
+ border-bottom: 1px solid var(--color-grey-200);
5762
+ display: flex;
5763
+ gap: 0;
5764
+ overflow-x: auto;
5765
+ padding: 0;
5766
+ position: relative;
5767
+ scrollbar-width: none;
5768
+ }
5769
+ html[data-theme=dark] .prokodo-Tabs__list {
5770
+ border-bottom-color: var(--color-grey-700);
5771
+ }
5772
+ .prokodo-Tabs__list--vertical {
5773
+ border-bottom: none;
5774
+ border-right: 1px solid var(--color-grey-200);
5775
+ flex-direction: column;
5776
+ overflow-x: visible;
5777
+ }
5778
+ html[data-theme=dark] .prokodo-Tabs__list--vertical {
5779
+ border-right-color: var(--color-grey-700);
5780
+ }
5781
+ .prokodo-Tabs__list--disabled {
5782
+ opacity: 0.7;
5783
+ }
5784
+ .prokodo-Tabs__tab {
5785
+ align-items: center;
5786
+ background: transparent;
5787
+ border: none;
5788
+ border-top-left-radius: 1.5rem;
5789
+ border-top-right-radius: 1.5rem;
5790
+ box-shadow: none;
5791
+ color: var(--color-grey-700);
5792
+ cursor: pointer;
5793
+ display: inline-flex;
5794
+ gap: 0.5rem;
5795
+ justify-content: center;
5796
+ min-height: px-to-rem(44px);
5797
+ padding: 0.75rem 1rem;
5798
+ position: relative;
5799
+ transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
5800
+ font-weight: 400;
5801
+ font-size: 1.125rem;
5802
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
5803
+ font-style: normal;
5804
+ line-height: 1.55;
5805
+ letter-spacing: 0.03em;
5806
+ text-transform: none;
5807
+ text-align: left;
5808
+ text-decoration: none;
5809
+ }
5810
+ @media screen and (min-width: 480px) {
5811
+ .prokodo-Tabs__tab {
5812
+ font-size: 1rem;
5813
+ }
5814
+ }
5815
+ @media screen and (min-width: 960px) {
5816
+ .prokodo-Tabs__tab {
5817
+ font-size: 1rem;
5818
+ }
5819
+ }
5820
+ .prokodo-Tabs__tab--vertical {
5821
+ border-top-left-radius: 0;
5822
+ border-top-right-radius: 0;
5823
+ }
5824
+ .prokodo-Tabs__tab:hover {
5825
+ background: var(--color-primary-50);
5826
+ }
5827
+ .prokodo-Tabs__tab:focus-visible {
5828
+ outline: 0;
5829
+ background: var(--color-primary-50);
5830
+ }
5831
+ .prokodo-Tabs__tab::after {
5832
+ background: transparent;
5833
+ bottom: 0;
5834
+ content: "";
5835
+ height: 3px;
5836
+ left: 0;
5837
+ position: absolute;
5838
+ right: 0;
5839
+ transform: scaleX(0.35);
5840
+ transform-origin: center;
5841
+ transition: background-color 180ms ease, transform 180ms ease;
5842
+ }
5843
+ .prokodo-Tabs__tab--fullWidth {
5844
+ flex: 1 1;
5845
+ }
5846
+ .prokodo-Tabs__tab--selected {
5847
+ color: var(--color-primary-900);
5848
+ }
5849
+ .prokodo-Tabs__tab--selected::after {
5850
+ background: var(--gradient-border-4);
5851
+ transform: scaleX(1);
5852
+ }
5853
+ .prokodo-Tabs__tab--disabled {
5854
+ color: var(--color-grey-500);
5855
+ cursor: not-allowed;
5856
+ opacity: 0.58;
5857
+ }
5858
+ .prokodo-Tabs__tab--disabled:hover {
5859
+ background: transparent;
5860
+ }
5861
+ .prokodo-Tabs__tab--disabled::after {
5862
+ background: transparent;
5863
+ }
5864
+ .prokodo-Tabs__list--vertical .prokodo-Tabs__tab {
5865
+ justify-content: flex-start;
5866
+ text-align: left;
5867
+ }
5868
+ .prokodo-Tabs__list--vertical .prokodo-Tabs__tab::after {
5869
+ bottom: 0;
5870
+ height: auto;
5871
+ left: 0;
5872
+ right: auto;
5873
+ top: 0;
5874
+ transform: scaleY(0.35);
5875
+ transform-origin: center;
5876
+ width: 3px;
5877
+ }
5878
+ .prokodo-Tabs__list--vertical .prokodo-Tabs__tab--selected::after {
5879
+ transform: scaleY(1);
5880
+ }
5881
+ .prokodo-Tabs__tabLabel {
5882
+ display: -webkit-box;
5883
+ -webkit-line-clamp: 1;
5884
+ -webkit-box-orient: vertical;
5885
+ overflow: hidden;
5886
+ }
5887
+ .prokodo-Tabs__badge {
5888
+ align-items: center;
5889
+ background: var(--color-grey-200);
5890
+ border-radius: px-to-rem(999px);
5891
+ color: var(--color-grey-700);
5892
+ display: inline-flex;
5893
+ justify-content: center;
5894
+ min-width: px-to-rem(20px);
5895
+ padding: 0 0.25rem;
5896
+ font-size: px-to-rem(12px);
5897
+ font-weight: 400;
5898
+ font-size: 1.125rem;
5899
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
5900
+ font-style: normal;
5901
+ line-height: 1.55;
5902
+ letter-spacing: 0.03em;
5903
+ text-transform: none;
5904
+ text-align: left;
5905
+ text-decoration: none;
5906
+ }
5907
+ @media screen and (min-width: 480px) {
5908
+ .prokodo-Tabs__badge {
5909
+ font-size: 1rem;
5910
+ }
5911
+ }
5912
+ @media screen and (min-width: 960px) {
5913
+ .prokodo-Tabs__badge {
5914
+ font-size: 1rem;
5915
+ }
5916
+ }
5917
+ .prokodo-Tabs__badgeChip {
5918
+ pointer-events: none;
5919
+ font-weight: 400;
5920
+ font-size: 1rem;
5921
+ font-family: var(--font-secondary), -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
5922
+ font-style: normal;
5923
+ line-height: 1.45;
5924
+ letter-spacing: 0.03em;
5925
+ text-transform: none;
5926
+ text-align: left;
5927
+ text-decoration: none;
5928
+ }
5929
+ @media screen and (min-width: 480px) {
5930
+ .prokodo-Tabs__badgeChip {
5931
+ font-size: 0.875rem;
5932
+ line-height: 1.4;
5933
+ }
5934
+ }
5935
+ @media screen and (min-width: 960px) {
5936
+ .prokodo-Tabs__badgeChip {
5937
+ font-size: 0.875rem;
5938
+ line-height: 1.4;
5939
+ }
5940
+ }
5941
+ .prokodo-Tabs__panel {
5942
+ background: transparent;
5943
+ border-radius: 0;
5944
+ box-shadow: none;
5945
+ padding: 1rem;
5946
+ }
5947
+ .prokodo-Tabs__panel[hidden] {
5948
+ display: none !important;
5949
+ }
5950
+ .prokodo-Tabs__panel:focus-visible {
5951
+ outline: 0;
5952
+ background: var(--gradient-border-4);
5953
+ }
5954
+
5093
5955
  .prokodo-Teaser {
5094
5956
  overflow: hidden;
5095
5957
  }
@@ -5241,6 +6103,7 @@ html[data-theme=dark] .prokodo-Skeleton::after {
5241
6103
  .prokodo-Tooltip__bubble--open {
5242
6104
  opacity: 1;
5243
6105
  visibility: visible;
6106
+ pointer-events: auto;
5244
6107
  }
5245
6108
  .prokodo-Tooltip__bubble::after {
5246
6109
  content: "";