@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/cjs/index.js +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/statics/docs-ts-model.json +181 -181
- package/dist/statics/index.js +3 -2
- package/dist/statics/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +5 -5
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) {
|