@win2win/shared 1.0.110 → 1.0.111
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.
|
@@ -61,6 +61,13 @@ export interface LayoutSectionSignature extends LayoutSection {
|
|
|
61
61
|
type: LayoutSectionType.SIGNATURE;
|
|
62
62
|
content: SignatureContent;
|
|
63
63
|
}
|
|
64
|
+
export interface LayoutSectionRadioButtons extends LayoutSection {
|
|
65
|
+
type: LayoutSectionType.RADIO_BUTTONS;
|
|
66
|
+
content: LayoutSectionRadioButtons;
|
|
67
|
+
}
|
|
68
|
+
export interface LayoutSectionRadioButtons {
|
|
69
|
+
options?: any[];
|
|
70
|
+
}
|
|
64
71
|
/**
|
|
65
72
|
* value corresponde al valor de la firma cuando está en modo singable: true.
|
|
66
73
|
*/
|
|
@@ -86,7 +93,8 @@ export declare enum LayoutSectionType {
|
|
|
86
93
|
TABLE = "table",
|
|
87
94
|
CARDS_GRID = "cards-grid",
|
|
88
95
|
IMAGE = "image",
|
|
89
|
-
SIGNATURE = "signature"
|
|
96
|
+
SIGNATURE = "signature",
|
|
97
|
+
RADIO_BUTTONS = "radio_buttons"
|
|
90
98
|
}
|
|
91
99
|
export declare const LAYOUT_SECTION_TYPES: readonly [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE];
|
|
92
100
|
export interface TableColumn {
|
|
@@ -14,5 +14,6 @@ var LayoutSectionType;
|
|
|
14
14
|
LayoutSectionType["CARDS_GRID"] = "cards-grid";
|
|
15
15
|
LayoutSectionType["IMAGE"] = "image";
|
|
16
16
|
LayoutSectionType["SIGNATURE"] = "signature";
|
|
17
|
+
LayoutSectionType["RADIO_BUTTONS"] = "radio_buttons";
|
|
17
18
|
})(LayoutSectionType || (exports.LayoutSectionType = LayoutSectionType = {}));
|
|
18
19
|
exports.LAYOUT_SECTION_TYPES = [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE];
|
package/package.json
CHANGED