buzzcasting-storage 2.11.2 → 2.11.4
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 +10 -0
- package/dist/buzzcasting-storage.esm.js +738 -685
- 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;",
|
|
@@ -117,6 +125,8 @@ export declare enum EVENTS {
|
|
|
117
125
|
|
|
118
126
|
export declare function filterAttributes(attributes: NamedNodeMap): IFilteredAttributes;
|
|
119
127
|
|
|
128
|
+
export declare function formatContent(message: IMessage): string;
|
|
129
|
+
|
|
120
130
|
export declare interface ICategory {
|
|
121
131
|
type: string;
|
|
122
132
|
data: string[];
|