elcrm 0.9.8 → 0.9.10
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/Init/Init.d.ts +2 -2
- package/dist/Lang/Lang.d.ts +9 -0
- package/dist/Lang/index.d.ts +6 -0
- package/dist/Sistym/index.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +983 -959
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
package/dist/Init/Init.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
type Props = {
|
|
3
3
|
children?: any;
|
|
4
|
-
|
|
4
|
+
lang?: string;
|
|
5
5
|
};
|
|
6
|
-
declare const Init: ({ children,
|
|
6
|
+
declare const Init: ({ children, lang }: Props) => import('react').ReactNode;
|
|
7
7
|
export default Init;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const addDictionary: (j: any) => void;
|
|
2
|
+
export declare function useData(lang?: string): string[];
|
|
3
|
+
export type TLangProvider = {
|
|
4
|
+
lang?: string;
|
|
5
|
+
children: any;
|
|
6
|
+
};
|
|
7
|
+
export declare const Provider: ({ lang, children }: TLangProvider) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const getDictionary: (lang?: string) => any;
|
|
9
|
+
export declare const setDictionary: (lang?: string) => void;
|
package/dist/Sistym/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { setDefaultModules as defaultModule } from '../Store/Store';
|
|
1
2
|
import { Api, Server, Client, Host, Import, Crypto } from './Version';
|
|
2
3
|
declare const _default: {
|
|
3
4
|
version: {
|
|
@@ -8,5 +9,6 @@ declare const _default: {
|
|
|
8
9
|
Host: typeof Host;
|
|
9
10
|
Import: typeof Import;
|
|
10
11
|
Crypto: typeof Crypto;
|
|
12
|
+
defaultModule: typeof defaultModule;
|
|
11
13
|
};
|
|
12
14
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export { default as Filter } from './Filter';
|
|
|
34
34
|
export { default as Notifications } from './Notifications';
|
|
35
35
|
export { default as Pagination } from './Pagination';
|
|
36
36
|
export { default as List } from './List';
|
|
37
|
+
export { default as Lang } from './Lang';
|
|
37
38
|
export { default as Company } from './Company';
|
|
38
39
|
export { default as WebRTC } from './WebRTC/WebRTC';
|
|
39
40
|
export { default as Test } from './Test/Test';
|