@wix/public-editor-platform-interfaces 1.32.0 → 1.33.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.
@@ -116,8 +116,8 @@ export type ElementDataValue = string | number | boolean | ElementLink | Element
116
116
  export type ElementDataObject = {
117
117
  [key: string]: ElementDataValue;
118
118
  };
119
- export type ElementData = ElementDataObject;
120
- export type ElementDataInput = Partial<ElementData>;
119
+ export type ElementData<T extends ElementDataObject = ElementDataObject> = T;
120
+ export type ElementDataInput<T extends ElementDataObject = ElementDataObject> = Partial<T>;
121
121
  export type ElementDataTypeMap = {
122
122
  [DataType.TEXT]: string;
123
123
  [DataType.TEXT_ENUM]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/public-editor-platform-interfaces",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "license": "UNLICENSED",
5
5
  "contributors": [
6
6
  {
@@ -51,5 +51,5 @@
51
51
  ]
52
52
  }
53
53
  },
54
- "falconPackageHash": "c0db383d27c3d38dae20fa33cc945efa5a5a30a8f7135fe8bc662934"
54
+ "falconPackageHash": "ec5397b60b3755623eb5c4a91d564695a8ef83625dd6fa3efb2d2e35"
55
55
  }