elcrm 0.8.21 → 0.8.23
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/Format/Age.d.ts +1 -0
- package/dist/Format/index.d.ts +2 -0
- package/dist/Scrolling/Scrolling.d.ts +2 -1
- package/dist/Scrolling/index.d.ts +1 -4
- package/dist/Store/Store.d.ts +2 -2
- package/dist/index.es.js +890 -888
- package/dist/index.umd.js +10 -10
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function (d: string): string;
|
package/dist/Format/index.d.ts
CHANGED
|
@@ -12,8 +12,10 @@ import { default as CapitalizeFirstLetter } from './CapitalizeFirstLetter';
|
|
|
12
12
|
import { default as DeclensionWord } from './DeclensionWord';
|
|
13
13
|
import { default as Select } from './Select';
|
|
14
14
|
import { default as ObjectByArray } from './ObjectByArray';
|
|
15
|
+
import { default as Age } from './Age';
|
|
15
16
|
|
|
16
17
|
declare const _default: {
|
|
18
|
+
Age: typeof Age;
|
|
17
19
|
Date: typeof Date;
|
|
18
20
|
MoneyString: (num: any) => string | false;
|
|
19
21
|
DateSort: typeof DateSort;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare function Scrolling(props: any): JSX.Element;
|
package/dist/Store/Store.d.ts
CHANGED
|
@@ -12,11 +12,11 @@ export declare function getAUTH(): string;
|
|
|
12
12
|
export declare function setPORT(j: string): void;
|
|
13
13
|
export declare function getPORT(): any;
|
|
14
14
|
export declare function usePage(): any[];
|
|
15
|
-
export declare function setPage(o: string): void;
|
|
15
|
+
export declare function setPage(o: string, reload?: boolean): void;
|
|
16
16
|
export declare function getPage(): any;
|
|
17
17
|
export declare function isPage(page: string): boolean;
|
|
18
18
|
export declare function useModule(): any[];
|
|
19
|
-
export declare function setModule(module: string, reload
|
|
19
|
+
export declare function setModule(module: string, reload?: boolean): void;
|
|
20
20
|
export declare function getModule(): any;
|
|
21
21
|
export declare function isModule(module: string): boolean;
|
|
22
22
|
export declare function useTabs(tab?: any): any[] | undefined;
|