pict-section-form 1.0.82 → 1.0.83

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.
@@ -56,6 +56,8 @@ module.exports.default_configuration.pict_configuration = (
56
56
  }
57
57
  ],
58
58
  EntityBundleTriggerGroup: "BookTriggerGroup",
59
+ EntityBundleTriggerMetacontrollerSolve: true,
60
+ EntityBundleTriggerMetacontrollerRender: true,
59
61
  EntityBundleTriggerOnInitialize: true
60
62
  }
61
63
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pict-section-form",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
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.21.0",
33
33
  "jquery": "^3.7.1",
34
- "pict": "^1.0.239",
34
+ "pict": "^1.0.243",
35
35
  "pict-application": "^1.0.25",
36
36
  "pict-service-commandlineutility": "^1.0.15",
37
37
  "quackage": "^1.0.41",
@@ -176,6 +176,16 @@ class CustomInputHandler extends libPictSectionInputExtension
176
176
  // Trigger the autofill global event
177
177
  this.pict.views.PictFormMetacontroller.triggerGlobalInputEvent(`AutoFill-${tmpInput.PictForm.EntityBundleTriggerGroup}`);
178
178
  }
179
+ if (tmpInput.PictForm.EntityBundleTriggerMetacontrollerSolve)
180
+ {
181
+ // Trigger the solve global event
182
+ this.pict.views.PictFormMetacontroller.solve();
183
+ }
184
+ if (tmpInput.PictForm.EntityBundleTriggerMetacontrollerRender)
185
+ {
186
+ // Trigger the render
187
+ this.pict.views.PictFormMetacontroller.render();
188
+ }
179
189
  fNext();
180
190
  });
181
191