@roqua/quby-frontend 0.10.11 → 0.10.13

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.
@@ -32,11 +32,13 @@ export interface IMinimumValidation {
32
32
  type: "minimum";
33
33
  value: number;
34
34
  fieldKey: string;
35
+ explanation?: string;
35
36
  }
36
37
  export interface IMaximumValidation {
37
38
  type: "maximum";
38
39
  value: number;
39
40
  fieldKey: string;
41
+ explanation?: string;
40
42
  }
41
43
  export interface IMinimumDateValidation {
42
44
  type: "minimum_date";
@@ -87,6 +89,7 @@ interface IBaseField {
87
89
  cssVars?: {
88
90
  [key: string]: string;
89
91
  };
92
+ indent?: number;
90
93
  }
91
94
  interface DatePart {
92
95
  part: DatePartsComponent;
@@ -324,6 +327,7 @@ export type IBooleanCalculation = ICalcComparer | ICalcBooleanReducer;
324
327
  export type ICalculation = INumberCalculation | IBooleanCalculation | ICalcStringValue;
325
328
  export type ISexpVariables = {
326
329
  [key: string]: {
330
+ type: "number" | "boolean" | "string";
327
331
  calculation: ICalculation;
328
332
  };
329
333
  };