elcrm 0.8.3 → 0.8.5
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/Store/Store.d.ts +1 -0
- package/dist/Store/index.d.ts +2 -1
- package/dist/index.es.js +468 -464
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
package/dist/Store/Store.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export declare function getSort(): any;
|
|
|
36
36
|
export declare function setCompany(s: any): void;
|
|
37
37
|
export declare function getCompany(i?: any): any;
|
|
38
38
|
export declare function setSelect(o: any): void;
|
|
39
|
+
export declare function addSelect(n: string, o: any): void;
|
|
39
40
|
export declare function getSelect(a?: any, b?: any): any;
|
|
40
41
|
export declare function setApi(o: any): void;
|
|
41
42
|
export declare function getApi(a: any): any;
|
package/dist/Store/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { setSSID, getSSID, setAUTH, getAUTH, getPORT, setPORT, Logaut, Start, setMenu, getMenu, useSort, setSort, getSort, setCompany, getCompany, setSelect, getSelect, setApi, getApi, setPayment, getPayment, setUser, getUser, getDefaultModules } from './Store';
|
|
1
|
+
import { setSSID, getSSID, setAUTH, getAUTH, getPORT, setPORT, Logaut, Start, setMenu, getMenu, useSort, setSort, getSort, setCompany, getCompany, setSelect, getSelect, addSelect, setApi, getApi, setPayment, getPayment, setUser, getUser, getDefaultModules } from './Store';
|
|
2
2
|
|
|
3
3
|
declare const _default: {
|
|
4
4
|
setSSID: typeof setSSID;
|
|
@@ -17,6 +17,7 @@ declare const _default: {
|
|
|
17
17
|
setCompany: typeof setCompany;
|
|
18
18
|
getCompany: typeof getCompany;
|
|
19
19
|
setSelect: typeof setSelect;
|
|
20
|
+
addSelect: typeof addSelect;
|
|
20
21
|
getSelect: typeof getSelect;
|
|
21
22
|
setApi: typeof setApi;
|
|
22
23
|
getApi: typeof getApi;
|