@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/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) {
|