pict-section-form 1.0.161 → 1.0.162
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/package.json
CHANGED
|
@@ -41,9 +41,28 @@ class PictDynamicInputEvents extends libPictProvider
|
|
|
41
41
|
if (pInputHash)
|
|
42
42
|
{
|
|
43
43
|
let tmpInput = pView.getInputFromHash(pInputHash);
|
|
44
|
-
if (pEvent
|
|
44
|
+
if (pEvent)
|
|
45
45
|
{
|
|
46
|
-
|
|
46
|
+
let tmpFormattedEvent;
|
|
47
|
+
if (typeof pEvent === 'string')
|
|
48
|
+
{
|
|
49
|
+
tmpFormattedEvent = pEvent;
|
|
50
|
+
}
|
|
51
|
+
else
|
|
52
|
+
{
|
|
53
|
+
if (pEvent.namespace)
|
|
54
|
+
{
|
|
55
|
+
tmpFormattedEvent = `${pEvent.type}.${pEvent.namespace}`;
|
|
56
|
+
}
|
|
57
|
+
else
|
|
58
|
+
{
|
|
59
|
+
tmpFormattedEvent = pEvent.type;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
if (this.pict.providers.DynamicInput.ignoredEventHashes[tmpFormattedEvent])
|
|
63
|
+
{
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
47
66
|
}
|
|
48
67
|
let tmpHashAddress = pView.sectionManifest.resolveHashAddress(pInputHash);
|
|
49
68
|
try
|
|
@@ -144,6 +163,29 @@ class PictDynamicInputEvents extends libPictProvider
|
|
|
144
163
|
let tmpInput = pView.getTabularRecordInput(pGroupIndex, pInputIndex);
|
|
145
164
|
if (pGroupIndex && pInputIndex && pRowIndex && tmpInput)
|
|
146
165
|
{
|
|
166
|
+
if (pEvent)
|
|
167
|
+
{
|
|
168
|
+
let tmpFormattedEvent;
|
|
169
|
+
if (typeof pEvent === 'string')
|
|
170
|
+
{
|
|
171
|
+
tmpFormattedEvent = pEvent;
|
|
172
|
+
}
|
|
173
|
+
else
|
|
174
|
+
{
|
|
175
|
+
if (pEvent.namespace)
|
|
176
|
+
{
|
|
177
|
+
tmpFormattedEvent = `${pEvent.type}.${pEvent.namespace}`;
|
|
178
|
+
}
|
|
179
|
+
else
|
|
180
|
+
{
|
|
181
|
+
tmpFormattedEvent = pEvent.type;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
if (this.pict.providers.DynamicInput.ignoredEventHashes[tmpFormattedEvent])
|
|
185
|
+
{
|
|
186
|
+
return;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
147
189
|
try
|
|
148
190
|
{
|
|
149
191
|
let tmpMarshalDestinationObject = pView.getMarshalDestinationObject();
|
|
@@ -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;;;;;;OAMG;IACH,yCAHW,MAAM,WACN,GAAG,
|
|
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;;;;;;OAMG;IACH,yCAHW,MAAM,WACN,GAAG,QAyDb;IAED;;;;;;;OAOG;IACH,mCAJW,MAAM,UACN,MAAM,qBACN,MAAM,QAgDhB;IAED;;;;;;;;OAQG;IACH,+BANW,OAAO,gCAAgC,CAAC,eACxC,MAAM,eACN,MAAM,aACN,MAAM,WACN,GAAG,QAgEb;IAED;;;;;;;;;OASG;IACH,2CANW,MAAM,eACN,MAAM,aACN,MAAM,UACN,MAAM,qBACN,MAAM,QA4ChB;CACD;;;;;AAnRD,kCAAkC;AAClC,6CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAS3B"}
|