@win2win/shared-ui 0.1.3 → 0.1.5
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/{WrapperComponent.vue.d.ts → SectionWrapper.vue.d.ts} +1 -3
- package/dist/components/pdf/SectionWrapper.vue.d.ts.map +1 -0
- package/dist/components/pdf/SectionsContainer.vue.d.ts +5 -7
- package/dist/components/pdf/SectionsContainer.vue.d.ts.map +1 -1
- package/dist/components/pdf/helpers.d.ts +2 -0
- package/dist/components/pdf/helpers.d.ts.map +1 -0
- package/dist/components/pdf/{Card.vue.d.ts → sections/Card.vue.d.ts} +5 -14
- package/dist/components/pdf/sections/Card.vue.d.ts.map +1 -0
- package/dist/components/pdf/{TextSection.vue.d.ts → sections/CardGridSection.vue.d.ts} +3 -3
- package/dist/components/pdf/sections/CardGridSection.vue.d.ts.map +1 -0
- package/dist/components/pdf/{ImageSection.vue.d.ts → sections/ImageSection.vue.d.ts} +1 -1
- package/dist/components/pdf/sections/ImageSection.vue.d.ts.map +1 -0
- package/dist/components/pdf/{TableSection.vue.d.ts → sections/TableSection.vue.d.ts} +1 -1
- package/dist/components/pdf/sections/TableSection.vue.d.ts.map +1 -0
- package/dist/components/pdf/{CardGridSection.vue.d.ts → sections/TextSection.vue.d.ts} +3 -3
- package/dist/components/pdf/sections/TextSection.vue.d.ts.map +1 -0
- package/dist/components/pdf/sections/useData.d.ts +7 -0
- package/dist/components/pdf/sections/useData.d.ts.map +1 -0
- package/dist/interfaces/document-layouts.d.ts +3 -3
- package/dist/interfaces/document-layouts.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/w2w-shared-ui.js +3477 -3475
- package/dist/w2w-shared-ui.umd.cjs +9 -9
- package/package.json +2 -2
- package/dist/components/pdf/Card.vue.d.ts.map +0 -1
- package/dist/components/pdf/CardGridSection.vue.d.ts.map +0 -1
- package/dist/components/pdf/ImageSection.vue.d.ts.map +0 -1
- package/dist/components/pdf/TableSection.vue.d.ts.map +0 -1
- package/dist/components/pdf/TextSection.vue.d.ts.map +0 -1
- package/dist/components/pdf/WrapperComponent.vue.d.ts.map +0 -1
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import { LayoutSection } from '@win2win/shared';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
3
|
section: LayoutSection;
|
|
4
|
-
data: any;
|
|
5
4
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
6
5
|
section: LayoutSection;
|
|
7
|
-
data: any;
|
|
8
6
|
}>>>, {}, {}>;
|
|
9
7
|
export default _default;
|
|
10
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -16,4 +14,4 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
16
14
|
required: true;
|
|
17
15
|
};
|
|
18
16
|
};
|
|
19
|
-
//# sourceMappingURL=
|
|
17
|
+
//# sourceMappingURL=SectionWrapper.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SectionWrapper.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/SectionWrapper.vue"],"names":[],"mappings":"AAqCE,OAAO,EAAkC,aAAa,EAAgD,MAAM,iBAAiB,CAAC;;;;;;AA2EhI,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,12 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DocumentLayout, LayoutData } from '@win2win/shared';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
data: any;
|
|
3
|
+
layout: Pick<DocumentLayout, "styles" | "sections" | "format">;
|
|
4
|
+
data: LayoutData;
|
|
6
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
data: any;
|
|
6
|
+
layout: Pick<DocumentLayout, "styles" | "sections" | "format">;
|
|
7
|
+
data: LayoutData;
|
|
10
8
|
}>>>, {}, {}>;
|
|
11
9
|
export default _default;
|
|
12
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SectionsContainer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/SectionsContainer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SectionsContainer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/SectionsContainer.vue"],"names":[],"mappings":"AA+CA,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;;;;;;;;AAwE7D,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 @@
|
|
|
1
|
+
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/helpers.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,OAGzC"}
|
|
@@ -1,19 +1,10 @@
|
|
|
1
|
+
import { Card } from '@win2win/shared';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
fields: {
|
|
5
|
-
label: string;
|
|
6
|
-
value: any;
|
|
7
|
-
format?: string | undefined;
|
|
8
|
-
}[];
|
|
3
|
+
card: Card;
|
|
4
|
+
data: any;
|
|
9
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
fields: {
|
|
13
|
-
label: string;
|
|
14
|
-
value: any;
|
|
15
|
-
format?: string | undefined;
|
|
16
|
-
}[];
|
|
6
|
+
card: Card;
|
|
7
|
+
data: any;
|
|
17
8
|
}>>>, {}, {}>;
|
|
18
9
|
export default _default;
|
|
19
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/Card.vue"],"names":[],"mappings":"AA2FA,OAAO,EAAE,IAAI,EAAa,MAAM,iBAAiB,CAAC;;;;;;;;AAwGlD,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,6 @@
|
|
|
1
1
|
import { SectionProps } from '@/interfaces/document-layouts';
|
|
2
|
-
import {
|
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<
|
|
2
|
+
import { CardsGridContent } from '@win2win/shared';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<CardsGridContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<CardsGridContent>>>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
6
|
type __VLS_TypePropsToOption<T> = {
|
|
@@ -11,4 +11,4 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=
|
|
14
|
+
//# sourceMappingURL=CardGridSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardGridSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/CardGridSection.vue"],"names":[],"mappings":"AAgCA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;;AA+DnD,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,6 @@
|
|
|
1
1
|
import { SectionProps } from '@/interfaces/document-layouts';
|
|
2
2
|
import { ImageContent } from '@win2win/shared';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<ImageContent
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<ImageContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<ImageContent>>>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
6
|
type __VLS_TypePropsToOption<T> = {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImageSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/ImageSection.vue"],"names":[],"mappings":"AA0BA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;;AAmD/C,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,6 @@
|
|
|
1
1
|
import { SectionProps } from '@/interfaces/document-layouts';
|
|
2
2
|
import { TableContent } from '@win2win/shared';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<TableContent
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<TableContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<TableContent>>>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
6
|
type __VLS_TypePropsToOption<T> = {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/TableSection.vue"],"names":[],"mappings":"AA6DA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;;AA2E/C,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,6 @@
|
|
|
1
1
|
import { SectionProps } from '@/interfaces/document-layouts';
|
|
2
|
-
import {
|
|
3
|
-
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<
|
|
2
|
+
import { TextContent } from '@win2win/shared';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<SectionProps<TextContent>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<SectionProps<TextContent>>>>, {}, {}>;
|
|
4
4
|
export default _default;
|
|
5
5
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
6
6
|
type __VLS_TypePropsToOption<T> = {
|
|
@@ -11,4 +11,4 @@ type __VLS_TypePropsToOption<T> = {
|
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=
|
|
14
|
+
//# sourceMappingURL=TextSection.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/TextSection.vue"],"names":[],"mappings":"AAmCA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;;AAkE9C,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 @@
|
|
|
1
|
+
{"version":3,"file":"useData.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/useData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAGnD,wBAAgB,OAAO,CAAC,EAAE,EAAE,IAAI,EAAE,WAAW,GAAE,GAAQ;;;;EAOtD"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { LayoutStyle } from "@win2win/shared";
|
|
2
|
-
export interface SectionProps<T
|
|
1
|
+
import { LayoutStyle, Uuid } from "@win2win/shared";
|
|
2
|
+
export interface SectionProps<T> {
|
|
3
3
|
styles?: LayoutStyle;
|
|
4
|
+
id: Uuid;
|
|
4
5
|
content: T;
|
|
5
|
-
data: D;
|
|
6
6
|
}
|
|
7
7
|
//# sourceMappingURL=document-layouts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"document-layouts.d.ts","sourceRoot":"","sources":["../../src/interfaces/document-layouts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"document-layouts.d.ts","sourceRoot":"","sources":["../../src/interfaces/document-layouts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,iBAAiB,CAAC;AAEpD,MAAM,WAAW,YAAY,CAAC,CAAC;IAC3B,MAAM,CAAC,EAAE,WAAW,CAAA;IACpB,EAAE,EAAE,IAAI,CAAC;IACT,OAAO,EAAE,CAAC,CAAA;CACb"}
|
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)}.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[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)}.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[data-v-2b64cfee]{background:#fff;border-radius:8px;padding:1rem;box-shadow:0 2px 10px #0000001a}.card-header[data-v-2b64cfee]{margin-bottom:15px}.card-header h3[data-v-2b64cfee]{line-height:1;margin:0;font-size:1.2em;color:#036}.card-header p[data-v-2b64cfee]{margin:0;color:#999}.card-content .card-field[data-v-2b64cfee]{display:flex;justify-content:space-between;margin-bottom:10px}.card-content .card-field .field-label[data-v-2b64cfee]{color:#666}.card-content .card-field .field-value[data-v-2b64cfee]{font-weight:700;color:#333}.card-section[data-v-91deb527]{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem}table[data-v-6c8d5e5c]{border-collapse:collapse}th[data-v-6c8d5e5c],td[data-v-6c8d5e5c]{padding:0;border:1px solid #000}.sections-container[data-v-81af8074]{margin:20px;padding:40px 100px;border:2px solid black;display:flex;flex-direction:column;gap:2rem}.encabezado[data-v-81af8074]{font-size:16px;line-height:0;margin-bottom:40px}.logo[data-v-81af8074]{margin-bottom:30px}
|