elcrm 0.9.79 → 0.9.80

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.
@@ -0,0 +1,7 @@
1
+ import { Lite as Menu } from '../Menu/Lite';
2
+ import { Lite as List } from '../List/Lite';
3
+ declare const _default: {
4
+ Menu: typeof Menu;
5
+ List: typeof List;
6
+ };
7
+ export default _default;
@@ -0,0 +1,16 @@
1
+ declare global {
2
+ interface Window {
3
+ api?: any;
4
+ appInstall?: any;
5
+ }
6
+ interface Navigator {
7
+ getInstalledRelatedApps?: any;
8
+ }
9
+ }
10
+ type List = {
11
+ items?: any;
12
+ list?: any;
13
+ icons?: any;
14
+ };
15
+ export declare function Lite({ items, list, icons }: List): import("react/jsx-runtime").JSX.Element;
16
+ export {};
package/dist/index.d.ts CHANGED
@@ -16,6 +16,7 @@ export { default as Icon } from './Icon';
16
16
  export { default as Store } from './Store';
17
17
  export { default as Router } from './Router';
18
18
  export { default as Root } from './Root';
19
+ export { default as Lite } from './Lite';
19
20
  export { default as Triage } from './Triage';
20
21
  export { default as Format } from './Format';
21
22
  export { default as Event } from './Event';