@nectary/assets 3.6.5 → 3.6.7

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/bundle.ts CHANGED
@@ -145,6 +145,8 @@ export { IconChannelMmsRound } from './icons-channel/mms-round'
145
145
  export { IconChannelMmsSquare } from './icons-channel/mms-square'
146
146
  export { IconChannelNotify } from './icons-channel/notify'
147
147
  export { IconChannelNotifySquare } from './icons-channel/notify-square'
148
+ export { IconChannelPhoneRound } from './icons-channel/phone-round'
149
+ export { IconChannelPhoneSquare } from './icons-channel/phone-square'
148
150
  export { IconChannelPushRound } from './icons-channel/push-round'
149
151
  export { IconChannelPushSquare } from './icons-channel/push-square'
150
152
  export { IconChannelRcsRound } from './icons-channel/rcs-round'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nectary/assets",
3
- "version": "3.6.5",
3
+ "version": "3.6.7",
4
4
  "files": [
5
5
  "**/*/*.css",
6
6
  "**/*/*.json",
@@ -0,0 +1,51 @@
1
+ // Generated by dts-bundle-generator v9.5.1
2
+
3
+ export type SinchElementName = `sinch-${string}`;
4
+ export interface GlobalManagerConfig {
5
+ storeKey: symbol;
6
+ registryUrl: string;
7
+ baseElementNames: Set<string>;
8
+ nameToPathMap?: Map<string, string>;
9
+ }
10
+ export interface GlobalManagerInitOptions {
11
+ /**
12
+ * URL to resolve the modules from
13
+ */
14
+ cdnUrl: string;
15
+ /**
16
+ * Fallback URL to resolve the modules from if `cdnUrl` fails
17
+ */
18
+ fallbackCdnUrl?: string;
19
+ /**
20
+ * Preloads all components from the bundle.js module
21
+ */
22
+ preload?: boolean;
23
+ /**
24
+ * Target version of the library to resolve
25
+ *
26
+ * If left unspecified, it will resolve to the latest version
27
+ */
28
+ targetlibVersion?: string;
29
+ }
30
+ declare abstract class GlobalElementsManager {
31
+ private config;
32
+ constructor(config: GlobalManagerConfig);
33
+ getConstructor(name: SinchElementName): Promise<CustomElementConstructor> | null;
34
+ private patchCustomElements;
35
+ private toClassName;
36
+ private loadModule;
37
+ private createLoader;
38
+ private preloadBundle;
39
+ init(options: GlobalManagerInitOptions): Promise<void>;
40
+ whenLoaded(): Promise<void>;
41
+ private getModulePath;
42
+ preload(name: SinchElementName | SinchElementName[] | "all"): Promise<void>;
43
+ }
44
+ declare class GlobalAssetsManagerImpl extends GlobalElementsManager {
45
+ private static instance;
46
+ constructor();
47
+ static getInstance(): GlobalAssetsManagerImpl;
48
+ }
49
+ export declare const GlobalAssetsManager: GlobalAssetsManagerImpl;
50
+
51
+ export {};