buzzcasting-storage 2.11.1 → 2.11.3
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 +11 -0
- package/dist/buzzcasting-storage.esm.js +1343 -1290
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ export declare type ApiData = ISeries & IMessages & ICloud;
|
|
|
11
11
|
|
|
12
12
|
export declare function attrs(attributes: NamedNodeMap): any;
|
|
13
13
|
|
|
14
|
+
export declare function brandLogo(channel: string, size: string): string;
|
|
15
|
+
|
|
14
16
|
export declare class BuzzcastingStorageManager {
|
|
15
17
|
private sm;
|
|
16
18
|
private api;
|
|
@@ -63,6 +65,12 @@ export declare function camelCase(str: string): string;
|
|
|
63
65
|
*/
|
|
64
66
|
export declare function camelize(str: string): string;
|
|
65
67
|
|
|
68
|
+
/**
|
|
69
|
+
* Clear Container range contents of template code when the web component is connected to the DOM
|
|
70
|
+
* @param myNode
|
|
71
|
+
*/
|
|
72
|
+
export declare function clearContents(myNode: HTMLElement): void;
|
|
73
|
+
|
|
66
74
|
declare enum CSS_2 {
|
|
67
75
|
API = "color:white;background-color:grey;padding:0 4px 0 4px;border-radius:5px;",
|
|
68
76
|
APP = "color:white;background-color:navy;padding:0 4px 0 4px;border-radius:5px;",
|
|
@@ -94,6 +102,7 @@ export declare enum EVENTS {
|
|
|
94
102
|
ERROR = "error",
|
|
95
103
|
GOTO_SLIDE = "gotoSlide",
|
|
96
104
|
HIDE_MESSAGE = "hideMessage",
|
|
105
|
+
HIDE_LABELS = "hideLabels",
|
|
97
106
|
NEXT_SLIDE = "nextSlide",
|
|
98
107
|
PAUSE_PRESENTATION = "pausePresentation",
|
|
99
108
|
PRESENTATION_READY = "presentationReady",
|
|
@@ -116,6 +125,8 @@ export declare enum EVENTS {
|
|
|
116
125
|
|
|
117
126
|
export declare function filterAttributes(attributes: NamedNodeMap): IFilteredAttributes;
|
|
118
127
|
|
|
128
|
+
export declare function formatContent(message: IMessage): string;
|
|
129
|
+
|
|
119
130
|
export declare interface ICategory {
|
|
120
131
|
type: string;
|
|
121
132
|
data: string[];
|