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.
- package/dist/Lite/index.d.ts +7 -0
- package/dist/Menu/Lite.d.ts +16 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +4418 -3212
- package/dist/index.umd.js +40 -11
- package/package.json +1 -1
|
@@ -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';
|