@win2win/shared 1.0.111 → 1.0.113
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.
|
@@ -63,9 +63,9 @@ export interface LayoutSectionSignature extends LayoutSection {
|
|
|
63
63
|
}
|
|
64
64
|
export interface LayoutSectionRadioButtons extends LayoutSection {
|
|
65
65
|
type: LayoutSectionType.RADIO_BUTTONS;
|
|
66
|
-
content:
|
|
66
|
+
content: LayoutSectionRadioButtonsContent;
|
|
67
67
|
}
|
|
68
|
-
export interface
|
|
68
|
+
export interface LayoutSectionRadioButtonsContent {
|
|
69
69
|
options?: any[];
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
@@ -96,7 +96,7 @@ export declare enum LayoutSectionType {
|
|
|
96
96
|
SIGNATURE = "signature",
|
|
97
97
|
RADIO_BUTTONS = "radio_buttons"
|
|
98
98
|
}
|
|
99
|
-
export declare const LAYOUT_SECTION_TYPES: readonly [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE];
|
|
99
|
+
export declare const LAYOUT_SECTION_TYPES: readonly [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE, LayoutSectionType.RADIO_BUTTONS];
|
|
100
100
|
export interface TableColumn {
|
|
101
101
|
header: string;
|
|
102
102
|
key: string;
|
|
@@ -16,4 +16,4 @@ var LayoutSectionType;
|
|
|
16
16
|
LayoutSectionType["SIGNATURE"] = "signature";
|
|
17
17
|
LayoutSectionType["RADIO_BUTTONS"] = "radio_buttons";
|
|
18
18
|
})(LayoutSectionType || (exports.LayoutSectionType = LayoutSectionType = {}));
|
|
19
|
-
exports.LAYOUT_SECTION_TYPES = [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE];
|
|
19
|
+
exports.LAYOUT_SECTION_TYPES = [LayoutSectionType.TEXT, LayoutSectionType.CARDS_GRID, LayoutSectionType.TABLE, LayoutSectionType.IMAGE, LayoutSectionType.SIGNATURE, LayoutSectionType.RADIO_BUTTONS];
|
package/package.json
CHANGED