buzzcasting-storage 3.4.0 → 3.4.1
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/buzzcasting-storage.d.ts +4 -1
- package/dist/buzzcasting-storage.esm.js +514 -504
- package/package.json +1 -1
|
@@ -143,7 +143,7 @@ export declare enum EVENTS {
|
|
|
143
143
|
GOTO_SLIDE = "gotoSlide",
|
|
144
144
|
NEXT_SLIDE = "nextSlide",
|
|
145
145
|
PREFERENCE_LOAD = "loadPreference",
|
|
146
|
-
|
|
146
|
+
PREFERENCE_STORE = "storePreference",
|
|
147
147
|
PRESENTATION_LOAD = "loadPresentation",
|
|
148
148
|
PRESENTATION_STORE = "storePresentation",
|
|
149
149
|
SHOW_BUILDER_MODAL = "showBuilderModal",
|
|
@@ -161,6 +161,8 @@ export declare enum EVENTS {
|
|
|
161
161
|
REMOVE_CLOUD = "removeCloud",
|
|
162
162
|
UPDATE = "update",
|
|
163
163
|
VERSION = "version",
|
|
164
|
+
WIDGET_LOAD = "widgetLoad",
|
|
165
|
+
WIDGET_STORE = "widgetStore",
|
|
164
166
|
WIDGET_UPDATE = "widgetUpdate"
|
|
165
167
|
}
|
|
166
168
|
|
|
@@ -321,6 +323,7 @@ export declare function intToString(num: any, digits: number): string;
|
|
|
321
323
|
export declare interface IPreference {
|
|
322
324
|
id: string;
|
|
323
325
|
value?: string;
|
|
326
|
+
update?: number;
|
|
324
327
|
}
|
|
325
328
|
|
|
326
329
|
/**
|