@case-framework/survey-ui 0.8.1 → 0.8.2

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.
@@ -125,6 +125,8 @@ export interface FormFieldGroupConfig {
125
125
  }
126
126
  export interface FormItemConfig {
127
127
  id: string;
128
+ /** Editor-facing complexity level; it does not change participant behavior. */
129
+ authoringMode: "simple" | "custom";
128
130
  fieldGroups: FormFieldGroupConfig[];
129
131
  }
130
132
  export declare function createFormItemConfig(itemId: string): FormItemConfig;