@roqua/quby-frontend 0.9.11 → 0.10.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.
@@ -223,6 +223,7 @@ export type IPanelItem = IHtmlItem | IQuestionItem | ITableItem | IInfoItem;
223
223
  export interface IPanel {
224
224
  title?: string;
225
225
  items: IPanelItem[];
226
+ questionKeys: string[];
226
227
  }
227
228
  export interface IVisibilityIfEqual {
228
229
  type: "equal";
@@ -32,7 +32,7 @@ export interface IVisibility {
32
32
  hidden: boolean;
33
33
  }
34
34
  export interface IValidated {
35
- beenActive: boolean;
35
+ showErrors: boolean;
36
36
  valid: boolean;
37
37
  errors: IError[];
38
38
  }
@@ -70,7 +70,7 @@ export declare class Response {
70
70
  getFieldState<T extends IValue>(key: string): IFieldState<T>;
71
71
  getValidationFieldState<T extends IValue>(key: string): IValidationFieldState<T>;
72
72
  setTextvar(key: string, value: string | null): void;
73
- initTextvars(fromServer: ITextvars): Map<any, any>;
73
+ initTextvars(fromServer: ITextvars): Map<string, string>;
74
74
  setValue<T extends IValue>(key: string, value: T | null): void;
75
75
  setActiveQuestion(key: string | null): void;
76
76
  addError(key: string, error: IError): void;