Skip to content

Commit 83c543e

Browse files
committed
build - 3.52.0
1 parent 26eecaa commit 83c543e

9 files changed

+1401
-738
lines changed

dist/apexcharts.amd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apexcharts.common.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apexcharts.css

-7
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,6 @@ rect.legend-mouseover-inactive,
173173
padding-bottom: 4px
174174
}
175175

176-
.apexcharts-tooltip-series-group-hidden {
177-
opacity: 0;
178-
height: 0;
179-
line-height: 0;
180-
padding: 0 !important
181-
}
182-
183176
.apexcharts-tooltip-y-group {
184177
padding: 6px 0 5px
185178
}

dist/apexcharts.esm.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/apexcharts.js

+49-36
Large diffs are not rendered by default.

dist/apexcharts.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jest.config.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// For a detailed explanation regarding each configuration property, visit:
22
// https://jestjs.io/docs/en/configuration.html
33
module.exports = {
4+
preset: 'jest-puppeteer',
5+
46
// Automatically clear mock calls and instances between every test
57
clearMocks: true,
68

@@ -46,16 +48,16 @@ module.exports = {
4648
testPathIgnorePatterns: [
4749
'/node_modules/',
4850
'/tests/unit/data/',
49-
'/tests/unit/utils/'
51+
'/tests/unit/utils/',
5052
],
5153

5254
// The regexp pattern Jest uses to detect test files
5355
// testRegex: "",
5456

5557
transform: {
5658
'^.+\\.js$': 'babel-jest',
57-
'^.+\\.svg$': '<rootDir>/tests/unit/utils/svg-transform.js'
58-
}
59+
'^.+\\.svg$': '<rootDir>/tests/unit/utils/svg-transform.js',
60+
},
5961

6062
// transformIgnorePatterns: ['<rootDir>/build/']
6163
}

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@
6767
"eslint-plugin-promise": "4.2.1",
6868
"eslint-webpack-plugin": "4.0.0",
6969
"fs-extra": "8.1.0",
70-
"jest": "27.3.1",
70+
"jest": "29.7.0",
71+
"jest-environment-jsdom": "29.7.0",
72+
"jest-puppeteer": "^10.0.1",
7173
"nunjucks": "3.2.4",
7274
"nyc": "15.0.0",
7375
"pixelmatch": "5.1.0",
@@ -107,4 +109,4 @@
107109
"visualizations",
108110
"data"
109111
]
110-
}
112+
}

yarn.lock

+1,333-680
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)