pict-section-form 1.0.121 → 1.0.123
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/debug/PICTSection-TabularManifests.json +3 -3
- package/debug/data/DefaultFormManifest.json +7 -7
- package/debug/data/MathExampleForm.json +351 -4
- package/example_applications/Build-Examples.sh +5 -0
- package/example_applications/Clean-Examples.sh +2 -1
- package/example_applications/Open-Examples.sh +2 -1
- package/example_applications/complex_table/Complex-Tabular-Application.js +3 -3
- package/example_applications/postcard_example/providers/PictProvider-PostKardInputExtension.js +38 -7
- package/example_applications/simple_distill/Simple-Form-Application.js +2 -2
- package/example_applications/simple_table/.quackage.json +9 -0
- package/package.json +2 -2
- package/source/providers/Pict-Provider-DynamicFormSolverBehaviors.js +33 -6
- package/source/providers/Pict-Provider-DynamicInputEvents.js +26 -4
- package/source/providers/Pict-Provider-InputExtension.js +49 -8
- package/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.js +72 -25
- package/source/providers/inputs/Pict-Provider-Input-DateTime.js +6 -4
- package/source/providers/inputs/Pict-Provider-Input-EntityBundleRequest.js +19 -13
- package/source/providers/inputs/Pict-Provider-Input-HTML.js +12 -8
- package/source/providers/inputs/Pict-Provider-Input-Link.js +6 -4
- package/source/providers/inputs/Pict-Provider-Input-Markdown.js +12 -8
- package/source/providers/inputs/Pict-Provider-Input-PreciseNumber.js +6 -4
- package/source/providers/inputs/Pict-Provider-Input-Select.js +25 -20
- package/source/providers/inputs/Pict-Provider-Input-TabGroupSelector.js +3 -2
- package/source/providers/inputs/Pict-Provider-Input-TabSectionSelector.js +3 -2
- package/source/providers/inputs/Pict-Provider-Input-TemplatedEntityLookup.js +12 -8
- package/source/services/ManifestFactory.js +1 -1
- package/source/views/Pict-View-DynamicForm.js +188 -17
- package/source/views/Pict-View-Form-Metacontroller.js +12 -2
- package/types/source/providers/Pict-Provider-DynamicFormSolverBehaviors.d.ts +10 -1
- package/types/source/providers/Pict-Provider-DynamicFormSolverBehaviors.d.ts.map +1 -1
- package/types/source/providers/Pict-Provider-DynamicInputEvents.d.ts +4 -2
- package/types/source/providers/Pict-Provider-DynamicInputEvents.d.ts.map +1 -1
- package/types/source/providers/Pict-Provider-InputExtension.d.ts +41 -8
- package/types/source/providers/Pict-Provider-InputExtension.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.d.ts +5 -5
- package/types/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-DateTime.d.ts +4 -2
- package/types/source/providers/inputs/Pict-Provider-Input-DateTime.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-EntityBundleRequest.d.ts +10 -5
- package/types/source/providers/inputs/Pict-Provider-Input-EntityBundleRequest.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-HTML.d.ts +6 -3
- package/types/source/providers/inputs/Pict-Provider-Input-HTML.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-Link.d.ts +4 -2
- package/types/source/providers/inputs/Pict-Provider-Input-Link.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-Markdown.d.ts +6 -3
- package/types/source/providers/inputs/Pict-Provider-Input-Markdown.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-PreciseNumber.d.ts +4 -2
- package/types/source/providers/inputs/Pict-Provider-Input-PreciseNumber.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-Select.d.ts +11 -6
- package/types/source/providers/inputs/Pict-Provider-Input-Select.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-TabGroupSelector.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-TabSectionSelector.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-TemplatedEntityLookup.d.ts +6 -3
- package/types/source/providers/inputs/Pict-Provider-Input-TemplatedEntityLookup.d.ts.map +1 -1
- package/types/source/views/Pict-View-DynamicForm.d.ts +39 -6
- package/types/source/views/Pict-View-DynamicForm.d.ts.map +1 -1
- package/types/source/views/Pict-View-Form-Metacontroller.d.ts +2 -1
- package/types/source/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
- package/utility/csvparser/ParseCSV-Command-BuildDistilling.js +4 -4
|
@@ -65,9 +65,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
65
65
|
* @param {any} pValue - The input value.
|
|
66
66
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
67
67
|
* @param {number} pRowIndex - The index of the row.
|
|
68
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
68
69
|
* @returns {any} - The result of the initialization.
|
|
69
70
|
*/
|
|
70
|
-
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
71
|
+
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
71
72
|
/**
|
|
72
73
|
* Handles the change event for the data in the select input.
|
|
73
74
|
*
|
|
@@ -75,9 +76,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
75
76
|
* @param {Object} pInput - The input object.
|
|
76
77
|
* @param {any} pValue - The new value of the input.
|
|
77
78
|
* @param {string} pHTMLSelector - The HTML selector of the input.
|
|
79
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
78
80
|
* @returns {any} - The result of the super.onDataChange method.
|
|
79
81
|
*/
|
|
80
|
-
onDataChange(pView: any, pInput: any, pValue: any, pHTMLSelector: string): any;
|
|
82
|
+
onDataChange(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): any;
|
|
81
83
|
/**
|
|
82
84
|
* Handles the change event for tabular data.
|
|
83
85
|
*
|
|
@@ -86,9 +88,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
86
88
|
* @param {any} pValue - The new value.
|
|
87
89
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
88
90
|
* @param {number} pRowIndex - The index of the row.
|
|
91
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
89
92
|
* @returns {any} - The result of the super method.
|
|
90
93
|
*/
|
|
91
|
-
onDataChangeTabular(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
94
|
+
onDataChangeTabular(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
92
95
|
/**
|
|
93
96
|
* Marshals data to the form for the given input.
|
|
94
97
|
*
|
|
@@ -98,9 +101,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
98
101
|
* @param {Object} pInput - The input object.
|
|
99
102
|
* @param {any} pValue - The value to be marshaled.
|
|
100
103
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
104
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
101
105
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
102
106
|
*/
|
|
103
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
107
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
104
108
|
/**
|
|
105
109
|
* Marshals data to a form in tabular format.
|
|
106
110
|
*
|
|
@@ -110,9 +114,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
110
114
|
* @param {any} pValue - The value parameter.
|
|
111
115
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
112
116
|
* @param {number} pRowIndex - The row index parameter.
|
|
117
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
113
118
|
* @returns {any} - The result of the data marshaling.
|
|
114
119
|
*/
|
|
115
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
120
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
116
121
|
}
|
|
117
122
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
118
123
|
//# sourceMappingURL=Pict-Provider-Input-EntityBundleRequest.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-EntityBundleRequest.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-EntityBundleRequest.js"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,4DAA4D;IAC5D,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,aAAa,EAAE,MAAM,GAAG,CAAA;KAAE,CAC9C;IAKX,oGA0EC;IAED,+GAgEC;IAED;;;;;;;;;OASG;IACH,sDALW,GAAG,iBACH,MAAM,GAEL,OAAO,CAAC,GAAG,CAAC,CA8EvB;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-EntityBundleRequest.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-EntityBundleRequest.js"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,4DAA4D;IAC5D,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,aAAa,EAAE,MAAM,GAAG,CAAA;KAAE,CAC9C;IAKX,oGA0EC;IAED,+GAgEC;IAED;;;;;;;;;OASG;IACH,sDALW,GAAG,iBACH,MAAM,GAEL,OAAO,CAAC,GAAG,CAAC,CA8EvB;IA0BD;;;;;;;;;;;OAWG;IACH,uEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAKf;IAED;;;;;;;;;OASG;IACH,8CALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;IAED;;;;;;;;;;OAUG;IACH,qDANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAKf;CACD"}
|
|
@@ -37,9 +37,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
37
37
|
* @param {any} pValue - The input value.
|
|
38
38
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
39
39
|
* @param {number} pRowIndex - The index of the row.
|
|
40
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
40
41
|
* @returns {any} - The result of the initialization.
|
|
41
42
|
*/
|
|
42
|
-
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
43
|
+
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
43
44
|
/**
|
|
44
45
|
* Marshals data to the form for the given input.
|
|
45
46
|
*
|
|
@@ -49,9 +50,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
49
50
|
* @param {Object} pInput - The input object.
|
|
50
51
|
* @param {any} pValue - The value to be marshaled.
|
|
51
52
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
53
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
52
54
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
53
55
|
*/
|
|
54
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
56
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
55
57
|
/**
|
|
56
58
|
* Marshals data to a form in tabular format.
|
|
57
59
|
*
|
|
@@ -61,9 +63,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
61
63
|
* @param {any} pValue - The value parameter.
|
|
62
64
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
63
65
|
* @param {number} pRowIndex - The row index parameter.
|
|
66
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
64
67
|
* @returns {any} - The result of the data marshaling.
|
|
65
68
|
*/
|
|
66
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
69
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
67
70
|
}
|
|
68
71
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
69
72
|
//# sourceMappingURL=Pict-Provider-Input-HTML.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-HTML.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-HTML.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED,+CAiBC;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-HTML.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-HTML.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED,+CAiBC;IAwBD;;;;;;;;;;;OAWG;IACH,uEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAUf;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAUnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAUf;CACD"}
|
|
@@ -25,9 +25,10 @@ declare class LinkInputHandler extends libPictSectionInputExtension {
|
|
|
25
25
|
* @param {Object} pInput - The input object.
|
|
26
26
|
* @param {any} pValue - The value to be marshaled.
|
|
27
27
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
28
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
28
29
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
29
30
|
*/
|
|
30
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
31
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
31
32
|
/**
|
|
32
33
|
* Marshals data to a form in tabular format.
|
|
33
34
|
*
|
|
@@ -37,9 +38,10 @@ declare class LinkInputHandler extends libPictSectionInputExtension {
|
|
|
37
38
|
* @param {any} pValue - The value parameter.
|
|
38
39
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
39
40
|
* @param {number} pRowIndex - The row index parameter.
|
|
41
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
40
42
|
* @returns {any} - The result of the data marshaling.
|
|
41
43
|
*/
|
|
42
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
44
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
43
45
|
}
|
|
44
46
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
45
47
|
//# sourceMappingURL=Pict-Provider-Input-Link.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-Link.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Link.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,mEAAmE;IACnE,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,IAAI,EAAE,GAAG,CAAA;KAAE,GAAG;QAAE,UAAU,EAAE,GAAG,CAAA;KAAE,CACrD;IAKX
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-Link.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Link.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,mEAAmE;IACnE,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,IAAI,EAAE,GAAG,CAAA;KAAE,GAAG;QAAE,UAAU,EAAE,GAAG,CAAA;KAAE,CACrD;IAKX;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAMnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;CACD"}
|
|
@@ -37,9 +37,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
37
37
|
* @param {any} pValue - The input value.
|
|
38
38
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
39
39
|
* @param {number} pRowIndex - The index of the row.
|
|
40
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
40
41
|
* @returns {any} - The result of the initialization.
|
|
41
42
|
*/
|
|
42
|
-
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
43
|
+
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
43
44
|
/**
|
|
44
45
|
* Marshals data to the form for the given input.
|
|
45
46
|
*
|
|
@@ -49,9 +50,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
49
50
|
* @param {Object} pInput - The input object.
|
|
50
51
|
* @param {any} pValue - The value to be marshaled.
|
|
51
52
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
53
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
52
54
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
53
55
|
*/
|
|
54
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
56
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
55
57
|
/**
|
|
56
58
|
* Marshals data to a form in tabular format.
|
|
57
59
|
*
|
|
@@ -61,9 +63,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
61
63
|
* @param {any} pValue - The value parameter.
|
|
62
64
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
63
65
|
* @param {number} pRowIndex - The row index parameter.
|
|
66
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
64
67
|
* @returns {any} - The result of the data marshaling.
|
|
65
68
|
*/
|
|
66
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
69
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
67
70
|
}
|
|
68
71
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
69
72
|
//# sourceMappingURL=Pict-Provider-Input-Markdown.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-Markdown.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Markdown.js"],"names":[],"mappings":";AAIA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED,+CAqBC;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-Markdown.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Markdown.js"],"names":[],"mappings":";AAIA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED,+CAqBC;IAwBD;;;;;;;;;;;OAWG;IACH,uEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAUf;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAUnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAUf;CACD"}
|
|
@@ -26,9 +26,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
26
26
|
* @param {Object} pInput - The input object.
|
|
27
27
|
* @param {any} pValue - The value to be marshaled.
|
|
28
28
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
29
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
29
30
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
30
31
|
*/
|
|
31
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
32
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
32
33
|
/**
|
|
33
34
|
* Marshals data to a form in tabular format.
|
|
34
35
|
*
|
|
@@ -38,9 +39,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
38
39
|
* @param {any} pValue - The value parameter.
|
|
39
40
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
40
41
|
* @param {number} pRowIndex - The row index parameter.
|
|
42
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
41
43
|
* @returns {any} - The result of the data marshaling.
|
|
42
44
|
*/
|
|
43
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
45
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
44
46
|
}
|
|
45
47
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
46
48
|
//# sourceMappingURL=Pict-Provider-Input-PreciseNumber.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-PreciseNumber.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-PreciseNumber.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,mEAAmE;IACnE,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,IAAI,EAAE,GAAG,CAAA;KAAE,GAAG;QAAE,UAAU,EAAE,GAAG,CAAA;KAAE,CACrD;IAKX,0CAoCC;IAED
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-PreciseNumber.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-PreciseNumber.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,mEAAmE;IACnE,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,IAAI,EAAE,GAAG,CAAA;KAAE,GAAG;QAAE,UAAU,EAAE,GAAG,CAAA;KAAE,CACrD;IAKX,0CAoCC;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAMnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAOf;CACD"}
|
|
@@ -55,7 +55,7 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
55
55
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
56
56
|
* @param {number} pRowIndex
|
|
57
57
|
*/
|
|
58
|
-
refreshSelectListTabular(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number):
|
|
58
|
+
refreshSelectListTabular(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): void;
|
|
59
59
|
/**
|
|
60
60
|
* Initializes a tabular input element.
|
|
61
61
|
*
|
|
@@ -65,9 +65,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
65
65
|
* @param {any} pValue - The input value.
|
|
66
66
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
67
67
|
* @param {number} pRowIndex - The index of the row.
|
|
68
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
68
69
|
* @returns {any} - The result of the initialization.
|
|
69
70
|
*/
|
|
70
|
-
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
71
|
+
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
71
72
|
/**
|
|
72
73
|
* Handles the change event for the data in the select input.
|
|
73
74
|
*
|
|
@@ -75,9 +76,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
75
76
|
* @param {Object} pInput - The input object.
|
|
76
77
|
* @param {any} pValue - The new value of the input.
|
|
77
78
|
* @param {string} pHTMLSelector - The HTML selector of the input.
|
|
79
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
78
80
|
* @returns {any} - The result of the super.onDataChange method.
|
|
79
81
|
*/
|
|
80
|
-
onDataChange(pView: any, pInput: any, pValue: any, pHTMLSelector: string): any;
|
|
82
|
+
onDataChange(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): any;
|
|
81
83
|
/**
|
|
82
84
|
* Handles the change event for tabular data.
|
|
83
85
|
*
|
|
@@ -86,9 +88,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
86
88
|
* @param {any} pValue - The new value.
|
|
87
89
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
88
90
|
* @param {number} pRowIndex - The index of the row.
|
|
91
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
89
92
|
* @returns {any} - The result of the super method.
|
|
90
93
|
*/
|
|
91
|
-
onDataChangeTabular(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
94
|
+
onDataChangeTabular(pView: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
92
95
|
/**
|
|
93
96
|
* Marshals data to the form for the given input.
|
|
94
97
|
*
|
|
@@ -98,9 +101,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
98
101
|
* @param {Object} pInput - The input object.
|
|
99
102
|
* @param {any} pValue - The value to be marshaled.
|
|
100
103
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
104
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
101
105
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
102
106
|
*/
|
|
103
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
107
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
104
108
|
/**
|
|
105
109
|
* Marshals data to a form in tabular format.
|
|
106
110
|
*
|
|
@@ -110,9 +114,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
110
114
|
* @param {any} pValue - The value parameter.
|
|
111
115
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
112
116
|
* @param {number} pRowIndex - The row index parameter.
|
|
117
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
113
118
|
* @returns {any} - The result of the data marshaling.
|
|
114
119
|
*/
|
|
115
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
120
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
116
121
|
/**
|
|
117
122
|
* Handles the data request event for a select input in the PictProviderInputSelect class.
|
|
118
123
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-Select.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Select.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,mCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,sCAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,yCAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,2EAHW,GAAG,iBACH,MAAM,WAoChB;IAED;;;;;;;;;OASG;IACH,kFAJW,GAAG,iBACH,MAAM,aACN,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-Select.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-Select.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAKX;;;;;OAKG;IACH,mCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,sCAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,yCAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,2EAHW,GAAG,iBACH,MAAM,WAoChB;IAED;;;;;;;;;OASG;IACH,kFAJW,GAAG,iBACH,MAAM,aACN,MAAM,QAqChB;IAoBD;;;;;;;;;;;OAWG;IACH,uEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;IAED;;;;;;;;;OASG;IACH,8CALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,GAAG,CAKf;IAED;;;;;;;;;;OAUG;IACH,qDANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAKf;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAmCnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAmCf;IAED;;;;;;;;OAQG;IACH,+CAJW,GAAG,iBACH,MAAM,GACJ,GAAG,CAQf;IAED;;;;;;;;;OASG;IACH,sDALW,GAAG,iBACH,MAAM,aACN,MAAM,GACJ,GAAG,CAQf;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-TabGroupSelector.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TabGroupSelector.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAiBC;IAbA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAIV,qBAAqB;IACrB,cADW,MAAM,CAC0B;IAC3C,4BAAuD;IACvD,mBAAgH;IAKjH,2DAMC;IAED,iEAGC;IAED,sDAGC;IAED,6EAyCC;IAED;;;;OAIG;IACH,wCAHW,MAAM,GACJ,MAAM,CAKlB;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-TabGroupSelector.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TabGroupSelector.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAiBC;IAbA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAIV,qBAAqB;IACrB,cADW,MAAM,CAC0B;IAC3C,4BAAuD;IACvD,mBAAgH;IAKjH,2DAMC;IAED,iEAGC;IAED,sDAGC;IAED,6EAyCC;IAED;;;;OAIG;IACH,wCAHW,MAAM,GACJ,MAAM,CAKlB;CA2CD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-TabSectionSelector.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TabSectionSelector.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAiBC;IAbA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAIV,qBAAqB;IACrB,cADW,MAAM,CAC4B;IAC7C,4BAAyD;IACzD,mBAAoH;IAKrH,2DAKC;IAED,+CAGC;IAED,0DAGC;IAED,qDAIC;IAED,iFA+CC;IAED;;;;OAIG;IACH,wCAHW,MAAM,GACJ,MAAM,CAKlB;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-TabSectionSelector.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TabSectionSelector.js"],"names":[],"mappings":";AAEA;;;;;;GAMG;AACH;IAEC,2DAiBC;IAbA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IAIV,qBAAqB;IACrB,cADW,MAAM,CAC4B;IAC7C,4BAAyD;IACzD,mBAAoH;IAKrH,2DAKC;IAED,+CAGC;IAED,0DAGC;IAED,qDAIC;IAED,iFA+CC;IAED;;;;OAIG;IACH,wCAHW,MAAM,GACJ,MAAM,CAKlB;CA2CD"}
|
|
@@ -45,9 +45,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
45
45
|
* @param {any} pValue - The input value.
|
|
46
46
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
47
47
|
* @param {number} pRowIndex - The index of the row.
|
|
48
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
48
49
|
* @returns {any} - The result of the initialization.
|
|
49
50
|
*/
|
|
50
|
-
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
51
|
+
onInputInitializeTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
51
52
|
/**
|
|
52
53
|
* Marshals data to the form for the given input.
|
|
53
54
|
*
|
|
@@ -57,9 +58,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
57
58
|
* @param {Object} pInput - The input object.
|
|
58
59
|
* @param {any} pValue - The value to be marshaled.
|
|
59
60
|
* @param {string} pHTMLSelector - The HTML selector.
|
|
61
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
60
62
|
* @returns {boolean} - Returns true if the value is successfully marshaled to the form, otherwise false.
|
|
61
63
|
*/
|
|
62
|
-
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string): boolean;
|
|
64
|
+
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: string, pTransactionGUID: string): boolean;
|
|
63
65
|
/**
|
|
64
66
|
* Marshals data to a form in tabular format.
|
|
65
67
|
*
|
|
@@ -69,9 +71,10 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
69
71
|
* @param {any} pValue - The value parameter.
|
|
70
72
|
* @param {string} pHTMLSelector - The HTML selector parameter.
|
|
71
73
|
* @param {number} pRowIndex - The row index parameter.
|
|
74
|
+
* @param {string} pTransactionGUID - The transaction GUID for the event dispatch.
|
|
72
75
|
* @returns {any} - The result of the data marshaling.
|
|
73
76
|
*/
|
|
74
|
-
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number): any;
|
|
77
|
+
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: string, pRowIndex: number, pTransactionGUID: string): any;
|
|
75
78
|
}
|
|
76
79
|
import libPictSectionInputExtension = require("../Pict-Provider-InputExtension.js");
|
|
77
80
|
//# sourceMappingURL=Pict-Provider-Input-TemplatedEntityLookup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-TemplatedEntityLookup.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TemplatedEntityLookup.js"],"names":[],"mappings":";AAIA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,4DAA4D;IAC5D,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,aAAa,EAAE,MAAM,GAAG,CAAA;KAAE,CAC9C;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;OAKG;IACH,iEAFW,GAAG,QAoEb;
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-TemplatedEntityLookup.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-TemplatedEntityLookup.js"],"names":[],"mappings":";AAIA;;;;;;GAMG;AACH;IAEC,2DAUC;IANA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IACT,4DAA4D;IAC5D,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,aAAa,EAAE,MAAM,GAAG,CAAA;KAAE,CAC9C;IAKX;;;;;OAKG;IACH,sCAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;OAMG;IACH,8CAJW,MAAM,aACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;OAKG;IACH,iEAFW,GAAG,QAoEb;IAoBD;;;;;;;;;;;OAWG;IACH,uEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;IAED;;;;;;;;;;;OAWG;IACH,6EALW,GAAG,iBACH,MAAM,oBACN,MAAM,GACJ,OAAO,CAMnB;IAED;;;;;;;;;;;OAWG;IACH,yEANW,GAAG,iBACH,MAAM,aACN,MAAM,oBACN,MAAM,GACJ,GAAG,CAMf;CACD"}
|
|
@@ -47,6 +47,8 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
47
47
|
/**
|
|
48
48
|
* Sets the data in a specific form input based on the provided input object
|
|
49
49
|
*
|
|
50
|
+
* FIXME: does this need to have a transaction GUID passed in?
|
|
51
|
+
*
|
|
50
52
|
* @param {object} pInput - The input object.
|
|
51
53
|
* @param {any} pValue - The value to set.
|
|
52
54
|
* @returns {boolean} Returns true if the data was set successfully, false otherwise.
|
|
@@ -55,6 +57,8 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
55
57
|
/**
|
|
56
58
|
* Sets the data in a specific tabular form input based on the provided hash, group and row.
|
|
57
59
|
*
|
|
60
|
+
* FIXME: does this need to have a transaction GUID passed in?
|
|
61
|
+
*
|
|
58
62
|
* @param {number} pGroupIndex - The index of the group.
|
|
59
63
|
* @param {string} pInputHash - The hash of the input.
|
|
60
64
|
* @param {number} pRowIndex - The index of the row.
|
|
@@ -227,21 +231,24 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
227
231
|
*
|
|
228
232
|
* @param {String} pInputHash - The input hash object.
|
|
229
233
|
* @param {string} pEvent - The input event string.
|
|
234
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
230
235
|
* @returns {any} - The result of the input event handling.
|
|
231
236
|
*/
|
|
232
|
-
inputEvent(pInputHash: string, pEvent: string): any;
|
|
237
|
+
inputEvent(pInputHash: string, pEvent: string, pTransactionGUID?: string): any;
|
|
233
238
|
/**
|
|
234
239
|
* @deprecated
|
|
235
240
|
* @param {string} pEvent - The input event string.
|
|
236
241
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
242
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
237
243
|
*/
|
|
238
|
-
globalInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
244
|
+
globalInputEvent(pEvent: string, pCompletedHashes: any, pTransactionGUID?: string): void;
|
|
239
245
|
/**
|
|
240
246
|
*
|
|
241
247
|
* @param {string} pEvent - The input event string.
|
|
242
248
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
249
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
243
250
|
*/
|
|
244
|
-
manifestInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
251
|
+
manifestInputEvent(pEvent: string, pCompletedHashes: any, pTransactionGUID?: string): void;
|
|
245
252
|
/**
|
|
246
253
|
* Triggers a DataRequest event for an Input Provider
|
|
247
254
|
*
|
|
@@ -258,22 +265,48 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
258
265
|
* @param {number} pInputIndex - The index of the input.
|
|
259
266
|
* @param {number} pRowIndex - The index of the row.
|
|
260
267
|
* @param {string} pEvent - The input event object.
|
|
268
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
261
269
|
* @returns {any} - The result of the input event handling.
|
|
262
270
|
*/
|
|
263
|
-
inputEventTabular(pGroupIndex: number, pInputIndex: number, pRowIndex: number, pEvent: string): any;
|
|
271
|
+
inputEventTabular(pGroupIndex: number, pInputIndex: number, pRowIndex: number, pEvent: string, pTransactionGUID?: string): any;
|
|
272
|
+
/**
|
|
273
|
+
* @param {string} pTransactionGUID - The transaction GUID.
|
|
274
|
+
* @param {string} pAsyncOperationHash - The hash of the async operation.
|
|
275
|
+
*/
|
|
276
|
+
registerEventTransactionAsyncOperation(pTransactionGUID: string, pAsyncOperationHash: string): void;
|
|
277
|
+
/**
|
|
278
|
+
* @param {string} pTransactionGUID - The transaction GUID.
|
|
279
|
+
* @param {string} pAsyncOperationHash - The hash of the async operation.
|
|
280
|
+
*
|
|
281
|
+
* @return {boolean} - Returns true if the async operation was found and marked as complete, otherwise false.
|
|
282
|
+
*/
|
|
283
|
+
eventTransactionAsyncOperationComplete(pTransactionGUID: string, pAsyncOperationHash: string): boolean;
|
|
284
|
+
/**
|
|
285
|
+
* @param {string} pTransactionGUID - The transaction GUID.
|
|
286
|
+
*
|
|
287
|
+
* @return {boolean} - Returns true if the transaction was found and able to be finalized, otherwise false.
|
|
288
|
+
*/
|
|
289
|
+
finalizeTransaction(pTransactionGUID: string): boolean;
|
|
290
|
+
/**
|
|
291
|
+
* @param {string} pTransactionGUID - The transaction GUID.
|
|
292
|
+
* @param {Function} fCallback - The callback to call when the transaction is complete.
|
|
293
|
+
*/
|
|
294
|
+
registerOnTransactionCompleteCallback(pTransactionGUID: string, fCallback: Function): void;
|
|
264
295
|
/**
|
|
265
296
|
*
|
|
266
297
|
* @param {number} pGroupIndex - The index of the group.
|
|
267
298
|
* @param {string} pEvent - The input event string.
|
|
268
299
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
300
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
269
301
|
*/
|
|
270
|
-
groupInputEvent(pGroupIndex: number, pEvent: string, pCompletedHashes: any): void;
|
|
302
|
+
groupInputEvent(pGroupIndex: number, pEvent: string, pCompletedHashes: any, pTransactionGUID?: string): void;
|
|
271
303
|
/**
|
|
272
304
|
*
|
|
273
305
|
* @param {string} pEvent - The input event string.
|
|
274
306
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
307
|
+
* @param {string} [pTransactionGUID] - The transaction GUID.
|
|
275
308
|
*/
|
|
276
|
-
sectionInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
309
|
+
sectionInputEvent(pEvent: string, pCompletedHashes: any, pTransactionGUID?: string): void;
|
|
277
310
|
/**
|
|
278
311
|
* Get the input object for a specific tabular record group and index.
|
|
279
312
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":"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"}
|
|
@@ -157,8 +157,9 @@ declare class PictFormMetacontroller extends libPictViewClass {
|
|
|
157
157
|
/**
|
|
158
158
|
* Trigger an event on all inputs on all views.
|
|
159
159
|
* @param {string} pEvent - The event to trigger
|
|
160
|
+
* @param {string} [pTransactionGUID] - (optional) The transaction GUID to use for the event.
|
|
160
161
|
*/
|
|
161
|
-
triggerGlobalInputEvent(pEvent: string): void;
|
|
162
|
+
triggerGlobalInputEvent(pEvent: string, pTransactionGUID?: string): void;
|
|
162
163
|
/**
|
|
163
164
|
* Returns whether the object is a Pict Metacontroller.
|
|
164
165
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AASA;;GAEG;AAEH;;;;;;GAMG;AACH;IAEC,2DAaC;IALA,yBAA2B;IAE3B,wBAAsF;IAEtF,cAAkC;IAQnC,wCAGC;IARD,kCAGC;IAOD;;;;OAIG;IACH,qBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAaf;IAED,yCAYC;IAED;;;;;OAKG;IACH,kCAHW,aAAa,GACX,IAAI,CAsBhB;IAwBD;;;;OAIG;IACH,WAFa,GAAG,CAMf;IAED,gDAGC;IAED,+CAGC;IAED;;;;OAIG;IACH,2DAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAW9B;IAED;;;OAGG;IACH,0BAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,sBACnB,MAAM,QAiChB;IAED;;;;;;;;;OASG;IACH,kCALW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,UACnB,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAsC9B;IAED;;;;OAIG;IACH,uCAJW,KAAK,CAAC,MAAM,CAAC,sBACb,MAAM,UACN,MAAM,QAahB;IAED;;;OAGG;IACH,6CAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,sBACnB,MAAM,SAehB;IAED;;;;;;;;OAQG;IACH,wDAHW,YAAY,SAoHtB;IAED;;;;;;;OAOG;IACH,4CAHW,MAAM,GACJ,IAAI,CAShB;IAED;;;;OAIG;IACH,6BAFa,IAAI,CAQhB;IAED;;;;;;;OAOG;IACH,+DAFW,YAAY,QAatB;IAED;;;;;OAKG;IACH,8EAFW,YAAY,QAmBtB;IAED;;;;;;OAMG;IACH,oEAHW,YAAY,GACV,IAAI,CAkDhB;IAED;;;;;;;OAOG;IACH,uEAJW,YAAY,GAEX,IAAI,CAsFf;IAED;;;;;OAKG;IACH,qCAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CA2C1B;IAED,+CAeC;IAED;;;;;;;OAOG;IACH,kFAJW,MAAM,GAEJ,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAoLtC;IA5JC,gCAA0D;IAC1D,yBAAiD;IA6JnD
|
|
1
|
+
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AASA;;GAEG;AAEH;;;;;;GAMG;AACH;IAEC,2DAaC;IALA,yBAA2B;IAE3B,wBAAsF;IAEtF,cAAkC;IAQnC,wCAGC;IARD,kCAGC;IAOD;;;;OAIG;IACH,qBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAaf;IAED,yCAYC;IAED;;;;;OAKG;IACH,kCAHW,aAAa,GACX,IAAI,CAsBhB;IAwBD;;;;OAIG;IACH,WAFa,GAAG,CAMf;IAED,gDAGC;IAED,+CAGC;IAED;;;;OAIG;IACH,2DAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAW9B;IAED;;;OAGG;IACH,0BAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,sBACnB,MAAM,QAiChB;IAED;;;;;;;;;OASG;IACH,kCALW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,UACnB,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAsC9B;IAED;;;;OAIG;IACH,uCAJW,KAAK,CAAC,MAAM,CAAC,sBACb,MAAM,UACN,MAAM,QAahB;IAED;;;OAGG;IACH,6CAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,sBACnB,MAAM,SAehB;IAED;;;;;;;;OAQG;IACH,wDAHW,YAAY,SAoHtB;IAED;;;;;;;OAOG;IACH,4CAHW,MAAM,GACJ,IAAI,CAShB;IAED;;;;OAIG;IACH,6BAFa,IAAI,CAQhB;IAED;;;;;;;OAOG;IACH,+DAFW,YAAY,QAatB;IAED;;;;;OAKG;IACH,8EAFW,YAAY,QAmBtB;IAED;;;;;;OAMG;IACH,oEAHW,YAAY,GACV,IAAI,CAkDhB;IAED;;;;;;;OAOG;IACH,uEAJW,YAAY,GAEX,IAAI,CAsFf;IAED;;;;;OAKG;IACH,qCAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CA2C1B;IAED,+CAeC;IAED;;;;;;;OAOG;IACH,kFAJW,MAAM,GAEJ,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAoLtC;IA5JC,gCAA0D;IAC1D,yBAAiD;IA6JnD;;;;OAIG;IACH,gCAHW,MAAM,qBACN,MAAM,QA0BhB;IAED;;;;OAIG;IACH,4BAFa,OAAO,CAKnB;CACD;;;;;qCAGU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;oBAh7BjB,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,KAAK,MAAM"}
|
|
@@ -198,11 +198,11 @@ class ImportExtraDataCSVCommand extends libPictCommandLineUtility.ServiceCommand
|
|
|
198
198
|
// Now decorate the descriptor with the data
|
|
199
199
|
pFileToLoad.IntersectionOutcome = tmpIntersectionOutcome;
|
|
200
200
|
// Name the trigger group with the file
|
|
201
|
-
let
|
|
201
|
+
let tmpGeneratedTriggerGroupHash = `AutoTriggerGroup-${pFileToLoad.FileName}`;
|
|
202
202
|
let tmpGeneratedTriggerGroup = (
|
|
203
203
|
{
|
|
204
204
|
// This is the trigger group name used to bind all the inputs together
|
|
205
|
-
|
|
205
|
+
TriggerGroupHash: tmpGeneratedTriggerGroupHash,
|
|
206
206
|
// This flags the input to update other inputs when the value changes
|
|
207
207
|
TriggerAllInputs: true
|
|
208
208
|
});
|
|
@@ -224,7 +224,7 @@ class ImportExtraDataCSVCommand extends libPictCommandLineUtility.ServiceCommand
|
|
|
224
224
|
*/
|
|
225
225
|
let tmpFilterStanzaPrototype = (
|
|
226
226
|
{
|
|
227
|
-
"Filter": `${
|
|
227
|
+
"Filter": `${tmpGeneratedTriggerGroupHash} List Distilling Filter`,
|
|
228
228
|
"FilterType": "CrossMap",
|
|
229
229
|
"JoinListAddressGlobal": true,
|
|
230
230
|
"IgnoreEmpty": true
|
|
@@ -474,4 +474,4 @@ class ImportExtraDataCSVCommand extends libPictCommandLineUtility.ServiceCommand
|
|
|
474
474
|
};
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
-
module.exports = ImportExtraDataCSVCommand;
|
|
477
|
+
module.exports = ImportExtraDataCSVCommand;
|