@edvisor/product-language 0.10.19 → 0.10.21
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/index.js +1 -10538
- package/lib/components/tooltip/tooltip.d.ts +1 -1
- package/lib/helpers/safe-navigation.d.ts +5 -1
- package/package.json +10 -9
|
@@ -11,7 +11,7 @@ export declare const CenterContainer: import("styled-components").StyledComponen
|
|
|
11
11
|
position: TooltipPosition;
|
|
12
12
|
width?: number | undefined;
|
|
13
13
|
}, never>;
|
|
14
|
-
export declare const TooltipBox: import("styled-components").StyledComponent<FC<import("
|
|
14
|
+
export declare const TooltipBox: import("styled-components").StyledComponent<FC<import("components/typography").ITextComponentProps, {}>, any, {
|
|
15
15
|
position: TooltipPosition;
|
|
16
16
|
}, never>;
|
|
17
17
|
interface ITooltip {
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import first from 'lodash/first.js';
|
|
2
|
+
import isString from 'lodash/isString.js';
|
|
3
|
+
import isFunction from 'lodash/isFunction.js';
|
|
4
|
+
import uniqueId from 'lodash/uniqueId.js';
|
|
5
|
+
export { first, isString, isFunction, uniqueId, };
|
|
1
6
|
/** even though we have null disabled in the repo,
|
|
2
7
|
* I still would not want isNil to skip checking null
|
|
3
8
|
* it is for juuuuust in case a third party sends us a null
|
|
@@ -14,4 +19,3 @@ export declare function is(pred?: boolean): boolean;
|
|
|
14
19
|
export declare function toArray<T>(obj: T | T[] | undefined | null): T[];
|
|
15
20
|
export declare function safeArray<T>(arr: T[] | undefined | null): T[];
|
|
16
21
|
export declare function safeCallback<T>(f?: (e: T) => void, e?: T): void;
|
|
17
|
-
export { first, isString, isFunction, uniqueId, debounce, throttle, } from 'lodash';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edvisor/product-language",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.21",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Edvisor.io product-language components",
|
|
6
6
|
"repository": "https://github.com/edvisor-io/front-end/",
|
|
@@ -10,12 +10,19 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"release": "release-it --disable-metrics --npm.skipChecks"
|
|
12
12
|
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"react-multi-date-picker": "^3.3.4",
|
|
15
|
+
"recharts": "^2.1.16",
|
|
16
|
+
"react-compound-slider": "^3.4.0",
|
|
17
|
+
"react-window": "^1.8.8",
|
|
18
|
+
"lodash": "^4.17.21"
|
|
19
|
+
},
|
|
13
20
|
"peerDependencies": {
|
|
14
21
|
"release": "*",
|
|
15
22
|
"react": "*",
|
|
23
|
+
"react-dom": "*",
|
|
16
24
|
"storybook": "*",
|
|
17
25
|
"styled-components": "*",
|
|
18
|
-
"lodash": "*",
|
|
19
26
|
"@storybook/addon-docs": "*"
|
|
20
27
|
},
|
|
21
28
|
"release-it": {
|
|
@@ -39,11 +46,5 @@
|
|
|
39
46
|
"module": "./index.js",
|
|
40
47
|
"main": "./index.js",
|
|
41
48
|
"type": "module",
|
|
42
|
-
"types": "./index.d.ts"
|
|
43
|
-
"dependencies": {
|
|
44
|
-
"react-multi-date-picker": "^3.3.4",
|
|
45
|
-
"recharts": "^2.1.16",
|
|
46
|
-
"react-compound-slider": "^3.4.0",
|
|
47
|
-
"react-window": "^1.8.8"
|
|
48
|
-
}
|
|
49
|
+
"types": "./index.d.ts"
|
|
49
50
|
}
|