@signiphi/pdf-compose 0.1.0-beta.10 → 0.1.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ImageNodeView.d.ts +11 -0
- package/dist/components/ImageNodeView.d.ts.map +1 -0
- package/dist/extensions/image-node.d.ts +10 -0
- package/dist/extensions/image-node.d.ts.map +1 -0
- package/dist/hooks/useDocumentGenerator.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +85 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +86 -7
- package/dist/index.mjs.map +1 -1
- package/dist/styles/index.css +25 -0
- package/dist/utils/markdown-parser.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/styles/index.css
CHANGED
|
@@ -52,6 +52,9 @@
|
|
|
52
52
|
--color-pink-300: rgb(253, 165, 213);
|
|
53
53
|
--color-pink-600: rgb(227, 0, 118);
|
|
54
54
|
--color-pink-700: rgb(194, 0, 92);
|
|
55
|
+
--color-slate-50: rgb(248, 250, 252);
|
|
56
|
+
--color-slate-300: rgb(202, 213, 226);
|
|
57
|
+
--color-slate-500: rgb(98, 116, 142);
|
|
55
58
|
--color-gray-100: rgb(243, 244, 246);
|
|
56
59
|
--color-gray-200: rgb(229, 231, 235);
|
|
57
60
|
--color-gray-300: rgb(209, 213, 220);
|
|
@@ -575,6 +578,9 @@
|
|
|
575
578
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .max-w-\[400px\] {
|
|
576
579
|
max-width: 400px;
|
|
577
580
|
}
|
|
581
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .max-w-full {
|
|
582
|
+
max-width: 100%;
|
|
583
|
+
}
|
|
578
584
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .max-w-none {
|
|
579
585
|
max-width: none;
|
|
580
586
|
}
|
|
@@ -661,6 +667,9 @@
|
|
|
661
667
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .justify-end {
|
|
662
668
|
justify-content: flex-end;
|
|
663
669
|
}
|
|
670
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .justify-start {
|
|
671
|
+
justify-content: flex-start;
|
|
672
|
+
}
|
|
664
673
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .gap-0\.5 {
|
|
665
674
|
gap: calc(0.25rem * 0.5);
|
|
666
675
|
gap: calc(var(--spacing) * 0.5);
|
|
@@ -914,6 +923,10 @@
|
|
|
914
923
|
border-color: color(display-p3 0.82939 0.70374 0.99608);
|
|
915
924
|
border-color: var(--color-purple-300);
|
|
916
925
|
}
|
|
926
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-slate-300 {
|
|
927
|
+
border-color: rgb(202, 213, 226);
|
|
928
|
+
border-color: var(--color-slate-300);
|
|
929
|
+
}
|
|
917
930
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .border-teal-300 {
|
|
918
931
|
border-color: rgb(70, 236, 213);
|
|
919
932
|
border-color: var(--color-teal-300);
|
|
@@ -1106,6 +1119,10 @@
|
|
|
1106
1119
|
background-color: hsl(210, 40%, 96%);
|
|
1107
1120
|
background-color: var(--xpc-secondary);
|
|
1108
1121
|
}
|
|
1122
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-slate-50 {
|
|
1123
|
+
background-color: rgb(248, 250, 252);
|
|
1124
|
+
background-color: var(--color-slate-50);
|
|
1125
|
+
}
|
|
1109
1126
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .bg-teal-100 {
|
|
1110
1127
|
background-color: rgb(203, 251, 241);
|
|
1111
1128
|
background-color: var(--color-teal-100);
|
|
@@ -1136,6 +1153,10 @@
|
|
|
1136
1153
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .to-muted\/20 {
|
|
1137
1154
|
--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));
|
|
1138
1155
|
}
|
|
1156
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .object-contain {
|
|
1157
|
+
-o-object-fit: contain;
|
|
1158
|
+
object-fit: contain;
|
|
1159
|
+
}
|
|
1139
1160
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .p-0 {
|
|
1140
1161
|
padding: calc(0.25rem * 0);
|
|
1141
1162
|
padding: calc(var(--spacing) * 0);
|
|
@@ -1505,6 +1526,10 @@
|
|
|
1505
1526
|
color: hsl(222, 47%, 11%);
|
|
1506
1527
|
color: var(--xpc-secondary-foreground);
|
|
1507
1528
|
}
|
|
1529
|
+
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-slate-500 {
|
|
1530
|
+
color: rgb(98, 116, 142);
|
|
1531
|
+
color: var(--color-slate-500);
|
|
1532
|
+
}
|
|
1508
1533
|
.signiphi-pdf-compose:not(#\#):not(#\#):not(#\#):not(#\#) .text-teal-600 {
|
|
1509
1534
|
color: rgb(0, 148, 136);
|
|
1510
1535
|
color: color(display-p3 0.20711 0.57958 0.53668);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown-parser.d.ts","sourceRoot":"","sources":["../../src/utils/markdown-parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"markdown-parser.d.ts","sourceRoot":"","sources":["../../src/utils/markdown-parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAkrBhD;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,WAAW,CAI9D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signiphi/pdf-compose",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.11",
|
|
4
4
|
"description": "Markdown-based document composer with field placeholders for the signiphi signing pipeline",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|