dibk-design 7.1.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/PDF.scss +63 -24
- package/dist/style/pdf.css +41 -9
- package/dist/style/pdf.css.map +1 -1
- package/package.json +1 -1
package/dist/components/PDF.scss
CHANGED
|
@@ -58,6 +58,8 @@ $padding-horizontal-table-data: 4px;
|
|
|
58
58
|
$padding-vertical-no-border-table-header: 0px;
|
|
59
59
|
$padding-vertical-no-border-table-data: 2px;
|
|
60
60
|
|
|
61
|
+
$column-gap-grid: 20px;
|
|
62
|
+
|
|
61
63
|
$scaling-for-signed-documents: 1.10802;
|
|
62
64
|
|
|
63
65
|
html,
|
|
@@ -139,6 +141,7 @@ body {
|
|
|
139
141
|
|
|
140
142
|
h1,
|
|
141
143
|
.h1,
|
|
144
|
+
caption[style*="--size:1"],
|
|
142
145
|
caption[style*="--size: 1"] {
|
|
143
146
|
page-break-after: avoid;
|
|
144
147
|
font-size: $font-size-h1;
|
|
@@ -154,6 +157,7 @@ body {
|
|
|
154
157
|
}
|
|
155
158
|
h2,
|
|
156
159
|
.h2,
|
|
160
|
+
caption[style*="--size:2"],
|
|
157
161
|
caption[style*="--size: 2"] {
|
|
158
162
|
page-break-after: avoid;
|
|
159
163
|
font-size: $font-size-h2;
|
|
@@ -173,6 +177,7 @@ body {
|
|
|
173
177
|
}
|
|
174
178
|
h3,
|
|
175
179
|
.h3,
|
|
180
|
+
caption[style*="--size:3"],
|
|
176
181
|
caption[style*="--size: 3"] {
|
|
177
182
|
page-break-after: avoid;
|
|
178
183
|
font-size: $font-size-h3;
|
|
@@ -188,6 +193,7 @@ body {
|
|
|
188
193
|
|
|
189
194
|
h4,
|
|
190
195
|
.h4,
|
|
196
|
+
caption[style*="--size:4"],
|
|
191
197
|
caption[style*="--size: 4"],
|
|
192
198
|
caption:not([style*="--size"]) {
|
|
193
199
|
page-break-after: avoid;
|
|
@@ -203,6 +209,7 @@ body {
|
|
|
203
209
|
|
|
204
210
|
h5,
|
|
205
211
|
.h5,
|
|
212
|
+
caption[style*="--size:5"],
|
|
206
213
|
caption[style*="--size: 5"] {
|
|
207
214
|
page-break-after: avoid;
|
|
208
215
|
font-size: $font-size-h5;
|
|
@@ -234,32 +241,40 @@ body {
|
|
|
234
241
|
list-style: none;
|
|
235
242
|
}
|
|
236
243
|
}
|
|
237
|
-
&[style*="--
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
244
|
+
&[style*="--display-type: inline"],
|
|
245
|
+
&:not([style*="--display-type"]) {
|
|
246
|
+
&[style*="--title-width"] {
|
|
247
|
+
display: flex;
|
|
248
|
+
flex-flow: row wrap;
|
|
249
|
+
align-items: end;
|
|
250
|
+
dt {
|
|
251
|
+
width: var(--title-width);
|
|
252
|
+
}
|
|
253
|
+
dd {
|
|
254
|
+
flex-basis: calc(100% - var(--title-width));
|
|
255
|
+
flex-grow: 1;
|
|
256
|
+
}
|
|
247
257
|
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
258
|
+
&:not([style*="--title-width"]) {
|
|
259
|
+
dt {
|
|
260
|
+
display: inline;
|
|
261
|
+
&::before {
|
|
262
|
+
display: block;
|
|
263
|
+
content: "";
|
|
264
|
+
}
|
|
265
|
+
&::after {
|
|
266
|
+
display: inline;
|
|
267
|
+
content: " ";
|
|
268
|
+
}
|
|
255
269
|
}
|
|
256
|
-
|
|
270
|
+
dd {
|
|
257
271
|
display: inline;
|
|
258
|
-
content: " ";
|
|
259
272
|
}
|
|
260
273
|
}
|
|
274
|
+
}
|
|
275
|
+
&[style*="--display-type: stacked"] {
|
|
261
276
|
dd {
|
|
262
|
-
|
|
277
|
+
margin-bottom: $margin-bottom-list;
|
|
263
278
|
}
|
|
264
279
|
}
|
|
265
280
|
}
|
|
@@ -339,6 +354,13 @@ body {
|
|
|
339
354
|
}
|
|
340
355
|
}
|
|
341
356
|
|
|
357
|
+
.grid {
|
|
358
|
+
display: grid;
|
|
359
|
+
justify-content: space-between;
|
|
360
|
+
grid-template-columns: repeat(var(--columns), 1fr);
|
|
361
|
+
column-gap: $column-gap-grid;
|
|
362
|
+
}
|
|
363
|
+
|
|
342
364
|
blockquote {
|
|
343
365
|
background: var(--color-secondary-x-light, colors.$color-secondary-x-light);
|
|
344
366
|
border-left: $border-left-width-blockquote solid var(--color-border, colors.$color-border);
|
|
@@ -434,6 +456,7 @@ body {
|
|
|
434
456
|
}
|
|
435
457
|
h1,
|
|
436
458
|
.h1,
|
|
459
|
+
caption[style*="--size:1"],
|
|
437
460
|
caption[style*="--size: 1"] {
|
|
438
461
|
font-size: calc($font-size-h1 * $scaling-for-signed-documents);
|
|
439
462
|
margin-top: calc($margin-top-h1 * $scaling-for-signed-documents);
|
|
@@ -443,6 +466,7 @@ body {
|
|
|
443
466
|
}
|
|
444
467
|
h2,
|
|
445
468
|
.h2,
|
|
469
|
+
caption[style*="--size:2"],
|
|
446
470
|
caption[style*="--size: 2"] {
|
|
447
471
|
font-size: calc($font-size-h2 * $scaling-for-signed-documents);
|
|
448
472
|
margin-top: calc($margin-top-h2 * $scaling-for-signed-documents);
|
|
@@ -454,6 +478,7 @@ body {
|
|
|
454
478
|
}
|
|
455
479
|
h3,
|
|
456
480
|
.h3,
|
|
481
|
+
caption[style*="--size:3"],
|
|
457
482
|
caption[style*="--size: 3"] {
|
|
458
483
|
font-size: calc($font-size-h3 * $scaling-for-signed-documents);
|
|
459
484
|
margin-top: calc($margin-top-h3 * $scaling-for-signed-documents);
|
|
@@ -461,6 +486,7 @@ body {
|
|
|
461
486
|
}
|
|
462
487
|
h4,
|
|
463
488
|
.h4,
|
|
489
|
+
caption[style*="--size:4"],
|
|
464
490
|
caption[style*="--size: 4"],
|
|
465
491
|
caption:not([style*="--size"]) {
|
|
466
492
|
font-size: calc($font-size-h4 * $scaling-for-signed-documents);
|
|
@@ -469,6 +495,7 @@ body {
|
|
|
469
495
|
}
|
|
470
496
|
h5,
|
|
471
497
|
.h5,
|
|
498
|
+
caption[style*="--size:5"],
|
|
472
499
|
caption[style*="--size: 5"] {
|
|
473
500
|
font-size: calc($font-size-h5 * $scaling-for-signed-documents);
|
|
474
501
|
margin-top: calc($margin-top-h5 * $scaling-for-signed-documents);
|
|
@@ -485,12 +512,20 @@ body {
|
|
|
485
512
|
dd {
|
|
486
513
|
margin: calc($margin-vertical-description-list * $scaling-for-signed-documents) 0;
|
|
487
514
|
}
|
|
488
|
-
&[style*="--
|
|
489
|
-
|
|
490
|
-
|
|
515
|
+
&[style*="--display-type: inline"],
|
|
516
|
+
&:not([style*="--display-type"]) {
|
|
517
|
+
&[style*="--title-width"] {
|
|
518
|
+
dt {
|
|
519
|
+
width: calc(var(--title-width) * $scaling-for-signed-documents);
|
|
520
|
+
}
|
|
521
|
+
dd {
|
|
522
|
+
flex-basis: calc(100% - (var(--title-width) * $scaling-for-signed-documents));
|
|
523
|
+
}
|
|
491
524
|
}
|
|
525
|
+
}
|
|
526
|
+
&[style*="--display-type: stacked"] {
|
|
492
527
|
dd {
|
|
493
|
-
|
|
528
|
+
margin-bottom: calc($margin-bottom-list * $scaling-for-signed-documents);
|
|
494
529
|
}
|
|
495
530
|
}
|
|
496
531
|
}
|
|
@@ -536,6 +571,10 @@ body {
|
|
|
536
571
|
}
|
|
537
572
|
}
|
|
538
573
|
|
|
574
|
+
.grid {
|
|
575
|
+
column-gap: calc($column-gap-grid * $scaling-for-signed-documents);
|
|
576
|
+
}
|
|
577
|
+
|
|
539
578
|
blockquote {
|
|
540
579
|
background: var(--color-secondary-x-light, colors.$color-secondary-x-light);
|
|
541
580
|
border-left: calc($border-left-width-blockquote * $scaling-for-signed-documents) solid
|
package/dist/style/pdf.css
CHANGED
|
@@ -74,6 +74,7 @@ body {
|
|
|
74
74
|
}
|
|
75
75
|
.page h1,
|
|
76
76
|
.page .h1,
|
|
77
|
+
.page caption[style*="--size:1"],
|
|
77
78
|
.page caption[style*="--size: 1"] {
|
|
78
79
|
page-break-after: avoid;
|
|
79
80
|
font-size: 34px;
|
|
@@ -84,6 +85,7 @@ body {
|
|
|
84
85
|
}
|
|
85
86
|
.page h1 small,
|
|
86
87
|
.page .h1 small,
|
|
88
|
+
.page caption[style*="--size:1"] small,
|
|
87
89
|
.page caption[style*="--size: 1"] small {
|
|
88
90
|
display: block;
|
|
89
91
|
font-size: 18px;
|
|
@@ -91,6 +93,7 @@ body {
|
|
|
91
93
|
}
|
|
92
94
|
.page h2,
|
|
93
95
|
.page .h2,
|
|
96
|
+
.page caption[style*="--size:2"],
|
|
94
97
|
.page caption[style*="--size: 2"] {
|
|
95
98
|
page-break-after: avoid;
|
|
96
99
|
font-size: 24px;
|
|
@@ -101,6 +104,7 @@ body {
|
|
|
101
104
|
}
|
|
102
105
|
.page h2 small,
|
|
103
106
|
.page .h2 small,
|
|
107
|
+
.page caption[style*="--size:2"] small,
|
|
104
108
|
.page caption[style*="--size: 2"] small {
|
|
105
109
|
display: block;
|
|
106
110
|
font-size: 16px;
|
|
@@ -109,11 +113,13 @@ body {
|
|
|
109
113
|
}
|
|
110
114
|
.page h2 + p,
|
|
111
115
|
.page .h2 + p,
|
|
116
|
+
.page caption[style*="--size:2"] + p,
|
|
112
117
|
.page caption[style*="--size: 2"] + p {
|
|
113
118
|
margin-top: 0;
|
|
114
119
|
}
|
|
115
120
|
.page h3,
|
|
116
121
|
.page .h3,
|
|
122
|
+
.page caption[style*="--size:3"],
|
|
117
123
|
.page caption[style*="--size: 3"] {
|
|
118
124
|
page-break-after: avoid;
|
|
119
125
|
font-size: 19px;
|
|
@@ -125,11 +131,13 @@ body {
|
|
|
125
131
|
}
|
|
126
132
|
.page h3 + p,
|
|
127
133
|
.page .h3 + p,
|
|
134
|
+
.page caption[style*="--size:3"] + p,
|
|
128
135
|
.page caption[style*="--size: 3"] + p {
|
|
129
136
|
margin-top: 0;
|
|
130
137
|
}
|
|
131
138
|
.page h4,
|
|
132
139
|
.page .h4,
|
|
140
|
+
.page caption[style*="--size:4"],
|
|
133
141
|
.page caption[style*="--size: 4"],
|
|
134
142
|
.page caption:not([style*="--size"]) {
|
|
135
143
|
page-break-after: avoid;
|
|
@@ -141,12 +149,14 @@ body {
|
|
|
141
149
|
}
|
|
142
150
|
.page h4 + p,
|
|
143
151
|
.page .h4 + p,
|
|
152
|
+
.page caption[style*="--size:4"] + p,
|
|
144
153
|
.page caption[style*="--size: 4"] + p,
|
|
145
154
|
.page caption:not([style*="--size"]) + p {
|
|
146
155
|
margin-top: 0;
|
|
147
156
|
}
|
|
148
157
|
.page h5,
|
|
149
158
|
.page .h5,
|
|
159
|
+
.page caption[style*="--size:5"],
|
|
150
160
|
.page caption[style*="--size: 5"] {
|
|
151
161
|
page-break-after: avoid;
|
|
152
162
|
font-size: 16px;
|
|
@@ -175,32 +185,35 @@ body {
|
|
|
175
185
|
margin: 0;
|
|
176
186
|
list-style: none;
|
|
177
187
|
}
|
|
178
|
-
.page dl[style*="--title-width"] {
|
|
188
|
+
.page dl[style*="--display-type: inline"][style*="--title-width"], .page dl:not([style*="--display-type"])[style*="--title-width"] {
|
|
179
189
|
display: flex;
|
|
180
190
|
flex-flow: row wrap;
|
|
181
191
|
align-items: end;
|
|
182
192
|
}
|
|
183
|
-
.page dl[style*="--title-width"] dt {
|
|
193
|
+
.page dl[style*="--display-type: inline"][style*="--title-width"] dt, .page dl:not([style*="--display-type"])[style*="--title-width"] dt {
|
|
184
194
|
width: var(--title-width);
|
|
185
195
|
}
|
|
186
|
-
.page dl[style*="--title-width"] dd {
|
|
196
|
+
.page dl[style*="--display-type: inline"][style*="--title-width"] dd, .page dl:not([style*="--display-type"])[style*="--title-width"] dd {
|
|
187
197
|
flex-basis: calc(100% - var(--title-width));
|
|
188
198
|
flex-grow: 1;
|
|
189
199
|
}
|
|
190
|
-
.page dl:not([style*="--title-width"]) dt {
|
|
200
|
+
.page dl[style*="--display-type: inline"]:not([style*="--title-width"]) dt, .page dl:not([style*="--display-type"]):not([style*="--title-width"]) dt {
|
|
191
201
|
display: inline;
|
|
192
202
|
}
|
|
193
|
-
.page dl:not([style*="--title-width"]) dt::before {
|
|
203
|
+
.page dl[style*="--display-type: inline"]:not([style*="--title-width"]) dt::before, .page dl:not([style*="--display-type"]):not([style*="--title-width"]) dt::before {
|
|
194
204
|
display: block;
|
|
195
205
|
content: "";
|
|
196
206
|
}
|
|
197
|
-
.page dl:not([style*="--title-width"]) dt::after {
|
|
207
|
+
.page dl[style*="--display-type: inline"]:not([style*="--title-width"]) dt::after, .page dl:not([style*="--display-type"]):not([style*="--title-width"]) dt::after {
|
|
198
208
|
display: inline;
|
|
199
209
|
content: " ";
|
|
200
210
|
}
|
|
201
|
-
.page dl:not([style*="--title-width"]) dd {
|
|
211
|
+
.page dl[style*="--display-type: inline"]:not([style*="--title-width"]) dd, .page dl:not([style*="--display-type"]):not([style*="--title-width"]) dd {
|
|
202
212
|
display: inline;
|
|
203
213
|
}
|
|
214
|
+
.page dl[style*="--display-type: stacked"] dd {
|
|
215
|
+
margin-bottom: 12px;
|
|
216
|
+
}
|
|
204
217
|
.page table {
|
|
205
218
|
border-collapse: collapse;
|
|
206
219
|
width: 100%;
|
|
@@ -258,6 +271,12 @@ body {
|
|
|
258
271
|
.page table tbody tr td.indent {
|
|
259
272
|
width: 18px;
|
|
260
273
|
}
|
|
274
|
+
.page .grid {
|
|
275
|
+
display: grid;
|
|
276
|
+
justify-content: space-between;
|
|
277
|
+
grid-template-columns: repeat(var(--columns), 1fr);
|
|
278
|
+
column-gap: 20px;
|
|
279
|
+
}
|
|
261
280
|
.page blockquote {
|
|
262
281
|
background: var(--color-secondary-x-light, #ebf4fa);
|
|
263
282
|
border-left: 4px solid var(--color-border, #89bad6);
|
|
@@ -338,17 +357,20 @@ body {
|
|
|
338
357
|
}
|
|
339
358
|
.page.signed-document div.content-container h1,
|
|
340
359
|
.page.signed-document div.content-container .h1,
|
|
360
|
+
.page.signed-document div.content-container caption[style*="--size:1"],
|
|
341
361
|
.page.signed-document div.content-container caption[style*="--size: 1"] {
|
|
342
362
|
font-size: 37.67268px;
|
|
343
363
|
margin-top: 5.5401px;
|
|
344
364
|
}
|
|
345
365
|
.page.signed-document div.content-container h1 small,
|
|
346
366
|
.page.signed-document div.content-container .h1 small,
|
|
367
|
+
.page.signed-document div.content-container caption[style*="--size:1"] small,
|
|
347
368
|
.page.signed-document div.content-container caption[style*="--size: 1"] small {
|
|
348
369
|
font-size: 19.94436px;
|
|
349
370
|
}
|
|
350
371
|
.page.signed-document div.content-container h2,
|
|
351
372
|
.page.signed-document div.content-container .h2,
|
|
373
|
+
.page.signed-document div.content-container caption[style*="--size:2"],
|
|
352
374
|
.page.signed-document div.content-container caption[style*="--size: 2"] {
|
|
353
375
|
font-size: 26.59248px;
|
|
354
376
|
margin-top: 24.37644px;
|
|
@@ -356,12 +378,14 @@ body {
|
|
|
356
378
|
}
|
|
357
379
|
.page.signed-document div.content-container h2 small,
|
|
358
380
|
.page.signed-document div.content-container .h2 small,
|
|
381
|
+
.page.signed-document div.content-container caption[style*="--size:2"] small,
|
|
359
382
|
.page.signed-document div.content-container caption[style*="--size: 2"] small {
|
|
360
383
|
font-size: 17.72832px;
|
|
361
384
|
margin-bottom: 6.64812px;
|
|
362
385
|
}
|
|
363
386
|
.page.signed-document div.content-container h3,
|
|
364
387
|
.page.signed-document div.content-container .h3,
|
|
388
|
+
.page.signed-document div.content-container caption[style*="--size:3"],
|
|
365
389
|
.page.signed-document div.content-container caption[style*="--size: 3"] {
|
|
366
390
|
font-size: 21.05238px;
|
|
367
391
|
margin-top: 16.6203px;
|
|
@@ -369,6 +393,7 @@ body {
|
|
|
369
393
|
}
|
|
370
394
|
.page.signed-document div.content-container h4,
|
|
371
395
|
.page.signed-document div.content-container .h4,
|
|
396
|
+
.page.signed-document div.content-container caption[style*="--size:4"],
|
|
372
397
|
.page.signed-document div.content-container caption[style*="--size: 4"],
|
|
373
398
|
.page.signed-document div.content-container caption:not([style*="--size"]) {
|
|
374
399
|
font-size: 18.83634px;
|
|
@@ -377,6 +402,7 @@ body {
|
|
|
377
402
|
}
|
|
378
403
|
.page.signed-document div.content-container h5,
|
|
379
404
|
.page.signed-document div.content-container .h5,
|
|
405
|
+
.page.signed-document div.content-container caption[style*="--size:5"],
|
|
380
406
|
.page.signed-document div.content-container caption[style*="--size: 5"] {
|
|
381
407
|
font-size: 17.72832px;
|
|
382
408
|
margin-top: 13.29624px;
|
|
@@ -394,12 +420,15 @@ body {
|
|
|
394
420
|
.page.signed-document div.content-container dl dd {
|
|
395
421
|
margin: 3.32406px 0;
|
|
396
422
|
}
|
|
397
|
-
.page.signed-document div.content-container dl[style*="--title-width"] dt {
|
|
423
|
+
.page.signed-document div.content-container dl[style*="--display-type: inline"][style*="--title-width"] dt, .page.signed-document div.content-container dl:not([style*="--display-type"])[style*="--title-width"] dt {
|
|
398
424
|
width: calc(var(--title-width) * 1.10802);
|
|
399
425
|
}
|
|
400
|
-
.page.signed-document div.content-container dl[style*="--title-width"] dd {
|
|
426
|
+
.page.signed-document div.content-container dl[style*="--display-type: inline"][style*="--title-width"] dd, .page.signed-document div.content-container dl:not([style*="--display-type"])[style*="--title-width"] dd {
|
|
401
427
|
flex-basis: calc(100% - var(--title-width) * 1.10802);
|
|
402
428
|
}
|
|
429
|
+
.page.signed-document div.content-container dl[style*="--display-type: stacked"] dd {
|
|
430
|
+
margin-bottom: 13.29624px;
|
|
431
|
+
}
|
|
403
432
|
.page.signed-document div.content-container table thead tr {
|
|
404
433
|
border-width: 1.10802px;
|
|
405
434
|
}
|
|
@@ -432,6 +461,9 @@ body {
|
|
|
432
461
|
.page.signed-document div.content-container table tbody tr td .indent {
|
|
433
462
|
width: 19.94436px;
|
|
434
463
|
}
|
|
464
|
+
.page.signed-document div.content-container .grid {
|
|
465
|
+
column-gap: 22.1604px;
|
|
466
|
+
}
|
|
435
467
|
.page.signed-document div.content-container blockquote {
|
|
436
468
|
background: var(--color-secondary-x-light, #ebf4fa);
|
|
437
469
|
border-left: 4.43208px solid var(--color-border, #89bad6);
|
package/dist/style/pdf.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/stories/PDF.scss","../../src/style/abstracts/mixins/_box-sizing.scss"],"names":[],"mappings":"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","file":"pdf.css"}
|