buzzcasting-storage 3.7.7 → 3.8.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/buzzcasting-storage.d.ts +4 -0
- package/dist/buzzcasting-storage.esm.js +1532 -1491
- package/package.json +3 -2
|
@@ -34,6 +34,7 @@ export declare class BuzzcastingStorageManager {
|
|
|
34
34
|
constructor(options: IStorageOptions);
|
|
35
35
|
addSubscriber(query: IQuery): void;
|
|
36
36
|
update: (query: IQuery) => Promise<void>;
|
|
37
|
+
private processResponse;
|
|
37
38
|
private broadcastUpdate;
|
|
38
39
|
hide: (query: IQuery) => void;
|
|
39
40
|
private actions;
|
|
@@ -119,9 +120,11 @@ declare enum CSS_2 {
|
|
|
119
120
|
ERROR = "color:white;background-color:red;padding:0 4px 0 4px;border-radius:5px;",
|
|
120
121
|
GET_DATA = "color:black;background-color:lime;padding:0 4px 0 4px;border-radius:5px;",
|
|
121
122
|
HIDE = "color:white;background-color:red;padding:0 4px 0 4px;border-radius:5px;",
|
|
123
|
+
KO = "color:white;background-color:red;padding:0 4px 0 4px;border-radius:5px;",
|
|
122
124
|
MESSAGES = "color:white;background-color:darkslateblue;padding:0 4px 0 4px;border-radius:5px;",
|
|
123
125
|
NO_UPDATES = "color:grey;border:1px solid grey;padding:0 4px 0 4px;border-radius:5px;",
|
|
124
126
|
NONE = "color:transparent;background-color:transparent;",
|
|
127
|
+
OK = "color:black;background-color:lime;padding:0 4px 0 4px;border-radius:5px;",
|
|
125
128
|
PRESENTATION = "color:white;background-color:darkred;padding:0 4px 0 4px;border-radius:5px;",
|
|
126
129
|
SERIES = "color:purple;background-color:thistle;padding:0 4px 0 4px;border-radius:5px;",
|
|
127
130
|
SLIDE = "color:black;background-color:yellow;padding:0 4px 0 4px;border-radius:5px;",
|
|
@@ -179,6 +182,7 @@ export declare enum EVENTS {
|
|
|
179
182
|
REMOVE_CLOUD = "removeCloud",
|
|
180
183
|
UPDATE = "update",
|
|
181
184
|
VERSION = "version",
|
|
185
|
+
WIDGETS_CLEAR = "widgetsClear",
|
|
182
186
|
WIDGET_LOAD = "widgetLoad",
|
|
183
187
|
WIDGET_STORE = "widgetStore",
|
|
184
188
|
WIDGET_UPDATE = "widgetUpdate"
|