elcrm 0.9.82 → 0.9.83
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/Animation/Counter.d.ts +1 -1
- package/dist/Animation/index.d.ts +1 -1
- package/dist/Lang/Lang.d.ts +1 -1
- package/dist/Lang/index.d.ts +1 -1
- package/dist/index.es.js +1510 -1510
- package/dist/index.umd.js +9 -9
- package/package.json +1 -1
|
@@ -3,5 +3,5 @@ export type TCounter = {
|
|
|
3
3
|
from: number;
|
|
4
4
|
to: number;
|
|
5
5
|
};
|
|
6
|
-
declare const Counter: ({ before, from, to }:
|
|
6
|
+
declare const Counter: ({ before, from, to, secund }: any) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Counter;
|
package/dist/Lang/Lang.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
export declare const addDictionary: (j: any) => void;
|
|
2
|
+
export declare const addDictionary: (j: any, s?: string) => void;
|
|
3
3
|
export declare function useData(lang?: string): string[];
|
|
4
4
|
export type TLangProvider = {
|
|
5
5
|
lang?: string;
|
package/dist/Lang/index.d.ts
CHANGED