@wix/editor 1.462.0 → 1.463.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 +15 -14
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +15 -14
- package/dist/esm/index.js.map +1 -1
- package/dist/statics/docs-ts-model.json +180 -180
- package/dist/statics/index.js +15 -14
- package/dist/statics/index.js.map +1 -1
- package/dist/types/index.d.ts +5 -9
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { WorkspaceHost as WorkspaceHost$1, AppsNamespace } from '@wix/workspace'
|
|
|
4
4
|
import * as _wix_sdk_types from '@wix/sdk-types';
|
|
5
5
|
import { Host } from '@wix/sdk-types';
|
|
6
6
|
import * as _wix_editor_platform_transport from '@wix/editor-platform-transport';
|
|
7
|
-
import { IElement, ComponentRef, ElementStyleDefinitions, ElementStyles, ElementStylesUpdate, ElementStylesRemoval, ElementDataDefinitions, ElementData, ElementDataInput, ElementPresetDefinitions, ElementStateDefinitions, ElementLink, BackgroundPickerOptions, DsItem, BuilderStyle, StyleRef, OpenLinkPanelFn, OpenColorPickerFn, ListProvidersOptions, Provider,
|
|
7
|
+
import { IElement, ComponentRef, ElementStyleDefinitions, ElementStyles, ElementStylesUpdate, ElementStylesRemoval, ElementDataDefinitions, ElementData, ElementDataInput, ElementPresetDefinitions, ElementStateDefinitions, ElementLink, BackgroundPickerOptions, DsItem, BuilderStyle, StyleRef, OpenLinkPanelFn, OpenColorPickerFn, ListProvidersOptions, Provider, BindingProperties, UnbindAll, ListBindingsOptions } from '@wix/public-editor-platform-interfaces';
|
|
8
8
|
export { DataType, ElementA11y, ElementAddressLink, ElementAnchorLink, ElementAudio, ElementData, ElementDataDefinition, ElementDataDefinitions, ElementDataInput, ElementDataObject, ElementDataValue, ElementDirection, ElementDocumentLink, ElementDynamicPageLink, ElementEmailLink, ElementExternalLink, ElementImage, ElementLink, ElementLoginToWixLink, ElementMenuItems, ElementPageLink, ElementPhoneLink, ElementPresetDefinition, ElementPresetDefinitions, ElementRichText, ElementStateDefinition, ElementStateDefinitions, ElementStyleDefinition, ElementStyleDefinitions, ElementStyles, ElementStylesRemoval, ElementStylesUpdate, ElementTextLink, ElementTpaPageLink, ElementVectorArt, ElementVideo, ElementWhatsAppLink, NativeStateType } from '@wix/public-editor-platform-interfaces';
|
|
9
9
|
|
|
10
10
|
declare class Workspace implements NonNullable<WorkspaceHost$1['workspace']> {
|
|
@@ -823,8 +823,8 @@ declare class ProvidersPublicSDKShape extends BaseSDKShape {
|
|
|
823
823
|
protected overriddenApplicationContext: Promise<ApplicationContext> | null;
|
|
824
824
|
private childPath;
|
|
825
825
|
constructor(overriddenApplicationContext?: Promise<ApplicationContext> | null, childPath?: number[]);
|
|
826
|
-
attach(
|
|
827
|
-
detach(
|
|
826
|
+
attach(providerIdentifier: string, data?: Object): Promise<void>;
|
|
827
|
+
detach(providerIdentifier: string): Promise<void>;
|
|
828
828
|
list(options?: ListProvidersOptions): Promise<Provider[]>;
|
|
829
829
|
}
|
|
830
830
|
declare const providersPublicSDKShape: ProvidersPublicSDKShape & _wix_sdk_types.HostModule<ProvidersPublicSDKShape, _wix_sdk_types.Host>;
|
|
@@ -833,13 +833,9 @@ declare class BindingsPublicSDKShape extends BaseSDKShape {
|
|
|
833
833
|
protected overriddenApplicationContext: Promise<ApplicationContext> | null;
|
|
834
834
|
private childPath;
|
|
835
835
|
constructor(overriddenApplicationContext?: Promise<ApplicationContext> | null, childPath?: number[]);
|
|
836
|
-
bind(bindings:
|
|
836
|
+
bind(bindings: BindingProperties[]): Promise<void>;
|
|
837
837
|
unbind(props: string[] | UnbindAll): Promise<void>;
|
|
838
|
-
listBindings(options?:
|
|
839
|
-
providerTypes?: string[];
|
|
840
|
-
includeDisplayNames?: boolean;
|
|
841
|
-
}): Promise<ListBindingsResponse>;
|
|
842
|
-
findBindingCandidates(propPath: string): Promise<BindingCandidate[]>;
|
|
838
|
+
listBindings(options?: ListBindingsOptions): Promise<BindingProperties[]>;
|
|
843
839
|
}
|
|
844
840
|
declare const bindingsPublicSDKShape: BindingsPublicSDKShape & _wix_sdk_types.HostModule<BindingsPublicSDKShape, _wix_sdk_types.Host>;
|
|
845
841
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/editor",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.463.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Editor Platform <editor-platform-dev@wix.com>",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"*.{js,ts}": "yarn lint"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@wix/editor-platform-contexts": "1.
|
|
35
|
-
"@wix/editor-platform-environment-api": "1.
|
|
34
|
+
"@wix/editor-platform-contexts": "1.96.0",
|
|
35
|
+
"@wix/editor-platform-environment-api": "1.97.0",
|
|
36
36
|
"@wix/monitoring-browser-sdk-host": "^0.1.8",
|
|
37
37
|
"@wix/public-editor-platform-errors": "1.9.0",
|
|
38
|
-
"@wix/public-editor-platform-interfaces": "1.
|
|
38
|
+
"@wix/public-editor-platform-interfaces": "1.39.0",
|
|
39
39
|
"@wix/sdk-runtime": "^0.7.0",
|
|
40
40
|
"@wix/sdk-types": "^1.14.0",
|
|
41
41
|
"@wix/workspace": "^1.3.1"
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
]
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
|
-
"falconPackageHash": "
|
|
72
|
+
"falconPackageHash": "88d8e905498bcc52d050d42205457ff624258e05c2ad226cd495a860"
|
|
73
73
|
}
|