Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
32
frontend/node_modules/recharts/es6/shape/Dot.js
generated
vendored
Normal file
32
frontend/node_modules/recharts/es6/shape/Dot.js
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
|
||||
import * as React from 'react';
|
||||
import { clsx } from 'clsx';
|
||||
import { adaptEventHandlers } from '../util/types';
|
||||
import { svgPropertiesNoEvents } from '../util/svgPropertiesNoEvents';
|
||||
import { isNumber } from '../util/DataUtils';
|
||||
/**
|
||||
* Renders a dot in the chart.
|
||||
*
|
||||
* This component accepts X and Y coordinates in pixels.
|
||||
* If you need to position the rectangle based on your chart's data,
|
||||
* consider using the {@link ReferenceDot} component instead.
|
||||
*
|
||||
* @param props
|
||||
* @constructor
|
||||
*/
|
||||
export var Dot = props => {
|
||||
var cx = props.cx,
|
||||
cy = props.cy,
|
||||
r = props.r,
|
||||
className = props.className;
|
||||
var layerClass = clsx('recharts-dot', className);
|
||||
if (isNumber(cx) && isNumber(cy) && isNumber(r)) {
|
||||
return /*#__PURE__*/React.createElement("circle", _extends({}, svgPropertiesNoEvents(props), adaptEventHandlers(props), {
|
||||
className: layerClass,
|
||||
cx: cx,
|
||||
cy: cy,
|
||||
r: r
|
||||
}));
|
||||
}
|
||||
return null;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue