@wix/editor 1.537.0 → 1.539.0

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/dist/cjs/index.js CHANGED
@@ -1558,13 +1558,14 @@ class BindingsPublicSDKShape extends BaseSDKShape {
1558
1558
  );
1559
1559
  return result;
1560
1560
  }
1561
- async findBindingCandidates(bindingTargetDetails) {
1561
+ async findBindingCandidates(bindingTargetDetails, options) {
1562
1562
  const privateAPI = await this.getPlatformPrivateAPI();
1563
1563
  const manifestContextId = await this.getRequiredManifestContextId();
1564
1564
  return privateAPI.bindings.findBindingCandidates(
1565
1565
  manifestContextId,
1566
1566
  this.childPath,
1567
- bindingTargetDetails
1567
+ bindingTargetDetails,
1568
+ options
1568
1569
  );
1569
1570
  }
1570
1571
  async selectBinding(options) {