@spider-analyzer/timeline 5.0.0 → 5.0.1
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 5.0.1
|
|
2
|
+
|
|
3
|
+
- Expose the stylesheets through the `exports` map so consumers can
|
|
4
|
+
import them without tripping Node/webpack's ESM resolver:
|
|
5
|
+
- `@spider-analyzer/timeline/timeline.css`
|
|
6
|
+
- `@spider-analyzer/timeline/tipDark.css`
|
|
7
|
+
- `@spider-analyzer/timeline/dist/{timeline,tipDark}.css` (backcompat)
|
|
8
|
+
- Stabilize the emitted CSS filenames (no more content hash) so those
|
|
9
|
+
import paths are durable across builds.
|
|
10
|
+
|
|
1
11
|
## 5.0.0
|
|
2
12
|
|
|
3
13
|
First v5 release on npm. Major rework focused on decoupling consumers
|
package/dist/index.js
CHANGED
|
@@ -10,9 +10,9 @@ var d3Selection = require('d3-selection');
|
|
|
10
10
|
var d3Drag = require('d3-drag');
|
|
11
11
|
var jsxRuntime = require('react/jsx-runtime');
|
|
12
12
|
var clsx3 = require('clsx');
|
|
13
|
-
require('./timeline
|
|
13
|
+
require('./timeline.css');
|
|
14
14
|
var ToolTipBase = require('rc-tooltip');
|
|
15
|
-
require('./tipDark
|
|
15
|
+
require('./tipDark.css');
|
|
16
16
|
var d3Time = require('d3-time');
|
|
17
17
|
|
|
18
18
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
@@ -426,8 +426,8 @@ var defaultLabels = {
|
|
|
426
426
|
var defaultQualityScale = d3Scale.scaleLinear().domain([0, 0.9, 1]).range(["#ff3724", "rgba(255,0,0,0.09)", "rgba(155,249,135,0.94)"]).clamp(true);
|
|
427
427
|
function ToolTip({ overlay, placement = "top", mouseEnterDelay = 0.5, prefixCls, align, visible, hidden, children }) {
|
|
428
428
|
const extraProps = {};
|
|
429
|
-
if (visible) extraProps.
|
|
430
|
-
if (hidden) extraProps.
|
|
429
|
+
if (visible) extraProps.visible = true;
|
|
430
|
+
if (hidden) extraProps.visible = false;
|
|
431
431
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
432
432
|
ToolTipBase__default.default,
|
|
433
433
|
{
|