@weaverse/core 0.7.14 → 0.7.16

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -85,14 +85,14 @@ interface WeaverseElement {
85
85
  interface ElementsMap {
86
86
  [key: string]: WeaverseElement;
87
87
  }
88
- declare type CatalogGroup = "essential" | "composition" | "other";
88
+ declare type CatalogGroup = "essential" | "composition" | "shopify";
89
89
  interface ElementCatalog {
90
90
  name: string;
91
91
  icon?: string;
92
92
  group?: CatalogGroup;
93
93
  data?: ElementData[];
94
94
  }
95
- declare type FlagType = "draggable" | "resizable" | "sortable" | "droppable" | "ignoreShortcutKeys";
95
+ declare type FlagType = "draggable" | "resizable" | "sortable" | "droppable" | "ignoreShortcutKeys" | "hasContextMenu";
96
96
  declare type ElementFlags = Partial<Record<FlagType, boolean>>;
97
97
  interface ChildElement {
98
98
  label: string;
@@ -191,6 +191,7 @@ declare global {
191
191
  interface Window {
192
192
  WeaverseStudioBridge: any;
193
193
  weaverseShopifyProducts: any;
194
+ Blinkloader: any;
194
195
  }
195
196
  }
196
197
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.7.14",
2
+ "version": "0.7.16",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",