@onesy/ui-react 1.0.190 → 1.0.192
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/Calendar/Calendar.js +1 -4
- package/currencies.d.ts +10 -0
- package/currencies.js +951 -0
- package/esm/Calendar/Calendar.js +3 -6
- package/esm/currencies.js +945 -0
- package/esm/index.js +1 -1
- package/esm/utils.js +15 -945
- package/index.js +1 -1
- package/package.json +1 -1
- package/utils.d.ts +2 -9
- package/utils.js +27 -948
package/index.js
CHANGED
package/package.json
CHANGED
package/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IPoint } from './types';
|
|
2
|
+
export { default as currencies } from './currencies';
|
|
2
3
|
export declare function reflow(element: HTMLElement): number;
|
|
3
4
|
export declare const staticClassName: (name: string, theme: any) => any;
|
|
4
5
|
export declare const iconSizeToFontSize: (value: string | number) => any;
|
|
@@ -37,13 +38,5 @@ export declare const formats: {
|
|
|
37
38
|
time: string;
|
|
38
39
|
};
|
|
39
40
|
export declare const iconFontSize = 20;
|
|
40
|
-
export declare const currencies: {
|
|
41
|
-
symbol: string;
|
|
42
|
-
name: string;
|
|
43
|
-
symbol_native: string;
|
|
44
|
-
decimal_digits: number;
|
|
45
|
-
rounding: number;
|
|
46
|
-
code: string;
|
|
47
|
-
name_plural: string;
|
|
48
|
-
}[];
|
|
49
41
|
export declare const decodeHTMLEntities: (html: string) => string;
|
|
42
|
+
export declare const scrollToMiddleOfParent: (element: HTMLElement) => void;
|