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