@automattic/charts 1.3.0 → 1.4.0

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
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.4.0] - 2026-05-14
9
+ ### Changed
10
+ - Charts: expose a source-side `./style.css` alias so monorepo consumers can resolve the import without a prior build. [#48682]
11
+ - Charts: expose tickValues on AxisOptions and nice on ScaleOptions so callers can force exact axis ticks. [#48722]
12
+ - Update package dependencies. [#48695]
13
+ - Update package dependencies. [#48696]
14
+
15
+ ### Removed
16
+ - Charts: remove the `useTooltipPortalRelocator` hook and the `portalContainer` prop on `GlobalChartsProvider`. The relocator (added in #47118 / 0.56.4) caused tooltip glyphs and the tooltip box to drift away from the chart line by exactly the page scroll offset on scrolled pages. [#48617]
17
+
18
+ ## [1.3.1] - 2026-05-11
19
+ ### Changed
20
+ - Update dependencies. [#43811]
21
+
8
22
  ## [1.3.0] - 2026-05-04
9
23
  ### Added
10
24
  - Charts: Add AreaChart component for stacked and overlapping area visualisations. [#48388]
@@ -816,6 +830,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
816
830
  - Fixed lints following ESLint rule changes for TS [#40584]
817
831
  - Fixing a bug in Chart storybook data. [#40640]
818
832
 
833
+ [1.4.0]: https://github.com/Automattic/charts/compare/v1.3.1...v1.4.0
834
+ [1.3.1]: https://github.com/Automattic/charts/compare/v1.3.0...v1.3.1
819
835
  [1.3.0]: https://github.com/Automattic/charts/compare/v1.2.1...v1.3.0
820
836
  [1.2.1]: https://github.com/Automattic/charts/compare/v1.2.0...v1.2.1
821
837
  [1.2.0]: https://github.com/Automattic/charts/compare/v1.1.1...v1.2.0
package/dist/index.cjs CHANGED
@@ -495,103 +495,6 @@ var useSingleChartContext = useChartInstanceContext;
495
495
  var _d3color = require('@visx/vendor/d3-color');
496
496
 
497
497
 
498
- // src/hooks/use-tooltip-portal-relocator.ts
499
-
500
-
501
- // src/hooks/use-tooltip-portal-relocator.module.scss
502
- var use_tooltip_portal_relocator_module_default = {
503
- "relocatedPortal": "a8ccharts-jCw5dQ"
504
- };
505
-
506
- // src/hooks/use-tooltip-portal-relocator.ts
507
- function isVisxPortalNode(node2) {
508
- return node2 instanceof HTMLDivElement && node2.parentElement === document.body && !node2.id && !node2.className && node2.querySelector(".visx-tooltip") !== null;
509
- }
510
- var patchRefCount = 0;
511
- var origRemoveChild = null;
512
- var patchedRemoveChild = null;
513
- var relocatedNodes = /* @__PURE__ */ new WeakSet();
514
- function installRemoveChildPatch() {
515
- if (patchRefCount++ > 0) {
516
- return;
517
- }
518
- origRemoveChild = document.body.removeChild;
519
- patchedRemoveChild = function(child) {
520
- if (relocatedNodes.has(child) && child.parentNode !== this) {
521
- relocatedNodes.delete(child);
522
- _optionalChain([child, 'access', _2 => _2.parentNode, 'optionalAccess', _3 => _3.removeChild, 'call', _4 => _4(child)]);
523
- return child;
524
- }
525
- return origRemoveChild.call(this, child);
526
- };
527
- document.body.removeChild = patchedRemoveChild;
528
- }
529
- function uninstallRemoveChildPatch() {
530
- if (--patchRefCount > 0) {
531
- return;
532
- }
533
- if (document.body.removeChild === patchedRemoveChild) {
534
- document.body.removeChild = origRemoveChild;
535
- }
536
- origRemoveChild = null;
537
- patchedRemoveChild = null;
538
- }
539
- function useTooltipPortalRelocator(containerRef) {
540
- _react.useEffect.call(void 0, () => {
541
- const container = _optionalChain([containerRef, 'optionalAccess', _5 => _5.current]);
542
- if (!container) {
543
- return;
544
- }
545
- const instanceNodes = /* @__PURE__ */ new Set();
546
- const relocateNode = (node2) => {
547
- if (!isVisxPortalNode(node2)) {
548
- return;
549
- }
550
- node2.style.opacity = "0";
551
- node2.classList.add(use_tooltip_portal_relocator_module_default.relocatedPortal);
552
- const { activeElement } = node2.ownerDocument;
553
- const focusedElement = activeElement instanceof HTMLElement && node2.contains(activeElement) ? activeElement : null;
554
- container.insertBefore(node2, container.firstChild);
555
- relocatedNodes.add(node2);
556
- instanceNodes.add(node2);
557
- if (focusedElement) {
558
- focusedElement.focus();
559
- }
560
- requestAnimationFrame(() => {
561
- requestAnimationFrame(() => {
562
- node2.style.opacity = "";
563
- });
564
- });
565
- };
566
- installRemoveChildPatch();
567
- for (const child of Array.from(document.body.children)) {
568
- relocateNode(child);
569
- }
570
- const observer = new MutationObserver((mutations) => {
571
- for (const mutation of mutations) {
572
- for (const node2 of mutation.addedNodes) {
573
- relocateNode(node2);
574
- }
575
- }
576
- });
577
- observer.observe(document.body, { childList: true });
578
- return () => {
579
- observer.disconnect();
580
- for (const node2 of instanceNodes) {
581
- if (node2 instanceof HTMLElement) {
582
- node2.classList.remove(use_tooltip_portal_relocator_module_default.relocatedPortal);
583
- }
584
- if (node2.parentNode === container) {
585
- document.body.appendChild(node2);
586
- }
587
- relocatedNodes.delete(node2);
588
- }
589
- instanceNodes.clear();
590
- uninstallRemoveChildPatch();
591
- };
592
- }, [containerRef]);
593
- }
594
-
595
498
  // src/utils/create-composition.ts
596
499
  function attachSubComponents(Chart2, subComponents) {
597
500
  return Object.assign(Chart2, subComponents);
@@ -722,14 +625,14 @@ var getLongestTickWidth = (ticks, formatTick, labelStyle) => {
722
625
 
723
626
  // src/utils/get-styles.ts
724
627
  function getSeriesLineStyles(seriesData, index, providerTheme) {
725
- const themeSemanticLineStyle = _optionalChain([providerTheme, 'optionalAccess', _6 => _6.lineChart, 'optionalAccess', _7 => _7.lineStyles, 'optionalAccess', _8 => _8[_optionalChain([seriesData, 'access', _9 => _9.options, 'optionalAccess', _10 => _10.type])]]);
726
- const themeSeriesLineStyle = _optionalChain([providerTheme, 'optionalAccess', _11 => _11.seriesLineStyles, 'optionalAccess', _12 => _12[index % providerTheme.seriesLineStyles.length]]);
727
- return _nullishCoalesce(_nullishCoalesce(_nullishCoalesce(_optionalChain([seriesData, 'access', _13 => _13.options, 'optionalAccess', _14 => _14.seriesLineStyle]), () => ( themeSemanticLineStyle)), () => ( themeSeriesLineStyle)), () => ( {}));
628
+ const themeSemanticLineStyle = _optionalChain([providerTheme, 'optionalAccess', _2 => _2.lineChart, 'optionalAccess', _3 => _3.lineStyles, 'optionalAccess', _4 => _4[_optionalChain([seriesData, 'access', _5 => _5.options, 'optionalAccess', _6 => _6.type])]]);
629
+ const themeSeriesLineStyle = _optionalChain([providerTheme, 'optionalAccess', _7 => _7.seriesLineStyles, 'optionalAccess', _8 => _8[index % providerTheme.seriesLineStyles.length]]);
630
+ return _nullishCoalesce(_nullishCoalesce(_nullishCoalesce(_optionalChain([seriesData, 'access', _9 => _9.options, 'optionalAccess', _10 => _10.seriesLineStyle]), () => ( themeSemanticLineStyle)), () => ( themeSeriesLineStyle)), () => ( {}));
728
631
  }
729
632
  function getItemShapeStyles(series, index, theme, legendShape) {
730
- const seriesShapeStyles = _nullishCoalesce(_optionalChain([series, 'access', _15 => _15.options, 'optionalAccess', _16 => _16.legendShapeStyle]), () => ( {}));
633
+ const seriesShapeStyles = _nullishCoalesce(_optionalChain([series, 'access', _11 => _11.options, 'optionalAccess', _12 => _12.legendShapeStyle]), () => ( {}));
731
634
  const lineStyles = legendShape === "line" ? getSeriesLineStyles(series, index, theme) : {};
732
- const themeShapeStyles = _optionalChain([theme, 'access', _17 => _17.legend, 'optionalAccess', _18 => _18.shapeStyles, 'optionalAccess', _19 => _19[index]]);
635
+ const themeShapeStyles = _optionalChain([theme, 'access', _13 => _13.legend, 'optionalAccess', _14 => _14.shapeStyles, 'optionalAccess', _15 => _15[index]]);
733
636
  const itemShapeStyles = {
734
637
  ...seriesShapeStyles,
735
638
  ...lineStyles
@@ -1096,13 +999,11 @@ var _jsxruntime = require('react/jsx-runtime');
1096
999
  var GlobalChartsContext = /* @__PURE__ */ _react.createContext.call(void 0, null);
1097
1000
  var GlobalChartsProvider = ({
1098
1001
  children,
1099
- theme,
1100
- portalContainer
1002
+ theme
1101
1003
  }) => {
1102
1004
  const [charts, setCharts] = _react.useState.call(void 0, () => /* @__PURE__ */ new Map());
1103
1005
  const [hiddenSeries, setHiddenSeries] = _react.useState.call(void 0, () => /* @__PURE__ */ new Map());
1104
1006
  const wrapperRef = _react.useRef.call(void 0, null);
1105
- useTooltipPortalRelocator(_nullishCoalesce(portalContainer, () => ( wrapperRef)));
1106
1007
  const providerTheme = _react.useMemo.call(void 0, () => {
1107
1008
  return theme ? mergeThemes(defaultTheme, theme) : defaultTheme;
1108
1009
  }, [theme]);
@@ -1202,12 +1103,12 @@ var GlobalChartsProvider = ({
1202
1103
  const isPointPercentageData = data && typeof data === "object" && "value" in data && typeof data.value === "number" && !("data" in data);
1203
1104
  return {
1204
1105
  color: resolveColor({
1205
- group: _optionalChain([data, 'optionalAccess', _20 => _20.group]),
1106
+ group: _optionalChain([data, 'optionalAccess', _16 => _16.group]),
1206
1107
  index,
1207
- overrideColor: overrideColor || isSeriesData && _optionalChain([data, 'optionalAccess', _21 => _21.options, 'optionalAccess', _22 => _22.stroke]) || isPointPercentageData && _optionalChain([data, 'optionalAccess', _23 => _23.color])
1108
+ overrideColor: overrideColor || isSeriesData && _optionalChain([data, 'optionalAccess', _17 => _17.options, 'optionalAccess', _18 => _18.stroke]) || isPointPercentageData && _optionalChain([data, 'optionalAccess', _19 => _19.color])
1208
1109
  }),
1209
1110
  lineStyles: isSeriesData ? getSeriesLineStyles(data, index, providerTheme) : {},
1210
- glyph: _optionalChain([providerTheme, 'access', _24 => _24.glyphs, 'optionalAccess', _25 => _25[index]]),
1111
+ glyph: _optionalChain([providerTheme, 'access', _20 => _20.glyphs, 'optionalAccess', _21 => _21[index]]),
1211
1112
  shapeStyles: isSeriesData ? getItemShapeStyles(data, index, providerTheme, legendShape) : {}
1212
1113
  };
1213
1114
  }, [providerTheme, resolveColor]);
@@ -1298,7 +1199,7 @@ var useDeepMemo = (value) => {
1298
1199
  var useXYChartTheme = (data) => {
1299
1200
  const theme = useGlobalChartsTheme();
1300
1201
  return _react.useMemo.call(void 0, () => {
1301
- const seriesColors = (_nullishCoalesce(data, () => ( []))).map((series) => _optionalChain([series, 'access', _26 => _26.options, 'optionalAccess', _27 => _27.stroke])).filter((color) => Boolean(color));
1202
+ const seriesColors = (_nullishCoalesce(data, () => ( []))).map((series) => _optionalChain([series, 'access', _22 => _22.options, 'optionalAccess', _23 => _23.stroke])).filter((color) => Boolean(color));
1302
1203
  return _xychart.buildChartTheme.call(void 0, {
1303
1204
  ...theme,
1304
1205
  colors: [...seriesColors, ..._nullishCoalesce(theme.colors, () => ( []))]
@@ -1310,7 +1211,7 @@ var useXYChartTheme = (data) => {
1310
1211
 
1311
1212
  var useChartDataTransform = (data) => {
1312
1213
  return _react.useMemo.call(void 0, () => {
1313
- const firstPoint = _optionalChain([data, 'optionalAccess', _28 => _28[0], 'optionalAccess', _29 => _29.data, 'optionalAccess', _30 => _30[0]]);
1214
+ const firstPoint = _optionalChain([data, 'optionalAccess', _24 => _24[0], 'optionalAccess', _25 => _25.data, 'optionalAccess', _26 => _26[0]]);
1314
1215
  const hasDateProperties = firstPoint && ("date" in firstPoint || "dateString" in firstPoint);
1315
1216
  if (!hasDateProperties) {
1316
1217
  return data;
@@ -1348,9 +1249,9 @@ var DEFAULT_FONT_SIZE = 12;
1348
1249
  var DEFAULT_TICK_LENGTH = 8;
1349
1250
  var DEFAULT_Y_TICK_WIDTH = 40;
1350
1251
  var getXAxisLabelMetrics = (theme, orientation) => {
1351
- const xAxisStyles = orientation === "top" ? _optionalChain([theme, 'access', _31 => _31.axisStyles, 'optionalAccess', _32 => _32.x, 'optionalAccess', _33 => _33.top]) : _optionalChain([theme, 'access', _34 => _34.axisStyles, 'optionalAccess', _35 => _35.x, 'optionalAccess', _36 => _36.bottom]);
1352
- const fontSize = resolveFontSize(_optionalChain([xAxisStyles, 'optionalAccess', _37 => _37.axisLabel, 'optionalAccess', _38 => _38.fontSize])) || resolveFontSize(_optionalChain([theme, 'access', _39 => _39.svgLabelSmall, 'optionalAccess', _40 => _40.fontSize])) || DEFAULT_FONT_SIZE;
1353
- const tickLength = _nullishCoalesce(_optionalChain([xAxisStyles, 'optionalAccess', _41 => _41.tickLength]), () => ( DEFAULT_TICK_LENGTH));
1252
+ const xAxisStyles = orientation === "top" ? _optionalChain([theme, 'access', _27 => _27.axisStyles, 'optionalAccess', _28 => _28.x, 'optionalAccess', _29 => _29.top]) : _optionalChain([theme, 'access', _30 => _30.axisStyles, 'optionalAccess', _31 => _31.x, 'optionalAccess', _32 => _32.bottom]);
1253
+ const fontSize = resolveFontSize(_optionalChain([xAxisStyles, 'optionalAccess', _33 => _33.axisLabel, 'optionalAccess', _34 => _34.fontSize])) || resolveFontSize(_optionalChain([theme, 'access', _35 => _35.svgLabelSmall, 'optionalAccess', _36 => _36.fontSize])) || DEFAULT_FONT_SIZE;
1254
+ const tickLength = _nullishCoalesce(_optionalChain([xAxisStyles, 'optionalAccess', _37 => _37.tickLength]), () => ( DEFAULT_TICK_LENGTH));
1354
1255
  return {
1355
1256
  fontSize,
1356
1257
  tickLength
@@ -1360,7 +1261,10 @@ var useChartMargin = (height, options, data, theme, horizontal = false) => {
1360
1261
  const yTicks = _react.useMemo.call(void 0, () => {
1361
1262
  const allDataPoints = data.flatMap((series) => series.data);
1362
1263
  if (horizontal) {
1363
- return allDataPoints.map((d) => d.label || _optionalChain([options, 'access', _42 => _42.axis, 'optionalAccess', _43 => _43.y, 'optionalAccess', _44 => _44.tickFormat, 'call', _45 => _45(d.date.getTime(), 0, [])]));
1264
+ return allDataPoints.map((d) => d.label || _optionalChain([options, 'access', _38 => _38.axis, 'optionalAccess', _39 => _39.y, 'optionalAccess', _40 => _40.tickFormat, 'call', _41 => _41(d.date.getTime(), 0, [])]));
1265
+ }
1266
+ if (_optionalChain([options, 'access', _42 => _42.axis, 'optionalAccess', _43 => _43.y, 'optionalAccess', _44 => _44.tickValues, 'optionalAccess', _45 => _45.length])) {
1267
+ return options.axis.y.tickValues;
1364
1268
  }
1365
1269
  const minY = Math.min(...allDataPoints.map((d) => d.value));
1366
1270
  const maxY = Math.max(...allDataPoints.map((d) => d.value));
@@ -1728,7 +1632,7 @@ function paramCase(input, options) {
1728
1632
  return dotCase(input, _tslib.__assign.call(void 0, { delimiter: "-" }, options));
1729
1633
  }
1730
1634
 
1731
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/useRefWithInit.js
1635
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/useRefWithInit.js
1732
1636
 
1733
1637
  var UNINITIALIZED = {};
1734
1638
  function useRefWithInit(init, initArg) {
@@ -1739,7 +1643,7 @@ function useRefWithInit(init, initArg) {
1739
1643
  return ref;
1740
1644
  }
1741
1645
 
1742
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/warn.js
1646
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/warn.js
1743
1647
  var set;
1744
1648
  if (process.env.NODE_ENV !== "production") {
1745
1649
  set = /* @__PURE__ */ new Set();
@@ -1754,7 +1658,7 @@ function warn(...messages) {
1754
1658
  }
1755
1659
  }
1756
1660
 
1757
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/formatErrorMessage.js
1661
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/formatErrorMessage.js
1758
1662
  function createFormatErrorMessage(baseUrl, prefix2) {
1759
1663
  return function formatErrorMessage2(code, ...args) {
1760
1664
  const url = new URL(baseUrl);
@@ -1766,10 +1670,10 @@ function createFormatErrorMessage(baseUrl, prefix2) {
1766
1670
  var formatErrorMessage = createFormatErrorMessage("https://base-ui.com/production-error", "Base UI");
1767
1671
  var formatErrorMessage_default = formatErrorMessage;
1768
1672
 
1769
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/useRenderElement.js
1673
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/internals/useRenderElement.js
1770
1674
 
1771
1675
 
1772
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/useMergedRefs.js
1676
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/useMergedRefs.js
1773
1677
  function useMergedRefs(a, b, c, d) {
1774
1678
  const forkRef = useRefWithInit(createForkRef).current;
1775
1679
  if (didChange(forkRef, a, b, c, d)) {
@@ -1858,17 +1762,17 @@ function update(forkRef, refs) {
1858
1762
  };
1859
1763
  }
1860
1764
 
1861
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/getReactElementRef.js
1765
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/getReactElementRef.js
1862
1766
 
1863
1767
 
1864
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/reactVersion.js
1768
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/reactVersion.js
1865
1769
 
1866
1770
  var majorVersion = parseInt(React2.version, 10);
1867
1771
  function isReactVersionAtLeast(reactVersionToCheck) {
1868
1772
  return majorVersion >= reactVersionToCheck;
1869
1773
  }
1870
1774
 
1871
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/getReactElementRef.js
1775
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/getReactElementRef.js
1872
1776
  function getReactElementRef(element) {
1873
1777
  if (!/* @__PURE__ */ React3.isValidElement(element)) {
1874
1778
  return null;
@@ -1878,7 +1782,7 @@ function getReactElementRef(element) {
1878
1782
  return _nullishCoalesce((isReactVersionAtLeast(19) ? _optionalChain([propsWithRef, 'optionalAccess', _60 => _60.ref]) : reactElement.ref), () => ( null));
1879
1783
  }
1880
1784
 
1881
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/mergeObjects.js
1785
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/mergeObjects.js
1882
1786
  function mergeObjects(a, b) {
1883
1787
  if (a && !b) {
1884
1788
  return a;
@@ -1895,7 +1799,11 @@ function mergeObjects(a, b) {
1895
1799
  return void 0;
1896
1800
  }
1897
1801
 
1898
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/getStateAttributesProps.js
1802
+ // ../../../node_modules/.pnpm/@base-ui+utils@0.2.8_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/empty.js
1803
+ var EMPTY_ARRAY = Object.freeze([]);
1804
+ var EMPTY_OBJECT = Object.freeze({});
1805
+
1806
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/internals/getStateAttributesProps.js
1899
1807
  function getStateAttributesProps(state, customMapping) {
1900
1808
  const props = {};
1901
1809
  for (const key in state) {
@@ -1916,17 +1824,17 @@ function getStateAttributesProps(state, customMapping) {
1916
1824
  return props;
1917
1825
  }
1918
1826
 
1919
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/resolveClassName.js
1827
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/resolveClassName.js
1920
1828
  function resolveClassName(className, state) {
1921
1829
  return typeof className === "function" ? className(state) : className;
1922
1830
  }
1923
1831
 
1924
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/resolveStyle.js
1832
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/resolveStyle.js
1925
1833
  function resolveStyle(style, state) {
1926
1834
  return typeof style === "function" ? style(state) : style;
1927
1835
  }
1928
1836
 
1929
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/merge-props/mergeProps.js
1837
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/merge-props/mergeProps.js
1930
1838
  var EMPTY_PROPS = {};
1931
1839
  function mergeProps(a, b, c, d, e) {
1932
1840
  if (!c && !d && !e && !a) {
@@ -2034,18 +1942,19 @@ function mergeEventHandlers(ourHandler, theirHandler) {
2034
1942
  if (!ourHandler) {
2035
1943
  return wrapEventHandler(theirHandler);
2036
1944
  }
2037
- return (event) => {
1945
+ return (...args) => {
1946
+ const event = args[0];
2038
1947
  if (isSyntheticEvent(event)) {
2039
1948
  const baseUIEvent = event;
2040
1949
  makeEventPreventable(baseUIEvent);
2041
- const result2 = theirHandler(baseUIEvent);
1950
+ const result2 = theirHandler(...args);
2042
1951
  if (!baseUIEvent.baseUIHandlerPrevented) {
2043
- _optionalChain([ourHandler, 'optionalCall', _63 => _63(baseUIEvent)]);
1952
+ _optionalChain([ourHandler, 'optionalCall', _63 => _63(...args)]);
2044
1953
  }
2045
1954
  return result2;
2046
1955
  }
2047
- const result = theirHandler(event);
2048
- _optionalChain([ourHandler, 'optionalCall', _64 => _64(event)]);
1956
+ const result = theirHandler(...args);
1957
+ _optionalChain([ourHandler, 'optionalCall', _64 => _64(...args)]);
2049
1958
  return result;
2050
1959
  };
2051
1960
  }
@@ -2053,11 +1962,12 @@ function wrapEventHandler(handler) {
2053
1962
  if (!handler) {
2054
1963
  return handler;
2055
1964
  }
2056
- return (event) => {
1965
+ return (...args) => {
1966
+ const event = args[0];
2057
1967
  if (isSyntheticEvent(event)) {
2058
1968
  makeEventPreventable(event);
2059
1969
  }
2060
- return handler(event);
1970
+ return handler(...args);
2061
1971
  };
2062
1972
  }
2063
1973
  function makeEventPreventable(event) {
@@ -2079,17 +1989,7 @@ function isSyntheticEvent(event) {
2079
1989
  return event != null && typeof event === "object" && "nativeEvent" in event;
2080
1990
  }
2081
1991
 
2082
- // ../../../node_modules/.pnpm/@base-ui+utils@0.2.7_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/utils/esm/empty.js
2083
- var EMPTY_ARRAY = Object.freeze([]);
2084
- var EMPTY_OBJECT = Object.freeze({});
2085
-
2086
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/constants.js
2087
- var BASE_UI_SWIPE_IGNORE_ATTRIBUTE = "data-base-ui-swipe-ignore";
2088
- var LEGACY_SWIPE_IGNORE_ATTRIBUTE = "data-swipe-ignore";
2089
- var BASE_UI_SWIPE_IGNORE_SELECTOR = `[${BASE_UI_SWIPE_IGNORE_ATTRIBUTE}]`;
2090
- var LEGACY_SWIPE_IGNORE_SELECTOR = `[${LEGACY_SWIPE_IGNORE_ATTRIBUTE}]`;
2091
-
2092
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/utils/useRenderElement.js
1992
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/internals/useRenderElement.js
2093
1993
 
2094
1994
  function useRenderElement(element, componentProps, params = {}) {
2095
1995
  const renderProp = componentProps.render;
@@ -2207,12 +2107,12 @@ function renderTag(Tag, props) {
2207
2107
  return /* @__PURE__ */ React4.createElement(Tag, props);
2208
2108
  }
2209
2109
 
2210
- // ../../../node_modules/.pnpm/@base-ui+react@1.4.0_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/use-render/useRender.js
2110
+ // ../../../node_modules/.pnpm/@base-ui+react@1.4.1_@date-fns+tz@1.4.1_@types+react@18.3.28_date-fns@4.1.0_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@base-ui/react/esm/use-render/useRender.js
2211
2111
  function useRender(params) {
2212
2112
  return useRenderElement(_nullishCoalesce(params.defaultTagName, () => ( "div")), params, params);
2213
2113
  }
2214
2114
 
2215
- // ../../../node_modules/.pnpm/@wordpress+ui@0.11.0_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1_stylelint@17.7.0/node_modules/@wordpress/ui/build-module/text/text.mjs
2115
+ // ../../../node_modules/.pnpm/@wordpress+ui@0.11.0_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@wordpress/ui/build-module/text/text.mjs
2216
2116
 
2217
2117
  if (typeof document !== "undefined" && process.env.NODE_ENV !== "test" && !document.head.querySelector("style[data-wp-hash='4130d64bea']")) {
2218
2118
  const style = document.createElement("style");
@@ -2246,7 +2146,7 @@ var Text = _react.forwardRef.call(void 0, function Text2({ variant = "body-md",
2246
2146
  return element;
2247
2147
  });
2248
2148
 
2249
- // ../../../node_modules/.pnpm/@wordpress+ui@0.11.0_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1_stylelint@17.7.0/node_modules/@wordpress/ui/build-module/stack/stack.mjs
2149
+ // ../../../node_modules/.pnpm/@wordpress+ui@0.11.0_@types+react@18.3.28_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@wordpress/ui/build-module/stack/stack.mjs
2250
2150
  if (typeof document !== "undefined" && process.env.NODE_ENV !== "test" && !document.head.querySelector("style[data-wp-hash='b51ff41489']")) {
2251
2151
  const style = document.createElement("style");
2252
2152
  style.setAttribute("data-wp-hash", "b51ff41489");
@@ -7617,10 +7517,10 @@ var config_values_default = Object.assign({}, CONTROL_PROPS, {
7617
7517
  var import_es6 = _chunkDZUJEN5Ncjs.__toESM.call(void 0, require_es6(), 1);
7618
7518
 
7619
7519
 
7620
- // ../../../node_modules/.pnpm/@wordpress+warning@3.44.0/node_modules/@wordpress/warning/build-module/utils.mjs
7520
+ // ../../../node_modules/.pnpm/@wordpress+warning@3.45.0/node_modules/@wordpress/warning/build-module/utils.mjs
7621
7521
  var logged = /* @__PURE__ */ new Set();
7622
7522
 
7623
- // ../../../node_modules/.pnpm/@wordpress+warning@3.44.0/node_modules/@wordpress/warning/build-module/index.mjs
7523
+ // ../../../node_modules/.pnpm/@wordpress+warning@3.45.0/node_modules/@wordpress/warning/build-module/index.mjs
7624
7524
  function isDev() {
7625
7525
  return globalThis.SCRIPT_DEBUG === true;
7626
7526
  }