@signiphi/pdf-compose 0.1.0-beta.1 → 0.1.0-beta.10

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 (102) hide show
  1. package/README.md +265 -0
  2. package/dist/components/DocumentGenerator.d.ts +3 -0
  3. package/dist/components/DocumentGenerator.d.ts.map +1 -0
  4. package/dist/components/EditorPanel.d.ts +15 -0
  5. package/dist/components/EditorPanel.d.ts.map +1 -0
  6. package/dist/components/EditorToolbar.d.ts +11 -0
  7. package/dist/components/EditorToolbar.d.ts.map +1 -0
  8. package/dist/components/ErrorBoundary.d.ts +18 -0
  9. package/dist/components/ErrorBoundary.d.ts.map +1 -0
  10. package/dist/components/FieldEditPopover.d.ts +12 -0
  11. package/dist/components/FieldEditPopover.d.ts.map +1 -0
  12. package/dist/components/FieldInsertPopover.d.ts +12 -0
  13. package/dist/components/FieldInsertPopover.d.ts.map +1 -0
  14. package/dist/components/FieldNodeView.d.ts +3 -0
  15. package/dist/components/FieldNodeView.d.ts.map +1 -0
  16. package/dist/components/FieldOverlay.d.ts +9 -0
  17. package/dist/components/FieldOverlay.d.ts.map +1 -0
  18. package/dist/components/GeneratePanel.d.ts +15 -0
  19. package/dist/components/GeneratePanel.d.ts.map +1 -0
  20. package/dist/components/PreviewPanel.d.ts +12 -0
  21. package/dist/components/PreviewPanel.d.ts.map +1 -0
  22. package/dist/components/VariableEditPopover.d.ts +12 -0
  23. package/dist/components/VariableEditPopover.d.ts.map +1 -0
  24. package/dist/components/VariableInsertPopover.d.ts +13 -0
  25. package/dist/components/VariableInsertPopover.d.ts.map +1 -0
  26. package/dist/components/VariableNodeView.d.ts +3 -0
  27. package/dist/components/VariableNodeView.d.ts.map +1 -0
  28. package/dist/components/WatermarkNodeView.d.ts +3 -0
  29. package/dist/components/WatermarkNodeView.d.ts.map +1 -0
  30. package/dist/contexts/ThemeContext.d.ts +19 -0
  31. package/dist/contexts/ThemeContext.d.ts.map +1 -0
  32. package/dist/extensions/columns-node.d.ts +4 -0
  33. package/dist/extensions/columns-node.d.ts.map +1 -0
  34. package/dist/extensions/field-node.d.ts +31 -0
  35. package/dist/extensions/field-node.d.ts.map +1 -0
  36. package/dist/extensions/panel-node.d.ts +3 -0
  37. package/dist/extensions/panel-node.d.ts.map +1 -0
  38. package/dist/extensions/repeat-node.d.ts +3 -0
  39. package/dist/extensions/repeat-node.d.ts.map +1 -0
  40. package/dist/extensions/subtotals-node.d.ts +3 -0
  41. package/dist/extensions/subtotals-node.d.ts.map +1 -0
  42. package/dist/extensions/variable-node.d.ts +18 -0
  43. package/dist/extensions/variable-node.d.ts.map +1 -0
  44. package/dist/extensions/watermark-node.d.ts +3 -0
  45. package/dist/extensions/watermark-node.d.ts.map +1 -0
  46. package/dist/hooks/useDocumentGenerator.d.ts +46 -0
  47. package/dist/hooks/useDocumentGenerator.d.ts.map +1 -0
  48. package/dist/index.d.ts +19 -0
  49. package/dist/index.d.ts.map +1 -0
  50. package/dist/index.js +3081 -562
  51. package/dist/index.js.map +1 -1
  52. package/dist/index.mjs +3068 -565
  53. package/dist/index.mjs.map +1 -1
  54. package/dist/lib/ui/button.d.ts +12 -0
  55. package/dist/lib/ui/button.d.ts.map +1 -0
  56. package/dist/lib/ui/index.d.ts +10 -0
  57. package/dist/lib/ui/index.d.ts.map +1 -0
  58. package/dist/lib/ui/input.d.ts +6 -0
  59. package/dist/lib/ui/input.d.ts.map +1 -0
  60. package/dist/lib/ui/label.d.ts +8 -0
  61. package/dist/lib/ui/label.d.ts.map +1 -0
  62. package/dist/lib/ui/popover.d.ts +8 -0
  63. package/dist/lib/ui/popover.d.ts.map +1 -0
  64. package/dist/lib/ui/select.d.ts +14 -0
  65. package/dist/lib/ui/select.d.ts.map +1 -0
  66. package/dist/lib/ui/toggle-group.d.ts +13 -0
  67. package/dist/lib/ui/toggle-group.d.ts.map +1 -0
  68. package/dist/lib/ui/tooltip.d.ts +8 -0
  69. package/dist/lib/ui/tooltip.d.ts.map +1 -0
  70. package/dist/lib/utils.d.ts +3 -0
  71. package/dist/lib/utils.d.ts.map +1 -0
  72. package/dist/styles/index.css +349 -194
  73. package/dist/styles/index.d.ts +1 -0
  74. package/dist/types/index.d.ts +204 -0
  75. package/dist/types/index.d.ts.map +1 -0
  76. package/dist/utils/error-helpers.d.ts +27 -0
  77. package/dist/utils/error-helpers.d.ts.map +1 -0
  78. package/dist/utils/field-helpers.d.ts +31 -0
  79. package/dist/utils/field-helpers.d.ts.map +1 -0
  80. package/dist/utils/markdown-parser.d.ts +6 -0
  81. package/dist/utils/markdown-parser.d.ts.map +1 -0
  82. package/dist/utils/markdown-validator.d.ts +13 -0
  83. package/dist/utils/markdown-validator.d.ts.map +1 -0
  84. package/dist/utils/markdown-writer.d.ts +6 -0
  85. package/dist/utils/markdown-writer.d.ts.map +1 -0
  86. package/dist/utils/pdf-generator.d.ts +77 -0
  87. package/dist/utils/pdf-generator.d.ts.map +1 -0
  88. package/dist/utils/pdf-metadata.d.ts +58 -0
  89. package/dist/utils/pdf-metadata.d.ts.map +1 -0
  90. package/dist/utils/pdf-preview.d.ts +7 -0
  91. package/dist/utils/pdf-preview.d.ts.map +1 -0
  92. package/dist/utils/template-pipeline.d.ts +39 -0
  93. package/dist/utils/template-pipeline.d.ts.map +1 -0
  94. package/dist/utils/theme-helpers.d.ts +21 -0
  95. package/dist/utils/theme-helpers.d.ts.map +1 -0
  96. package/dist/utils/variable-helpers.d.ts +74 -0
  97. package/dist/utils/variable-helpers.d.ts.map +1 -0
  98. package/dist/utils/xml-template-parser.d.ts +9 -0
  99. package/dist/utils/xml-template-parser.d.ts.map +1 -0
  100. package/package.json +16 -6
  101. package/src/styles/index.css +140 -68
  102. package/src/styles/index.d.ts +1 -0
@@ -24,14 +24,13 @@
24
24
  --color-green-400: rgb(5, 223, 114);
25
25
  --color-green-600: rgb(0, 164, 71);
26
26
  --color-green-700: rgb(0, 129, 58);
27
- --color-emerald-500: rgb(0, 185, 129);
28
27
  --color-emerald-600: rgb(0, 150, 105);
29
- --color-emerald-700: rgb(0, 120, 87);
30
28
  --color-teal-100: rgb(203, 251, 241);
31
29
  --color-teal-200: rgb(150, 247, 228);
32
30
  --color-teal-300: rgb(70, 236, 213);
33
31
  --color-teal-600: rgb(0, 148, 136);
34
32
  --color-teal-700: rgb(0, 119, 110);
33
+ --color-blue-50: rgb(239, 246, 255);
35
34
  --color-blue-100: rgb(219, 234, 254);
36
35
  --color-blue-200: rgb(190, 219, 255);
37
36
  --color-blue-300: rgb(145, 197, 255);
@@ -88,9 +87,7 @@
88
87
  --color-amber-700: rgb(181, 82, 0);
89
88
  --color-green-600: rgb(0, 164, 71);
90
89
  --color-green-700: rgb(0, 129, 58);
91
- --color-emerald-500: rgb(0, 185, 129);
92
90
  --color-emerald-600: rgb(0, 150, 105);
93
- --color-emerald-700: rgb(0, 120, 87);
94
91
  --color-teal-600: rgb(0, 148, 136);
95
92
  --color-teal-700: rgb(0, 119, 110);
96
93
  --color-blue-200: rgb(190, 219, 255);
@@ -119,9 +116,7 @@
119
116
  --color-amber-700: color(display-p3 0.67989 0.32771 0.05205);
120
117
  --color-green-600: color(display-p3 0.24388 0.64082 0.29481);
121
118
  --color-green-700: color(display-p3 0.19836 0.5018 0.24533);
122
- --color-emerald-500: color(display-p3 0.26711 0.72685 0.5084);
123
119
  --color-emerald-600: color(display-p3 0.20656 0.58906 0.41396);
124
- --color-emerald-700: color(display-p3 0.16404 0.47023 0.34351);
125
120
  --color-teal-600: color(display-p3 0.20711 0.57958 0.53668);
126
121
  --color-teal-700: color(display-p3 0.17409 0.46132 0.43387);
127
122
  --color-blue-200: color(display-p3 0.76688 0.85521 0.98748);
@@ -316,9 +311,15 @@
316
311
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .collapse {
317
312
  visibility: collapse;
318
313
  }
314
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .visible {
315
+ visibility: visible;
316
+ }
319
317
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .absolute {
320
318
  position: absolute;
321
319
  }
320
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .fixed {
321
+ position: fixed;
322
+ }
322
323
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .relative {
323
324
  position: relative;
324
325
  }
@@ -335,10 +336,21 @@
335
336
  bottom: calc(var(--spacing) * 0);
336
337
  left: calc(var(--spacing) * 0);
337
338
  }
339
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .top-1\/2 {
340
+ top: calc(1/2 * 100%);
341
+ }
342
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .right-2 {
343
+ right: calc(0.25rem * 2);
344
+ right: calc(var(--spacing) * 2);
345
+ }
338
346
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .left-2 {
339
347
  left: calc(0.25rem * 2);
340
348
  left: calc(var(--spacing) * 2);
341
349
  }
350
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .left-2\.5 {
351
+ left: calc(0.25rem * 2.5);
352
+ left: calc(var(--spacing) * 2.5);
353
+ }
342
354
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .z-50 {
343
355
  z-index: 50;
344
356
  }
@@ -420,6 +432,9 @@
420
432
  margin-left: calc(0.25rem * 1);
421
433
  margin-left: calc(var(--spacing) * 1);
422
434
  }
435
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .ml-auto {
436
+ margin-left: auto;
437
+ }
423
438
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .box-border {
424
439
  box-sizing: border-box;
425
440
  }
@@ -536,6 +551,10 @@
536
551
  width: calc(0.25rem * 20);
537
552
  width: calc(var(--spacing) * 20);
538
553
  }
554
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .w-48 {
555
+ width: calc(0.25rem * 48);
556
+ width: calc(var(--spacing) * 48);
557
+ }
539
558
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .w-72 {
540
559
  width: calc(0.25rem * 72);
541
560
  width: calc(var(--spacing) * 72);
@@ -581,6 +600,12 @@
581
600
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .shrink-0 {
582
601
  flex-shrink: 0;
583
602
  }
603
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .-translate-y-1\/2 {
604
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
605
+ translate: var(--tw-translate-x) calc((1/2 * 100%) * -1);
606
+ translate: var(--tw-translate-x) calc(calc(1/2 * 100%) * -1);
607
+ translate: var(--tw-translate-x) var(--tw-translate-y);
608
+ }
584
609
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .transform {
585
610
  transform: ;
586
611
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
@@ -592,6 +617,9 @@
592
617
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .cursor-default {
593
618
  cursor: default;
594
619
  }
620
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .cursor-not-allowed {
621
+ cursor: not-allowed;
622
+ }
595
623
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .cursor-pointer {
596
624
  cursor: pointer;
597
625
  }
@@ -740,6 +768,10 @@
740
768
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .rounded-none {
741
769
  border-radius: 0;
742
770
  }
771
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .rounded-sm {
772
+ border-radius: calc(0.5rem - 4px);
773
+ border-radius: calc(var(--xpc-radius) - 4px);
774
+ }
743
775
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border {
744
776
  border-style: var(--tw-border-style);
745
777
  border-width: 1px;
@@ -773,6 +805,11 @@
773
805
  border-color: color(display-p3 0.97433 0.83063 0.33298);
774
806
  border-color: var(--color-amber-300);
775
807
  }
808
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-blue-200 {
809
+ border-color: rgb(190, 219, 255);
810
+ border-color: color(display-p3 0.76688 0.85521 0.98748);
811
+ border-color: var(--color-blue-200);
812
+ }
776
813
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-blue-300 {
777
814
  border-color: rgb(145, 197, 255);
778
815
  border-color: color(display-p3 0.60256 0.76721 0.99394);
@@ -780,11 +817,11 @@
780
817
  }
781
818
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-border {
782
819
  border-color: hsl(214, 32%, 91%);
783
- border-color: hsl(var(--xpc-border));
820
+ border-color: var(--xpc-border);
784
821
  }
785
822
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-destructive\/20 {
786
823
  border-color: hsl(0, 84%, 60%);
787
- border-color: hsl(var(--xpc-destructive));
824
+ border-color: var(--xpc-destructive);
788
825
  }
789
826
  @supports (color: color-mix(in lab, red, red)) {
790
827
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-destructive\/20 {
@@ -793,32 +830,7 @@
793
830
 
794
831
  @supports (color: color-mix(in lch, red, blue)) {
795
832
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-destructive\/20 {
796
- border-color: color-mix(in oklab, hsl(var(--xpc-destructive)) 20%, transparent);
797
- }
798
- }
799
- }
800
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-emerald-500\/20 {
801
- border-color: rgba(0, 185, 129, 0.2);
802
- }
803
- @media (color-gamut: p3) {
804
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-emerald-500\/20 {
805
- border-color: color(display-p3 0.26711 0.72685 0.5084 / 0.2);
806
- }
807
- }
808
- @supports (color: color-mix(in lab, red, red)) {
809
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-emerald-500\/20 {
810
- border-color: color-mix(in oklab, rgb(0, 185, 129) 20%, transparent);
811
- }
812
-
813
- @media (color-gamut: p3) {
814
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-emerald-500\/20 {
815
- border-color: color-mix(in oklab, color(display-p3 0.26711 0.72685 0.5084) 20%, transparent);
816
- }
817
- }
818
-
819
- @supports (color: color-mix(in lch, red, blue)) {
820
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-emerald-500\/20 {
821
- border-color: color-mix(in oklab, var(--color-emerald-500) 20%, transparent);
833
+ border-color: color-mix(in oklab, var(--xpc-destructive) 20%, transparent);
822
834
  }
823
835
  }
824
836
  }
@@ -841,11 +853,11 @@
841
853
  }
842
854
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-input {
843
855
  border-color: hsl(214, 32%, 91%);
844
- border-color: hsl(var(--xpc-input));
856
+ border-color: var(--xpc-input);
845
857
  }
846
858
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-muted-foreground\/50 {
847
859
  border-color: hsl(215, 16%, 47%);
848
- border-color: hsl(var(--xpc-muted-foreground));
860
+ border-color: var(--xpc-muted-foreground);
849
861
  }
850
862
  @supports (color: color-mix(in lab, red, red)) {
851
863
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-muted-foreground\/50 {
@@ -854,7 +866,7 @@
854
866
 
855
867
  @supports (color: color-mix(in lch, red, blue)) {
856
868
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-muted-foreground\/50 {
857
- border-color: color-mix(in oklab, hsl(var(--xpc-muted-foreground)) 50%, transparent);
869
+ border-color: color-mix(in oklab, var(--xpc-muted-foreground) 50%, transparent);
858
870
  }
859
871
  }
860
872
  }
@@ -908,7 +920,7 @@
908
920
  }
909
921
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-accent {
910
922
  background-color: hsl(210, 40%, 96%);
911
- background-color: hsl(var(--xpc-accent));
923
+ background-color: var(--xpc-accent);
912
924
  }
913
925
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-amber-100 {
914
926
  background-color: rgb(254, 243, 198);
@@ -916,7 +928,11 @@
916
928
  }
917
929
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-background {
918
930
  background-color: hsl(0, 0%, 100%);
919
- background-color: hsl(var(--xpc-background));
931
+ background-color: var(--xpc-background);
932
+ }
933
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-blue-50 {
934
+ background-color: rgb(239, 246, 255);
935
+ background-color: var(--color-blue-50);
920
936
  }
921
937
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-blue-100 {
922
938
  background-color: rgb(219, 234, 254);
@@ -924,19 +940,19 @@
924
940
  }
925
941
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-border {
926
942
  background-color: hsl(214, 32%, 91%);
927
- background-color: hsl(var(--xpc-border));
943
+ background-color: var(--xpc-border);
928
944
  }
929
945
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-card {
930
946
  background-color: hsl(0, 0%, 100%);
931
- background-color: hsl(var(--xpc-card));
947
+ background-color: var(--xpc-card);
932
948
  }
933
949
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-destructive {
934
950
  background-color: hsl(0, 84%, 60%);
935
- background-color: hsl(var(--xpc-destructive));
951
+ background-color: var(--xpc-destructive);
936
952
  }
937
953
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-destructive\/10 {
938
954
  background-color: hsl(0, 84%, 60%);
939
- background-color: hsl(var(--xpc-destructive));
955
+ background-color: var(--xpc-destructive);
940
956
  }
941
957
  @supports (color: color-mix(in lab, red, red)) {
942
958
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-destructive\/10 {
@@ -945,32 +961,7 @@
945
961
 
946
962
  @supports (color: color-mix(in lch, red, blue)) {
947
963
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-destructive\/10 {
948
- background-color: color-mix(in oklab, hsl(var(--xpc-destructive)) 10%, transparent);
949
- }
950
- }
951
- }
952
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-emerald-500\/10 {
953
- background-color: rgba(0, 185, 129, 0.1);
954
- }
955
- @media (color-gamut: p3) {
956
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-emerald-500\/10 {
957
- background-color: color(display-p3 0.26711 0.72685 0.5084 / 0.1);
958
- }
959
- }
960
- @supports (color: color-mix(in lab, red, red)) {
961
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-emerald-500\/10 {
962
- background-color: color-mix(in oklab, rgb(0, 185, 129) 10%, transparent);
963
- }
964
-
965
- @media (color-gamut: p3) {
966
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-emerald-500\/10 {
967
- background-color: color-mix(in oklab, color(display-p3 0.26711 0.72685 0.5084) 10%, transparent);
968
- }
969
- }
970
-
971
- @supports (color: color-mix(in lch, red, blue)) {
972
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-emerald-500\/10 {
973
- background-color: color-mix(in oklab, var(--color-emerald-500) 10%, transparent);
964
+ background-color: color-mix(in oklab, var(--xpc-destructive) 10%, transparent);
974
965
  }
975
966
  }
976
967
  }
@@ -993,11 +984,11 @@
993
984
  }
994
985
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted {
995
986
  background-color: hsl(210, 40%, 96%);
996
- background-color: hsl(var(--xpc-muted));
987
+ background-color: var(--xpc-muted);
997
988
  }
998
989
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/20 {
999
990
  background-color: hsl(210, 40%, 96%);
1000
- background-color: hsl(var(--xpc-muted));
991
+ background-color: var(--xpc-muted);
1001
992
  }
1002
993
  @supports (color: color-mix(in lab, red, red)) {
1003
994
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/20 {
@@ -1006,13 +997,13 @@
1006
997
 
1007
998
  @supports (color: color-mix(in lch, red, blue)) {
1008
999
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/20 {
1009
- background-color: color-mix(in oklab, hsl(var(--xpc-muted)) 20%, transparent);
1000
+ background-color: color-mix(in oklab, var(--xpc-muted) 20%, transparent);
1010
1001
  }
1011
1002
  }
1012
1003
  }
1013
1004
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/30 {
1014
1005
  background-color: hsl(210, 40%, 96%);
1015
- background-color: hsl(var(--xpc-muted));
1006
+ background-color: var(--xpc-muted);
1016
1007
  }
1017
1008
  @supports (color: color-mix(in lab, red, red)) {
1018
1009
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/30 {
@@ -1021,13 +1012,13 @@
1021
1012
 
1022
1013
  @supports (color: color-mix(in lch, red, blue)) {
1023
1014
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/30 {
1024
- background-color: color-mix(in oklab, hsl(var(--xpc-muted)) 30%, transparent);
1015
+ background-color: color-mix(in oklab, var(--xpc-muted) 30%, transparent);
1025
1016
  }
1026
1017
  }
1027
1018
  }
1028
1019
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/40 {
1029
1020
  background-color: hsl(210, 40%, 96%);
1030
- background-color: hsl(var(--xpc-muted));
1021
+ background-color: var(--xpc-muted);
1031
1022
  }
1032
1023
  @supports (color: color-mix(in lab, red, red)) {
1033
1024
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/40 {
@@ -1036,13 +1027,13 @@
1036
1027
 
1037
1028
  @supports (color: color-mix(in lch, red, blue)) {
1038
1029
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/40 {
1039
- background-color: color-mix(in oklab, hsl(var(--xpc-muted)) 40%, transparent);
1030
+ background-color: color-mix(in oklab, var(--xpc-muted) 40%, transparent);
1040
1031
  }
1041
1032
  }
1042
1033
  }
1043
1034
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/50 {
1044
1035
  background-color: hsl(210, 40%, 96%);
1045
- background-color: hsl(var(--xpc-muted));
1036
+ background-color: var(--xpc-muted);
1046
1037
  }
1047
1038
  @supports (color: color-mix(in lab, red, red)) {
1048
1039
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/50 {
@@ -1051,7 +1042,7 @@
1051
1042
 
1052
1043
  @supports (color: color-mix(in lch, red, blue)) {
1053
1044
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-muted\/50 {
1054
- background-color: color-mix(in oklab, hsl(var(--xpc-muted)) 50%, transparent);
1045
+ background-color: color-mix(in oklab, var(--xpc-muted) 50%, transparent);
1055
1046
  }
1056
1047
  }
1057
1048
  }
@@ -1096,12 +1087,12 @@
1096
1087
  }
1097
1088
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-popover {
1098
1089
  background-color: hsl(0, 0%, 100%);
1099
- background-color: hsl(var(--xpc-popover));
1090
+ background-color: var(--xpc-popover);
1100
1091
  }
1101
1092
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-primary {
1102
1093
  background-color: rgb(0, 139, 185);
1103
1094
  background-color: color(display-p3 0 0.54285 0.7725);
1104
- background-color: oklch(var(--xpc-primary));
1095
+ background-color: var(--xpc-primary);
1105
1096
  }
1106
1097
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-purple-50 {
1107
1098
  background-color: rgb(250, 245, 255);
@@ -1113,7 +1104,7 @@
1113
1104
  }
1114
1105
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-secondary {
1115
1106
  background-color: hsl(210, 40%, 96%);
1116
- background-color: hsl(var(--xpc-secondary));
1107
+ background-color: var(--xpc-secondary);
1117
1108
  }
1118
1109
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-teal-100 {
1119
1110
  background-color: rgb(203, 251, 241);
@@ -1131,15 +1122,15 @@
1131
1122
  background-image: linear-gradient(var(--tw-gradient-stops));
1132
1123
  }
1133
1124
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .from-background {
1134
- --tw-gradient-from: hsl(var(--xpc-background));
1125
+ --tw-gradient-from: var(--xpc-background);
1135
1126
  --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
1136
1127
  }
1137
1128
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .to-muted\/20 {
1138
- --tw-gradient-to: hsl(var(--xpc-muted));
1129
+ --tw-gradient-to: var(--xpc-muted);
1139
1130
  }
1140
1131
  @supports (color: color-mix(in lab, red, red)) {
1141
1132
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .to-muted\/20 {
1142
- --tw-gradient-to: color-mix(in oklab, hsl(var(--xpc-muted)) 20%, transparent);
1133
+ --tw-gradient-to: color-mix(in oklab, var(--xpc-muted) 20%, transparent);
1143
1134
  }
1144
1135
  }
1145
1136
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .to-muted\/20 {
@@ -1273,14 +1264,14 @@
1273
1264
  padding-right: calc(0.25rem * 2);
1274
1265
  padding-right: calc(var(--spacing) * 2);
1275
1266
  }
1276
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .pb-0 {
1277
- padding-bottom: calc(0.25rem * 0);
1278
- padding-bottom: calc(var(--spacing) * 0);
1279
- }
1280
1267
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .pl-2 {
1281
1268
  padding-left: calc(0.25rem * 2);
1282
1269
  padding-left: calc(var(--spacing) * 2);
1283
1270
  }
1271
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .pl-7 {
1272
+ padding-left: calc(0.25rem * 7);
1273
+ padding-left: calc(var(--spacing) * 7);
1274
+ }
1284
1275
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .pl-8 {
1285
1276
  padding-left: calc(0.25rem * 8);
1286
1277
  padding-left: calc(var(--spacing) * 8);
@@ -1352,7 +1343,7 @@
1352
1343
  }
1353
1344
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-accent-foreground {
1354
1345
  color: hsl(222, 47%, 11%);
1355
- color: hsl(var(--xpc-accent-foreground));
1346
+ color: var(--xpc-accent-foreground);
1356
1347
  }
1357
1348
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-amber-600 {
1358
1349
  color: rgb(218, 119, 0);
@@ -1374,25 +1365,20 @@
1374
1365
  }
1375
1366
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-destructive {
1376
1367
  color: hsl(0, 84%, 60%);
1377
- color: hsl(var(--xpc-destructive));
1368
+ color: var(--xpc-destructive);
1378
1369
  }
1379
1370
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-destructive-foreground {
1380
1371
  color: hsl(210, 40%, 98%);
1381
- color: hsl(var(--xpc-destructive-foreground));
1372
+ color: var(--xpc-destructive-foreground);
1382
1373
  }
1383
1374
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-emerald-600 {
1384
1375
  color: rgb(0, 150, 105);
1385
1376
  color: color(display-p3 0.20656 0.58906 0.41396);
1386
1377
  color: var(--color-emerald-600);
1387
1378
  }
1388
- .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-emerald-700 {
1389
- color: rgb(0, 120, 87);
1390
- color: color(display-p3 0.16404 0.47023 0.34351);
1391
- color: var(--color-emerald-700);
1392
- }
1393
1379
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-foreground {
1394
1380
  color: hsl(222, 84%, 5%);
1395
- color: hsl(var(--xpc-foreground));
1381
+ color: var(--xpc-foreground);
1396
1382
  }
1397
1383
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-gray-600 {
1398
1384
  color: rgb(74, 85, 101);
@@ -1422,11 +1408,11 @@
1422
1408
  }
1423
1409
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground {
1424
1410
  color: hsl(215, 16%, 47%);
1425
- color: hsl(var(--xpc-muted-foreground));
1411
+ color: var(--xpc-muted-foreground);
1426
1412
  }
1427
1413
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/50 {
1428
1414
  color: hsl(215, 16%, 47%);
1429
- color: hsl(var(--xpc-muted-foreground));
1415
+ color: var(--xpc-muted-foreground);
1430
1416
  }
1431
1417
  @supports (color: color-mix(in lab, red, red)) {
1432
1418
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/50 {
@@ -1435,13 +1421,13 @@
1435
1421
 
1436
1422
  @supports (color: color-mix(in lch, red, blue)) {
1437
1423
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/50 {
1438
- color: color-mix(in oklab, hsl(var(--xpc-muted-foreground)) 50%, transparent);
1424
+ color: color-mix(in oklab, var(--xpc-muted-foreground) 50%, transparent);
1439
1425
  }
1440
1426
  }
1441
1427
  }
1442
1428
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/60 {
1443
1429
  color: hsl(215, 16%, 47%);
1444
- color: hsl(var(--xpc-muted-foreground));
1430
+ color: var(--xpc-muted-foreground);
1445
1431
  }
1446
1432
  @supports (color: color-mix(in lab, red, red)) {
1447
1433
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/60 {
@@ -1450,13 +1436,13 @@
1450
1436
 
1451
1437
  @supports (color: color-mix(in lch, red, blue)) {
1452
1438
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/60 {
1453
- color: color-mix(in oklab, hsl(var(--xpc-muted-foreground)) 60%, transparent);
1439
+ color: color-mix(in oklab, var(--xpc-muted-foreground) 60%, transparent);
1454
1440
  }
1455
1441
  }
1456
1442
  }
1457
1443
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/70 {
1458
1444
  color: hsl(215, 16%, 47%);
1459
- color: hsl(var(--xpc-muted-foreground));
1445
+ color: var(--xpc-muted-foreground);
1460
1446
  }
1461
1447
  @supports (color: color-mix(in lab, red, red)) {
1462
1448
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/70 {
@@ -1465,7 +1451,7 @@
1465
1451
 
1466
1452
  @supports (color: color-mix(in lch, red, blue)) {
1467
1453
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-muted-foreground\/70 {
1468
- color: color-mix(in oklab, hsl(var(--xpc-muted-foreground)) 70%, transparent);
1454
+ color: color-mix(in oklab, var(--xpc-muted-foreground) 70%, transparent);
1469
1455
  }
1470
1456
  }
1471
1457
  }
@@ -1491,16 +1477,16 @@
1491
1477
  }
1492
1478
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-popover-foreground {
1493
1479
  color: hsl(222, 84%, 5%);
1494
- color: hsl(var(--xpc-popover-foreground));
1480
+ color: var(--xpc-popover-foreground);
1495
1481
  }
1496
1482
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-primary {
1497
1483
  color: rgb(0, 139, 185);
1498
1484
  color: color(display-p3 0 0.54285 0.7725);
1499
- color: oklch(var(--xpc-primary));
1485
+ color: var(--xpc-primary);
1500
1486
  }
1501
1487
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-primary-foreground {
1502
1488
  color: hsl(210, 40%, 98%);
1503
- color: hsl(var(--xpc-primary-foreground));
1489
+ color: var(--xpc-primary-foreground);
1504
1490
  }
1505
1491
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-purple-600 {
1506
1492
  color: rgb(152, 16, 250);
@@ -1517,7 +1503,7 @@
1517
1503
  }
1518
1504
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-secondary-foreground {
1519
1505
  color: hsl(222, 47%, 11%);
1520
- color: hsl(var(--xpc-secondary-foreground));
1506
+ color: var(--xpc-secondary-foreground);
1521
1507
  }
1522
1508
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-teal-600 {
1523
1509
  color: rgb(0, 148, 136);
@@ -1535,6 +1521,9 @@
1535
1521
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .italic {
1536
1522
  font-style: italic;
1537
1523
  }
1524
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .overline {
1525
+ text-decoration-line: overline;
1526
+ }
1538
1527
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .underline {
1539
1528
  text-decoration-line: underline;
1540
1529
  }
@@ -1544,7 +1533,7 @@
1544
1533
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .accent-primary {
1545
1534
  accent-color: rgb(0, 139, 185);
1546
1535
  accent-color: color(display-p3 0 0.54285 0.7725);
1547
- accent-color: oklch(var(--xpc-primary));
1536
+ accent-color: var(--xpc-primary);
1548
1537
  }
1549
1538
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .opacity-50 {
1550
1539
  opacity: 0.5;
@@ -1572,19 +1561,23 @@
1572
1561
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1573
1562
  }
1574
1563
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .ring-primary {
1575
- --tw-ring-color: oklch(var(--xpc-primary));
1564
+ --tw-ring-color: var(--xpc-primary);
1576
1565
  }
1577
1566
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .ring-offset-1 {
1578
1567
  --tw-ring-offset-width: 1px;
1579
1568
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1580
1569
  }
1581
1570
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .ring-offset-background {
1582
- --tw-ring-offset-color: hsl(var(--xpc-background));
1571
+ --tw-ring-offset-color: var(--xpc-background);
1583
1572
  }
1584
1573
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .outline {
1585
1574
  outline-style: var(--tw-outline-style);
1586
1575
  outline-width: 1px;
1587
1576
  }
1577
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .filter {
1578
+ filter: ;
1579
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
1580
+ }
1588
1581
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .transition-all {
1589
1582
  transition-property: all;
1590
1583
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -1638,11 +1631,11 @@
1638
1631
  }
1639
1632
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .placeholder\:text-muted-foreground)::-moz-placeholder {
1640
1633
  color: hsl(215, 16%, 47%);
1641
- color: hsl(var(--xpc-muted-foreground));
1634
+ color: var(--xpc-muted-foreground);
1642
1635
  }
1643
1636
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .placeholder\:text-muted-foreground)::placeholder {
1644
1637
  color: hsl(215, 16%, 47%);
1645
- color: hsl(var(--xpc-muted-foreground));
1638
+ color: var(--xpc-muted-foreground);
1646
1639
  }
1647
1640
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .last\:border-b-0):last-child {
1648
1641
  border-bottom-style: var(--tw-border-style);
@@ -1653,7 +1646,7 @@
1653
1646
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1654
1647
  }
1655
1648
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-within\:ring-ring):focus-within {
1656
- --tw-ring-color: oklch(var(--xpc-ring));
1649
+ --tw-ring-color: var(--xpc-ring);
1657
1650
  }
1658
1651
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-within\:outline-none):focus-within {
1659
1652
  --tw-outline-style: none;
@@ -1662,7 +1655,7 @@
1662
1655
  @media (hover: hover) {
1663
1656
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:border-muted-foreground\/50):hover {
1664
1657
  border-color: hsl(215, 16%, 47%);
1665
- border-color: hsl(var(--xpc-muted-foreground));
1658
+ border-color: var(--xpc-muted-foreground);
1666
1659
  }
1667
1660
  @supports (color: color-mix(in lab, red, red)) {
1668
1661
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:border-muted-foreground\/50):hover {
@@ -1671,7 +1664,7 @@
1671
1664
 
1672
1665
  @supports (color: color-mix(in lch, red, blue)) {
1673
1666
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:border-muted-foreground\/50):hover {
1674
- border-color: color-mix(in oklab, hsl(var(--xpc-muted-foreground)) 50%, transparent);
1667
+ border-color: color-mix(in oklab, var(--xpc-muted-foreground) 50%, transparent);
1675
1668
  }
1676
1669
  }
1677
1670
  }
@@ -1679,7 +1672,7 @@
1679
1672
  @media (hover: hover) {
1680
1673
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-accent):hover {
1681
1674
  background-color: hsl(210, 40%, 96%);
1682
- background-color: hsl(var(--xpc-accent));
1675
+ background-color: var(--xpc-accent);
1683
1676
  }
1684
1677
  }
1685
1678
  @media (hover: hover) {
@@ -1698,7 +1691,7 @@
1698
1691
  @media (hover: hover) {
1699
1692
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-destructive\/90):hover {
1700
1693
  background-color: hsl(0, 84%, 60%);
1701
- background-color: hsl(var(--xpc-destructive));
1694
+ background-color: var(--xpc-destructive);
1702
1695
  }
1703
1696
  @supports (color: color-mix(in lab, red, red)) {
1704
1697
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-destructive\/90):hover {
@@ -1707,7 +1700,7 @@
1707
1700
 
1708
1701
  @supports (color: color-mix(in lch, red, blue)) {
1709
1702
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-destructive\/90):hover {
1710
- background-color: color-mix(in oklab, hsl(var(--xpc-destructive)) 90%, transparent);
1703
+ background-color: color-mix(in oklab, var(--xpc-destructive) 90%, transparent);
1711
1704
  }
1712
1705
  }
1713
1706
  }
@@ -1741,7 +1734,7 @@
1741
1734
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-primary\/90):hover {
1742
1735
  background-color: rgb(0, 139, 185);
1743
1736
  background-color: color(display-p3 0 0.54285 0.7725);
1744
- background-color: oklch(var(--xpc-primary));
1737
+ background-color: var(--xpc-primary);
1745
1738
  }
1746
1739
  @supports (color: color-mix(in lab, red, red)) {
1747
1740
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-primary\/90):hover {
@@ -1756,7 +1749,7 @@
1756
1749
 
1757
1750
  @supports (color: color-mix(in lch, red, blue)) {
1758
1751
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-primary\/90):hover {
1759
- background-color: color-mix(in oklab, oklch(var(--xpc-primary)) 90%, transparent);
1752
+ background-color: color-mix(in oklab, var(--xpc-primary) 90%, transparent);
1760
1753
  }
1761
1754
  }
1762
1755
  }
@@ -1771,7 +1764,7 @@
1771
1764
  @media (hover: hover) {
1772
1765
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-secondary\/80):hover {
1773
1766
  background-color: hsl(210, 40%, 96%);
1774
- background-color: hsl(var(--xpc-secondary));
1767
+ background-color: var(--xpc-secondary);
1775
1768
  }
1776
1769
  @supports (color: color-mix(in lab, red, red)) {
1777
1770
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-secondary\/80):hover {
@@ -1780,7 +1773,7 @@
1780
1773
 
1781
1774
  @supports (color: color-mix(in lch, red, blue)) {
1782
1775
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:bg-secondary\/80):hover {
1783
- background-color: color-mix(in oklab, hsl(var(--xpc-secondary)) 80%, transparent);
1776
+ background-color: color-mix(in oklab, var(--xpc-secondary) 80%, transparent);
1784
1777
  }
1785
1778
  }
1786
1779
  }
@@ -1794,26 +1787,26 @@
1794
1787
  @media (hover: hover) {
1795
1788
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-accent-foreground):hover {
1796
1789
  color: hsl(222, 47%, 11%);
1797
- color: hsl(var(--xpc-accent-foreground));
1790
+ color: var(--xpc-accent-foreground);
1798
1791
  }
1799
1792
  }
1800
1793
  @media (hover: hover) {
1801
1794
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-destructive):hover {
1802
1795
  color: hsl(0, 84%, 60%);
1803
- color: hsl(var(--xpc-destructive));
1796
+ color: var(--xpc-destructive);
1804
1797
  }
1805
1798
  }
1806
1799
  @media (hover: hover) {
1807
1800
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-foreground):hover {
1808
1801
  color: hsl(222, 84%, 5%);
1809
- color: hsl(var(--xpc-foreground));
1802
+ color: var(--xpc-foreground);
1810
1803
  }
1811
1804
  }
1812
1805
  @media (hover: hover) {
1813
1806
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-primary\/80):hover {
1814
1807
  color: rgb(0, 139, 185);
1815
1808
  color: color(display-p3 0 0.54285 0.7725);
1816
- color: oklch(var(--xpc-primary));
1809
+ color: var(--xpc-primary);
1817
1810
  }
1818
1811
  @supports (color: color-mix(in lab, red, red)) {
1819
1812
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-primary\/80):hover {
@@ -1828,7 +1821,7 @@
1828
1821
 
1829
1822
  @supports (color: color-mix(in lch, red, blue)) {
1830
1823
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .hover\:text-primary\/80):hover {
1831
- color: color-mix(in oklab, oklch(var(--xpc-primary)) 80%, transparent);
1824
+ color: color-mix(in oklab, var(--xpc-primary) 80%, transparent);
1832
1825
  }
1833
1826
  }
1834
1827
  }
@@ -1855,11 +1848,11 @@
1855
1848
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus\:border-primary):focus {
1856
1849
  border-color: rgb(0, 139, 185);
1857
1850
  border-color: color(display-p3 0 0.54285 0.7725);
1858
- border-color: oklch(var(--xpc-primary));
1851
+ border-color: var(--xpc-primary);
1859
1852
  }
1860
1853
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus\:bg-accent):focus {
1861
1854
  background-color: hsl(210, 40%, 96%);
1862
- background-color: hsl(var(--xpc-accent));
1855
+ background-color: var(--xpc-accent);
1863
1856
  }
1864
1857
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus\:shadow-\[0_0_0_3px_rgba\(0\,153\,205\,0\.15\)\]):focus {
1865
1858
  --tw-shadow: 0 0 0 3px var(--tw-shadow-color, rgba(0,153,205,0.15));
@@ -1875,7 +1868,7 @@
1875
1868
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1876
1869
  }
1877
1870
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus\:ring-ring):focus {
1878
- --tw-ring-color: oklch(var(--xpc-ring));
1871
+ --tw-ring-color: var(--xpc-ring);
1879
1872
  }
1880
1873
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus\:ring-offset-2):focus {
1881
1874
  --tw-ring-offset-width: 2px;
@@ -1888,7 +1881,7 @@
1888
1881
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-visible\:border-primary):focus-visible {
1889
1882
  border-color: rgb(0, 139, 185);
1890
1883
  border-color: color(display-p3 0 0.54285 0.7725);
1891
- border-color: oklch(var(--xpc-primary));
1884
+ border-color: var(--xpc-primary);
1892
1885
  }
1893
1886
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-visible\:shadow-\[0_0_0_3px_rgba\(0\,153\,205\,0\.15\)\]):focus-visible {
1894
1887
  --tw-shadow: 0 0 0 3px var(--tw-shadow-color, rgba(0,153,205,0.15));
@@ -1904,7 +1897,7 @@
1904
1897
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
1905
1898
  }
1906
1899
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-visible\:ring-ring):focus-visible {
1907
- --tw-ring-color: oklch(var(--xpc-ring));
1900
+ --tw-ring-color: var(--xpc-ring);
1908
1901
  }
1909
1902
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) :is(.signiphi-pdf-compose .focus-visible\:ring-offset-2):focus-visible {
1910
1903
  --tw-ring-offset-width: 2px;
@@ -1965,25 +1958,25 @@
1965
1958
  --xpc-color-medium-blue: rgb(0, 139, 185);
1966
1959
  --xpc-color-dark-blue: rgb(17, 13, 83);
1967
1960
  --xpc-color-light-blue: rgb(186, 215, 231);
1968
- --xpc-background: 0 0% 100%;
1969
- --xpc-foreground: 222.2 84% 4.9%;
1970
- --xpc-card: 0 0% 100%;
1971
- --xpc-card-foreground: 222.2 84% 4.9%;
1972
- --xpc-popover: 0 0% 100%;
1973
- --xpc-popover-foreground: 222.2 84% 4.9%;
1974
- --xpc-primary: 0.597 0.186 230.42;
1975
- --xpc-primary-foreground: 210 40% 98%;
1976
- --xpc-secondary: 210 40% 96.1%;
1977
- --xpc-secondary-foreground: 222.2 47.4% 11.2%;
1978
- --xpc-muted: 210 40% 96.1%;
1979
- --xpc-muted-foreground: 215.4 16.3% 46.9%;
1980
- --xpc-accent: 210 40% 96.1%;
1981
- --xpc-accent-foreground: 222.2 47.4% 11.2%;
1982
- --xpc-destructive: 0 84.2% 60.2%;
1983
- --xpc-destructive-foreground: 210 40% 98%;
1984
- --xpc-border: 214.3 31.8% 91.4%;
1985
- --xpc-input: 214.3 31.8% 91.4%;
1986
- --xpc-ring: 0.597 0.186 230.42;
1961
+ --xpc-background: hsl(0, 0%, 100%);
1962
+ --xpc-foreground: hsl(222, 84%, 5%);
1963
+ --xpc-card: hsl(0, 0%, 100%);
1964
+ --xpc-card-foreground: hsl(222, 84%, 5%);
1965
+ --xpc-popover: hsl(0, 0%, 100%);
1966
+ --xpc-popover-foreground: hsl(222, 84%, 5%);
1967
+ --xpc-primary: rgb(0, 139, 185);
1968
+ --xpc-primary-foreground: hsl(210, 40%, 98%);
1969
+ --xpc-secondary: hsl(210, 40%, 96%);
1970
+ --xpc-secondary-foreground: hsl(222, 47%, 11%);
1971
+ --xpc-muted: hsl(210, 40%, 96%);
1972
+ --xpc-muted-foreground: hsl(215, 16%, 47%);
1973
+ --xpc-accent: hsl(210, 40%, 96%);
1974
+ --xpc-accent-foreground: hsl(222, 47%, 11%);
1975
+ --xpc-destructive: hsl(0, 84%, 60%);
1976
+ --xpc-destructive-foreground: hsl(210, 40%, 98%);
1977
+ --xpc-border: hsl(214, 32%, 91%);
1978
+ --xpc-input: hsl(214, 32%, 91%);
1979
+ --xpc-ring: rgb(0, 139, 185);
1987
1980
  --xpc-radius: 0.5rem;
1988
1981
  --xpc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
1989
1982
  --xpc-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
@@ -1993,47 +1986,66 @@
1993
1986
  @supports (color: color(display-p3 0 0 0%)) {
1994
1987
  :root:not(#\#):not(#\#) {
1995
1988
  --xpc-color-medium-blue: rgb(0, 139, 185);
1989
+ --xpc-primary: rgb(0, 139, 185);
1990
+ --xpc-ring: rgb(0, 139, 185);
1996
1991
  }
1997
1992
 
1998
1993
  @media (color-gamut: p3) {
1999
1994
  :root:not(#\#):not(#\#) {
2000
1995
  --xpc-color-medium-blue: color(display-p3 0 0.54285 0.7725);
1996
+ --xpc-primary: color(display-p3 0 0.54285 0.7725);
1997
+ --xpc-ring: color(display-p3 0 0.54285 0.7725);
2001
1998
  }
2002
1999
  }
2003
2000
  }
2004
2001
  :root[data-theme="dark"]:not(#\#):not(#\#),
2005
2002
  :root.dark:not(#\#):not(#\#) {
2006
- --xpc-background: 222.2 47.4% 11.2%;
2007
- --xpc-foreground: 210 40% 98%;
2008
- --xpc-card: 222.2 47.4% 11.2%;
2009
- --xpc-card-foreground: 210 40% 98%;
2010
- --xpc-popover: 222.2 47.4% 11.2%;
2011
- --xpc-popover-foreground: 210 40% 98%;
2012
- --xpc-primary: 0.597 0.186 230.42;
2013
- --xpc-primary-foreground: 210 40% 98%;
2014
- --xpc-secondary: 217.2 32.6% 17.5%;
2015
- --xpc-secondary-foreground: 210 40% 98%;
2016
- --xpc-muted: 217.2 32.6% 17.5%;
2017
- --xpc-muted-foreground: 215 20.2% 65.1%;
2018
- --xpc-accent: 217.2 32.6% 17.5%;
2019
- --xpc-accent-foreground: 210 40% 98%;
2020
- --xpc-destructive: 0 62.8% 30.6%;
2021
- --xpc-destructive-foreground: 210 40% 98%;
2022
- --xpc-border: 217.2 32.6% 17.5%;
2023
- --xpc-input: 217.2 32.6% 17.5%;
2024
- --xpc-ring: 0.597 0.186 230.42;
2003
+ --xpc-background: hsl(222, 47%, 11%);
2004
+ --xpc-foreground: hsl(210, 40%, 98%);
2005
+ --xpc-card: hsl(222, 47%, 11%);
2006
+ --xpc-card-foreground: hsl(210, 40%, 98%);
2007
+ --xpc-popover: hsl(222, 47%, 11%);
2008
+ --xpc-popover-foreground: hsl(210, 40%, 98%);
2009
+ --xpc-primary: rgb(0, 139, 185);
2010
+ --xpc-primary-foreground: hsl(210, 40%, 98%);
2011
+ --xpc-secondary: hsl(217, 33%, 18%);
2012
+ --xpc-secondary-foreground: hsl(210, 40%, 98%);
2013
+ --xpc-muted: hsl(217, 33%, 18%);
2014
+ --xpc-muted-foreground: hsl(215, 20%, 65%);
2015
+ --xpc-accent: hsl(217, 33%, 18%);
2016
+ --xpc-accent-foreground: hsl(210, 40%, 98%);
2017
+ --xpc-destructive: hsl(0, 63%, 31%);
2018
+ --xpc-destructive-foreground: hsl(210, 40%, 98%);
2019
+ --xpc-border: hsl(217, 33%, 18%);
2020
+ --xpc-input: hsl(217, 33%, 18%);
2021
+ --xpc-ring: rgb(0, 139, 185);
2025
2022
  --xpc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
2026
2023
  --xpc-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
2027
2024
  --xpc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
2028
2025
  --xpc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
2029
2026
  }
2027
+ @supports (color: color(display-p3 0 0 0%)) {
2028
+ :root[data-theme="dark"]:not(#\#):not(#\#),
2029
+ :root.dark:not(#\#):not(#\#) {
2030
+ --xpc-primary: rgb(0, 139, 185);
2031
+ --xpc-ring: rgb(0, 139, 185);
2032
+ }
2033
+
2034
+ @media (color-gamut: p3) {
2035
+ :root[data-theme="dark"]:not(#\#):not(#\#),
2036
+ :root.dark:not(#\#):not(#\#) {
2037
+ --xpc-primary: color(display-p3 0 0.54285 0.7725);
2038
+ --xpc-ring: color(display-p3 0 0.54285 0.7725);
2039
+ }
2040
+ }
2041
+ }
2030
2042
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
2031
2043
  box-sizing: border-box;
2032
2044
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
2033
2045
  -webkit-font-smoothing: antialiased;
2034
2046
  -moz-osx-font-smoothing: grayscale;
2035
2047
  color: hsl(222, 84%, 5%);
2036
- color: hsl(var(--xpc-foreground));
2048
+ color: var(--xpc-foreground);
2037
2049
  line-height: 1.5;
2038
2050
  }
2039
2051
  .signiphi-pdf-compose[data-compose-root]:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) {
@@ -2041,18 +2053,19 @@
2041
2053
  flex-direction: column;
2042
2054
  height: 920px;
2043
2055
  border: 1px solid hsl(214, 32%, 91%);
2044
- border: 1px solid hsl(var(--xpc-border));
2056
+ border: 1px solid var(--xpc-border);
2045
2057
  border-radius: 0.5rem;
2046
2058
  border-radius: var(--xpc-radius);
2047
2059
  overflow: hidden;
2048
2060
  background: hsl(0, 0%, 100%);
2049
- background: hsl(var(--xpc-background));
2061
+ background: var(--xpc-background);
2050
2062
  transition: background-color 0.2s ease, color 0.2s ease;
2051
2063
  }
2052
2064
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) *,
2053
2065
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) *::before,
2054
2066
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) *::after {
2055
2067
  box-sizing: border-box;
2068
+ outline: 2px solid transparent;
2056
2069
  }
2057
2070
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .tiptap {
2058
2071
  outline: none;
@@ -2092,20 +2105,20 @@
2092
2105
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .tiptap hr {
2093
2106
  border: none;
2094
2107
  border-top: 2px solid hsl(214, 32%, 91%);
2095
- border-top: 2px solid hsl(var(--xpc-border));
2108
+ border-top: 2px solid var(--xpc-border);
2096
2109
  margin: 1em 0;
2097
2110
  }
2098
2111
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .tiptap blockquote {
2099
2112
  border-left: 3px solid hsl(214, 32%, 91%);
2100
- border-left: 3px solid hsl(var(--xpc-border));
2113
+ border-left: 3px solid var(--xpc-border);
2101
2114
  padding-left: 1em;
2102
2115
  margin: 0.5em 0;
2103
2116
  color: hsl(215, 16%, 47%);
2104
- color: hsl(var(--xpc-muted-foreground));
2117
+ color: var(--xpc-muted-foreground);
2105
2118
  }
2106
2119
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .tiptap code {
2107
2120
  background: hsl(210, 40%, 96%);
2108
- background: hsl(var(--xpc-muted));
2121
+ background: var(--xpc-muted);
2109
2122
  padding: 0.2em 0.4em;
2110
2123
  border-radius: 0.25em;
2111
2124
  font-size: 0.875em;
@@ -2114,7 +2127,7 @@
2114
2127
  content: attr(data-placeholder);
2115
2128
  float: left;
2116
2129
  color: hsl(215, 16%, 47%);
2117
- color: hsl(var(--xpc-muted-foreground));
2130
+ color: var(--xpc-muted-foreground);
2118
2131
  pointer-events: none;
2119
2132
  height: 0;
2120
2133
  }
@@ -2124,17 +2137,93 @@
2124
2137
  }
2125
2138
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-track {
2126
2139
  background: hsl(210, 40%, 96%);
2127
- background: hsl(var(--xpc-muted));
2140
+ background: var(--xpc-muted);
2128
2141
  border-radius: 4px;
2129
2142
  }
2130
2143
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb {
2131
- background: hsla(215, 16%, 47%, 0.3);
2132
- background: hsl(var(--xpc-muted-foreground) / 0.3);
2144
+ background: hsl(215, 16%, 47%);
2145
+ background: var(--xpc-muted-foreground);
2146
+ }
2147
+ @supports (color: color-mix(in lab, red, red)) {
2148
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb {
2149
+ background: color-mix(in srgb, hsl(215, 16%, 47%) 30%, transparent);
2150
+ }
2151
+
2152
+ @supports (color: color-mix(in lch, red, blue)) {
2153
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb {
2154
+ background: color-mix(in srgb, var(--xpc-muted-foreground) 30%, transparent);
2155
+ }
2156
+ }
2157
+ }
2158
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb {
2133
2159
  border-radius: 4px;
2134
2160
  }
2135
2161
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb:hover {
2136
- background: hsla(215, 16%, 47%, 0.5);
2137
- background: hsl(var(--xpc-muted-foreground) / 0.5);
2162
+ background: hsl(215, 16%, 47%);
2163
+ background: var(--xpc-muted-foreground);
2164
+ }
2165
+ @supports (color: color-mix(in lab, red, red)) {
2166
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb:hover {
2167
+ background: color-mix(in srgb, hsl(215, 16%, 47%) 50%, transparent);
2168
+ }
2169
+
2170
+ @supports (color: color-mix(in lch, red, blue)) {
2171
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) ::-webkit-scrollbar-thumb:hover {
2172
+ background: color-mix(in srgb, var(--xpc-muted-foreground) 50%, transparent);
2173
+ }
2174
+ }
2175
+ }
2176
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .scrollbar-hidden {
2177
+ scrollbar-width: none;
2178
+ -ms-overflow-style: none;
2179
+ }
2180
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .scrollbar-hidden::-webkit-scrollbar {
2181
+ display: none;
2182
+ }
2183
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .columns-node {
2184
+ display: flex;
2185
+ gap: 0.75rem;
2186
+ margin: 0.5rem 0;
2187
+ }
2188
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .column-node {
2189
+ flex: 1 1 0%;
2190
+ min-width: 0;
2191
+ }
2192
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-node {
2193
+ border-radius: 0.375rem;
2194
+ margin: 0.5rem 0;
2195
+ }
2196
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-border-solid {
2197
+ border: 1px solid #d1d5db;
2198
+ }
2199
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-border-dashed {
2200
+ border: 1px dashed #d1d5db;
2201
+ }
2202
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-border-none {
2203
+ border: 1px solid transparent;
2204
+ }
2205
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-title {
2206
+ padding: 0.25rem 0.75rem;
2207
+ font-size: 0.875rem;
2208
+ font-weight: 600;
2209
+ border-bottom: 1px solid #d1d5db;
2210
+ border-radius: 0.375rem 0.375rem 0 0;
2211
+ background: #f3f4f6;
2212
+ color: currentColor;
2213
+ }
2214
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-dark .panel-title {
2215
+ background: #1f2937;
2216
+ color: white;
2217
+ border-color: #1f2937;
2218
+ }
2219
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .panel-content {
2220
+ padding: 0.75rem;
2221
+ }
2222
+ .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .subtotals-block {
2223
+ border-left: 2px solid #d1d5db;
2224
+ padding-left: 0.75rem;
2225
+ margin: 0.5rem 0;
2226
+ text-align: right;
2138
2227
  }
2139
2228
  @keyframes xpc-spin {
2140
2229
  to {
@@ -2144,6 +2233,21 @@
2144
2233
  .signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#):not(#\#) .animate-spin {
2145
2234
  animation: xpc-spin 1s linear infinite;
2146
2235
  }
2236
+ @property --tw-translate-x {
2237
+ syntax: "*";
2238
+ inherits: false;
2239
+ initial-value: 0;
2240
+ }
2241
+ @property --tw-translate-y {
2242
+ syntax: "*";
2243
+ inherits: false;
2244
+ initial-value: 0;
2245
+ }
2246
+ @property --tw-translate-z {
2247
+ syntax: "*";
2248
+ inherits: false;
2249
+ initial-value: 0;
2250
+ }
2147
2251
  @property --tw-rotate-x {
2148
2252
  syntax: "*";
2149
2253
  inherits: false;
@@ -2298,24 +2402,62 @@
2298
2402
  inherits: false;
2299
2403
  initial-value: solid;
2300
2404
  }
2301
- @property --tw-duration {
2405
+ @property --tw-blur {
2302
2406
  syntax: "*";
2303
2407
  inherits: false;
2304
2408
  }
2305
- @property --tw-translate-x {
2409
+ @property --tw-brightness {
2306
2410
  syntax: "*";
2307
2411
  inherits: false;
2308
- initial-value: 0;
2309
2412
  }
2310
- @property --tw-translate-y {
2413
+ @property --tw-contrast {
2311
2414
  syntax: "*";
2312
2415
  inherits: false;
2313
- initial-value: 0;
2314
2416
  }
2315
- @property --tw-translate-z {
2417
+ @property --tw-grayscale {
2418
+ syntax: "*";
2419
+ inherits: false;
2420
+ }
2421
+ @property --tw-hue-rotate {
2422
+ syntax: "*";
2423
+ inherits: false;
2424
+ }
2425
+ @property --tw-invert {
2426
+ syntax: "*";
2427
+ inherits: false;
2428
+ }
2429
+ @property --tw-opacity {
2430
+ syntax: "*";
2431
+ inherits: false;
2432
+ }
2433
+ @property --tw-saturate {
2434
+ syntax: "*";
2435
+ inherits: false;
2436
+ }
2437
+ @property --tw-sepia {
2438
+ syntax: "*";
2439
+ inherits: false;
2440
+ }
2441
+ @property --tw-drop-shadow {
2442
+ syntax: "*";
2443
+ inherits: false;
2444
+ }
2445
+ @property --tw-drop-shadow-color {
2446
+ syntax: "*";
2447
+ inherits: false;
2448
+ }
2449
+ @property --tw-drop-shadow-alpha {
2450
+ syntax: "<percentage>";
2451
+ inherits: false;
2452
+ initial-value: 100%;
2453
+ }
2454
+ @property --tw-drop-shadow-size {
2455
+ syntax: "*";
2456
+ inherits: false;
2457
+ }
2458
+ @property --tw-duration {
2316
2459
  syntax: "*";
2317
2460
  inherits: false;
2318
- initial-value: 0;
2319
2461
  }
2320
2462
  @keyframes spin {
2321
2463
  to {
@@ -2324,6 +2466,9 @@
2324
2466
  }
2325
2467
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
2326
2468
  .signiphi-pdf-compose *, .signiphi-pdf-compose ::before, .signiphi-pdf-compose ::after, .signiphi-pdf-compose ::backdrop {
2469
+ --tw-translate-x: 0;
2470
+ --tw-translate-y: 0;
2471
+ --tw-translate-z: 0;
2327
2472
  --tw-rotate-x: initial;
2328
2473
  --tw-rotate-y: initial;
2329
2474
  --tw-rotate-z: initial;
@@ -2358,9 +2503,19 @@
2358
2503
  --tw-ring-offset-color: #fff;
2359
2504
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
2360
2505
  --tw-outline-style: solid;
2506
+ --tw-blur: initial;
2507
+ --tw-brightness: initial;
2508
+ --tw-contrast: initial;
2509
+ --tw-grayscale: initial;
2510
+ --tw-hue-rotate: initial;
2511
+ --tw-invert: initial;
2512
+ --tw-opacity: initial;
2513
+ --tw-saturate: initial;
2514
+ --tw-sepia: initial;
2515
+ --tw-drop-shadow: initial;
2516
+ --tw-drop-shadow-color: initial;
2517
+ --tw-drop-shadow-alpha: 100%;
2518
+ --tw-drop-shadow-size: initial;
2361
2519
  --tw-duration: initial;
2362
- --tw-translate-x: 0;
2363
- --tw-translate-y: 0;
2364
- --tw-translate-z: 0;
2365
2520
  }
2366
2521
  }