@wix/editor 1.754.0 → 1.756.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 +5 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +5 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/statics/docs-ts-model.json +437 -374
- package/dist/statics/index.js +5 -1
- package/dist/statics/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +5 -5
package/dist/cjs/index.js
CHANGED
|
@@ -509,8 +509,12 @@ class InputsSDKShape extends BaseSDKShape {
|
|
|
509
509
|
);
|
|
510
510
|
return _value;
|
|
511
511
|
}
|
|
512
|
+
async selectLink(params = {}) {
|
|
513
|
+
const privateAPI = await this.getPlatformPrivateAPI();
|
|
514
|
+
return privateAPI.inputs.selectLink(params);
|
|
515
|
+
}
|
|
512
516
|
}
|
|
513
|
-
var index$c = new PlatformSDKShape(InputsSDKShape).withPublicMethod("selectColor").withPublicMethod("selectFont").build();
|
|
517
|
+
var index$c = new PlatformSDKShape(InputsSDKShape).withPublicMethod("selectColor").withPublicMethod("selectFont").withPublicMethod("selectLink").build();
|
|
514
518
|
|
|
515
519
|
class PanelsSDKShape extends BaseSDKShape {
|
|
516
520
|
async openLanguageSupportPanel() {
|