pict-section-form 1.0.118 → 1.0.119
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/example_applications/complex_table/Complex-Tabular-Application.js +18 -1
- package/package.json +2 -2
- package/source/providers/Pict-Provider-DynamicInputEvents.js +1 -9
- package/source/providers/Pict-Provider-Informary.js +2 -1
- package/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.js +25 -18
- package/source/views/Pict-View-DynamicForm.js +95 -5
- package/source/views/Pict-View-Form-Metacontroller.js +2 -1
- package/types/source/providers/Pict-Provider-DynamicFormSolverBehaviors.d.ts +4 -0
- package/types/source/providers/Pict-Provider-DynamicFormSolverBehaviors.d.ts.map +1 -1
- package/types/source/providers/Pict-Provider-DynamicInputEvents.d.ts.map +1 -1
- package/types/source/providers/Pict-Provider-Informary.d.ts.map +1 -1
- package/types/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.d.ts +2 -2
- package/types/source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.d.ts.map +1 -1
- package/types/source/views/Pict-View-DynamicForm.d.ts +29 -2
- package/types/source/views/Pict-View-DynamicForm.d.ts.map +1 -1
- package/types/source/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
|
@@ -609,7 +609,7 @@ module.exports.default_configuration.pict_configuration = {
|
|
|
609
609
|
Hash: "Name",
|
|
610
610
|
DataType: "String",
|
|
611
611
|
Default: "(unnamed fruit)",
|
|
612
|
-
PictForm: { Section: "FruitGrid", Group: "FruitGrid" },
|
|
612
|
+
PictForm: { Row: "1", Section: "FruitGrid", Group: "FruitGrid" },
|
|
613
613
|
},
|
|
614
614
|
health_info: {
|
|
615
615
|
Name: "Health Info.",
|
|
@@ -686,6 +686,23 @@ module.exports.default_configuration.pict_configuration = {
|
|
|
686
686
|
DataType: "Number",
|
|
687
687
|
PictForm: { Section: "FruitGrid", Group: "FruitGrid", "InputType": "PreciseNumberReadOnly", "DecimalPrecision": 4 },
|
|
688
688
|
},
|
|
689
|
+
"Author.Name": {
|
|
690
|
+
Name: "Author Name",
|
|
691
|
+
Hash: "AuthorNameTabular",
|
|
692
|
+
DataType: "String",
|
|
693
|
+
PictForm: {
|
|
694
|
+
Row: "1",
|
|
695
|
+
Section: "FruitGrid", Group: "FruitGrid",
|
|
696
|
+
// This performs an entity bundle request whenever a value is selected.
|
|
697
|
+
Providers: ["Pict-Input-AutofillTriggerGroup"],
|
|
698
|
+
AutofillTriggerGroup:
|
|
699
|
+
{
|
|
700
|
+
TriggerGroupName: "BookTriggerGroup",
|
|
701
|
+
TriggerAddress: "AppData.CurrentAuthor.Name",
|
|
702
|
+
MarshalEmptyValues: true
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
},
|
|
689
706
|
},
|
|
690
707
|
},
|
|
691
708
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pict-section-form",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.119",
|
|
4
4
|
"description": "Pict dynamic form sections",
|
|
5
5
|
"main": "source/Pict-Section-Form.js",
|
|
6
6
|
"directories": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"browser-env": "^3.3.0",
|
|
32
32
|
"eslint": "^9.36.0",
|
|
33
33
|
"jquery": "^3.7.1",
|
|
34
|
-
"pict": "^1.0.
|
|
34
|
+
"pict": "^1.0.306",
|
|
35
35
|
"pict-application": "^1.0.29",
|
|
36
36
|
"pict-service-commandlineutility": "^1.0.15",
|
|
37
37
|
"quackage": "^1.0.42",
|
|
@@ -175,7 +175,7 @@ class PictDynamicInputEvents extends libPictProvider
|
|
|
175
175
|
inputEventTabular(pView, pGroupIndex, pInputIndex, pRowIndex, pEvent)
|
|
176
176
|
{
|
|
177
177
|
let tmpInput = pView.getTabularRecordInput(pGroupIndex, pInputIndex);
|
|
178
|
-
if (pGroupIndex && pInputIndex && pRowIndex && tmpInput)
|
|
178
|
+
if (pGroupIndex != null && pInputIndex != null && pRowIndex != null && tmpInput)
|
|
179
179
|
{
|
|
180
180
|
try
|
|
181
181
|
{
|
|
@@ -204,14 +204,6 @@ class PictDynamicInputEvents extends libPictProvider
|
|
|
204
204
|
pView.log.error(`Dynamic form [${pView.Hash}]::[${pView.UUID}] gross error marshaling specific (${pGroupIndex} | ${pInputIndex} | ${pRowIndex}) tabular data for group ${pGroupIndex} row ${pRowIndex} from view in calling inputEvent ${pEvent}: ${pError}`);
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
|
-
else
|
|
208
|
-
{
|
|
209
|
-
// pView is what is called whenever a hash is changed. We could marshal from view, solve and remarshal to view.
|
|
210
|
-
pView.marshalFromView();
|
|
211
|
-
}
|
|
212
|
-
// Run any dynamic input providers for the input hash.
|
|
213
|
-
pView.pict.PictApplication.solve();
|
|
214
|
-
pView.marshalToView();
|
|
215
207
|
}
|
|
216
208
|
}
|
|
217
209
|
|
|
@@ -300,7 +300,8 @@ class PictDynamicFormsInformary extends libPictProvider
|
|
|
300
300
|
this.log.error(`Informary failed to marshal data to form because the input view is missing.`);
|
|
301
301
|
return false;
|
|
302
302
|
}
|
|
303
|
-
return this.pict.ContentAssignment.assignContent(`${pInput.Macro.HTMLSelectorTabular}[data-i-index="${pRowIndex}"]`,
|
|
303
|
+
return this.pict.ContentAssignment.assignContent(`${pInput.Macro.HTMLSelectorTabular}[data-i-index="${pRowIndex}"]`,
|
|
304
|
+
tmpInputView.getTabularValueByHash(pInput.PictForm.GroupIndex, pInput.PictForm.InputIndex, pRowIndex));
|
|
304
305
|
}
|
|
305
306
|
|
|
306
307
|
/**
|
|
@@ -53,23 +53,23 @@ class CustomInputHandler extends libPictSectionInputExtension
|
|
|
53
53
|
return tmpAutoFillTriggerGroups;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
autoFillFromAddressList(pView, pInput,
|
|
56
|
+
autoFillFromAddressList(pView, pInput, pTriggerGroupInfo, pHTMLSelector)
|
|
57
57
|
{
|
|
58
58
|
// First sanity check the triggergroupinfo
|
|
59
|
-
if (!('TriggerGroupName' in
|
|
59
|
+
if (!('TriggerGroupName' in pTriggerGroupInfo) || (typeof(pTriggerGroupInfo.TriggerGroupName) != 'string'))
|
|
60
60
|
{
|
|
61
61
|
this.log.warn(`AutofillTriggerGroup failed to autofill because a TriggerGroupName string is not present.`);
|
|
62
62
|
return false;
|
|
63
63
|
}
|
|
64
|
-
if (!('TriggerAddress' in
|
|
64
|
+
if (!('TriggerAddress' in pTriggerGroupInfo) || (typeof(pTriggerGroupInfo.TriggerAddress) != 'string'))
|
|
65
65
|
{
|
|
66
66
|
this.log.warn(`AutofillTriggerGroup failed to autofill because a TriggerAddress string is not present.`);
|
|
67
67
|
return false;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
let tmpValue = this.pict.manifest.getValueByHash(this.pict,
|
|
70
|
+
let tmpValue = this.pict.manifest.getValueByHash(this.pict, pTriggerGroupInfo.TriggerAddress);
|
|
71
71
|
|
|
72
|
-
if ((!tmpValue) && !
|
|
72
|
+
if ((!tmpValue) && !pTriggerGroupInfo.MarshalEmptyValues)
|
|
73
73
|
{
|
|
74
74
|
return false;
|
|
75
75
|
}
|
|
@@ -79,29 +79,29 @@ class CustomInputHandler extends libPictSectionInputExtension
|
|
|
79
79
|
return true;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
autoFillFromAddressListTabular(pView, pInput,
|
|
82
|
+
autoFillFromAddressListTabular(pView, pInput, pTriggerGroupInfo, pHTMLSelector, pRowIndex)
|
|
83
83
|
{
|
|
84
84
|
// First sanity check the triggergroupinfo
|
|
85
|
-
if (!('TriggerGroupName' in
|
|
85
|
+
if (!('TriggerGroupName' in pTriggerGroupInfo) || (typeof(pTriggerGroupInfo.TriggerGroupName) != 'string'))
|
|
86
86
|
{
|
|
87
87
|
this.log.warn(`AutofillTriggerGroup failed to autofill because a TriggerGroupName string is not present.`);
|
|
88
88
|
return false;
|
|
89
89
|
}
|
|
90
|
-
if (!('TriggerAddress' in
|
|
90
|
+
if (!('TriggerAddress' in pTriggerGroupInfo) || (typeof(pTriggerGroupInfo.TriggerAddress) != 'string'))
|
|
91
91
|
{
|
|
92
92
|
this.log.warn(`AutofillTriggerGroup failed to autofill because a TriggerAddress string is not present.`);
|
|
93
93
|
return false;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
let tmpValue = this.pict.manifest.getValueByHash(this.pict,
|
|
96
|
+
let tmpValue = this.pict.manifest.getValueByHash(this.pict, pTriggerGroupInfo.TriggerAddress);
|
|
97
97
|
|
|
98
|
-
if ((!tmpValue) && !
|
|
98
|
+
if ((!tmpValue) && !pTriggerGroupInfo.MarshalEmptyValues)
|
|
99
99
|
{
|
|
100
100
|
return false;
|
|
101
101
|
}
|
|
102
102
|
// Setting data is in the view intentionally, to allow triggered events. Probabbly needs to be a separate provider.
|
|
103
|
-
pView.
|
|
104
|
-
pView.
|
|
103
|
+
pView.setDataTabularByHash(pInput.PictForm.GroupIndex, pInput.Hash, pRowIndex, tmpValue);
|
|
104
|
+
pView.manualMarshalTabularDataToViewByInput(pInput, pRowIndex);
|
|
105
105
|
return true;
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -176,6 +176,7 @@ class CustomInputHandler extends libPictSectionInputExtension
|
|
|
176
176
|
{
|
|
177
177
|
let tmpAutoFillTriggerGroup = tmpAutoFillTriggerGroups[i];
|
|
178
178
|
|
|
179
|
+
//FIXME: why is this check here? revisit
|
|
179
180
|
if ('TriggerAddress' in tmpAutoFillTriggerGroup)
|
|
180
181
|
{
|
|
181
182
|
// Autofill based on the address list as it isn't a select option
|
|
@@ -203,16 +204,22 @@ class CustomInputHandler extends libPictSectionInputExtension
|
|
|
203
204
|
if (!pInput.PictForm.hasOwnProperty('AutofillTriggerGroup'))
|
|
204
205
|
{
|
|
205
206
|
// Do nothing for now -- this is the triggering element
|
|
207
|
+
return;
|
|
206
208
|
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
+
let tmpAutoFillTriggerGroups = pInput.PictForm.AutofillTriggerGroup;
|
|
210
|
+
if (!Array.isArray(tmpAutoFillTriggerGroups))
|
|
209
211
|
{
|
|
210
|
-
|
|
211
|
-
this.autoFillFromAddressListTabular(pView, pInput, pHTMLSelector, pRowIndex);
|
|
212
|
+
tmpAutoFillTriggerGroups = [tmpAutoFillTriggerGroups];
|
|
212
213
|
}
|
|
213
|
-
|
|
214
|
+
for (const tmpAutoFillTriggerGroup of tmpAutoFillTriggerGroups)
|
|
214
215
|
{
|
|
215
|
-
|
|
216
|
+
//FIXME: why is this flow different from non-tabular? revisit
|
|
217
|
+
if (!tmpAutoFillTriggerGroup.SelectOptionsRefresh)
|
|
218
|
+
{
|
|
219
|
+
// Autofill based on the address list as it isn't a select option
|
|
220
|
+
this.autoFillFromAddressListTabular(pView, pInput, tmpAutoFillTriggerGroup, pHTMLSelector, pRowIndex);
|
|
221
|
+
}
|
|
222
|
+
else if (!pInput.PictForm.SelectOptionsPickList)
|
|
216
223
|
{
|
|
217
224
|
// There is no select options picklist so we can't auto refresh it.
|
|
218
225
|
}
|
|
@@ -396,13 +396,27 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
396
396
|
|
|
397
397
|
/**
|
|
398
398
|
* Gets a value by hash address.
|
|
399
|
-
* @param {string} pHashAddress
|
|
399
|
+
* @param {string} pHashAddress
|
|
400
400
|
*/
|
|
401
|
-
getValueByHash(pHashAddress)
|
|
401
|
+
getValueByHash(pHashAddress, pRowIndex)
|
|
402
402
|
{
|
|
403
403
|
return this.sectionManifest.getValueByHash(this.getMarshalDestinationObject(), pHashAddress);
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
+
/**
|
|
407
|
+
* Gets a value by hash address.
|
|
408
|
+
*
|
|
409
|
+
* @param {number} pGroupIndex
|
|
410
|
+
* @param {number} pInputIndex
|
|
411
|
+
* @param {number} pRowIndex
|
|
412
|
+
*/
|
|
413
|
+
getTabularValueByHash(pGroupIndex, pInputIndex, pRowIndex)
|
|
414
|
+
{
|
|
415
|
+
const tmpInput = this.getTabularRecordInput(pGroupIndex, pInputIndex);
|
|
416
|
+
const tmpAddress = this.pict.providers.Informary.getComposedContainerAddress(tmpInput.PictForm.InformaryContainerAddress, pRowIndex, tmpInput.PictForm.InformaryDataAddress);
|
|
417
|
+
return this.sectionManifest.getValueByHash(this.getMarshalDestinationObject(), tmpAddress);
|
|
418
|
+
}
|
|
419
|
+
|
|
406
420
|
/**
|
|
407
421
|
* Marshals data to the view.
|
|
408
422
|
*
|
|
@@ -490,7 +504,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
490
504
|
let tmpTransactionGUID = this.fable.getUUID();
|
|
491
505
|
this.transactionTracking.registerTransaction(tmpTransactionGUID);
|
|
492
506
|
this.runInputProviderFunctions('onAfterMarshalToForm', null, null, tmpTransactionGUID);
|
|
493
|
-
|
|
507
|
+
|
|
494
508
|
}
|
|
495
509
|
catch (pError)
|
|
496
510
|
{
|
|
@@ -668,7 +682,7 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
668
682
|
{
|
|
669
683
|
let tmpInput = tmpRow.Inputs[k];
|
|
670
684
|
// Now run any providers connected to this input
|
|
671
|
-
if (tmpInput && tmpInput.PictForm
|
|
685
|
+
if (tmpInput && tmpInput.PictForm
|
|
672
686
|
&& (!pInputHash || (pInputHash === tmpInput.Hash)))
|
|
673
687
|
{
|
|
674
688
|
let tmpInputProviderList = this.getInputProviderList(tmpInput);
|
|
@@ -976,11 +990,21 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
976
990
|
}
|
|
977
991
|
|
|
978
992
|
/**
|
|
979
|
-
*
|
|
993
|
+
* @deprecated
|
|
980
994
|
* @param {string} pEvent - The input event string.
|
|
981
995
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
982
996
|
*/
|
|
983
997
|
globalInputEvent(pEvent, pCompletedHashes)
|
|
998
|
+
{
|
|
999
|
+
this.manifestInputEvent(pEvent, pCompletedHashes);
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
/**
|
|
1003
|
+
*
|
|
1004
|
+
* @param {string} pEvent - The input event string.
|
|
1005
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
1006
|
+
*/
|
|
1007
|
+
manifestInputEvent(pEvent, pCompletedHashes)
|
|
984
1008
|
{
|
|
985
1009
|
const tmpInputHashes = Object.keys(this.sectionManifest.elementHashes);
|
|
986
1010
|
|
|
@@ -1021,6 +1045,72 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
1021
1045
|
return this.pict.providers.DynamicInputEvents.inputEventTabular(this, pGroupIndex, pInputIndex, pRowIndex, pEvent);
|
|
1022
1046
|
}
|
|
1023
1047
|
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @param {number} pGroupIndex - The index of the group.
|
|
1051
|
+
* @param {string} pEvent - The input event string.
|
|
1052
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
1053
|
+
*/
|
|
1054
|
+
groupInputEvent(pGroupIndex, pEvent, pCompletedHashes)
|
|
1055
|
+
{
|
|
1056
|
+
const tmpGroup = this.getGroup(pGroupIndex);
|
|
1057
|
+
|
|
1058
|
+
if (!tmpGroup)
|
|
1059
|
+
{
|
|
1060
|
+
this.log.warn(`PICT View Metatemplate Helper subManifestInputEvent ${pGroupIndex} is not a valid group index.`);
|
|
1061
|
+
return;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
if (tmpGroup.Rows.length < 1)
|
|
1065
|
+
{
|
|
1066
|
+
// tabular
|
|
1067
|
+
const tmpRecordSetRows = this.getTabularRecordSet(pGroupIndex);
|
|
1068
|
+
if (!Array.isArray(tmpRecordSetRows))
|
|
1069
|
+
{
|
|
1070
|
+
return;
|
|
1071
|
+
}
|
|
1072
|
+
for (let i = 0; i < tmpRecordSetRows.length; i++)
|
|
1073
|
+
{
|
|
1074
|
+
for (const tmpInput of Object.values(tmpGroup.supportingManifest.elementDescriptors))
|
|
1075
|
+
{
|
|
1076
|
+
const tmpInputSignature = `${this.Hash}-${tmpGroup.Hash}-${tmpInput.Hash}-${i}`;
|
|
1077
|
+
if (!(tmpInputSignature in pCompletedHashes))
|
|
1078
|
+
{
|
|
1079
|
+
pCompletedHashes[tmpInputSignature] = true;
|
|
1080
|
+
this.inputEventTabular(pGroupIndex, tmpInput.PictForm.InputIndex, i, pEvent);
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1084
|
+
}
|
|
1085
|
+
for (const tmpRow of tmpGroup.Rows || [])
|
|
1086
|
+
{
|
|
1087
|
+
for (const tmpInput of tmpRow.Inputs || [])
|
|
1088
|
+
{
|
|
1089
|
+
const tmpInputSignature = `${this.Hash}-${tmpGroup.Hash}-${tmpInput.Hash}-${tmpRow.Hash}`;
|
|
1090
|
+
if (!(tmpInputSignature in pCompletedHashes))
|
|
1091
|
+
{
|
|
1092
|
+
pCompletedHashes[tmpInputSignature] = true;
|
|
1093
|
+
this.inputEvent(tmpInput.Hash, pEvent);
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
/**
|
|
1100
|
+
*
|
|
1101
|
+
* @param {string} pEvent - The input event string.
|
|
1102
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
1103
|
+
*/
|
|
1104
|
+
sectionInputEvent(pEvent, pCompletedHashes)
|
|
1105
|
+
{
|
|
1106
|
+
const tmpGroupCount = this.sectionDefinition.Groups.length;
|
|
1107
|
+
|
|
1108
|
+
for (let i = 0; i < tmpGroupCount; i++)
|
|
1109
|
+
{
|
|
1110
|
+
this.groupInputEvent(i, pEvent, pCompletedHashes);
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1024
1114
|
/**
|
|
1025
1115
|
* Get the input object for a specific tabular record group and index.
|
|
1026
1116
|
*
|
|
@@ -921,10 +921,11 @@ class PictFormMetacontroller extends libPictViewClass
|
|
|
921
921
|
// Filter the views based on the filter function and type
|
|
922
922
|
for (let i = 0; i < tmpViewHashes.length; i++)
|
|
923
923
|
{
|
|
924
|
+
/** @type {import('./Pict-View-DynamicForm.js')} */
|
|
924
925
|
let tmpView = this.pict.views[tmpViewHashes[i]];
|
|
925
926
|
if (tmpView.isPictSectionForm)
|
|
926
927
|
{
|
|
927
|
-
tmpView.
|
|
928
|
+
tmpView.sectionInputEvent(tmpEvent, tmpCompletedHashes);
|
|
928
929
|
}
|
|
929
930
|
}
|
|
930
931
|
}
|
|
@@ -35,6 +35,10 @@ declare class PictDynamicFormsSolverBehaviors extends libPictProvider {
|
|
|
35
35
|
setGroupVisibility(pSectionHash: any, pGroupHash: any, pVisible: any): boolean;
|
|
36
36
|
hideGroup(pSectionHash: any, pGroupHash: any): boolean;
|
|
37
37
|
showGroup(pSectionHash: any, pGroupHash: any): boolean;
|
|
38
|
+
generateHTMLHexColor(pRed: any, pGreen: any, pBlue: any): string;
|
|
39
|
+
colorSectionBackground(pSectionHash: any, pColor: any, pApplyChange: any): boolean;
|
|
40
|
+
colorGroupBackground(pSectionHash: any, pGroupHash: any, pColor: any, pApplyChange: any): boolean;
|
|
41
|
+
colorInputBackground(pSectionHash: any, pInputHash: any, pColor: any, pApplyChange: any): boolean;
|
|
38
42
|
logValues(...args: any[]): any;
|
|
39
43
|
}
|
|
40
44
|
declare namespace PictDynamicFormsSolverBehaviors {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-DynamicFormSolverBehaviors.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-DynamicFormSolverBehaviors.js"],"names":[],"mappings":";AAaA;;;;;GAKG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAqBhB;IAbA,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qFAAqF;IACrF,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,WAAW,EAAE,CAAC,OAAO,EAAE,GAAG,KAAK,OAAO,UAAU,CAAC,CAAA;KAAE,CACxE;IAIT,qBAAqB;IACrB,qBADW,MAAM,CAC4C;IAC7D,0BAAyD;IACzD,mBAA2H;IAK5H,2DAMC;IAJA,kBAAsD;IAMvD,kHAaC;IAED,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-DynamicFormSolverBehaviors.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-DynamicFormSolverBehaviors.js"],"names":[],"mappings":";AAaA;;;;;GAKG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAqBhB;IAbA,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qFAAqF;IACrF,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,WAAW,EAAE,CAAC,OAAO,EAAE,GAAG,KAAK,OAAO,UAAU,CAAC,CAAA;KAAE,CACxE;IAIT,qBAAqB;IACrB,qBADW,MAAM,CAC4C;IAC7D,0BAAyD;IACzD,mBAA2H;IAK5H,2DAMC;IAJA,kBAAsD;IAMvD,kHAaC;IAED,iDAeC;IAED,gDAGC;IAED,gEAUC;IAGD,wCAiBC;IAED,wCAiBC;IAED,+DAGC;IAED,+EAUC;IAED,uDAiBC;IAED,uDAiBC;IAED,iEAqBC;IAED,mFA2BC;IAED,kGA0BC;IAED,kGAmCC;IAED,+BAWC;CACD;;;;;AArUD,kCAAkC;AAClC,6CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAQ3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-DynamicInputEvents.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-DynamicInputEvents.js"],"names":[],"mappings":";AAaA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAMhB;IAED;;;;;OAKG;IACH,yCAFW,MAAM,QAkChB;IAED;;;;;;OAMG;IACH,mCAHW,MAAM,UACN,MAAM,QAsChB;IAED;;;;;;;OAOG;IACH,+BALW,OAAO,gCAAgC,CAAC,eACxC,MAAM,eACN,MAAM,aACN,MAAM,QAyChB;IAED;;;;;;;;OAQG;IACH,2CALW,MAAM,eACN,MAAM,aACN,MAAM,UACN,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-DynamicInputEvents.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-DynamicInputEvents.js"],"names":[],"mappings":";AAaA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAMhB;IAED;;;;;OAKG;IACH,yCAFW,MAAM,QAkChB;IAED;;;;;;OAMG;IACH,mCAHW,MAAM,UACN,MAAM,QAsChB;IAED;;;;;;;OAOG;IACH,+BALW,OAAO,gCAAgC,CAAC,eACxC,MAAM,eACN,MAAM,aACN,MAAM,QAyChB;IAED;;;;;;;;OAQG;IACH,2CALW,MAAM,eACN,MAAM,aACN,MAAM,UACN,MAAM,QAkChB;CACD;;;;;AA7MD,kCAAkC;AAClC,6CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAS3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Informary.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-Informary.js"],"names":[],"mappings":";AAcA;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAgBhB;IARA,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qFAAqF;IACrF,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,WAAW,EAAE,CAAC,OAAO,EAAE,GAAG,KAAK,OAAO,UAAU,CAAC,CAAA;KAAE,CACxE;IAIT,oCAAwE;IAGzE;;;;;OAKG;IACH,2BAHW,MAAM,GACJ,WAAW,EAAE,CAOzB;IAED;;;;;;;;;;OAUG;IACH,oCANW,MAAM,cACN,MAAM,cACN,MAAM,GAAC,IAAI,UACX,MAAM,GAAC,MAAM,GACX,MAAM,CAalB;IAED;;;;;;;OAOG;IACH,wCALW,MAAM,UACN,MAAM,GAAC,MAAM,cACb,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,iCANW,MAAM,aACN,MAAM,aACN,MAAM,WACN,MAAM,iBACN,MAAM,GAAC,MAAM,QAgBvB;IAED;;;;;;;;;;OAUG;IACH,8CARW,MAAM,kBACN,WAAW,uDAGX,GAAG,uBACH,GAAG,GACD,OAAO,CA0CnB;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,aACN,MAAM,aACN,MAAM,QAahB;IAED;;;;;;;;OAQG;IACH,4CANW,MAAM,gBACN,WAAW,yCAGT,OAAO,CA2CnB;IAED;;;;OAIG;IACH,uCAHW,MAAM,gBA2BhB;IAED;;;;;OAKG;IACH,8CAJW,MAAM,aACN,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Informary.d.ts","sourceRoot":"","sources":["../../../source/providers/Pict-Provider-Informary.js"],"names":[],"mappings":";AAcA;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAgBhB;IARA,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qFAAqF;IACrF,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,WAAW,EAAE,CAAC,OAAO,EAAE,GAAG,KAAK,OAAO,UAAU,CAAC,CAAA;KAAE,CACxE;IAIT,oCAAwE;IAGzE;;;;;OAKG;IACH,2BAHW,MAAM,GACJ,WAAW,EAAE,CAOzB;IAED;;;;;;;;;;OAUG;IACH,oCANW,MAAM,cACN,MAAM,cACN,MAAM,GAAC,IAAI,UACX,MAAM,GAAC,MAAM,GACX,MAAM,CAalB;IAED;;;;;;;OAOG;IACH,wCALW,MAAM,UACN,MAAM,GAAC,MAAM,cACb,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,iCANW,MAAM,aACN,MAAM,aACN,MAAM,WACN,MAAM,iBACN,MAAM,GAAC,MAAM,QAgBvB;IAED;;;;;;;;;;OAUG;IACH,8CARW,MAAM,kBACN,WAAW,uDAGX,GAAG,uBACH,GAAG,GACD,OAAO,CA0CnB;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,aACN,MAAM,aACN,MAAM,QAahB;IAED;;;;;;;;OAQG;IACH,4CANW,MAAM,gBACN,WAAW,yCAGT,OAAO,CA2CnB;IAED;;;;OAIG;IACH,uCAHW,MAAM,gBA2BhB;IAED;;;;;OAKG;IACH,8CAJW,MAAM,aACN,MAAM,gBA4BhB;IAED;;;;;OAKG;IACH,sCAHW,MAAM,UACN,MAAM,QAKhB;IAED;;;;;;OAMG;IACH,6CAJW,MAAM,UACN,MAAM,aACN,MAAM,QAKhB;CACD;;;;;AArUD,kCAAkC;AAClC,6CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAS3B"}
|
|
@@ -31,8 +31,8 @@ declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
|
31
31
|
/** @type {import('pict')} */
|
|
32
32
|
pict: import("pict");
|
|
33
33
|
getTriggerGroupConfigurationArray(pInput: any): any;
|
|
34
|
-
autoFillFromAddressList(pView: any, pInput: any,
|
|
35
|
-
autoFillFromAddressListTabular(pView: any, pInput: any,
|
|
34
|
+
autoFillFromAddressList(pView: any, pInput: any, pTriggerGroupInfo: any, pHTMLSelector: any): boolean;
|
|
35
|
+
autoFillFromAddressListTabular(pView: any, pInput: any, pTriggerGroupInfo: any, pHTMLSelector: any, pRowIndex: any): boolean;
|
|
36
36
|
/**
|
|
37
37
|
* Handles the change event for the data in the select input.
|
|
38
38
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-AutofillTriggerGroup.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.js"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH;IAEC,2DAQC;IAJA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAKV,oDAYC;IAED,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-AutofillTriggerGroup.d.ts","sourceRoot":"","sources":["../../../../source/providers/inputs/Pict-Provider-Input-AutofillTriggerGroup.js"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH;IAEC,2DAQC;IAJA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAKV,oDAYC;IAED,sGAwBC;IAED,6HAwBC;IAGD;;;;;;;;OAQG;IACH,8CAJW,GAAG,iBACH,MAAM,GACJ,GAAG,CAgBf;IAED;;;;;;;;;OASG;IACH,qDALW,GAAG,iBACH,MAAM,aACN,MAAM,GACJ,GAAG,CAgBf;IAGD,wFAqCC;IAED,+GAuCC;CACD"}
|
|
@@ -78,7 +78,15 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
78
78
|
* Gets a value by hash address.
|
|
79
79
|
* @param {string} pHashAddress
|
|
80
80
|
*/
|
|
81
|
-
getValueByHash(pHashAddress: string): any;
|
|
81
|
+
getValueByHash(pHashAddress: string, pRowIndex: any): any;
|
|
82
|
+
/**
|
|
83
|
+
* Gets a value by hash address.
|
|
84
|
+
*
|
|
85
|
+
* @param {number} pGroupIndex
|
|
86
|
+
* @param {number} pInputIndex
|
|
87
|
+
* @param {number} pRowIndex
|
|
88
|
+
*/
|
|
89
|
+
getTabularValueByHash(pGroupIndex: number, pInputIndex: number, pRowIndex: number): any;
|
|
82
90
|
/**
|
|
83
91
|
* Marshals data to the view.
|
|
84
92
|
*
|
|
@@ -223,11 +231,17 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
223
231
|
*/
|
|
224
232
|
inputEvent(pInputHash: string, pEvent: string): any;
|
|
225
233
|
/**
|
|
226
|
-
*
|
|
234
|
+
* @deprecated
|
|
227
235
|
* @param {string} pEvent - The input event string.
|
|
228
236
|
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
229
237
|
*/
|
|
230
238
|
globalInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
239
|
+
/**
|
|
240
|
+
*
|
|
241
|
+
* @param {string} pEvent - The input event string.
|
|
242
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
243
|
+
*/
|
|
244
|
+
manifestInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
231
245
|
/**
|
|
232
246
|
* Triggers a DataRequest event for an Input Provider
|
|
233
247
|
*
|
|
@@ -247,6 +261,19 @@ declare class PictViewDynamicForm extends libPictViewClass {
|
|
|
247
261
|
* @returns {any} - The result of the input event handling.
|
|
248
262
|
*/
|
|
249
263
|
inputEventTabular(pGroupIndex: number, pInputIndex: number, pRowIndex: number, pEvent: string): any;
|
|
264
|
+
/**
|
|
265
|
+
*
|
|
266
|
+
* @param {number} pGroupIndex - The index of the group.
|
|
267
|
+
* @param {string} pEvent - The input event string.
|
|
268
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
269
|
+
*/
|
|
270
|
+
groupInputEvent(pGroupIndex: number, pEvent: string, pCompletedHashes: any): void;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @param {string} pEvent - The input event string.
|
|
274
|
+
* @param {Object} pCompletedHashes - the hashes that have already signaled the event
|
|
275
|
+
*/
|
|
276
|
+
sectionInputEvent(pEvent: string, pCompletedHashes: any): void;
|
|
250
277
|
/**
|
|
251
278
|
* Get the input object for a specific tabular record group and index.
|
|
252
279
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";AAQA;;;;;;;GAOG;AACH;IAEC,2DAuGC;IAvDA,4FAA4D;IAE5D,kCAAkC;IAClC,kBADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACO;IAIrC,uBAAqC;IAGrC,qBAA2H;IAG3H,sBAAwB;IAcxB,+BAA6D;IAmB7D,iCAAuC;IAEvC,eAAmD;IAEnD,4BAAkC;IAClC,6BAAgC;IAMjC;;;;OAIG;IACH,6BAFa,MAAM,CAgBlB;IAED;;;;;;;;OAQG;IACH,wBAFW,MAAM,QA+ChB;IAGD;;;;;;OAMG;IACH,gCAJW,MAAM,eACN,MAAM,aACN,MAAM,QAsDhB;IAED;;;;;;OAMG;IACH,uBAJW,MAAM,UACN,GAAG,GACD,OAAO,CA+BnB;IAED;;;;;;;;OAQG;IACH,kCANW,MAAM,cACN,MAAM,aACN,MAAM,UACN,GAAG,GACD,OAAO,CAmEnB;IAED;;;;OAIG;IACH,gCAFa,MAAM,CAKlB;IAED;;;;OAIG;IACH,+BAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;OAGG;IACH,6BAFW,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";AAQA;;;;;;;GAOG;AACH;IAEC,2DAuGC;IAvDA,4FAA4D;IAE5D,kCAAkC;IAClC,kBADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACO;IAIrC,uBAAqC;IAGrC,qBAA2H;IAG3H,sBAAwB;IAcxB,+BAA6D;IAmB7D,iCAAuC;IAEvC,eAAmD;IAEnD,4BAAkC;IAClC,6BAAgC;IAMjC;;;;OAIG;IACH,6BAFa,MAAM,CAgBlB;IAED;;;;;;;;OAQG;IACH,wBAFW,MAAM,QA+ChB;IAGD;;;;;;OAMG;IACH,gCAJW,MAAM,eACN,MAAM,aACN,MAAM,QAsDhB;IAED;;;;;;OAMG;IACH,uBAJW,MAAM,UACN,GAAG,GACD,OAAO,CA+BnB;IAED;;;;;;;;OAQG;IACH,kCANW,MAAM,cACN,MAAM,aACN,MAAM,UACN,GAAG,GACD,OAAO,CAmEnB;IAED;;;;OAIG;IACH,gCAFa,MAAM,CAKlB;IAED;;;;OAIG;IACH,+BAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;OAGG;IACH,6BAFW,MAAM,uBAKhB;IAED;;;;;;OAMG;IACH,mCAJW,MAAM,eACN,MAAM,aACN,MAAM,OAOhB;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAoBf;IAED,yEAcC;IAED,gGAcC;IAED;;;OAGG;IACH,qBAFa,GAAG,CAcf;IAED;;;OAGG;IACH,6BAcC;IAED;;;;OAIG;IACH,WAFa,GAAG,CAef;IAiED;;;;;;;;;;;;;;;OAeG;IACH,0CAHW,MAAM,qBACN,MAAM,QA2ChB;IAED;;;;;;;OAOG;IACH,yCALW,MAAM,eACN,MAAM,cACN,MAAM,qBACN,MAAM,QAiHhB;IAED;;;;OAIG;IACH,4CAHW,MAAM,GACJ,OAAO,CAMnB;IAED;;;;;OAKG;IACH,8CAHW,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;OAKG;IACH,6CAHW,MAAM,GACJ,OAAO,CAMnB;IAED;;;;;OAKG;IACH,+CAHW,MAAM,GACJ,MAAM,CAMlB;IAED;;OAEG;IACH,8BAGC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CAgB1B;IAED;;;;;;;;OAQG;IACH,oBAJW,MAAM,aACN,MAAM,OAyBhB;IAED;;;;;;OAMG;IACH,gCAJW,MAAM,aACN,MAAM,OAMhB;IAED;;;;;;OAMG;IACH,sBALW,MAAM,aACN,MAAM,eACN,MAAM,GACJ,MAAO,OAAO,CAwB1B;IAED;;;;;OAKG;IACH,yCAoBC;IAED;;;;;OAKG;IACH,6BAHW,MAAM,OAMhB;IAED;;;;;OAKG;IACH,sCAFa,OAAO,CAKnB;IAED;;;;;;OAMG;IACH,uCAHW,MAAM,GACJ,GAAG,CAKf;IAED;;;;OAIG;IACH,yBAHW,MAAM,+BAMhB;IAED;;;;OAIG;IACH,2BAHW,MAAM,+BAehB;IAED;;;;;;;OAOG;IACH,qCALW,MAAM,eACN,MAAM,aACN,MAAM,GACJ,OAAO,CAAC,GAAG,CAAC,CAKxB;IAED;;;;;;;;OAQG;IACH,+BANW,MAAM,eACN,MAAM,aACN,MAAM,UACN,MAAM,GACJ,GAAG,CAKf;IAED;;;;;OAKG;IACH,6BAJW,MAAM,UACN,MAAM,+BA8ChB;IAED;;;;OAIG;IACH,0BAHW,MAAM,+BAWhB;IAED;;;;;;;;OAQG;IACH,mCAJW,MAAM,eACN,MAAM,OAMhB;IAED;;;;;;OAMG;IACH,kCAJW,MAAM,kBACN,MAAM,OAMhB;IAED;;;;;OAKG;IACH,iCAHW,MAAM,SAMhB;IAED;;;;;;;OAOG;IACH,mCAHW,MAAM,OAMhB;IAED;;;;;;;OAOG;IACH,qCALW,MAAM,aACN,MAAM,gBACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;OAMG;IACH,qCAJW,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;OAMG;IACH,mCAJW,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;OAMG;IACH,mCAJW,MAAM,aACN,MAAM,gBAMhB;IAED;;;OAGG;IACH,yBAFa,OAAO,CAKnB;CACD;;;;;AA/rCD,kCAAkC;AAClC,qCADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAC6D"}
|
|
@@ -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;;;OAGG;IACH,gCAFW,MAAM,
|
|
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;;;OAGG;IACH,gCAFW,MAAM,QAiBhB;IAED;;;;OAIG;IACH,4BAFa,OAAO,CAKnB;CACD;;;;;qCAGU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;oBAt6BjB,CAAC,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,KAAK,MAAM"}
|