@regulaforensics/idv-gui 3.6.390-nightly → 3.6.391-nightly

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/index.d.ts CHANGED
@@ -275,7 +275,7 @@ declare type QuestionsDataSource = {
275
275
  questions: QuestionDataSource[];
276
276
  };
277
277
 
278
- declare type QuestionsItemTypes = Array<UITextQuestion | UISelectorQuestion | UIMultiSelectorQuestion>;
278
+ declare type QuestionsItemTypes = Array<UITextQuestion | UISelectorQuestion | UIMultiSelectorQuestion | UIMultiSelectorButtonsQuestion | UIMultiSelectorOptionsQuestion>;
279
279
 
280
280
  declare const RootElementTypes: {
281
281
  readonly SCAFFOLD: "scaffold";
@@ -529,6 +529,18 @@ declare type UIMultiDropdownControl = DropdownControl & {
529
529
  chip: UIChip;
530
530
  };
531
531
 
532
+ declare type UIMultiSelectorButtonsQuestion = QuestionItem & {
533
+ displayType: typeof QUESTIONS_DISPLAY_TYPES.MULTI_SELECTOR_BUTTONS;
534
+ option: UIButtonOption;
535
+ optionSelected: UIButtonOption;
536
+ };
537
+
538
+ declare type UIMultiSelectorOptionsQuestion = QuestionItem & {
539
+ displayType: typeof QUESTIONS_DISPLAY_TYPES.MULTI_SELECTOR_OPTIONS;
540
+ option: UIRadioOption;
541
+ optionSelected: UIRadioOption;
542
+ };
543
+
532
544
  declare type UIMultiSelectorQuestion = QuestionItem & {
533
545
  displayType: typeof QUESTIONS_DISPLAY_TYPES.MULTI_SELECTOR_DROPDOWN;
534
546
  option: UIDropdownOption;