ngx-t-forms-types 0.0.13 → 0.0.15

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.
@@ -33,7 +33,8 @@ export declare enum ElementEditorTypes {
33
33
  default = "default",
34
34
  DataSourcePicker = "dataSourcePicker",
35
35
  ListLabelConfigEditor = "listLabelConfigEditor",
36
- DecisionGateSettings = "decisionGateSettings"
36
+ DecisionGateSettings = "decisionGateSettings",
37
+ RecordListManager = "recordListManager"
37
38
  }
38
39
  export interface ElementEditorConfigInterface {
39
40
  editorSections: Array<ElementEditorConfigSectionInterface>;
@@ -63,10 +64,12 @@ export interface ElementEditorInnerSectionElementInterface {
63
64
  hint?: string;
64
65
  editType: ElementEditorTypes;
65
66
  deepBind: Array<string>;
67
+ defaultValue?: any;
66
68
  limitTo?: number;
67
69
  additionalTest?: ConfigurationValidTestInterface[];
68
70
  disabled?: ConfigurationValidTestInterface[];
69
71
  fetchOptions?: string[];
72
+ secondaryElementEditorConfig?: Array<ElementEditorConfigSectionInterface>;
70
73
  clearOnChange?: string[][];
71
74
  blurHandle?: BlurHandleTypes;
72
75
  label: string;
@@ -76,7 +79,7 @@ export interface ElementEditorInnerSectionElementInterface {
76
79
  placeholder?: string;
77
80
  options?: Array<{
78
81
  label: string;
79
- value: string;
82
+ value: any;
80
83
  }>;
81
84
  computedErrors?: ValidationError[];
82
85
  min?: number;
@@ -28,6 +28,7 @@ export var ElementEditorTypes;
28
28
  ElementEditorTypes["DataSourcePicker"] = "dataSourcePicker";
29
29
  ElementEditorTypes["ListLabelConfigEditor"] = "listLabelConfigEditor";
30
30
  ElementEditorTypes["DecisionGateSettings"] = "decisionGateSettings";
31
+ ElementEditorTypes["RecordListManager"] = "recordListManager";
31
32
  })(ElementEditorTypes || (ElementEditorTypes = {}));
32
33
  // interface TStringExpressionValidationTest{
33
34
  // expression: string;
@@ -4,6 +4,7 @@ export interface IWorkflowOption {
4
4
  name: string;
5
5
  createdAt: Date;
6
6
  numberOfSteps: number;
7
+ isCheckInCheckOut: boolean;
7
8
  isDocument: boolean;
8
9
  id: string;
9
10
  }
@@ -1,7 +1,7 @@
1
1
  import { Observable } from "rxjs";
2
2
  import { DatabaseFormInterface, FileUploadFn, FormColumnInputs, FormInterface } from "../Form";
3
3
  import { IWorkflowOption } from "../FormBuilder";
4
- import { AdjResponseReviewColumnMapping, IGetTreeResponse } from "../formInput";
4
+ import { AdjResponseReviewColumnMapping, IGetTreeResponse, WorkflowAdjudicationScoreSheetValue } from "../formInput";
5
5
  import { FormListSection } from "../Form/IFormsInitStateInterface";
6
6
  import { IUserSignature } from "../formInput/userSignature";
7
7
  import { PointGroup } from "signature_pad";
@@ -62,5 +62,7 @@ export interface IStoreFunctions {
62
62
  getCurrentStepMicroflowSubmissions: () => Observable<{
63
63
  submissions: any[];
64
64
  columnMapping: AdjResponseReviewColumnMapping;
65
+ scoreSheet?: WorkflowAdjudicationScoreSheetValue[];
66
+ adjudicationPricePreferenceCalculationFormula?: string;
65
67
  }>;
66
68
  }
@@ -1,4 +1,4 @@
1
1
  import { validateCalculatedFieldRules } from "./CalculatedFieldRulesSchema";
2
2
  import { formColumnInputsSchema, validateFormColumnInputs, validateFormColumnInputsWithRequired } from "./FormInputSchema";
3
- import { validateApiDataFetchingConfiguration, validateForm, validateFormSlide } from "./FormSchema";
4
- export { formColumnInputsSchema, validateCalculatedFieldRules, validateFormColumnInputs, validateFormSlide, validateFormColumnInputsWithRequired, validateForm, validateApiDataFetchingConfiguration };
3
+ import { DatabaseFormSchema, FormSchema, validateApiDataFetchingConfiguration, validateForm, validateFormSlide } from "./FormSchema";
4
+ export { FormSchema, DatabaseFormSchema, formColumnInputsSchema, validateCalculatedFieldRules, validateFormColumnInputs, validateFormSlide, validateFormColumnInputsWithRequired, validateForm, validateApiDataFetchingConfiguration };
@@ -1,4 +1,4 @@
1
1
  import { validateCalculatedFieldRules } from "./CalculatedFieldRulesSchema";
2
2
  import { formColumnInputsSchema, validateFormColumnInputs, validateFormColumnInputsWithRequired } from "./FormInputSchema";
3
- import { validateApiDataFetchingConfiguration, validateForm, validateFormSlide } from "./FormSchema";
4
- export { formColumnInputsSchema, validateCalculatedFieldRules, validateFormColumnInputs, validateFormSlide, validateFormColumnInputsWithRequired, validateForm, validateApiDataFetchingConfiguration };
3
+ import { DatabaseFormSchema, FormSchema, validateApiDataFetchingConfiguration, validateForm, validateFormSlide } from "./FormSchema";
4
+ export { FormSchema, DatabaseFormSchema, formColumnInputsSchema, validateCalculatedFieldRules, validateFormColumnInputs, validateFormSlide, validateFormColumnInputsWithRequired, validateForm, validateApiDataFetchingConfiguration };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-t-forms-types",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "description": "Typings and interfaces for the ngx-t-forms library for dynamic forms.",
5
5
  "keywords": [
6
6
  "typings",