@win2win/shared-ui 0.1.48 → 0.1.52
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/SectionWrapper.vue.d.ts.map +1 -1
- package/dist/components/pdf/sections/RadioButtonsSection.vue.d.ts +14 -0
- package/dist/components/pdf/sections/RadioButtonsSection.vue.d.ts.map +1 -0
- package/dist/components/pdf/sections/SignatureSection.vue.d.ts +11 -1
- package/dist/components/pdf/sections/SignatureSection.vue.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/w2w-shared-ui.js +4300 -4172
- package/dist/w2w-shared-ui.umd.cjs +8 -8
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionWrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/SectionWrapper.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SectionWrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/SectionWrapper.vue"],"names":[],"mappings":"AAkDA,OAAO,EAGL,aAAa,EAId,MAAM,iBAAiB,CAAC;;;;;;AAmFzB,wBAMG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SectionProps } from "@/interfaces/document-layouts";
|
|
2
|
+
import { LayoutSectionRadioButtonsContent } from "@win2win/shared";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<LayoutSectionRadioButtonsContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<LayoutSectionRadioButtonsContent>>>>, {}, {}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
|
+
type __VLS_TypePropsToOption<T> = {
|
|
7
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
8
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
9
|
+
} : {
|
|
10
|
+
type: import('vue').PropType<T[K]>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=RadioButtonsSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadioButtonsSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/RadioButtonsSection.vue"],"names":[],"mappings":"AAmCA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,gCAAgC,EAAE,MAAM,iBAAiB,CAAC;;AAwFnE,wBAMG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { SectionProps } from "@/interfaces/document-layouts";
|
|
2
2
|
import { SignatureContent } from "@win2win/shared";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<SignatureContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<SignatureContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
|
+
clear: (...args: any[]) => void;
|
|
5
|
+
save: (...args: any[]) => void;
|
|
6
|
+
cancel: (...args: any[]) => void;
|
|
7
|
+
edit: (...args: any[]) => void;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<SignatureContent>>>> & {
|
|
9
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10
|
+
onSave?: ((...args: any[]) => any) | undefined;
|
|
11
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
12
|
+
onEdit?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}, {}, {}>;
|
|
4
14
|
export default _default;
|
|
5
15
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
16
|
type __VLS_TypePropsToOption<T> = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SignatureSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/SignatureSection.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SignatureSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/SignatureSection.vue"],"names":[],"mappings":"AAoGA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;;;;;;;;;;;;AAuQnD,wBAOG;AAOH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.card-option[data-v-148468d6]{transition:all .3s;display:flex;justify-content:center;align-items:center;padding:.5rem;border-radius:.5rem;cursor:pointer;background:#fff;color:#202020;height:100px;width:160px;text-align:center;font-size:16px;word-break:break-word;border:.5px solid rgba(73,74,74,.1);box-shadow:5px 7px 7px -4px #b6b6b6b3;-webkit-box-shadow:5px 7px 7px -4px rgba(182,182,182,.7);-moz-box-shadow:5px 7px 7px -4px rgba(182,182,182,.7)}@media (max-width: 388px){.card-option[data-v-148468d6]{width:120px;height:80px;font-size:12px}}@media (max-width: 317px){.card-option[data-v-148468d6]{min-width:75px;height:80px;font-size:12px}}.card-option.active[data-v-148468d6]{color:#000;font-weight:500;box-shadow:5px 7px 7px -4px #494a4ae6;-webkit-box-shadow:5px 7px 7px -4px rgba(73,74,74,.9);-moz-box-shadow:5px 7px 7px -4px rgba(73,74,74,.9)}.card-select-container[data-v-148468d6]{padding:0 10vw;display:flex;align-items:center;justify-content:start;width:100%;flex-wrap:wrap;gap:1rem}@media (max-width: 768px){.card-select-container[data-v-148468d6]{padding:0 10px;display:flex;justify-content:center;max-width:100%}}.image-card[data-v-148468d6]{margin:auto 1rem;transition:all .3s;position:relative;height:fit-content;width:fit-content;border-radius:.5rem;overflow:hidden;cursor:pointer}.image-card .check[data-v-148468d6]{position:absolute;bottom:15px;right:15px;width:30px;height:30px;background:#fff;border-radius:5px}.image-card.active[data-v-148468d6]{box-shadow:13px 12px 15px -2px #3f3f3fb0;-webkit-box-shadow:13px 12px 15px -2px rgba(63,63,63,.69);-moz-box-shadow:13px 12px 15px -2px rgba(63,63,63,.69)}.indicator-icon[data-v-86ec13f1]{width:10px;height:10px;border-radius:50%;flex-shrink:0}.indicator-icon.coral[data-v-86ec13f1]{background:linear-gradient(40deg,#0ff,#4169e1,#ffb6c1)}.indicator-icon.green[data-v-86ec13f1]{background:linear-gradient(40deg,#2e8b57,#00ff7f)}.indicator-icon.red[data-v-86ec13f1]{background:linear-gradient(40deg,#8b0000,red)}.indicator-icon.pink[data-v-86ec13f1]{background:linear-gradient(40deg,#c71585,violet)}.indicator-icon.purple[data-v-86ec13f1]{background:linear-gradient(40deg,indigo,#639)}.indicator-icon.blue[data-v-86ec13f1]{background:linear-gradient(40deg,#00008b,#00bfff)}.indicator-icon.cyan[data-v-86ec13f1]{background:linear-gradient(40deg,#00ced1,#0ff)}.indicator-icon.orange[data-v-86ec13f1]{background:linear-gradient(40deg,#f4a460,#ffdab9)}.indicator-icon.yellow[data-v-86ec13f1]{background:linear-gradient(40deg,gold,#ff0)}.indicator-icon.grey[data-v-86ec13f1]{background:linear-gradient(40deg,#d3d3d3,#f5f5f5)}.indicator-icon.black[data-v-86ec13f1]{background:linear-gradient(40deg,#6d6d6d,#000)}.hoverable[data-v-a10936e1]{padding:.5rem;border-radius:4px}.hoverable[data-v-a10936e1]:hover{background-color:#f5f5f5}.bordered[data-v-a10936e1]{border:.25px solid rgb(236,236,236);padding:12px;border-radius:6.5px;box-shadow:0 2px 3px #0000001a}.text[data-v-a10936e1]{font-size:13px}.dense-text[data-v-a10936e1]{font-size:12px}[data-v-5593318f] .q-field__control-container{padding-left:0}[data-v-5593318f] .q-field--float .q-field__label{transform:translateY(-40%) scale(.9)}[data-v-5593318f] .q-field__label{font-size:15px;color:#000}[data-v-5593318f] .q-field__native{padding-top:24px;padding-bottom:0;font-weight:600}[data-v-5593318f] .q-field__bottom{padding-top:14px}.m-auto[data-v-8f5284d3]{margin:auto!important}.buttons-container[data-v-3bcb795a]{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:0 25px;pointer-events:none}.buttons-container[data-v-3bcb795a]>*{pointer-events:all}[data-v-fa1749f7]::deep(.q-field__native){font-size:19.5px;text-align:center}.question-title{letter-spacing:.5px;font-weight:500;font-size:23px;line-height:30px}.form-steps-container[data-v-2d9dca33]{height:75vh;overflow-y:auto}@media screen and (max-width: 700px){.form-steps-container[data-v-2d9dca33]{height:100%}}.controls-container[data-v-2d9dca33]{margin:0rem auto}@media (max-width: 768px){.controls-container[data-v-2d9dca33]{margin:2rem auto}}[data-v-bd5dfdca]::deep(.q-field__bottom){padding:0!important}.form-steps-container[data-v-a8cd1002]{height:55vh;overflow-y:auto}.description[data-v-a8cd1002]{font-size:16px}@media screen and (max-width: 700px){.form-steps-container[data-v-a8cd1002]{height:100%}}.form-container[data-v-a8cd1002]{max-width:75vw;margin:auto;display:grid;row-gap:.5rem;column-gap:1rem}@media (max-width: 768px){.form-container[data-v-a8cd1002]{grid-template-columns:1fr}}@media (max-width: 1200px){.form-container[data-v-a8cd1002]{max-width:100%}}.controls-container[data-v-a8cd1002]{margin:0rem auto}@media (max-width: 768px){.controls-container[data-v-a8cd1002]{margin:2rem auto}}.form-container[data-v-a8cd1002]{max-width:100%;margin:1rem}@media (min-width: 768px){.form-container[data-v-a8cd1002]{max-width:800px}}@media (min-width: 1200px){.form-container[data-v-a8cd1002]{max-width:1200px;margin:10px auto auto}}.buttons-container[data-v-ea1ef607]{pointer-events:none;width:100%}.max-container[data-v-ea1ef607]{max-width:1200px;margin:0 auto}[data-v-ea1ef607]::deep(button){pointer-events:all}[data-v-ea1ef607]::deep(.checkbox){pointer-events:all}._card_12eql_1{background:#fff;border-radius:8px;padding:1rem;box-shadow:0 2px 10px #0000001a}._card-header_12eql_8{margin-bottom:15px}._card-header_12eql_8 h3{line-height:1;margin:0;font-size:1.2em;color:#036}._card-header_12eql_8 p{margin:0;color:#999}._card-content_12eql_22 ._card-field_12eql_22{display:flex;justify-content:space-between;margin-bottom:10px}._card-content_12eql_22 ._card-field_12eql_22 ._field-label_12eql_27{color:#666}._card-content_12eql_22 ._card-field_12eql_22 ._field-value_12eql_30{font-weight:700;color:#333}._card-section_1xfbl_2{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem}._img-container_17yzt_2{display:flex;width:100%}.section[data-v-
|
|
1
|
+
.card-option[data-v-148468d6]{transition:all .3s;display:flex;justify-content:center;align-items:center;padding:.5rem;border-radius:.5rem;cursor:pointer;background:#fff;color:#202020;height:100px;width:160px;text-align:center;font-size:16px;word-break:break-word;border:.5px solid rgba(73,74,74,.1);box-shadow:5px 7px 7px -4px #b6b6b6b3;-webkit-box-shadow:5px 7px 7px -4px rgba(182,182,182,.7);-moz-box-shadow:5px 7px 7px -4px rgba(182,182,182,.7)}@media (max-width: 388px){.card-option[data-v-148468d6]{width:120px;height:80px;font-size:12px}}@media (max-width: 317px){.card-option[data-v-148468d6]{min-width:75px;height:80px;font-size:12px}}.card-option.active[data-v-148468d6]{color:#000;font-weight:500;box-shadow:5px 7px 7px -4px #494a4ae6;-webkit-box-shadow:5px 7px 7px -4px rgba(73,74,74,.9);-moz-box-shadow:5px 7px 7px -4px rgba(73,74,74,.9)}.card-select-container[data-v-148468d6]{padding:0 10vw;display:flex;align-items:center;justify-content:start;width:100%;flex-wrap:wrap;gap:1rem}@media (max-width: 768px){.card-select-container[data-v-148468d6]{padding:0 10px;display:flex;justify-content:center;max-width:100%}}.image-card[data-v-148468d6]{margin:auto 1rem;transition:all .3s;position:relative;height:fit-content;width:fit-content;border-radius:.5rem;overflow:hidden;cursor:pointer}.image-card .check[data-v-148468d6]{position:absolute;bottom:15px;right:15px;width:30px;height:30px;background:#fff;border-radius:5px}.image-card.active[data-v-148468d6]{box-shadow:13px 12px 15px -2px #3f3f3fb0;-webkit-box-shadow:13px 12px 15px -2px rgba(63,63,63,.69);-moz-box-shadow:13px 12px 15px -2px rgba(63,63,63,.69)}.indicator-icon[data-v-86ec13f1]{width:10px;height:10px;border-radius:50%;flex-shrink:0}.indicator-icon.coral[data-v-86ec13f1]{background:linear-gradient(40deg,#0ff,#4169e1,#ffb6c1)}.indicator-icon.green[data-v-86ec13f1]{background:linear-gradient(40deg,#2e8b57,#00ff7f)}.indicator-icon.red[data-v-86ec13f1]{background:linear-gradient(40deg,#8b0000,red)}.indicator-icon.pink[data-v-86ec13f1]{background:linear-gradient(40deg,#c71585,violet)}.indicator-icon.purple[data-v-86ec13f1]{background:linear-gradient(40deg,indigo,#639)}.indicator-icon.blue[data-v-86ec13f1]{background:linear-gradient(40deg,#00008b,#00bfff)}.indicator-icon.cyan[data-v-86ec13f1]{background:linear-gradient(40deg,#00ced1,#0ff)}.indicator-icon.orange[data-v-86ec13f1]{background:linear-gradient(40deg,#f4a460,#ffdab9)}.indicator-icon.yellow[data-v-86ec13f1]{background:linear-gradient(40deg,gold,#ff0)}.indicator-icon.grey[data-v-86ec13f1]{background:linear-gradient(40deg,#d3d3d3,#f5f5f5)}.indicator-icon.black[data-v-86ec13f1]{background:linear-gradient(40deg,#6d6d6d,#000)}.hoverable[data-v-a10936e1]{padding:.5rem;border-radius:4px}.hoverable[data-v-a10936e1]:hover{background-color:#f5f5f5}.bordered[data-v-a10936e1]{border:.25px solid rgb(236,236,236);padding:12px;border-radius:6.5px;box-shadow:0 2px 3px #0000001a}.text[data-v-a10936e1]{font-size:13px}.dense-text[data-v-a10936e1]{font-size:12px}[data-v-5593318f] .q-field__control-container{padding-left:0}[data-v-5593318f] .q-field--float .q-field__label{transform:translateY(-40%) scale(.9)}[data-v-5593318f] .q-field__label{font-size:15px;color:#000}[data-v-5593318f] .q-field__native{padding-top:24px;padding-bottom:0;font-weight:600}[data-v-5593318f] .q-field__bottom{padding-top:14px}.m-auto[data-v-8f5284d3]{margin:auto!important}.buttons-container[data-v-3bcb795a]{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:0 25px;pointer-events:none}.buttons-container[data-v-3bcb795a]>*{pointer-events:all}[data-v-fa1749f7]::deep(.q-field__native){font-size:19.5px;text-align:center}.question-title{letter-spacing:.5px;font-weight:500;font-size:23px;line-height:30px}.form-steps-container[data-v-2d9dca33]{height:75vh;overflow-y:auto}@media screen and (max-width: 700px){.form-steps-container[data-v-2d9dca33]{height:100%}}.controls-container[data-v-2d9dca33]{margin:0rem auto}@media (max-width: 768px){.controls-container[data-v-2d9dca33]{margin:2rem auto}}[data-v-bd5dfdca]::deep(.q-field__bottom){padding:0!important}.form-steps-container[data-v-a8cd1002]{height:55vh;overflow-y:auto}.description[data-v-a8cd1002]{font-size:16px}@media screen and (max-width: 700px){.form-steps-container[data-v-a8cd1002]{height:100%}}.form-container[data-v-a8cd1002]{max-width:75vw;margin:auto;display:grid;row-gap:.5rem;column-gap:1rem}@media (max-width: 768px){.form-container[data-v-a8cd1002]{grid-template-columns:1fr}}@media (max-width: 1200px){.form-container[data-v-a8cd1002]{max-width:100%}}.controls-container[data-v-a8cd1002]{margin:0rem auto}@media (max-width: 768px){.controls-container[data-v-a8cd1002]{margin:2rem auto}}.form-container[data-v-a8cd1002]{max-width:100%;margin:1rem}@media (min-width: 768px){.form-container[data-v-a8cd1002]{max-width:800px}}@media (min-width: 1200px){.form-container[data-v-a8cd1002]{max-width:1200px;margin:10px auto auto}}.buttons-container[data-v-ea1ef607]{pointer-events:none;width:100%}.max-container[data-v-ea1ef607]{max-width:1200px;margin:0 auto}[data-v-ea1ef607]::deep(button){pointer-events:all}[data-v-ea1ef607]::deep(.checkbox){pointer-events:all}._card_12eql_1{background:#fff;border-radius:8px;padding:1rem;box-shadow:0 2px 10px #0000001a}._card-header_12eql_8{margin-bottom:15px}._card-header_12eql_8 h3{line-height:1;margin:0;font-size:1.2em;color:#036}._card-header_12eql_8 p{margin:0;color:#999}._card-content_12eql_22 ._card-field_12eql_22{display:flex;justify-content:space-between;margin-bottom:10px}._card-content_12eql_22 ._card-field_12eql_22 ._field-label_12eql_27{color:#666}._card-content_12eql_22 ._card-field_12eql_22 ._field-value_12eql_30{font-weight:700;color:#333}._card-section_1xfbl_2{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem}._img-container_17yzt_2{display:flex;width:100%}.section[data-v-52c4a9ac]{position:relative;display:flex;justify-content:center;align-items:center}.section:hover .add-btn[data-v-52c4a9ac]{visibility:visible}.signature[data-v-52c4a9ac]{width:auto;height:300px;max-width:100vw;border:1px solid black}@media print{.no-print[data-v-52c4a9ac]{display:none!important}}._table-section_aicx8_1{border-collapse:collapse}._table-section_aicx8_1 th,._table-section_aicx8_1 td{padding:0;border:1px solid #000}._section_12p9p_1,._p-container_12p9p_2{position:relative}._section_12p9p_1:hover ._add-btn_12p9p_6{visibility:visible}._p-container_12p9p_2:hover{background-color:#0000000a}._p-container_12p9p_2:hover ._remove-btn_12p9p_13{visibility:visible}._add-btn_12p9p_6,._remove-btn_12p9p_13{z-index:9;visibility:hidden;position:absolute;top:0;right:0}h1{font-size:24px!important;line-height:1!important}h2{font-size:18px!important;line-height:1!important}p{font-size:14px!important}@media print{._no-print_12p9p_40{display:none!important}._no-print_12p9p_40 ._p-container_12p9p_2{background-color:transparent!important}}.section[data-v-c483c6de]{position:relative;display:flex;justify-content:center;align-items:center}.section[data-v-c483c6de]:hover .add-btn[data-v-c483c6de]{visibility:visible}._sections-container_1wrbi_3{display:flex;flex-direction:column;gap:2rem}@media print{@page{margin:10mm;size:A4}._sections-container_1wrbi_3>*{page-break-inside:avoid}}
|