@win2win/shared-ui 0.1.54 → 0.1.55
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/PdfContainer.vue.d.ts +20 -0
- package/dist/components/pdf/PdfContainer.vue.d.ts.map +1 -0
- package/dist/components/pdf/SectionsContainer.vue.d.ts +23 -14
- package/dist/components/pdf/SectionsContainer.vue.d.ts.map +1 -1
- package/dist/components/pdf/sections/RadioButtonsSection.vue.d.ts.map +1 -1
- package/dist/components/pdf/sections/SignatureSection.vue.d.ts.map +1 -1
- package/dist/pdf.min-f72cfa08-DAetWL3M.js +9501 -0
- package/dist/style.css +1 -1
- package/dist/w2w-shared-ui.js +7846 -7474
- package/dist/w2w-shared-ui.umd.cjs +25 -19
- package/package.json +2 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
+
pdf: {
|
|
3
|
+
url: string;
|
|
4
|
+
};
|
|
5
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
6
|
+
pdf: {
|
|
7
|
+
url: string;
|
|
8
|
+
};
|
|
9
|
+
}>>>, {}, {}>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
12
|
+
type __VLS_TypePropsToOption<T> = {
|
|
13
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
15
|
+
} : {
|
|
16
|
+
type: import('vue').PropType<T[K]>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=PdfContainer.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfContainer.vue.d.ts","sourceRoot":"","sources":["../../../src/components/pdf/PdfContainer.vue"],"names":[],"mappings":";;;;;;;;;AAkTA,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,21 +1,30 @@
|
|
|
1
|
-
import { DocumentLayout, LayoutData } from
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
11
|
-
layout: Pick<DocumentLayout, "format" | "styles" | "sections">;
|
|
1
|
+
import { DocumentLayout, LayoutData } from "@win2win/shared";
|
|
2
|
+
export interface GlobalModel {
|
|
3
|
+
signed?: boolean;
|
|
4
|
+
values?: {
|
|
5
|
+
[key: string]: any;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
declare let __VLS_typeProps: {
|
|
9
|
+
layout: Pick<DocumentLayout, "styles" | "sections" | "format">;
|
|
12
10
|
data: LayoutData;
|
|
13
11
|
htmlNodes?: {
|
|
14
12
|
index: number;
|
|
15
13
|
element: HTMLElement;
|
|
16
|
-
}[]
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
}[];
|
|
15
|
+
pdf?: {
|
|
16
|
+
url: string;
|
|
17
|
+
};
|
|
18
|
+
editable?: boolean;
|
|
19
|
+
};
|
|
20
|
+
type __VLS_PublicProps = {
|
|
21
|
+
modelValue?: GlobalModel;
|
|
22
|
+
} & typeof __VLS_typeProps;
|
|
23
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
+
"update:modelValue": (modelValue: GlobalModel) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
|
26
|
+
"onUpdate:modelValue"?: ((modelValue: GlobalModel) => any) | undefined;
|
|
27
|
+
}, {}, {}>;
|
|
19
28
|
export default _default;
|
|
20
29
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
30
|
type __VLS_TypePropsToOption<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":"AAqFA,OAAO,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAM7D,MAAM,WAAW,WAAW;IAC1B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE;QACP,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAOD,QAAA,IAAI,eAAe,EAAG;IACpB,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC,CAAC;IAC/D,IAAI,EAAE,UAAU,CAAC;IACjB,SAAS,CAAC,EAAE;QACV,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,WAAW,CAAC;KACtB,EAAE,CAAC;IACJ,GAAG,CAAC,EAAE;QACJ,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;IACF,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AA4BF,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,WAAW,CAAC;CACxB,GAAG,OAAO,eAAe,CAAC;;;;;;AAkF3B,wBAOG;AASH,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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioButtonsSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/RadioButtonsSection.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"RadioButtonsSection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdf/sections/RadioButtonsSection.vue"],"names":[],"mappings":"AA+CA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,gCAAgC,EAAE,MAAM,iBAAiB,CAAC;;AAoGnE,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 +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":"AAwHA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;;;;;;;;;;;;AA2RnD,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"}
|