@gravity-ui/charts 1.51.6 → 1.51.8
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/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/index.js +1 -0
- package/dist/cjs/index.d.ts +0 -1
- package/dist/cjs/index.js +0 -1
- package/dist/cjs/setup-jsdom.d.ts +0 -1
- package/dist/cjs/setup-jsdom.js +1 -1
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.js +1 -0
- package/dist/esm/index.d.ts +0 -1
- package/dist/esm/index.js +0 -1
- package/dist/esm/setup-jsdom.d.ts +0 -1
- package/dist/esm/setup-jsdom.js +1 -1
- package/package.json +2 -4
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import debounce from 'lodash/debounce';
|
|
3
3
|
import { i18nFactory } from '../core/i18n';
|
|
4
4
|
import { validateData } from '../core/validation';
|
|
5
|
+
import '../plugins';
|
|
5
6
|
import { ChartInner } from './ChartInner';
|
|
6
7
|
export * from './Tooltip/ChartTooltipContent';
|
|
7
8
|
export const Chart = React.forwardRef(function Chart(props, forwardedRef) {
|
package/dist/cjs/index.d.ts
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './plugins';
|
package/dist/cjs/setup-jsdom.js
CHANGED
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import debounce from 'lodash/debounce';
|
|
3
3
|
import { i18nFactory } from '../core/i18n';
|
|
4
4
|
import { validateData } from '../core/validation';
|
|
5
|
+
import '../plugins';
|
|
5
6
|
import { ChartInner } from './ChartInner';
|
|
6
7
|
export * from './Tooltip/ChartTooltipContent';
|
|
7
8
|
export const Chart = React.forwardRef(function Chart(props, forwardedRef) {
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import './plugins';
|
package/dist/esm/setup-jsdom.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/charts",
|
|
3
|
-
"version": "1.51.
|
|
3
|
+
"version": "1.51.8",
|
|
4
4
|
"description": "A flexible JavaScript library for data visualization and chart rendering using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
"sideEffects": [
|
|
23
23
|
"*.css",
|
|
24
24
|
"*.scss",
|
|
25
|
-
"
|
|
26
|
-
"./dist/esm/plugins/index.js",
|
|
27
|
-
"./dist/cjs/plugins/index.js"
|
|
25
|
+
"**/plugins/index.*"
|
|
28
26
|
],
|
|
29
27
|
"files": [
|
|
30
28
|
"dist",
|