@weaverse/core 1.0.54 → 1.0.56
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/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -209,8 +209,11 @@ interface DataSortInputConfigs {
|
|
|
209
209
|
type InputType = "color" | "datepicker" | "image" | "range" | "select" | "children-sort" | "data-sort" | "switch" | "text" | "textarea" | "toggle-group" | "position" | "information" | "product" | "product-list" | "product-swatches" | "text-editor" | "custom.html" | "instagram" | "collection-list" | "collection" | "article-list" | "map-autocomplete";
|
|
210
210
|
declare global {
|
|
211
211
|
interface Window {
|
|
212
|
-
weaverseStudioInitialized: boolean;
|
|
213
212
|
Blinkloader: any;
|
|
213
|
+
weaverseStudio: any;
|
|
214
|
+
__initializedWeaverseStudios: {
|
|
215
|
+
[pageId: string]: boolean | undefined;
|
|
216
|
+
};
|
|
214
217
|
__weaverse: any;
|
|
215
218
|
__weaverses: {
|
|
216
219
|
[key: string]: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -209,8 +209,11 @@ interface DataSortInputConfigs {
|
|
|
209
209
|
type InputType = "color" | "datepicker" | "image" | "range" | "select" | "children-sort" | "data-sort" | "switch" | "text" | "textarea" | "toggle-group" | "position" | "information" | "product" | "product-list" | "product-swatches" | "text-editor" | "custom.html" | "instagram" | "collection-list" | "collection" | "article-list" | "map-autocomplete";
|
|
210
210
|
declare global {
|
|
211
211
|
interface Window {
|
|
212
|
-
weaverseStudioInitialized: boolean;
|
|
213
212
|
Blinkloader: any;
|
|
213
|
+
weaverseStudio: any;
|
|
214
|
+
__initializedWeaverseStudios: {
|
|
215
|
+
[pageId: string]: boolean | undefined;
|
|
216
|
+
};
|
|
214
217
|
__weaverse: any;
|
|
215
218
|
__weaverses: {
|
|
216
219
|
[key: string]: any;
|
package/package.json
CHANGED