`
*/
function useElementOffset() {
var extraDependencies = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [];
var [lastBoundingBox, setLastBoundingBox] = (0, import_react.useState)({
height: 0,
left: 0,
top: 0,
width: 0
});
return [lastBoundingBox, (0, import_react.useCallback)((node) => {
if (node != null) {
var rect = node.getBoundingClientRect();
var box = {
height: rect.height,
left: rect.left,
top: rect.top,
width: rect.width
};
if (Math.abs(box.height - lastBoundingBox.height) > EPS || Math.abs(box.left - lastBoundingBox.left) > EPS || Math.abs(box.top - lastBoundingBox.top) > EPS || Math.abs(box.width - lastBoundingBox.width) > EPS) setLastBoundingBox({
height: box.height,
left: box.left,
top: box.top,
width: box.width
});
}
}, [
lastBoundingBox.width,
lastBoundingBox.height,
lastBoundingBox.top,
lastBoundingBox.left,
...extraDependencies
])];
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/redux-npm-5.0.1-f8e6b1cb23-10c0.zip/node_modules/redux/dist/redux.mjs
var symbol_observable_default = typeof Symbol === "function" && Symbol.observable || "@@observable";
var randomString = () => Math.random().toString(36).substring(7).split("").join(".");
var actionTypes_default = {
INIT: `@@redux/INIT${/* @__PURE__ */ randomString()}`,
REPLACE: `@@redux/REPLACE${/* @__PURE__ */ randomString()}`,
PROBE_UNKNOWN_ACTION: () => `@@redux/PROBE_UNKNOWN_ACTION${randomString()}`
};
function isPlainObject$3(obj) {
if (typeof obj !== "object" || obj === null) return false;
let proto = obj;
while (Object.getPrototypeOf(proto) !== null) proto = Object.getPrototypeOf(proto);
return Object.getPrototypeOf(obj) === proto || Object.getPrototypeOf(obj) === null;
}
function miniKindOf(val) {
if (val === void 0) return "undefined";
if (val === null) return "null";
const type = typeof val;
switch (type) {
case "boolean":
case "string":
case "number":
case "symbol":
case "function": return type;
}
if (Array.isArray(val)) return "array";
if (isDate(val)) return "date";
if (isError(val)) return "error";
const constructorName = ctorName(val);
switch (constructorName) {
case "Symbol":
case "Promise":
case "WeakMap":
case "WeakSet":
case "Map":
case "Set": return constructorName;
}
return Object.prototype.toString.call(val).slice(8, -1).toLowerCase().replace(/\s/g, "");
}
function ctorName(val) {
return typeof val.constructor === "function" ? val.constructor.name : null;
}
function isError(val) {
return val instanceof Error || typeof val.message === "string" && val.constructor && typeof val.constructor.stackTraceLimit === "number";
}
function isDate(val) {
if (val instanceof Date) return true;
return typeof val.toDateString === "function" && typeof val.getDate === "function" && typeof val.setDate === "function";
}
function kindOf(val) {
let typeOfVal = typeof val;
typeOfVal = miniKindOf(val);
return typeOfVal;
}
function createStore(reducer, preloadedState, enhancer) {
if (typeof reducer !== "function") throw new Error(`Expected the root reducer to be a function. Instead, received: '${kindOf(reducer)}'`);
if (typeof preloadedState === "function" && typeof enhancer === "function" || typeof enhancer === "function" && typeof arguments[3] === "function") throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function. See https://redux.js.org/tutorials/fundamentals/part-4-store#creating-a-store-with-enhancers for an example.");
if (typeof preloadedState === "function" && typeof enhancer === "undefined") {
enhancer = preloadedState;
preloadedState = void 0;
}
if (typeof enhancer !== "undefined") {
if (typeof enhancer !== "function") throw new Error(`Expected the enhancer to be a function. Instead, received: '${kindOf(enhancer)}'`);
return enhancer(createStore)(reducer, preloadedState);
}
let currentReducer = reducer;
let currentState = preloadedState;
let currentListeners = /* @__PURE__ */ new Map();
let nextListeners = currentListeners;
let listenerIdCounter = 0;
let isDispatching = false;
function ensureCanMutateNextListeners() {
if (nextListeners === currentListeners) {
nextListeners = /* @__PURE__ */ new Map();
currentListeners.forEach((listener, key) => {
nextListeners.set(key, listener);
});
}
}
function getState() {
if (isDispatching) throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");
return currentState;
}
function subscribe(listener) {
if (typeof listener !== "function") throw new Error(`Expected the listener to be a function. Instead, received: '${kindOf(listener)}'`);
if (isDispatching) throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api/store#subscribelistener for more details.");
let isSubscribed = true;
ensureCanMutateNextListeners();
const listenerId = listenerIdCounter++;
nextListeners.set(listenerId, listener);
return function unsubscribe() {
if (!isSubscribed) return;
if (isDispatching) throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api/store#subscribelistener for more details.");
isSubscribed = false;
ensureCanMutateNextListeners();
nextListeners.delete(listenerId);
currentListeners = null;
};
}
function dispatch(action) {
if (!isPlainObject$3(action)) throw new Error(`Actions must be plain objects. Instead, the actual type was: '${kindOf(action)}'. You may need to add middleware to your store setup to handle dispatching other values, such as 'redux-thunk' to handle dispatching functions. See https://redux.js.org/tutorials/fundamentals/part-4-store#middleware and https://redux.js.org/tutorials/fundamentals/part-6-async-logic#using-the-redux-thunk-middleware for examples.`);
if (typeof action.type === "undefined") throw new Error("Actions may not have an undefined \"type\" property. You may have misspelled an action type string constant.");
if (typeof action.type !== "string") throw new Error(`Action "type" property must be a string. Instead, the actual type was: '${kindOf(action.type)}'. Value was: '${action.type}' (stringified)`);
if (isDispatching) throw new Error("Reducers may not dispatch actions.");
try {
isDispatching = true;
currentState = currentReducer(currentState, action);
} finally {
isDispatching = false;
}
(currentListeners = nextListeners).forEach((listener) => {
listener();
});
return action;
}
function replaceReducer(nextReducer) {
if (typeof nextReducer !== "function") throw new Error(`Expected the nextReducer to be a function. Instead, received: '${kindOf(nextReducer)}`);
currentReducer = nextReducer;
dispatch({ type: actionTypes_default.REPLACE });
}
function observable() {
const outerSubscribe = subscribe;
return {
subscribe(observer) {
if (typeof observer !== "object" || observer === null) throw new Error(`Expected the observer to be an object. Instead, received: '${kindOf(observer)}'`);
function observeState() {
const observerAsObserver = observer;
if (observerAsObserver.next) observerAsObserver.next(getState());
}
observeState();
return { unsubscribe: outerSubscribe(observeState) };
},
[symbol_observable_default]() {
return this;
}
};
}
dispatch({ type: actionTypes_default.INIT });
return {
dispatch,
subscribe,
getState,
replaceReducer,
[symbol_observable_default]: observable
};
}
function warning(message) {
if (typeof console !== "undefined" && typeof console.error === "function") console.error(message);
try {
throw new Error(message);
} catch (e) {}
}
function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, unexpectedKeyCache) {
const reducerKeys = Object.keys(reducers);
const argumentName = action && action.type === actionTypes_default.INIT ? "preloadedState argument passed to createStore" : "previous state received by the reducer";
if (reducerKeys.length === 0) return "Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";
if (!isPlainObject$3(inputState)) return `The ${argumentName} has unexpected type of "${kindOf(inputState)}". Expected argument to be an object with the following keys: "${reducerKeys.join("\", \"")}"`;
const unexpectedKeys = Object.keys(inputState).filter((key) => !reducers.hasOwnProperty(key) && !unexpectedKeyCache[key]);
unexpectedKeys.forEach((key) => {
unexpectedKeyCache[key] = true;
});
if (action && action.type === actionTypes_default.REPLACE) return;
if (unexpectedKeys.length > 0) return `Unexpected ${unexpectedKeys.length > 1 ? "keys" : "key"} "${unexpectedKeys.join("\", \"")}" found in ${argumentName}. Expected to find one of the known reducer keys instead: "${reducerKeys.join("\", \"")}". Unexpected keys will be ignored.`;
}
function assertReducerShape(reducers) {
Object.keys(reducers).forEach((key) => {
const reducer = reducers[key];
if (typeof reducer(void 0, { type: actionTypes_default.INIT }) === "undefined") throw new Error(`The slice reducer for key "${key}" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.`);
if (typeof reducer(void 0, { type: actionTypes_default.PROBE_UNKNOWN_ACTION() }) === "undefined") throw new Error(`The slice reducer for key "${key}" returned undefined when probed with a random type. Don't try to handle '${actionTypes_default.INIT}' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.`);
});
}
function combineReducers(reducers) {
const reducerKeys = Object.keys(reducers);
const finalReducers = {};
for (let i = 0; i < reducerKeys.length; i++) {
const key = reducerKeys[i];
if (typeof reducers[key] === "undefined") warning(`No reducer provided for key "${key}"`);
if (typeof reducers[key] === "function") finalReducers[key] = reducers[key];
}
const finalReducerKeys = Object.keys(finalReducers);
let unexpectedKeyCache = {};
let shapeAssertionError;
try {
assertReducerShape(finalReducers);
} catch (e) {
shapeAssertionError = e;
}
return function combination(state = {}, action) {
if (shapeAssertionError) throw shapeAssertionError;
{
const warningMessage = getUnexpectedStateShapeWarningMessage(state, finalReducers, action, unexpectedKeyCache);
if (warningMessage) warning(warningMessage);
}
let hasChanged = false;
const nextState = {};
for (let i = 0; i < finalReducerKeys.length; i++) {
const key = finalReducerKeys[i];
const reducer = finalReducers[key];
const previousStateForKey = state[key];
const nextStateForKey = reducer(previousStateForKey, action);
if (typeof nextStateForKey === "undefined") {
const actionType = action && action.type;
throw new Error(`When called with an action of type ${actionType ? `"${String(actionType)}"` : "(unknown type)"}, the slice reducer for key "${key}" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.`);
}
nextState[key] = nextStateForKey;
hasChanged = hasChanged || nextStateForKey !== previousStateForKey;
}
hasChanged = hasChanged || finalReducerKeys.length !== Object.keys(state).length;
return hasChanged ? nextState : state;
};
}
function compose(...funcs) {
if (funcs.length === 0) return (arg) => arg;
if (funcs.length === 1) return funcs[0];
return funcs.reduce((a, b) => (...args) => a(b(...args)));
}
function applyMiddleware(...middlewares) {
return (createStore2) => (reducer, preloadedState) => {
const store = createStore2(reducer, preloadedState);
let dispatch = () => {
throw new Error("Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.");
};
const middlewareAPI = {
getState: store.getState,
dispatch: (action, ...args) => dispatch(action, ...args)
};
dispatch = compose(...middlewares.map((middleware) => middleware(middlewareAPI)))(store.dispatch);
return {
...store,
dispatch
};
};
}
function isAction(action) {
return isPlainObject$3(action) && "type" in action && typeof action.type === "string";
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/immer-npm-11.1.4-9feafa681e-10c0.zip/node_modules/immer/dist/immer.mjs
var NOTHING$1 = Symbol.for("immer-nothing");
var DRAFTABLE$1 = Symbol.for("immer-draftable");
var DRAFT_STATE$1 = Symbol.for("immer-state");
var errors$1 = [
function(plugin) {
return `The plugin for '${plugin}' has not been loaded into Immer. To enable the plugin, import and call \`enable${plugin}()\` when initializing your application.`;
},
function(thing) {
return `produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with '[immerable]: true'. Got '${thing}'`;
},
"This object has been frozen and should not be mutated",
function(data) {
return "Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? " + data;
},
"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.",
"Immer forbids circular references",
"The first or second argument to `produce` must be a function",
"The third argument to `produce` must be a function or undefined",
"First argument to `createDraft` must be a plain object, an array, or an immerable object",
"First argument to `finishDraft` must be a draft returned by `createDraft`",
function(thing) {
return `'current' expects a draft, got: ${thing}`;
},
"Object.defineProperty() cannot be used on an Immer draft",
"Object.setPrototypeOf() cannot be used on an Immer draft",
"Immer only supports deleting array indices",
"Immer only supports setting array indices and the 'length' property",
function(thing) {
return `'original' expects a draft, got: ${thing}`;
}
];
function die$1(error, ...args) {
{
const e = errors$1[error];
const msg = isFunction(e) ? e.apply(null, args) : e;
throw new Error(`[Immer] ${msg}`);
}
throw new Error(`[Immer] minified error nr: ${error}. Full error at: https://bit.ly/3cXEKWf`);
}
var O = Object;
var getPrototypeOf$1 = O.getPrototypeOf;
var CONSTRUCTOR = "constructor";
var PROTOTYPE = "prototype";
var CONFIGURABLE = "configurable";
var ENUMERABLE = "enumerable";
var WRITABLE = "writable";
var VALUE = "value";
var isDraft$1 = (value) => !!value && !!value[DRAFT_STATE$1];
function isDraftable$1(value) {
if (!value) return false;
return isPlainObject$2(value) || isArray(value) || !!value[DRAFTABLE$1] || !!value[CONSTRUCTOR]?.[DRAFTABLE$1] || isMap$1(value) || isSet$1(value);
}
var objectCtorString$1 = O[PROTOTYPE][CONSTRUCTOR].toString();
var cachedCtorStrings$1 = /* @__PURE__ */ new WeakMap();
function isPlainObject$2(value) {
if (!value || !isObjectish(value)) return false;
const proto = getPrototypeOf$1(value);
if (proto === null || proto === O[PROTOTYPE]) return true;
const Ctor = O.hasOwnProperty.call(proto, CONSTRUCTOR) && proto[CONSTRUCTOR];
if (Ctor === Object) return true;
if (!isFunction(Ctor)) return false;
let ctorString = cachedCtorStrings$1.get(Ctor);
if (ctorString === void 0) {
ctorString = Function.toString.call(Ctor);
cachedCtorStrings$1.set(Ctor, ctorString);
}
return ctorString === objectCtorString$1;
}
function each$1(obj, iter, strict = true) {
if (getArchtype$1(obj) === 0) (strict ? Reflect.ownKeys(obj) : O.keys(obj)).forEach((key) => {
iter(key, obj[key], obj);
});
else obj.forEach((entry, index) => iter(index, entry, obj));
}
function getArchtype$1(thing) {
const state = thing[DRAFT_STATE$1];
return state ? state.type_ : isArray(thing) ? 1 : isMap$1(thing) ? 2 : isSet$1(thing) ? 3 : 0;
}
var has$1 = (thing, prop, type = getArchtype$1(thing)) => type === 2 ? thing.has(prop) : O[PROTOTYPE].hasOwnProperty.call(thing, prop);
var get$7 = (thing, prop, type = getArchtype$1(thing)) => type === 2 ? thing.get(prop) : thing[prop];
var set$1 = (thing, propOrOldValue, value, type = getArchtype$1(thing)) => {
if (type === 2) thing.set(propOrOldValue, value);
else if (type === 3) thing.add(value);
else thing[propOrOldValue] = value;
};
function is$2(x, y) {
if (x === y) return x !== 0 || 1 / x === 1 / y;
else return x !== x && y !== y;
}
var isArray = Array.isArray;
var isMap$1 = (target) => target instanceof Map;
var isSet$1 = (target) => target instanceof Set;
var isObjectish = (target) => typeof target === "object";
var isFunction = (target) => typeof target === "function";
var isBoolean$1 = (target) => typeof target === "boolean";
function isArrayIndex(value) {
const n = +value;
return Number.isInteger(n) && String(n) === value;
}
var latest$1 = (state) => state.copy_ || state.base_;
var getFinalValue = (state) => state.modified_ ? state.copy_ : state.base_;
function shallowCopy$1(base, strict) {
if (isMap$1(base)) return new Map(base);
if (isSet$1(base)) return new Set(base);
if (isArray(base)) return Array[PROTOTYPE].slice.call(base);
const isPlain = isPlainObject$2(base);
if (strict === true || strict === "class_only" && !isPlain) {
const descriptors = O.getOwnPropertyDescriptors(base);
delete descriptors[DRAFT_STATE$1];
let keys = Reflect.ownKeys(descriptors);
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
const desc = descriptors[key];
if (desc[WRITABLE] === false) {
desc[WRITABLE] = true;
desc[CONFIGURABLE] = true;
}
if (desc.get || desc.set) descriptors[key] = {
[CONFIGURABLE]: true,
[WRITABLE]: true,
[ENUMERABLE]: desc[ENUMERABLE],
[VALUE]: base[key]
};
}
return O.create(getPrototypeOf$1(base), descriptors);
} else {
const proto = getPrototypeOf$1(base);
if (proto !== null && isPlain) return { ...base };
const obj = O.create(proto);
return O.assign(obj, base);
}
}
function freeze$1(obj, deep = false) {
if (isFrozen$1(obj) || isDraft$1(obj) || !isDraftable$1(obj)) return obj;
if (getArchtype$1(obj) > 1) O.defineProperties(obj, {
set: dontMutateMethodOverride$1,
add: dontMutateMethodOverride$1,
clear: dontMutateMethodOverride$1,
delete: dontMutateMethodOverride$1
});
O.freeze(obj);
if (deep) each$1(obj, (_key, value) => {
freeze$1(value, true);
}, false);
return obj;
}
function dontMutateFrozenCollections$1() {
die$1(2);
}
var dontMutateMethodOverride$1 = { [VALUE]: dontMutateFrozenCollections$1 };
function isFrozen$1(obj) {
if (obj === null || !isObjectish(obj)) return true;
return O.isFrozen(obj);
}
var PluginMapSet = "MapSet";
var PluginPatches = "Patches";
var PluginArrayMethods = "ArrayMethods";
var plugins$1 = {};
function getPlugin$1(pluginKey) {
const plugin = plugins$1[pluginKey];
if (!plugin) die$1(0, pluginKey);
return plugin;
}
var isPluginLoaded = (pluginKey) => !!plugins$1[pluginKey];
var currentScope$1;
var getCurrentScope$1 = () => currentScope$1;
var createScope$1 = (parent_, immer_) => ({
drafts_: [],
parent_,
immer_,
canAutoFreeze_: true,
unfinalizedDrafts_: 0,
handledSet_: /* @__PURE__ */ new Set(),
processedForPatches_: /* @__PURE__ */ new Set(),
mapSetPlugin_: isPluginLoaded(PluginMapSet) ? getPlugin$1(PluginMapSet) : void 0,
arrayMethodsPlugin_: isPluginLoaded(PluginArrayMethods) ? getPlugin$1(PluginArrayMethods) : void 0
});
function usePatchesInScope$1(scope, patchListener) {
if (patchListener) {
scope.patchPlugin_ = getPlugin$1(PluginPatches);
scope.patches_ = [];
scope.inversePatches_ = [];
scope.patchListener_ = patchListener;
}
}
function revokeScope$1(scope) {
leaveScope$1(scope);
scope.drafts_.forEach(revokeDraft$1);
scope.drafts_ = null;
}
function leaveScope$1(scope) {
if (scope === currentScope$1) currentScope$1 = scope.parent_;
}
var enterScope$1 = (immer2) => currentScope$1 = createScope$1(currentScope$1, immer2);
function revokeDraft$1(draft) {
const state = draft[DRAFT_STATE$1];
if (state.type_ === 0 || state.type_ === 1) state.revoke_();
else state.revoked_ = true;
}
function processResult$1(result, scope) {
scope.unfinalizedDrafts_ = scope.drafts_.length;
const baseDraft = scope.drafts_[0];
if (result !== void 0 && result !== baseDraft) {
if (baseDraft[DRAFT_STATE$1].modified_) {
revokeScope$1(scope);
die$1(4);
}
if (isDraftable$1(result)) result = finalize$1(scope, result);
const { patchPlugin_ } = scope;
if (patchPlugin_) patchPlugin_.generateReplacementPatches_(baseDraft[DRAFT_STATE$1].base_, result, scope);
} else result = finalize$1(scope, baseDraft);
maybeFreeze$1(scope, result, true);
revokeScope$1(scope);
if (scope.patches_) scope.patchListener_(scope.patches_, scope.inversePatches_);
return result !== NOTHING$1 ? result : void 0;
}
function finalize$1(rootScope, value) {
if (isFrozen$1(value)) return value;
const state = value[DRAFT_STATE$1];
if (!state) return handleValue(value, rootScope.handledSet_, rootScope);
if (!isSameScope(state, rootScope)) return value;
if (!state.modified_) return state.base_;
if (!state.finalized_) {
const { callbacks_ } = state;
if (callbacks_) while (callbacks_.length > 0) callbacks_.pop()(rootScope);
generatePatchesAndFinalize(state, rootScope);
}
return state.copy_;
}
function maybeFreeze$1(scope, value, deep = false) {
if (!scope.parent_ && scope.immer_.autoFreeze_ && scope.canAutoFreeze_) freeze$1(value, deep);
}
function markStateFinalized(state) {
state.finalized_ = true;
state.scope_.unfinalizedDrafts_--;
}
var isSameScope = (state, rootScope) => state.scope_ === rootScope;
var EMPTY_LOCATIONS_RESULT = [];
function updateDraftInParent(parent, draftValue, finalizedValue, originalKey) {
const parentCopy = latest$1(parent);
const parentType = parent.type_;
if (originalKey !== void 0) {
if (get$7(parentCopy, originalKey, parentType) === draftValue) {
set$1(parentCopy, originalKey, finalizedValue, parentType);
return;
}
}
if (!parent.draftLocations_) {
const draftLocations = parent.draftLocations_ = /* @__PURE__ */ new Map();
each$1(parentCopy, (key, value) => {
if (isDraft$1(value)) {
const keys = draftLocations.get(value) || [];
keys.push(key);
draftLocations.set(value, keys);
}
});
}
const locations = parent.draftLocations_.get(draftValue) ?? EMPTY_LOCATIONS_RESULT;
for (const location of locations) set$1(parentCopy, location, finalizedValue, parentType);
}
function registerChildFinalizationCallback(parent, child, key) {
parent.callbacks_.push(function childCleanup(rootScope) {
const state = child;
if (!state || !isSameScope(state, rootScope)) return;
rootScope.mapSetPlugin_?.fixSetContents(state);
const finalizedValue = getFinalValue(state);
updateDraftInParent(parent, state.draft_ ?? state, finalizedValue, key);
generatePatchesAndFinalize(state, rootScope);
});
}
function generatePatchesAndFinalize(state, rootScope) {
if (state.modified_ && !state.finalized_ && (state.type_ === 3 || state.type_ === 1 && state.allIndicesReassigned_ || (state.assigned_?.size ?? 0) > 0)) {
const { patchPlugin_ } = rootScope;
if (patchPlugin_) {
const basePath = patchPlugin_.getPath(state);
if (basePath) patchPlugin_.generatePatches_(state, basePath, rootScope);
}
markStateFinalized(state);
}
}
function handleCrossReference(target, key, value) {
const { scope_ } = target;
if (isDraft$1(value)) {
const state = value[DRAFT_STATE$1];
if (isSameScope(state, scope_)) state.callbacks_.push(function crossReferenceCleanup() {
prepareCopy$1(target);
updateDraftInParent(target, value, getFinalValue(state), key);
});
} else if (isDraftable$1(value)) target.callbacks_.push(function nestedDraftCleanup() {
const targetCopy = latest$1(target);
if (target.type_ === 3) {
if (targetCopy.has(value)) handleValue(value, scope_.handledSet_, scope_);
} else if (get$7(targetCopy, key, target.type_) === value) {
if (scope_.drafts_.length > 1 && (target.assigned_.get(key) ?? false) === true && target.copy_) handleValue(get$7(target.copy_, key, target.type_), scope_.handledSet_, scope_);
}
});
}
function handleValue(target, handledSet, rootScope) {
if (!rootScope.immer_.autoFreeze_ && rootScope.unfinalizedDrafts_ < 1) return target;
if (isDraft$1(target) || handledSet.has(target) || !isDraftable$1(target) || isFrozen$1(target)) return target;
handledSet.add(target);
each$1(target, (key, value) => {
if (isDraft$1(value)) {
const state = value[DRAFT_STATE$1];
if (isSameScope(state, rootScope)) {
set$1(target, key, getFinalValue(state), target.type_);
markStateFinalized(state);
}
} else if (isDraftable$1(value)) handleValue(value, handledSet, rootScope);
});
return target;
}
function createProxyProxy$1(base, parent) {
const baseIsArray = isArray(base);
const state = {
type_: baseIsArray ? 1 : 0,
scope_: parent ? parent.scope_ : getCurrentScope$1(),
modified_: false,
finalized_: false,
assigned_: void 0,
parent_: parent,
base_: base,
draft_: null,
copy_: null,
revoke_: null,
isManual_: false,
callbacks_: void 0
};
let target = state;
let traps = objectTraps$1;
if (baseIsArray) {
target = [state];
traps = arrayTraps$1;
}
const { revoke, proxy } = Proxy.revocable(target, traps);
state.draft_ = proxy;
state.revoke_ = revoke;
return [proxy, state];
}
var objectTraps$1 = {
get(state, prop) {
if (prop === DRAFT_STATE$1) return state;
let arrayPlugin = state.scope_.arrayMethodsPlugin_;
const isArrayWithStringProp = state.type_ === 1 && typeof prop === "string";
if (isArrayWithStringProp) {
if (arrayPlugin?.isArrayOperationMethod(prop)) return arrayPlugin.createMethodInterceptor(state, prop);
}
const source = latest$1(state);
if (!has$1(source, prop, state.type_)) return readPropFromProto$1(state, source, prop);
const value = source[prop];
if (state.finalized_ || !isDraftable$1(value)) return value;
if (isArrayWithStringProp && state.operationMethod && arrayPlugin?.isMutatingArrayMethod(state.operationMethod) && isArrayIndex(prop)) return value;
if (value === peek$1(state.base_, prop)) {
prepareCopy$1(state);
const childKey = state.type_ === 1 ? +prop : prop;
const childDraft = createProxy$1(state.scope_, value, state, childKey);
return state.copy_[childKey] = childDraft;
}
return value;
},
has(state, prop) {
return prop in latest$1(state);
},
ownKeys(state) {
return Reflect.ownKeys(latest$1(state));
},
set(state, prop, value) {
const desc = getDescriptorFromProto$1(latest$1(state), prop);
if (desc?.set) {
desc.set.call(state.draft_, value);
return true;
}
if (!state.modified_) {
const current2 = peek$1(latest$1(state), prop);
const currentState = current2?.[DRAFT_STATE$1];
if (currentState && currentState.base_ === value) {
state.copy_[prop] = value;
state.assigned_.set(prop, false);
return true;
}
if (is$2(value, current2) && (value !== void 0 || has$1(state.base_, prop, state.type_))) return true;
prepareCopy$1(state);
markChanged$1(state);
}
if (state.copy_[prop] === value && (value !== void 0 || prop in state.copy_) || Number.isNaN(value) && Number.isNaN(state.copy_[prop])) return true;
state.copy_[prop] = value;
state.assigned_.set(prop, true);
handleCrossReference(state, prop, value);
return true;
},
deleteProperty(state, prop) {
prepareCopy$1(state);
if (peek$1(state.base_, prop) !== void 0 || prop in state.base_) {
state.assigned_.set(prop, false);
markChanged$1(state);
} else state.assigned_.delete(prop);
if (state.copy_) delete state.copy_[prop];
return true;
},
getOwnPropertyDescriptor(state, prop) {
const owner = latest$1(state);
const desc = Reflect.getOwnPropertyDescriptor(owner, prop);
if (!desc) return desc;
return {
[WRITABLE]: true,
[CONFIGURABLE]: state.type_ !== 1 || prop !== "length",
[ENUMERABLE]: desc[ENUMERABLE],
[VALUE]: owner[prop]
};
},
defineProperty() {
die$1(11);
},
getPrototypeOf(state) {
return getPrototypeOf$1(state.base_);
},
setPrototypeOf() {
die$1(12);
}
};
var arrayTraps$1 = {};
for (let key in objectTraps$1) {
let fn = objectTraps$1[key];
arrayTraps$1[key] = function() {
const args = arguments;
args[0] = args[0][0];
return fn.apply(this, args);
};
}
arrayTraps$1.deleteProperty = function(state, prop) {
if (isNaN(parseInt(prop))) die$1(13);
return arrayTraps$1.set.call(this, state, prop, void 0);
};
arrayTraps$1.set = function(state, prop, value) {
if (prop !== "length" && isNaN(parseInt(prop))) die$1(14);
return objectTraps$1.set.call(this, state[0], prop, value, state[0]);
};
function peek$1(draft, prop) {
const state = draft[DRAFT_STATE$1];
return (state ? latest$1(state) : draft)[prop];
}
function readPropFromProto$1(state, source, prop) {
const desc = getDescriptorFromProto$1(source, prop);
return desc ? VALUE in desc ? desc[VALUE] : desc.get?.call(state.draft_) : void 0;
}
function getDescriptorFromProto$1(source, prop) {
if (!(prop in source)) return void 0;
let proto = getPrototypeOf$1(source);
while (proto) {
const desc = Object.getOwnPropertyDescriptor(proto, prop);
if (desc) return desc;
proto = getPrototypeOf$1(proto);
}
}
function markChanged$1(state) {
if (!state.modified_) {
state.modified_ = true;
if (state.parent_) markChanged$1(state.parent_);
}
}
function prepareCopy$1(state) {
if (!state.copy_) {
state.assigned_ = /* @__PURE__ */ new Map();
state.copy_ = shallowCopy$1(state.base_, state.scope_.immer_.useStrictShallowCopy_);
}
}
var Immer2$1 = class {
constructor(config) {
this.autoFreeze_ = true;
this.useStrictShallowCopy_ = false;
this.useStrictIteration_ = false;
/**
* The `produce` function takes a value and a "recipe function" (whose
* return value often depends on the base state). The recipe function is
* free to mutate its first argument however it wants. All mutations are
* only ever applied to a __copy__ of the base state.
*
* Pass only a function to create a "curried producer" which relieves you
* from passing the recipe function every time.
*
* Only plain objects and arrays are made mutable. All other objects are
* considered uncopyable.
*
* Note: This function is __bound__ to its `Immer` instance.
*
* @param {any} base - the initial state
* @param {Function} recipe - function that receives a proxy of the base state as first argument and which can be freely modified
* @param {Function} patchListener - optional function that will be called with all the patches produced here
* @returns {any} a new state, or the initial state if nothing was modified
*/
this.produce = (base, recipe, patchListener) => {
if (isFunction(base) && !isFunction(recipe)) {
const defaultBase = recipe;
recipe = base;
const self = this;
return function curriedProduce(base2 = defaultBase, ...args) {
return self.produce(base2, (draft) => recipe.call(this, draft, ...args));
};
}
if (!isFunction(recipe)) die$1(6);
if (patchListener !== void 0 && !isFunction(patchListener)) die$1(7);
let result;
if (isDraftable$1(base)) {
const scope = enterScope$1(this);
const proxy = createProxy$1(scope, base, void 0);
let hasError = true;
try {
result = recipe(proxy);
hasError = false;
} finally {
if (hasError) revokeScope$1(scope);
else leaveScope$1(scope);
}
usePatchesInScope$1(scope, patchListener);
return processResult$1(result, scope);
} else if (!base || !isObjectish(base)) {
result = recipe(base);
if (result === void 0) result = base;
if (result === NOTHING$1) result = void 0;
if (this.autoFreeze_) freeze$1(result, true);
if (patchListener) {
const p = [];
const ip = [];
getPlugin$1(PluginPatches).generateReplacementPatches_(base, result, {
patches_: p,
inversePatches_: ip
});
patchListener(p, ip);
}
return result;
} else die$1(1, base);
};
this.produceWithPatches = (base, recipe) => {
if (isFunction(base)) return (state, ...args) => this.produceWithPatches(state, (draft) => base(draft, ...args));
let patches, inversePatches;
return [
this.produce(base, recipe, (p, ip) => {
patches = p;
inversePatches = ip;
}),
patches,
inversePatches
];
};
if (isBoolean$1(config?.autoFreeze)) this.setAutoFreeze(config.autoFreeze);
if (isBoolean$1(config?.useStrictShallowCopy)) this.setUseStrictShallowCopy(config.useStrictShallowCopy);
if (isBoolean$1(config?.useStrictIteration)) this.setUseStrictIteration(config.useStrictIteration);
}
createDraft(base) {
if (!isDraftable$1(base)) die$1(8);
if (isDraft$1(base)) base = current$1(base);
const scope = enterScope$1(this);
const proxy = createProxy$1(scope, base, void 0);
proxy[DRAFT_STATE$1].isManual_ = true;
leaveScope$1(scope);
return proxy;
}
finishDraft(draft, patchListener) {
const state = draft && draft[DRAFT_STATE$1];
if (!state || !state.isManual_) die$1(9);
const { scope_: scope } = state;
usePatchesInScope$1(scope, patchListener);
return processResult$1(void 0, scope);
}
/**
* Pass true to automatically freeze all copies created by Immer.
*
* By default, auto-freezing is enabled.
*/
setAutoFreeze(value) {
this.autoFreeze_ = value;
}
/**
* Pass true to enable strict shallow copy.
*
* By default, immer does not copy the object descriptors such as getter, setter and non-enumrable properties.
*/
setUseStrictShallowCopy(value) {
this.useStrictShallowCopy_ = value;
}
/**
* Pass false to use faster iteration that skips non-enumerable properties
* but still handles symbols for compatibility.
*
* By default, strict iteration is enabled (includes all own properties).
*/
setUseStrictIteration(value) {
this.useStrictIteration_ = value;
}
shouldUseStrictIteration() {
return this.useStrictIteration_;
}
applyPatches(base, patches) {
let i;
for (i = patches.length - 1; i >= 0; i--) {
const patch = patches[i];
if (patch.path.length === 0 && patch.op === "replace") {
base = patch.value;
break;
}
}
if (i > -1) patches = patches.slice(i + 1);
const applyPatchesImpl = getPlugin$1(PluginPatches).applyPatches_;
if (isDraft$1(base)) return applyPatchesImpl(base, patches);
return this.produce(base, (draft) => applyPatchesImpl(draft, patches));
}
};
function createProxy$1(rootScope, value, parent, key) {
const [draft, state] = isMap$1(value) ? getPlugin$1(PluginMapSet).proxyMap_(value, parent) : isSet$1(value) ? getPlugin$1(PluginMapSet).proxySet_(value, parent) : createProxyProxy$1(value, parent);
(parent?.scope_ ?? getCurrentScope$1()).drafts_.push(draft);
state.callbacks_ = parent?.callbacks_ ?? [];
state.key_ = key;
if (parent && key !== void 0) registerChildFinalizationCallback(parent, state, key);
else state.callbacks_.push(function rootDraftCleanup(rootScope2) {
rootScope2.mapSetPlugin_?.fixSetContents(state);
const { patchPlugin_ } = rootScope2;
if (state.modified_ && patchPlugin_) patchPlugin_.generatePatches_(state, [], rootScope2);
});
return draft;
}
function current$1(value) {
if (!isDraft$1(value)) die$1(10, value);
return currentImpl$1(value);
}
function currentImpl$1(value) {
if (!isDraftable$1(value) || isFrozen$1(value)) return value;
const state = value[DRAFT_STATE$1];
let copy;
let strict = true;
if (state) {
if (!state.modified_) return state.base_;
state.finalized_ = true;
copy = shallowCopy$1(value, state.scope_.immer_.useStrictShallowCopy_);
strict = state.scope_.immer_.shouldUseStrictIteration();
} else copy = shallowCopy$1(value, true);
each$1(copy, (key, childValue) => {
set$1(copy, key, currentImpl$1(childValue));
}, strict);
if (state) state.finalized_ = false;
return copy;
}
var produce$1 = new Immer2$1().produce;
//#endregion
//#region .yarn/__virtual__/redux-thunk-virtual-7eef9bfcbd/3/AppData/Local/Yarn/Berry/cache/redux-thunk-npm-3.1.0-6a8fdd3211-10c0.zip/node_modules/redux-thunk/dist/redux-thunk.mjs
function createThunkMiddleware(extraArgument) {
const middleware = ({ dispatch, getState }) => (next) => (action) => {
if (typeof action === "function") return action(dispatch, getState, extraArgument);
return next(action);
};
return middleware;
}
var thunk = createThunkMiddleware();
var withExtraArgument = createThunkMiddleware;
//#endregion
//#region .yarn/__virtual__/@reduxjs-toolkit-virtual-be3b9ddb6f/3/AppData/Local/Yarn/Berry/cache/@reduxjs-toolkit-npm-2.11.2-bcb187ef4f-10c0.zip/node_modules/@reduxjs/toolkit/dist/redux-toolkit.modern.mjs
var composeWithDevTools = typeof window !== "undefined" && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ : function() {
if (arguments.length === 0) return void 0;
if (typeof arguments[0] === "object") return compose;
return compose.apply(null, arguments);
};
typeof window !== "undefined" && window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__;
var hasMatchFunction = (v) => {
return v && typeof v.match === "function";
};
function createAction(type, prepareAction) {
function actionCreator(...args) {
if (prepareAction) {
let prepared = prepareAction(...args);
if (!prepared) throw new Error("prepareAction did not return an object");
return {
type,
payload: prepared.payload,
..."meta" in prepared && { meta: prepared.meta },
..."error" in prepared && { error: prepared.error }
};
}
return {
type,
payload: args[0]
};
}
actionCreator.toString = () => `${type}`;
actionCreator.type = type;
actionCreator.match = (action) => isAction(action) && action.type === type;
return actionCreator;
}
function isActionCreator(action) {
return typeof action === "function" && "type" in action && hasMatchFunction(action);
}
function getMessage(type) {
const splitType = type ? `${type}`.split("/") : [];
const actionName = splitType[splitType.length - 1] || "actionCreator";
return `Detected an action creator with type "${type || "unknown"}" being dispatched.
Make sure you're calling the action creator before dispatching, i.e. \`dispatch(${actionName}())\` instead of \`dispatch(${actionName})\`. This is necessary even if the action has no payload.`;
}
function createActionCreatorInvariantMiddleware(options = {}) {
const { isActionCreator: isActionCreator2 = isActionCreator } = options;
return () => (next) => (action) => {
if (isActionCreator2(action)) console.warn(getMessage(action.type));
return next(action);
};
}
function getTimeMeasureUtils(maxDelay, fnName) {
let elapsed = 0;
return {
measureTime(fn) {
const started = Date.now();
try {
return fn();
} finally {
elapsed += Date.now() - started;
}
},
warnIfExceeded() {
if (elapsed > maxDelay) console.warn(`${fnName} took ${elapsed}ms, which is more than the warning threshold of ${maxDelay}ms.
If your state or actions are very large, you may want to disable the middleware as it might cause too much of a slowdown in development mode. See https://redux-toolkit.js.org/api/getDefaultMiddleware for instructions.
It is disabled in production builds, so you don't need to worry about that.`);
}
};
}
var Tuple = class _Tuple extends Array {
constructor(...items) {
super(...items);
Object.setPrototypeOf(this, _Tuple.prototype);
}
static get [Symbol.species]() {
return _Tuple;
}
concat(...arr) {
return super.concat.apply(this, arr);
}
prepend(...arr) {
if (arr.length === 1 && Array.isArray(arr[0])) return new _Tuple(...arr[0].concat(this));
return new _Tuple(...arr.concat(this));
}
};
function freezeDraftable(val) {
return isDraftable$1(val) ? produce$1(val, () => {}) : val;
}
function getOrInsertComputed(map, key, compute) {
if (map.has(key)) return map.get(key);
return map.set(key, compute(key)).get(key);
}
function isImmutableDefault(value) {
return typeof value !== "object" || value == null || Object.isFrozen(value);
}
function trackForMutations(isImmutable, ignoredPaths, obj) {
const trackedProperties = trackProperties(isImmutable, ignoredPaths, obj);
return { detectMutations() {
return detectMutations(isImmutable, ignoredPaths, trackedProperties, obj);
} };
}
function trackProperties(isImmutable, ignoredPaths = [], obj, path = "", checkedObjects = /* @__PURE__ */ new Set()) {
const tracked = { value: obj };
if (!isImmutable(obj) && !checkedObjects.has(obj)) {
checkedObjects.add(obj);
tracked.children = {};
const hasIgnoredPaths = ignoredPaths.length > 0;
for (const key in obj) {
const nestedPath = path ? path + "." + key : key;
if (hasIgnoredPaths) {
if (ignoredPaths.some((ignored) => {
if (ignored instanceof RegExp) return ignored.test(nestedPath);
return nestedPath === ignored;
})) continue;
}
tracked.children[key] = trackProperties(isImmutable, ignoredPaths, obj[key], nestedPath);
}
}
return tracked;
}
function detectMutations(isImmutable, ignoredPaths = [], trackedProperty, obj, sameParentRef = false, path = "") {
const prevObj = trackedProperty ? trackedProperty.value : void 0;
const sameRef = prevObj === obj;
if (sameParentRef && !sameRef && !Number.isNaN(obj)) return {
wasMutated: true,
path
};
if (isImmutable(prevObj) || isImmutable(obj)) return { wasMutated: false };
const keysToDetect = {};
for (let key in trackedProperty.children) keysToDetect[key] = true;
for (let key in obj) keysToDetect[key] = true;
const hasIgnoredPaths = ignoredPaths.length > 0;
for (let key in keysToDetect) {
const nestedPath = path ? path + "." + key : key;
if (hasIgnoredPaths) {
if (ignoredPaths.some((ignored) => {
if (ignored instanceof RegExp) return ignored.test(nestedPath);
return nestedPath === ignored;
})) continue;
}
const result = detectMutations(isImmutable, ignoredPaths, trackedProperty.children[key], obj[key], sameRef, nestedPath);
if (result.wasMutated) return result;
}
return { wasMutated: false };
}
function createImmutableStateInvariantMiddleware(options = {}) {
{
let stringify2 = function(obj, serializer, indent, decycler) {
return JSON.stringify(obj, getSerialize2(serializer, decycler), indent);
}, getSerialize2 = function(serializer, decycler) {
let stack = [], keys = [];
if (!decycler) decycler = function(_, value) {
if (stack[0] === value) return "[Circular ~]";
return "[Circular ~." + keys.slice(0, stack.indexOf(value)).join(".") + "]";
};
return function(key, value) {
if (stack.length > 0) {
var thisPos = stack.indexOf(this);
~thisPos ? stack.splice(thisPos + 1) : stack.push(this);
~thisPos ? keys.splice(thisPos, Infinity, key) : keys.push(key);
if (~stack.indexOf(value)) value = decycler.call(this, key, value);
} else stack.push(value);
return serializer == null ? value : serializer.call(this, key, value);
};
};
let { isImmutable = isImmutableDefault, ignoredPaths, warnAfter = 32 } = options;
const track = trackForMutations.bind(null, isImmutable, ignoredPaths);
return ({ getState }) => {
let state = getState();
let tracker = track(state);
let result;
return (next) => (action) => {
const measureUtils = getTimeMeasureUtils(warnAfter, "ImmutableStateInvariantMiddleware");
measureUtils.measureTime(() => {
state = getState();
result = tracker.detectMutations();
tracker = track(state);
if (result.wasMutated) throw new Error(`A state mutation was detected between dispatches, in the path '${result.path || ""}'. This may cause incorrect behavior. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
});
const dispatchedAction = next(action);
measureUtils.measureTime(() => {
state = getState();
result = tracker.detectMutations();
tracker = track(state);
if (result.wasMutated) throw new Error(`A state mutation was detected inside a dispatch, in the path: ${result.path || ""}. Take a look at the reducer(s) handling the action ${stringify2(action)}. (https://redux.js.org/style-guide/style-guide#do-not-mutate-state)`);
});
measureUtils.warnIfExceeded();
return dispatchedAction;
};
};
}
}
function isPlain(val) {
const type = typeof val;
return val == null || type === "string" || type === "boolean" || type === "number" || Array.isArray(val) || isPlainObject$3(val);
}
function findNonSerializableValue(value, path = "", isSerializable = isPlain, getEntries, ignoredPaths = [], cache) {
let foundNestedSerializable;
if (!isSerializable(value)) return {
keyPath: path || "
",
value
};
if (typeof value !== "object" || value === null) return false;
if (cache?.has(value)) return false;
const entries = getEntries != null ? getEntries(value) : Object.entries(value);
const hasIgnoredPaths = ignoredPaths.length > 0;
for (const [key, nestedValue] of entries) {
const nestedPath = path ? path + "." + key : key;
if (hasIgnoredPaths) {
if (ignoredPaths.some((ignored) => {
if (ignored instanceof RegExp) return ignored.test(nestedPath);
return nestedPath === ignored;
})) continue;
}
if (!isSerializable(nestedValue)) return {
keyPath: nestedPath,
value: nestedValue
};
if (typeof nestedValue === "object") {
foundNestedSerializable = findNonSerializableValue(nestedValue, nestedPath, isSerializable, getEntries, ignoredPaths, cache);
if (foundNestedSerializable) return foundNestedSerializable;
}
}
if (cache && isNestedFrozen(value)) cache.add(value);
return false;
}
function isNestedFrozen(value) {
if (!Object.isFrozen(value)) return false;
for (const nestedValue of Object.values(value)) {
if (typeof nestedValue !== "object" || nestedValue === null) continue;
if (!isNestedFrozen(nestedValue)) return false;
}
return true;
}
function createSerializableStateInvariantMiddleware(options = {}) {
{
const { isSerializable = isPlain, getEntries, ignoredActions = [], ignoredActionPaths = ["meta.arg", "meta.baseQueryMeta"], ignoredPaths = [], warnAfter = 32, ignoreState = false, ignoreActions = false, disableCache = false } = options;
const cache = !disableCache && WeakSet ? /* @__PURE__ */ new WeakSet() : void 0;
return (storeAPI) => (next) => (action) => {
if (!isAction(action)) return next(action);
const result = next(action);
const measureUtils = getTimeMeasureUtils(warnAfter, "SerializableStateInvariantMiddleware");
if (!ignoreActions && !(ignoredActions.length && ignoredActions.indexOf(action.type) !== -1)) measureUtils.measureTime(() => {
const foundActionNonSerializableValue = findNonSerializableValue(action, "", isSerializable, getEntries, ignoredActionPaths, cache);
if (foundActionNonSerializableValue) {
const { keyPath, value } = foundActionNonSerializableValue;
console.error(`A non-serializable value was detected in an action, in the path: \`${keyPath}\`. Value:`, value, "\nTake a look at the logic that dispatched this action: ", action, "\n(See https://redux.js.org/faq/actions#why-should-type-be-a-string-or-at-least-serializable-why-should-my-action-types-be-constants)", "\n(To allow non-serializable values see: https://redux-toolkit.js.org/usage/usage-guide#working-with-non-serializable-data)");
}
});
if (!ignoreState) {
measureUtils.measureTime(() => {
const foundStateNonSerializableValue = findNonSerializableValue(storeAPI.getState(), "", isSerializable, getEntries, ignoredPaths, cache);
if (foundStateNonSerializableValue) {
const { keyPath, value } = foundStateNonSerializableValue;
console.error(`A non-serializable value was detected in the state, in the path: \`${keyPath}\`. Value:`, value, `
Take a look at the reducer(s) handling this action type: ${action.type}.
(See https://redux.js.org/faq/organizing-state#can-i-put-functions-promises-or-other-non-serializable-items-in-my-store-state)`);
}
});
measureUtils.warnIfExceeded();
}
return result;
};
}
}
function isBoolean(x) {
return typeof x === "boolean";
}
var buildGetDefaultMiddleware = () => function getDefaultMiddleware(options) {
const { thunk: thunk$1 = true, immutableCheck = true, serializableCheck = true, actionCreatorCheck = true } = options ?? {};
let middlewareArray = new Tuple();
if (thunk$1) if (isBoolean(thunk$1)) middlewareArray.push(thunk);
else middlewareArray.push(withExtraArgument(thunk$1.extraArgument));
if (immutableCheck) {
let immutableOptions = {};
if (!isBoolean(immutableCheck)) immutableOptions = immutableCheck;
middlewareArray.unshift(createImmutableStateInvariantMiddleware(immutableOptions));
}
if (serializableCheck) {
let serializableOptions = {};
if (!isBoolean(serializableCheck)) serializableOptions = serializableCheck;
middlewareArray.push(createSerializableStateInvariantMiddleware(serializableOptions));
}
if (actionCreatorCheck) {
let actionCreatorOptions = {};
if (!isBoolean(actionCreatorCheck)) actionCreatorOptions = actionCreatorCheck;
middlewareArray.unshift(createActionCreatorInvariantMiddleware(actionCreatorOptions));
}
return middlewareArray;
};
var SHOULD_AUTOBATCH = "RTK_autoBatch";
var prepareAutoBatched = () => (payload) => ({
payload,
meta: { [SHOULD_AUTOBATCH]: true }
});
var createQueueWithTimer = (timeout) => {
return (notify) => {
setTimeout(notify, timeout);
};
};
var autoBatchEnhancer = (options = { type: "raf" }) => (next) => (...args) => {
const store = next(...args);
let notifying = true;
let shouldNotifyAtEndOfTick = false;
let notificationQueued = false;
const listeners = /* @__PURE__ */ new Set();
const queueCallback = options.type === "tick" ? queueMicrotask : options.type === "raf" ? typeof window !== "undefined" && window.requestAnimationFrame ? window.requestAnimationFrame : createQueueWithTimer(10) : options.type === "callback" ? options.queueNotification : createQueueWithTimer(options.timeout);
const notifyListeners = () => {
notificationQueued = false;
if (shouldNotifyAtEndOfTick) {
shouldNotifyAtEndOfTick = false;
listeners.forEach((l) => l());
}
};
return Object.assign({}, store, {
subscribe(listener2) {
const wrappedListener = () => notifying && listener2();
const unsubscribe = store.subscribe(wrappedListener);
listeners.add(listener2);
return () => {
unsubscribe();
listeners.delete(listener2);
};
},
dispatch(action) {
try {
notifying = !action?.meta?.[SHOULD_AUTOBATCH];
shouldNotifyAtEndOfTick = !notifying;
if (shouldNotifyAtEndOfTick) {
if (!notificationQueued) {
notificationQueued = true;
queueCallback(notifyListeners);
}
}
return store.dispatch(action);
} finally {
notifying = true;
}
}
});
};
var buildGetDefaultEnhancers = (middlewareEnhancer) => function getDefaultEnhancers(options) {
const { autoBatch = true } = options ?? {};
let enhancerArray = new Tuple(middlewareEnhancer);
if (autoBatch) enhancerArray.push(autoBatchEnhancer(typeof autoBatch === "object" ? autoBatch : void 0));
return enhancerArray;
};
function configureStore(options) {
const getDefaultMiddleware = buildGetDefaultMiddleware();
const { reducer = void 0, middleware, devTools = true, duplicateMiddlewareCheck = true, preloadedState = void 0, enhancers = void 0 } = options || {};
let rootReducer;
if (typeof reducer === "function") rootReducer = reducer;
else if (isPlainObject$3(reducer)) rootReducer = combineReducers(reducer);
else throw new Error("`reducer` is a required argument, and must be a function or an object of functions that can be passed to combineReducers");
if (middleware && typeof middleware !== "function") throw new Error("`middleware` field must be a callback");
let finalMiddleware;
if (typeof middleware === "function") {
finalMiddleware = middleware(getDefaultMiddleware);
if (!Array.isArray(finalMiddleware)) throw new Error("when using a middleware builder function, an array of middleware must be returned");
} else finalMiddleware = getDefaultMiddleware();
if (finalMiddleware.some((item) => typeof item !== "function")) throw new Error("each middleware provided to configureStore must be a function");
if (duplicateMiddlewareCheck) {
let middlewareReferences = /* @__PURE__ */ new Set();
finalMiddleware.forEach((middleware2) => {
if (middlewareReferences.has(middleware2)) throw new Error("Duplicate middleware references found when creating the store. Ensure that each middleware is only included once.");
middlewareReferences.add(middleware2);
});
}
let finalCompose = compose;
if (devTools) finalCompose = composeWithDevTools({
trace: true,
...typeof devTools === "object" && devTools
});
const middlewareEnhancer = applyMiddleware(...finalMiddleware);
const getDefaultEnhancers = buildGetDefaultEnhancers(middlewareEnhancer);
if (enhancers && typeof enhancers !== "function") throw new Error("`enhancers` field must be a callback");
let storeEnhancers = typeof enhancers === "function" ? enhancers(getDefaultEnhancers) : getDefaultEnhancers();
if (!Array.isArray(storeEnhancers)) throw new Error("`enhancers` callback must return an array");
if (storeEnhancers.some((item) => typeof item !== "function")) throw new Error("each enhancer provided to configureStore must be a function");
if (finalMiddleware.length && !storeEnhancers.includes(middlewareEnhancer)) console.error("middlewares were provided, but middleware enhancer was not included in final enhancers - make sure to call `getDefaultEnhancers`");
const composedEnhancer = finalCompose(...storeEnhancers);
return createStore(rootReducer, preloadedState, composedEnhancer);
}
function executeReducerBuilderCallback(builderCallback) {
const actionsMap = {};
const actionMatchers = [];
let defaultCaseReducer;
const builder = {
addCase(typeOrActionCreator, reducer) {
if (actionMatchers.length > 0) throw new Error("`builder.addCase` should only be called before calling `builder.addMatcher`");
if (defaultCaseReducer) throw new Error("`builder.addCase` should only be called before calling `builder.addDefaultCase`");
const type = typeof typeOrActionCreator === "string" ? typeOrActionCreator : typeOrActionCreator.type;
if (!type) throw new Error("`builder.addCase` cannot be called with an empty action type");
if (type in actionsMap) throw new Error(`\`builder.addCase\` cannot be called with two reducers for the same action type '${type}'`);
actionsMap[type] = reducer;
return builder;
},
addAsyncThunk(asyncThunk, reducers) {
if (defaultCaseReducer) throw new Error("`builder.addAsyncThunk` should only be called before calling `builder.addDefaultCase`");
if (reducers.pending) actionsMap[asyncThunk.pending.type] = reducers.pending;
if (reducers.rejected) actionsMap[asyncThunk.rejected.type] = reducers.rejected;
if (reducers.fulfilled) actionsMap[asyncThunk.fulfilled.type] = reducers.fulfilled;
if (reducers.settled) actionMatchers.push({
matcher: asyncThunk.settled,
reducer: reducers.settled
});
return builder;
},
addMatcher(matcher, reducer) {
if (defaultCaseReducer) throw new Error("`builder.addMatcher` should only be called before calling `builder.addDefaultCase`");
actionMatchers.push({
matcher,
reducer
});
return builder;
},
addDefaultCase(reducer) {
if (defaultCaseReducer) throw new Error("`builder.addDefaultCase` can only be called once");
defaultCaseReducer = reducer;
return builder;
}
};
builderCallback(builder);
return [
actionsMap,
actionMatchers,
defaultCaseReducer
];
}
function isStateFunction(x) {
return typeof x === "function";
}
function createReducer(initialState, mapOrBuilderCallback) {
if (typeof mapOrBuilderCallback === "object") throw new Error("The object notation for `createReducer` has been removed. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createReducer");
let [actionsMap, finalActionMatchers, finalDefaultCaseReducer] = executeReducerBuilderCallback(mapOrBuilderCallback);
let getInitialState;
if (isStateFunction(initialState)) getInitialState = () => freezeDraftable(initialState());
else {
const frozenInitialState = freezeDraftable(initialState);
getInitialState = () => frozenInitialState;
}
function reducer(state = getInitialState(), action) {
let caseReducers = [actionsMap[action.type], ...finalActionMatchers.filter(({ matcher }) => matcher(action)).map(({ reducer: reducer2 }) => reducer2)];
if (caseReducers.filter((cr) => !!cr).length === 0) caseReducers = [finalDefaultCaseReducer];
return caseReducers.reduce((previousState, caseReducer) => {
if (caseReducer) if (isDraft$1(previousState)) {
const result = caseReducer(previousState, action);
if (result === void 0) return previousState;
return result;
} else if (!isDraftable$1(previousState)) {
const result = caseReducer(previousState, action);
if (result === void 0) {
if (previousState === null) return previousState;
throw Error("A case reducer on a non-draftable value must not return undefined");
}
return result;
} else return produce$1(previousState, (draft) => {
return caseReducer(draft, action);
});
return previousState;
}, state);
}
reducer.getInitialState = getInitialState;
return reducer;
}
var urlAlphabet = "ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW";
var nanoid = (size = 21) => {
let id = "";
let i = size;
while (i--) id += urlAlphabet[Math.random() * 64 | 0];
return id;
};
var asyncThunkSymbol = /* @__PURE__ */ Symbol.for("rtk-slice-createasyncthunk");
function getType(slice, actionKey) {
return `${slice}/${actionKey}`;
}
function buildCreateSlice({ creators } = {}) {
const cAT = creators?.asyncThunk?.[asyncThunkSymbol];
return function createSlice2(options) {
const { name, reducerPath = name } = options;
if (!name) throw new Error("`name` is a required option for createSlice");
if (typeof process !== "undefined" && true) {
if (options.initialState === void 0) console.error("You must provide an `initialState` value that is not `undefined`. You may have misspelled `initialState`");
}
const reducers = (typeof options.reducers === "function" ? options.reducers(buildReducerCreators()) : options.reducers) || {};
const reducerNames = Object.keys(reducers);
const context = {
sliceCaseReducersByName: {},
sliceCaseReducersByType: {},
actionCreators: {},
sliceMatchers: []
};
const contextMethods = {
addCase(typeOrActionCreator, reducer2) {
const type = typeof typeOrActionCreator === "string" ? typeOrActionCreator : typeOrActionCreator.type;
if (!type) throw new Error("`context.addCase` cannot be called with an empty action type");
if (type in context.sliceCaseReducersByType) throw new Error("`context.addCase` cannot be called with two reducers for the same action type: " + type);
context.sliceCaseReducersByType[type] = reducer2;
return contextMethods;
},
addMatcher(matcher, reducer2) {
context.sliceMatchers.push({
matcher,
reducer: reducer2
});
return contextMethods;
},
exposeAction(name2, actionCreator) {
context.actionCreators[name2] = actionCreator;
return contextMethods;
},
exposeCaseReducer(name2, reducer2) {
context.sliceCaseReducersByName[name2] = reducer2;
return contextMethods;
}
};
reducerNames.forEach((reducerName) => {
const reducerDefinition = reducers[reducerName];
const reducerDetails = {
reducerName,
type: getType(name, reducerName),
createNotation: typeof options.reducers === "function"
};
if (isAsyncThunkSliceReducerDefinition(reducerDefinition)) handleThunkCaseReducerDefinition(reducerDetails, reducerDefinition, contextMethods, cAT);
else handleNormalReducerDefinition(reducerDetails, reducerDefinition, contextMethods);
});
function buildReducer() {
if (typeof options.extraReducers === "object") throw new Error("The object notation for `createSlice.extraReducers` has been removed. Please use the 'builder callback' notation instead: https://redux-toolkit.js.org/api/createSlice");
const [extraReducers = {}, actionMatchers = [], defaultCaseReducer = void 0] = typeof options.extraReducers === "function" ? executeReducerBuilderCallback(options.extraReducers) : [options.extraReducers];
const finalCaseReducers = {
...extraReducers,
...context.sliceCaseReducersByType
};
return createReducer(options.initialState, (builder) => {
for (let key in finalCaseReducers) builder.addCase(key, finalCaseReducers[key]);
for (let sM of context.sliceMatchers) builder.addMatcher(sM.matcher, sM.reducer);
for (let m of actionMatchers) builder.addMatcher(m.matcher, m.reducer);
if (defaultCaseReducer) builder.addDefaultCase(defaultCaseReducer);
});
}
const selectSelf = (state) => state;
const injectedSelectorCache = /* @__PURE__ */ new Map();
const injectedStateCache = /* @__PURE__ */ new WeakMap();
let _reducer;
function reducer(state, action) {
if (!_reducer) _reducer = buildReducer();
return _reducer(state, action);
}
function getInitialState() {
if (!_reducer) _reducer = buildReducer();
return _reducer.getInitialState();
}
function makeSelectorProps(reducerPath2, injected = false) {
function selectSlice(state) {
let sliceState = state[reducerPath2];
if (typeof sliceState === "undefined") if (injected) sliceState = getOrInsertComputed(injectedStateCache, selectSlice, getInitialState);
else throw new Error("selectSlice returned undefined for an uninjected slice reducer");
return sliceState;
}
function getSelectors(selectState = selectSelf) {
return getOrInsertComputed(getOrInsertComputed(injectedSelectorCache, injected, () => /* @__PURE__ */ new WeakMap()), selectState, () => {
const map = {};
for (const [name2, selector] of Object.entries(options.selectors ?? {})) map[name2] = wrapSelector(selector, selectState, () => getOrInsertComputed(injectedStateCache, selectState, getInitialState), injected);
return map;
});
}
return {
reducerPath: reducerPath2,
getSelectors,
get selectors() {
return getSelectors(selectSlice);
},
selectSlice
};
}
const slice = {
name,
reducer,
actions: context.actionCreators,
caseReducers: context.sliceCaseReducersByName,
getInitialState,
...makeSelectorProps(reducerPath),
injectInto(injectable, { reducerPath: pathOpt, ...config } = {}) {
const newReducerPath = pathOpt ?? reducerPath;
injectable.inject({
reducerPath: newReducerPath,
reducer
}, config);
return {
...slice,
...makeSelectorProps(newReducerPath, true)
};
}
};
return slice;
};
}
function wrapSelector(selector, selectState, getInitialState, injected) {
function wrapper(rootState, ...args) {
let sliceState = selectState(rootState);
if (typeof sliceState === "undefined") if (injected) sliceState = getInitialState();
else throw new Error("selectState returned undefined for an uninjected slice reducer");
return selector(sliceState, ...args);
}
wrapper.unwrapped = selector;
return wrapper;
}
var createSlice = /* @__PURE__ */ buildCreateSlice();
function buildReducerCreators() {
function asyncThunk(payloadCreator, config) {
return {
_reducerDefinitionType: "asyncThunk",
payloadCreator,
...config
};
}
asyncThunk.withTypes = () => asyncThunk;
return {
reducer(caseReducer) {
return Object.assign({ [caseReducer.name](...args) {
return caseReducer(...args);
} }[caseReducer.name], { _reducerDefinitionType: "reducer" });
},
preparedReducer(prepare, reducer) {
return {
_reducerDefinitionType: "reducerWithPrepare",
prepare,
reducer
};
},
asyncThunk
};
}
function handleNormalReducerDefinition({ type, reducerName, createNotation }, maybeReducerWithPrepare, context) {
let caseReducer;
let prepareCallback;
if ("reducer" in maybeReducerWithPrepare) {
if (createNotation && !isCaseReducerWithPrepareDefinition(maybeReducerWithPrepare)) throw new Error("Please use the `create.preparedReducer` notation for prepared action creators with the `create` notation.");
caseReducer = maybeReducerWithPrepare.reducer;
prepareCallback = maybeReducerWithPrepare.prepare;
} else caseReducer = maybeReducerWithPrepare;
context.addCase(type, caseReducer).exposeCaseReducer(reducerName, caseReducer).exposeAction(reducerName, prepareCallback ? createAction(type, prepareCallback) : createAction(type));
}
function isAsyncThunkSliceReducerDefinition(reducerDefinition) {
return reducerDefinition._reducerDefinitionType === "asyncThunk";
}
function isCaseReducerWithPrepareDefinition(reducerDefinition) {
return reducerDefinition._reducerDefinitionType === "reducerWithPrepare";
}
function handleThunkCaseReducerDefinition({ type, reducerName }, reducerDefinition, context, cAT) {
if (!cAT) throw new Error("Cannot use `create.asyncThunk` in the built-in `createSlice`. Use `buildCreateSlice({ creators: { asyncThunk: asyncThunkCreator } })` to create a customised version of `createSlice`.");
const { payloadCreator, fulfilled, pending, rejected, settled, options } = reducerDefinition;
const thunk = cAT(type, payloadCreator, options);
context.exposeAction(reducerName, thunk);
if (fulfilled) context.addCase(thunk.fulfilled, fulfilled);
if (pending) context.addCase(thunk.pending, pending);
if (rejected) context.addCase(thunk.rejected, rejected);
if (settled) context.addMatcher(thunk.settled, settled);
context.exposeCaseReducer(reducerName, {
fulfilled: fulfilled || noop,
pending: pending || noop,
rejected: rejected || noop,
settled: settled || noop
});
}
function noop() {}
var task = "task";
var listener = "listener";
var completed = "completed";
var cancelled = "cancelled";
var taskCancelled = `task-${cancelled}`;
var taskCompleted = `task-${completed}`;
var listenerCancelled = `${listener}-${cancelled}`;
var listenerCompleted = `${listener}-${completed}`;
var TaskAbortError = class {
constructor(code) {
this.code = code;
this.message = `${task} ${cancelled} (reason: ${code})`;
}
name = "TaskAbortError";
message;
};
var assertFunction = (func, expected) => {
if (typeof func !== "function") throw new TypeError(`${expected} is not a function`);
};
var noop2 = () => {};
var catchRejection = (promise, onError = noop2) => {
promise.catch(onError);
return promise;
};
var addAbortSignalListener = (abortSignal, callback) => {
abortSignal.addEventListener("abort", callback, { once: true });
return () => abortSignal.removeEventListener("abort", callback);
};
var validateActive = (signal) => {
if (signal.aborted) throw new TaskAbortError(signal.reason);
};
function raceWithSignal(signal, promise) {
let cleanup = noop2;
return new Promise((resolve, reject) => {
const notifyRejection = () => reject(new TaskAbortError(signal.reason));
if (signal.aborted) {
notifyRejection();
return;
}
cleanup = addAbortSignalListener(signal, notifyRejection);
promise.finally(() => cleanup()).then(resolve, reject);
}).finally(() => {
cleanup = noop2;
});
}
var runTask = async (task2, cleanUp) => {
try {
await Promise.resolve();
return {
status: "ok",
value: await task2()
};
} catch (error) {
return {
status: error instanceof TaskAbortError ? "cancelled" : "rejected",
error
};
} finally {
cleanUp?.();
}
};
var createPause = (signal) => {
return (promise) => {
return catchRejection(raceWithSignal(signal, promise).then((output) => {
validateActive(signal);
return output;
}));
};
};
var createDelay = (signal) => {
const pause = createPause(signal);
return (timeoutMs) => {
return pause(new Promise((resolve) => setTimeout(resolve, timeoutMs)));
};
};
var { assign } = Object;
var INTERNAL_NIL_TOKEN = {};
var alm = "listenerMiddleware";
var createFork = (parentAbortSignal, parentBlockingPromises) => {
const linkControllers = (controller) => addAbortSignalListener(parentAbortSignal, () => controller.abort(parentAbortSignal.reason));
return (taskExecutor, opts) => {
assertFunction(taskExecutor, "taskExecutor");
const childAbortController = new AbortController();
linkControllers(childAbortController);
const result = runTask(async () => {
validateActive(parentAbortSignal);
validateActive(childAbortController.signal);
const result2 = await taskExecutor({
pause: createPause(childAbortController.signal),
delay: createDelay(childAbortController.signal),
signal: childAbortController.signal
});
validateActive(childAbortController.signal);
return result2;
}, () => childAbortController.abort(taskCompleted));
if (opts?.autoJoin) parentBlockingPromises.push(result.catch(noop2));
return {
result: createPause(parentAbortSignal)(result),
cancel() {
childAbortController.abort(taskCancelled);
}
};
};
};
var createTakePattern = (startListening, signal) => {
const take = async (predicate, timeout) => {
validateActive(signal);
let unsubscribe = () => {};
const promises = [new Promise((resolve, reject) => {
let stopListening = startListening({
predicate,
effect: (action, listenerApi) => {
listenerApi.unsubscribe();
resolve([
action,
listenerApi.getState(),
listenerApi.getOriginalState()
]);
}
});
unsubscribe = () => {
stopListening();
reject();
};
})];
if (timeout != null) promises.push(new Promise((resolve) => setTimeout(resolve, timeout, null)));
try {
const output = await raceWithSignal(signal, Promise.race(promises));
validateActive(signal);
return output;
} finally {
unsubscribe();
}
};
return (predicate, timeout) => catchRejection(take(predicate, timeout));
};
var getListenerEntryPropsFrom = (options) => {
let { type, actionCreator, matcher, predicate, effect } = options;
if (type) predicate = createAction(type).match;
else if (actionCreator) {
type = actionCreator.type;
predicate = actionCreator.match;
} else if (matcher) predicate = matcher;
else if (predicate) {} else throw new Error("Creating or removing a listener requires one of the known fields for matching an action");
assertFunction(effect, "options.listener");
return {
predicate,
type,
effect
};
};
var createListenerEntry = /* @__PURE__ */ assign((options) => {
const { type, predicate, effect } = getListenerEntryPropsFrom(options);
return {
id: nanoid(),
effect,
type,
predicate,
pending: /* @__PURE__ */ new Set(),
unsubscribe: () => {
throw new Error("Unsubscribe not initialized");
}
};
}, { withTypes: () => createListenerEntry });
var findListenerEntry = (listenerMap, options) => {
const { type, effect, predicate } = getListenerEntryPropsFrom(options);
return Array.from(listenerMap.values()).find((entry) => {
return (typeof type === "string" ? entry.type === type : entry.predicate === predicate) && entry.effect === effect;
});
};
var cancelActiveListeners = (entry) => {
entry.pending.forEach((controller) => {
controller.abort(listenerCancelled);
});
};
var createClearListenerMiddleware = (listenerMap, executingListeners) => {
return () => {
for (const listener2 of executingListeners.keys()) cancelActiveListeners(listener2);
listenerMap.clear();
};
};
var safelyNotifyError = (errorHandler, errorToNotify, errorInfo) => {
try {
errorHandler(errorToNotify, errorInfo);
} catch (errorHandlerError) {
setTimeout(() => {
throw errorHandlerError;
}, 0);
}
};
var addListener = /* @__PURE__ */ assign(/* @__PURE__ */ createAction(`${alm}/add`), { withTypes: () => addListener });
var clearAllListeners = /* @__PURE__ */ createAction(`${alm}/removeAll`);
var removeListener = /* @__PURE__ */ assign(/* @__PURE__ */ createAction(`${alm}/remove`), { withTypes: () => removeListener });
var defaultErrorHandler = (...args) => {
console.error(`${alm}/error`, ...args);
};
var createListenerMiddleware = (middlewareOptions = {}) => {
const listenerMap = /* @__PURE__ */ new Map();
const executingListeners = /* @__PURE__ */ new Map();
const trackExecutingListener = (entry) => {
const count = executingListeners.get(entry) ?? 0;
executingListeners.set(entry, count + 1);
};
const untrackExecutingListener = (entry) => {
const count = executingListeners.get(entry) ?? 1;
if (count === 1) executingListeners.delete(entry);
else executingListeners.set(entry, count - 1);
};
const { extra, onError = defaultErrorHandler } = middlewareOptions;
assertFunction(onError, "onError");
const insertEntry = (entry) => {
entry.unsubscribe = () => listenerMap.delete(entry.id);
listenerMap.set(entry.id, entry);
return (cancelOptions) => {
entry.unsubscribe();
if (cancelOptions?.cancelActive) cancelActiveListeners(entry);
};
};
const startListening = (options) => {
return insertEntry(findListenerEntry(listenerMap, options) ?? createListenerEntry(options));
};
assign(startListening, { withTypes: () => startListening });
const stopListening = (options) => {
const entry = findListenerEntry(listenerMap, options);
if (entry) {
entry.unsubscribe();
if (options.cancelActive) cancelActiveListeners(entry);
}
return !!entry;
};
assign(stopListening, { withTypes: () => stopListening });
const notifyListener = async (entry, action, api, getOriginalState) => {
const internalTaskController = new AbortController();
const take = createTakePattern(startListening, internalTaskController.signal);
const autoJoinPromises = [];
try {
entry.pending.add(internalTaskController);
trackExecutingListener(entry);
await Promise.resolve(entry.effect(action, assign({}, api, {
getOriginalState,
condition: (predicate, timeout) => take(predicate, timeout).then(Boolean),
take,
delay: createDelay(internalTaskController.signal),
pause: createPause(internalTaskController.signal),
extra,
signal: internalTaskController.signal,
fork: createFork(internalTaskController.signal, autoJoinPromises),
unsubscribe: entry.unsubscribe,
subscribe: () => {
listenerMap.set(entry.id, entry);
},
cancelActiveListeners: () => {
entry.pending.forEach((controller, _, set) => {
if (controller !== internalTaskController) {
controller.abort(listenerCancelled);
set.delete(controller);
}
});
},
cancel: () => {
internalTaskController.abort(listenerCancelled);
entry.pending.delete(internalTaskController);
},
throwIfCancelled: () => {
validateActive(internalTaskController.signal);
}
})));
} catch (listenerError) {
if (!(listenerError instanceof TaskAbortError)) safelyNotifyError(onError, listenerError, { raisedBy: "effect" });
} finally {
await Promise.all(autoJoinPromises);
internalTaskController.abort(listenerCompleted);
untrackExecutingListener(entry);
entry.pending.delete(internalTaskController);
}
};
const clearListenerMiddleware = createClearListenerMiddleware(listenerMap, executingListeners);
const middleware = (api) => (next) => (action) => {
if (!isAction(action)) return next(action);
if (addListener.match(action)) return startListening(action.payload);
if (clearAllListeners.match(action)) {
clearListenerMiddleware();
return;
}
if (removeListener.match(action)) return stopListening(action.payload);
let originalState = api.getState();
const getOriginalState = () => {
if (originalState === INTERNAL_NIL_TOKEN) throw new Error(`${alm}: getOriginalState can only be called synchronously`);
return originalState;
};
let result;
try {
result = next(action);
if (listenerMap.size > 0) {
const currentState = api.getState();
const listenerEntries = Array.from(listenerMap.values());
for (const entry of listenerEntries) {
let runListener = false;
try {
runListener = entry.predicate(action, currentState, originalState);
} catch (predicateError) {
runListener = false;
safelyNotifyError(onError, predicateError, { raisedBy: "predicate" });
}
if (!runListener) continue;
notifyListener(entry, action, api, getOriginalState);
}
}
} finally {
originalState = INTERNAL_NIL_TOKEN;
}
return result;
};
return {
middleware,
startListening,
stopListening,
clearListeners: clearListenerMiddleware
};
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/layoutSlice.js
var chartLayoutSlice = createSlice({
name: "chartLayout",
initialState: {
layoutType: "horizontal",
width: 0,
height: 0,
margin: {
top: 5,
right: 5,
bottom: 5,
left: 5
},
scale: 1
},
reducers: {
setLayout(state, action) {
state.layoutType = action.payload;
},
setChartSize(state, action) {
state.width = action.payload.width;
state.height = action.payload.height;
},
setMargin(state, action) {
var _action$payload$top, _action$payload$right, _action$payload$botto, _action$payload$left;
state.margin.top = (_action$payload$top = action.payload.top) !== null && _action$payload$top !== void 0 ? _action$payload$top : 0;
state.margin.right = (_action$payload$right = action.payload.right) !== null && _action$payload$right !== void 0 ? _action$payload$right : 0;
state.margin.bottom = (_action$payload$botto = action.payload.bottom) !== null && _action$payload$botto !== void 0 ? _action$payload$botto : 0;
state.margin.left = (_action$payload$left = action.payload.left) !== null && _action$payload$left !== void 0 ? _action$payload$left : 0;
},
setScale(state, action) {
state.scale = action.payload;
}
}
});
var { setMargin, setLayout, setChartSize, setScale } = chartLayoutSlice.actions;
var chartLayoutReducer = chartLayoutSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getSliced.js
function getSliced(arr, startIndex, endIndex) {
if (!Array.isArray(arr)) return arr;
if (arr && startIndex + endIndex !== 0) return arr.slice(startIndex, endIndex + 1);
return arr;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/isWellBehavedNumber.js
function isWellBehavedNumber(n) {
return Number.isFinite(n);
}
function isPositiveNumber(n) {
return typeof n === "number" && n > 0 && Number.isFinite(n);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/ChartUtils.js
function ownKeys$67(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$67(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$67(Object(t), !0).forEach(function(r) {
_defineProperty$69(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$67(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$69(e, r, t) {
return (r = _toPropertyKey$69(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$69(t) {
var i = _toPrimitive$69(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$69(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function getValueByDataKey(obj, dataKey, defaultValue) {
if (isNullish(obj) || isNullish(dataKey)) return defaultValue;
if (isNumOrStr(dataKey)) return (0, import_get.default)(obj, dataKey, defaultValue);
if (typeof dataKey === "function") return dataKey(obj);
return defaultValue;
}
var appendOffsetOfLegend = (offset, legendSettings, legendSize) => {
if (legendSettings && legendSize) {
var { width: boxWidth, height: boxHeight } = legendSize;
var { align, verticalAlign, layout } = legendSettings;
if ((layout === "vertical" || layout === "horizontal" && verticalAlign === "middle") && align !== "center" && isNumber(offset[align])) return _objectSpread$67(_objectSpread$67({}, offset), {}, { [align]: offset[align] + (boxWidth || 0) });
if ((layout === "horizontal" || layout === "vertical" && align === "center") && verticalAlign !== "middle" && isNumber(offset[verticalAlign])) return _objectSpread$67(_objectSpread$67({}, offset), {}, { [verticalAlign]: offset[verticalAlign] + (boxHeight || 0) });
}
return offset;
};
var isCategoricalAxis = (layout, axisType) => layout === "horizontal" && axisType === "xAxis" || layout === "vertical" && axisType === "yAxis" || layout === "centric" && axisType === "angleAxis" || layout === "radial" && axisType === "radiusAxis";
/**
* Calculate the Coordinates of grid
* @param {Array} ticks The ticks in axis
* @param {Number} minValue The minimum value of axis
* @param {Number} maxValue The maximum value of axis
* @param {boolean} syncWithTicks Synchronize grid lines with ticks or not
* @return {Array} Coordinates
*/
var getCoordinatesOfGrid = (ticks, minValue, maxValue, syncWithTicks) => {
if (syncWithTicks) return ticks.map((entry) => entry.coordinate);
var hasMin, hasMax;
var values = ticks.map((entry) => {
if (entry.coordinate === minValue) hasMin = true;
if (entry.coordinate === maxValue) hasMax = true;
return entry.coordinate;
});
if (!hasMin) values.push(minValue);
if (!hasMax) values.push(maxValue);
return values;
};
/**
* Of on four almost identical implementations of tick generation.
* The four horsemen of tick generation are:
* - {@link selectTooltipAxisTicks}
* - {@link combineAxisTicks}
* - {@link getTicksOfAxis}.
* - {@link combineGraphicalItemTicks}
*/
var getTicksOfAxis = (axis, isGrid, isAll) => {
if (!axis) return null;
var { duplicateDomain, type, range, scale, realScaleType, isCategorical, categoricalDomain, tickCount, ticks, niceTicks, axisType } = axis;
if (!scale) return null;
var offsetForBand = realScaleType === "scaleBand" && scale.bandwidth ? scale.bandwidth() / 2 : 2;
var offset = (isGrid || isAll) && type === "category" && scale.bandwidth ? scale.bandwidth() / offsetForBand : 0;
offset = axisType === "angleAxis" && range && range.length >= 2 ? mathSign(range[0] - range[1]) * 2 * offset : offset;
if (isGrid && (ticks || niceTicks)) return (ticks || niceTicks || []).map((entry, index) => {
var scaleContent = duplicateDomain ? duplicateDomain.indexOf(entry) : entry;
var scaled = scale.map(scaleContent);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
offset,
index
};
}).filter(isNotNil);
if (isCategorical && categoricalDomain) return categoricalDomain.map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
if (scale.ticks && !isAll && tickCount != null) return scale.ticks(tickCount).map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
return scale.domain().map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: duplicateDomain ? duplicateDomain[entry] : entry,
index,
offset
};
}).filter(isNotNil);
};
/**
* Both value and domain are tuples of two numbers
* - but the type stays as array of numbers until we have better support in rest of the app
* @param value input that will be truncated
* @param domain boundaries
* @returns tuple of two numbers
*/
var truncateByDomain = (value, domain) => {
if (!domain || domain.length !== 2 || !isNumber(domain[0]) || !isNumber(domain[1])) return value;
var minValue = Math.min(domain[0], domain[1]);
var maxValue = Math.max(domain[0], domain[1]);
var result = [value[0], value[1]];
if (!isNumber(value[0]) || value[0] < minValue) result[0] = minValue;
if (!isNumber(value[1]) || value[1] > maxValue) result[1] = maxValue;
if (result[0] > maxValue) result[0] = maxValue;
if (result[1] < minValue) result[1] = minValue;
return result;
};
/**
* Stacks all positive numbers above zero and all negative numbers below zero.
*
* If all values in the series are positive then this behaves the same as 'none' stacker.
*
* @param {Array} series from d3-shape Stack
* @return {Array} series with applied offset
*/
var offsetSign = (series) => {
var _series$;
var n = series.length;
if (n <= 0) return;
var m = (_series$ = series[0]) === null || _series$ === void 0 ? void 0 : _series$.length;
if (m == null || m <= 0) return;
for (var j = 0; j < m; ++j) {
var positive = 0;
var negative = 0;
for (var i = 0; i < n; ++i) {
var row = series[i];
var col = row === null || row === void 0 ? void 0 : row[j];
if (col == null) continue;
var series1 = col[1];
var series0 = col[0];
var value = isNan(series1) ? series0 : series1;
if (value >= 0) {
col[0] = positive;
positive += value;
col[1] = positive;
} else {
col[0] = negative;
negative += value;
col[1] = negative;
}
}
}
};
/**
* Replaces all negative values with zero when stacking data.
*
* If all values in the series are positive then this behaves the same as 'none' stacker.
*
* @param {Array} series from d3-shape Stack
* @return {Array} series with applied offset
*/
var offsetPositive = (series) => {
var _series$2;
var n = series.length;
if (n <= 0) return;
var m = (_series$2 = series[0]) === null || _series$2 === void 0 ? void 0 : _series$2.length;
if (m == null || m <= 0) return;
for (var j = 0; j < m; ++j) {
var positive = 0;
for (var i = 0; i < n; ++i) {
var row = series[i];
var col = row === null || row === void 0 ? void 0 : row[j];
if (col == null) continue;
var value = isNan(col[1]) ? col[0] : col[1];
if (value >= 0) {
col[0] = positive;
positive += value;
col[1] = positive;
} else {
col[0] = 0;
col[1] = 0;
}
}
}
};
/**
* Function type to compute offset for stacked data.
*
* d3-shape has something fishy going on with its types.
* In @definitelytyped/d3-shape, this function (the offset accessor) is typed as Series<> => void.
* However! When I actually open the storybook I can see that the offset accessor actually receives Array>.
* The same I can see in the source code itself:
* https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66042
* That one unfortunately has no types but we can tell it passes three-dimensional array.
*
* Which leads me to believe that definitelytyped is wrong on this one.
* There's open discussion on this topic without much attention:
* https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/66042
*/
var STACK_OFFSET_MAP = {
sign: offsetSign,
expand: expand_default,
none: none_default$1,
silhouette: silhouette_default,
wiggle: wiggle_default,
positive: offsetPositive
};
var getStackedData = (data, dataKeys, offsetType) => {
var _STACK_OFFSET_MAP$off;
var offsetAccessor = (_STACK_OFFSET_MAP$off = STACK_OFFSET_MAP[offsetType]) !== null && _STACK_OFFSET_MAP$off !== void 0 ? _STACK_OFFSET_MAP$off : none_default$1;
var result = stack_default().keys(dataKeys).value((d, key) => Number(getValueByDataKey(d, key, 0))).order(none_default).offset(offsetAccessor)(data);
result.forEach((series, seriesIndex) => {
series.forEach((point, pointIndex) => {
var value = getValueByDataKey(data[pointIndex], dataKeys[seriesIndex], 0);
if (Array.isArray(value) && value.length === 2 && isNumber(value[0]) && isNumber(value[1])) {
point[0] = value[0];
point[1] = value[1];
}
});
});
return result;
};
/**
* Externally, we accept both strings and numbers as stack IDs
* @inline
*/
/**
* Stack IDs in the external props allow numbers; but internally we use it as an object key
* and object keys are always strings. Also, it would be kinda confusing if stackId=8 and stackId='8' were different stacks
* so let's just force a string.
*/
function getNormalizedStackId(publicStackId) {
return publicStackId == null ? void 0 : String(publicStackId);
}
function getCateCoordinateOfLine(_ref) {
var { axis, ticks, bandSize, entry, index, dataKey } = _ref;
if (axis.type === "category") {
if (!axis.allowDuplicatedCategory && axis.dataKey && !isNullish(entry[axis.dataKey])) {
var matchedTick = findEntryInArray(ticks, "value", entry[axis.dataKey]);
if (matchedTick) return matchedTick.coordinate + bandSize / 2;
}
return ticks !== null && ticks !== void 0 && ticks[index] ? ticks[index].coordinate + bandSize / 2 : null;
}
var value = getValueByDataKey(entry, !isNullish(dataKey) ? dataKey : axis.dataKey);
var scaled = axis.scale.map(value);
if (!isNumber(scaled)) return null;
return scaled;
}
var getCateCoordinateOfBar = (_ref2) => {
var { axis, ticks, offset, bandSize, entry, index } = _ref2;
if (axis.type === "category") return ticks[index] ? ticks[index].coordinate + offset : null;
var value = getValueByDataKey(entry, axis.dataKey, axis.scale.domain()[index]);
if (isNullish(value)) return null;
var scaled = axis.scale.map(value);
if (!isNumber(scaled)) return null;
return scaled - bandSize / 2 + offset;
};
var getBaseValueOfBar = (_ref3) => {
var { numericAxis } = _ref3;
var domain = numericAxis.scale.domain();
if (numericAxis.type === "number") {
var minValue = Math.min(domain[0], domain[1]);
var maxValue = Math.max(domain[0], domain[1]);
if (minValue <= 0 && maxValue >= 0) return 0;
if (maxValue < 0) return maxValue;
return minValue;
}
return domain[0];
};
var getDomainOfSingle = (data) => {
var flat = data.flat(2).filter(isNumber);
return [Math.min(...flat), Math.max(...flat)];
};
var makeDomainFinite = (domain) => {
return [domain[0] === Infinity ? 0 : domain[0], domain[1] === -Infinity ? 0 : domain[1]];
};
var getDomainOfStackGroups = (stackGroups, startIndex, endIndex) => {
if (stackGroups == null) return;
return makeDomainFinite(Object.keys(stackGroups).reduce((result, stackId) => {
var group = stackGroups[stackId];
if (!group) return result;
var { stackedData } = group;
var domain = stackedData.reduce((res, entry) => {
var s = getDomainOfSingle(getSliced(entry, startIndex, endIndex));
if (!isWellBehavedNumber(s[0]) || !isWellBehavedNumber(s[1])) return res;
return [Math.min(res[0], s[0]), Math.max(res[1], s[1])];
}, [Infinity, -Infinity]);
return [Math.min(domain[0], result[0]), Math.max(domain[1], result[1])];
}, [Infinity, -Infinity]));
};
var MIN_VALUE_REG = /^dataMin[\s]*-[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/;
var MAX_VALUE_REG = /^dataMax[\s]*\+[\s]*([0-9]+([.]{1}[0-9]+){0,1})$/;
/**
* Calculate the size between two category
* @param {Object} axis The options of axis
* @param {Array} ticks The ticks of axis
* @param {Boolean} isBar if items in axis are bars
* @return {Number} Size
*/
var getBandSizeOfAxis = (axis, ticks, isBar) => {
if (axis && axis.scale && axis.scale.bandwidth) {
var bandWidth = axis.scale.bandwidth();
if (!isBar || bandWidth > 0) return bandWidth;
}
if (axis && ticks && ticks.length >= 2) {
var orderedTicks = (0, import_sortBy.default)(ticks, (o) => o.coordinate);
var bandSize = Infinity;
for (var i = 1, len = orderedTicks.length; i < len; i++) {
var cur = orderedTicks[i];
var prev = orderedTicks[i - 1];
bandSize = Math.min(((cur === null || cur === void 0 ? void 0 : cur.coordinate) || 0) - ((prev === null || prev === void 0 ? void 0 : prev.coordinate) || 0), bandSize);
}
return bandSize === Infinity ? 0 : bandSize;
}
return isBar ? void 0 : 0;
};
function getTooltipEntry(_ref4) {
var { tooltipEntrySettings, dataKey, payload, value, name } = _ref4;
return _objectSpread$67(_objectSpread$67({}, tooltipEntrySettings), {}, {
dataKey,
payload,
value,
name
});
}
function getTooltipNameProp(nameFromItem, dataKey) {
if (nameFromItem) return String(nameFromItem);
if (typeof dataKey === "string") return dataKey;
}
var calculateCartesianTooltipPos = (coordinate, layout) => {
if (layout === "horizontal") return coordinate.relativeX;
if (layout === "vertical") return coordinate.relativeY;
};
var calculatePolarTooltipPos = (rangeObj, layout) => {
if (layout === "centric") return rangeObj.angle;
return rangeObj.radius;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/containerSelectors.js
var selectChartWidth = (state) => state.layout.width;
var selectChartHeight = (state) => state.layout.height;
var selectContainerScale = (state) => state.layout.scale;
var selectMargin = (state) => state.layout.margin;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectAllAxes.js
var selectAllXAxes = createSelector((state) => state.cartesianAxis.xAxis, (xAxisMap) => {
return Object.values(xAxisMap);
});
var selectAllYAxes = createSelector((state) => state.cartesianAxis.yAxis, (yAxisMap) => {
return Object.values(yAxisMap);
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/Constants.js
var COLOR_PANEL = [
"#1890FF",
"#66B5FF",
"#41D9C7",
"#2FC25B",
"#6EDB8F",
"#9AE65C",
"#FACC14",
"#E6965C",
"#57AD71",
"#223273",
"#738AE6",
"#7564CC",
"#8543E0",
"#A877ED",
"#5C8EE6",
"#13C2C2",
"#70E0E0",
"#5CA3E6",
"#3436C7",
"#8082FF",
"#DD81E6",
"#F04864",
"#FA7D92",
"#D598D9"
];
/**
* We use this attribute to identify which element is the one that the user is touching.
* The index is the position of the element in the data array.
* This can be either a number (for array-based charts) or a string (for the charts that have a matrix-shaped data).
*/
var DATA_ITEM_INDEX_ATTRIBUTE_NAME = "data-recharts-item-index";
/**
* We use this attribute to identify which element is the one that the user is touching.
* Unlike dataKey, or name, it is always unique.
*/
var DATA_ITEM_GRAPHICAL_ITEM_ID_ATTRIBUTE_NAME = "data-recharts-item-id";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectChartOffsetInternal.js
function ownKeys$66(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$66(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$66(Object(t), !0).forEach(function(r) {
_defineProperty$68(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$66(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$68(e, r, t) {
return (r = _toPropertyKey$68(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$68(t) {
var i = _toPrimitive$68(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$68(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var selectBrushHeight = (state) => state.brush.height;
function selectLeftAxesOffset(state) {
return selectAllYAxes(state).reduce((result, entry) => {
if (entry.orientation === "left" && !entry.mirror && !entry.hide) return result + (typeof entry.width === "number" ? entry.width : 60);
return result;
}, 0);
}
function selectRightAxesOffset(state) {
return selectAllYAxes(state).reduce((result, entry) => {
if (entry.orientation === "right" && !entry.mirror && !entry.hide) return result + (typeof entry.width === "number" ? entry.width : 60);
return result;
}, 0);
}
function selectTopAxesOffset(state) {
return selectAllXAxes(state).reduce((result, entry) => {
if (entry.orientation === "top" && !entry.mirror && !entry.hide) return result + entry.height;
return result;
}, 0);
}
function selectBottomAxesOffset(state) {
return selectAllXAxes(state).reduce((result, entry) => {
if (entry.orientation === "bottom" && !entry.mirror && !entry.hide) return result + entry.height;
return result;
}, 0);
}
/**
* For internal use only.
*
* @param root state
* @return ChartOffsetInternal
*/
var selectChartOffsetInternal = createSelector([
selectChartWidth,
selectChartHeight,
selectMargin,
selectBrushHeight,
selectLeftAxesOffset,
selectRightAxesOffset,
selectTopAxesOffset,
selectBottomAxesOffset,
selectLegendSettings,
selectLegendSize
], (chartWidth, chartHeight, margin, brushHeight, leftAxesOffset, rightAxesOffset, topAxesOffset, bottomAxesOffset, legendSettings, legendSize) => {
var offsetH = {
left: (margin.left || 0) + leftAxesOffset,
right: (margin.right || 0) + rightAxesOffset
};
var offset = _objectSpread$66(_objectSpread$66({}, {
top: (margin.top || 0) + topAxesOffset,
bottom: (margin.bottom || 0) + bottomAxesOffset
}), offsetH);
var brushBottom = offset.bottom;
offset.bottom += brushHeight;
offset = appendOffsetOfLegend(offset, legendSettings, legendSize);
var offsetWidth = chartWidth - offset.left - offset.right;
var offsetHeight = chartHeight - offset.top - offset.bottom;
return _objectSpread$66(_objectSpread$66({ brushBottom }, offset), {}, {
width: Math.max(offsetWidth, 0),
height: Math.max(offsetHeight, 0)
});
});
var selectChartViewBox = createSelector(selectChartOffsetInternal, (offset) => ({
x: offset.left,
y: offset.top,
width: offset.width,
height: offset.height
}));
var selectAxisViewBox = createSelector(selectChartWidth, selectChartHeight, (width, height) => ({
x: 0,
y: 0,
width,
height
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/PanoramaContext.js
var PanoramaContext = /* @__PURE__ */ (0, import_react.createContext)(null);
var useIsPanorama = () => (0, import_react.useContext)(PanoramaContext) != null;
var PanoramaContextProvider = (_ref) => {
var { children } = _ref;
return /* @__PURE__ */ import_react.createElement(PanoramaContext.Provider, { value: true }, children);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/brushSelectors.js
var selectBrushSettings = (state) => state.brush;
var selectBrushDimensions = createSelector([
selectBrushSettings,
selectChartOffsetInternal,
selectMargin
], (brushSettings, offset, margin) => ({
height: brushSettings.height,
x: isNumber(brushSettings.x) ? brushSettings.x : offset.left,
y: isNumber(brushSettings.y) ? brushSettings.y : offset.top + offset.height + offset.brushBottom - ((margin === null || margin === void 0 ? void 0 : margin.bottom) || 0),
width: isNumber(brushSettings.width) ? brushSettings.width : offset.width
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/function/debounce.js
var require_debounce$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function debounce(func, debounceMs, { signal, edges } = {}) {
let pendingThis = void 0;
let pendingArgs = null;
const leading = edges != null && edges.includes("leading");
const trailing = edges == null || edges.includes("trailing");
const invoke = () => {
if (pendingArgs !== null) {
func.apply(pendingThis, pendingArgs);
pendingThis = void 0;
pendingArgs = null;
}
};
const onTimerEnd = () => {
if (trailing) invoke();
cancel();
};
let timeoutId = null;
const schedule = () => {
if (timeoutId != null) clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
timeoutId = null;
onTimerEnd();
}, debounceMs);
};
const cancelTimer = () => {
if (timeoutId !== null) {
clearTimeout(timeoutId);
timeoutId = null;
}
};
const cancel = () => {
cancelTimer();
pendingThis = void 0;
pendingArgs = null;
};
const flush = () => {
invoke();
};
const debounced = function(...args) {
if (signal?.aborted) return;
pendingThis = this;
pendingArgs = args;
const isFirstCall = timeoutId == null;
schedule();
if (leading && isFirstCall) invoke();
};
debounced.schedule = schedule;
debounced.cancel = cancel;
debounced.flush = flush;
signal?.addEventListener("abort", cancel, { once: true });
return debounced;
}
exports.debounce = debounce;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/function/debounce.js
var require_debounce = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var debounce$1 = require_debounce$1();
function debounce(func, debounceMs = 0, options = {}) {
if (typeof options !== "object") options = {};
const { leading = false, trailing = true, maxWait } = options;
const edges = Array(2);
if (leading) edges[0] = "leading";
if (trailing) edges[1] = "trailing";
let result = void 0;
let pendingAt = null;
const _debounced = debounce$1.debounce(function(...args) {
result = func.apply(this, args);
pendingAt = null;
}, debounceMs, { edges });
const debounced = function(...args) {
if (maxWait != null) {
if (pendingAt === null) pendingAt = Date.now();
if (Date.now() - pendingAt >= maxWait) {
result = func.apply(this, args);
pendingAt = Date.now();
_debounced.cancel();
_debounced.schedule();
return result;
}
}
_debounced.apply(this, args);
return result;
};
const flush = () => {
_debounced.flush();
return result;
};
debounced.cancel = _debounced.cancel;
debounced.flush = flush;
return debounced;
}
exports.debounce = debounce;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/function/throttle.js
var require_throttle$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var debounce = require_debounce();
function throttle(func, throttleMs = 0, options = {}) {
const { leading = true, trailing = true } = options;
return debounce.debounce(func, throttleMs, {
leading,
maxWait: throttleMs,
trailing
});
}
exports.throttle = throttle;
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/LogUtils.js
var import_throttle = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_throttle$1().throttle;
})))());
var isDev = true;
var warn = function warn(condition, format) {
for (var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) args[_key - 2] = arguments[_key];
if (isDev && typeof console !== "undefined" && console.warn) {
if (format === void 0) console.warn("LogUtils requires an error message argument");
if (!condition) if (format === void 0) console.warn("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");
else {
var argIndex = 0;
console.warn(format.replace(/%s/g, () => args[argIndex++]));
}
}
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/responsiveContainerUtils.js
var defaultResponsiveContainerProps = {
width: "100%",
height: "100%",
debounce: 0,
minWidth: 0,
initialDimension: {
width: -1,
height: -1
}
};
var calculateChartDimensions = (containerWidth, containerHeight, props) => {
var { width = defaultResponsiveContainerProps.width, height = defaultResponsiveContainerProps.height, aspect, maxHeight } = props;
var calculatedWidth = isPercent(width) ? containerWidth : Number(width);
var calculatedHeight = isPercent(height) ? containerHeight : Number(height);
if (aspect && aspect > 0) {
if (calculatedWidth) calculatedHeight = calculatedWidth / aspect;
else if (calculatedHeight) calculatedWidth = calculatedHeight * aspect;
if (maxHeight && calculatedHeight != null && calculatedHeight > maxHeight) calculatedHeight = maxHeight;
}
return {
calculatedWidth,
calculatedHeight
};
};
var bothOverflow = {
width: 0,
height: 0,
overflow: "visible"
};
var overflowX = {
width: 0,
overflowX: "visible"
};
var overflowY = {
height: 0,
overflowY: "visible"
};
var noStyle = {};
/**
* This zero-size, overflow-visible is required to allow the chart to shrink.
* Without it, the chart itself will fill the ResponsiveContainer, and while it allows the chart to grow,
* it would always keep the container at the size of the chart,
* and ResizeObserver would never fire.
* With this zero-size element, the chart itself never actually fills the container,
* it just so happens that it is visible because it overflows.
* I learned this trick from the `react-virtualized` library: https://github.com/bvaughn/react-virtualized-auto-sizer/blob/master/src/AutoSizer.ts
* See https://github.com/recharts/recharts/issues/172 and also https://github.com/bvaughn/react-virtualized/issues/68
*
* Also, we don't need to apply the zero-size style if the dimension is a fixed number (or undefined),
* because in that case the chart can't shrink in that dimension anyway.
* This fixes defining the dimensions using aspect ratio: https://github.com/recharts/recharts/issues/6245
*/
var getInnerDivStyle = (props) => {
var { width, height } = props;
var isWidthPercent = isPercent(width);
var isHeightPercent = isPercent(height);
if (isWidthPercent && isHeightPercent) return bothOverflow;
if (isWidthPercent) return overflowX;
if (isHeightPercent) return overflowY;
return noStyle;
};
function getDefaultWidthAndHeight(_ref) {
var { width, height, aspect } = _ref;
var calculatedWidth = width;
var calculatedHeight = height;
if (calculatedWidth === void 0 && calculatedHeight === void 0) {
calculatedWidth = defaultResponsiveContainerProps.width;
calculatedHeight = defaultResponsiveContainerProps.height;
} else if (calculatedWidth === void 0) calculatedWidth = aspect && aspect > 0 ? void 0 : defaultResponsiveContainerProps.width;
else if (calculatedHeight === void 0) calculatedHeight = aspect && aspect > 0 ? void 0 : defaultResponsiveContainerProps.height;
return {
width: calculatedWidth,
height: calculatedHeight
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/ResponsiveContainer.js
function _extends$48() {
return _extends$48 = 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$48.apply(null, arguments);
}
function ownKeys$65(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$65(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$65(Object(t), !0).forEach(function(r) {
_defineProperty$67(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$65(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$67(e, r, t) {
return (r = _toPropertyKey$67(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$67(t) {
var i = _toPrimitive$67(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$67(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var ResponsiveContainerContext = /* @__PURE__ */ (0, import_react.createContext)(defaultResponsiveContainerProps.initialDimension);
function isAcceptableSize(size) {
return isPositiveNumber(size.width) && isPositiveNumber(size.height);
}
function ResponsiveContainerContextProvider(_ref) {
var { children, width, height } = _ref;
var size = (0, import_react.useMemo)(() => ({
width,
height
}), [width, height]);
if (!isAcceptableSize(size)) return null;
return /* @__PURE__ */ import_react.createElement(ResponsiveContainerContext.Provider, { value: size }, children);
}
var useResponsiveContainerContext = () => (0, import_react.useContext)(ResponsiveContainerContext);
var SizeDetectorContainer = /* @__PURE__ */ (0, import_react.forwardRef)((_ref2, ref) => {
var { aspect, initialDimension = defaultResponsiveContainerProps.initialDimension, width, height, minWidth = defaultResponsiveContainerProps.minWidth, minHeight, maxHeight, children, debounce = defaultResponsiveContainerProps.debounce, id, className, onResize, style = {} } = _ref2;
var containerRef = (0, import_react.useRef)(null);
var onResizeRef = (0, import_react.useRef)();
onResizeRef.current = onResize;
(0, import_react.useImperativeHandle)(ref, () => containerRef.current);
var [sizes, setSizes] = (0, import_react.useState)({
containerWidth: initialDimension.width,
containerHeight: initialDimension.height
});
var setContainerSize = (0, import_react.useCallback)((newWidth, newHeight) => {
setSizes((prevState) => {
var roundedWidth = Math.round(newWidth);
var roundedHeight = Math.round(newHeight);
if (prevState.containerWidth === roundedWidth && prevState.containerHeight === roundedHeight) return prevState;
return {
containerWidth: roundedWidth,
containerHeight: roundedHeight
};
});
}, []);
(0, import_react.useEffect)(() => {
if (containerRef.current == null || typeof ResizeObserver === "undefined") return noop$2;
var callback = (entries) => {
var _onResizeRef$current;
var entry = entries[0];
if (entry == null) return;
var { width: containerWidth, height: containerHeight } = entry.contentRect;
setContainerSize(containerWidth, containerHeight);
(_onResizeRef$current = onResizeRef.current) === null || _onResizeRef$current === void 0 || _onResizeRef$current.call(onResizeRef, containerWidth, containerHeight);
};
if (debounce > 0) callback = (0, import_throttle.default)(callback, debounce, {
trailing: true,
leading: false
});
var observer = new ResizeObserver(callback);
var { width: containerWidth, height: containerHeight } = containerRef.current.getBoundingClientRect();
setContainerSize(containerWidth, containerHeight);
observer.observe(containerRef.current);
return () => {
observer.disconnect();
};
}, [setContainerSize, debounce]);
var { containerWidth, containerHeight } = sizes;
warn(!aspect || aspect > 0, "The aspect(%s) must be greater than zero.", aspect);
var { calculatedWidth, calculatedHeight } = calculateChartDimensions(containerWidth, containerHeight, {
width,
height,
aspect,
maxHeight
});
warn(calculatedWidth != null && calculatedWidth > 0 || calculatedHeight != null && calculatedHeight > 0, "The width(%s) and height(%s) of chart should be greater than 0,\n please check the style of container, or the props width(%s) and height(%s),\n or add a minWidth(%s) or minHeight(%s) or use aspect(%s) to control the\n height and width.", calculatedWidth, calculatedHeight, width, height, minWidth, minHeight, aspect);
return /* @__PURE__ */ import_react.createElement("div", {
id: id ? "".concat(id) : void 0,
className: clsx("recharts-responsive-container", className),
style: _objectSpread$65(_objectSpread$65({}, style), {}, {
width,
height,
minWidth,
minHeight,
maxHeight
}),
ref: containerRef
}, /* @__PURE__ */ import_react.createElement("div", { style: getInnerDivStyle({
width,
height
}) }, /* @__PURE__ */ import_react.createElement(ResponsiveContainerContextProvider, {
width: calculatedWidth,
height: calculatedHeight
}, children)));
});
/**
* The `ResponsiveContainer` component is a container that adjusts its width and height based on the size of its parent element.
* It is used to create responsive charts that adapt to different screen sizes.
*
* This component uses the {@link https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver ResizeObserver} API to monitor changes to the size of its parent element.
* If you need to support older browsers that do not support this API, you may need to include a polyfill.
*
* @see {@link https://recharts.github.io/en-US/guide/sizes/ Chart size guide}
*
* @provides ResponsiveContainerContext
*/
var ResponsiveContainer = /* @__PURE__ */ (0, import_react.forwardRef)((props, ref) => {
var responsiveContainerContext = useResponsiveContainerContext();
if (isPositiveNumber(responsiveContainerContext.width) && isPositiveNumber(responsiveContainerContext.height)) return props.children;
var { width, height } = getDefaultWidthAndHeight({
width: props.width,
height: props.height,
aspect: props.aspect
});
var { calculatedWidth, calculatedHeight } = calculateChartDimensions(void 0, void 0, {
width,
height,
aspect: props.aspect,
maxHeight: props.maxHeight
});
if (isNumber(calculatedWidth) && isNumber(calculatedHeight)) return /* @__PURE__ */ import_react.createElement(ResponsiveContainerContextProvider, {
width: calculatedWidth,
height: calculatedHeight
}, props.children);
return /* @__PURE__ */ import_react.createElement(SizeDetectorContainer, _extends$48({}, props, {
width,
height,
ref
}));
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/chartLayoutContext.js
function cartesianViewBoxToTrapezoid(box) {
if (!box) return;
return {
x: box.x,
y: box.y,
upperWidth: "upperWidth" in box ? box.upperWidth : box.width,
lowerWidth: "lowerWidth" in box ? box.lowerWidth : box.width,
width: box.width,
height: box.height
};
}
var useViewBox = () => {
var _useAppSelector;
var panorama = useIsPanorama();
var rootViewBox = useAppSelector(selectChartViewBox);
var brushDimensions = useAppSelector(selectBrushDimensions);
var brushPadding = (_useAppSelector = useAppSelector(selectBrushSettings)) === null || _useAppSelector === void 0 ? void 0 : _useAppSelector.padding;
if (!panorama || !brushDimensions || !brushPadding) return rootViewBox;
return {
width: brushDimensions.width - brushPadding.left - brushPadding.right,
height: brushDimensions.height - brushPadding.top - brushPadding.bottom,
x: brushPadding.left,
y: brushPadding.top
};
};
var manyComponentsThrowErrorsIfOffsetIsUndefined = {
top: 0,
bottom: 0,
left: 0,
right: 0,
width: 0,
height: 0,
brushBottom: 0
};
/**
* For internal use only. If you want this information, `import { useOffset } from 'recharts'` instead.
*
* Returns the offset of the chart in pixels.
*
* @returns {ChartOffsetInternal} The offset of the chart in pixels, or a default value if not in a chart context.
*/
var useOffsetInternal = () => {
var _useAppSelector2;
return (_useAppSelector2 = useAppSelector(selectChartOffsetInternal)) !== null && _useAppSelector2 !== void 0 ? _useAppSelector2 : manyComponentsThrowErrorsIfOffsetIsUndefined;
};
/**
* Returns the width of the chart in pixels.
*
* If you are using chart with hardcoded `width` prop, then the width returned will be the same
* as the `width` prop on the main chart element.
*
* If you are using a chart with a `ResponsiveContainer`, the width will be the size of the chart
* as the ResponsiveContainer has decided it would be.
*
* If the chart has any axes or legend, the `width` will be the size of the chart
* including the axes and legend. Meaning: adding axes and legend will not change the width.
*
* The dimensions do not scale, meaning as user zoom in and out, the width number will not change
* as the chart gets visually larger or smaller.
*
* Returns `undefined` if used outside a chart context.
*
* @returns {number | undefined} The width of the chart in pixels, or `undefined` if not in a chart context.
*/
var useChartWidth = () => {
return useAppSelector(selectChartWidth);
};
/**
* Returns the height of the chart in pixels.
*
* If you are using chart with hardcoded `height` props, then the height returned will be the same
* as the `height` prop on the main chart element.
*
* If you are using a chart with a `ResponsiveContainer`, the height will be the size of the chart
* as the ResponsiveContainer has decided it would be.
*
* If the chart has any axes or legend, the `height` will be the size of the chart
* including the axes and legend. Meaning: adding axes and legend will not change the height.
*
* The dimensions do not scale, meaning as user zoom in and out, the height number will not change
* as the chart gets visually larger or smaller.
*
* Returns `undefined` if used outside a chart context.
*
* @returns {number | undefined} The height of the chart in pixels, or `undefined` if not in a chart context.
*/
var useChartHeight = () => {
return useAppSelector(selectChartHeight);
};
/**
* Margin is the empty space around the chart. Excludes axes and legend and brushes and the like.
* This is declared by the user in the chart props.
* If you are interested in the space occupied by axes, legend, or brushes,
* use {@link useOffset} instead, which also includes calculated widths and heights of axes and legends.
*
* Returns `undefined` if used outside a chart context.
*
* @returns {Margin | undefined} The margin of the chart in pixels, or `undefined` if not in a chart context.
*/
var useMargin = () => {
return useAppSelector((state) => state.layout.margin);
};
var selectChartLayout = (state) => state.layout.layoutType;
var useChartLayout = () => useAppSelector(selectChartLayout);
var useCartesianChartLayout = () => {
var layout = useChartLayout();
if (layout === "horizontal" || layout === "vertical") return layout;
};
var selectPolarChartLayout = (state) => {
var layout = state.layout.layoutType;
if (layout === "centric" || layout === "radial") return layout;
};
var usePolarChartLayout = () => {
return useAppSelector(selectPolarChartLayout);
};
/**
* Returns true if the component is rendered inside a chart context.
* Some components may be used both inside and outside of charts,
* and this hook allows them to determine if they are in a chart context or not.
*
* Other selectors may return undefined when used outside a chart context,
* or undefined when inside a chart, but without relevant data.
* This hook provides a more explicit way to check for chart context.
*
* @returns {boolean} True if in chart context, false otherwise.
*/
var useIsInChartContext = () => {
return useChartLayout() !== void 0;
};
var ReportChartSize = (props) => {
var dispatch = useAppDispatch();
var isPanorama = useIsPanorama();
var { width: widthFromProps, height: heightFromProps } = props;
var responsiveContainerCalculations = useResponsiveContainerContext();
var width = widthFromProps;
var height = heightFromProps;
if (responsiveContainerCalculations) {
width = responsiveContainerCalculations.width > 0 ? responsiveContainerCalculations.width : widthFromProps;
height = responsiveContainerCalculations.height > 0 ? responsiveContainerCalculations.height : heightFromProps;
}
(0, import_react.useEffect)(() => {
if (!isPanorama && isPositiveNumber(width) && isPositiveNumber(height)) dispatch(setChartSize({
width,
height
}));
}, [
dispatch,
isPanorama,
width,
height
]);
return null;
};
var ReportChartMargin = (_ref) => {
var { margin } = _ref;
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(setMargin(margin));
}, [dispatch, margin]);
return null;
};
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/immer-npm-10.2.0-e485dbc924-10c0.zip/node_modules/immer/dist/immer.mjs
var NOTHING = Symbol.for("immer-nothing");
var DRAFTABLE = Symbol.for("immer-draftable");
var DRAFT_STATE = Symbol.for("immer-state");
var errors = [
function(plugin) {
return `The plugin for '${plugin}' has not been loaded into Immer. To enable the plugin, import and call \`enable${plugin}()\` when initializing your application.`;
},
function(thing) {
return `produce can only be called on things that are draftable: plain objects, arrays, Map, Set or classes that are marked with '[immerable]: true'. Got '${thing}'`;
},
"This object has been frozen and should not be mutated",
function(data) {
return "Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? " + data;
},
"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.",
"Immer forbids circular references",
"The first or second argument to `produce` must be a function",
"The third argument to `produce` must be a function or undefined",
"First argument to `createDraft` must be a plain object, an array, or an immerable object",
"First argument to `finishDraft` must be a draft returned by `createDraft`",
function(thing) {
return `'current' expects a draft, got: ${thing}`;
},
"Object.defineProperty() cannot be used on an Immer draft",
"Object.setPrototypeOf() cannot be used on an Immer draft",
"Immer only supports deleting array indices",
"Immer only supports setting array indices and the 'length' property",
function(thing) {
return `'original' expects a draft, got: ${thing}`;
}
];
function die(error, ...args) {
{
const e = errors[error];
const msg = typeof e === "function" ? e.apply(null, args) : e;
throw new Error(`[Immer] ${msg}`);
}
throw new Error(`[Immer] minified error nr: ${error}. Full error at: https://bit.ly/3cXEKWf`);
}
var getPrototypeOf = Object.getPrototypeOf;
function isDraft(value) {
return !!value && !!value[DRAFT_STATE];
}
function isDraftable(value) {
if (!value) return false;
return isPlainObject$1(value) || Array.isArray(value) || !!value[DRAFTABLE] || !!value.constructor?.[DRAFTABLE] || isMap(value) || isSet(value);
}
var objectCtorString = Object.prototype.constructor.toString();
var cachedCtorStrings = /* @__PURE__ */ new WeakMap();
function isPlainObject$1(value) {
if (!value || typeof value !== "object") return false;
const proto = Object.getPrototypeOf(value);
if (proto === null || proto === Object.prototype) return true;
const Ctor = Object.hasOwnProperty.call(proto, "constructor") && proto.constructor;
if (Ctor === Object) return true;
if (typeof Ctor !== "function") return false;
let ctorString = cachedCtorStrings.get(Ctor);
if (ctorString === void 0) {
ctorString = Function.toString.call(Ctor);
cachedCtorStrings.set(Ctor, ctorString);
}
return ctorString === objectCtorString;
}
function each(obj, iter, strict = true) {
if (getArchtype(obj) === 0) (strict ? Reflect.ownKeys(obj) : Object.keys(obj)).forEach((key) => {
iter(key, obj[key], obj);
});
else obj.forEach((entry, index) => iter(index, entry, obj));
}
function getArchtype(thing) {
const state = thing[DRAFT_STATE];
return state ? state.type_ : Array.isArray(thing) ? 1 : isMap(thing) ? 2 : isSet(thing) ? 3 : 0;
}
function has(thing, prop) {
return getArchtype(thing) === 2 ? thing.has(prop) : Object.prototype.hasOwnProperty.call(thing, prop);
}
function set(thing, propOrOldValue, value) {
const t = getArchtype(thing);
if (t === 2) thing.set(propOrOldValue, value);
else if (t === 3) thing.add(value);
else thing[propOrOldValue] = value;
}
function is$1(x, y) {
if (x === y) return x !== 0 || 1 / x === 1 / y;
else return x !== x && y !== y;
}
function isMap(target) {
return target instanceof Map;
}
function isSet(target) {
return target instanceof Set;
}
function latest(state) {
return state.copy_ || state.base_;
}
function shallowCopy(base, strict) {
if (isMap(base)) return new Map(base);
if (isSet(base)) return new Set(base);
if (Array.isArray(base)) return Array.prototype.slice.call(base);
const isPlain = isPlainObject$1(base);
if (strict === true || strict === "class_only" && !isPlain) {
const descriptors = Object.getOwnPropertyDescriptors(base);
delete descriptors[DRAFT_STATE];
let keys = Reflect.ownKeys(descriptors);
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
const desc = descriptors[key];
if (desc.writable === false) {
desc.writable = true;
desc.configurable = true;
}
if (desc.get || desc.set) descriptors[key] = {
configurable: true,
writable: true,
enumerable: desc.enumerable,
value: base[key]
};
}
return Object.create(getPrototypeOf(base), descriptors);
} else {
const proto = getPrototypeOf(base);
if (proto !== null && isPlain) return { ...base };
return Object.assign(Object.create(proto), base);
}
}
function freeze(obj, deep = false) {
if (isFrozen(obj) || isDraft(obj) || !isDraftable(obj)) return obj;
if (getArchtype(obj) > 1) Object.defineProperties(obj, {
set: dontMutateMethodOverride,
add: dontMutateMethodOverride,
clear: dontMutateMethodOverride,
delete: dontMutateMethodOverride
});
Object.freeze(obj);
if (deep) Object.values(obj).forEach((value) => freeze(value, true));
return obj;
}
function dontMutateFrozenCollections() {
die(2);
}
var dontMutateMethodOverride = { value: dontMutateFrozenCollections };
function isFrozen(obj) {
if (obj === null || typeof obj !== "object") return true;
return Object.isFrozen(obj);
}
var plugins = {};
function getPlugin(pluginKey) {
const plugin = plugins[pluginKey];
if (!plugin) die(0, pluginKey);
return plugin;
}
var currentScope;
function getCurrentScope() {
return currentScope;
}
function createScope(parent_, immer_) {
return {
drafts_: [],
parent_,
immer_,
canAutoFreeze_: true,
unfinalizedDrafts_: 0
};
}
function usePatchesInScope(scope, patchListener) {
if (patchListener) {
getPlugin("Patches");
scope.patches_ = [];
scope.inversePatches_ = [];
scope.patchListener_ = patchListener;
}
}
function revokeScope(scope) {
leaveScope(scope);
scope.drafts_.forEach(revokeDraft);
scope.drafts_ = null;
}
function leaveScope(scope) {
if (scope === currentScope) currentScope = scope.parent_;
}
function enterScope(immer2) {
return currentScope = createScope(currentScope, immer2);
}
function revokeDraft(draft) {
const state = draft[DRAFT_STATE];
if (state.type_ === 0 || state.type_ === 1) state.revoke_();
else state.revoked_ = true;
}
function processResult(result, scope) {
scope.unfinalizedDrafts_ = scope.drafts_.length;
const baseDraft = scope.drafts_[0];
if (result !== void 0 && result !== baseDraft) {
if (baseDraft[DRAFT_STATE].modified_) {
revokeScope(scope);
die(4);
}
if (isDraftable(result)) {
result = finalize(scope, result);
if (!scope.parent_) maybeFreeze(scope, result);
}
if (scope.patches_) getPlugin("Patches").generateReplacementPatches_(baseDraft[DRAFT_STATE].base_, result, scope.patches_, scope.inversePatches_);
} else result = finalize(scope, baseDraft, []);
revokeScope(scope);
if (scope.patches_) scope.patchListener_(scope.patches_, scope.inversePatches_);
return result !== NOTHING ? result : void 0;
}
function finalize(rootScope, value, path) {
if (isFrozen(value)) return value;
const useStrictIteration = rootScope.immer_.shouldUseStrictIteration();
const state = value[DRAFT_STATE];
if (!state) {
each(value, (key, childValue) => finalizeProperty(rootScope, state, value, key, childValue, path), useStrictIteration);
return value;
}
if (state.scope_ !== rootScope) return value;
if (!state.modified_) {
maybeFreeze(rootScope, state.base_, true);
return state.base_;
}
if (!state.finalized_) {
state.finalized_ = true;
state.scope_.unfinalizedDrafts_--;
const result = state.copy_;
let resultEach = result;
let isSet2 = false;
if (state.type_ === 3) {
resultEach = new Set(result);
result.clear();
isSet2 = true;
}
each(resultEach, (key, childValue) => finalizeProperty(rootScope, state, result, key, childValue, path, isSet2), useStrictIteration);
maybeFreeze(rootScope, result, false);
if (path && rootScope.patches_) getPlugin("Patches").generatePatches_(state, path, rootScope.patches_, rootScope.inversePatches_);
}
return state.copy_;
}
function finalizeProperty(rootScope, parentState, targetObject, prop, childValue, rootPath, targetIsSet) {
if (childValue == null) return;
if (typeof childValue !== "object" && !targetIsSet) return;
const childIsFrozen = isFrozen(childValue);
if (childIsFrozen && !targetIsSet) return;
if (childValue === targetObject) die(5);
if (isDraft(childValue)) {
const res = finalize(rootScope, childValue, rootPath && parentState && parentState.type_ !== 3 && !has(parentState.assigned_, prop) ? rootPath.concat(prop) : void 0);
set(targetObject, prop, res);
if (isDraft(res)) rootScope.canAutoFreeze_ = false;
else return;
} else if (targetIsSet) targetObject.add(childValue);
if (isDraftable(childValue) && !childIsFrozen) {
if (!rootScope.immer_.autoFreeze_ && rootScope.unfinalizedDrafts_ < 1) return;
if (parentState && parentState.base_ && parentState.base_[prop] === childValue && childIsFrozen) return;
finalize(rootScope, childValue);
if ((!parentState || !parentState.scope_.parent_) && typeof prop !== "symbol" && (isMap(targetObject) ? targetObject.has(prop) : Object.prototype.propertyIsEnumerable.call(targetObject, prop))) maybeFreeze(rootScope, childValue);
}
}
function maybeFreeze(scope, value, deep = false) {
if (!scope.parent_ && scope.immer_.autoFreeze_ && scope.canAutoFreeze_) freeze(value, deep);
}
function createProxyProxy(base, parent) {
const isArray = Array.isArray(base);
const state = {
type_: isArray ? 1 : 0,
scope_: parent ? parent.scope_ : getCurrentScope(),
modified_: false,
finalized_: false,
assigned_: {},
parent_: parent,
base_: base,
draft_: null,
copy_: null,
revoke_: null,
isManual_: false
};
let target = state;
let traps = objectTraps;
if (isArray) {
target = [state];
traps = arrayTraps;
}
const { revoke, proxy } = Proxy.revocable(target, traps);
state.draft_ = proxy;
state.revoke_ = revoke;
return proxy;
}
var objectTraps = {
get(state, prop) {
if (prop === DRAFT_STATE) return state;
const source = latest(state);
if (!has(source, prop)) return readPropFromProto(state, source, prop);
const value = source[prop];
if (state.finalized_ || !isDraftable(value)) return value;
if (value === peek(state.base_, prop)) {
prepareCopy(state);
return state.copy_[prop] = createProxy(value, state);
}
return value;
},
has(state, prop) {
return prop in latest(state);
},
ownKeys(state) {
return Reflect.ownKeys(latest(state));
},
set(state, prop, value) {
const desc = getDescriptorFromProto(latest(state), prop);
if (desc?.set) {
desc.set.call(state.draft_, value);
return true;
}
if (!state.modified_) {
const current2 = peek(latest(state), prop);
const currentState = current2?.[DRAFT_STATE];
if (currentState && currentState.base_ === value) {
state.copy_[prop] = value;
state.assigned_[prop] = false;
return true;
}
if (is$1(value, current2) && (value !== void 0 || has(state.base_, prop))) return true;
prepareCopy(state);
markChanged(state);
}
if (state.copy_[prop] === value && (value !== void 0 || prop in state.copy_) || Number.isNaN(value) && Number.isNaN(state.copy_[prop])) return true;
state.copy_[prop] = value;
state.assigned_[prop] = true;
return true;
},
deleteProperty(state, prop) {
if (peek(state.base_, prop) !== void 0 || prop in state.base_) {
state.assigned_[prop] = false;
prepareCopy(state);
markChanged(state);
} else delete state.assigned_[prop];
if (state.copy_) delete state.copy_[prop];
return true;
},
getOwnPropertyDescriptor(state, prop) {
const owner = latest(state);
const desc = Reflect.getOwnPropertyDescriptor(owner, prop);
if (!desc) return desc;
return {
writable: true,
configurable: state.type_ !== 1 || prop !== "length",
enumerable: desc.enumerable,
value: owner[prop]
};
},
defineProperty() {
die(11);
},
getPrototypeOf(state) {
return getPrototypeOf(state.base_);
},
setPrototypeOf() {
die(12);
}
};
var arrayTraps = {};
each(objectTraps, (key, fn) => {
arrayTraps[key] = function() {
arguments[0] = arguments[0][0];
return fn.apply(this, arguments);
};
});
arrayTraps.deleteProperty = function(state, prop) {
if (isNaN(parseInt(prop))) die(13);
return arrayTraps.set.call(this, state, prop, void 0);
};
arrayTraps.set = function(state, prop, value) {
if (prop !== "length" && isNaN(parseInt(prop))) die(14);
return objectTraps.set.call(this, state[0], prop, value, state[0]);
};
function peek(draft, prop) {
const state = draft[DRAFT_STATE];
return (state ? latest(state) : draft)[prop];
}
function readPropFromProto(state, source, prop) {
const desc = getDescriptorFromProto(source, prop);
return desc ? `value` in desc ? desc.value : desc.get?.call(state.draft_) : void 0;
}
function getDescriptorFromProto(source, prop) {
if (!(prop in source)) return void 0;
let proto = getPrototypeOf(source);
while (proto) {
const desc = Object.getOwnPropertyDescriptor(proto, prop);
if (desc) return desc;
proto = getPrototypeOf(proto);
}
}
function markChanged(state) {
if (!state.modified_) {
state.modified_ = true;
if (state.parent_) markChanged(state.parent_);
}
}
function prepareCopy(state) {
if (!state.copy_) state.copy_ = shallowCopy(state.base_, state.scope_.immer_.useStrictShallowCopy_);
}
var Immer2 = class {
constructor(config) {
this.autoFreeze_ = true;
this.useStrictShallowCopy_ = false;
this.useStrictIteration_ = true;
/**
* The `produce` function takes a value and a "recipe function" (whose
* return value often depends on the base state). The recipe function is
* free to mutate its first argument however it wants. All mutations are
* only ever applied to a __copy__ of the base state.
*
* Pass only a function to create a "curried producer" which relieves you
* from passing the recipe function every time.
*
* Only plain objects and arrays are made mutable. All other objects are
* considered uncopyable.
*
* Note: This function is __bound__ to its `Immer` instance.
*
* @param {any} base - the initial state
* @param {Function} recipe - function that receives a proxy of the base state as first argument and which can be freely modified
* @param {Function} patchListener - optional function that will be called with all the patches produced here
* @returns {any} a new state, or the initial state if nothing was modified
*/
this.produce = (base, recipe, patchListener) => {
if (typeof base === "function" && typeof recipe !== "function") {
const defaultBase = recipe;
recipe = base;
const self = this;
return function curriedProduce(base2 = defaultBase, ...args) {
return self.produce(base2, (draft) => recipe.call(this, draft, ...args));
};
}
if (typeof recipe !== "function") die(6);
if (patchListener !== void 0 && typeof patchListener !== "function") die(7);
let result;
if (isDraftable(base)) {
const scope = enterScope(this);
const proxy = createProxy(base, void 0);
let hasError = true;
try {
result = recipe(proxy);
hasError = false;
} finally {
if (hasError) revokeScope(scope);
else leaveScope(scope);
}
usePatchesInScope(scope, patchListener);
return processResult(result, scope);
} else if (!base || typeof base !== "object") {
result = recipe(base);
if (result === void 0) result = base;
if (result === NOTHING) result = void 0;
if (this.autoFreeze_) freeze(result, true);
if (patchListener) {
const p = [];
const ip = [];
getPlugin("Patches").generateReplacementPatches_(base, result, p, ip);
patchListener(p, ip);
}
return result;
} else die(1, base);
};
this.produceWithPatches = (base, recipe) => {
if (typeof base === "function") return (state, ...args) => this.produceWithPatches(state, (draft) => base(draft, ...args));
let patches, inversePatches;
return [
this.produce(base, recipe, (p, ip) => {
patches = p;
inversePatches = ip;
}),
patches,
inversePatches
];
};
if (typeof config?.autoFreeze === "boolean") this.setAutoFreeze(config.autoFreeze);
if (typeof config?.useStrictShallowCopy === "boolean") this.setUseStrictShallowCopy(config.useStrictShallowCopy);
if (typeof config?.useStrictIteration === "boolean") this.setUseStrictIteration(config.useStrictIteration);
}
createDraft(base) {
if (!isDraftable(base)) die(8);
if (isDraft(base)) base = current(base);
const scope = enterScope(this);
const proxy = createProxy(base, void 0);
proxy[DRAFT_STATE].isManual_ = true;
leaveScope(scope);
return proxy;
}
finishDraft(draft, patchListener) {
const state = draft && draft[DRAFT_STATE];
if (!state || !state.isManual_) die(9);
const { scope_: scope } = state;
usePatchesInScope(scope, patchListener);
return processResult(void 0, scope);
}
/**
* Pass true to automatically freeze all copies created by Immer.
*
* By default, auto-freezing is enabled.
*/
setAutoFreeze(value) {
this.autoFreeze_ = value;
}
/**
* Pass true to enable strict shallow copy.
*
* By default, immer does not copy the object descriptors such as getter, setter and non-enumrable properties.
*/
setUseStrictShallowCopy(value) {
this.useStrictShallowCopy_ = value;
}
/**
* Pass false to use faster iteration that skips non-enumerable properties
* but still handles symbols for compatibility.
*
* By default, strict iteration is enabled (includes all own properties).
*/
setUseStrictIteration(value) {
this.useStrictIteration_ = value;
}
shouldUseStrictIteration() {
return this.useStrictIteration_;
}
applyPatches(base, patches) {
let i;
for (i = patches.length - 1; i >= 0; i--) {
const patch = patches[i];
if (patch.path.length === 0 && patch.op === "replace") {
base = patch.value;
break;
}
}
if (i > -1) patches = patches.slice(i + 1);
const applyPatchesImpl = getPlugin("Patches").applyPatches_;
if (isDraft(base)) return applyPatchesImpl(base, patches);
return this.produce(base, (draft) => applyPatchesImpl(draft, patches));
}
};
function createProxy(value, parent) {
const draft = isMap(value) ? getPlugin("MapSet").proxyMap_(value, parent) : isSet(value) ? getPlugin("MapSet").proxySet_(value, parent) : createProxyProxy(value, parent);
(parent ? parent.scope_ : getCurrentScope()).drafts_.push(draft);
return draft;
}
function current(value) {
if (!isDraft(value)) die(10, value);
return currentImpl(value);
}
function currentImpl(value) {
if (!isDraftable(value) || isFrozen(value)) return value;
const state = value[DRAFT_STATE];
let copy;
let strict = true;
if (state) {
if (!state.modified_) return state.base_;
state.finalized_ = true;
copy = shallowCopy(value, state.scope_.immer_.useStrictShallowCopy_);
strict = state.scope_.immer_.shouldUseStrictIteration();
} else copy = shallowCopy(value, true);
each(copy, (key, childValue) => {
set(copy, key, currentImpl(childValue));
}, strict);
if (state) state.finalized_ = false;
return copy;
}
new Immer2().produce;
function castDraft(value) {
return value;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/legendSlice.js
var legendSlice = createSlice({
name: "legend",
initialState: {
settings: {
layout: "horizontal",
align: "center",
verticalAlign: "middle",
itemSorter: "value"
},
size: {
width: 0,
height: 0
},
payload: []
},
reducers: {
setLegendSize(state, action) {
state.size.width = action.payload.width;
state.size.height = action.payload.height;
},
setLegendSettings(state, action) {
state.settings.align = action.payload.align;
state.settings.layout = action.payload.layout;
state.settings.verticalAlign = action.payload.verticalAlign;
state.settings.itemSorter = action.payload.itemSorter;
},
addLegendPayload: {
reducer(state, action) {
state.payload.push(castDraft(action.payload));
},
prepare: prepareAutoBatched()
},
replaceLegendPayload: {
reducer(state, action) {
var { prev, next } = action.payload;
var index = current$1(state).payload.indexOf(castDraft(prev));
if (index > -1) state.payload[index] = castDraft(next);
},
prepare: prepareAutoBatched()
},
removeLegendPayload: {
reducer(state, action) {
var index = current$1(state).payload.indexOf(castDraft(action.payload));
if (index > -1) state.payload.splice(index, 1);
},
prepare: prepareAutoBatched()
}
}
});
var { setLegendSize, setLegendSettings, addLegendPayload, replaceLegendPayload, removeLegendPayload } = legendSlice.actions;
var legendReducer = legendSlice.reducer;
//#endregion
//#region .yarn/__virtual__/use-sync-external-store-virtual-aac11f593c/3/AppData/Local/Yarn/Berry/cache/use-sync-external-store-npm-1.6.0-2db2af616d-10c0.zip/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js
/**
* @license React
* use-sync-external-store-with-selector.development.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var require_use_sync_external_store_with_selector_development = /* @__PURE__ */ __commonJSMin(((exports) => {
(function() {
function is(x, y) {
return x === y && (0 !== x || 1 / x === 1 / y) || x !== x && y !== y;
}
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
var React = require_react(), objectIs = "function" === typeof Object.is ? Object.is : is, useSyncExternalStore = React.useSyncExternalStore, useRef = React.useRef, useEffect = React.useEffect, useMemo = React.useMemo, useDebugValue = React.useDebugValue;
exports.useSyncExternalStoreWithSelector = function(subscribe, getSnapshot, getServerSnapshot, selector, isEqual) {
var instRef = useRef(null);
if (null === instRef.current) {
var inst = {
hasValue: !1,
value: null
};
instRef.current = inst;
} else inst = instRef.current;
instRef = useMemo(function() {
function memoizedSelector(nextSnapshot) {
if (!hasMemo) {
hasMemo = !0;
memoizedSnapshot = nextSnapshot;
nextSnapshot = selector(nextSnapshot);
if (void 0 !== isEqual && inst.hasValue) {
var currentSelection = inst.value;
if (isEqual(currentSelection, nextSnapshot)) return memoizedSelection = currentSelection;
}
return memoizedSelection = nextSnapshot;
}
currentSelection = memoizedSelection;
if (objectIs(memoizedSnapshot, nextSnapshot)) return currentSelection;
var nextSelection = selector(nextSnapshot);
if (void 0 !== isEqual && isEqual(currentSelection, nextSelection)) return memoizedSnapshot = nextSnapshot, currentSelection;
memoizedSnapshot = nextSnapshot;
return memoizedSelection = nextSelection;
}
var hasMemo = !1, memoizedSnapshot, memoizedSelection, maybeGetServerSnapshot = void 0 === getServerSnapshot ? null : getServerSnapshot;
return [function() {
return memoizedSelector(getSnapshot());
}, null === maybeGetServerSnapshot ? void 0 : function() {
return memoizedSelector(maybeGetServerSnapshot());
}];
}, [
getSnapshot,
getServerSnapshot,
selector,
isEqual
]);
var value = useSyncExternalStore(subscribe, instRef[0], instRef[1]);
useEffect(function() {
inst.hasValue = !0;
inst.value = value;
}, [value]);
useDebugValue(value);
return value;
};
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
})();
}));
(/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_use_sync_external_store_with_selector_development();
})))();
function defaultNoopBatch(callback) {
callback();
}
function createListenerCollection() {
let first = null;
let last = null;
return {
clear() {
first = null;
last = null;
},
notify() {
defaultNoopBatch(() => {
let listener = first;
while (listener) {
listener.callback();
listener = listener.next;
}
});
},
get() {
const listeners = [];
let listener = first;
while (listener) {
listeners.push(listener);
listener = listener.next;
}
return listeners;
},
subscribe(callback) {
let isSubscribed = true;
const listener = last = {
callback,
next: null,
prev: last
};
if (listener.prev) listener.prev.next = listener;
else first = listener;
return function unsubscribe() {
if (!isSubscribed || first === null) return;
isSubscribed = false;
if (listener.next) listener.next.prev = listener.prev;
else last = listener.prev;
if (listener.prev) listener.prev.next = listener.next;
else first = listener.next;
};
}
};
}
var nullListeners = {
notify() {},
get: () => []
};
function createSubscription(store, parentSub) {
let unsubscribe;
let listeners = nullListeners;
let subscriptionsAmount = 0;
let selfSubscribed = false;
function addNestedSub(listener) {
trySubscribe();
const cleanupListener = listeners.subscribe(listener);
let removed = false;
return () => {
if (!removed) {
removed = true;
cleanupListener();
tryUnsubscribe();
}
};
}
function notifyNestedSubs() {
listeners.notify();
}
function handleChangeWrapper() {
if (subscription.onStateChange) subscription.onStateChange();
}
function isSubscribed() {
return selfSubscribed;
}
function trySubscribe() {
subscriptionsAmount++;
if (!unsubscribe) {
unsubscribe = parentSub ? parentSub.addNestedSub(handleChangeWrapper) : store.subscribe(handleChangeWrapper);
listeners = createListenerCollection();
}
}
function tryUnsubscribe() {
subscriptionsAmount--;
if (unsubscribe && subscriptionsAmount === 0) {
unsubscribe();
unsubscribe = void 0;
listeners.clear();
listeners = nullListeners;
}
}
function trySubscribeSelf() {
if (!selfSubscribed) {
selfSubscribed = true;
trySubscribe();
}
}
function tryUnsubscribeSelf() {
if (selfSubscribed) {
selfSubscribed = false;
tryUnsubscribe();
}
}
const subscription = {
addNestedSub,
notifyNestedSubs,
handleChangeWrapper,
isSubscribed,
trySubscribe: trySubscribeSelf,
tryUnsubscribe: tryUnsubscribeSelf,
getListeners: () => listeners
};
return subscription;
}
var canUseDOM = () => !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined");
var isDOM = /* @__PURE__ */ canUseDOM();
var isRunningInReactNative = () => typeof navigator !== "undefined" && navigator.product === "ReactNative";
var isReactNative = /* @__PURE__ */ isRunningInReactNative();
var getUseIsomorphicLayoutEffect = () => isDOM || isReactNative ? import_react.useLayoutEffect : import_react.useEffect;
var useIsomorphicLayoutEffect = /* @__PURE__ */ getUseIsomorphicLayoutEffect();
function is(x, y) {
if (x === y) return x !== 0 || y !== 0 || 1 / x === 1 / y;
else return x !== x && y !== y;
}
function shallowEqual(objA, objB) {
if (is(objA, objB)) return true;
if (typeof objA !== "object" || objA === null || typeof objB !== "object" || objB === null) return false;
const keysA = Object.keys(objA);
const keysB = Object.keys(objB);
if (keysA.length !== keysB.length) return false;
for (let i = 0; i < keysA.length; i++) if (!Object.prototype.hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) return false;
return true;
}
var ContextKey = /* @__PURE__ */ Symbol.for(`react-redux-context`);
var gT = typeof globalThis !== "undefined" ? globalThis : {};
function getContext() {
if (!import_react.createContext) return {};
const contextMap = gT[ContextKey] ??= /* @__PURE__ */ new Map();
let realContext = contextMap.get(import_react.createContext);
if (!realContext) {
realContext = import_react.createContext(null);
realContext.displayName = "ReactRedux";
contextMap.set(import_react.createContext, realContext);
}
return realContext;
}
var ReactReduxContext = /* @__PURE__ */ getContext();
function Provider(providerProps) {
const { children, context, serverState, store } = providerProps;
const contextValue = import_react.useMemo(() => {
const baseContextValue = {
store,
subscription: createSubscription(store),
getServerState: serverState ? () => serverState : void 0
};
{
const { identityFunctionCheck = "once", stabilityCheck = "once" } = providerProps;
return /* @__PURE__ */ Object.assign(baseContextValue, {
stabilityCheck,
identityFunctionCheck
});
}
}, [store, serverState]);
const previousState = import_react.useMemo(() => store.getState(), [store]);
useIsomorphicLayoutEffect(() => {
const { subscription } = contextValue;
subscription.onStateChange = subscription.notifyNestedSubs;
subscription.trySubscribe();
if (previousState !== store.getState()) subscription.notifyNestedSubs();
return () => {
subscription.tryUnsubscribe();
subscription.onStateChange = void 0;
};
}, [contextValue, previousState]);
const Context = context || ReactReduxContext;
return /* @__PURE__ */ import_react.createElement(Context.Provider, { value: contextValue }, children);
}
var Provider_default = Provider;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/propsAreEqual.js
var propsToShallowCompare = new Set([
"axisLine",
"tickLine",
"activeBar",
"activeDot",
"activeLabel",
"activeShape",
"allowEscapeViewBox",
"background",
"cursor",
"dot",
"label",
"line",
"margin",
"padding",
"position",
"shape",
"style",
"tick",
"wrapperStyle",
"radius",
"throttledEvents"
]);
/**
* When comparing two values, returns true if they are the same value or
* are both NaN.
*
* If we used just a simple triple equals, we would get false negatives for two NaNs
* which could cause extra re-renders so let's have this instead.
*
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Equality_comparisons_and_sameness#same-value-zero_equality
*
* @param x first value to compare
* @param y second value to compare
* return true if the same, false if different
*/
function sameValueZero(x, y) {
if (x == null && y == null) return true;
if (typeof x === "number" && typeof y === "number") return x === y || x !== x && y !== y;
return x === y;
}
/**
* So usually React would compare only the first level of props using Object.is.
* However, in our case many props are objects or arrays, and our own docs recommend to do that!
* Therefore, we need a custom comparison function that does a shallow comparison of each prop value.
*
* Because charts can and do receive large props (typically the data array),
* we only limit this to a subset of known props that are likely to be objects/arrays.
*
* @param prevProps
* @param nextProps
*/
function propsAreEqual(prevProps, nextProps) {
for (var key of new Set([...Object.keys(prevProps), ...Object.keys(nextProps)])) if (propsToShallowCompare.has(key)) {
if (prevProps[key] == null && nextProps[key] == null) continue;
if (!shallowEqual(prevProps[key], nextProps[key])) return false;
} else if (!sameValueZero(prevProps[key], nextProps[key])) return false;
return true;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Legend.js
var _excluded$35 = ["contextPayload"];
function _extends$47() {
return _extends$47 = 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$47.apply(null, arguments);
}
function ownKeys$64(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$64(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$64(Object(t), !0).forEach(function(r) {
_defineProperty$66(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$64(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$66(e, r, t) {
return (r = _toPropertyKey$66(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$66(t) {
var i = _toPrimitive$66(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$66(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$35(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$35(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$35(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function defaultUniqBy$1(entry) {
return entry.value;
}
function LegendContent(props) {
var { contextPayload } = props, otherProps = _objectWithoutProperties$35(props, _excluded$35);
var finalPayload = getUniqPayload(contextPayload, props.payloadUniqBy, defaultUniqBy$1);
var contentProps = _objectSpread$64(_objectSpread$64({}, otherProps), {}, { payload: finalPayload });
if (/* @__PURE__ */ import_react.isValidElement(props.content)) return /* @__PURE__ */ import_react.cloneElement(props.content, contentProps);
if (typeof props.content === "function") return /* @__PURE__ */ import_react.createElement(props.content, contentProps);
return /* @__PURE__ */ import_react.createElement(DefaultLegendContent, contentProps);
}
function getDefaultPosition(style, props, margin, chartWidth, chartHeight, box) {
var { layout, align, verticalAlign } = props;
var hPos, vPos;
if (!style || (style.left === void 0 || style.left === null) && (style.right === void 0 || style.right === null)) if (align === "center" && layout === "vertical") hPos = { left: ((chartWidth || 0) - box.width) / 2 };
else hPos = align === "right" ? { right: margin && margin.right || 0 } : { left: margin && margin.left || 0 };
if (!style || (style.top === void 0 || style.top === null) && (style.bottom === void 0 || style.bottom === null)) if (verticalAlign === "middle") vPos = { top: ((chartHeight || 0) - box.height) / 2 };
else vPos = verticalAlign === "bottom" ? { bottom: margin && margin.bottom || 0 } : { top: margin && margin.top || 0 };
return _objectSpread$64(_objectSpread$64({}, hPos), vPos);
}
function LegendSettingsDispatcher(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(setLegendSettings(props));
}, [dispatch, props]);
return null;
}
function LegendSizeDispatcher(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(setLegendSize(props));
return () => {
dispatch(setLegendSize({
width: 0,
height: 0
}));
};
}, [dispatch, props]);
return null;
}
function getWidthOrHeight(layout, height, width, maxWidth) {
if (layout === "vertical" && height != null) return { height };
if (layout === "horizontal") return { width: width || maxWidth };
return null;
}
var legendDefaultProps = {
align: "center",
iconSize: 14,
inactiveColor: "#ccc",
itemSorter: "value",
layout: "horizontal",
verticalAlign: "bottom"
};
/**
* @consumes CartesianChartContext
* @consumes PolarChartContext
*/
function LegendImpl(outsideProps) {
var props = resolveDefaultProps(outsideProps, legendDefaultProps);
var contextPayload = useLegendPayload();
var legendPortalFromContext = useLegendPortal();
var margin = useMargin();
var { width: widthFromProps, height: heightFromProps, wrapperStyle, portal: portalFromProps } = props;
var [lastBoundingBox, updateBoundingBox] = useElementOffset([contextPayload]);
var chartWidth = useChartWidth();
var chartHeight = useChartHeight();
if (chartWidth == null || chartHeight == null) return null;
var maxWidth = chartWidth - ((margin === null || margin === void 0 ? void 0 : margin.left) || 0) - ((margin === null || margin === void 0 ? void 0 : margin.right) || 0);
var widthOrHeight = getWidthOrHeight(props.layout, heightFromProps, widthFromProps, maxWidth);
var outerStyle = portalFromProps ? wrapperStyle : _objectSpread$64(_objectSpread$64({
position: "absolute",
width: (widthOrHeight === null || widthOrHeight === void 0 ? void 0 : widthOrHeight.width) || widthFromProps || "auto",
height: (widthOrHeight === null || widthOrHeight === void 0 ? void 0 : widthOrHeight.height) || heightFromProps || "auto"
}, getDefaultPosition(wrapperStyle, props, margin, chartWidth, chartHeight, lastBoundingBox)), wrapperStyle);
var legendPortal = portalFromProps !== null && portalFromProps !== void 0 ? portalFromProps : legendPortalFromContext;
if (legendPortal == null || contextPayload == null) return null;
return /* @__PURE__ */ (0, import_react_dom.createPortal)(/* @__PURE__ */ import_react.createElement("div", {
className: "recharts-legend-wrapper",
style: outerStyle,
ref: updateBoundingBox
}, /* @__PURE__ */ import_react.createElement(LegendSettingsDispatcher, {
layout: props.layout,
align: props.align,
verticalAlign: props.verticalAlign,
itemSorter: props.itemSorter
}), !portalFromProps && /* @__PURE__ */ import_react.createElement(LegendSizeDispatcher, {
width: lastBoundingBox.width,
height: lastBoundingBox.height
}), /* @__PURE__ */ import_react.createElement(LegendContent, _extends$47({}, props, widthOrHeight, {
margin,
chartWidth,
chartHeight,
contextPayload
}))), legendPortal);
}
var Legend = /* @__PURE__ */ import_react.memo(LegendImpl, propsAreEqual);
Legend.displayName = "Legend";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/DefaultTooltipContent.js
/**
* @fileOverview Default Tooltip Content
*/
function _extends$46() {
return _extends$46 = 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$46.apply(null, arguments);
}
function ownKeys$63(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$63(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$63(Object(t), !0).forEach(function(r) {
_defineProperty$65(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$63(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$65(e, r, t) {
return (r = _toPropertyKey$65(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$65(t) {
var i = _toPrimitive$65(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$65(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function defaultFormatter(value) {
return Array.isArray(value) && isNumOrStr(value[0]) && isNumOrStr(value[1]) ? value.join(" ~ ") : value;
}
/**
* @inline
*/
var defaultDefaultTooltipContentProps = {
separator: " : ",
contentStyle: {
margin: 0,
padding: 10,
backgroundColor: "#fff",
border: "1px solid #ccc",
whiteSpace: "nowrap"
},
itemStyle: {
display: "block",
paddingTop: 4,
paddingBottom: 4,
color: "#000"
},
labelStyle: {},
accessibilityLayer: false
};
function lodashLikeSortBy(array, itemSorter) {
if (itemSorter == null) return array;
return (0, import_sortBy.default)(array, itemSorter);
}
/**
* This component is by default rendered inside the {@link Tooltip} component. You would not use it directly.
*
* You can use this component to customize the content of the tooltip,
* or you can provide your own completely independent content.
*/
var DefaultTooltipContent = (props) => {
var { separator = defaultDefaultTooltipContentProps.separator, contentStyle, itemStyle, labelStyle = defaultDefaultTooltipContentProps.labelStyle, payload, formatter, itemSorter, wrapperClassName, labelClassName, label, labelFormatter, accessibilityLayer = defaultDefaultTooltipContentProps.accessibilityLayer } = props;
var renderContent = () => {
if (payload && payload.length) {
var listStyle = {
padding: 0,
margin: 0
};
var items = lodashLikeSortBy(payload, itemSorter).map((entry, i) => {
if (!entry || entry.type === "none") return null;
var finalFormatter = entry.formatter || formatter || defaultFormatter;
var { value, name } = entry;
var finalValue = value;
var finalName = name;
if (finalFormatter) {
var formatted = finalFormatter(value, name, entry, i, payload);
if (Array.isArray(formatted)) [finalValue, finalName] = formatted;
else if (formatted != null) finalValue = formatted;
else return null;
}
var finalItemStyle = _objectSpread$63(_objectSpread$63({}, defaultDefaultTooltipContentProps.itemStyle), {}, { color: entry.color || defaultDefaultTooltipContentProps.itemStyle.color }, itemStyle);
return /* @__PURE__ */ import_react.createElement("li", {
className: "recharts-tooltip-item",
key: "tooltip-item-".concat(i),
style: finalItemStyle
}, isNumOrStr(finalName) ? /* @__PURE__ */ import_react.createElement("span", { className: "recharts-tooltip-item-name" }, finalName) : null, isNumOrStr(finalName) ? /* @__PURE__ */ import_react.createElement("span", { className: "recharts-tooltip-item-separator" }, separator) : null, /* @__PURE__ */ import_react.createElement("span", { className: "recharts-tooltip-item-value" }, finalValue), /* @__PURE__ */ import_react.createElement("span", { className: "recharts-tooltip-item-unit" }, entry.unit || ""));
});
return /* @__PURE__ */ import_react.createElement("ul", {
className: "recharts-tooltip-item-list",
style: listStyle
}, items);
}
return null;
};
var finalStyle = _objectSpread$63(_objectSpread$63({}, defaultDefaultTooltipContentProps.contentStyle), contentStyle);
var finalLabelStyle = _objectSpread$63({ margin: 0 }, labelStyle);
var hasLabel = !isNullish(label);
var finalLabel = hasLabel ? label : "";
var wrapperCN = clsx("recharts-default-tooltip", wrapperClassName);
var labelCN = clsx("recharts-tooltip-label", labelClassName);
if (hasLabel && labelFormatter && payload !== void 0 && payload !== null) finalLabel = labelFormatter(label, payload);
var accessibilityAttributes = accessibilityLayer ? {
role: "status",
"aria-live": "assertive"
} : {};
return /* @__PURE__ */ import_react.createElement("div", _extends$46({
className: wrapperCN,
style: finalStyle
}, accessibilityAttributes), /* @__PURE__ */ import_react.createElement("p", {
className: labelCN,
style: finalLabelStyle
}, /* @__PURE__ */ import_react.isValidElement(finalLabel) ? finalLabel : "".concat(finalLabel)), renderContent());
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/tooltip/translate.js
var CSS_CLASS_PREFIX = "recharts-tooltip-wrapper";
var TOOLTIP_HIDDEN = { visibility: "hidden" };
function getTooltipCSSClassName(_ref) {
var { coordinate, translateX, translateY } = _ref;
return clsx(CSS_CLASS_PREFIX, {
["".concat(CSS_CLASS_PREFIX, "-right")]: isNumber(translateX) && coordinate && isNumber(coordinate.x) && translateX >= coordinate.x,
["".concat(CSS_CLASS_PREFIX, "-left")]: isNumber(translateX) && coordinate && isNumber(coordinate.x) && translateX < coordinate.x,
["".concat(CSS_CLASS_PREFIX, "-bottom")]: isNumber(translateY) && coordinate && isNumber(coordinate.y) && translateY >= coordinate.y,
["".concat(CSS_CLASS_PREFIX, "-top")]: isNumber(translateY) && coordinate && isNumber(coordinate.y) && translateY < coordinate.y
});
}
function getTooltipTranslateXY(_ref2) {
var { allowEscapeViewBox, coordinate, key, offset, position, reverseDirection, tooltipDimension, viewBox, viewBoxDimension } = _ref2;
if (position && isNumber(position[key])) return position[key];
var negative = coordinate[key] - tooltipDimension - (offset > 0 ? offset : 0);
var positive = coordinate[key] + offset;
if (allowEscapeViewBox[key]) return reverseDirection[key] ? negative : positive;
var viewBoxKey = viewBox[key];
if (viewBoxKey == null) return 0;
if (reverseDirection[key]) {
if (negative < viewBoxKey) return Math.max(positive, viewBoxKey);
return Math.max(negative, viewBoxKey);
}
if (viewBoxDimension == null) return 0;
if (positive + tooltipDimension > viewBoxKey + viewBoxDimension) return Math.max(negative, viewBoxKey);
return Math.max(positive, viewBoxKey);
}
function getTransformStyle(_ref3) {
var { translateX, translateY, useTranslate3d } = _ref3;
return { transform: useTranslate3d ? "translate3d(".concat(translateX, "px, ").concat(translateY, "px, 0)") : "translate(".concat(translateX, "px, ").concat(translateY, "px)") };
}
function getTooltipTranslate(_ref4) {
var { allowEscapeViewBox, coordinate, offsetTop, offsetLeft, position, reverseDirection, tooltipBox, useTranslate3d, viewBox } = _ref4;
var cssProperties, translateX, translateY;
if (tooltipBox.height > 0 && tooltipBox.width > 0 && coordinate) {
translateX = getTooltipTranslateXY({
allowEscapeViewBox,
coordinate,
key: "x",
offset: offsetLeft,
position,
reverseDirection,
tooltipDimension: tooltipBox.width,
viewBox,
viewBoxDimension: viewBox.width
});
translateY = getTooltipTranslateXY({
allowEscapeViewBox,
coordinate,
key: "y",
offset: offsetTop,
position,
reverseDirection,
tooltipDimension: tooltipBox.height,
viewBox,
viewBoxDimension: viewBox.height
});
cssProperties = getTransformStyle({
translateX,
translateY,
useTranslate3d
});
} else cssProperties = TOOLTIP_HIDDEN;
return {
cssProperties,
cssClasses: getTooltipCSSClassName({
translateX,
translateY,
coordinate
})
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/Global.js
var parseIsSsrByDefault = () => !(typeof window !== "undefined" && window.document && Boolean(window.document.createElement) && window.setTimeout);
var Global = {
devToolsEnabled: true,
isSsr: parseIsSsrByDefault()
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/usePrefersReducedMotion.js
/**
* Detects and subscribes to the user's `prefers-reduced-motion` system preference.
* Returns `true` when the user prefers reduced motion, `false` otherwise.
* SSR-safe: always returns `false` during server-side rendering.
*/
function usePrefersReducedMotion() {
var [prefersReducedMotion, setPrefersReducedMotion] = (0, import_react.useState)(() => {
if (Global.isSsr) return false;
if (!window.matchMedia) return false;
return window.matchMedia("(prefers-reduced-motion: reduce)").matches;
});
(0, import_react.useEffect)(() => {
if (!window.matchMedia) return;
var mediaQuery = window.matchMedia("(prefers-reduced-motion: reduce)");
var handleChange = () => {
setPrefersReducedMotion(mediaQuery.matches);
};
mediaQuery.addEventListener("change", handleChange);
return () => {
mediaQuery.removeEventListener("change", handleChange);
};
}, []);
return prefersReducedMotion;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/TooltipBoundingBox.js
function ownKeys$62(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$62(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$62(Object(t), !0).forEach(function(r) {
_defineProperty$64(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$62(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$64(e, r, t) {
return (r = _toPropertyKey$64(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$64(t) {
var i = _toPrimitive$64(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$64(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function resolveTransitionProperty(args) {
if (args.prefersReducedMotion && args.isAnimationActive === "auto") return;
if (args.isAnimationActive && args.active) return "transform ".concat(args.animationDuration, "ms ").concat(args.animationEasing);
}
function TooltipBoundingBoxImpl(props) {
var _props$coordinate3, _props$coordinate4, _props$coordinate$x2, _props$coordinate5, _props$coordinate$y2, _props$coordinate6;
var prefersReducedMotion = usePrefersReducedMotion();
var [state, setState] = import_react.useState(() => ({
dismissed: false,
dismissedAtCoordinate: {
x: 0,
y: 0
}
}));
import_react.useEffect(() => {
var handleKeyDown = (event) => {
if (event.key === "Escape") {
var _props$coordinate$x, _props$coordinate, _props$coordinate$y, _props$coordinate2;
setState({
dismissed: true,
dismissedAtCoordinate: {
x: (_props$coordinate$x = (_props$coordinate = props.coordinate) === null || _props$coordinate === void 0 ? void 0 : _props$coordinate.x) !== null && _props$coordinate$x !== void 0 ? _props$coordinate$x : 0,
y: (_props$coordinate$y = (_props$coordinate2 = props.coordinate) === null || _props$coordinate2 === void 0 ? void 0 : _props$coordinate2.y) !== null && _props$coordinate$y !== void 0 ? _props$coordinate$y : 0
}
});
}
};
document.addEventListener("keydown", handleKeyDown);
return () => {
document.removeEventListener("keydown", handleKeyDown);
};
}, [(_props$coordinate3 = props.coordinate) === null || _props$coordinate3 === void 0 ? void 0 : _props$coordinate3.x, (_props$coordinate4 = props.coordinate) === null || _props$coordinate4 === void 0 ? void 0 : _props$coordinate4.y]);
if (state.dismissed && (((_props$coordinate$x2 = (_props$coordinate5 = props.coordinate) === null || _props$coordinate5 === void 0 ? void 0 : _props$coordinate5.x) !== null && _props$coordinate$x2 !== void 0 ? _props$coordinate$x2 : 0) !== state.dismissedAtCoordinate.x || ((_props$coordinate$y2 = (_props$coordinate6 = props.coordinate) === null || _props$coordinate6 === void 0 ? void 0 : _props$coordinate6.y) !== null && _props$coordinate$y2 !== void 0 ? _props$coordinate$y2 : 0) !== state.dismissedAtCoordinate.y)) setState(_objectSpread$62(_objectSpread$62({}, state), {}, { dismissed: false }));
var { cssClasses, cssProperties } = getTooltipTranslate({
allowEscapeViewBox: props.allowEscapeViewBox,
coordinate: props.coordinate,
offsetLeft: typeof props.offset === "number" ? props.offset : props.offset.x,
offsetTop: typeof props.offset === "number" ? props.offset : props.offset.y,
position: props.position,
reverseDirection: props.reverseDirection,
tooltipBox: {
height: props.lastBoundingBox.height,
width: props.lastBoundingBox.width
},
useTranslate3d: props.useTranslate3d,
viewBox: props.viewBox
});
var outerStyle = _objectSpread$62(_objectSpread$62({}, props.hasPortalFromProps ? {} : _objectSpread$62(_objectSpread$62({ transition: resolveTransitionProperty({
prefersReducedMotion,
isAnimationActive: props.isAnimationActive,
active: props.active,
animationDuration: props.animationDuration,
animationEasing: props.animationEasing
}) }, cssProperties), {}, {
pointerEvents: "none",
position: "absolute",
top: 0,
left: 0
})), {}, { visibility: !state.dismissed && props.active && props.hasPayload ? "visible" : "hidden" }, props.wrapperStyle);
return /* @__PURE__ */ import_react.createElement("div", {
xmlns: "http://www.w3.org/1999/xhtml",
tabIndex: -1,
className: cssClasses,
style: outerStyle,
ref: props.innerRef
}, props.children);
}
var TooltipBoundingBox = /* @__PURE__ */ import_react.memo(TooltipBoundingBoxImpl);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/accessibilityContext.js
var useAccessibilityLayer = () => {
var _useAppSelector;
return (_useAppSelector = useAppSelector((state) => state.rootProps.accessibilityLayer)) !== null && _useAppSelector !== void 0 ? _useAppSelector : true;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Curve.js
/**
* @fileOverview Curve
*/
function _extends$45() {
return _extends$45 = 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$45.apply(null, arguments);
}
function ownKeys$61(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$61(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$61(Object(t), !0).forEach(function(r) {
_defineProperty$63(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$61(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$63(e, r, t) {
return (r = _toPropertyKey$63(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$63(t) {
var i = _toPrimitive$63(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$63(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var CURVE_FACTORIES = {
curveBasisClosed: basisClosed_default$1,
curveBasisOpen: basisOpen_default,
curveBasis: basis_default$1,
curveBumpX: bumpX,
curveBumpY: bumpY,
curveLinearClosed: linearClosed_default,
curveLinear: linear_default,
curveMonotoneX: monotoneX,
curveMonotoneY: monotoneY,
curveNatural: natural_default,
curveStep: step_default,
curveStepAfter: stepAfter,
curveStepBefore: stepBefore
};
/**
* @inline
*/
/**
* @inline
*/
var defined = (p) => isWellBehavedNumber(p.x) && isWellBehavedNumber(p.y);
var areaDefined = (d) => d.base != null && defined(d.base) && defined(d);
var getX = (p) => p.x;
var getY = (p) => p.y;
var getCurveFactory = (type, layout) => {
if (typeof type === "function") return type;
var name = "curve".concat(upperFirst(type));
if ((name === "curveMonotone" || name === "curveBump") && layout) {
var factory = CURVE_FACTORIES["".concat(name).concat(layout === "vertical" ? "Y" : "X")];
if (factory) return factory;
}
return CURVE_FACTORIES[name] || linear_default;
};
var defaultCurveProps = {
connectNulls: false,
type: "linear"
};
/**
* Calculate the path of curve. Returns null if points is an empty array.
* @return path or null
*/
var getPath$1 = (_ref) => {
var { type = defaultCurveProps.type, points = [], baseLine, layout, connectNulls = defaultCurveProps.connectNulls } = _ref;
var curveFactory = getCurveFactory(type, layout);
var formatPoints = connectNulls ? points.filter(defined) : points;
if (Array.isArray(baseLine)) {
var _lineFunction;
var areaPoints = points.map((entry, index) => _objectSpread$61(_objectSpread$61({}, entry), {}, { base: baseLine[index] }));
if (layout === "vertical") _lineFunction = area_default().y(getY).x1(getX).x0((d) => d.base.x);
else _lineFunction = area_default().x(getX).y1(getY).y0((d) => d.base.y);
return _lineFunction.defined(areaDefined).curve(curveFactory)(connectNulls ? areaPoints.filter(areaDefined) : areaPoints);
}
var lineFunction;
if (layout === "vertical" && isNumber(baseLine)) lineFunction = area_default().y(getY).x1(getX).x0(baseLine);
else if (isNumber(baseLine)) lineFunction = area_default().x(getX).y1(getY).y0(baseLine);
else lineFunction = line_default().x(getX).y(getY);
return lineFunction.defined(defined).curve(curveFactory)(formatPoints);
};
var Curve = (props) => {
var { className, points, path, pathRef } = props;
var layout = useChartLayout();
if ((!points || !points.length) && !path) return null;
var getPathInput = {
type: props.type,
points: props.points,
baseLine: props.baseLine,
layout: props.layout || layout,
connectNulls: props.connectNulls
};
var realPath = points && points.length ? getPath$1(getPathInput) : path;
return /* @__PURE__ */ import_react.createElement("path", _extends$45({}, svgPropertiesNoEvents(props), adaptEventHandlers(props), {
className: clsx("recharts-curve", className),
d: realPath === null ? void 0 : realPath,
ref: pathRef
}));
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Cross.js
/**
* @fileOverview Cross
*/
var _excluded$34 = [
"x",
"y",
"top",
"left",
"width",
"height",
"className"
];
function _extends$44() {
return _extends$44 = 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$44.apply(null, arguments);
}
function ownKeys$60(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$60(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$60(Object(t), !0).forEach(function(r) {
_defineProperty$62(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$60(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$62(e, r, t) {
return (r = _toPropertyKey$62(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$62(t) {
var i = _toPrimitive$62(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$62(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$34(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$34(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$34(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var getPath = (x, y, width, height, top, left) => {
return "M".concat(x, ",").concat(top, "v").concat(height, "M").concat(left, ",").concat(y, "h").concat(width);
};
var Cross = (_ref) => {
var { x = 0, y = 0, top = 0, left = 0, width = 0, height = 0, className } = _ref, rest = _objectWithoutProperties$34(_ref, _excluded$34);
var props = _objectSpread$60({
x,
y,
top,
left,
width,
height
}, rest);
if (!isNumber(x) || !isNumber(y) || !isNumber(width) || !isNumber(height) || !isNumber(top) || !isNumber(left)) return null;
return /* @__PURE__ */ import_react.createElement("path", _extends$44({}, svgPropertiesAndEvents(props), {
className: clsx("recharts-cross", className),
d: getPath(x, y, width, height, top, left)
}));
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/cursor/getCursorRectangle.js
function getCursorRectangle(layout, activeCoordinate, offset, tooltipAxisBandSize) {
var halfSize = tooltipAxisBandSize / 2;
return {
stroke: "none",
fill: "#ccc",
x: layout === "horizontal" ? activeCoordinate.x - halfSize : offset.left + .5,
y: layout === "horizontal" ? offset.top + .5 : activeCoordinate.y - halfSize,
width: layout === "horizontal" ? tooltipAxisBandSize : offset.width - 1,
height: layout === "horizontal" ? offset.height - 1 : tooltipAxisBandSize
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/util.js
function ownKeys$59(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$59(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$59(Object(t), !0).forEach(function(r) {
_defineProperty$61(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$59(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$61(e, r, t) {
return (r = _toPropertyKey$61(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$61(t) {
var i = _toPrimitive$61(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$61(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var getDashCase = (name) => name.replace(/([A-Z])/g, (v) => "-".concat(v.toLowerCase()));
var getTransitionVal = (props, duration, easing) => props.map((prop) => "".concat(getDashCase(prop), " ").concat(duration, "ms ").concat(easing)).join(",");
/**
* Finds the intersection of keys between two objects
* @param {object} preObj previous object
* @param {object} nextObj next object
* @returns an array of keys that exist in both objects
*/
var getIntersectionKeys = (preObj, nextObj) => [Object.keys(preObj), Object.keys(nextObj)].reduce((a, b) => a.filter((c) => b.includes(c)));
/**
* Maps an object to another object
* @param {function} fn function to map
* @param {object} obj object to map
* @returns mapped object
*/
var mapObject = (fn, obj) => Object.keys(obj).reduce((res, key) => _objectSpread$59(_objectSpread$59({}, res), {}, { [key]: fn(key, obj[key]) }), {});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/configUpdate.js
function ownKeys$58(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$58(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$58(Object(t), !0).forEach(function(r) {
_defineProperty$60(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$58(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$60(e, r, t) {
return (r = _toPropertyKey$60(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$60(t) {
var i = _toPrimitive$60(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$60(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var alpha = (begin, end, k) => begin + (end - begin) * k;
var needContinue = (_ref) => {
var { from, to } = _ref;
return from !== to;
};
var calStepperVals = (easing, preVals, steps) => {
var nextStepVals = mapObject((key, val) => {
if (needContinue(val)) {
var [newX, newV] = easing(val.from, val.to, val.velocity);
return _objectSpread$58(_objectSpread$58({}, val), {}, {
from: newX,
velocity: newV
});
}
return val;
}, preVals);
if (steps < 1) return mapObject((key, val) => {
if (needContinue(val) && nextStepVals[key] != null) return _objectSpread$58(_objectSpread$58({}, val), {}, {
velocity: alpha(val.velocity, nextStepVals[key].velocity, steps),
from: alpha(val.from, nextStepVals[key].from, steps)
});
return val;
}, preVals);
return calStepperVals(easing, nextStepVals, steps - 1);
};
function createStepperUpdate(from, to, easing, interKeys, render, timeoutController) {
var preTime;
var stepperStyle = interKeys.reduce((res, key) => _objectSpread$58(_objectSpread$58({}, res), {}, { [key]: {
from: from[key],
velocity: 0,
to: to[key]
} }), {});
var getCurrStyle = () => mapObject((key, val) => val.from, stepperStyle);
var shouldStopAnimation = () => !Object.values(stepperStyle).filter(needContinue).length;
var stopAnimation = null;
var stepperUpdate = (now) => {
if (!preTime) preTime = now;
var steps = (now - preTime) / easing.dt;
stepperStyle = calStepperVals(easing, stepperStyle, steps);
render(_objectSpread$58(_objectSpread$58(_objectSpread$58({}, from), to), getCurrStyle()));
preTime = now;
if (!shouldStopAnimation()) stopAnimation = timeoutController.setTimeout(stepperUpdate);
};
return () => {
stopAnimation = timeoutController.setTimeout(stepperUpdate);
return () => {
var _stopAnimation;
(_stopAnimation = stopAnimation) === null || _stopAnimation === void 0 || _stopAnimation();
};
};
}
function createTimingUpdate(from, to, easing, duration, interKeys, render, timeoutController) {
var stopAnimation = null;
var timingStyle = interKeys.reduce((res, key) => {
var fromElement = from[key];
var toElement = to[key];
if (fromElement == null || toElement == null) return res;
return _objectSpread$58(_objectSpread$58({}, res), {}, { [key]: [fromElement, toElement] });
}, {});
var beginTime;
var timingUpdate = (now) => {
if (!beginTime) beginTime = now;
var t = (now - beginTime) / duration;
var currStyle = mapObject((key, val) => alpha(...val, easing(t)), timingStyle);
render(_objectSpread$58(_objectSpread$58(_objectSpread$58({}, from), to), currStyle));
if (t < 1) stopAnimation = timeoutController.setTimeout(timingUpdate);
else {
var finalStyle = mapObject((key, val) => alpha(...val, easing(1)), timingStyle);
render(_objectSpread$58(_objectSpread$58(_objectSpread$58({}, from), to), finalStyle));
}
};
return () => {
stopAnimation = timeoutController.setTimeout(timingUpdate);
return () => {
var _stopAnimation2;
(_stopAnimation2 = stopAnimation) === null || _stopAnimation2 === void 0 || _stopAnimation2();
};
};
}
var configUpdate_default = (from, to, easing, duration, render, timeoutController) => {
var interKeys = getIntersectionKeys(from, to);
if (easing == null) return () => {
render(_objectSpread$58(_objectSpread$58({}, from), to));
return () => {};
};
return easing.isStepper === true ? createStepperUpdate(from, to, easing, interKeys, render, timeoutController) : createTimingUpdate(from, to, easing, duration, interKeys, render, timeoutController);
};
var cubicBezierFactor = (c1, c2) => [
0,
3 * c1,
3 * c2 - 6 * c1,
3 * c1 - 3 * c2 + 1
];
var evaluatePolynomial = (params, t) => params.map((param, i) => param * t ** i).reduce((pre, curr) => pre + curr);
var cubicBezier = (c1, c2) => (t) => {
return evaluatePolynomial(cubicBezierFactor(c1, c2), t);
};
var derivativeCubicBezier = (c1, c2) => (t) => {
return evaluatePolynomial([...cubicBezierFactor(c1, c2).map((param, i) => param * i).slice(1), 0], t);
};
var parseCubicBezier = (easing) => {
var _easingParts$;
var easingParts = easing.split("(");
if (easingParts.length !== 2 || easingParts[0] !== "cubic-bezier") return null;
var numbers = (_easingParts$ = easingParts[1]) === null || _easingParts$ === void 0 || (_easingParts$ = _easingParts$.split(")")[0]) === null || _easingParts$ === void 0 ? void 0 : _easingParts$.split(",");
if (numbers == null || numbers.length !== 4) return null;
var coords = numbers.map((x) => parseFloat(x));
return [
coords[0],
coords[1],
coords[2],
coords[3]
];
};
var getBezierCoordinates = function getBezierCoordinates() {
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) args[_key] = arguments[_key];
if (args.length === 1) switch (args[0]) {
case "linear": return [
0,
0,
1,
1
];
case "ease": return [
.25,
.1,
.25,
1
];
case "ease-in": return [
.42,
0,
1,
1
];
case "ease-out": return [
.42,
0,
.58,
1
];
case "ease-in-out": return [
0,
0,
.58,
1
];
default:
var easing = parseCubicBezier(args[0]);
if (easing) return easing;
}
if (args.length === 4) return args;
return [
0,
0,
1,
1
];
};
var createBezierEasing = (x1, y1, x2, y2) => {
var curveX = cubicBezier(x1, x2);
var curveY = cubicBezier(y1, y2);
var derCurveX = derivativeCubicBezier(x1, x2);
var rangeValue = (value) => {
if (value > 1) return 1;
if (value < 0) return 0;
return value;
};
var bezier = (_t) => {
var t = _t > 1 ? 1 : _t;
var x = t;
for (var i = 0; i < 8; ++i) {
var evalT = curveX(x) - t;
var derVal = derCurveX(x);
if (Math.abs(evalT - t) < 1e-4 || derVal < 1e-4) return curveY(x);
x = rangeValue(x - evalT / derVal);
}
return curveY(x);
};
bezier.isStepper = false;
return bezier;
};
var configBezier = function configBezier() {
return createBezierEasing(...getBezierCoordinates(...arguments));
};
var configSpring = function configSpring() {
var { stiff = 100, damping = 8, dt = 17 } = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
var stepper = (currX, destX, currV) => {
var newV = currV + (-(currX - destX) * stiff - currV * damping) * dt / 1e3;
var newX = currV * dt / 1e3 + currX;
if (Math.abs(newX - destX) < 1e-4 && Math.abs(newV) < 1e-4) return [destX, 0];
return [newX, newV];
};
stepper.isStepper = true;
stepper.dt = dt;
return stepper;
};
var configEasing = (easing) => {
if (typeof easing === "string") switch (easing) {
case "ease":
case "ease-in-out":
case "ease-out":
case "ease-in":
case "linear": return configBezier(easing);
case "spring": return configSpring();
default: if (easing.split("(")[0] === "cubic-bezier") return configBezier(easing);
}
if (typeof easing === "function") return easing;
return null;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/AnimationManager.js
/**
* Represents a single item in the ReactSmoothQueue.
* The item can be:
* - A number representing a delay in milliseconds.
* - An object representing a style change
* - A StartAnimationFunction that starts eased transition and calls different render
* because of course in Recharts we have to have three ways to do everything
* - An arbitrary function to be executed
*/
function createAnimateManager(timeoutController) {
var currStyle;
var handleChange = () => null;
var shouldStop = false;
var cancelTimeout = null;
var setStyle = (_style) => {
if (shouldStop) return;
if (Array.isArray(_style)) {
if (!_style.length) return;
var [curr, ...restStyles] = _style;
if (typeof curr === "number") {
cancelTimeout = timeoutController.setTimeout(setStyle.bind(null, restStyles), curr);
return;
}
setStyle(curr);
cancelTimeout = timeoutController.setTimeout(setStyle.bind(null, restStyles));
return;
}
if (typeof _style === "string") {
currStyle = _style;
handleChange(currStyle);
}
if (typeof _style === "object") {
currStyle = _style;
handleChange(currStyle);
}
if (typeof _style === "function") _style();
};
return {
stop: () => {
shouldStop = true;
},
start: (style) => {
shouldStop = false;
if (cancelTimeout) {
cancelTimeout();
cancelTimeout = null;
}
setStyle(style);
},
subscribe: (_handleChange) => {
handleChange = _handleChange;
return () => {
handleChange = () => null;
};
},
getTimeoutController: () => timeoutController
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/timeoutController.js
/**
* Callback type for the timeout function.
* Receives current time in milliseconds as an argument.
*/
/**
* A function that, when called, cancels the timeout.
*/
var RequestAnimationFrameTimeoutController = class {
setTimeout(callback) {
var delay = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;
var startTime = performance.now();
var requestId = null;
var executeCallback = (now) => {
if (now - startTime >= delay) callback(now);
else if (typeof requestAnimationFrame === "function") requestId = requestAnimationFrame(executeCallback);
};
requestId = requestAnimationFrame(executeCallback);
return () => {
if (requestId != null) cancelAnimationFrame(requestId);
};
}
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/createDefaultAnimationManager.js
function createDefaultAnimationManager() {
return createAnimateManager(new RequestAnimationFrameTimeoutController());
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/useAnimationManager.js
var AnimationManagerContext = /* @__PURE__ */ (0, import_react.createContext)(createDefaultAnimationManager);
function useAnimationManager(animationId, animationManagerFromProps) {
var contextAnimationManager = (0, import_react.useContext)(AnimationManagerContext);
return (0, import_react.useMemo)(() => animationManagerFromProps !== null && animationManagerFromProps !== void 0 ? animationManagerFromProps : contextAnimationManager(animationId), [
animationId,
animationManagerFromProps,
contextAnimationManager
]);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/JavascriptAnimate.js
var defaultJavascriptAnimateProps = {
begin: 0,
duration: 1e3,
easing: "ease",
isActive: true,
canBegin: true,
onAnimationEnd: () => {},
onAnimationStart: () => {}
};
var from = { t: 0 };
var to = { t: 1 };
function JavascriptAnimate(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultJavascriptAnimateProps);
var { isActive: isActiveProp, canBegin, duration, easing, begin, onAnimationEnd, onAnimationStart, children } = props;
var prefersReducedMotion = usePrefersReducedMotion();
var isActive = isActiveProp === "auto" ? !Global.isSsr && !prefersReducedMotion : isActiveProp;
var animationManager = useAnimationManager(props.animationId, props.animationManager);
var [style, setStyle] = (0, import_react.useState)(isActive ? from : to);
var stopJSAnimation = (0, import_react.useRef)(null);
(0, import_react.useEffect)(() => {
if (!isActive) setStyle(to);
}, [isActive]);
(0, import_react.useEffect)(() => {
if (!isActive || !canBegin) return noop$2;
var startAnimation = configUpdate_default(from, to, configEasing(easing), duration, setStyle, animationManager.getTimeoutController());
var onAnimationActive = () => {
stopJSAnimation.current = startAnimation();
};
animationManager.start([
onAnimationStart,
begin,
onAnimationActive,
duration,
onAnimationEnd
]);
return () => {
animationManager.stop();
if (stopJSAnimation.current) stopJSAnimation.current();
onAnimationEnd();
};
}, [
isActive,
canBegin,
duration,
easing,
begin,
onAnimationStart,
onAnimationEnd,
animationManager
]);
return children(style.t);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/useAnimationId.js
/**
* This hook returns a unique animation id for the object input.
* If input changes (as in, reference equality is different), the animation id will change.
* If input does not change, the animation id will not change.
*
* This is useful for animations. The Animate component
* does have a `shouldReAnimate` prop but that doesn't seem to be doing what the name implies.
* Also, we don't always want to re-animate on every render;
* we only want to re-animate when the input changes. Not the internal state (e.g. `isAnimating`).
*
* @param input The object to check for changes. Uses reference equality (=== operator)
* @param prefix Optional prefix to use for the animation id
* @returns A unique animation id
*/
function useAnimationId(input) {
var prefix = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "animation-";
var animationId = (0, import_react.useRef)(uniqueId(prefix));
var prevProps = (0, import_react.useRef)(input);
if (prevProps.current !== input) {
animationId.current = uniqueId(prefix);
prevProps.current = input;
}
return animationId.current;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Rectangle.js
/**
* @fileOverview Rectangle
*/
var _excluded$33 = ["radius"], _excluded2$17 = ["radius"];
var _templateObject$3, _templateObject2$2, _templateObject3$2, _templateObject4$2, _templateObject5$2, _templateObject6$1, _templateObject7$1, _templateObject8, _templateObject9, _templateObject0;
function ownKeys$57(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$57(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$57(Object(t), !0).forEach(function(r) {
_defineProperty$59(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$57(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$59(e, r, t) {
return (r = _toPropertyKey$59(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$59(t) {
var i = _toPrimitive$59(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$59(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$43() {
return _extends$43 = 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$43.apply(null, arguments);
}
function _objectWithoutProperties$33(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$33(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$33(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function _taggedTemplateLiteral$3(e, t) {
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } }));
}
/**
* @inline
*/
var getRectanglePath = (x, y, width, height, radius) => {
var roundedWidth = round(width);
var roundedHeight = round(height);
var maxRadius = Math.min(Math.abs(roundedWidth) / 2, Math.abs(roundedHeight) / 2);
var ySign = roundedHeight >= 0 ? 1 : -1;
var xSign = roundedWidth >= 0 ? 1 : -1;
var clockWise = roundedHeight >= 0 && roundedWidth >= 0 || roundedHeight < 0 && roundedWidth < 0 ? 1 : 0;
var path;
if (maxRadius > 0 && Array.isArray(radius)) {
var newRadius = [
0,
0,
0,
0
];
for (var i = 0, len = 4; i < len; i++) {
var _radius$i;
var r = (_radius$i = radius[i]) !== null && _radius$i !== void 0 ? _radius$i : 0;
newRadius[i] = r > maxRadius ? maxRadius : r;
}
path = roundTemplateLiteral(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteral$3([
"M",
",",
""
])), x, y + ySign * newRadius[0]);
if (newRadius[0] > 0) path += roundTemplateLiteral(_templateObject2$2 || (_templateObject2$2 = _taggedTemplateLiteral$3([
"A ",
",",
",0,0,",
",",
",",
""
])), newRadius[0], newRadius[0], clockWise, x + xSign * newRadius[0], y);
path += roundTemplateLiteral(_templateObject3$2 || (_templateObject3$2 = _taggedTemplateLiteral$3([
"L ",
",",
""
])), x + width - xSign * newRadius[1], y);
if (newRadius[1] > 0) path += roundTemplateLiteral(_templateObject4$2 || (_templateObject4$2 = _taggedTemplateLiteral$3([
"A ",
",",
",0,0,",
",\n ",
",",
""
])), newRadius[1], newRadius[1], clockWise, x + width, y + ySign * newRadius[1]);
path += roundTemplateLiteral(_templateObject5$2 || (_templateObject5$2 = _taggedTemplateLiteral$3([
"L ",
",",
""
])), x + width, y + height - ySign * newRadius[2]);
if (newRadius[2] > 0) path += roundTemplateLiteral(_templateObject6$1 || (_templateObject6$1 = _taggedTemplateLiteral$3([
"A ",
",",
",0,0,",
",\n ",
",",
""
])), newRadius[2], newRadius[2], clockWise, x + width - xSign * newRadius[2], y + height);
path += roundTemplateLiteral(_templateObject7$1 || (_templateObject7$1 = _taggedTemplateLiteral$3([
"L ",
",",
""
])), x + xSign * newRadius[3], y + height);
if (newRadius[3] > 0) path += roundTemplateLiteral(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral$3([
"A ",
",",
",0,0,",
",\n ",
",",
""
])), newRadius[3], newRadius[3], clockWise, x, y + height - ySign * newRadius[3]);
path += "Z";
} else if (maxRadius > 0 && radius === +radius && radius > 0) {
var _newRadius = Math.min(maxRadius, radius);
path = roundTemplateLiteral(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral$3([
"M ",
",",
"\n A ",
",",
",0,0,",
",",
",",
"\n L ",
",",
"\n A ",
",",
",0,0,",
",",
",",
"\n L ",
",",
"\n A ",
",",
",0,0,",
",",
",",
"\n L ",
",",
"\n A ",
",",
",0,0,",
",",
",",
" Z"
])), x, y + ySign * _newRadius, _newRadius, _newRadius, clockWise, x + xSign * _newRadius, y, x + width - xSign * _newRadius, y, _newRadius, _newRadius, clockWise, x + width, y + ySign * _newRadius, x + width, y + height - ySign * _newRadius, _newRadius, _newRadius, clockWise, x + width - xSign * _newRadius, y + height, x + xSign * _newRadius, y + height, _newRadius, _newRadius, clockWise, x, y + height - ySign * _newRadius);
} else path = roundTemplateLiteral(_templateObject0 || (_templateObject0 = _taggedTemplateLiteral$3([
"M ",
",",
" h ",
" v ",
" h ",
" Z"
])), x, y, width, height, -width);
return path;
};
var defaultRectangleProps = {
x: 0,
y: 0,
width: 0,
height: 0,
radius: 0,
isAnimationActive: false,
isUpdateAnimationActive: false,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease"
};
/**
* Renders a rectangle element. Unlike the {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/rect rect SVG element}, this component supports rounded corners
* and animation.
*
* 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 ReferenceArea} component instead.
*
* @param rectangleProps
* @constructor
*/
var Rectangle = (rectangleProps) => {
var props = resolveDefaultProps(rectangleProps, defaultRectangleProps);
var pathRef = (0, import_react.useRef)(null);
var [totalLength, setTotalLength] = (0, import_react.useState)(-1);
(0, import_react.useEffect)(() => {
if (pathRef.current && pathRef.current.getTotalLength) try {
var pathTotalLength = pathRef.current.getTotalLength();
if (pathTotalLength) setTotalLength(pathTotalLength);
} catch (_unused) {}
}, []);
var { x, y, width, height, radius, className } = props;
var { animationEasing, animationDuration, animationBegin, isAnimationActive, isUpdateAnimationActive } = props;
var prevWidthRef = (0, import_react.useRef)(width);
var prevHeightRef = (0, import_react.useRef)(height);
var prevXRef = (0, import_react.useRef)(x);
var prevYRef = (0, import_react.useRef)(y);
var animationId = useAnimationId((0, import_react.useMemo)(() => ({
x,
y,
width,
height,
radius
}), [
x,
y,
width,
height,
radius
]), "rectangle-");
if (x !== +x || y !== +y || width !== +width || height !== +height || width === 0 || height === 0) return null;
var layerClass = clsx("recharts-rectangle", className);
if (!isUpdateAnimationActive) {
var _svgPropertiesAndEven = svgPropertiesAndEvents(props), { radius: _ } = _svgPropertiesAndEven, otherPathProps = _objectWithoutProperties$33(_svgPropertiesAndEven, _excluded$33);
return /* @__PURE__ */ import_react.createElement("path", _extends$43({}, otherPathProps, {
x: round(x),
y: round(y),
width: round(width),
height: round(height),
radius: typeof radius === "number" ? radius : void 0,
className: layerClass,
d: getRectanglePath(x, y, width, height, radius)
}));
}
var prevWidth = prevWidthRef.current;
var prevHeight = prevHeightRef.current;
var prevX = prevXRef.current;
var prevY = prevYRef.current;
var from = "0px ".concat(totalLength === -1 ? 1 : totalLength, "px");
var to = "".concat(totalLength, "px ").concat(totalLength, "px");
var transition = getTransitionVal(["strokeDasharray"], animationDuration, typeof animationEasing === "string" ? animationEasing : defaultRectangleProps.animationEasing);
return /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
key: animationId,
canBegin: totalLength > 0,
duration: animationDuration,
easing: animationEasing,
isActive: isUpdateAnimationActive,
begin: animationBegin
}, (t) => {
var currWidth = interpolate(prevWidth, width, t);
var currHeight = interpolate(prevHeight, height, t);
var currX = interpolate(prevX, x, t);
var currY = interpolate(prevY, y, t);
if (pathRef.current) {
prevWidthRef.current = currWidth;
prevHeightRef.current = currHeight;
prevXRef.current = currX;
prevYRef.current = currY;
}
var animationStyle;
if (!isAnimationActive) animationStyle = { strokeDasharray: to };
else if (t > 0) animationStyle = {
transition,
strokeDasharray: to
};
else animationStyle = { strokeDasharray: from };
var _svgPropertiesAndEven2 = svgPropertiesAndEvents(props), { radius: _ } = _svgPropertiesAndEven2, otherPathProps = _objectWithoutProperties$33(_svgPropertiesAndEven2, _excluded2$17);
return /* @__PURE__ */ import_react.createElement("path", _extends$43({}, otherPathProps, {
radius: typeof radius === "number" ? radius : void 0,
className: layerClass,
d: getRectanglePath(currX, currY, currWidth, currHeight, radius),
ref: pathRef,
style: _objectSpread$57(_objectSpread$57({}, animationStyle), props.style)
}));
});
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/PolarUtils.js
function ownKeys$56(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$56(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$56(Object(t), !0).forEach(function(r) {
_defineProperty$58(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$56(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$58(e, r, t) {
return (r = _toPropertyKey$58(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$58(t) {
var i = _toPrimitive$58(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$58(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var RADIAN = Math.PI / 180;
var degreeToRadian = (angle) => angle * Math.PI / 180;
var radianToDegree = (angleInRadian) => angleInRadian * 180 / Math.PI;
var polarToCartesian = (cx, cy, radius, angle) => ({
x: cx + Math.cos(-RADIAN * angle) * radius,
y: cy + Math.sin(-RADIAN * angle) * radius
});
var getMaxRadius = function getMaxRadius(width, height) {
var offset = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {
top: 0,
right: 0,
bottom: 0,
left: 0,
width: 0,
height: 0,
brushBottom: 0
};
return Math.min(Math.abs(width - (offset.left || 0) - (offset.right || 0)), Math.abs(height - (offset.top || 0) - (offset.bottom || 0))) / 2;
};
var distanceBetweenPoints = (point, anotherPoint) => {
var { x: x1, y: y1 } = point;
var { x: x2, y: y2 } = anotherPoint;
return Math.sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2);
};
var getAngleOfPoint = (_ref, _ref2) => {
var { x, y } = _ref;
var { cx, cy } = _ref2;
var radius = distanceBetweenPoints({
x,
y
}, {
x: cx,
y: cy
});
if (radius <= 0) return {
radius,
angle: 0
};
var cos = (x - cx) / radius;
var angleInRadian = Math.acos(cos);
if (y > cy) angleInRadian = 2 * Math.PI - angleInRadian;
return {
radius,
angle: radianToDegree(angleInRadian),
angleInRadian
};
};
var formatAngleOfSector = (_ref3) => {
var { startAngle, endAngle } = _ref3;
var startCnt = Math.floor(startAngle / 360);
var endCnt = Math.floor(endAngle / 360);
var min = Math.min(startCnt, endCnt);
return {
startAngle: startAngle - min * 360,
endAngle: endAngle - min * 360
};
};
var reverseFormatAngleOfSector = (angle, _ref4) => {
var { startAngle, endAngle } = _ref4;
var startCnt = Math.floor(startAngle / 360);
var endCnt = Math.floor(endAngle / 360);
return angle + Math.min(startCnt, endCnt) * 360;
};
var inRangeOfSector = (_ref5, viewBox) => {
var { relativeX: x, relativeY: y } = _ref5;
var { radius, angle } = getAngleOfPoint({
x,
y
}, viewBox);
var { innerRadius, outerRadius } = viewBox;
if (radius < innerRadius || radius > outerRadius) return null;
if (radius === 0) return null;
var { startAngle, endAngle } = formatAngleOfSector(viewBox);
var formatAngle = angle;
var inRange;
if (startAngle <= endAngle) {
while (formatAngle > endAngle) formatAngle -= 360;
while (formatAngle < startAngle) formatAngle += 360;
inRange = formatAngle >= startAngle && formatAngle <= endAngle;
} else {
while (formatAngle > startAngle) formatAngle -= 360;
while (formatAngle < endAngle) formatAngle += 360;
inRange = formatAngle >= endAngle && formatAngle <= startAngle;
}
if (inRange) return _objectSpread$56(_objectSpread$56({}, viewBox), {}, {
radius,
angle: reverseFormatAngleOfSector(formatAngle, viewBox)
});
return null;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/cursor/getRadialCursorPoints.js
/**
* Only applicable for radial layouts
* @param {Object} activeCoordinate ChartCoordinate
* @returns {Object} RadialCursorPoints
*/
function getRadialCursorPoints(activeCoordinate) {
var { cx, cy, radius, startAngle, endAngle } = activeCoordinate;
return {
points: [polarToCartesian(cx, cy, radius, startAngle), polarToCartesian(cx, cy, radius, endAngle)],
cx,
cy,
radius,
startAngle,
endAngle
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Sector.js
var _templateObject$2, _templateObject2$1, _templateObject3$1, _templateObject4$1, _templateObject5$1, _templateObject6, _templateObject7;
function _extends$42() {
return _extends$42 = 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$42.apply(null, arguments);
}
function _taggedTemplateLiteral$2(e, t) {
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } }));
}
var getDeltaAngle$1 = (startAngle, endAngle) => {
return mathSign(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 359.999);
};
var getTangentCircle = (_ref) => {
var { cx, cy, radius, angle, sign, isExternal, cornerRadius, cornerIsExternal } = _ref;
var centerRadius = cornerRadius * (isExternal ? 1 : -1) + radius;
var theta = Math.asin(cornerRadius / centerRadius) / RADIAN;
var centerAngle = cornerIsExternal ? angle : angle + sign * theta;
var center = polarToCartesian(cx, cy, centerRadius, centerAngle);
var circleTangency = polarToCartesian(cx, cy, radius, centerAngle);
var lineTangencyAngle = cornerIsExternal ? angle - sign * theta : angle;
return {
center,
circleTangency,
lineTangency: polarToCartesian(cx, cy, centerRadius * Math.cos(theta * RADIAN), lineTangencyAngle),
theta
};
};
var getSectorPath = (_ref2) => {
var { cx, cy, innerRadius, outerRadius, startAngle, endAngle } = _ref2;
var angle = getDeltaAngle$1(startAngle, endAngle);
var tempEndAngle = startAngle + angle;
var outerStartPoint = polarToCartesian(cx, cy, outerRadius, startAngle);
var outerEndPoint = polarToCartesian(cx, cy, outerRadius, tempEndAngle);
var path = roundTemplateLiteral(_templateObject$2 || (_templateObject$2 = _taggedTemplateLiteral$2([
"M ",
",",
"\n A ",
",",
",0,\n ",
",",
",\n ",
",",
"\n "
])), outerStartPoint.x, outerStartPoint.y, outerRadius, outerRadius, +(Math.abs(angle) > 180), +(startAngle > tempEndAngle), outerEndPoint.x, outerEndPoint.y);
if (innerRadius > 0) {
var innerStartPoint = polarToCartesian(cx, cy, innerRadius, startAngle);
var innerEndPoint = polarToCartesian(cx, cy, innerRadius, tempEndAngle);
path += roundTemplateLiteral(_templateObject2$1 || (_templateObject2$1 = _taggedTemplateLiteral$2([
"L ",
",",
"\n A ",
",",
",0,\n ",
",",
",\n ",
",",
" Z"
])), innerEndPoint.x, innerEndPoint.y, innerRadius, innerRadius, +(Math.abs(angle) > 180), +(startAngle <= tempEndAngle), innerStartPoint.x, innerStartPoint.y);
} else path += roundTemplateLiteral(_templateObject3$1 || (_templateObject3$1 = _taggedTemplateLiteral$2([
"L ",
",",
" Z"
])), cx, cy);
return path;
};
var getSectorWithCorner = (_ref3) => {
var { cx, cy, innerRadius, outerRadius, cornerRadius, forceCornerRadius, cornerIsExternal, startAngle, endAngle } = _ref3;
var sign = mathSign(endAngle - startAngle);
var { circleTangency: soct, lineTangency: solt, theta: sot } = getTangentCircle({
cx,
cy,
radius: outerRadius,
angle: startAngle,
sign,
cornerRadius,
cornerIsExternal
});
var { circleTangency: eoct, lineTangency: eolt, theta: eot } = getTangentCircle({
cx,
cy,
radius: outerRadius,
angle: endAngle,
sign: -sign,
cornerRadius,
cornerIsExternal
});
var outerArcAngle = cornerIsExternal ? Math.abs(startAngle - endAngle) : Math.abs(startAngle - endAngle) - sot - eot;
if (outerArcAngle < 0) {
if (forceCornerRadius) return roundTemplateLiteral(_templateObject4$1 || (_templateObject4$1 = _taggedTemplateLiteral$2([
"M ",
",",
"\n a",
",",
",0,0,1,",
",0\n a",
",",
",0,0,1,",
",0\n "
])), solt.x, solt.y, cornerRadius, cornerRadius, cornerRadius * 2, cornerRadius, cornerRadius, -cornerRadius * 2);
return getSectorPath({
cx,
cy,
innerRadius,
outerRadius,
startAngle,
endAngle
});
}
var path = roundTemplateLiteral(_templateObject5$1 || (_templateObject5$1 = _taggedTemplateLiteral$2([
"M ",
",",
"\n A",
",",
",0,0,",
",",
",",
"\n A",
",",
",0,",
",",
",",
",",
"\n A",
",",
",0,0,",
",",
",",
"\n "
])), solt.x, solt.y, cornerRadius, cornerRadius, +(sign < 0), soct.x, soct.y, outerRadius, outerRadius, +(outerArcAngle > 180), +(sign < 0), eoct.x, eoct.y, cornerRadius, cornerRadius, +(sign < 0), eolt.x, eolt.y);
if (innerRadius > 0) {
var { circleTangency: sict, lineTangency: silt, theta: sit } = getTangentCircle({
cx,
cy,
radius: innerRadius,
angle: startAngle,
sign,
isExternal: true,
cornerRadius,
cornerIsExternal
});
var { circleTangency: eict, lineTangency: eilt, theta: eit } = getTangentCircle({
cx,
cy,
radius: innerRadius,
angle: endAngle,
sign: -sign,
isExternal: true,
cornerRadius,
cornerIsExternal
});
var innerArcAngle = cornerIsExternal ? Math.abs(startAngle - endAngle) : Math.abs(startAngle - endAngle) - sit - eit;
if (innerArcAngle < 0 && cornerRadius === 0) return "".concat(path, "L").concat(cx, ",").concat(cy, "Z");
path += roundTemplateLiteral(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral$2([
"L",
",",
"\n A",
",",
",0,0,",
",",
",",
"\n A",
",",
",0,",
",",
",",
",",
"\n A",
",",
",0,0,",
",",
",",
"Z"
])), eilt.x, eilt.y, cornerRadius, cornerRadius, +(sign < 0), eict.x, eict.y, innerRadius, innerRadius, +(innerArcAngle > 180), +(sign > 0), sict.x, sict.y, cornerRadius, cornerRadius, +(sign < 0), silt.x, silt.y);
} else path += roundTemplateLiteral(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral$2([
"L",
",",
"Z"
])), cx, cy);
return path;
};
/**
* SVG cx, cy are `string | number | undefined`, but internally we use `number` so let's
* override the types here.
*/
var defaultSectorProps = {
cx: 0,
cy: 0,
innerRadius: 0,
outerRadius: 0,
startAngle: 0,
endAngle: 0,
cornerRadius: 0,
forceCornerRadius: false,
cornerIsExternal: false
};
var Sector = (sectorProps) => {
var props = resolveDefaultProps(sectorProps, defaultSectorProps);
var { cx, cy, innerRadius, outerRadius, cornerRadius, forceCornerRadius, cornerIsExternal, startAngle, endAngle, className } = props;
if (outerRadius < innerRadius || startAngle === endAngle) return null;
var layerClass = clsx("recharts-sector", className);
var deltaRadius = outerRadius - innerRadius;
var cr = getPercentValue(cornerRadius, deltaRadius, 0, true);
var path;
if (cr > 0 && Math.abs(startAngle - endAngle) < 360) path = getSectorWithCorner({
cx,
cy,
innerRadius,
outerRadius,
cornerRadius: Math.min(cr, deltaRadius / 2),
forceCornerRadius,
cornerIsExternal,
startAngle,
endAngle
});
else path = getSectorPath({
cx,
cy,
innerRadius,
outerRadius,
startAngle,
endAngle
});
return /* @__PURE__ */ import_react.createElement("path", _extends$42({}, svgPropertiesAndEvents(props), {
className: layerClass,
d: path
}));
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/cursor/getCursorPoints.js
function getCursorPoints(layout, activeCoordinate, offset) {
if (layout === "horizontal") return [{
x: activeCoordinate.x,
y: offset.top
}, {
x: activeCoordinate.x,
y: offset.top + offset.height
}];
if (layout === "vertical") return [{
x: offset.left,
y: activeCoordinate.y
}, {
x: offset.left + offset.width,
y: activeCoordinate.y
}];
if (isPolarCoordinate(activeCoordinate)) {
if (layout === "centric") {
var { cx, cy, innerRadius, outerRadius, angle } = activeCoordinate;
var innerPoint = polarToCartesian(cx, cy, innerRadius, angle);
var outerPoint = polarToCartesian(cx, cy, outerRadius, angle);
return [{
x: innerPoint.x,
y: innerPoint.y
}, {
x: outerPoint.x,
y: outerPoint.y
}];
}
return getRadialCursorPoints(activeCoordinate);
}
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/util/toNumber.js
var require_toNumber = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var isSymbol = require_isSymbol();
function toNumber(value) {
if (isSymbol.isSymbol(value)) return NaN;
return Number(value);
}
exports.toNumber = toNumber;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/util/toFinite.js
var require_toFinite = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var toNumber = require_toNumber();
function toFinite(value) {
if (!value) return value === 0 ? value : 0;
value = toNumber.toNumber(value);
if (value === Infinity || value === -Infinity) return (value < 0 ? -1 : 1) * Number.MAX_VALUE;
return value === value ? value : 0;
}
exports.toFinite = toFinite;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/math/range.js
var require_range$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var isIterateeCall = require_isIterateeCall();
var toFinite = require_toFinite();
function range(start, end, step) {
if (step && typeof step !== "number" && isIterateeCall.isIterateeCall(start, end, step)) end = step = void 0;
start = toFinite.toFinite(start);
if (end === void 0) {
end = start;
start = 0;
} else end = toFinite.toFinite(end);
step = step === void 0 ? start < end ? 1 : -1 : toFinite.toFinite(step);
const length = Math.max(Math.ceil((end - start) / (step || 1)), 0);
const result = new Array(length);
for (let index = 0; index < length; index++) {
result[index] = start;
start += step;
}
return result;
}
exports.range = range;
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/dataSelectors.js
var import_range = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_range$1().range;
})))());
/**
* This selector always returns the data with the indexes set by a Brush.
* Trouble is, that might or might not be what you want.
*
* In charts with Brush, you will sometimes want to select the full range of data, and sometimes the one decided by the Brush
* - even if the Brush is active, the panorama inside the Brush should show the full range of data.
*
* So instead of this selector, consider using either selectChartDataAndAlwaysIgnoreIndexes or selectChartDataWithIndexesIfNotInPanorama
*
* @param state RechartsRootState
* @returns data defined on the chart root element, such as BarChart or ScatterChart
*/
var selectChartDataWithIndexes = (state) => state.chartData;
/**
* This selector will always return the full range of data, ignoring the indexes set by a Brush.
* Useful for when you want to render the full range of data, even if a Brush is active.
* For example: in the Brush panorama, in Legend, in Tooltip.
*/
var selectChartDataAndAlwaysIgnoreIndexes = createSelector([selectChartDataWithIndexes], (dataState) => {
var dataEndIndex = dataState.chartData != null ? dataState.chartData.length - 1 : 0;
return {
chartData: dataState.chartData,
computedData: dataState.computedData,
dataEndIndex,
dataStartIndex: 0
};
});
var selectChartDataWithIndexesIfNotInPanoramaPosition4 = (state, _unused1, _unused2, isPanorama) => {
if (isPanorama) return selectChartDataAndAlwaysIgnoreIndexes(state);
return selectChartDataWithIndexes(state);
};
var selectChartDataWithIndexesIfNotInPanoramaPosition3 = (state, _unused1, isPanorama) => {
if (isPanorama) return selectChartDataAndAlwaysIgnoreIndexes(state);
return selectChartDataWithIndexes(state);
};
/**
* Returns the chart-level data slice (respecting Brush indexes), memoized by content so that
* spurious Immer reference changes (e.g. dispatching `setChartData(undefined)` when data is
* already `undefined`) do not propagate to downstream selectors.
*
* Used when a selector needs chart-level data but must avoid extra recomputes when the
* data content has not actually changed.
*/
var selectChartDataSliceIfNotInPanorama = createSelector([selectChartDataWithIndexesIfNotInPanoramaPosition4], (_ref) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref;
return chartData != null ? chartData.slice(dataStartIndex, dataEndIndex + 1) : [];
});
/**
* Returns the chart-level data slice (ignoring Brush indexes), memoized by content.
* Used in tooltip and polar selectors that always need the full data range.
*/
var selectChartDataSliceIgnoringIndexes = createSelector([selectChartDataAndAlwaysIgnoreIndexes], (_ref2) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref2;
return chartData != null ? chartData.slice(dataStartIndex, dataEndIndex + 1) : [];
});
/**
* Returns the chart-level data slice (with Brush indexes applied), memoized by content.
* Used in tooltip selectors.
*/
var selectChartDataSliceWithIndexes = createSelector([selectChartDataWithIndexes], (_ref3) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref3;
return chartData != null ? chartData.slice(dataStartIndex, dataEndIndex + 1) : [];
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/isDomainSpecifiedByUser.js
function isWellFormedNumberDomain(v) {
if (Array.isArray(v) && v.length === 2) {
var [min, max] = v;
if (isWellBehavedNumber(min) && isWellBehavedNumber(max)) return true;
}
return false;
}
function extendDomain(providedDomain, boundaryDomain, allowDataOverflow) {
if (allowDataOverflow) return providedDomain;
return [Math.min(providedDomain[0], boundaryDomain[0]), Math.max(providedDomain[1], boundaryDomain[1])];
}
/**
* So Recharts allows users to provide their own domains,
* but it also places some expectations on what the domain is.
* We can improve on the typescript typing, but we also need a runtime test
to observe that the user-provided domain is well-formed,
* that is: an array with exactly two numbers.
*
* This function does not accept data as an argument.
* This is to enable a performance optimization - if the domain is there,
* and we know what it is without traversing all the data,
* then we don't have to traverse all the data!
*
* If the user-provided domain is not well-formed,
* this function will return undefined - in which case we should traverse the data to calculate the real domain.
*
* This function is for parsing the numerical domain only.
*
* @param userDomain external prop, user provided, before validation. Can have various shapes: array, function, special magical strings inside too.
* @param allowDataOverflow boolean, provided by users. If true then the data domain wins
*
* @return [min, max] domain if it's well-formed; undefined if the domain is invalid
*/
function numericalDomainSpecifiedWithoutRequiringData(userDomain, allowDataOverflow) {
if (!allowDataOverflow) return;
if (typeof userDomain === "function") return;
if (Array.isArray(userDomain) && userDomain.length === 2) {
var [providedMin, providedMax] = userDomain;
var finalMin, finalMax;
if (isWellBehavedNumber(providedMin)) finalMin = providedMin;
else if (typeof providedMin === "function") return;
if (isWellBehavedNumber(providedMax)) finalMax = providedMax;
else if (typeof providedMax === "function") return;
var candidate = [finalMin, finalMax];
if (isWellFormedNumberDomain(candidate)) return candidate;
}
}
/**
* So Recharts allows users to provide their own domains,
* but it also places some expectations on what the domain is.
* We can improve on the typescript typing, but we also need a runtime test
* to observe that the user-provided domain is well-formed,
* that is: an array with exactly two numbers.
* If the user-provided domain is not well-formed,
* this function will return undefined - in which case we should traverse the data to calculate the real domain.
*
* This function is for parsing the numerical domain only.
*
* You are probably thinking, why does domain need tick count?
* Well it adjusts the domain based on where the "nice ticks" land, and nice ticks depend on the tick count.
*
* @param userDomain external prop, user provided, before validation. Can have various shapes: array, function, special magical strings inside too.
* @param dataDomain calculated from data. Can be undefined, as an option for performance optimization
* @param allowDataOverflow provided by users. If true then the data domain wins
*
* @return [min, max] domain if it's well-formed; undefined if the domain is invalid
*/
function parseNumericalUserDomain(userDomain, dataDomain, allowDataOverflow) {
if (!allowDataOverflow && dataDomain == null) return;
if (typeof userDomain === "function" && dataDomain != null) try {
var result = userDomain(dataDomain, allowDataOverflow);
if (isWellFormedNumberDomain(result)) return extendDomain(result, dataDomain, allowDataOverflow);
} catch (_unused) {}
if (Array.isArray(userDomain) && userDomain.length === 2) {
var [providedMin, providedMax] = userDomain;
var finalMin, finalMax;
if (providedMin === "auto") {
if (dataDomain != null) finalMin = Math.min(...dataDomain);
} else if (isNumber(providedMin)) finalMin = providedMin;
else if (typeof providedMin === "function") try {
if (dataDomain != null) finalMin = providedMin(dataDomain === null || dataDomain === void 0 ? void 0 : dataDomain[0]);
} catch (_unused2) {}
else if (typeof providedMin === "string" && MIN_VALUE_REG.test(providedMin)) {
var match = MIN_VALUE_REG.exec(providedMin);
if (match == null || match[1] == null || dataDomain == null) finalMin = void 0;
else {
var value = +match[1];
finalMin = dataDomain[0] - value;
}
} else finalMin = dataDomain === null || dataDomain === void 0 ? void 0 : dataDomain[0];
if (providedMax === "auto") {
if (dataDomain != null) finalMax = Math.max(...dataDomain);
} else if (isNumber(providedMax)) finalMax = providedMax;
else if (typeof providedMax === "function") try {
if (dataDomain != null) finalMax = providedMax(dataDomain === null || dataDomain === void 0 ? void 0 : dataDomain[1]);
} catch (_unused3) {}
else if (typeof providedMax === "string" && MAX_VALUE_REG.test(providedMax)) {
var _match = MAX_VALUE_REG.exec(providedMax);
if (_match == null || _match[1] == null || dataDomain == null) finalMax = void 0;
else {
var _value = +_match[1];
finalMax = dataDomain[1] + _value;
}
} else finalMax = dataDomain === null || dataDomain === void 0 ? void 0 : dataDomain[1];
var candidate = [finalMin, finalMax];
if (isWellFormedNumberDomain(candidate)) {
if (dataDomain == null) return candidate;
return extendDomain(candidate, dataDomain, allowDataOverflow);
}
}
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/scale/util/arithmetic.js
var import_decimal = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
(function(globalScope) {
"use strict";
var MAX_DIGITS = 1e9, Decimal = {
precision: 20,
rounding: 4,
toExpNeg: -7,
toExpPos: 21,
LN10: "2.302585092994045684017991454684364207601101488628772976033327900967572609677352480235997205089598298341967784042286"
}, external = true, decimalError = "[DecimalError] ", invalidArgument = decimalError + "Invalid argument: ", exponentOutOfRange = decimalError + "Exponent out of range: ", mathfloor = Math.floor, mathpow = Math.pow, isDecimal = /^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i, ONE, BASE = 1e7, LOG_BASE = 7, MAX_SAFE_INTEGER = 9007199254740991, MAX_E = mathfloor(MAX_SAFE_INTEGER / LOG_BASE), P = {};
P.absoluteValue = P.abs = function() {
var x = new this.constructor(this);
if (x.s) x.s = 1;
return x;
};
P.comparedTo = P.cmp = function(y) {
var i, j, xdL, ydL, x = this;
y = new x.constructor(y);
if (x.s !== y.s) return x.s || -y.s;
if (x.e !== y.e) return x.e > y.e ^ x.s < 0 ? 1 : -1;
xdL = x.d.length;
ydL = y.d.length;
for (i = 0, j = xdL < ydL ? xdL : ydL; i < j; ++i) if (x.d[i] !== y.d[i]) return x.d[i] > y.d[i] ^ x.s < 0 ? 1 : -1;
return xdL === ydL ? 0 : xdL > ydL ^ x.s < 0 ? 1 : -1;
};
P.decimalPlaces = P.dp = function() {
var x = this, w = x.d.length - 1, dp = (w - x.e) * LOG_BASE;
w = x.d[w];
if (w) for (; w % 10 == 0; w /= 10) dp--;
return dp < 0 ? 0 : dp;
};
P.dividedBy = P.div = function(y) {
return divide(this, new this.constructor(y));
};
P.dividedToIntegerBy = P.idiv = function(y) {
var x = this, Ctor = x.constructor;
return round(divide(x, new Ctor(y), 0, 1), Ctor.precision);
};
P.equals = P.eq = function(y) {
return !this.cmp(y);
};
P.exponent = function() {
return getBase10Exponent(this);
};
P.greaterThan = P.gt = function(y) {
return this.cmp(y) > 0;
};
P.greaterThanOrEqualTo = P.gte = function(y) {
return this.cmp(y) >= 0;
};
P.isInteger = P.isint = function() {
return this.e > this.d.length - 2;
};
P.isNegative = P.isneg = function() {
return this.s < 0;
};
P.isPositive = P.ispos = function() {
return this.s > 0;
};
P.isZero = function() {
return this.s === 0;
};
P.lessThan = P.lt = function(y) {
return this.cmp(y) < 0;
};
P.lessThanOrEqualTo = P.lte = function(y) {
return this.cmp(y) < 1;
};
P.logarithm = P.log = function(base) {
var r, x = this, Ctor = x.constructor, pr = Ctor.precision, wpr = pr + 5;
if (base === void 0) base = new Ctor(10);
else {
base = new Ctor(base);
if (base.s < 1 || base.eq(ONE)) throw Error(decimalError + "NaN");
}
if (x.s < 1) throw Error(decimalError + (x.s ? "NaN" : "-Infinity"));
if (x.eq(ONE)) return new Ctor(0);
external = false;
r = divide(ln(x, wpr), ln(base, wpr), wpr);
external = true;
return round(r, pr);
};
P.minus = P.sub = function(y) {
var x = this;
y = new x.constructor(y);
return x.s == y.s ? subtract(x, y) : add(x, (y.s = -y.s, y));
};
P.modulo = P.mod = function(y) {
var q, x = this, Ctor = x.constructor, pr = Ctor.precision;
y = new Ctor(y);
if (!y.s) throw Error(decimalError + "NaN");
if (!x.s) return round(new Ctor(x), pr);
external = false;
q = divide(x, y, 0, 1).times(y);
external = true;
return x.minus(q);
};
P.naturalExponential = P.exp = function() {
return exp(this);
};
P.naturalLogarithm = P.ln = function() {
return ln(this);
};
P.negated = P.neg = function() {
var x = new this.constructor(this);
x.s = -x.s || 0;
return x;
};
P.plus = P.add = function(y) {
var x = this;
y = new x.constructor(y);
return x.s == y.s ? add(x, y) : subtract(x, (y.s = -y.s, y));
};
P.precision = P.sd = function(z) {
var e, sd, w, x = this;
if (z !== void 0 && z !== !!z && z !== 1 && z !== 0) throw Error(invalidArgument + z);
e = getBase10Exponent(x) + 1;
w = x.d.length - 1;
sd = w * LOG_BASE + 1;
w = x.d[w];
if (w) {
for (; w % 10 == 0; w /= 10) sd--;
for (w = x.d[0]; w >= 10; w /= 10) sd++;
}
return z && e > sd ? e : sd;
};
P.squareRoot = P.sqrt = function() {
var e, n, pr, r, s, t, wpr, x = this, Ctor = x.constructor;
if (x.s < 1) {
if (!x.s) return new Ctor(0);
throw Error(decimalError + "NaN");
}
e = getBase10Exponent(x);
external = false;
s = Math.sqrt(+x);
if (s == 0 || s == Infinity) {
n = digitsToString(x.d);
if ((n.length + e) % 2 == 0) n += "0";
s = Math.sqrt(n);
e = mathfloor((e + 1) / 2) - (e < 0 || e % 2);
if (s == Infinity) n = "5e" + e;
else {
n = s.toExponential();
n = n.slice(0, n.indexOf("e") + 1) + e;
}
r = new Ctor(n);
} else r = new Ctor(s.toString());
pr = Ctor.precision;
s = wpr = pr + 3;
for (;;) {
t = r;
r = t.plus(divide(x, t, wpr + 2)).times(.5);
if (digitsToString(t.d).slice(0, wpr) === (n = digitsToString(r.d)).slice(0, wpr)) {
n = n.slice(wpr - 3, wpr + 1);
if (s == wpr && n == "4999") {
round(t, pr + 1, 0);
if (t.times(t).eq(x)) {
r = t;
break;
}
} else if (n != "9999") break;
wpr += 4;
}
}
external = true;
return round(r, pr);
};
P.times = P.mul = function(y) {
var carry, e, i, k, r, rL, t, xdL, ydL, x = this, Ctor = x.constructor, xd = x.d, yd = (y = new Ctor(y)).d;
if (!x.s || !y.s) return new Ctor(0);
y.s *= x.s;
e = x.e + y.e;
xdL = xd.length;
ydL = yd.length;
if (xdL < ydL) {
r = xd;
xd = yd;
yd = r;
rL = xdL;
xdL = ydL;
ydL = rL;
}
r = [];
rL = xdL + ydL;
for (i = rL; i--;) r.push(0);
for (i = ydL; --i >= 0;) {
carry = 0;
for (k = xdL + i; k > i;) {
t = r[k] + yd[i] * xd[k - i - 1] + carry;
r[k--] = t % BASE | 0;
carry = t / BASE | 0;
}
r[k] = (r[k] + carry) % BASE | 0;
}
for (; !r[--rL];) r.pop();
if (carry) ++e;
else r.shift();
y.d = r;
y.e = e;
return external ? round(y, Ctor.precision) : y;
};
P.toDecimalPlaces = P.todp = function(dp, rm) {
var x = this, Ctor = x.constructor;
x = new Ctor(x);
if (dp === void 0) return x;
checkInt32(dp, 0, MAX_DIGITS);
if (rm === void 0) rm = Ctor.rounding;
else checkInt32(rm, 0, 8);
return round(x, dp + getBase10Exponent(x) + 1, rm);
};
P.toExponential = function(dp, rm) {
var str, x = this, Ctor = x.constructor;
if (dp === void 0) str = toString(x, true);
else {
checkInt32(dp, 0, MAX_DIGITS);
if (rm === void 0) rm = Ctor.rounding;
else checkInt32(rm, 0, 8);
x = round(new Ctor(x), dp + 1, rm);
str = toString(x, true, dp + 1);
}
return str;
};
P.toFixed = function(dp, rm) {
var str, y, x = this, Ctor = x.constructor;
if (dp === void 0) return toString(x);
checkInt32(dp, 0, MAX_DIGITS);
if (rm === void 0) rm = Ctor.rounding;
else checkInt32(rm, 0, 8);
y = round(new Ctor(x), dp + getBase10Exponent(x) + 1, rm);
str = toString(y.abs(), false, dp + getBase10Exponent(y) + 1);
return x.isneg() && !x.isZero() ? "-" + str : str;
};
P.toInteger = P.toint = function() {
var x = this, Ctor = x.constructor;
return round(new Ctor(x), getBase10Exponent(x) + 1, Ctor.rounding);
};
P.toNumber = function() {
return +this;
};
P.toPower = P.pow = function(y) {
var e, k, pr, r, sign, yIsInt, x = this, Ctor = x.constructor, guard = 12, yn = +(y = new Ctor(y));
if (!y.s) return new Ctor(ONE);
x = new Ctor(x);
if (!x.s) {
if (y.s < 1) throw Error(decimalError + "Infinity");
return x;
}
if (x.eq(ONE)) return x;
pr = Ctor.precision;
if (y.eq(ONE)) return round(x, pr);
e = y.e;
k = y.d.length - 1;
yIsInt = e >= k;
sign = x.s;
if (!yIsInt) {
if (sign < 0) throw Error(decimalError + "NaN");
} else if ((k = yn < 0 ? -yn : yn) <= MAX_SAFE_INTEGER) {
r = new Ctor(ONE);
e = Math.ceil(pr / LOG_BASE + 4);
external = false;
for (;;) {
if (k % 2) {
r = r.times(x);
truncate(r.d, e);
}
k = mathfloor(k / 2);
if (k === 0) break;
x = x.times(x);
truncate(x.d, e);
}
external = true;
return y.s < 0 ? new Ctor(ONE).div(r) : round(r, pr);
}
sign = sign < 0 && y.d[Math.max(e, k)] & 1 ? -1 : 1;
x.s = 1;
external = false;
r = y.times(ln(x, pr + guard));
external = true;
r = exp(r);
r.s = sign;
return r;
};
P.toPrecision = function(sd, rm) {
var e, str, x = this, Ctor = x.constructor;
if (sd === void 0) {
e = getBase10Exponent(x);
str = toString(x, e <= Ctor.toExpNeg || e >= Ctor.toExpPos);
} else {
checkInt32(sd, 1, MAX_DIGITS);
if (rm === void 0) rm = Ctor.rounding;
else checkInt32(rm, 0, 8);
x = round(new Ctor(x), sd, rm);
e = getBase10Exponent(x);
str = toString(x, sd <= e || e <= Ctor.toExpNeg, sd);
}
return str;
};
P.toSignificantDigits = P.tosd = function(sd, rm) {
var x = this, Ctor = x.constructor;
if (sd === void 0) {
sd = Ctor.precision;
rm = Ctor.rounding;
} else {
checkInt32(sd, 1, MAX_DIGITS);
if (rm === void 0) rm = Ctor.rounding;
else checkInt32(rm, 0, 8);
}
return round(new Ctor(x), sd, rm);
};
P.toString = P.valueOf = P.val = P.toJSON = function() {
var x = this, e = getBase10Exponent(x), Ctor = x.constructor;
return toString(x, e <= Ctor.toExpNeg || e >= Ctor.toExpPos);
};
function add(x, y) {
var carry, d, e, i, k, len, xd, yd, Ctor = x.constructor, pr = Ctor.precision;
if (!x.s || !y.s) {
if (!y.s) y = new Ctor(x);
return external ? round(y, pr) : y;
}
xd = x.d;
yd = y.d;
k = x.e;
e = y.e;
xd = xd.slice();
i = k - e;
if (i) {
if (i < 0) {
d = xd;
i = -i;
len = yd.length;
} else {
d = yd;
e = k;
len = xd.length;
}
k = Math.ceil(pr / LOG_BASE);
len = k > len ? k + 1 : len + 1;
if (i > len) {
i = len;
d.length = 1;
}
d.reverse();
for (; i--;) d.push(0);
d.reverse();
}
len = xd.length;
i = yd.length;
if (len - i < 0) {
i = len;
d = yd;
yd = xd;
xd = d;
}
for (carry = 0; i;) {
carry = (xd[--i] = xd[i] + yd[i] + carry) / BASE | 0;
xd[i] %= BASE;
}
if (carry) {
xd.unshift(carry);
++e;
}
for (len = xd.length; xd[--len] == 0;) xd.pop();
y.d = xd;
y.e = e;
return external ? round(y, pr) : y;
}
function checkInt32(i, min, max) {
if (i !== ~~i || i < min || i > max) throw Error(invalidArgument + i);
}
function digitsToString(d) {
var i, k, ws, indexOfLastWord = d.length - 1, str = "", w = d[0];
if (indexOfLastWord > 0) {
str += w;
for (i = 1; i < indexOfLastWord; i++) {
ws = d[i] + "";
k = LOG_BASE - ws.length;
if (k) str += getZeroString(k);
str += ws;
}
w = d[i];
ws = w + "";
k = LOG_BASE - ws.length;
if (k) str += getZeroString(k);
} else if (w === 0) return "0";
for (; w % 10 === 0;) w /= 10;
return str + w;
}
var divide = (function() {
function multiplyInteger(x, k) {
var temp, carry = 0, i = x.length;
for (x = x.slice(); i--;) {
temp = x[i] * k + carry;
x[i] = temp % BASE | 0;
carry = temp / BASE | 0;
}
if (carry) x.unshift(carry);
return x;
}
function compare(a, b, aL, bL) {
var i, r;
if (aL != bL) r = aL > bL ? 1 : -1;
else for (i = r = 0; i < aL; i++) if (a[i] != b[i]) {
r = a[i] > b[i] ? 1 : -1;
break;
}
return r;
}
function subtract(a, b, aL) {
var i = 0;
for (; aL--;) {
a[aL] -= i;
i = a[aL] < b[aL] ? 1 : 0;
a[aL] = i * BASE + a[aL] - b[aL];
}
for (; !a[0] && a.length > 1;) a.shift();
}
return function(x, y, pr, dp) {
var cmp, e, i, k, prod, prodL, q, qd, rem, remL, rem0, sd, t, xi, xL, yd0, yL, yz, Ctor = x.constructor, sign = x.s == y.s ? 1 : -1, xd = x.d, yd = y.d;
if (!x.s) return new Ctor(x);
if (!y.s) throw Error(decimalError + "Division by zero");
e = x.e - y.e;
yL = yd.length;
xL = xd.length;
q = new Ctor(sign);
qd = q.d = [];
for (i = 0; yd[i] == (xd[i] || 0);) ++i;
if (yd[i] > (xd[i] || 0)) --e;
if (pr == null) sd = pr = Ctor.precision;
else if (dp) sd = pr + (getBase10Exponent(x) - getBase10Exponent(y)) + 1;
else sd = pr;
if (sd < 0) return new Ctor(0);
sd = sd / LOG_BASE + 2 | 0;
i = 0;
if (yL == 1) {
k = 0;
yd = yd[0];
sd++;
for (; (i < xL || k) && sd--; i++) {
t = k * BASE + (xd[i] || 0);
qd[i] = t / yd | 0;
k = t % yd | 0;
}
} else {
k = BASE / (yd[0] + 1) | 0;
if (k > 1) {
yd = multiplyInteger(yd, k);
xd = multiplyInteger(xd, k);
yL = yd.length;
xL = xd.length;
}
xi = yL;
rem = xd.slice(0, yL);
remL = rem.length;
for (; remL < yL;) rem[remL++] = 0;
yz = yd.slice();
yz.unshift(0);
yd0 = yd[0];
if (yd[1] >= BASE / 2) ++yd0;
do {
k = 0;
cmp = compare(yd, rem, yL, remL);
if (cmp < 0) {
rem0 = rem[0];
if (yL != remL) rem0 = rem0 * BASE + (rem[1] || 0);
k = rem0 / yd0 | 0;
if (k > 1) {
if (k >= BASE) k = BASE - 1;
prod = multiplyInteger(yd, k);
prodL = prod.length;
remL = rem.length;
cmp = compare(prod, rem, prodL, remL);
if (cmp == 1) {
k--;
subtract(prod, yL < prodL ? yz : yd, prodL);
}
} else {
if (k == 0) cmp = k = 1;
prod = yd.slice();
}
prodL = prod.length;
if (prodL < remL) prod.unshift(0);
subtract(rem, prod, remL);
if (cmp == -1) {
remL = rem.length;
cmp = compare(yd, rem, yL, remL);
if (cmp < 1) {
k++;
subtract(rem, yL < remL ? yz : yd, remL);
}
}
remL = rem.length;
} else if (cmp === 0) {
k++;
rem = [0];
}
qd[i++] = k;
if (cmp && rem[0]) rem[remL++] = xd[xi] || 0;
else {
rem = [xd[xi]];
remL = 1;
}
} while ((xi++ < xL || rem[0] !== void 0) && sd--);
}
if (!qd[0]) qd.shift();
q.e = e;
return round(q, dp ? pr + getBase10Exponent(q) + 1 : pr);
};
})();
function exp(x, sd) {
var denominator, guard, pow, sum, t, wpr, i = 0, k = 0, Ctor = x.constructor, pr = Ctor.precision;
if (getBase10Exponent(x) > 16) throw Error(exponentOutOfRange + getBase10Exponent(x));
if (!x.s) return new Ctor(ONE);
if (sd == null) {
external = false;
wpr = pr;
} else wpr = sd;
t = new Ctor(.03125);
while (x.abs().gte(.1)) {
x = x.times(t);
k += 5;
}
guard = Math.log(mathpow(2, k)) / Math.LN10 * 2 + 5 | 0;
wpr += guard;
denominator = pow = sum = new Ctor(ONE);
Ctor.precision = wpr;
for (;;) {
pow = round(pow.times(x), wpr);
denominator = denominator.times(++i);
t = sum.plus(divide(pow, denominator, wpr));
if (digitsToString(t.d).slice(0, wpr) === digitsToString(sum.d).slice(0, wpr)) {
while (k--) sum = round(sum.times(sum), wpr);
Ctor.precision = pr;
return sd == null ? (external = true, round(sum, pr)) : sum;
}
sum = t;
}
}
function getBase10Exponent(x) {
var e = x.e * LOG_BASE, w = x.d[0];
for (; w >= 10; w /= 10) e++;
return e;
}
function getLn10(Ctor, sd, pr) {
if (sd > Ctor.LN10.sd()) {
external = true;
if (pr) Ctor.precision = pr;
throw Error(decimalError + "LN10 precision limit exceeded");
}
return round(new Ctor(Ctor.LN10), sd);
}
function getZeroString(k) {
var zs = "";
for (; k--;) zs += "0";
return zs;
}
function ln(y, sd) {
var c, c0, denominator, e, numerator, sum, t, wpr, x2, n = 1, guard = 10, x = y, xd = x.d, Ctor = x.constructor, pr = Ctor.precision;
if (x.s < 1) throw Error(decimalError + (x.s ? "NaN" : "-Infinity"));
if (x.eq(ONE)) return new Ctor(0);
if (sd == null) {
external = false;
wpr = pr;
} else wpr = sd;
if (x.eq(10)) {
if (sd == null) external = true;
return getLn10(Ctor, wpr);
}
wpr += guard;
Ctor.precision = wpr;
c = digitsToString(xd);
c0 = c.charAt(0);
e = getBase10Exponent(x);
if (Math.abs(e) < 0x5543df729c000) {
while (c0 < 7 && c0 != 1 || c0 == 1 && c.charAt(1) > 3) {
x = x.times(y);
c = digitsToString(x.d);
c0 = c.charAt(0);
n++;
}
e = getBase10Exponent(x);
if (c0 > 1) {
x = new Ctor("0." + c);
e++;
} else x = new Ctor(c0 + "." + c.slice(1));
} else {
t = getLn10(Ctor, wpr + 2, pr).times(e + "");
x = ln(new Ctor(c0 + "." + c.slice(1)), wpr - guard).plus(t);
Ctor.precision = pr;
return sd == null ? (external = true, round(x, pr)) : x;
}
sum = numerator = x = divide(x.minus(ONE), x.plus(ONE), wpr);
x2 = round(x.times(x), wpr);
denominator = 3;
for (;;) {
numerator = round(numerator.times(x2), wpr);
t = sum.plus(divide(numerator, new Ctor(denominator), wpr));
if (digitsToString(t.d).slice(0, wpr) === digitsToString(sum.d).slice(0, wpr)) {
sum = sum.times(2);
if (e !== 0) sum = sum.plus(getLn10(Ctor, wpr + 2, pr).times(e + ""));
sum = divide(sum, new Ctor(n), wpr);
Ctor.precision = pr;
return sd == null ? (external = true, round(sum, pr)) : sum;
}
sum = t;
denominator += 2;
}
}
function parseDecimal(x, str) {
var e, i, len;
if ((e = str.indexOf(".")) > -1) str = str.replace(".", "");
if ((i = str.search(/e/i)) > 0) {
if (e < 0) e = i;
e += +str.slice(i + 1);
str = str.substring(0, i);
} else if (e < 0) e = str.length;
for (i = 0; str.charCodeAt(i) === 48;) ++i;
for (len = str.length; str.charCodeAt(len - 1) === 48;) --len;
str = str.slice(i, len);
if (str) {
len -= i;
e = e - i - 1;
x.e = mathfloor(e / LOG_BASE);
x.d = [];
i = (e + 1) % LOG_BASE;
if (e < 0) i += LOG_BASE;
if (i < len) {
if (i) x.d.push(+str.slice(0, i));
for (len -= LOG_BASE; i < len;) x.d.push(+str.slice(i, i += LOG_BASE));
str = str.slice(i);
i = LOG_BASE - str.length;
} else i -= len;
for (; i--;) str += "0";
x.d.push(+str);
if (external && (x.e > MAX_E || x.e < -MAX_E)) throw Error(exponentOutOfRange + e);
} else {
x.s = 0;
x.e = 0;
x.d = [0];
}
return x;
}
function round(x, sd, rm) {
var i, j, k, n, rd, doRound, w, xdi, xd = x.d;
for (n = 1, k = xd[0]; k >= 10; k /= 10) n++;
i = sd - n;
if (i < 0) {
i += LOG_BASE;
j = sd;
w = xd[xdi = 0];
} else {
xdi = Math.ceil((i + 1) / LOG_BASE);
k = xd.length;
if (xdi >= k) return x;
w = k = xd[xdi];
for (n = 1; k >= 10; k /= 10) n++;
i %= LOG_BASE;
j = i - LOG_BASE + n;
}
if (rm !== void 0) {
k = mathpow(10, n - j - 1);
rd = w / k % 10 | 0;
doRound = sd < 0 || xd[xdi + 1] !== void 0 || w % k;
doRound = rm < 4 ? (rd || doRound) && (rm == 0 || rm == (x.s < 0 ? 3 : 2)) : rd > 5 || rd == 5 && (rm == 4 || doRound || rm == 6 && (i > 0 ? j > 0 ? w / mathpow(10, n - j) : 0 : xd[xdi - 1]) % 10 & 1 || rm == (x.s < 0 ? 8 : 7));
}
if (sd < 1 || !xd[0]) {
if (doRound) {
k = getBase10Exponent(x);
xd.length = 1;
sd = sd - k - 1;
xd[0] = mathpow(10, (LOG_BASE - sd % LOG_BASE) % LOG_BASE);
x.e = mathfloor(-sd / LOG_BASE) || 0;
} else {
xd.length = 1;
xd[0] = x.e = x.s = 0;
}
return x;
}
if (i == 0) {
xd.length = xdi;
k = 1;
xdi--;
} else {
xd.length = xdi + 1;
k = mathpow(10, LOG_BASE - i);
xd[xdi] = j > 0 ? (w / mathpow(10, n - j) % mathpow(10, j) | 0) * k : 0;
}
if (doRound) for (;;) if (xdi == 0) {
if ((xd[0] += k) == BASE) {
xd[0] = 1;
++x.e;
}
break;
} else {
xd[xdi] += k;
if (xd[xdi] != BASE) break;
xd[xdi--] = 0;
k = 1;
}
for (i = xd.length; xd[--i] === 0;) xd.pop();
if (external && (x.e > MAX_E || x.e < -MAX_E)) throw Error(exponentOutOfRange + getBase10Exponent(x));
return x;
}
function subtract(x, y) {
var d, e, i, j, k, len, xd, xe, xLTy, yd, Ctor = x.constructor, pr = Ctor.precision;
if (!x.s || !y.s) {
if (y.s) y.s = -y.s;
else y = new Ctor(x);
return external ? round(y, pr) : y;
}
xd = x.d;
yd = y.d;
e = y.e;
xe = x.e;
xd = xd.slice();
k = xe - e;
if (k) {
xLTy = k < 0;
if (xLTy) {
d = xd;
k = -k;
len = yd.length;
} else {
d = yd;
e = xe;
len = xd.length;
}
i = Math.max(Math.ceil(pr / LOG_BASE), len) + 2;
if (k > i) {
k = i;
d.length = 1;
}
d.reverse();
for (i = k; i--;) d.push(0);
d.reverse();
} else {
i = xd.length;
len = yd.length;
xLTy = i < len;
if (xLTy) len = i;
for (i = 0; i < len; i++) if (xd[i] != yd[i]) {
xLTy = xd[i] < yd[i];
break;
}
k = 0;
}
if (xLTy) {
d = xd;
xd = yd;
yd = d;
y.s = -y.s;
}
len = xd.length;
for (i = yd.length - len; i > 0; --i) xd[len++] = 0;
for (i = yd.length; i > k;) {
if (xd[--i] < yd[i]) {
for (j = i; j && xd[--j] === 0;) xd[j] = BASE - 1;
--xd[j];
xd[i] += BASE;
}
xd[i] -= yd[i];
}
for (; xd[--len] === 0;) xd.pop();
for (; xd[0] === 0; xd.shift()) --e;
if (!xd[0]) return new Ctor(0);
y.d = xd;
y.e = e;
return external ? round(y, pr) : y;
}
function toString(x, isExp, sd) {
var k, e = getBase10Exponent(x), str = digitsToString(x.d), len = str.length;
if (isExp) {
if (sd && (k = sd - len) > 0) str = str.charAt(0) + "." + str.slice(1) + getZeroString(k);
else if (len > 1) str = str.charAt(0) + "." + str.slice(1);
str = str + (e < 0 ? "e" : "e+") + e;
} else if (e < 0) {
str = "0." + getZeroString(-e - 1) + str;
if (sd && (k = sd - len) > 0) str += getZeroString(k);
} else if (e >= len) {
str += getZeroString(e + 1 - len);
if (sd && (k = sd - e - 1) > 0) str = str + "." + getZeroString(k);
} else {
if ((k = e + 1) < len) str = str.slice(0, k) + "." + str.slice(k);
if (sd && (k = sd - len) > 0) {
if (e + 1 === len) str += ".";
str += getZeroString(k);
}
}
return x.s < 0 ? "-" + str : str;
}
function truncate(arr, len) {
if (arr.length > len) {
arr.length = len;
return true;
}
}
function clone(obj) {
var i, p, ps;
function Decimal(value) {
var x = this;
if (!(x instanceof Decimal)) return new Decimal(value);
x.constructor = Decimal;
if (value instanceof Decimal) {
x.s = value.s;
x.e = value.e;
x.d = (value = value.d) ? value.slice() : value;
return;
}
if (typeof value === "number") {
if (value * 0 !== 0) throw Error(invalidArgument + value);
if (value > 0) x.s = 1;
else if (value < 0) {
value = -value;
x.s = -1;
} else {
x.s = 0;
x.e = 0;
x.d = [0];
return;
}
if (value === ~~value && value < 1e7) {
x.e = 0;
x.d = [value];
return;
}
return parseDecimal(x, value.toString());
} else if (typeof value !== "string") throw Error(invalidArgument + value);
if (value.charCodeAt(0) === 45) {
value = value.slice(1);
x.s = -1;
} else x.s = 1;
if (isDecimal.test(value)) parseDecimal(x, value);
else throw Error(invalidArgument + value);
}
Decimal.prototype = P;
Decimal.ROUND_UP = 0;
Decimal.ROUND_DOWN = 1;
Decimal.ROUND_CEIL = 2;
Decimal.ROUND_FLOOR = 3;
Decimal.ROUND_HALF_UP = 4;
Decimal.ROUND_HALF_DOWN = 5;
Decimal.ROUND_HALF_EVEN = 6;
Decimal.ROUND_HALF_CEIL = 7;
Decimal.ROUND_HALF_FLOOR = 8;
Decimal.clone = clone;
Decimal.config = Decimal.set = config;
if (obj === void 0) obj = {};
if (obj) {
ps = [
"precision",
"rounding",
"toExpNeg",
"toExpPos",
"LN10"
];
for (i = 0; i < ps.length;) if (!obj.hasOwnProperty(p = ps[i++])) obj[p] = this[p];
}
Decimal.config(obj);
return Decimal;
}
function config(obj) {
if (!obj || typeof obj !== "object") throw Error(decimalError + "Object expected");
var i, p, v, ps = [
"precision",
1,
MAX_DIGITS,
"rounding",
0,
8,
"toExpNeg",
-Infinity,
0,
"toExpPos",
0,
Infinity
];
for (i = 0; i < ps.length; i += 3) if ((v = obj[p = ps[i]]) !== void 0) if (mathfloor(v) === v && v >= ps[i + 1] && v <= ps[i + 2]) this[p] = v;
else throw Error(invalidArgument + p + ": " + v);
if ((v = obj[p = "LN10"]) !== void 0) if (v == Math.LN10) this[p] = new this(v);
else throw Error(invalidArgument + p + ": " + v);
return this;
}
Decimal = clone(Decimal);
Decimal["default"] = Decimal.Decimal = Decimal;
ONE = new Decimal(1);
if (typeof define == "function" && define.amd) define(function() {
return Decimal;
});
else if (typeof module != "undefined" && module.exports) module.exports = Decimal;
else {
if (!globalScope) globalScope = typeof self != "undefined" && self && self.self == self ? self : Function("return this")();
globalScope.Decimal = Decimal;
}
})(exports);
})))());
/**
* Get the digit count of a number.
* If the absolute value is in the interval [0.1, 1), the result is 0.
* If the absolute value is in the interval [0.01, 0.1), the digit count is -1.
* If the absolute value is in the interval [0.001, 0.01), the digit count is -2.
*
* @param {Number} value The number
* @return {Integer} Digit count
*/
function getDigitCount(value) {
var result;
if (value === 0) result = 1;
else result = Math.floor(new import_decimal.default(value).abs().log(10).toNumber()) + 1;
return result;
}
/**
* Get the data in the interval [start, end) with a fixed step.
* Also handles JS calculation precision issues.
*
* @param {Decimal} start Start point
* @param {Decimal} end End point, not included
* @param {Decimal} step Step size
* @return {Array} Array of numbers
*/
function rangeStep(start, end, step) {
var num = new import_decimal.default(start);
var i = 0;
var result = [];
while (num.lt(end) && i < 1e5) {
result.push(num.toNumber());
num = num.add(step);
i++;
}
return result;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/scale/getNiceTickValues.js
/**
* @fileOverview calculate tick values of scale
* @author xile611, arcthur
* @date 2015-09-17
*/
/**
* Calculate a interval of a minimum value and a maximum value
*
* @param {Number} min The minimum value
* @param {Number} max The maximum value
* @return {Array} An interval
*/
var getValidInterval = (_ref) => {
var [min, max] = _ref;
var [validMin, validMax] = [min, max];
if (min > max) [validMin, validMax] = [max, min];
return [validMin, validMax];
};
/**
* Calculate the step which is easy to understand between ticks, like 10, 20, 25
*
* @param roughStep The rough step calculated by dividing the difference by the tickCount
* @param allowDecimals Allow the ticks to be decimals or not
* @param correctionFactor A correction factor
* @return The step which is easy to understand between two ticks
*/
var getAdaptiveStep = (roughStep, allowDecimals, correctionFactor) => {
if (roughStep.lte(0)) return new import_decimal.default(0);
var digitCount = getDigitCount(roughStep.toNumber());
var digitCountValue = new import_decimal.default(10).pow(digitCount);
var stepRatio = roughStep.div(digitCountValue);
var stepRatioScale = digitCount !== 1 ? .05 : .1;
var formatStep = new import_decimal.default(Math.ceil(stepRatio.div(stepRatioScale).toNumber())).add(correctionFactor).mul(stepRatioScale).mul(digitCountValue);
return allowDecimals ? new import_decimal.default(formatStep.toNumber()) : new import_decimal.default(Math.ceil(formatStep.toNumber()));
};
/**
* The snap125 step algorithm snaps to nice numbers (1, 2, 2.5, 5) at each
* order of magnitude, producing human-friendly tick intervals like
* 0, 5, 10, 15, 20 instead of 0, 4, 8, 12, 16.
*
* This is opt-in and can be enabled via the `niceTicks` prop on axis components.
*
* @param roughStep The rough step calculated by dividing the difference by the tickCount
* @param allowDecimals Allow the ticks to be decimals or not
* @param correctionFactor A correction factor
* @return The step which is easy to understand between two ticks
*/
var getSnap125Step = (roughStep, allowDecimals, correctionFactor) => {
var _NICE_STEPS$niceIdx;
if (roughStep.lte(0)) return new import_decimal.default(0);
var NICE_STEPS = [
1,
2,
2.5,
5
];
var roughNum = roughStep.toNumber();
var exponent = Math.floor(new import_decimal.default(roughNum).abs().log(10).toNumber());
var magnitude = new import_decimal.default(10).pow(exponent);
var normalized = roughStep.div(magnitude).toNumber();
var niceIdx = NICE_STEPS.findIndex((s) => s >= normalized - 1e-10);
if (niceIdx === -1) {
magnitude = magnitude.mul(10);
niceIdx = 0;
}
niceIdx += correctionFactor;
if (niceIdx >= NICE_STEPS.length) {
var extraMag = Math.floor(niceIdx / NICE_STEPS.length);
niceIdx %= NICE_STEPS.length;
magnitude = magnitude.mul(new import_decimal.default(10).pow(extraMag));
}
var formatStep = new import_decimal.default((_NICE_STEPS$niceIdx = NICE_STEPS[niceIdx]) !== null && _NICE_STEPS$niceIdx !== void 0 ? _NICE_STEPS$niceIdx : 1).mul(magnitude);
return allowDecimals ? formatStep : new import_decimal.default(Math.ceil(formatStep.toNumber()));
};
/**
* calculate the ticks when the minimum value equals to the maximum value
*
* @param value The minimum value which is also the maximum value
* @param tickCount The count of ticks
* @param allowDecimals Allow the ticks to be decimals or not
* @return array of ticks
*/
var getTickOfSingleValue = (value, tickCount, allowDecimals) => {
var step = new import_decimal.default(1);
var middle = new import_decimal.default(value);
if (!middle.isint() && allowDecimals) {
var absVal = Math.abs(value);
if (absVal < 1) {
step = new import_decimal.default(10).pow(getDigitCount(value) - 1);
middle = new import_decimal.default(Math.floor(middle.div(step).toNumber())).mul(step);
} else if (absVal > 1) middle = new import_decimal.default(Math.floor(value));
} else if (value === 0) middle = new import_decimal.default(Math.floor((tickCount - 1) / 2));
else if (!allowDecimals) middle = new import_decimal.default(Math.floor(value));
var middleIndex = Math.floor((tickCount - 1) / 2);
var ticks = [];
for (var i = 0; i < tickCount; i++) ticks.push(middle.add(new import_decimal.default(i - middleIndex).mul(step)).toNumber());
return ticks;
};
/**
* Calculate the step
*
* @param min The minimum value of an interval
* @param max The maximum value of an interval
* @param tickCount The count of ticks
* @param allowDecimals Allow the ticks to be decimals or not
* @param correctionFactor A correction factor
* @return The step, minimum value of ticks, maximum value of ticks
*/
var _calculateStep = function calculateStep(min, max, tickCount, allowDecimals) {
var correctionFactor = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : 0;
var stepFn = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : getAdaptiveStep;
if (!Number.isFinite((max - min) / (tickCount - 1))) return {
step: new import_decimal.default(0),
tickMin: new import_decimal.default(0),
tickMax: new import_decimal.default(0)
};
var step = stepFn(new import_decimal.default(max).sub(min).div(tickCount - 1), allowDecimals, correctionFactor);
var middle;
if (min <= 0 && max >= 0) middle = new import_decimal.default(0);
else {
middle = new import_decimal.default(min).add(max).div(2);
middle = middle.sub(new import_decimal.default(middle).mod(step));
}
var belowCount = Math.ceil(middle.sub(min).div(step).toNumber());
var upCount = Math.ceil(new import_decimal.default(max).sub(middle).div(step).toNumber());
var scaleCount = belowCount + upCount + 1;
if (scaleCount > tickCount) return _calculateStep(min, max, tickCount, allowDecimals, correctionFactor + 1, stepFn);
if (scaleCount < tickCount) {
upCount = max > 0 ? upCount + (tickCount - scaleCount) : upCount;
belowCount = max > 0 ? belowCount : belowCount + (tickCount - scaleCount);
}
return {
step,
tickMin: middle.sub(new import_decimal.default(belowCount).mul(step)),
tickMax: middle.add(new import_decimal.default(upCount).mul(step))
};
};
var getNiceTickValues = function getNiceTickValues(_ref2) {
var [min, max] = _ref2;
var tickCount = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 6;
var allowDecimals = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : true;
var niceTicksMode = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "auto";
var count = Math.max(tickCount, 2);
var [cormin, cormax] = getValidInterval([min, max]);
if (cormin === -Infinity || cormax === Infinity) {
var _values = cormax === Infinity ? [cormin, ...Array(tickCount - 1).fill(Infinity)] : [...Array(tickCount - 1).fill(-Infinity), cormax];
return min > max ? _values.reverse() : _values;
}
if (cormin === cormax) return getTickOfSingleValue(cormin, tickCount, allowDecimals);
var { step, tickMin, tickMax } = _calculateStep(cormin, cormax, count, allowDecimals, 0, niceTicksMode === "snap125" ? getSnap125Step : getAdaptiveStep);
var values = rangeStep(tickMin, tickMax.add(new import_decimal.default(.1).mul(step)), step);
return min > max ? values.reverse() : values;
};
/**
* Calculate the ticks of an interval.
* Ticks will be constrained to the interval [min, max] even if it makes them less rounded and nice.
*
* @param tuple of [min,max] min: The minimum value, max: The maximum value
* @param tickCount The count of ticks. This function may return less than tickCount ticks if the interval is too small.
* @param allowDecimals Allow the ticks to be decimals or not
* @param niceTicksMode The algorithm to use for calculating nice ticks. See {@link NiceTicksAlgorithm}.
* @return array of ticks
*/
var getTickValuesFixedDomain = function getTickValuesFixedDomain(_ref3, tickCount) {
var [min, max] = _ref3;
var allowDecimals = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : true;
var niceTicksMode = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "auto";
var [cormin, cormax] = getValidInterval([min, max]);
if (cormin === -Infinity || cormax === Infinity) return [min, max];
if (cormin === cormax) return [cormin];
var stepFn = niceTicksMode === "snap125" ? getSnap125Step : getAdaptiveStep;
var count = Math.max(tickCount, 2);
var step = stepFn(new import_decimal.default(cormax).sub(cormin).div(count - 1), allowDecimals, 0);
var values = [...rangeStep(new import_decimal.default(cormin), new import_decimal.default(cormax), step), cormax];
if (allowDecimals === false) values = values.map((value) => Math.round(value));
return min > max ? values.reverse() : values;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/rootPropsSelectors.js
var selectRootMaxBarSize = (state) => state.rootProps.maxBarSize;
var selectBarGap = (state) => state.rootProps.barGap;
var selectBarCategoryGap = (state) => state.rootProps.barCategoryGap;
var selectRootBarSize = (state) => state.rootProps.barSize;
var selectStackOffsetType = (state) => state.rootProps.stackOffset;
var selectReverseStackOrder = (state) => state.rootProps.reverseStackOrder;
var selectChartName = (state) => state.options.chartName;
var selectSyncId = (state) => state.rootProps.syncId;
var selectSyncMethod = (state) => state.rootProps.syncMethod;
var selectEventEmitter = (state) => state.options.eventEmitter;
var selectChartBaseValue = (state) => state.rootProps.baseValue;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/zIndex/DefaultZIndexes.js
/**
* A collection of all default zIndex values used by Recharts.
*
* You can reuse these, or you can define your own.
*/
var DefaultZIndexes = {
grid: -100,
barBackground: -50,
area: 100,
cursorRectangle: 200,
bar: 300,
line: 400,
axis: 500,
scatter: 600,
activeBar: 1e3,
cursorLine: 1100,
activeDot: 1200,
label: 2e3
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/defaultPolarAngleAxisProps.js
var defaultPolarAngleAxisProps = {
allowDecimals: false,
allowDuplicatedCategory: true,
allowDataOverflow: false,
angle: 0,
angleAxisId: 0,
axisLine: true,
axisLineType: "polygon",
cx: 0,
cy: 0,
hide: false,
includeHidden: false,
label: false,
niceTicks: "auto",
orientation: "outer",
reversed: false,
scale: "auto",
tick: true,
tickLine: true,
tickSize: 8,
type: "auto",
zIndex: DefaultZIndexes.axis
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/defaultPolarRadiusAxisProps.js
var defaultPolarRadiusAxisProps = {
allowDataOverflow: false,
allowDecimals: false,
allowDuplicatedCategory: true,
angle: 0,
axisLine: true,
includeHidden: false,
hide: false,
niceTicks: "auto",
label: false,
orientation: "right",
radiusAxisId: 0,
reversed: false,
scale: "auto",
stroke: "#ccc",
tick: true,
tickCount: 5,
tickLine: true,
type: "auto",
zIndex: DefaultZIndexes.axis
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineAxisRangeWithReverse.js
var combineAxisRangeWithReverse = (axisSettings, axisRange) => {
if (!axisSettings || !axisRange) return;
if (axisSettings !== null && axisSettings !== void 0 && axisSettings.reversed) return [axisRange[1], axisRange[0]];
return axisRange;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getAxisTypeBasedOnLayout.js
/**
* This function evaluates the "auto" axis domain type based on the chart layout and axis type.
* It outputs a definitive axis domain type that can be used for further processing.
*/
function getAxisTypeBasedOnLayout(layout, axisType, axisDomainType) {
if (axisDomainType !== "auto") return axisDomainType;
if (layout == null) return;
return isCategoricalAxis(layout, axisType) ? "category" : "number";
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/polarAxisSelectors.js
function ownKeys$55(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$55(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$55(Object(t), !0).forEach(function(r) {
_defineProperty$57(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$55(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$57(e, r, t) {
return (r = _toPropertyKey$57(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$57(t) {
var i = _toPrimitive$57(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$57(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var implicitAngleAxis = {
allowDataOverflow: defaultPolarAngleAxisProps.allowDataOverflow,
allowDecimals: defaultPolarAngleAxisProps.allowDecimals,
allowDuplicatedCategory: false,
dataKey: void 0,
domain: void 0,
id: defaultPolarAngleAxisProps.angleAxisId,
includeHidden: false,
name: void 0,
reversed: defaultPolarAngleAxisProps.reversed,
scale: defaultPolarAngleAxisProps.scale,
tick: defaultPolarAngleAxisProps.tick,
tickCount: void 0,
ticks: void 0,
type: defaultPolarAngleAxisProps.type,
unit: void 0,
niceTicks: "auto"
};
var implicitRadiusAxis = {
allowDataOverflow: defaultPolarRadiusAxisProps.allowDataOverflow,
allowDecimals: defaultPolarRadiusAxisProps.allowDecimals,
allowDuplicatedCategory: defaultPolarRadiusAxisProps.allowDuplicatedCategory,
dataKey: void 0,
domain: void 0,
id: defaultPolarRadiusAxisProps.radiusAxisId,
includeHidden: defaultPolarRadiusAxisProps.includeHidden,
name: void 0,
reversed: defaultPolarRadiusAxisProps.reversed,
scale: defaultPolarRadiusAxisProps.scale,
tick: defaultPolarRadiusAxisProps.tick,
tickCount: defaultPolarRadiusAxisProps.tickCount,
ticks: void 0,
type: defaultPolarRadiusAxisProps.type,
unit: void 0,
niceTicks: "auto"
};
var selectAngleAxisNoDefaults = (state, angleAxisId) => {
if (angleAxisId == null) return;
return state.polarAxis.angleAxis[angleAxisId];
};
var selectAngleAxis = createSelector([selectAngleAxisNoDefaults, selectPolarChartLayout], (angleAxisSettings, layout) => {
var _getAxisTypeBasedOnLa;
if (angleAxisSettings != null) return angleAxisSettings;
var evaluatedType = (_getAxisTypeBasedOnLa = getAxisTypeBasedOnLayout(layout, "angleAxis", implicitAngleAxis.type)) !== null && _getAxisTypeBasedOnLa !== void 0 ? _getAxisTypeBasedOnLa : "category";
return _objectSpread$55(_objectSpread$55({}, implicitAngleAxis), {}, { type: evaluatedType });
});
var selectRadiusAxisNoDefaults = (state, radiusAxisId) => {
return state.polarAxis.radiusAxis[radiusAxisId];
};
var selectRadiusAxis = createSelector([selectRadiusAxisNoDefaults, selectPolarChartLayout], (radiusAxisSettings, layout) => {
var _getAxisTypeBasedOnLa2;
if (radiusAxisSettings != null) return radiusAxisSettings;
var evaluatedType = (_getAxisTypeBasedOnLa2 = getAxisTypeBasedOnLayout(layout, "radiusAxis", implicitRadiusAxis.type)) !== null && _getAxisTypeBasedOnLa2 !== void 0 ? _getAxisTypeBasedOnLa2 : "category";
return _objectSpread$55(_objectSpread$55({}, implicitRadiusAxis), {}, { type: evaluatedType });
});
var selectPolarOptions = (state) => state.polarOptions;
var selectMaxRadius = createSelector([
selectChartWidth,
selectChartHeight,
selectChartOffsetInternal
], getMaxRadius);
var selectInnerRadius = createSelector([selectPolarOptions, selectMaxRadius], (polarChartOptions, maxRadius) => {
if (polarChartOptions == null) return;
return getPercentValue(polarChartOptions.innerRadius, maxRadius, 0);
});
var selectOuterRadius = createSelector([selectPolarOptions, selectMaxRadius], (polarChartOptions, maxRadius) => {
if (polarChartOptions == null) return;
return getPercentValue(polarChartOptions.outerRadius, maxRadius, maxRadius * .8);
});
var combineAngleAxisRange = (polarOptions) => {
if (polarOptions == null) return [0, 0];
var { startAngle, endAngle } = polarOptions;
return [startAngle, endAngle];
};
var selectAngleAxisRange = createSelector([selectPolarOptions], combineAngleAxisRange);
var selectAngleAxisRangeWithReversed = createSelector([selectAngleAxis, selectAngleAxisRange], combineAxisRangeWithReverse);
var selectRadiusAxisRange = createSelector([
selectMaxRadius,
selectInnerRadius,
selectOuterRadius
], (maxRadius, innerRadius, outerRadius) => {
if (maxRadius == null || innerRadius == null || outerRadius == null) return;
return [innerRadius, outerRadius];
});
var selectRadiusAxisRangeWithReversed = createSelector([selectRadiusAxis, selectRadiusAxisRange], combineAxisRangeWithReverse);
var selectPolarViewBox = createSelector([
selectChartLayout,
selectPolarOptions,
selectInnerRadius,
selectOuterRadius,
selectChartWidth,
selectChartHeight
], (layout, polarOptions, innerRadius, outerRadius, width, height) => {
if (layout !== "centric" && layout !== "radial" || polarOptions == null || innerRadius == null || outerRadius == null) return;
var { cx, cy, startAngle, endAngle } = polarOptions;
return {
cx: getPercentValue(cx, width, width / 2),
cy: getPercentValue(cy, height, height / 2),
innerRadius,
outerRadius,
startAngle,
endAngle,
clockWise: false
};
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/pickAxisType.js
var pickAxisType = (_state, axisType) => axisType;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/pickAxisId.js
var pickAxisId = (_state, _axisType, axisId) => axisId;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/stacks/getStackSeriesIdentifier.js
/**
* Returns identifier for stack series which is one individual graphical item in the stack.
* @param graphicalItem - The graphical item representing the series in the stack.
* @return The identifier for the series in the stack
*/
function getStackSeriesIdentifier(graphicalItem) {
return graphicalItem === null || graphicalItem === void 0 ? void 0 : graphicalItem.id;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineDisplayedStackedData.js
/**
* In a stacked chart, each graphical item has its own data. That data could be either:
* - defined on the chart root, in which case the item gets a unique dataKey
* - or defined on the item itself, in which case multiple items can share the same dataKey
*
* That means we cannot use the dataKey as a unique identifier for the item.
*
* This type represents a single data point in a stacked chart, where each key is a series identifier
* and the value is the numeric value for that series using the numerical axis dataKey.
*/
function combineDisplayedStackedData(stackedGraphicalItems, _ref, tooltipAxisSettings) {
var { chartData = [] } = _ref;
var { allowDuplicatedCategory, dataKey: tooltipDataKey } = tooltipAxisSettings;
var knownItemsByDataKey = /* @__PURE__ */ new Map();
stackedGraphicalItems.forEach((item) => {
var _item$data;
var resolvedData = (_item$data = item.data) !== null && _item$data !== void 0 ? _item$data : chartData;
if (resolvedData == null || resolvedData.length === 0) return;
var stackIdentifier = getStackSeriesIdentifier(item);
resolvedData.forEach((entry, index) => {
var tooltipValue = tooltipDataKey == null || allowDuplicatedCategory ? index : String(getValueByDataKey(entry, tooltipDataKey, null));
var numericValue = getValueByDataKey(entry, item.dataKey, 0);
var curr;
if (knownItemsByDataKey.has(tooltipValue)) curr = knownItemsByDataKey.get(tooltipValue);
else curr = {};
Object.assign(curr, { [stackIdentifier]: numericValue });
knownItemsByDataKey.set(tooltipValue, curr);
});
});
return Array.from(knownItemsByDataKey.values());
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/types/StackedGraphicalItem.js
/**
* Some graphical items allow data stacking. The stacks are optional,
* so all props here are optional too.
*/
/**
* Some graphical items allow data stacking.
* This interface is used to represent the items that are stacked
* because the user has provided the stackId and dataKey properties.
*/
function isStacked(graphicalItem) {
return "stackId" in graphicalItem && graphicalItem.stackId != null && graphicalItem.dataKey != null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/numberDomainEqualityCheck.js
var numberDomainEqualityCheck = (a, b) => {
if (a === b) return true;
if (a == null || b == null) return false;
return a[0] === b[0] && a[1] === b[1];
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/arrayEqualityCheck.js
/**
* Checks if two arrays are equal, treating empty arrays as equal regardless of reference.
* If both arrays are non-empty, it checks for reference equality.
* @param a
* @param b
*/
function emptyArraysAreEqualCheck(a, b) {
if (Array.isArray(a) && Array.isArray(b) && a.length === 0 && b.length === 0) return true;
return a === b;
}
/**
* Checks if two arrays have the same contents in the same order.
* @param a
* @param b
*/
function arrayContentsAreEqualCheck(a, b) {
if (a.length === b.length) {
for (var i = 0; i < a.length; i++) if (a[i] !== b[i]) return false;
return true;
}
return false;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipAxisType.js
/**
* angle, radius, X, Y, and Z axes all have domain and range and scale and associated settings
*/
/**
* Z axis is never displayed and so it lacks ticks and tick settings.
*/
var selectTooltipAxisType = (state) => {
var layout = selectChartLayout(state);
if (layout === "horizontal") return "xAxis";
if (layout === "vertical") return "yAxis";
if (layout === "centric") return "angleAxis";
return "radiusAxis";
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipAxisId.js
var selectTooltipAxisId = (state) => state.tooltip.settings.axisId;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/scale/RechartsScale.js
/**
* This is internal representation of scale used in Recharts.
* Users will provide CustomScaleDefinition or a string, which we will parse into RechartsScale.
* Most importantly, RechartsScale is fully immutable - there are no setters that mutate the scale in place.
* This is important for React integration - if the scale changes, we want to trigger re-renders.
* Mutating the scale in place would not trigger re-renders, leading to stale UI.
*/
/**
* Position within a band for banded scales.
* In scales that are not banded, this parameter is ignored.
*
* @inline
*/
function rechartsScaleFactory(d3Scale) {
if (d3Scale == null) return;
var ticksFn = d3Scale.ticks;
var bandwidthFn = d3Scale.bandwidth;
var d3Range = d3Scale.range();
var range = [Math.min(...d3Range), Math.max(...d3Range)];
return {
domain: () => d3Scale.domain(),
range: function(_range) {
function range() {
return _range.apply(this, arguments);
}
range.toString = function() {
return _range.toString();
};
return range;
}(() => range),
rangeMin: () => range[0],
rangeMax: () => range[1],
isInRange(value) {
var first = range[0];
var last = range[1];
return first <= last ? value >= first && value <= last : value >= last && value <= first;
},
bandwidth: bandwidthFn ? () => bandwidthFn.call(d3Scale) : void 0,
ticks: ticksFn ? (count) => ticksFn.call(d3Scale, count) : void 0,
map: (input, options) => {
var baseValue = d3Scale(input);
if (baseValue == null) return;
if (d3Scale.bandwidth && options !== null && options !== void 0 && options.position) {
var bandWidth = d3Scale.bandwidth();
switch (options.position) {
case "middle":
baseValue += bandWidth / 2;
break;
case "end":
baseValue += bandWidth;
break;
default: break;
}
}
return baseValue;
}
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineCheckedDomain.js
/**
* This function validates and transforms the axis domain so that it is safe to use in the provided scale.
*/
var combineCheckedDomain = (realScaleType, axisDomain) => {
if (axisDomain == null) return;
switch (realScaleType) {
case "linear":
if (!isWellFormedNumberDomain(axisDomain)) {
var min, max;
for (var i = 0; i < axisDomain.length; i++) {
var value = axisDomain[i];
if (!isWellBehavedNumber(value)) continue;
if (min === void 0 || value < min) min = value;
if (max === void 0 || value > max) max = value;
}
if (min !== void 0 && max !== void 0) return [min, max];
return;
}
return axisDomain;
default: return axisDomain;
}
};
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/ascending.js
function ascending(a, b) {
return a == null || b == null ? NaN : a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/descending.js
function descending(a, b) {
return a == null || b == null ? NaN : b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/bisector.js
function bisector(f) {
let compare1, compare2, delta;
if (f.length !== 2) {
compare1 = ascending;
compare2 = (d, x) => ascending(f(d), x);
delta = (d, x) => f(d) - x;
} else {
compare1 = f === ascending || f === descending ? f : zero$1;
compare2 = f;
delta = f;
}
function left(a, x, lo = 0, hi = a.length) {
if (lo < hi) {
if (compare1(x, x) !== 0) return hi;
do {
const mid = lo + hi >>> 1;
if (compare2(a[mid], x) < 0) lo = mid + 1;
else hi = mid;
} while (lo < hi);
}
return lo;
}
function right(a, x, lo = 0, hi = a.length) {
if (lo < hi) {
if (compare1(x, x) !== 0) return hi;
do {
const mid = lo + hi >>> 1;
if (compare2(a[mid], x) <= 0) lo = mid + 1;
else hi = mid;
} while (lo < hi);
}
return lo;
}
function center(a, x, lo = 0, hi = a.length) {
const i = left(a, x, lo, hi - 1);
return i > lo && delta(a[i - 1], x) > -delta(a[i], x) ? i - 1 : i;
}
return {
left,
center,
right
};
}
function zero$1() {
return 0;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/number.js
function number$2(x) {
return x === null ? NaN : +x;
}
function* numbers(values, valueof) {
if (valueof === void 0) {
for (let value of values) if (value != null && (value = +value) >= value) yield value;
} else {
let index = -1;
for (let value of values) if ((value = valueof(value, ++index, values)) != null && (value = +value) >= value) yield value;
}
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/bisect.js
var ascendingBisect = bisector(ascending);
var bisectRight = ascendingBisect.right;
ascendingBisect.left;
bisector(number$2).center;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/internmap-npm-2.0.3-d74f5c9998-10c0.zip/node_modules/internmap/src/index.js
var InternMap = class extends Map {
constructor(entries, key = keyof) {
super();
Object.defineProperties(this, {
_intern: { value: /* @__PURE__ */ new Map() },
_key: { value: key }
});
if (entries != null) for (const [key, value] of entries) this.set(key, value);
}
get(key) {
return super.get(intern_get(this, key));
}
has(key) {
return super.has(intern_get(this, key));
}
set(key, value) {
return super.set(intern_set(this, key), value);
}
delete(key) {
return super.delete(intern_delete(this, key));
}
};
function intern_get({ _intern, _key }, value) {
const key = _key(value);
return _intern.has(key) ? _intern.get(key) : value;
}
function intern_set({ _intern, _key }, value) {
const key = _key(value);
if (_intern.has(key)) return _intern.get(key);
_intern.set(key, value);
return value;
}
function intern_delete({ _intern, _key }, value) {
const key = _key(value);
if (_intern.has(key)) {
value = _intern.get(key);
_intern.delete(key);
}
return value;
}
function keyof(value) {
return value !== null && typeof value === "object" ? value.valueOf() : value;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/sort.js
function compareDefined(compare = ascending) {
if (compare === ascending) return ascendingDefined;
if (typeof compare !== "function") throw new TypeError("compare is not a function");
return (a, b) => {
const x = compare(a, b);
if (x || x === 0) return x;
return (compare(b, b) === 0) - (compare(a, a) === 0);
};
}
function ascendingDefined(a, b) {
return (a == null || !(a >= a)) - (b == null || !(b >= b)) || (a < b ? -1 : a > b ? 1 : 0);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/ticks.js
var e10 = Math.sqrt(50), e5 = Math.sqrt(10), e2 = Math.sqrt(2);
function tickSpec(start, stop, count) {
const step = (stop - start) / Math.max(0, count), power = Math.floor(Math.log10(step)), error = step / Math.pow(10, power), factor = error >= e10 ? 10 : error >= e5 ? 5 : error >= e2 ? 2 : 1;
let i1, i2, inc;
if (power < 0) {
inc = Math.pow(10, -power) / factor;
i1 = Math.round(start * inc);
i2 = Math.round(stop * inc);
if (i1 / inc < start) ++i1;
if (i2 / inc > stop) --i2;
inc = -inc;
} else {
inc = Math.pow(10, power) * factor;
i1 = Math.round(start / inc);
i2 = Math.round(stop / inc);
if (i1 * inc < start) ++i1;
if (i2 * inc > stop) --i2;
}
if (i2 < i1 && .5 <= count && count < 2) return tickSpec(start, stop, count * 2);
return [
i1,
i2,
inc
];
}
function ticks(start, stop, count) {
stop = +stop, start = +start, count = +count;
if (!(count > 0)) return [];
if (start === stop) return [start];
const reverse = stop < start, [i1, i2, inc] = reverse ? tickSpec(stop, start, count) : tickSpec(start, stop, count);
if (!(i2 >= i1)) return [];
const n = i2 - i1 + 1, ticks = new Array(n);
if (reverse) if (inc < 0) for (let i = 0; i < n; ++i) ticks[i] = (i2 - i) / -inc;
else for (let i = 0; i < n; ++i) ticks[i] = (i2 - i) * inc;
else if (inc < 0) for (let i = 0; i < n; ++i) ticks[i] = (i1 + i) / -inc;
else for (let i = 0; i < n; ++i) ticks[i] = (i1 + i) * inc;
return ticks;
}
function tickIncrement(start, stop, count) {
stop = +stop, start = +start, count = +count;
return tickSpec(start, stop, count)[2];
}
function tickStep(start, stop, count) {
stop = +stop, start = +start, count = +count;
const reverse = stop < start, inc = reverse ? tickIncrement(stop, start, count) : tickIncrement(start, stop, count);
return (reverse ? -1 : 1) * (inc < 0 ? 1 / -inc : inc);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/max.js
function max(values, valueof) {
let max;
if (valueof === void 0) {
for (const value of values) if (value != null && (max < value || max === void 0 && value >= value)) max = value;
} else {
let index = -1;
for (let value of values) if ((value = valueof(value, ++index, values)) != null && (max < value || max === void 0 && value >= value)) max = value;
}
return max;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/min.js
function min(values, valueof) {
let min;
if (valueof === void 0) {
for (const value of values) if (value != null && (min > value || min === void 0 && value >= value)) min = value;
} else {
let index = -1;
for (let value of values) if ((value = valueof(value, ++index, values)) != null && (min > value || min === void 0 && value >= value)) min = value;
}
return min;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/quickselect.js
function quickselect(array, k, left = 0, right = Infinity, compare) {
k = Math.floor(k);
left = Math.floor(Math.max(0, left));
right = Math.floor(Math.min(array.length - 1, right));
if (!(left <= k && k <= right)) return array;
compare = compare === void 0 ? ascendingDefined : compareDefined(compare);
while (right > left) {
if (right - left > 600) {
const n = right - left + 1;
const m = k - left + 1;
const z = Math.log(n);
const s = .5 * Math.exp(2 * z / 3);
const sd = .5 * Math.sqrt(z * s * (n - s) / n) * (m - n / 2 < 0 ? -1 : 1);
const newLeft = Math.max(left, Math.floor(k - m * s / n + sd));
const newRight = Math.min(right, Math.floor(k + (n - m) * s / n + sd));
quickselect(array, k, newLeft, newRight, compare);
}
const t = array[k];
let i = left;
let j = right;
swap(array, left, k);
if (compare(array[right], t) > 0) swap(array, left, right);
while (i < j) {
swap(array, i, j), ++i, --j;
while (compare(array[i], t) < 0) ++i;
while (compare(array[j], t) > 0) --j;
}
if (compare(array[left], t) === 0) swap(array, left, j);
else ++j, swap(array, j, right);
if (j <= k) left = j + 1;
if (k <= j) right = j - 1;
}
return array;
}
function swap(array, i, j) {
const t = array[i];
array[i] = array[j];
array[j] = t;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/quantile.js
function quantile$1(values, p, valueof) {
values = Float64Array.from(numbers(values, valueof));
if (!(n = values.length) || isNaN(p = +p)) return;
if (p <= 0 || n < 2) return min(values);
if (p >= 1) return max(values);
var n, i = (n - 1) * p, i0 = Math.floor(i), value0 = max(quickselect(values, i0).subarray(0, i0 + 1));
return value0 + (min(values.subarray(i0 + 1)) - value0) * (i - i0);
}
function quantileSorted(values, p, valueof = number$2) {
if (!(n = values.length) || isNaN(p = +p)) return;
if (p <= 0 || n < 2) return +valueof(values[0], 0, values);
if (p >= 1) return +valueof(values[n - 1], n - 1, values);
var n, i = (n - 1) * p, i0 = Math.floor(i), value0 = +valueof(values[i0], i0, values);
return value0 + (+valueof(values[i0 + 1], i0 + 1, values) - value0) * (i - i0);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-array-npm-3.2.4-b427632bcc-10c0.zip/node_modules/d3-array/src/range.js
function range$2(start, stop, step) {
start = +start, stop = +stop, step = (n = arguments.length) < 2 ? (stop = start, start = 0, 1) : n < 3 ? 1 : +step;
var i = -1, n = Math.max(0, Math.ceil((stop - start) / step)) | 0, range = new Array(n);
while (++i < n) range[i] = start + i * step;
return range;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/init.js
function initRange(domain, range) {
switch (arguments.length) {
case 0: break;
case 1:
this.range(domain);
break;
default:
this.range(range).domain(domain);
break;
}
return this;
}
function initInterpolator(domain, interpolator) {
switch (arguments.length) {
case 0: break;
case 1:
if (typeof domain === "function") this.interpolator(domain);
else this.range(domain);
break;
default:
this.domain(domain);
if (typeof interpolator === "function") this.interpolator(interpolator);
else this.range(interpolator);
break;
}
return this;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/ordinal.js
var implicit = Symbol("implicit");
function ordinal() {
var index = new InternMap(), domain = [], range = [], unknown = implicit;
function scale(d) {
let i = index.get(d);
if (i === void 0) {
if (unknown !== implicit) return unknown;
index.set(d, i = domain.push(d) - 1);
}
return range[i % range.length];
}
scale.domain = function(_) {
if (!arguments.length) return domain.slice();
domain = [], index = new InternMap();
for (const value of _) {
if (index.has(value)) continue;
index.set(value, domain.push(value) - 1);
}
return scale;
};
scale.range = function(_) {
return arguments.length ? (range = Array.from(_), scale) : range.slice();
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
scale.copy = function() {
return ordinal(domain, range).unknown(unknown);
};
initRange.apply(scale, arguments);
return scale;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/band.js
function band() {
var scale = ordinal().unknown(void 0), domain = scale.domain, ordinalRange = scale.range, r0 = 0, r1 = 1, step, bandwidth, round = false, paddingInner = 0, paddingOuter = 0, align = .5;
delete scale.unknown;
function rescale() {
var n = domain().length, reverse = r1 < r0, start = reverse ? r1 : r0, stop = reverse ? r0 : r1;
step = (stop - start) / Math.max(1, n - paddingInner + paddingOuter * 2);
if (round) step = Math.floor(step);
start += (stop - start - step * (n - paddingInner)) * align;
bandwidth = step * (1 - paddingInner);
if (round) start = Math.round(start), bandwidth = Math.round(bandwidth);
var values = range$2(n).map(function(i) {
return start + step * i;
});
return ordinalRange(reverse ? values.reverse() : values);
}
scale.domain = function(_) {
return arguments.length ? (domain(_), rescale()) : domain();
};
scale.range = function(_) {
return arguments.length ? ([r0, r1] = _, r0 = +r0, r1 = +r1, rescale()) : [r0, r1];
};
scale.rangeRound = function(_) {
return [r0, r1] = _, r0 = +r0, r1 = +r1, round = true, rescale();
};
scale.bandwidth = function() {
return bandwidth;
};
scale.step = function() {
return step;
};
scale.round = function(_) {
return arguments.length ? (round = !!_, rescale()) : round;
};
scale.padding = function(_) {
return arguments.length ? (paddingInner = Math.min(1, paddingOuter = +_), rescale()) : paddingInner;
};
scale.paddingInner = function(_) {
return arguments.length ? (paddingInner = Math.min(1, _), rescale()) : paddingInner;
};
scale.paddingOuter = function(_) {
return arguments.length ? (paddingOuter = +_, rescale()) : paddingOuter;
};
scale.align = function(_) {
return arguments.length ? (align = Math.max(0, Math.min(1, _)), rescale()) : align;
};
scale.copy = function() {
return band(domain(), [r0, r1]).round(round).paddingInner(paddingInner).paddingOuter(paddingOuter).align(align);
};
return initRange.apply(rescale(), arguments);
}
function pointish(scale) {
var copy = scale.copy;
scale.padding = scale.paddingOuter;
delete scale.paddingInner;
delete scale.paddingOuter;
scale.copy = function() {
return pointish(copy());
};
return scale;
}
function point() {
return pointish(band.apply(null, arguments).paddingInner(1));
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-color-npm-3.1.0-fc73fe3b15-10c0.zip/node_modules/d3-color/src/define.js
function define_default(constructor, factory, prototype) {
constructor.prototype = factory.prototype = prototype;
prototype.constructor = constructor;
}
function extend(parent, definition) {
var prototype = Object.create(parent.prototype);
for (var key in definition) prototype[key] = definition[key];
return prototype;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-color-npm-3.1.0-fc73fe3b15-10c0.zip/node_modules/d3-color/src/color.js
function Color() {}
var darker = .7;
var brighter = 1 / darker;
var reI = "\\s*([+-]?\\d+)\\s*", reN = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*", reP = "\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*", reHex = /^#([0-9a-f]{3,8})$/, reRgbInteger = new RegExp(`^rgb\\(${reI},${reI},${reI}\\)$`), reRgbPercent = new RegExp(`^rgb\\(${reP},${reP},${reP}\\)$`), reRgbaInteger = new RegExp(`^rgba\\(${reI},${reI},${reI},${reN}\\)$`), reRgbaPercent = new RegExp(`^rgba\\(${reP},${reP},${reP},${reN}\\)$`), reHslPercent = new RegExp(`^hsl\\(${reN},${reP},${reP}\\)$`), reHslaPercent = new RegExp(`^hsla\\(${reN},${reP},${reP},${reN}\\)$`);
var named = {
aliceblue: 15792383,
antiquewhite: 16444375,
aqua: 65535,
aquamarine: 8388564,
azure: 15794175,
beige: 16119260,
bisque: 16770244,
black: 0,
blanchedalmond: 16772045,
blue: 255,
blueviolet: 9055202,
brown: 10824234,
burlywood: 14596231,
cadetblue: 6266528,
chartreuse: 8388352,
chocolate: 13789470,
coral: 16744272,
cornflowerblue: 6591981,
cornsilk: 16775388,
crimson: 14423100,
cyan: 65535,
darkblue: 139,
darkcyan: 35723,
darkgoldenrod: 12092939,
darkgray: 11119017,
darkgreen: 25600,
darkgrey: 11119017,
darkkhaki: 12433259,
darkmagenta: 9109643,
darkolivegreen: 5597999,
darkorange: 16747520,
darkorchid: 10040012,
darkred: 9109504,
darksalmon: 15308410,
darkseagreen: 9419919,
darkslateblue: 4734347,
darkslategray: 3100495,
darkslategrey: 3100495,
darkturquoise: 52945,
darkviolet: 9699539,
deeppink: 16716947,
deepskyblue: 49151,
dimgray: 6908265,
dimgrey: 6908265,
dodgerblue: 2003199,
firebrick: 11674146,
floralwhite: 16775920,
forestgreen: 2263842,
fuchsia: 16711935,
gainsboro: 14474460,
ghostwhite: 16316671,
gold: 16766720,
goldenrod: 14329120,
gray: 8421504,
green: 32768,
greenyellow: 11403055,
grey: 8421504,
honeydew: 15794160,
hotpink: 16738740,
indianred: 13458524,
indigo: 4915330,
ivory: 16777200,
khaki: 15787660,
lavender: 15132410,
lavenderblush: 16773365,
lawngreen: 8190976,
lemonchiffon: 16775885,
lightblue: 11393254,
lightcoral: 15761536,
lightcyan: 14745599,
lightgoldenrodyellow: 16448210,
lightgray: 13882323,
lightgreen: 9498256,
lightgrey: 13882323,
lightpink: 16758465,
lightsalmon: 16752762,
lightseagreen: 2142890,
lightskyblue: 8900346,
lightslategray: 7833753,
lightslategrey: 7833753,
lightsteelblue: 11584734,
lightyellow: 16777184,
lime: 65280,
limegreen: 3329330,
linen: 16445670,
magenta: 16711935,
maroon: 8388608,
mediumaquamarine: 6737322,
mediumblue: 205,
mediumorchid: 12211667,
mediumpurple: 9662683,
mediumseagreen: 3978097,
mediumslateblue: 8087790,
mediumspringgreen: 64154,
mediumturquoise: 4772300,
mediumvioletred: 13047173,
midnightblue: 1644912,
mintcream: 16121850,
mistyrose: 16770273,
moccasin: 16770229,
navajowhite: 16768685,
navy: 128,
oldlace: 16643558,
olive: 8421376,
olivedrab: 7048739,
orange: 16753920,
orangered: 16729344,
orchid: 14315734,
palegoldenrod: 15657130,
palegreen: 10025880,
paleturquoise: 11529966,
palevioletred: 14381203,
papayawhip: 16773077,
peachpuff: 16767673,
peru: 13468991,
pink: 16761035,
plum: 14524637,
powderblue: 11591910,
purple: 8388736,
rebeccapurple: 6697881,
red: 16711680,
rosybrown: 12357519,
royalblue: 4286945,
saddlebrown: 9127187,
salmon: 16416882,
sandybrown: 16032864,
seagreen: 3050327,
seashell: 16774638,
sienna: 10506797,
silver: 12632256,
skyblue: 8900331,
slateblue: 6970061,
slategray: 7372944,
slategrey: 7372944,
snow: 16775930,
springgreen: 65407,
steelblue: 4620980,
tan: 13808780,
teal: 32896,
thistle: 14204888,
tomato: 16737095,
turquoise: 4251856,
violet: 15631086,
wheat: 16113331,
white: 16777215,
whitesmoke: 16119285,
yellow: 16776960,
yellowgreen: 10145074
};
define_default(Color, color, {
copy(channels) {
return Object.assign(new this.constructor(), this, channels);
},
displayable() {
return this.rgb().displayable();
},
hex: color_formatHex,
formatHex: color_formatHex,
formatHex8: color_formatHex8,
formatHsl: color_formatHsl,
formatRgb: color_formatRgb,
toString: color_formatRgb
});
function color_formatHex() {
return this.rgb().formatHex();
}
function color_formatHex8() {
return this.rgb().formatHex8();
}
function color_formatHsl() {
return hslConvert(this).formatHsl();
}
function color_formatRgb() {
return this.rgb().formatRgb();
}
function color(format) {
var m, l;
format = (format + "").trim().toLowerCase();
return (m = reHex.exec(format)) ? (l = m[1].length, m = parseInt(m[1], 16), l === 6 ? rgbn(m) : l === 3 ? new Rgb(m >> 8 & 15 | m >> 4 & 240, m >> 4 & 15 | m & 240, (m & 15) << 4 | m & 15, 1) : l === 8 ? rgba(m >> 24 & 255, m >> 16 & 255, m >> 8 & 255, (m & 255) / 255) : l === 4 ? rgba(m >> 12 & 15 | m >> 8 & 240, m >> 8 & 15 | m >> 4 & 240, m >> 4 & 15 | m & 240, ((m & 15) << 4 | m & 15) / 255) : null) : (m = reRgbInteger.exec(format)) ? new Rgb(m[1], m[2], m[3], 1) : (m = reRgbPercent.exec(format)) ? new Rgb(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, 1) : (m = reRgbaInteger.exec(format)) ? rgba(m[1], m[2], m[3], m[4]) : (m = reRgbaPercent.exec(format)) ? rgba(m[1] * 255 / 100, m[2] * 255 / 100, m[3] * 255 / 100, m[4]) : (m = reHslPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, 1) : (m = reHslaPercent.exec(format)) ? hsla(m[1], m[2] / 100, m[3] / 100, m[4]) : named.hasOwnProperty(format) ? rgbn(named[format]) : format === "transparent" ? new Rgb(NaN, NaN, NaN, 0) : null;
}
function rgbn(n) {
return new Rgb(n >> 16 & 255, n >> 8 & 255, n & 255, 1);
}
function rgba(r, g, b, a) {
if (a <= 0) r = g = b = NaN;
return new Rgb(r, g, b, a);
}
function rgbConvert(o) {
if (!(o instanceof Color)) o = color(o);
if (!o) return new Rgb();
o = o.rgb();
return new Rgb(o.r, o.g, o.b, o.opacity);
}
function rgb(r, g, b, opacity) {
return arguments.length === 1 ? rgbConvert(r) : new Rgb(r, g, b, opacity == null ? 1 : opacity);
}
function Rgb(r, g, b, opacity) {
this.r = +r;
this.g = +g;
this.b = +b;
this.opacity = +opacity;
}
define_default(Rgb, rgb, extend(Color, {
brighter(k) {
k = k == null ? brighter : Math.pow(brighter, k);
return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);
},
darker(k) {
k = k == null ? darker : Math.pow(darker, k);
return new Rgb(this.r * k, this.g * k, this.b * k, this.opacity);
},
rgb() {
return this;
},
clamp() {
return new Rgb(clampi(this.r), clampi(this.g), clampi(this.b), clampa(this.opacity));
},
displayable() {
return -.5 <= this.r && this.r < 255.5 && -.5 <= this.g && this.g < 255.5 && -.5 <= this.b && this.b < 255.5 && 0 <= this.opacity && this.opacity <= 1;
},
hex: rgb_formatHex,
formatHex: rgb_formatHex,
formatHex8: rgb_formatHex8,
formatRgb: rgb_formatRgb,
toString: rgb_formatRgb
}));
function rgb_formatHex() {
return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}`;
}
function rgb_formatHex8() {
return `#${hex(this.r)}${hex(this.g)}${hex(this.b)}${hex((isNaN(this.opacity) ? 1 : this.opacity) * 255)}`;
}
function rgb_formatRgb() {
const a = clampa(this.opacity);
return `${a === 1 ? "rgb(" : "rgba("}${clampi(this.r)}, ${clampi(this.g)}, ${clampi(this.b)}${a === 1 ? ")" : `, ${a})`}`;
}
function clampa(opacity) {
return isNaN(opacity) ? 1 : Math.max(0, Math.min(1, opacity));
}
function clampi(value) {
return Math.max(0, Math.min(255, Math.round(value) || 0));
}
function hex(value) {
value = clampi(value);
return (value < 16 ? "0" : "") + value.toString(16);
}
function hsla(h, s, l, a) {
if (a <= 0) h = s = l = NaN;
else if (l <= 0 || l >= 1) h = s = NaN;
else if (s <= 0) h = NaN;
return new Hsl(h, s, l, a);
}
function hslConvert(o) {
if (o instanceof Hsl) return new Hsl(o.h, o.s, o.l, o.opacity);
if (!(o instanceof Color)) o = color(o);
if (!o) return new Hsl();
if (o instanceof Hsl) return o;
o = o.rgb();
var r = o.r / 255, g = o.g / 255, b = o.b / 255, min = Math.min(r, g, b), max = Math.max(r, g, b), h = NaN, s = max - min, l = (max + min) / 2;
if (s) {
if (r === max) h = (g - b) / s + (g < b) * 6;
else if (g === max) h = (b - r) / s + 2;
else h = (r - g) / s + 4;
s /= l < .5 ? max + min : 2 - max - min;
h *= 60;
} else s = l > 0 && l < 1 ? 0 : h;
return new Hsl(h, s, l, o.opacity);
}
function hsl(h, s, l, opacity) {
return arguments.length === 1 ? hslConvert(h) : new Hsl(h, s, l, opacity == null ? 1 : opacity);
}
function Hsl(h, s, l, opacity) {
this.h = +h;
this.s = +s;
this.l = +l;
this.opacity = +opacity;
}
define_default(Hsl, hsl, extend(Color, {
brighter(k) {
k = k == null ? brighter : Math.pow(brighter, k);
return new Hsl(this.h, this.s, this.l * k, this.opacity);
},
darker(k) {
k = k == null ? darker : Math.pow(darker, k);
return new Hsl(this.h, this.s, this.l * k, this.opacity);
},
rgb() {
var h = this.h % 360 + (this.h < 0) * 360, s = isNaN(h) || isNaN(this.s) ? 0 : this.s, l = this.l, m2 = l + (l < .5 ? l : 1 - l) * s, m1 = 2 * l - m2;
return new Rgb(hsl2rgb(h >= 240 ? h - 240 : h + 120, m1, m2), hsl2rgb(h, m1, m2), hsl2rgb(h < 120 ? h + 240 : h - 120, m1, m2), this.opacity);
},
clamp() {
return new Hsl(clamph(this.h), clampt(this.s), clampt(this.l), clampa(this.opacity));
},
displayable() {
return (0 <= this.s && this.s <= 1 || isNaN(this.s)) && 0 <= this.l && this.l <= 1 && 0 <= this.opacity && this.opacity <= 1;
},
formatHsl() {
const a = clampa(this.opacity);
return `${a === 1 ? "hsl(" : "hsla("}${clamph(this.h)}, ${clampt(this.s) * 100}%, ${clampt(this.l) * 100}%${a === 1 ? ")" : `, ${a})`}`;
}
}));
function clamph(value) {
value = (value || 0) % 360;
return value < 0 ? value + 360 : value;
}
function clampt(value) {
return Math.max(0, Math.min(1, value || 0));
}
function hsl2rgb(h, m1, m2) {
return (h < 60 ? m1 + (m2 - m1) * h / 60 : h < 180 ? m2 : h < 240 ? m1 + (m2 - m1) * (240 - h) / 60 : m1) * 255;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/basis.js
function basis(t1, v0, v1, v2, v3) {
var t2 = t1 * t1, t3 = t2 * t1;
return ((1 - 3 * t1 + 3 * t2 - t3) * v0 + (4 - 6 * t2 + 3 * t3) * v1 + (1 + 3 * t1 + 3 * t2 - 3 * t3) * v2 + t3 * v3) / 6;
}
function basis_default(values) {
var n = values.length - 1;
return function(t) {
var i = t <= 0 ? t = 0 : t >= 1 ? (t = 1, n - 1) : Math.floor(t * n), v1 = values[i], v2 = values[i + 1], v0 = i > 0 ? values[i - 1] : 2 * v1 - v2, v3 = i < n - 1 ? values[i + 2] : 2 * v2 - v1;
return basis((t - i / n) * n, v0, v1, v2, v3);
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/basisClosed.js
function basisClosed_default(values) {
var n = values.length;
return function(t) {
var i = Math.floor(((t %= 1) < 0 ? ++t : t) * n), v0 = values[(i + n - 1) % n], v1 = values[i % n], v2 = values[(i + 1) % n], v3 = values[(i + 2) % n];
return basis((t - i / n) * n, v0, v1, v2, v3);
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/constant.js
var constant_default = (x) => () => x;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/color.js
function linear$1(a, d) {
return function(t) {
return a + t * d;
};
}
function exponential(a, b, y) {
return a = Math.pow(a, y), b = Math.pow(b, y) - a, y = 1 / y, function(t) {
return Math.pow(a + t * b, y);
};
}
function gamma(y) {
return (y = +y) === 1 ? nogamma : function(a, b) {
return b - a ? exponential(a, b, y) : constant_default(isNaN(a) ? b : a);
};
}
function nogamma(a, b) {
var d = b - a;
return d ? linear$1(a, d) : constant_default(isNaN(a) ? b : a);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/rgb.js
var rgb_default = (function rgbGamma(y) {
var color = gamma(y);
function rgb$1(start, end) {
var r = color((start = rgb(start)).r, (end = rgb(end)).r), g = color(start.g, end.g), b = color(start.b, end.b), opacity = nogamma(start.opacity, end.opacity);
return function(t) {
start.r = r(t);
start.g = g(t);
start.b = b(t);
start.opacity = opacity(t);
return start + "";
};
}
rgb$1.gamma = rgbGamma;
return rgb$1;
})(1);
function rgbSpline(spline) {
return function(colors) {
var n = colors.length, r = new Array(n), g = new Array(n), b = new Array(n), i, color;
for (i = 0; i < n; ++i) {
color = rgb(colors[i]);
r[i] = color.r || 0;
g[i] = color.g || 0;
b[i] = color.b || 0;
}
r = spline(r);
g = spline(g);
b = spline(b);
color.opacity = 1;
return function(t) {
color.r = r(t);
color.g = g(t);
color.b = b(t);
return color + "";
};
};
}
rgbSpline(basis_default);
rgbSpline(basisClosed_default);
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/numberArray.js
function numberArray_default(a, b) {
if (!b) b = [];
var n = a ? Math.min(b.length, a.length) : 0, c = b.slice(), i;
return function(t) {
for (i = 0; i < n; ++i) c[i] = a[i] * (1 - t) + b[i] * t;
return c;
};
}
function isNumberArray(x) {
return ArrayBuffer.isView(x) && !(x instanceof DataView);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/array.js
function genericArray(a, b) {
var nb = b ? b.length : 0, na = a ? Math.min(nb, a.length) : 0, x = new Array(na), c = new Array(nb), i;
for (i = 0; i < na; ++i) x[i] = value_default(a[i], b[i]);
for (; i < nb; ++i) c[i] = b[i];
return function(t) {
for (i = 0; i < na; ++i) c[i] = x[i](t);
return c;
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/date.js
function date_default(a, b) {
var d = /* @__PURE__ */ new Date();
return a = +a, b = +b, function(t) {
return d.setTime(a * (1 - t) + b * t), d;
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/number.js
function number_default(a, b) {
return a = +a, b = +b, function(t) {
return a * (1 - t) + b * t;
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/object.js
function object_default(a, b) {
var i = {}, c = {}, k;
if (a === null || typeof a !== "object") a = {};
if (b === null || typeof b !== "object") b = {};
for (k in b) if (k in a) i[k] = value_default(a[k], b[k]);
else c[k] = b[k];
return function(t) {
for (k in i) c[k] = i[k](t);
return c;
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/string.js
var reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, reB = new RegExp(reA.source, "g");
function zero(b) {
return function() {
return b;
};
}
function one(b) {
return function(t) {
return b(t) + "";
};
}
function string_default(a, b) {
var bi = reA.lastIndex = reB.lastIndex = 0, am, bm, bs, i = -1, s = [], q = [];
a = a + "", b = b + "";
while ((am = reA.exec(a)) && (bm = reB.exec(b))) {
if ((bs = bm.index) > bi) {
bs = b.slice(bi, bs);
if (s[i]) s[i] += bs;
else s[++i] = bs;
}
if ((am = am[0]) === (bm = bm[0])) if (s[i]) s[i] += bm;
else s[++i] = bm;
else {
s[++i] = null;
q.push({
i,
x: number_default(am, bm)
});
}
bi = reB.lastIndex;
}
if (bi < b.length) {
bs = b.slice(bi);
if (s[i]) s[i] += bs;
else s[++i] = bs;
}
return s.length < 2 ? q[0] ? one(q[0].x) : zero(b) : (b = q.length, function(t) {
for (var i = 0, o; i < b; ++i) s[(o = q[i]).i] = o.x(t);
return s.join("");
});
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/value.js
function value_default(a, b) {
var t = typeof b, c;
return b == null || t === "boolean" ? constant_default(b) : (t === "number" ? number_default : t === "string" ? (c = color(b)) ? (b = c, rgb_default) : string_default : b instanceof color ? rgb_default : b instanceof Date ? date_default : isNumberArray(b) ? numberArray_default : Array.isArray(b) ? genericArray : typeof b.valueOf !== "function" && typeof b.toString !== "function" || isNaN(b) ? object_default : number_default)(a, b);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/round.js
function round_default(a, b) {
return a = +a, b = +b, function(t) {
return Math.round(a * (1 - t) + b * t);
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-interpolate-npm-3.0.1-77ddca7977-10c0.zip/node_modules/d3-interpolate/src/piecewise.js
function piecewise(interpolate, values) {
if (values === void 0) values = interpolate, interpolate = value_default;
var i = 0, n = values.length - 1, v = values[0], I = new Array(n < 0 ? 0 : n);
while (i < n) I[i] = interpolate(v, v = values[++i]);
return function(t) {
var i = Math.max(0, Math.min(n - 1, Math.floor(t *= n)));
return I[i](t - i);
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/constant.js
function constants(x) {
return function() {
return x;
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/number.js
function number$1(x) {
return +x;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/continuous.js
var unit = [0, 1];
function identity$1(x) {
return x;
}
function normalize(a, b) {
return (b -= a = +a) ? function(x) {
return (x - a) / b;
} : constants(isNaN(b) ? NaN : .5);
}
function clamper(a, b) {
var t;
if (a > b) t = a, a = b, b = t;
return function(x) {
return Math.max(a, Math.min(b, x));
};
}
function bimap(domain, range, interpolate) {
var d0 = domain[0], d1 = domain[1], r0 = range[0], r1 = range[1];
if (d1 < d0) d0 = normalize(d1, d0), r0 = interpolate(r1, r0);
else d0 = normalize(d0, d1), r0 = interpolate(r0, r1);
return function(x) {
return r0(d0(x));
};
}
function polymap(domain, range, interpolate) {
var j = Math.min(domain.length, range.length) - 1, d = new Array(j), r = new Array(j), i = -1;
if (domain[j] < domain[0]) {
domain = domain.slice().reverse();
range = range.slice().reverse();
}
while (++i < j) {
d[i] = normalize(domain[i], domain[i + 1]);
r[i] = interpolate(range[i], range[i + 1]);
}
return function(x) {
var i = bisectRight(domain, x, 1, j) - 1;
return r[i](d[i](x));
};
}
function copy$1(source, target) {
return target.domain(source.domain()).range(source.range()).interpolate(source.interpolate()).clamp(source.clamp()).unknown(source.unknown());
}
function transformer$2() {
var domain = unit, range = unit, interpolate = value_default, transform, untransform, unknown, clamp = identity$1, piecewise, output, input;
function rescale() {
var n = Math.min(domain.length, range.length);
if (clamp !== identity$1) clamp = clamper(domain[0], domain[n - 1]);
piecewise = n > 2 ? polymap : bimap;
output = input = null;
return scale;
}
function scale(x) {
return x == null || isNaN(x = +x) ? unknown : (output || (output = piecewise(domain.map(transform), range, interpolate)))(transform(clamp(x)));
}
scale.invert = function(y) {
return clamp(untransform((input || (input = piecewise(range, domain.map(transform), number_default)))(y)));
};
scale.domain = function(_) {
return arguments.length ? (domain = Array.from(_, number$1), rescale()) : domain.slice();
};
scale.range = function(_) {
return arguments.length ? (range = Array.from(_), rescale()) : range.slice();
};
scale.rangeRound = function(_) {
return range = Array.from(_), interpolate = round_default, rescale();
};
scale.clamp = function(_) {
return arguments.length ? (clamp = _ ? true : identity$1, rescale()) : clamp !== identity$1;
};
scale.interpolate = function(_) {
return arguments.length ? (interpolate = _, rescale()) : interpolate;
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
return function(t, u) {
transform = t, untransform = u;
return rescale();
};
}
function continuous() {
return transformer$2()(identity$1, identity$1);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatDecimal.js
function formatDecimal_default(x) {
return Math.abs(x = Math.round(x)) >= 1e21 ? x.toLocaleString("en").replace(/,/g, "") : x.toString(10);
}
function formatDecimalParts(x, p) {
if (!isFinite(x) || x === 0) return null;
var i = (x = p ? x.toExponential(p - 1) : x.toExponential()).indexOf("e"), coefficient = x.slice(0, i);
return [coefficient.length > 1 ? coefficient[0] + coefficient.slice(2) : coefficient, +x.slice(i + 1)];
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/exponent.js
function exponent_default(x) {
return x = formatDecimalParts(Math.abs(x)), x ? x[1] : NaN;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatGroup.js
function formatGroup_default(grouping, thousands) {
return function(value, width) {
var i = value.length, t = [], j = 0, g = grouping[0], length = 0;
while (i > 0 && g > 0) {
if (length + g + 1 > width) g = Math.max(1, width - length);
t.push(value.substring(i -= g, i + g));
if ((length += g + 1) > width) break;
g = grouping[j = (j + 1) % grouping.length];
}
return t.reverse().join(thousands);
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatNumerals.js
function formatNumerals_default(numerals) {
return function(value) {
return value.replace(/[0-9]/g, function(i) {
return numerals[+i];
});
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatSpecifier.js
var re = /^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;
function formatSpecifier(specifier) {
if (!(match = re.exec(specifier))) throw new Error("invalid format: " + specifier);
var match;
return new FormatSpecifier({
fill: match[1],
align: match[2],
sign: match[3],
symbol: match[4],
zero: match[5],
width: match[6],
comma: match[7],
precision: match[8] && match[8].slice(1),
trim: match[9],
type: match[10]
});
}
formatSpecifier.prototype = FormatSpecifier.prototype;
function FormatSpecifier(specifier) {
this.fill = specifier.fill === void 0 ? " " : specifier.fill + "";
this.align = specifier.align === void 0 ? ">" : specifier.align + "";
this.sign = specifier.sign === void 0 ? "-" : specifier.sign + "";
this.symbol = specifier.symbol === void 0 ? "" : specifier.symbol + "";
this.zero = !!specifier.zero;
this.width = specifier.width === void 0 ? void 0 : +specifier.width;
this.comma = !!specifier.comma;
this.precision = specifier.precision === void 0 ? void 0 : +specifier.precision;
this.trim = !!specifier.trim;
this.type = specifier.type === void 0 ? "" : specifier.type + "";
}
FormatSpecifier.prototype.toString = function() {
return this.fill + this.align + this.sign + this.symbol + (this.zero ? "0" : "") + (this.width === void 0 ? "" : Math.max(1, this.width | 0)) + (this.comma ? "," : "") + (this.precision === void 0 ? "" : "." + Math.max(0, this.precision | 0)) + (this.trim ? "~" : "") + this.type;
};
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatTrim.js
function formatTrim_default(s) {
out: for (var n = s.length, i = 1, i0 = -1, i1; i < n; ++i) switch (s[i]) {
case ".":
i0 = i1 = i;
break;
case "0":
if (i0 === 0) i0 = i;
i1 = i;
break;
default:
if (!+s[i]) break out;
if (i0 > 0) i0 = 0;
break;
}
return i0 > 0 ? s.slice(0, i0) + s.slice(i1 + 1) : s;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatPrefixAuto.js
var prefixExponent;
function formatPrefixAuto_default(x, p) {
var d = formatDecimalParts(x, p);
if (!d) return prefixExponent = void 0, x.toPrecision(p);
var coefficient = d[0], exponent = d[1], i = exponent - (prefixExponent = Math.max(-8, Math.min(8, Math.floor(exponent / 3))) * 3) + 1, n = coefficient.length;
return i === n ? coefficient : i > n ? coefficient + new Array(i - n + 1).join("0") : i > 0 ? coefficient.slice(0, i) + "." + coefficient.slice(i) : "0." + new Array(1 - i).join("0") + formatDecimalParts(x, Math.max(0, p + i - 1))[0];
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatRounded.js
function formatRounded_default(x, p) {
var d = formatDecimalParts(x, p);
if (!d) return x + "";
var coefficient = d[0], exponent = d[1];
return exponent < 0 ? "0." + new Array(-exponent).join("0") + coefficient : coefficient.length > exponent + 1 ? coefficient.slice(0, exponent + 1) + "." + coefficient.slice(exponent + 1) : coefficient + new Array(exponent - coefficient.length + 2).join("0");
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/formatTypes.js
var formatTypes_default = {
"%": (x, p) => (x * 100).toFixed(p),
"b": (x) => Math.round(x).toString(2),
"c": (x) => x + "",
"d": formatDecimal_default,
"e": (x, p) => x.toExponential(p),
"f": (x, p) => x.toFixed(p),
"g": (x, p) => x.toPrecision(p),
"o": (x) => Math.round(x).toString(8),
"p": (x, p) => formatRounded_default(x * 100, p),
"r": formatRounded_default,
"s": formatPrefixAuto_default,
"X": (x) => Math.round(x).toString(16).toUpperCase(),
"x": (x) => Math.round(x).toString(16)
};
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/identity.js
function identity_default(x) {
return x;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/locale.js
var map = Array.prototype.map, prefixes = [
"y",
"z",
"a",
"f",
"p",
"n",
"µ",
"m",
"",
"k",
"M",
"G",
"T",
"P",
"E",
"Z",
"Y"
];
function locale_default(locale) {
var group = locale.grouping === void 0 || locale.thousands === void 0 ? identity_default : formatGroup_default(map.call(locale.grouping, Number), locale.thousands + ""), currencyPrefix = locale.currency === void 0 ? "" : locale.currency[0] + "", currencySuffix = locale.currency === void 0 ? "" : locale.currency[1] + "", decimal = locale.decimal === void 0 ? "." : locale.decimal + "", numerals = locale.numerals === void 0 ? identity_default : formatNumerals_default(map.call(locale.numerals, String)), percent = locale.percent === void 0 ? "%" : locale.percent + "", minus = locale.minus === void 0 ? "−" : locale.minus + "", nan = locale.nan === void 0 ? "NaN" : locale.nan + "";
function newFormat(specifier, options) {
specifier = formatSpecifier(specifier);
var fill = specifier.fill, align = specifier.align, sign = specifier.sign, symbol = specifier.symbol, zero = specifier.zero, width = specifier.width, comma = specifier.comma, precision = specifier.precision, trim = specifier.trim, type = specifier.type;
if (type === "n") comma = true, type = "g";
else if (!formatTypes_default[type]) precision === void 0 && (precision = 12), trim = true, type = "g";
if (zero || fill === "0" && align === "=") zero = true, fill = "0", align = "=";
var prefix = (options && options.prefix !== void 0 ? options.prefix : "") + (symbol === "$" ? currencyPrefix : symbol === "#" && /[boxX]/.test(type) ? "0" + type.toLowerCase() : ""), suffix = (symbol === "$" ? currencySuffix : /[%p]/.test(type) ? percent : "") + (options && options.suffix !== void 0 ? options.suffix : "");
var formatType = formatTypes_default[type], maybeSuffix = /[defgprs%]/.test(type);
precision = precision === void 0 ? 6 : /[gprs]/.test(type) ? Math.max(1, Math.min(21, precision)) : Math.max(0, Math.min(20, precision));
function format(value) {
var valuePrefix = prefix, valueSuffix = suffix, i, n, c;
if (type === "c") {
valueSuffix = formatType(value) + valueSuffix;
value = "";
} else {
value = +value;
var valueNegative = value < 0 || 1 / value < 0;
value = isNaN(value) ? nan : formatType(Math.abs(value), precision);
if (trim) value = formatTrim_default(value);
if (valueNegative && +value === 0 && sign !== "+") valueNegative = false;
valuePrefix = (valueNegative ? sign === "(" ? sign : minus : sign === "-" || sign === "(" ? "" : sign) + valuePrefix;
valueSuffix = (type === "s" && !isNaN(value) && prefixExponent !== void 0 ? prefixes[8 + prefixExponent / 3] : "") + valueSuffix + (valueNegative && sign === "(" ? ")" : "");
if (maybeSuffix) {
i = -1, n = value.length;
while (++i < n) if (c = value.charCodeAt(i), 48 > c || c > 57) {
valueSuffix = (c === 46 ? decimal + value.slice(i + 1) : value.slice(i)) + valueSuffix;
value = value.slice(0, i);
break;
}
}
}
if (comma && !zero) value = group(value, Infinity);
var length = valuePrefix.length + value.length + valueSuffix.length, padding = length < width ? new Array(width - length + 1).join(fill) : "";
if (comma && zero) value = group(padding + value, padding.length ? width - valueSuffix.length : Infinity), padding = "";
switch (align) {
case "<":
value = valuePrefix + value + valueSuffix + padding;
break;
case "=":
value = valuePrefix + padding + value + valueSuffix;
break;
case "^":
value = padding.slice(0, length = padding.length >> 1) + valuePrefix + value + valueSuffix + padding.slice(length);
break;
default:
value = padding + valuePrefix + value + valueSuffix;
break;
}
return numerals(value);
}
format.toString = function() {
return specifier + "";
};
return format;
}
function formatPrefix(specifier, value) {
var e = Math.max(-8, Math.min(8, Math.floor(exponent_default(value) / 3))) * 3, k = Math.pow(10, -e), f = newFormat((specifier = formatSpecifier(specifier), specifier.type = "f", specifier), { suffix: prefixes[8 + e / 3] });
return function(value) {
return f(k * value);
};
}
return {
format: newFormat,
formatPrefix
};
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/defaultLocale.js
var locale$1;
var format;
var formatPrefix;
defaultLocale$1({
thousands: ",",
grouping: [3],
currency: ["$", ""]
});
function defaultLocale$1(definition) {
locale$1 = locale_default(definition);
format = locale$1.format;
formatPrefix = locale$1.formatPrefix;
return locale$1;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/precisionFixed.js
function precisionFixed_default(step) {
return Math.max(0, -exponent_default(Math.abs(step)));
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/precisionPrefix.js
function precisionPrefix_default(step, value) {
return Math.max(0, Math.max(-8, Math.min(8, Math.floor(exponent_default(value) / 3))) * 3 - exponent_default(Math.abs(step)));
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-format-npm-3.1.2-78b0d9257a-10c0.zip/node_modules/d3-format/src/precisionRound.js
function precisionRound_default(step, max) {
step = Math.abs(step), max = Math.abs(max) - step;
return Math.max(0, exponent_default(max) - exponent_default(step)) + 1;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/tickFormat.js
function tickFormat(start, stop, count, specifier) {
var step = tickStep(start, stop, count), precision;
specifier = formatSpecifier(specifier == null ? ",f" : specifier);
switch (specifier.type) {
case "s":
var value = Math.max(Math.abs(start), Math.abs(stop));
if (specifier.precision == null && !isNaN(precision = precisionPrefix_default(step, value))) specifier.precision = precision;
return formatPrefix(specifier, value);
case "":
case "e":
case "g":
case "p":
case "r":
if (specifier.precision == null && !isNaN(precision = precisionRound_default(step, Math.max(Math.abs(start), Math.abs(stop))))) specifier.precision = precision - (specifier.type === "e");
break;
case "f":
case "%":
if (specifier.precision == null && !isNaN(precision = precisionFixed_default(step))) specifier.precision = precision - (specifier.type === "%") * 2;
break;
}
return format(specifier);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/linear.js
function linearish(scale) {
var domain = scale.domain;
scale.ticks = function(count) {
var d = domain();
return ticks(d[0], d[d.length - 1], count == null ? 10 : count);
};
scale.tickFormat = function(count, specifier) {
var d = domain();
return tickFormat(d[0], d[d.length - 1], count == null ? 10 : count, specifier);
};
scale.nice = function(count) {
if (count == null) count = 10;
var d = domain();
var i0 = 0;
var i1 = d.length - 1;
var start = d[i0];
var stop = d[i1];
var prestep;
var step;
var maxIter = 10;
if (stop < start) {
step = start, start = stop, stop = step;
step = i0, i0 = i1, i1 = step;
}
while (maxIter-- > 0) {
step = tickIncrement(start, stop, count);
if (step === prestep) {
d[i0] = start;
d[i1] = stop;
return domain(d);
} else if (step > 0) {
start = Math.floor(start / step) * step;
stop = Math.ceil(stop / step) * step;
} else if (step < 0) {
start = Math.ceil(start * step) / step;
stop = Math.floor(stop * step) / step;
} else break;
prestep = step;
}
return scale;
};
return scale;
}
function linear() {
var scale = continuous();
scale.copy = function() {
return copy$1(scale, linear());
};
initRange.apply(scale, arguments);
return linearish(scale);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/identity.js
function identity(domain) {
var unknown;
function scale(x) {
return x == null || isNaN(x = +x) ? unknown : x;
}
scale.invert = scale;
scale.domain = scale.range = function(_) {
return arguments.length ? (domain = Array.from(_, number$1), scale) : domain.slice();
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
scale.copy = function() {
return identity(domain).unknown(unknown);
};
domain = arguments.length ? Array.from(domain, number$1) : [0, 1];
return linearish(scale);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/nice.js
function nice(domain, interval) {
domain = domain.slice();
var i0 = 0, i1 = domain.length - 1, x0 = domain[i0], x1 = domain[i1], t;
if (x1 < x0) {
t = i0, i0 = i1, i1 = t;
t = x0, x0 = x1, x1 = t;
}
domain[i0] = interval.floor(x0);
domain[i1] = interval.ceil(x1);
return domain;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/log.js
function transformLog(x) {
return Math.log(x);
}
function transformExp(x) {
return Math.exp(x);
}
function transformLogn(x) {
return -Math.log(-x);
}
function transformExpn(x) {
return -Math.exp(-x);
}
function pow10(x) {
return isFinite(x) ? +("1e" + x) : x < 0 ? 0 : x;
}
function powp(base) {
return base === 10 ? pow10 : base === Math.E ? Math.exp : (x) => Math.pow(base, x);
}
function logp(base) {
return base === Math.E ? Math.log : base === 10 && Math.log10 || base === 2 && Math.log2 || (base = Math.log(base), (x) => Math.log(x) / base);
}
function reflect(f) {
return (x, k) => -f(-x, k);
}
function loggish(transform) {
const scale = transform(transformLog, transformExp);
const domain = scale.domain;
let base = 10;
let logs;
let pows;
function rescale() {
logs = logp(base), pows = powp(base);
if (domain()[0] < 0) {
logs = reflect(logs), pows = reflect(pows);
transform(transformLogn, transformExpn);
} else transform(transformLog, transformExp);
return scale;
}
scale.base = function(_) {
return arguments.length ? (base = +_, rescale()) : base;
};
scale.domain = function(_) {
return arguments.length ? (domain(_), rescale()) : domain();
};
scale.ticks = (count) => {
const d = domain();
let u = d[0];
let v = d[d.length - 1];
const r = v < u;
if (r) [u, v] = [v, u];
let i = logs(u);
let j = logs(v);
let k;
let t;
const n = count == null ? 10 : +count;
let z = [];
if (!(base % 1) && j - i < n) {
i = Math.floor(i), j = Math.ceil(j);
if (u > 0) for (; i <= j; ++i) for (k = 1; k < base; ++k) {
t = i < 0 ? k / pows(-i) : k * pows(i);
if (t < u) continue;
if (t > v) break;
z.push(t);
}
else for (; i <= j; ++i) for (k = base - 1; k >= 1; --k) {
t = i > 0 ? k / pows(-i) : k * pows(i);
if (t < u) continue;
if (t > v) break;
z.push(t);
}
if (z.length * 2 < n) z = ticks(u, v, n);
} else z = ticks(i, j, Math.min(j - i, n)).map(pows);
return r ? z.reverse() : z;
};
scale.tickFormat = (count, specifier) => {
if (count == null) count = 10;
if (specifier == null) specifier = base === 10 ? "s" : ",";
if (typeof specifier !== "function") {
if (!(base % 1) && (specifier = formatSpecifier(specifier)).precision == null) specifier.trim = true;
specifier = format(specifier);
}
if (count === Infinity) return specifier;
const k = Math.max(1, base * count / scale.ticks().length);
return (d) => {
let i = d / pows(Math.round(logs(d)));
if (i * base < base - .5) i *= base;
return i <= k ? specifier(d) : "";
};
};
scale.nice = () => {
return domain(nice(domain(), {
floor: (x) => pows(Math.floor(logs(x))),
ceil: (x) => pows(Math.ceil(logs(x)))
}));
};
return scale;
}
function log() {
const scale = loggish(transformer$2()).domain([1, 10]);
scale.copy = () => copy$1(scale, log()).base(scale.base());
initRange.apply(scale, arguments);
return scale;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/symlog.js
function transformSymlog(c) {
return function(x) {
return Math.sign(x) * Math.log1p(Math.abs(x / c));
};
}
function transformSymexp(c) {
return function(x) {
return Math.sign(x) * Math.expm1(Math.abs(x)) * c;
};
}
function symlogish(transform) {
var c = 1, scale = transform(transformSymlog(c), transformSymexp(c));
scale.constant = function(_) {
return arguments.length ? transform(transformSymlog(c = +_), transformSymexp(c)) : c;
};
return linearish(scale);
}
function symlog() {
var scale = symlogish(transformer$2());
scale.copy = function() {
return copy$1(scale, symlog()).constant(scale.constant());
};
return initRange.apply(scale, arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/pow.js
function transformPow(exponent) {
return function(x) {
return x < 0 ? -Math.pow(-x, exponent) : Math.pow(x, exponent);
};
}
function transformSqrt(x) {
return x < 0 ? -Math.sqrt(-x) : Math.sqrt(x);
}
function transformSquare(x) {
return x < 0 ? -x * x : x * x;
}
function powish(transform) {
var scale = transform(identity$1, identity$1), exponent = 1;
function rescale() {
return exponent === 1 ? transform(identity$1, identity$1) : exponent === .5 ? transform(transformSqrt, transformSquare) : transform(transformPow(exponent), transformPow(1 / exponent));
}
scale.exponent = function(_) {
return arguments.length ? (exponent = +_, rescale()) : exponent;
};
return linearish(scale);
}
function pow() {
var scale = powish(transformer$2());
scale.copy = function() {
return copy$1(scale, pow()).exponent(scale.exponent());
};
initRange.apply(scale, arguments);
return scale;
}
function sqrt() {
return pow.apply(null, arguments).exponent(.5);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/radial.js
function square(x) {
return Math.sign(x) * x * x;
}
function unsquare(x) {
return Math.sign(x) * Math.sqrt(Math.abs(x));
}
function radial() {
var squared = continuous(), range = [0, 1], round = false, unknown;
function scale(x) {
var y = unsquare(squared(x));
return isNaN(y) ? unknown : round ? Math.round(y) : y;
}
scale.invert = function(y) {
return squared.invert(square(y));
};
scale.domain = function(_) {
return arguments.length ? (squared.domain(_), scale) : squared.domain();
};
scale.range = function(_) {
return arguments.length ? (squared.range((range = Array.from(_, number$1)).map(square)), scale) : range.slice();
};
scale.rangeRound = function(_) {
return scale.range(_).round(true);
};
scale.round = function(_) {
return arguments.length ? (round = !!_, scale) : round;
};
scale.clamp = function(_) {
return arguments.length ? (squared.clamp(_), scale) : squared.clamp();
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
scale.copy = function() {
return radial(squared.domain(), range).round(round).clamp(squared.clamp()).unknown(unknown);
};
initRange.apply(scale, arguments);
return linearish(scale);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/quantile.js
function quantile() {
var domain = [], range = [], thresholds = [], unknown;
function rescale() {
var i = 0, n = Math.max(1, range.length);
thresholds = new Array(n - 1);
while (++i < n) thresholds[i - 1] = quantileSorted(domain, i / n);
return scale;
}
function scale(x) {
return x == null || isNaN(x = +x) ? unknown : range[bisectRight(thresholds, x)];
}
scale.invertExtent = function(y) {
var i = range.indexOf(y);
return i < 0 ? [NaN, NaN] : [i > 0 ? thresholds[i - 1] : domain[0], i < thresholds.length ? thresholds[i] : domain[domain.length - 1]];
};
scale.domain = function(_) {
if (!arguments.length) return domain.slice();
domain = [];
for (let d of _) if (d != null && !isNaN(d = +d)) domain.push(d);
domain.sort(ascending);
return rescale();
};
scale.range = function(_) {
return arguments.length ? (range = Array.from(_), rescale()) : range.slice();
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
scale.quantiles = function() {
return thresholds.slice();
};
scale.copy = function() {
return quantile().domain(domain).range(range).unknown(unknown);
};
return initRange.apply(scale, arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/quantize.js
function quantize() {
var x0 = 0, x1 = 1, n = 1, domain = [.5], range = [0, 1], unknown;
function scale(x) {
return x != null && x <= x ? range[bisectRight(domain, x, 0, n)] : unknown;
}
function rescale() {
var i = -1;
domain = new Array(n);
while (++i < n) domain[i] = ((i + 1) * x1 - (i - n) * x0) / (n + 1);
return scale;
}
scale.domain = function(_) {
return arguments.length ? ([x0, x1] = _, x0 = +x0, x1 = +x1, rescale()) : [x0, x1];
};
scale.range = function(_) {
return arguments.length ? (n = (range = Array.from(_)).length - 1, rescale()) : range.slice();
};
scale.invertExtent = function(y) {
var i = range.indexOf(y);
return i < 0 ? [NaN, NaN] : i < 1 ? [x0, domain[0]] : i >= n ? [domain[n - 1], x1] : [domain[i - 1], domain[i]];
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : scale;
};
scale.thresholds = function() {
return domain.slice();
};
scale.copy = function() {
return quantize().domain([x0, x1]).range(range).unknown(unknown);
};
return initRange.apply(linearish(scale), arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/threshold.js
function threshold() {
var domain = [.5], range = [0, 1], unknown, n = 1;
function scale(x) {
return x != null && x <= x ? range[bisectRight(domain, x, 0, n)] : unknown;
}
scale.domain = function(_) {
return arguments.length ? (domain = Array.from(_), n = Math.min(domain.length, range.length - 1), scale) : domain.slice();
};
scale.range = function(_) {
return arguments.length ? (range = Array.from(_), n = Math.min(domain.length, range.length - 1), scale) : range.slice();
};
scale.invertExtent = function(y) {
var i = range.indexOf(y);
return [domain[i - 1], domain[i]];
};
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
scale.copy = function() {
return threshold().domain(domain).range(range).unknown(unknown);
};
return initRange.apply(scale, arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/interval.js
var t0 = /* @__PURE__ */ new Date(), t1 = /* @__PURE__ */ new Date();
function timeInterval(floori, offseti, count, field) {
function interval(date) {
return floori(date = arguments.length === 0 ? /* @__PURE__ */ new Date() : /* @__PURE__ */ new Date(+date)), date;
}
interval.floor = (date) => {
return floori(date = /* @__PURE__ */ new Date(+date)), date;
};
interval.ceil = (date) => {
return floori(date = /* @__PURE__ */ new Date(date - 1)), offseti(date, 1), floori(date), date;
};
interval.round = (date) => {
const d0 = interval(date), d1 = interval.ceil(date);
return date - d0 < d1 - date ? d0 : d1;
};
interval.offset = (date, step) => {
return offseti(date = /* @__PURE__ */ new Date(+date), step == null ? 1 : Math.floor(step)), date;
};
interval.range = (start, stop, step) => {
const range = [];
start = interval.ceil(start);
step = step == null ? 1 : Math.floor(step);
if (!(start < stop) || !(step > 0)) return range;
let previous;
do
range.push(previous = /* @__PURE__ */ new Date(+start)), offseti(start, step), floori(start);
while (previous < start && start < stop);
return range;
};
interval.filter = (test) => {
return timeInterval((date) => {
if (date >= date) while (floori(date), !test(date)) date.setTime(date - 1);
}, (date, step) => {
if (date >= date) if (step < 0) while (++step <= 0) while (offseti(date, -1), !test(date));
else while (--step >= 0) while (offseti(date, 1), !test(date));
});
};
if (count) {
interval.count = (start, end) => {
t0.setTime(+start), t1.setTime(+end);
floori(t0), floori(t1);
return Math.floor(count(t0, t1));
};
interval.every = (step) => {
step = Math.floor(step);
return !isFinite(step) || !(step > 0) ? null : !(step > 1) ? interval : interval.filter(field ? (d) => field(d) % step === 0 : (d) => interval.count(0, d) % step === 0);
};
}
return interval;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/millisecond.js
var millisecond = timeInterval(() => {}, (date, step) => {
date.setTime(+date + step);
}, (start, end) => {
return end - start;
});
millisecond.every = (k) => {
k = Math.floor(k);
if (!isFinite(k) || !(k > 0)) return null;
if (!(k > 1)) return millisecond;
return timeInterval((date) => {
date.setTime(Math.floor(date / k) * k);
}, (date, step) => {
date.setTime(+date + step * k);
}, (start, end) => {
return (end - start) / k;
});
};
millisecond.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/duration.js
var durationSecond = 1e3;
var durationMinute = durationSecond * 60;
var durationHour = durationMinute * 60;
var durationDay = durationHour * 24;
var durationWeek = durationDay * 7;
var durationMonth = durationDay * 30;
var durationYear = durationDay * 365;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/second.js
var second = timeInterval((date) => {
date.setTime(date - date.getMilliseconds());
}, (date, step) => {
date.setTime(+date + step * durationSecond);
}, (start, end) => {
return (end - start) / durationSecond;
}, (date) => {
return date.getUTCSeconds();
});
second.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/minute.js
var timeMinute = timeInterval((date) => {
date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond);
}, (date, step) => {
date.setTime(+date + step * durationMinute);
}, (start, end) => {
return (end - start) / durationMinute;
}, (date) => {
return date.getMinutes();
});
timeMinute.range;
var utcMinute = timeInterval((date) => {
date.setUTCSeconds(0, 0);
}, (date, step) => {
date.setTime(+date + step * durationMinute);
}, (start, end) => {
return (end - start) / durationMinute;
}, (date) => {
return date.getUTCMinutes();
});
utcMinute.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/hour.js
var timeHour = timeInterval((date) => {
date.setTime(date - date.getMilliseconds() - date.getSeconds() * durationSecond - date.getMinutes() * durationMinute);
}, (date, step) => {
date.setTime(+date + step * durationHour);
}, (start, end) => {
return (end - start) / durationHour;
}, (date) => {
return date.getHours();
});
timeHour.range;
var utcHour = timeInterval((date) => {
date.setUTCMinutes(0, 0, 0);
}, (date, step) => {
date.setTime(+date + step * durationHour);
}, (start, end) => {
return (end - start) / durationHour;
}, (date) => {
return date.getUTCHours();
});
utcHour.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/day.js
var timeDay = timeInterval((date) => date.setHours(0, 0, 0, 0), (date, step) => date.setDate(date.getDate() + step), (start, end) => (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationDay, (date) => date.getDate() - 1);
timeDay.range;
var utcDay = timeInterval((date) => {
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCDate(date.getUTCDate() + step);
}, (start, end) => {
return (end - start) / durationDay;
}, (date) => {
return date.getUTCDate() - 1;
});
utcDay.range;
var unixDay = timeInterval((date) => {
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCDate(date.getUTCDate() + step);
}, (start, end) => {
return (end - start) / durationDay;
}, (date) => {
return Math.floor(date / durationDay);
});
unixDay.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/week.js
function timeWeekday(i) {
return timeInterval((date) => {
date.setDate(date.getDate() - (date.getDay() + 7 - i) % 7);
date.setHours(0, 0, 0, 0);
}, (date, step) => {
date.setDate(date.getDate() + step * 7);
}, (start, end) => {
return (end - start - (end.getTimezoneOffset() - start.getTimezoneOffset()) * durationMinute) / durationWeek;
});
}
var timeSunday = timeWeekday(0);
var timeMonday = timeWeekday(1);
var timeTuesday = timeWeekday(2);
var timeWednesday = timeWeekday(3);
var timeThursday = timeWeekday(4);
var timeFriday = timeWeekday(5);
var timeSaturday = timeWeekday(6);
timeSunday.range;
timeMonday.range;
timeTuesday.range;
timeWednesday.range;
timeThursday.range;
timeFriday.range;
timeSaturday.range;
function utcWeekday(i) {
return timeInterval((date) => {
date.setUTCDate(date.getUTCDate() - (date.getUTCDay() + 7 - i) % 7);
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCDate(date.getUTCDate() + step * 7);
}, (start, end) => {
return (end - start) / durationWeek;
});
}
var utcSunday = utcWeekday(0);
var utcMonday = utcWeekday(1);
var utcTuesday = utcWeekday(2);
var utcWednesday = utcWeekday(3);
var utcThursday = utcWeekday(4);
var utcFriday = utcWeekday(5);
var utcSaturday = utcWeekday(6);
utcSunday.range;
utcMonday.range;
utcTuesday.range;
utcWednesday.range;
utcThursday.range;
utcFriday.range;
utcSaturday.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/month.js
var timeMonth = timeInterval((date) => {
date.setDate(1);
date.setHours(0, 0, 0, 0);
}, (date, step) => {
date.setMonth(date.getMonth() + step);
}, (start, end) => {
return end.getMonth() - start.getMonth() + (end.getFullYear() - start.getFullYear()) * 12;
}, (date) => {
return date.getMonth();
});
timeMonth.range;
var utcMonth = timeInterval((date) => {
date.setUTCDate(1);
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCMonth(date.getUTCMonth() + step);
}, (start, end) => {
return end.getUTCMonth() - start.getUTCMonth() + (end.getUTCFullYear() - start.getUTCFullYear()) * 12;
}, (date) => {
return date.getUTCMonth();
});
utcMonth.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/year.js
var timeYear = timeInterval((date) => {
date.setMonth(0, 1);
date.setHours(0, 0, 0, 0);
}, (date, step) => {
date.setFullYear(date.getFullYear() + step);
}, (start, end) => {
return end.getFullYear() - start.getFullYear();
}, (date) => {
return date.getFullYear();
});
timeYear.every = (k) => {
return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : timeInterval((date) => {
date.setFullYear(Math.floor(date.getFullYear() / k) * k);
date.setMonth(0, 1);
date.setHours(0, 0, 0, 0);
}, (date, step) => {
date.setFullYear(date.getFullYear() + step * k);
});
};
timeYear.range;
var utcYear = timeInterval((date) => {
date.setUTCMonth(0, 1);
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCFullYear(date.getUTCFullYear() + step);
}, (start, end) => {
return end.getUTCFullYear() - start.getUTCFullYear();
}, (date) => {
return date.getUTCFullYear();
});
utcYear.every = (k) => {
return !isFinite(k = Math.floor(k)) || !(k > 0) ? null : timeInterval((date) => {
date.setUTCFullYear(Math.floor(date.getUTCFullYear() / k) * k);
date.setUTCMonth(0, 1);
date.setUTCHours(0, 0, 0, 0);
}, (date, step) => {
date.setUTCFullYear(date.getUTCFullYear() + step * k);
});
};
utcYear.range;
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-npm-3.1.0-fb068fd1c9-10c0.zip/node_modules/d3-time/src/ticks.js
function ticker(year, month, week, day, hour, minute) {
const tickIntervals = [
[
second,
1,
durationSecond
],
[
second,
5,
5 * durationSecond
],
[
second,
15,
15 * durationSecond
],
[
second,
30,
30 * durationSecond
],
[
minute,
1,
durationMinute
],
[
minute,
5,
5 * durationMinute
],
[
minute,
15,
15 * durationMinute
],
[
minute,
30,
30 * durationMinute
],
[
hour,
1,
durationHour
],
[
hour,
3,
3 * durationHour
],
[
hour,
6,
6 * durationHour
],
[
hour,
12,
12 * durationHour
],
[
day,
1,
durationDay
],
[
day,
2,
2 * durationDay
],
[
week,
1,
durationWeek
],
[
month,
1,
durationMonth
],
[
month,
3,
3 * durationMonth
],
[
year,
1,
durationYear
]
];
function ticks(start, stop, count) {
const reverse = stop < start;
if (reverse) [start, stop] = [stop, start];
const interval = count && typeof count.range === "function" ? count : tickInterval(start, stop, count);
const ticks = interval ? interval.range(start, +stop + 1) : [];
return reverse ? ticks.reverse() : ticks;
}
function tickInterval(start, stop, count) {
const target = Math.abs(stop - start) / count;
const i = bisector(([, , step]) => step).right(tickIntervals, target);
if (i === tickIntervals.length) return year.every(tickStep(start / durationYear, stop / durationYear, count));
if (i === 0) return millisecond.every(Math.max(tickStep(start, stop, count), 1));
const [t, step] = tickIntervals[target / tickIntervals[i - 1][2] < tickIntervals[i][2] / target ? i - 1 : i];
return t.every(step);
}
return [ticks, tickInterval];
}
var [utcTicks, utcTickInterval] = ticker(utcYear, utcMonth, utcSunday, unixDay, utcHour, utcMinute);
var [timeTicks, timeTickInterval] = ticker(timeYear, timeMonth, timeSunday, timeDay, timeHour, timeMinute);
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-format-npm-4.1.0-7f352c4634-10c0.zip/node_modules/d3-time-format/src/locale.js
function localDate(d) {
if (0 <= d.y && d.y < 100) {
var date = new Date(-1, d.m, d.d, d.H, d.M, d.S, d.L);
date.setFullYear(d.y);
return date;
}
return new Date(d.y, d.m, d.d, d.H, d.M, d.S, d.L);
}
function utcDate(d) {
if (0 <= d.y && d.y < 100) {
var date = new Date(Date.UTC(-1, d.m, d.d, d.H, d.M, d.S, d.L));
date.setUTCFullYear(d.y);
return date;
}
return new Date(Date.UTC(d.y, d.m, d.d, d.H, d.M, d.S, d.L));
}
function newDate(y, m, d) {
return {
y,
m,
d,
H: 0,
M: 0,
S: 0,
L: 0
};
}
function formatLocale(locale) {
var locale_dateTime = locale.dateTime, locale_date = locale.date, locale_time = locale.time, locale_periods = locale.periods, locale_weekdays = locale.days, locale_shortWeekdays = locale.shortDays, locale_months = locale.months, locale_shortMonths = locale.shortMonths;
var periodRe = formatRe(locale_periods), periodLookup = formatLookup(locale_periods), weekdayRe = formatRe(locale_weekdays), weekdayLookup = formatLookup(locale_weekdays), shortWeekdayRe = formatRe(locale_shortWeekdays), shortWeekdayLookup = formatLookup(locale_shortWeekdays), monthRe = formatRe(locale_months), monthLookup = formatLookup(locale_months), shortMonthRe = formatRe(locale_shortMonths), shortMonthLookup = formatLookup(locale_shortMonths);
var formats = {
"a": formatShortWeekday,
"A": formatWeekday,
"b": formatShortMonth,
"B": formatMonth,
"c": null,
"d": formatDayOfMonth,
"e": formatDayOfMonth,
"f": formatMicroseconds,
"g": formatYearISO,
"G": formatFullYearISO,
"H": formatHour24,
"I": formatHour12,
"j": formatDayOfYear,
"L": formatMilliseconds,
"m": formatMonthNumber,
"M": formatMinutes,
"p": formatPeriod,
"q": formatQuarter,
"Q": formatUnixTimestamp,
"s": formatUnixTimestampSeconds,
"S": formatSeconds,
"u": formatWeekdayNumberMonday,
"U": formatWeekNumberSunday,
"V": formatWeekNumberISO,
"w": formatWeekdayNumberSunday,
"W": formatWeekNumberMonday,
"x": null,
"X": null,
"y": formatYear,
"Y": formatFullYear,
"Z": formatZone,
"%": formatLiteralPercent
};
var utcFormats = {
"a": formatUTCShortWeekday,
"A": formatUTCWeekday,
"b": formatUTCShortMonth,
"B": formatUTCMonth,
"c": null,
"d": formatUTCDayOfMonth,
"e": formatUTCDayOfMonth,
"f": formatUTCMicroseconds,
"g": formatUTCYearISO,
"G": formatUTCFullYearISO,
"H": formatUTCHour24,
"I": formatUTCHour12,
"j": formatUTCDayOfYear,
"L": formatUTCMilliseconds,
"m": formatUTCMonthNumber,
"M": formatUTCMinutes,
"p": formatUTCPeriod,
"q": formatUTCQuarter,
"Q": formatUnixTimestamp,
"s": formatUnixTimestampSeconds,
"S": formatUTCSeconds,
"u": formatUTCWeekdayNumberMonday,
"U": formatUTCWeekNumberSunday,
"V": formatUTCWeekNumberISO,
"w": formatUTCWeekdayNumberSunday,
"W": formatUTCWeekNumberMonday,
"x": null,
"X": null,
"y": formatUTCYear,
"Y": formatUTCFullYear,
"Z": formatUTCZone,
"%": formatLiteralPercent
};
var parses = {
"a": parseShortWeekday,
"A": parseWeekday,
"b": parseShortMonth,
"B": parseMonth,
"c": parseLocaleDateTime,
"d": parseDayOfMonth,
"e": parseDayOfMonth,
"f": parseMicroseconds,
"g": parseYear,
"G": parseFullYear,
"H": parseHour24,
"I": parseHour24,
"j": parseDayOfYear,
"L": parseMilliseconds,
"m": parseMonthNumber,
"M": parseMinutes,
"p": parsePeriod,
"q": parseQuarter,
"Q": parseUnixTimestamp,
"s": parseUnixTimestampSeconds,
"S": parseSeconds,
"u": parseWeekdayNumberMonday,
"U": parseWeekNumberSunday,
"V": parseWeekNumberISO,
"w": parseWeekdayNumberSunday,
"W": parseWeekNumberMonday,
"x": parseLocaleDate,
"X": parseLocaleTime,
"y": parseYear,
"Y": parseFullYear,
"Z": parseZone,
"%": parseLiteralPercent
};
formats.x = newFormat(locale_date, formats);
formats.X = newFormat(locale_time, formats);
formats.c = newFormat(locale_dateTime, formats);
utcFormats.x = newFormat(locale_date, utcFormats);
utcFormats.X = newFormat(locale_time, utcFormats);
utcFormats.c = newFormat(locale_dateTime, utcFormats);
function newFormat(specifier, formats) {
return function(date) {
var string = [], i = -1, j = 0, n = specifier.length, c, pad, format;
if (!(date instanceof Date)) date = /* @__PURE__ */ new Date(+date);
while (++i < n) if (specifier.charCodeAt(i) === 37) {
string.push(specifier.slice(j, i));
if ((pad = pads[c = specifier.charAt(++i)]) != null) c = specifier.charAt(++i);
else pad = c === "e" ? " " : "0";
if (format = formats[c]) c = format(date, pad);
string.push(c);
j = i + 1;
}
string.push(specifier.slice(j, i));
return string.join("");
};
}
function newParse(specifier, Z) {
return function(string) {
var d = newDate(1900, void 0, 1), i = parseSpecifier(d, specifier, string += "", 0), week, day;
if (i != string.length) return null;
if ("Q" in d) return new Date(d.Q);
if ("s" in d) return new Date(d.s * 1e3 + ("L" in d ? d.L : 0));
if (Z && !("Z" in d)) d.Z = 0;
if ("p" in d) d.H = d.H % 12 + d.p * 12;
if (d.m === void 0) d.m = "q" in d ? d.q : 0;
if ("V" in d) {
if (d.V < 1 || d.V > 53) return null;
if (!("w" in d)) d.w = 1;
if ("Z" in d) {
week = utcDate(newDate(d.y, 0, 1)), day = week.getUTCDay();
week = day > 4 || day === 0 ? utcMonday.ceil(week) : utcMonday(week);
week = utcDay.offset(week, (d.V - 1) * 7);
d.y = week.getUTCFullYear();
d.m = week.getUTCMonth();
d.d = week.getUTCDate() + (d.w + 6) % 7;
} else {
week = localDate(newDate(d.y, 0, 1)), day = week.getDay();
week = day > 4 || day === 0 ? timeMonday.ceil(week) : timeMonday(week);
week = timeDay.offset(week, (d.V - 1) * 7);
d.y = week.getFullYear();
d.m = week.getMonth();
d.d = week.getDate() + (d.w + 6) % 7;
}
} else if ("W" in d || "U" in d) {
if (!("w" in d)) d.w = "u" in d ? d.u % 7 : "W" in d ? 1 : 0;
day = "Z" in d ? utcDate(newDate(d.y, 0, 1)).getUTCDay() : localDate(newDate(d.y, 0, 1)).getDay();
d.m = 0;
d.d = "W" in d ? (d.w + 6) % 7 + d.W * 7 - (day + 5) % 7 : d.w + d.U * 7 - (day + 6) % 7;
}
if ("Z" in d) {
d.H += d.Z / 100 | 0;
d.M += d.Z % 100;
return utcDate(d);
}
return localDate(d);
};
}
function parseSpecifier(d, specifier, string, j) {
var i = 0, n = specifier.length, m = string.length, c, parse;
while (i < n) {
if (j >= m) return -1;
c = specifier.charCodeAt(i++);
if (c === 37) {
c = specifier.charAt(i++);
parse = parses[c in pads ? specifier.charAt(i++) : c];
if (!parse || (j = parse(d, string, j)) < 0) return -1;
} else if (c != string.charCodeAt(j++)) return -1;
}
return j;
}
function parsePeriod(d, string, i) {
var n = periodRe.exec(string.slice(i));
return n ? (d.p = periodLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
}
function parseShortWeekday(d, string, i) {
var n = shortWeekdayRe.exec(string.slice(i));
return n ? (d.w = shortWeekdayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
}
function parseWeekday(d, string, i) {
var n = weekdayRe.exec(string.slice(i));
return n ? (d.w = weekdayLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
}
function parseShortMonth(d, string, i) {
var n = shortMonthRe.exec(string.slice(i));
return n ? (d.m = shortMonthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
}
function parseMonth(d, string, i) {
var n = monthRe.exec(string.slice(i));
return n ? (d.m = monthLookup.get(n[0].toLowerCase()), i + n[0].length) : -1;
}
function parseLocaleDateTime(d, string, i) {
return parseSpecifier(d, locale_dateTime, string, i);
}
function parseLocaleDate(d, string, i) {
return parseSpecifier(d, locale_date, string, i);
}
function parseLocaleTime(d, string, i) {
return parseSpecifier(d, locale_time, string, i);
}
function formatShortWeekday(d) {
return locale_shortWeekdays[d.getDay()];
}
function formatWeekday(d) {
return locale_weekdays[d.getDay()];
}
function formatShortMonth(d) {
return locale_shortMonths[d.getMonth()];
}
function formatMonth(d) {
return locale_months[d.getMonth()];
}
function formatPeriod(d) {
return locale_periods[+(d.getHours() >= 12)];
}
function formatQuarter(d) {
return 1 + ~~(d.getMonth() / 3);
}
function formatUTCShortWeekday(d) {
return locale_shortWeekdays[d.getUTCDay()];
}
function formatUTCWeekday(d) {
return locale_weekdays[d.getUTCDay()];
}
function formatUTCShortMonth(d) {
return locale_shortMonths[d.getUTCMonth()];
}
function formatUTCMonth(d) {
return locale_months[d.getUTCMonth()];
}
function formatUTCPeriod(d) {
return locale_periods[+(d.getUTCHours() >= 12)];
}
function formatUTCQuarter(d) {
return 1 + ~~(d.getUTCMonth() / 3);
}
return {
format: function(specifier) {
var f = newFormat(specifier += "", formats);
f.toString = function() {
return specifier;
};
return f;
},
parse: function(specifier) {
var p = newParse(specifier += "", false);
p.toString = function() {
return specifier;
};
return p;
},
utcFormat: function(specifier) {
var f = newFormat(specifier += "", utcFormats);
f.toString = function() {
return specifier;
};
return f;
},
utcParse: function(specifier) {
var p = newParse(specifier += "", true);
p.toString = function() {
return specifier;
};
return p;
}
};
}
var pads = {
"-": "",
"_": " ",
"0": "0"
}, numberRe = /^\s*\d+/, percentRe = /^%/, requoteRe = /[\\^$*+?|[\]().{}]/g;
function pad(value, fill, width) {
var sign = value < 0 ? "-" : "", string = (sign ? -value : value) + "", length = string.length;
return sign + (length < width ? new Array(width - length + 1).join(fill) + string : string);
}
function requote(s) {
return s.replace(requoteRe, "\\$&");
}
function formatRe(names) {
return new RegExp("^(?:" + names.map(requote).join("|") + ")", "i");
}
function formatLookup(names) {
return new Map(names.map((name, i) => [name.toLowerCase(), i]));
}
function parseWeekdayNumberSunday(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 1));
return n ? (d.w = +n[0], i + n[0].length) : -1;
}
function parseWeekdayNumberMonday(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 1));
return n ? (d.u = +n[0], i + n[0].length) : -1;
}
function parseWeekNumberSunday(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.U = +n[0], i + n[0].length) : -1;
}
function parseWeekNumberISO(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.V = +n[0], i + n[0].length) : -1;
}
function parseWeekNumberMonday(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.W = +n[0], i + n[0].length) : -1;
}
function parseFullYear(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 4));
return n ? (d.y = +n[0], i + n[0].length) : -1;
}
function parseYear(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.y = +n[0] + (+n[0] > 68 ? 1900 : 2e3), i + n[0].length) : -1;
}
function parseZone(d, string, i) {
var n = /^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(string.slice(i, i + 6));
return n ? (d.Z = n[1] ? 0 : -(n[2] + (n[3] || "00")), i + n[0].length) : -1;
}
function parseQuarter(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 1));
return n ? (d.q = n[0] * 3 - 3, i + n[0].length) : -1;
}
function parseMonthNumber(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.m = n[0] - 1, i + n[0].length) : -1;
}
function parseDayOfMonth(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.d = +n[0], i + n[0].length) : -1;
}
function parseDayOfYear(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 3));
return n ? (d.m = 0, d.d = +n[0], i + n[0].length) : -1;
}
function parseHour24(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.H = +n[0], i + n[0].length) : -1;
}
function parseMinutes(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.M = +n[0], i + n[0].length) : -1;
}
function parseSeconds(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 2));
return n ? (d.S = +n[0], i + n[0].length) : -1;
}
function parseMilliseconds(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 3));
return n ? (d.L = +n[0], i + n[0].length) : -1;
}
function parseMicroseconds(d, string, i) {
var n = numberRe.exec(string.slice(i, i + 6));
return n ? (d.L = Math.floor(n[0] / 1e3), i + n[0].length) : -1;
}
function parseLiteralPercent(d, string, i) {
var n = percentRe.exec(string.slice(i, i + 1));
return n ? i + n[0].length : -1;
}
function parseUnixTimestamp(d, string, i) {
var n = numberRe.exec(string.slice(i));
return n ? (d.Q = +n[0], i + n[0].length) : -1;
}
function parseUnixTimestampSeconds(d, string, i) {
var n = numberRe.exec(string.slice(i));
return n ? (d.s = +n[0], i + n[0].length) : -1;
}
function formatDayOfMonth(d, p) {
return pad(d.getDate(), p, 2);
}
function formatHour24(d, p) {
return pad(d.getHours(), p, 2);
}
function formatHour12(d, p) {
return pad(d.getHours() % 12 || 12, p, 2);
}
function formatDayOfYear(d, p) {
return pad(1 + timeDay.count(timeYear(d), d), p, 3);
}
function formatMilliseconds(d, p) {
return pad(d.getMilliseconds(), p, 3);
}
function formatMicroseconds(d, p) {
return formatMilliseconds(d, p) + "000";
}
function formatMonthNumber(d, p) {
return pad(d.getMonth() + 1, p, 2);
}
function formatMinutes(d, p) {
return pad(d.getMinutes(), p, 2);
}
function formatSeconds(d, p) {
return pad(d.getSeconds(), p, 2);
}
function formatWeekdayNumberMonday(d) {
var day = d.getDay();
return day === 0 ? 7 : day;
}
function formatWeekNumberSunday(d, p) {
return pad(timeSunday.count(timeYear(d) - 1, d), p, 2);
}
function dISO(d) {
var day = d.getDay();
return day >= 4 || day === 0 ? timeThursday(d) : timeThursday.ceil(d);
}
function formatWeekNumberISO(d, p) {
d = dISO(d);
return pad(timeThursday.count(timeYear(d), d) + (timeYear(d).getDay() === 4), p, 2);
}
function formatWeekdayNumberSunday(d) {
return d.getDay();
}
function formatWeekNumberMonday(d, p) {
return pad(timeMonday.count(timeYear(d) - 1, d), p, 2);
}
function formatYear(d, p) {
return pad(d.getFullYear() % 100, p, 2);
}
function formatYearISO(d, p) {
d = dISO(d);
return pad(d.getFullYear() % 100, p, 2);
}
function formatFullYear(d, p) {
return pad(d.getFullYear() % 1e4, p, 4);
}
function formatFullYearISO(d, p) {
var day = d.getDay();
d = day >= 4 || day === 0 ? timeThursday(d) : timeThursday.ceil(d);
return pad(d.getFullYear() % 1e4, p, 4);
}
function formatZone(d) {
var z = d.getTimezoneOffset();
return (z > 0 ? "-" : (z *= -1, "+")) + pad(z / 60 | 0, "0", 2) + pad(z % 60, "0", 2);
}
function formatUTCDayOfMonth(d, p) {
return pad(d.getUTCDate(), p, 2);
}
function formatUTCHour24(d, p) {
return pad(d.getUTCHours(), p, 2);
}
function formatUTCHour12(d, p) {
return pad(d.getUTCHours() % 12 || 12, p, 2);
}
function formatUTCDayOfYear(d, p) {
return pad(1 + utcDay.count(utcYear(d), d), p, 3);
}
function formatUTCMilliseconds(d, p) {
return pad(d.getUTCMilliseconds(), p, 3);
}
function formatUTCMicroseconds(d, p) {
return formatUTCMilliseconds(d, p) + "000";
}
function formatUTCMonthNumber(d, p) {
return pad(d.getUTCMonth() + 1, p, 2);
}
function formatUTCMinutes(d, p) {
return pad(d.getUTCMinutes(), p, 2);
}
function formatUTCSeconds(d, p) {
return pad(d.getUTCSeconds(), p, 2);
}
function formatUTCWeekdayNumberMonday(d) {
var dow = d.getUTCDay();
return dow === 0 ? 7 : dow;
}
function formatUTCWeekNumberSunday(d, p) {
return pad(utcSunday.count(utcYear(d) - 1, d), p, 2);
}
function UTCdISO(d) {
var day = d.getUTCDay();
return day >= 4 || day === 0 ? utcThursday(d) : utcThursday.ceil(d);
}
function formatUTCWeekNumberISO(d, p) {
d = UTCdISO(d);
return pad(utcThursday.count(utcYear(d), d) + (utcYear(d).getUTCDay() === 4), p, 2);
}
function formatUTCWeekdayNumberSunday(d) {
return d.getUTCDay();
}
function formatUTCWeekNumberMonday(d, p) {
return pad(utcMonday.count(utcYear(d) - 1, d), p, 2);
}
function formatUTCYear(d, p) {
return pad(d.getUTCFullYear() % 100, p, 2);
}
function formatUTCYearISO(d, p) {
d = UTCdISO(d);
return pad(d.getUTCFullYear() % 100, p, 2);
}
function formatUTCFullYear(d, p) {
return pad(d.getUTCFullYear() % 1e4, p, 4);
}
function formatUTCFullYearISO(d, p) {
var day = d.getUTCDay();
d = day >= 4 || day === 0 ? utcThursday(d) : utcThursday.ceil(d);
return pad(d.getUTCFullYear() % 1e4, p, 4);
}
function formatUTCZone() {
return "+0000";
}
function formatLiteralPercent() {
return "%";
}
function formatUnixTimestamp(d) {
return +d;
}
function formatUnixTimestampSeconds(d) {
return Math.floor(+d / 1e3);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-time-format-npm-4.1.0-7f352c4634-10c0.zip/node_modules/d3-time-format/src/defaultLocale.js
var locale;
var timeFormat;
var utcFormat;
defaultLocale({
dateTime: "%x, %X",
date: "%-m/%-d/%Y",
time: "%-I:%M:%S %p",
periods: ["AM", "PM"],
days: [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
shortDays: [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
],
months: [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
shortMonths: [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
]
});
function defaultLocale(definition) {
locale = formatLocale(definition);
timeFormat = locale.format;
locale.parse;
utcFormat = locale.utcFormat;
locale.utcParse;
return locale;
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/time.js
function date(t) {
return new Date(t);
}
function number(t) {
return t instanceof Date ? +t : +/* @__PURE__ */ new Date(+t);
}
function calendar(ticks, tickInterval, year, month, week, day, hour, minute, second, format) {
var scale = continuous(), invert = scale.invert, domain = scale.domain;
var formatMillisecond = format(".%L"), formatSecond = format(":%S"), formatMinute = format("%I:%M"), formatHour = format("%I %p"), formatDay = format("%a %d"), formatWeek = format("%b %d"), formatMonth = format("%B"), formatYear = format("%Y");
function tickFormat(date) {
return (second(date) < date ? formatMillisecond : minute(date) < date ? formatSecond : hour(date) < date ? formatMinute : day(date) < date ? formatHour : month(date) < date ? week(date) < date ? formatDay : formatWeek : year(date) < date ? formatMonth : formatYear)(date);
}
scale.invert = function(y) {
return new Date(invert(y));
};
scale.domain = function(_) {
return arguments.length ? domain(Array.from(_, number)) : domain().map(date);
};
scale.ticks = function(interval) {
var d = domain();
return ticks(d[0], d[d.length - 1], interval == null ? 10 : interval);
};
scale.tickFormat = function(count, specifier) {
return specifier == null ? tickFormat : format(specifier);
};
scale.nice = function(interval) {
var d = domain();
if (!interval || typeof interval.range !== "function") interval = tickInterval(d[0], d[d.length - 1], interval == null ? 10 : interval);
return interval ? domain(nice(d, interval)) : scale;
};
scale.copy = function() {
return copy$1(scale, calendar(ticks, tickInterval, year, month, week, day, hour, minute, second, format));
};
return scale;
}
function time() {
return initRange.apply(calendar(timeTicks, timeTickInterval, timeYear, timeMonth, timeSunday, timeDay, timeHour, timeMinute, second, timeFormat).domain([new Date(2e3, 0, 1), new Date(2e3, 0, 2)]), arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/utcTime.js
function utcTime() {
return initRange.apply(calendar(utcTicks, utcTickInterval, utcYear, utcMonth, utcSunday, utcDay, utcHour, utcMinute, second, utcFormat).domain([Date.UTC(2e3, 0, 1), Date.UTC(2e3, 0, 2)]), arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/sequential.js
function transformer$1() {
var x0 = 0, x1 = 1, t0, t1, k10, transform, interpolator = identity$1, clamp = false, unknown;
function scale(x) {
return x == null || isNaN(x = +x) ? unknown : interpolator(k10 === 0 ? .5 : (x = (transform(x) - t0) * k10, clamp ? Math.max(0, Math.min(1, x)) : x));
}
scale.domain = function(_) {
return arguments.length ? ([x0, x1] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0), scale) : [x0, x1];
};
scale.clamp = function(_) {
return arguments.length ? (clamp = !!_, scale) : clamp;
};
scale.interpolator = function(_) {
return arguments.length ? (interpolator = _, scale) : interpolator;
};
function range(interpolate) {
return function(_) {
var r0, r1;
return arguments.length ? ([r0, r1] = _, interpolator = interpolate(r0, r1), scale) : [interpolator(0), interpolator(1)];
};
}
scale.range = range(value_default);
scale.rangeRound = range(round_default);
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
return function(t) {
transform = t, t0 = t(x0), t1 = t(x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0);
return scale;
};
}
function copy(source, target) {
return target.domain(source.domain()).interpolator(source.interpolator()).clamp(source.clamp()).unknown(source.unknown());
}
function sequential() {
var scale = linearish(transformer$1()(identity$1));
scale.copy = function() {
return copy(scale, sequential());
};
return initInterpolator.apply(scale, arguments);
}
function sequentialLog() {
var scale = loggish(transformer$1()).domain([1, 10]);
scale.copy = function() {
return copy(scale, sequentialLog()).base(scale.base());
};
return initInterpolator.apply(scale, arguments);
}
function sequentialSymlog() {
var scale = symlogish(transformer$1());
scale.copy = function() {
return copy(scale, sequentialSymlog()).constant(scale.constant());
};
return initInterpolator.apply(scale, arguments);
}
function sequentialPow() {
var scale = powish(transformer$1());
scale.copy = function() {
return copy(scale, sequentialPow()).exponent(scale.exponent());
};
return initInterpolator.apply(scale, arguments);
}
function sequentialSqrt() {
return sequentialPow.apply(null, arguments).exponent(.5);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/sequentialQuantile.js
function sequentialQuantile() {
var domain = [], interpolator = identity$1;
function scale(x) {
if (x != null && !isNaN(x = +x)) return interpolator((bisectRight(domain, x, 1) - 1) / (domain.length - 1));
}
scale.domain = function(_) {
if (!arguments.length) return domain.slice();
domain = [];
for (let d of _) if (d != null && !isNaN(d = +d)) domain.push(d);
domain.sort(ascending);
return scale;
};
scale.interpolator = function(_) {
return arguments.length ? (interpolator = _, scale) : interpolator;
};
scale.range = function() {
return domain.map((d, i) => interpolator(i / (domain.length - 1)));
};
scale.quantiles = function(n) {
return Array.from({ length: n + 1 }, (_, i) => quantile$1(domain, i / n));
};
scale.copy = function() {
return sequentialQuantile(interpolator).domain(domain);
};
return initInterpolator.apply(scale, arguments);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/d3-scale-npm-4.0.2-d17a53447b-10c0.zip/node_modules/d3-scale/src/diverging.js
function transformer() {
var x0 = 0, x1 = .5, x2 = 1, s = 1, t0, t1, t2, k10, k21, interpolator = identity$1, transform, clamp = false, unknown;
function scale(x) {
return isNaN(x = +x) ? unknown : (x = .5 + ((x = +transform(x)) - t1) * (s * x < s * t1 ? k10 : k21), interpolator(clamp ? Math.max(0, Math.min(1, x)) : x));
}
scale.domain = function(_) {
return arguments.length ? ([x0, x1, x2] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), t2 = transform(x2 = +x2), k10 = t0 === t1 ? 0 : .5 / (t1 - t0), k21 = t1 === t2 ? 0 : .5 / (t2 - t1), s = t1 < t0 ? -1 : 1, scale) : [
x0,
x1,
x2
];
};
scale.clamp = function(_) {
return arguments.length ? (clamp = !!_, scale) : clamp;
};
scale.interpolator = function(_) {
return arguments.length ? (interpolator = _, scale) : interpolator;
};
function range(interpolate) {
return function(_) {
var r0, r1, r2;
return arguments.length ? ([r0, r1, r2] = _, interpolator = piecewise(interpolate, [
r0,
r1,
r2
]), scale) : [
interpolator(0),
interpolator(.5),
interpolator(1)
];
};
}
scale.range = range(value_default);
scale.rangeRound = range(round_default);
scale.unknown = function(_) {
return arguments.length ? (unknown = _, scale) : unknown;
};
return function(t) {
transform = t, t0 = t(x0), t1 = t(x1), t2 = t(x2), k10 = t0 === t1 ? 0 : .5 / (t1 - t0), k21 = t1 === t2 ? 0 : .5 / (t2 - t1), s = t1 < t0 ? -1 : 1;
return scale;
};
}
function diverging() {
var scale = linearish(transformer()(identity$1));
scale.copy = function() {
return copy(scale, diverging());
};
return initInterpolator.apply(scale, arguments);
}
function divergingLog() {
var scale = loggish(transformer()).domain([
.1,
1,
10
]);
scale.copy = function() {
return copy(scale, divergingLog()).base(scale.base());
};
return initInterpolator.apply(scale, arguments);
}
function divergingSymlog() {
var scale = symlogish(transformer());
scale.copy = function() {
return copy(scale, divergingSymlog()).constant(scale.constant());
};
return initInterpolator.apply(scale, arguments);
}
function divergingPow() {
var scale = powish(transformer());
scale.copy = function() {
return copy(scale, divergingPow()).exponent(scale.exponent());
};
return initInterpolator.apply(scale, arguments);
}
function divergingSqrt() {
return divergingPow.apply(null, arguments).exponent(.5);
}
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/victory-vendor-npm-37.3.6-7dc2baabe5-10c0.zip/node_modules/victory-vendor/es/d3-scale.js
var d3_scale_exports = /* @__PURE__ */ __exportAll({
scaleBand: () => band,
scaleDiverging: () => diverging,
scaleDivergingLog: () => divergingLog,
scaleDivergingPow: () => divergingPow,
scaleDivergingSqrt: () => divergingSqrt,
scaleDivergingSymlog: () => divergingSymlog,
scaleIdentity: () => identity,
scaleImplicit: () => implicit,
scaleLinear: () => linear,
scaleLog: () => log,
scaleOrdinal: () => ordinal,
scalePoint: () => point,
scalePow: () => pow,
scaleQuantile: () => quantile,
scaleQuantize: () => quantize,
scaleRadial: () => radial,
scaleSequential: () => sequential,
scaleSequentialLog: () => sequentialLog,
scaleSequentialPow: () => sequentialPow,
scaleSequentialQuantile: () => sequentialQuantile,
scaleSequentialSqrt: () => sequentialSqrt,
scaleSequentialSymlog: () => sequentialSymlog,
scaleSqrt: () => sqrt,
scaleSymlog: () => symlog,
scaleThreshold: () => threshold,
scaleTime: () => time,
scaleUtc: () => utcTime,
tickFormat: () => tickFormat
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineConfiguredScale.js
function getD3ScaleFromType(realScaleType) {
var scales = d3_scale_exports;
if (realScaleType in scales && typeof scales[realScaleType] === "function") return scales[realScaleType]();
var name = "scale".concat(upperFirst(realScaleType));
if (name in scales && typeof scales[name] === "function") return scales[name]();
}
/**
* Converts external scale definition into internal RechartsScale definition.
* @param scale custom function scale - if you have the `string` from outside, use `combineRealScaleType` first which will validate it and return RechartsScaleType or undefined
* @param axisDomain
* @param axisRange
*/
function combineConfiguredScaleInternal(scale, axisDomain, axisRange) {
if (typeof scale === "function") return scale.copy().domain(axisDomain).range(axisRange);
if (scale == null) return;
var d3ScaleFunction = getD3ScaleFromType(scale);
if (d3ScaleFunction == null) return;
d3ScaleFunction.domain(axisDomain).range(axisRange);
return d3ScaleFunction;
}
function combineConfiguredScale(axis, realScaleType, axisDomain, axisRange) {
if (axisDomain == null || axisRange == null) return;
if (typeof axis.scale === "function") return combineConfiguredScaleInternal(axis.scale, axisDomain, axisRange);
return combineConfiguredScaleInternal(realScaleType, axisDomain, axisRange);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineRealScaleType.js
function getD3ScaleName(name) {
return "scale".concat(upperFirst(name));
}
function isSupportedScaleName(name) {
return getD3ScaleName(name) in d3_scale_exports;
}
var combineRealScaleType = (axisConfig, hasBar, chartType) => {
if (axisConfig == null) return;
var { scale, type } = axisConfig;
if (scale === "auto") {
if (type === "category" && chartType && (chartType.indexOf("LineChart") >= 0 || chartType.indexOf("AreaChart") >= 0 || chartType.indexOf("ComposedChart") >= 0 && !hasBar)) return "point";
if (type === "category") return "band";
return "linear";
}
if (typeof scale === "string") return isSupportedScaleName(scale) ? scale : "point";
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/scale/createCategoricalInverse.js
/**
* Binary search to find the index where x would fit in array a.
* Works for arrays that are sorted both ascending and descending.
*
* Unlike d3.bisect, this implementation handles both ascending and descending arrays.
*
* @param haystack Sorted array of numbers
* @param needle Number to find the insertion index for
* @returns Index where x would fit in array a
*/
function bisect(haystack, needle) {
var lo = 0;
var hi = haystack.length;
var ascending = haystack[0] < haystack[haystack.length - 1];
while (lo < hi) {
var mid = Math.floor((lo + hi) / 2);
if (ascending ? haystack[mid] < needle : haystack[mid] > needle) lo = mid + 1;
else hi = mid;
}
return lo;
}
/**
* Computes an inverse scale function for categorical/ordinal scales.
* Uses bisect to find the closest domain value for a given pixel coordinate.
*/
function createCategoricalInverse(scale, allDataPointsOnAxis) {
if (!scale) return;
var domain = allDataPointsOnAxis !== null && allDataPointsOnAxis !== void 0 ? allDataPointsOnAxis : scale.domain();
var pixelPositions = domain.map((d) => {
var _scale;
return (_scale = scale(d)) !== null && _scale !== void 0 ? _scale : 0;
});
var range = scale.range();
if (domain.length === 0 || range.length < 2) return;
return (pixelValue) => {
var _pixelPositions, _pixelPositions$index;
var index = bisect(pixelPositions, pixelValue);
if (index <= 0) return domain[0];
if (index >= domain.length) return domain[domain.length - 1];
var leftPixel = (_pixelPositions = pixelPositions[index - 1]) !== null && _pixelPositions !== void 0 ? _pixelPositions : 0;
var rightPixel = (_pixelPositions$index = pixelPositions[index]) !== null && _pixelPositions$index !== void 0 ? _pixelPositions$index : 0;
if (Math.abs(pixelValue - leftPixel) <= Math.abs(pixelValue - rightPixel)) return domain[index - 1];
return domain[index];
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineInverseScaleFunction.js
function combineInverseScaleFunction(configuredScale) {
if (configuredScale == null) return;
if ("invert" in configuredScale && typeof configuredScale.invert === "function") return configuredScale.invert.bind(configuredScale);
return createCategoricalInverse(configuredScale, void 0);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/axisSelectors.js
function ownKeys$54(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$54(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$54(Object(t), !0).forEach(function(r) {
_defineProperty$56(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$54(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$56(e, r, t) {
return (r = _toPropertyKey$56(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$56(t) {
var i = _toPrimitive$56(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$56(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var defaultNumericDomain = [0, "auto"];
/**
* If an axis is not explicitly defined as an element,
* we still need to render something in the chart and we need
* some object to hold the domain and default settings.
*/
var implicitXAxis = {
allowDataOverflow: false,
allowDecimals: true,
allowDuplicatedCategory: true,
angle: 0,
dataKey: void 0,
domain: void 0,
height: 30,
hide: true,
id: 0,
includeHidden: false,
interval: "preserveEnd",
minTickGap: 5,
mirror: false,
name: void 0,
orientation: "bottom",
padding: {
left: 0,
right: 0
},
reversed: false,
scale: "auto",
tick: true,
tickCount: 5,
tickFormatter: void 0,
ticks: void 0,
type: "category",
unit: void 0,
niceTicks: "auto"
};
var selectXAxisSettingsNoDefaults = (state, axisId) => {
return state.cartesianAxis.xAxis[axisId];
};
var selectXAxisSettings = (state, axisId) => {
var axis = selectXAxisSettingsNoDefaults(state, axisId);
if (axis == null) return implicitXAxis;
return axis;
};
/**
* If an axis is not explicitly defined as an element,
* we still need to render something in the chart and we need
* some object to hold the domain and default settings.
*/
var implicitYAxis = {
allowDataOverflow: false,
allowDecimals: true,
allowDuplicatedCategory: true,
angle: 0,
dataKey: void 0,
domain: defaultNumericDomain,
hide: true,
id: 0,
includeHidden: false,
interval: "preserveEnd",
minTickGap: 5,
mirror: false,
name: void 0,
orientation: "left",
padding: {
top: 0,
bottom: 0
},
reversed: false,
scale: "auto",
tick: true,
tickCount: 5,
tickFormatter: void 0,
ticks: void 0,
type: "number",
unit: void 0,
niceTicks: "auto",
width: 60
};
var selectYAxisSettingsNoDefaults = (state, axisId) => {
return state.cartesianAxis.yAxis[axisId];
};
var selectYAxisSettings = (state, axisId) => {
var axis = selectYAxisSettingsNoDefaults(state, axisId);
if (axis == null) return implicitYAxis;
return axis;
};
var implicitZAxis = {
domain: [0, "auto"],
includeHidden: false,
reversed: false,
allowDataOverflow: false,
allowDuplicatedCategory: false,
dataKey: void 0,
id: 0,
name: "",
range: [64, 64],
scale: "auto",
type: "number",
unit: ""
};
var selectZAxisSettings = (state, axisId) => {
var axis = state.cartesianAxis.zAxis[axisId];
if (axis == null) return implicitZAxis;
return axis;
};
var selectBaseAxis = (state, axisType, axisId) => {
switch (axisType) {
case "xAxis": return selectXAxisSettings(state, axisId);
case "yAxis": return selectYAxisSettings(state, axisId);
case "zAxis": return selectZAxisSettings(state, axisId);
case "angleAxis": return selectAngleAxis(state, axisId);
case "radiusAxis": return selectRadiusAxis(state, axisId);
default: throw new Error("Unexpected axis type: ".concat(axisType));
}
};
var selectCartesianAxisSettings = (state, axisType, axisId) => {
switch (axisType) {
case "xAxis": return selectXAxisSettings(state, axisId);
case "yAxis": return selectYAxisSettings(state, axisId);
default: throw new Error("Unexpected axis type: ".concat(axisType));
}
};
/**
* Selects either an X or Y axis. Doesn't work with Z axis - for that, instead use selectBaseAxis.
* @param state Root state
* @param axisType xAxis | yAxis
* @param axisId xAxisId | yAxisId
* @returns axis settings object
*/
var selectRenderableAxisSettings = (state, axisType, axisId) => {
switch (axisType) {
case "xAxis": return selectXAxisSettings(state, axisId);
case "yAxis": return selectYAxisSettings(state, axisId);
case "angleAxis": return selectAngleAxis(state, axisId);
case "radiusAxis": return selectRadiusAxis(state, axisId);
default: throw new Error("Unexpected axis type: ".concat(axisType));
}
};
/**
* @param state RechartsRootState
* @return boolean true if there is at least one Bar or RadialBar
*/
var selectHasBar = (state) => state.graphicalItems.cartesianItems.some((item) => item.type === "bar") || state.graphicalItems.polarItems.some((item) => item.type === "radialBar");
/**
* Filters CartesianGraphicalItemSettings by the relevant axis ID
* @param axisType 'xAxis' | 'yAxis' | 'zAxis' | 'radiusAxis' | 'angleAxis'
* @param axisId from props, defaults to 0
*
* @returns Predicate function that return true for CartesianGraphicalItemSettings that are relevant to the specified axis
*/
function itemAxisPredicate(axisType, axisId) {
return (item) => {
switch (axisType) {
case "xAxis": return "xAxisId" in item && item.xAxisId === axisId;
case "yAxis": return "yAxisId" in item && item.yAxisId === axisId;
case "zAxis": return "zAxisId" in item && item.zAxisId === axisId;
case "angleAxis": return "angleAxisId" in item && item.angleAxisId === axisId;
case "radiusAxis": return "radiusAxisId" in item && item.radiusAxisId === axisId;
default: return false;
}
};
}
var selectUnfilteredCartesianItems = (state) => state.graphicalItems.cartesianItems;
var selectAxisPredicate$1 = createSelector([pickAxisType, pickAxisId], itemAxisPredicate);
var combineGraphicalItemsSettings = (graphicalItems, axisSettings, axisPredicate) => graphicalItems.filter(axisPredicate).filter((item) => {
if ((axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.includeHidden) === true) return true;
return !item.hide;
});
var selectCartesianItemsSettings = createSelector([
selectUnfilteredCartesianItems,
selectBaseAxis,
selectAxisPredicate$1
], combineGraphicalItemsSettings, { memoizeOptions: { resultEqualityCheck: emptyArraysAreEqualCheck } });
var selectStackedCartesianItemsSettings = createSelector([selectCartesianItemsSettings], (cartesianItems) => {
return cartesianItems.filter((item) => item.type === "area" || item.type === "bar").filter(isStacked);
});
var filterGraphicalNotStackedItems = (cartesianItems) => cartesianItems.filter((item) => !("stackId" in item) || item.stackId === void 0);
var selectCartesianItemsSettingsExceptStacked = createSelector([selectCartesianItemsSettings], filterGraphicalNotStackedItems);
var combineGraphicalItemsData = (cartesianItems) => cartesianItems.map((item) => item.data).filter(Boolean).flat(1);
/**
* Returns true if at least one graphical item does not define its own `data` prop
* and therefore relies on the chart-level data.
* This is used to decide whether to merge chart-level data into the axis domain calculation.
*/
var selectAnyCartesianItemsUsesChartData = createSelector([selectCartesianItemsSettings], (items) => items.some((item) => !item.data));
/**
* This is a "cheap" selector - it returns the data but doesn't iterate them, so it is not sensitive on the array length.
* Also does not apply dataKey yet.
* @param state RechartsRootState
* @returns data defined on the chart graphical items, such as Line or Scatter or Pie, and filtered with appropriate dataKey
*/
var selectCartesianGraphicalItemsData = createSelector([selectCartesianItemsSettings], combineGraphicalItemsData, { memoizeOptions: { resultEqualityCheck: emptyArraysAreEqualCheck } });
var combineDisplayedData = (graphicalItemsData, _ref) => {
var { chartData = [], dataStartIndex, dataEndIndex } = _ref;
if (graphicalItemsData.length > 0) return graphicalItemsData;
return chartData.slice(dataStartIndex, dataEndIndex + 1);
};
/**
* This selector will return all data there is in the chart: graphical items, chart root, all together.
* Useful for figuring out an axis domain (because that needs to know of everything),
* not useful for rendering individual graphical elements (because they need to know which data is theirs and which is not).
*
* This function will discard the original indexes, so it is also not useful for anything that depends on ordering.
*/
var selectDisplayedData$1 = createSelector([selectCartesianGraphicalItemsData, selectChartDataWithIndexesIfNotInPanoramaPosition4], combineDisplayedData);
var combineAppliedValues = (data, axisSettings, items) => {
if ((axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.dataKey) != null) return data.map((item) => ({ value: getValueByDataKey(item, axisSettings.dataKey) }));
if (items.length > 0) return items.map((item) => item.dataKey).flatMap((dataKey) => data.map((entry) => ({ value: getValueByDataKey(entry, dataKey) })));
return data.map((entry) => ({ value: entry }));
};
/**
* Computes applied values from graphical items data plus, when needed, chart-level data.
*
* When at least one graphical item has no own `data` (it relies on chart root data) AND the axis has a `dataKey`,
* AND there are other items that do have their own data (meaning `displayedData` only contains graphical items data,
* not chart root data), we also include chart root data values so the axis domain covers all categories,
* including those only present in the chart root data but not in any graphical item's own data.
*
* Values from chart root data that don't match the axis dataKey (undefined) are excluded.
*/
var combineAllAppliedValues = (displayedData, axisSettings, items, _ref2, anyItemUsesChartData, graphicalItemsData) => {
var { chartData = [], dataStartIndex, dataEndIndex } = _ref2;
var appliedValues = combineAppliedValues(displayedData, axisSettings, items);
if (anyItemUsesChartData && (axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.dataKey) != null && graphicalItemsData.length > 0) return [...chartData.slice(dataStartIndex, dataEndIndex + 1).map((item) => ({ value: getValueByDataKey(item, axisSettings.dataKey) })).filter((av) => av.value != null), ...appliedValues];
return appliedValues;
};
/**
* This selector will return all values with the appropriate dataKey applied on them.
* Which dataKey is appropriate depends on where it is defined.
*
* This is an expensive selector - it will iterate all data and compute their value using the provided dataKey.
*/
var selectAllAppliedValues = createSelector([
selectDisplayedData$1,
selectBaseAxis,
selectCartesianItemsSettings,
selectChartDataWithIndexesIfNotInPanoramaPosition4,
selectAnyCartesianItemsUsesChartData,
selectCartesianGraphicalItemsData
], combineAllAppliedValues);
function makeNumber(val) {
if (isNumOrStr(val) || val instanceof Date) {
var n = Number(val);
if (isWellBehavedNumber(n)) return n;
}
}
function makeDomain(val) {
if (Array.isArray(val)) {
var attempt = [makeNumber(val[0]), makeNumber(val[1])];
if (isWellFormedNumberDomain(attempt)) return attempt;
return;
}
var n = makeNumber(val);
if (n == null) return;
return [n, n];
}
function onlyAllowNumbers(data) {
return data.map(makeNumber).filter(isNotNil);
}
function sortBy$1(a, b) {
var aNum = makeNumber(a);
var bNum = makeNumber(b);
if (aNum == null && bNum == null) return 0;
if (aNum == null) return -1;
if (bNum == null) return 1;
return aNum - bNum;
}
var selectSortedDataPoints = createSelector([selectAllAppliedValues], (appliedData) => {
return appliedData === null || appliedData === void 0 ? void 0 : appliedData.map((item) => item.value).sort(sortBy$1);
});
function isErrorBarRelevantForAxisType(axisType, errorBar) {
switch (axisType) {
case "xAxis": return errorBar.direction === "x";
case "yAxis": return errorBar.direction === "y";
default: return false;
}
}
/**
* @param entry One item in the 'data' array. Could be anything really - this is defined externally. This is the raw, before dataKey application
* @param appliedValue This is the result of applying the 'main' dataKey on the `entry`.
* @param relevantErrorBars Error bars that are relevant for the current axis and layout and all that.
* @return either undefined or an array of ErrorValue
*/
function getErrorDomainByDataKey(entry, appliedValue, relevantErrorBars) {
if (!relevantErrorBars) return [];
if (!relevantErrorBars.length) return [];
var appliedNumericValue;
if (typeof appliedValue === "number" && !isNan(appliedValue)) appliedNumericValue = appliedValue;
else if (Array.isArray(appliedValue)) {
var numericRangeValues = onlyAllowNumbers(appliedValue);
if (numericRangeValues.length > 0) appliedNumericValue = Math.max(...numericRangeValues);
}
if (appliedNumericValue == null) return [];
return onlyAllowNumbers(relevantErrorBars.flatMap((eb) => {
var errorValue = getValueByDataKey(entry, eb.dataKey);
var lowBound, highBound;
if (Array.isArray(errorValue)) [lowBound, highBound] = errorValue;
else lowBound = highBound = errorValue;
if (!isWellBehavedNumber(lowBound) || !isWellBehavedNumber(highBound)) return;
return [appliedNumericValue - lowBound, appliedNumericValue + highBound];
}));
}
var selectTooltipAxis = (state) => {
return selectRenderableAxisSettings(state, selectTooltipAxisType(state), selectTooltipAxisId(state));
};
var selectTooltipAxisDataKey = createSelector([selectTooltipAxis], (axis) => axis === null || axis === void 0 ? void 0 : axis.dataKey);
var selectDisplayedStackedData = createSelector([
selectStackedCartesianItemsSettings,
selectChartDataWithIndexesIfNotInPanoramaPosition4,
selectTooltipAxis
], combineDisplayedStackedData);
var combineStackGroups = (displayedData, items, stackOffsetType, reverseStackOrder) => {
var itemsGroup = items.reduce((acc, item) => {
if (item.stackId == null) return acc;
var stack = acc[item.stackId];
if (stack == null) stack = [];
stack.push(item);
acc[item.stackId] = stack;
return acc;
}, {});
return Object.fromEntries(Object.entries(itemsGroup).map((_ref3) => {
var [stackId, graphicalItems] = _ref3;
var orderedGraphicalItems = reverseStackOrder ? [...graphicalItems].reverse() : graphicalItems;
return [stackId, {
stackedData: getStackedData(displayedData, orderedGraphicalItems.map(getStackSeriesIdentifier), stackOffsetType),
graphicalItems: orderedGraphicalItems
}];
}));
};
/**
* Stack groups are groups of graphical items that stack on each other.
* Stack is a function of axis type (X, Y), axis ID, and stack ID.
* Graphical items that do not have a stack ID are not going to be present in stack groups.
*/
var selectStackGroups$1 = createSelector([
selectDisplayedStackedData,
selectStackedCartesianItemsSettings,
selectStackOffsetType,
selectReverseStackOrder
], combineStackGroups);
var combineDomainOfStackGroups = (stackGroups, _ref4, axisType, domainFromUserPreference) => {
var { dataStartIndex, dataEndIndex } = _ref4;
if (domainFromUserPreference != null) return;
if (axisType === "zAxis") return;
var domainOfStackGroups = getDomainOfStackGroups(stackGroups, dataStartIndex, dataEndIndex);
if (domainOfStackGroups != null && domainOfStackGroups[0] === 0 && domainOfStackGroups[1] === 0) return;
return domainOfStackGroups;
};
var selectAllowsDataOverflow = createSelector([selectBaseAxis], (axisSettings) => axisSettings.allowDataOverflow);
var getDomainDefinition = (axisSettings) => {
var _axisSettings$domain;
if (axisSettings == null || !("domain" in axisSettings)) return defaultNumericDomain;
if (axisSettings.domain != null) return axisSettings.domain;
if ("ticks" in axisSettings && axisSettings.ticks != null) {
if (axisSettings.type === "number") {
var allValues = onlyAllowNumbers(axisSettings.ticks);
return [Math.min(...allValues), Math.max(...allValues)];
}
if (axisSettings.type === "category") return axisSettings.ticks.map(String);
}
return (_axisSettings$domain = axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.domain) !== null && _axisSettings$domain !== void 0 ? _axisSettings$domain : defaultNumericDomain;
};
var selectDomainDefinition = createSelector([selectBaseAxis], getDomainDefinition);
/**
* Under certain circumstances, we can determine the domain without looking at the data at all.
* This is the case when the domain is explicitly specified as numbers, or when it is specified
* as 'auto' or 'dataMin'/'dataMax' and data overflow is not allowed.
*
* In that case, this function will return the domain, otherwise it returns undefined.
*
* This is an optimization to avoid unnecessary data processing.
* @param state
* @param axisType
* @param axisId
* @param isPanorama
*/
var selectDomainFromUserPreference = createSelector([selectDomainDefinition, selectAllowsDataOverflow], numericalDomainSpecifiedWithoutRequiringData);
var selectDomainOfStackGroups = createSelector([
selectStackGroups$1,
selectChartDataWithIndexes,
pickAxisType,
selectDomainFromUserPreference
], combineDomainOfStackGroups, { memoizeOptions: { resultEqualityCheck: numberDomainEqualityCheck } });
var selectAllErrorBarSettings = (state) => state.errorBars;
var combineRelevantErrorBarSettings = (cartesianItemsSettings, allErrorBarSettings, axisType) => {
return cartesianItemsSettings.flatMap((item) => {
return allErrorBarSettings[item.id];
}).filter(Boolean).filter((e) => {
return isErrorBarRelevantForAxisType(axisType, e);
});
};
var mergeDomains = function mergeDomains() {
for (var _len = arguments.length, domains = new Array(_len), _key = 0; _key < _len; _key++) domains[_key] = arguments[_key];
var allDomains = domains.filter(Boolean);
if (allDomains.length === 0) return;
var allValues = allDomains.flat();
return [Math.min(...allValues), Math.max(...allValues)];
};
var combineDomainOfAllAppliedNumericalValuesIncludingErrorValues = function combineDomainOfAllAppliedNumericalValuesIncludingErrorValues(displayedData, axisSettings, items, errorBars, axisType) {
var chartDataSlice = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : [];
var lowerEnd, upperEnd;
if (items.length > 0) items.forEach((item) => {
var _errorBars$item$id;
var itemData = item.data != null ? [...item.data] : chartDataSlice;
var relevantErrorBars = (_errorBars$item$id = errorBars[item.id]) === null || _errorBars$item$id === void 0 ? void 0 : _errorBars$item$id.filter((errorBar) => isErrorBarRelevantForAxisType(axisType, errorBar));
itemData.forEach((entry) => {
var _axisSettings$dataKey;
var valueByDataKey = getValueByDataKey(entry, (_axisSettings$dataKey = axisSettings.dataKey) !== null && _axisSettings$dataKey !== void 0 ? _axisSettings$dataKey : item.dataKey);
var errorDomain = getErrorDomainByDataKey(entry, valueByDataKey, relevantErrorBars);
if (errorDomain.length >= 2) {
var localLower = Math.min(...errorDomain);
var localUpper = Math.max(...errorDomain);
if (lowerEnd == null || localLower < lowerEnd) lowerEnd = localLower;
if (upperEnd == null || localUpper > upperEnd) upperEnd = localUpper;
}
var dataValueDomain = makeDomain(valueByDataKey);
if (dataValueDomain != null) {
lowerEnd = lowerEnd == null ? dataValueDomain[0] : Math.min(lowerEnd, dataValueDomain[0]);
upperEnd = upperEnd == null ? dataValueDomain[1] : Math.max(upperEnd, dataValueDomain[1]);
}
});
});
if ((axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.dataKey) != null && items.length === 0) displayedData.forEach((item) => {
var dataValueDomain = makeDomain(getValueByDataKey(item, axisSettings.dataKey));
if (dataValueDomain != null) {
lowerEnd = lowerEnd == null ? dataValueDomain[0] : Math.min(lowerEnd, dataValueDomain[0]);
upperEnd = upperEnd == null ? dataValueDomain[1] : Math.max(upperEnd, dataValueDomain[1]);
}
});
if (isWellBehavedNumber(lowerEnd) && isWellBehavedNumber(upperEnd)) return [lowerEnd, upperEnd];
};
var selectDomainOfAllAppliedNumericalValuesIncludingErrorValues$1 = createSelector([
selectDisplayedData$1,
selectBaseAxis,
selectCartesianItemsSettingsExceptStacked,
selectAllErrorBarSettings,
pickAxisType,
selectChartDataSliceIfNotInPanorama
], combineDomainOfAllAppliedNumericalValuesIncludingErrorValues, { memoizeOptions: { resultEqualityCheck: numberDomainEqualityCheck } });
function onlyAllowNumbersAndStringsAndDates(item) {
var { value } = item;
if (isNumOrStr(value) || value instanceof Date) return value;
}
var computeDomainOfTypeCategory = (allDataSquished, axisSettings, isCategorical) => {
var categoricalDomain = allDataSquished.map(onlyAllowNumbersAndStringsAndDates).filter((v) => v != null);
if (isCategorical && (axisSettings.dataKey == null || axisSettings.allowDuplicatedCategory && hasDuplicate(categoricalDomain))) return (0, import_range.default)(0, allDataSquished.length);
if (axisSettings.allowDuplicatedCategory) return categoricalDomain;
return Array.from(new Set(categoricalDomain));
};
var selectReferenceDots = (state) => state.referenceElements.dots;
var filterReferenceElements = (elements, axisType, axisId) => {
return elements.filter((el) => el.ifOverflow === "extendDomain").filter((el) => {
if (axisType === "xAxis") return el.xAxisId === axisId;
return el.yAxisId === axisId;
});
};
var selectReferenceDotsByAxis = createSelector([
selectReferenceDots,
pickAxisType,
pickAxisId
], filterReferenceElements);
var selectReferenceAreas = (state) => state.referenceElements.areas;
var selectReferenceAreasByAxis = createSelector([
selectReferenceAreas,
pickAxisType,
pickAxisId
], filterReferenceElements);
var selectReferenceLines = (state) => state.referenceElements.lines;
var selectReferenceLinesByAxis = createSelector([
selectReferenceLines,
pickAxisType,
pickAxisId
], filterReferenceElements);
var combineDotsDomain = (dots, axisType) => {
if (dots == null) return;
var allCoords = onlyAllowNumbers(dots.map((dot) => axisType === "xAxis" ? dot.x : dot.y));
if (allCoords.length === 0) return;
return [Math.min(...allCoords), Math.max(...allCoords)];
};
var selectReferenceDotsDomain = createSelector(selectReferenceDotsByAxis, pickAxisType, combineDotsDomain);
var combineAreasDomain = (areas, axisType) => {
if (areas == null) return;
var allCoords = onlyAllowNumbers(areas.flatMap((area) => [axisType === "xAxis" ? area.x1 : area.y1, axisType === "xAxis" ? area.x2 : area.y2]));
if (allCoords.length === 0) return;
return [Math.min(...allCoords), Math.max(...allCoords)];
};
var selectReferenceAreasDomain = createSelector([selectReferenceAreasByAxis, pickAxisType], combineAreasDomain);
function extractXCoordinates(line) {
var _line$segment;
if (line.x != null) return onlyAllowNumbers([line.x]);
var segmentCoordinates = (_line$segment = line.segment) === null || _line$segment === void 0 ? void 0 : _line$segment.map((s) => s.x);
if (segmentCoordinates == null || segmentCoordinates.length === 0) return [];
return onlyAllowNumbers(segmentCoordinates);
}
function extractYCoordinates(line) {
var _line$segment2;
if (line.y != null) return onlyAllowNumbers([line.y]);
var segmentCoordinates = (_line$segment2 = line.segment) === null || _line$segment2 === void 0 ? void 0 : _line$segment2.map((s) => s.y);
if (segmentCoordinates == null || segmentCoordinates.length === 0) return [];
return onlyAllowNumbers(segmentCoordinates);
}
var combineLinesDomain = (lines, axisType) => {
if (lines == null) return;
var allCoords = lines.flatMap((line) => axisType === "xAxis" ? extractXCoordinates(line) : extractYCoordinates(line));
if (allCoords.length === 0) return;
return [Math.min(...allCoords), Math.max(...allCoords)];
};
var selectReferenceElementsDomain = createSelector(selectReferenceDotsDomain, createSelector([selectReferenceLinesByAxis, pickAxisType], combineLinesDomain), selectReferenceAreasDomain, (dotsDomain, linesDomain, areasDomain) => {
return mergeDomains(dotsDomain, areasDomain, linesDomain);
});
var combineNumericalDomain = (axisSettings, domainDefinition, domainFromUserPreference, domainOfStackGroups, dataAndErrorBarsDomain, referenceElementsDomain, layout, axisType) => {
if (domainFromUserPreference != null) return domainFromUserPreference;
return parseNumericalUserDomain(domainDefinition, layout === "vertical" && axisType === "xAxis" || layout === "horizontal" && axisType === "yAxis" ? mergeDomains(domainOfStackGroups, referenceElementsDomain, dataAndErrorBarsDomain) : mergeDomains(referenceElementsDomain, dataAndErrorBarsDomain), axisSettings.allowDataOverflow);
};
var selectNumericalDomain = createSelector([
selectBaseAxis,
selectDomainDefinition,
selectDomainFromUserPreference,
selectDomainOfStackGroups,
selectDomainOfAllAppliedNumericalValuesIncludingErrorValues$1,
selectReferenceElementsDomain,
selectChartLayout,
pickAxisType
], combineNumericalDomain, { memoizeOptions: { resultEqualityCheck: numberDomainEqualityCheck } });
/**
* Expand by design maps everything between 0 and 1,
* there is nothing to compute.
* See https://d3js.org/d3-shape/stack#stack-offsets
*/
var expandDomain = [0, 1];
var combineAxisDomain = (axisSettings, layout, displayedData, allAppliedValues, stackOffsetType, axisType, numericalDomain) => {
if ((axisSettings == null || displayedData == null || displayedData.length === 0) && numericalDomain === void 0) return;
var { dataKey, type } = axisSettings;
var isCategorical = isCategoricalAxis(layout, axisType);
if (isCategorical && dataKey == null) {
var _displayedData$length;
return (0, import_range.default)(0, (_displayedData$length = displayedData === null || displayedData === void 0 ? void 0 : displayedData.length) !== null && _displayedData$length !== void 0 ? _displayedData$length : 0);
}
if (type === "category") return computeDomainOfTypeCategory(allAppliedValues, axisSettings, isCategorical);
if (stackOffsetType === "expand" && !isCategorical) return expandDomain;
return numericalDomain;
};
var selectAxisDomain = createSelector([
selectBaseAxis,
selectChartLayout,
selectDisplayedData$1,
selectAllAppliedValues,
selectStackOffsetType,
pickAxisType,
selectNumericalDomain
], combineAxisDomain);
var selectRealScaleType = createSelector([
selectBaseAxis,
selectHasBar,
selectChartName
], combineRealScaleType);
var combineNiceTicks = (axisDomain, axisSettings, realScaleType) => {
var { niceTicks } = axisSettings;
if (niceTicks === "none") return;
var domainDefinition = getDomainDefinition(axisSettings);
var hasDomainAutoKeyword = Array.isArray(domainDefinition) && (domainDefinition[0] === "auto" || domainDefinition[1] === "auto");
if ((niceTicks === "snap125" || niceTicks === "adaptive") && axisSettings != null && axisSettings.tickCount && isWellFormedNumberDomain(axisDomain)) {
if (hasDomainAutoKeyword) return getNiceTickValues(axisDomain, axisSettings.tickCount, axisSettings.allowDecimals, niceTicks);
if (axisSettings.type === "number") return getTickValuesFixedDomain(axisDomain, axisSettings.tickCount, axisSettings.allowDecimals, niceTicks);
}
if (niceTicks === "auto" && realScaleType === "linear" && axisSettings != null && axisSettings.tickCount) {
if (hasDomainAutoKeyword && isWellFormedNumberDomain(axisDomain)) return getNiceTickValues(axisDomain, axisSettings.tickCount, axisSettings.allowDecimals, "adaptive");
if (axisSettings.type === "number" && isWellFormedNumberDomain(axisDomain)) return getTickValuesFixedDomain(axisDomain, axisSettings.tickCount, axisSettings.allowDecimals, "adaptive");
}
};
var selectNiceTicks = createSelector([
selectAxisDomain,
selectRenderableAxisSettings,
selectRealScaleType
], combineNiceTicks);
var combineAxisDomainWithNiceTicks = (axisSettings, domain, niceTicks, axisType) => {
if (axisType !== "angleAxis" && (axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.type) === "number" && isWellFormedNumberDomain(domain) && Array.isArray(niceTicks) && niceTicks.length > 0) {
var _niceTicks$, _niceTicks;
var minFromDomain = domain[0];
var minFromTicks = (_niceTicks$ = niceTicks[0]) !== null && _niceTicks$ !== void 0 ? _niceTicks$ : 0;
var maxFromDomain = domain[1];
var maxFromTicks = (_niceTicks = niceTicks[niceTicks.length - 1]) !== null && _niceTicks !== void 0 ? _niceTicks : 0;
return [Math.min(minFromDomain, minFromTicks), Math.max(maxFromDomain, maxFromTicks)];
}
return domain;
};
var selectAxisDomainIncludingNiceTicks = createSelector([
selectBaseAxis,
selectAxisDomain,
selectNiceTicks,
pickAxisType
], combineAxisDomainWithNiceTicks);
var selectCalculatedPadding = createSelector(createSelector(selectAllAppliedValues, selectBaseAxis, (allDataSquished, axisSettings) => {
if (!axisSettings || axisSettings.type !== "number") return;
var smallestDistanceBetweenValues = Infinity;
var sortedValues = Array.from(onlyAllowNumbers(allDataSquished.map((d) => d.value))).sort((a, b) => a - b);
var first = sortedValues[0];
var last = sortedValues[sortedValues.length - 1];
if (first == null || last == null) return Infinity;
var diff = last - first;
if (diff === 0) return Infinity;
for (var i = 0; i < sortedValues.length - 1; i++) {
var curr = sortedValues[i];
var next = sortedValues[i + 1];
if (curr == null || next == null) continue;
var distance = next - curr;
smallestDistanceBetweenValues = Math.min(smallestDistanceBetweenValues, distance);
}
return smallestDistanceBetweenValues / diff;
}), selectChartLayout, selectBarCategoryGap, selectChartOffsetInternal, (_1, _2, _3, _4, padding) => padding, (smallestDistanceInPercent, layout, barCategoryGap, offset, padding) => {
if (!isWellBehavedNumber(smallestDistanceInPercent)) return 0;
var rangeWidth = layout === "vertical" ? offset.height : offset.width;
if (padding === "gap") return smallestDistanceInPercent * rangeWidth / 2;
if (padding === "no-gap") {
var gap = getPercentValue(barCategoryGap, smallestDistanceInPercent * rangeWidth);
var halfBand = smallestDistanceInPercent * rangeWidth / 2;
return halfBand - gap - (halfBand - gap) / rangeWidth * gap;
}
return 0;
});
var selectCalculatedXAxisPadding = (state, axisId, isPanorama) => {
var xAxisSettings = selectXAxisSettings(state, axisId);
if (xAxisSettings == null || typeof xAxisSettings.padding !== "string") return 0;
return selectCalculatedPadding(state, "xAxis", axisId, isPanorama, xAxisSettings.padding);
};
var selectCalculatedYAxisPadding = (state, axisId, isPanorama) => {
var yAxisSettings = selectYAxisSettings(state, axisId);
if (yAxisSettings == null || typeof yAxisSettings.padding !== "string") return 0;
return selectCalculatedPadding(state, "yAxis", axisId, isPanorama, yAxisSettings.padding);
};
var selectXAxisPadding = createSelector(selectXAxisSettings, selectCalculatedXAxisPadding, (xAxisSettings, calculated) => {
var _padding$left, _padding$right;
if (xAxisSettings == null) return {
left: 0,
right: 0
};
var { padding } = xAxisSettings;
if (typeof padding === "string") return {
left: calculated,
right: calculated
};
return {
left: ((_padding$left = padding.left) !== null && _padding$left !== void 0 ? _padding$left : 0) + calculated,
right: ((_padding$right = padding.right) !== null && _padding$right !== void 0 ? _padding$right : 0) + calculated
};
});
var selectYAxisPadding = createSelector(selectYAxisSettings, selectCalculatedYAxisPadding, (yAxisSettings, calculated) => {
var _padding$top, _padding$bottom;
if (yAxisSettings == null) return {
top: 0,
bottom: 0
};
var { padding } = yAxisSettings;
if (typeof padding === "string") return {
top: calculated,
bottom: calculated
};
return {
top: ((_padding$top = padding.top) !== null && _padding$top !== void 0 ? _padding$top : 0) + calculated,
bottom: ((_padding$bottom = padding.bottom) !== null && _padding$bottom !== void 0 ? _padding$bottom : 0) + calculated
};
});
var selectXAxisRange = createSelector([
selectChartOffsetInternal,
selectXAxisPadding,
selectBrushDimensions,
selectBrushSettings,
(_state, _axisId, isPanorama) => isPanorama
], (offset, padding, brushDimensions, _ref5, isPanorama) => {
var { padding: brushPadding } = _ref5;
if (isPanorama) return [brushPadding.left, brushDimensions.width - brushPadding.right];
return [offset.left + padding.left, offset.left + offset.width - padding.right];
});
var selectYAxisRange = createSelector([
selectChartOffsetInternal,
selectChartLayout,
selectYAxisPadding,
selectBrushDimensions,
selectBrushSettings,
(_state, _axisId, isPanorama) => isPanorama
], (offset, layout, padding, brushDimensions, _ref6, isPanorama) => {
var { padding: brushPadding } = _ref6;
if (isPanorama) return [brushDimensions.height - brushPadding.bottom, brushPadding.top];
if (layout === "horizontal") return [offset.top + offset.height - padding.bottom, offset.top + padding.top];
return [offset.top + padding.top, offset.top + offset.height - padding.bottom];
});
var selectAxisRange = (state, axisType, axisId, isPanorama) => {
var _selectZAxisSettings;
switch (axisType) {
case "xAxis": return selectXAxisRange(state, axisId, isPanorama);
case "yAxis": return selectYAxisRange(state, axisId, isPanorama);
case "zAxis": return (_selectZAxisSettings = selectZAxisSettings(state, axisId)) === null || _selectZAxisSettings === void 0 ? void 0 : _selectZAxisSettings.range;
case "angleAxis": return selectAngleAxisRange(state);
case "radiusAxis": return selectRadiusAxisRange(state, axisId);
default: return;
}
};
var selectAxisRangeWithReverse = createSelector([selectBaseAxis, selectAxisRange], combineAxisRangeWithReverse);
var selectConfiguredScale = createSelector([
selectBaseAxis,
selectRealScaleType,
createSelector([selectRealScaleType, selectAxisDomainIncludingNiceTicks], combineCheckedDomain),
selectAxisRangeWithReverse
], combineConfiguredScale);
var combineCategoricalDomain = (layout, appliedValues, axis, axisType) => {
if (axis == null || axis.dataKey == null) return;
var { type, scale } = axis;
if (isCategoricalAxis(layout, axisType) && (type === "number" || scale !== "auto")) return appliedValues.map((d) => d.value);
};
var selectCategoricalDomain = createSelector([
selectChartLayout,
selectAllAppliedValues,
selectRenderableAxisSettings,
pickAxisType
], combineCategoricalDomain);
var selectAxisScale = createSelector([selectConfiguredScale], rechartsScaleFactory);
var selectAxisInverseScale = createSelector([selectConfiguredScale], combineInverseScaleFunction);
var selectAxisInverseDataSnapScale = createSelector([selectConfiguredScale, selectSortedDataPoints], createCategoricalInverse);
createSelector([
selectCartesianItemsSettings,
selectAllErrorBarSettings,
pickAxisType
], combineRelevantErrorBarSettings);
function compareIds(a, b) {
if (a.id < b.id) return -1;
if (a.id > b.id) return 1;
return 0;
}
var pickAxisOrientation = (_state, orientation) => orientation;
var pickMirror = (_state, _orientation, mirror) => mirror;
var selectAllXAxesWithOffsetType = createSelector(selectAllXAxes, pickAxisOrientation, pickMirror, (allAxes, orientation, mirror) => allAxes.filter((axis) => axis.orientation === orientation).filter((axis) => axis.mirror === mirror).sort(compareIds));
var selectAllYAxesWithOffsetType = createSelector(selectAllYAxes, pickAxisOrientation, pickMirror, (allAxes, orientation, mirror) => allAxes.filter((axis) => axis.orientation === orientation).filter((axis) => axis.mirror === mirror).sort(compareIds));
var getXAxisSize = (offset, axisSettings) => {
return {
width: offset.width,
height: axisSettings.height
};
};
var getYAxisSize = (offset, axisSettings) => {
return {
width: typeof axisSettings.width === "number" ? axisSettings.width : 60,
height: offset.height
};
};
var selectXAxisSize = createSelector(selectChartOffsetInternal, selectXAxisSettings, getXAxisSize);
var combineXAxisPositionStartingPoint = (offset, orientation, chartHeight) => {
switch (orientation) {
case "top": return offset.top;
case "bottom": return chartHeight - offset.bottom;
default: return 0;
}
};
var combineYAxisPositionStartingPoint = (offset, orientation, chartWidth) => {
switch (orientation) {
case "left": return offset.left;
case "right": return chartWidth - offset.right;
default: return 0;
}
};
var selectAllXAxesOffsetSteps = createSelector(selectChartHeight, selectChartOffsetInternal, selectAllXAxesWithOffsetType, pickAxisOrientation, pickMirror, (chartHeight, offset, allAxesWithSameOffsetType, orientation, mirror) => {
var steps = {};
var position;
allAxesWithSameOffsetType.forEach((axis) => {
var axisSize = getXAxisSize(offset, axis);
if (position == null) position = combineXAxisPositionStartingPoint(offset, orientation, chartHeight);
var needSpace = orientation === "top" && !mirror || orientation === "bottom" && mirror;
steps[axis.id] = position - Number(needSpace) * axisSize.height;
position += (needSpace ? -1 : 1) * axisSize.height;
});
return steps;
});
var selectAllYAxesOffsetSteps = createSelector(selectChartWidth, selectChartOffsetInternal, selectAllYAxesWithOffsetType, pickAxisOrientation, pickMirror, (chartWidth, offset, allAxesWithSameOffsetType, orientation, mirror) => {
var steps = {};
var position;
allAxesWithSameOffsetType.forEach((axis) => {
var axisSize = getYAxisSize(offset, axis);
if (position == null) position = combineYAxisPositionStartingPoint(offset, orientation, chartWidth);
var needSpace = orientation === "left" && !mirror || orientation === "right" && mirror;
steps[axis.id] = position - Number(needSpace) * axisSize.width;
position += (needSpace ? -1 : 1) * axisSize.width;
});
return steps;
});
var selectXAxisOffsetSteps = (state, axisId) => {
var axisSettings = selectXAxisSettings(state, axisId);
if (axisSettings == null) return;
return selectAllXAxesOffsetSteps(state, axisSettings.orientation, axisSettings.mirror);
};
var selectXAxisPosition = createSelector([
selectChartOffsetInternal,
selectXAxisSettings,
selectXAxisOffsetSteps,
(_, axisId) => axisId
], (offset, axisSettings, allSteps, axisId) => {
if (axisSettings == null) return;
var stepOfThisAxis = allSteps === null || allSteps === void 0 ? void 0 : allSteps[axisId];
if (stepOfThisAxis == null) return {
x: offset.left,
y: 0
};
return {
x: offset.left,
y: stepOfThisAxis
};
});
var selectYAxisOffsetSteps = (state, axisId) => {
var axisSettings = selectYAxisSettings(state, axisId);
if (axisSettings == null) return;
return selectAllYAxesOffsetSteps(state, axisSettings.orientation, axisSettings.mirror);
};
var selectYAxisPosition = createSelector([
selectChartOffsetInternal,
selectYAxisSettings,
selectYAxisOffsetSteps,
(_, axisId) => axisId
], (offset, axisSettings, allSteps, axisId) => {
if (axisSettings == null) return;
var stepOfThisAxis = allSteps === null || allSteps === void 0 ? void 0 : allSteps[axisId];
if (stepOfThisAxis == null) return {
x: 0,
y: offset.top
};
return {
x: stepOfThisAxis,
y: offset.top
};
});
var selectYAxisSize = createSelector(selectChartOffsetInternal, selectYAxisSettings, (offset, axisSettings) => {
return {
width: typeof axisSettings.width === "number" ? axisSettings.width : 60,
height: offset.height
};
});
var selectCartesianAxisSize = (state, axisType, axisId) => {
switch (axisType) {
case "xAxis": return selectXAxisSize(state, axisId).width;
case "yAxis": return selectYAxisSize(state, axisId).height;
default: return;
}
};
var combineDuplicateDomain = (chartLayout, appliedValues, axis, axisType) => {
if (axis == null) return;
var { allowDuplicatedCategory, type, dataKey } = axis;
var isCategorical = isCategoricalAxis(chartLayout, axisType);
var allData = appliedValues.map((av) => av.value);
var validData = allData.filter((v) => v != null);
if (dataKey && isCategorical && type === "category" && allowDuplicatedCategory && hasDuplicate(validData)) return allData;
};
var selectDuplicateDomain = createSelector([
selectChartLayout,
selectAllAppliedValues,
selectBaseAxis,
pickAxisType
], combineDuplicateDomain);
var selectAxisPropsNeededForCartesianGridTicksGenerator = createSelector([
selectChartLayout,
selectCartesianAxisSettings,
selectRealScaleType,
selectAxisScale,
selectDuplicateDomain,
selectCategoricalDomain,
selectAxisRange,
selectNiceTicks,
pickAxisType
], (layout, axis, realScaleType, scale, duplicateDomain, categoricalDomain, axisRange, niceTicks, axisType) => {
if (axis == null) return;
var isCategorical = isCategoricalAxis(layout, axisType);
return {
angle: axis.angle,
interval: axis.interval,
minTickGap: axis.minTickGap,
orientation: axis.orientation,
tick: axis.tick,
tickCount: axis.tickCount,
tickFormatter: axis.tickFormatter,
ticks: axis.ticks,
type: axis.type,
unit: axis.unit,
axisType,
categoricalDomain,
duplicateDomain,
isCategorical,
niceTicks,
range: axisRange,
realScaleType,
scale
};
});
/**
* Of on four almost identical implementations of tick generation.
* The four horsemen of tick generation are:
* - {@link selectTooltipAxisTicks}
* - {@link combineAxisTicks}
* - {@link getTicksOfAxis}.
* - {@link combineGraphicalItemTicks}
*/
var combineAxisTicks = (layout, axis, realScaleType, scale, niceTicks, axisRange, duplicateDomain, categoricalDomain, axisType) => {
if (axis == null || scale == null) return;
var isCategorical = isCategoricalAxis(layout, axisType);
var { type, ticks, tickCount } = axis;
var offsetForBand = realScaleType === "scaleBand" && typeof scale.bandwidth === "function" ? scale.bandwidth() / 2 : 2;
var offset = type === "category" && scale.bandwidth ? scale.bandwidth() / offsetForBand : 0;
offset = axisType === "angleAxis" && axisRange != null && axisRange.length >= 2 ? mathSign(axisRange[0] - axisRange[1]) * 2 * offset : offset;
var ticksOrNiceTicks = ticks || niceTicks;
if (ticksOrNiceTicks) return ticksOrNiceTicks.map((entry, index) => {
var scaleContent = duplicateDomain ? duplicateDomain.indexOf(entry) : entry;
var scaled = scale.map(scaleContent);
if (!isWellBehavedNumber(scaled)) return null;
return {
index,
coordinate: scaled + offset,
value: entry,
offset
};
}).filter(isNotNil);
if (isCategorical && categoricalDomain) return categoricalDomain.map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
if (scale.ticks) return scale.ticks(tickCount).map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
return scale.domain().map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: duplicateDomain ? duplicateDomain[entry] : entry,
index,
offset
};
}).filter(isNotNil);
};
var selectTicksOfAxis = createSelector([
selectChartLayout,
selectRenderableAxisSettings,
selectRealScaleType,
selectAxisScale,
selectNiceTicks,
selectAxisRange,
selectDuplicateDomain,
selectCategoricalDomain,
pickAxisType
], combineAxisTicks);
/**
* Of on four almost identical implementations of tick generation.
* The four horsemen of tick generation are:
* - {@link selectTooltipAxisTicks}
* - {@link combineAxisTicks}
* - {@link getTicksOfAxis}.
* - {@link combineGraphicalItemTicks}
*/
var combineGraphicalItemTicks = (layout, axis, scale, axisRange, duplicateDomain, categoricalDomain, axisType) => {
if (axis == null || scale == null || axisRange == null || axisRange[0] === axisRange[1]) return;
var isCategorical = isCategoricalAxis(layout, axisType);
var { tickCount } = axis;
var offset = 0;
offset = axisType === "angleAxis" && (axisRange === null || axisRange === void 0 ? void 0 : axisRange.length) >= 2 ? mathSign(axisRange[0] - axisRange[1]) * 2 * offset : offset;
if (isCategorical && categoricalDomain) return categoricalDomain.map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
if (scale.ticks) return scale.ticks(tickCount).map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
return scale.domain().map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: duplicateDomain ? duplicateDomain[entry] : entry,
index,
offset
};
}).filter(isNotNil);
};
var selectTicksOfGraphicalItem = createSelector([
selectChartLayout,
selectRenderableAxisSettings,
selectAxisScale,
selectAxisRange,
selectDuplicateDomain,
selectCategoricalDomain,
pickAxisType
], combineGraphicalItemTicks);
/**
* This is the internal representation of an axis along with its scale function.
* Here we have already computed the scale function for the axis,
* and replaced the union type of scale (string | function) with just the function type.
*/
var selectAxisWithScale = createSelector(selectBaseAxis, selectAxisScale, (axis, scale) => {
if (axis == null || scale == null) return;
return _objectSpread$54(_objectSpread$54({}, axis), {}, { scale });
});
var selectZAxisWithScale = createSelector((state, _axisType, axisId) => selectZAxisSettings(state, axisId), createSelector([createSelector([
selectBaseAxis,
selectRealScaleType,
selectAxisDomain,
selectAxisRangeWithReverse
], combineConfiguredScale)], rechartsScaleFactory), (axis, scale) => {
if (axis == null || scale == null) return;
return _objectSpread$54(_objectSpread$54({}, axis), {}, { scale });
});
/**
* We are also going to need to implement polar chart directions if we want to support keyboard controls for those.
*/
var selectChartDirection = createSelector([
selectChartLayout,
selectAllXAxes,
selectAllYAxes
], (layout, allXAxes, allYAxes) => {
switch (layout) {
case "horizontal": return allXAxes.some((axis) => axis.reversed) ? "right-to-left" : "left-to-right";
case "vertical": return allYAxes.some((axis) => axis.reversed) ? "bottom-to-top" : "top-to-bottom";
case "centric":
case "radial": return "left-to-right";
default: return;
}
});
var selectRenderedTicksOfAxis = (state, axisType, axisId) => {
var _state$renderedTicks$;
return (_state$renderedTicks$ = state.renderedTicks[axisType]) === null || _state$renderedTicks$ === void 0 ? void 0 : _state$renderedTicks$[axisId];
};
var selectAxisInverseTickSnapScale = createSelector([selectRenderedTicksOfAxis], (ticks) => {
if (!ticks || ticks.length === 0) return;
return (pixelValue) => {
var _closestTick;
var minDistance = Infinity;
var closestTick = ticks[0];
for (var tick of ticks) {
var distance = Math.abs(tick.coordinate - pixelValue);
if (distance < minDistance) {
minDistance = distance;
closestTick = tick;
}
}
return (_closestTick = closestTick) === null || _closestTick === void 0 ? void 0 : _closestTick.value;
};
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipEventType.js
var selectDefaultTooltipEventType = (state) => state.options.defaultTooltipEventType;
var selectValidateTooltipEventTypes = (state) => state.options.validateTooltipEventTypes;
function combineTooltipEventType(shared, defaultTooltipEventType, validateTooltipEventTypes) {
if (shared == null) return defaultTooltipEventType;
var eventType = shared ? "axis" : "item";
if (validateTooltipEventTypes == null) return defaultTooltipEventType;
return validateTooltipEventTypes.includes(eventType) ? eventType : defaultTooltipEventType;
}
function selectTooltipEventType$1(state, shared) {
return combineTooltipEventType(shared, selectDefaultTooltipEventType(state), selectValidateTooltipEventTypes(state));
}
function useTooltipEventType(shared) {
return useAppSelector((state) => selectTooltipEventType$1(state, shared));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineActiveLabel.js
var combineActiveLabel = (tooltipTicks, activeIndex) => {
var _tooltipTicks$n;
var n = Number(activeIndex);
if (isNan(n) || activeIndex == null) return;
return n >= 0 ? tooltipTicks === null || tooltipTicks === void 0 || (_tooltipTicks$n = tooltipTicks[n]) === null || _tooltipTicks$n === void 0 ? void 0 : _tooltipTicks$n.value : void 0;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipSettings.js
var selectTooltipSettings = (state) => state.tooltip.settings;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/tooltipSlice.js
/**
* One Tooltip can display multiple TooltipPayloadEntries at a time.
*/
/**
* So what happens is that the tooltip payload is decided based on the available data, and the dataKey.
* The dataKey can either be defined on the graphical element (like Line, or Bar)
* or on the tooltip itself.
*
* The data can be defined in the chart element, or in the graphical item.
*
* So this type is all the settings, other than the data + dataKey complications.
*/
/**
* This is what Tooltip renders.
*/
/**
* null means no active index
* string means: whichever index from the chart data it is.
* Different charts have different requirements on data shapes,
* and are also responsible for providing a function that will accept this index
* and return data.
*/
/**
* Different items have different data shapes so the state has no opinion on what the data shape should be;
* the only requirement is that the chart also provides a searcher function
* that accepts the data, and a key, and returns whatever the payload in Tooltip should be.
*/
/**
* So this informs the "tooltip event type". Tooltip event type can be either "axis" or "item"
* and it is used for two things:
* 1. Sets the active area
* 2. Sets the background and cursor highlights
*
* Some charts only allow to have one type of tooltip event type, some allow both.
* Those charts that allow both will have one default, and the "shared" prop will be used to switch between them.
* Undefined means "use the chart default".
*
* Charts that only allow one tooltip event type, will ignore the shared prop.
*/
/**
* A generic state for user interaction with the chart.
* User interaction can come through multiple channels: mouse events, keyboard events, or hardcoded in props, or synchronised from other charts.
*
* Each of the interaction states is represented as TooltipInteractionState,
* and then the selectors and Tooltip will decide which of the interaction states to use.
*/
var noInteraction = {
active: false,
index: null,
dataKey: void 0,
graphicalItemId: void 0,
coordinate: void 0
};
/**
* This is the event we get when user is interacting with a specific graphical item.
*/
/**
* Keyboard interaction payload has no graphical item ID,
* and no dataKey, because keyboard interaction is always
* with the whole chart, not with a specific graphical item.
*/
var tooltipSlice = createSlice({
name: "tooltip",
initialState: {
itemInteraction: {
click: noInteraction,
hover: noInteraction
},
axisInteraction: {
click: noInteraction,
hover: noInteraction
},
keyboardInteraction: noInteraction,
syncInteraction: {
active: false,
index: null,
dataKey: void 0,
label: void 0,
coordinate: void 0,
sourceViewBox: void 0,
graphicalItemId: void 0
},
tooltipItemPayloads: [],
settings: {
shared: void 0,
trigger: "hover",
axisId: 0,
active: false,
defaultIndex: void 0
}
},
reducers: {
addTooltipEntrySettings: {
reducer(state, action) {
state.tooltipItemPayloads.push(castDraft(action.payload));
},
prepare: prepareAutoBatched()
},
replaceTooltipEntrySettings: {
reducer(state, action) {
var { prev, next } = action.payload;
var index = current$1(state).tooltipItemPayloads.indexOf(castDraft(prev));
if (index > -1) state.tooltipItemPayloads[index] = castDraft(next);
},
prepare: prepareAutoBatched()
},
removeTooltipEntrySettings: {
reducer(state, action) {
var index = current$1(state).tooltipItemPayloads.indexOf(castDraft(action.payload));
if (index > -1) state.tooltipItemPayloads.splice(index, 1);
},
prepare: prepareAutoBatched()
},
setTooltipSettingsState(state, action) {
state.settings = action.payload;
},
setActiveMouseOverItemIndex(state, action) {
state.syncInteraction.active = false;
state.syncInteraction.sourceViewBox = void 0;
state.keyboardInteraction.active = false;
state.itemInteraction.hover.active = true;
state.itemInteraction.hover.index = action.payload.activeIndex;
state.itemInteraction.hover.dataKey = action.payload.activeDataKey;
state.itemInteraction.hover.graphicalItemId = action.payload.activeGraphicalItemId;
state.itemInteraction.hover.coordinate = action.payload.activeCoordinate;
},
mouseLeaveChart(state) {
state.itemInteraction.hover.active = false;
state.axisInteraction.hover.active = false;
},
mouseLeaveItem(state) {
state.itemInteraction.hover.active = false;
},
setActiveClickItemIndex(state, action) {
state.syncInteraction.active = false;
state.syncInteraction.sourceViewBox = void 0;
state.itemInteraction.click.active = true;
state.keyboardInteraction.active = false;
state.itemInteraction.click.index = action.payload.activeIndex;
state.itemInteraction.click.dataKey = action.payload.activeDataKey;
state.itemInteraction.click.graphicalItemId = action.payload.activeGraphicalItemId;
state.itemInteraction.click.coordinate = action.payload.activeCoordinate;
},
setMouseOverAxisIndex(state, action) {
state.syncInteraction.active = false;
state.syncInteraction.sourceViewBox = void 0;
state.axisInteraction.hover.active = true;
state.keyboardInteraction.active = false;
state.axisInteraction.hover.index = action.payload.activeIndex;
state.axisInteraction.hover.dataKey = action.payload.activeDataKey;
state.axisInteraction.hover.coordinate = action.payload.activeCoordinate;
},
setMouseClickAxisIndex(state, action) {
state.syncInteraction.active = false;
state.syncInteraction.sourceViewBox = void 0;
state.keyboardInteraction.active = false;
state.axisInteraction.click.active = true;
state.axisInteraction.click.index = action.payload.activeIndex;
state.axisInteraction.click.dataKey = action.payload.activeDataKey;
state.axisInteraction.click.coordinate = action.payload.activeCoordinate;
},
setSyncInteraction(state, action) {
state.syncInteraction = action.payload;
},
setKeyboardInteraction(state, action) {
state.keyboardInteraction.active = action.payload.active;
state.keyboardInteraction.index = action.payload.activeIndex;
state.keyboardInteraction.coordinate = action.payload.activeCoordinate;
}
}
});
var { addTooltipEntrySettings, replaceTooltipEntrySettings, removeTooltipEntrySettings, setTooltipSettingsState, setActiveMouseOverItemIndex, mouseLeaveItem, mouseLeaveChart, setActiveClickItemIndex, setMouseOverAxisIndex, setMouseClickAxisIndex, setSyncInteraction, setKeyboardInteraction } = tooltipSlice.actions;
var tooltipReducer = tooltipSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineTooltipInteractionState.js
function ownKeys$53(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$53(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$53(Object(t), !0).forEach(function(r) {
_defineProperty$55(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$53(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$55(e, r, t) {
return (r = _toPropertyKey$55(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$55(t) {
var i = _toPrimitive$55(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$55(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function chooseAppropriateMouseInteraction(tooltipState, tooltipEventType, trigger) {
if (tooltipEventType === "axis") {
if (trigger === "click") return tooltipState.axisInteraction.click;
return tooltipState.axisInteraction.hover;
}
if (trigger === "click") return tooltipState.itemInteraction.click;
return tooltipState.itemInteraction.hover;
}
function hasBeenActivePreviously(tooltipInteractionState) {
return tooltipInteractionState.index != null;
}
var combineTooltipInteractionState = (tooltipState, tooltipEventType, trigger, defaultIndex) => {
if (tooltipEventType == null) return noInteraction;
var appropriateMouseInteraction = chooseAppropriateMouseInteraction(tooltipState, tooltipEventType, trigger);
if (appropriateMouseInteraction == null) return noInteraction;
if (appropriateMouseInteraction.active) return appropriateMouseInteraction;
if (tooltipState.keyboardInteraction.active) return tooltipState.keyboardInteraction;
if (tooltipState.syncInteraction.active && tooltipState.syncInteraction.index != null) return tooltipState.syncInteraction;
var activeFromProps = tooltipState.settings.active === true;
if (hasBeenActivePreviously(appropriateMouseInteraction)) {
if (activeFromProps) return _objectSpread$53(_objectSpread$53({}, appropriateMouseInteraction), {}, { active: true });
} else if (defaultIndex != null) return {
active: true,
coordinate: void 0,
dataKey: void 0,
index: defaultIndex,
graphicalItemId: void 0
};
return _objectSpread$53(_objectSpread$53({}, noInteraction), {}, { coordinate: appropriateMouseInteraction.coordinate });
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineActiveTooltipIndex.js
function toFiniteNumber(value) {
if (typeof value === "number") return Number.isFinite(value) ? value : void 0;
if (value instanceof Date) {
var numericValue = value.valueOf();
return Number.isFinite(numericValue) ? numericValue : void 0;
}
var parsed = Number(value);
return Number.isFinite(parsed) ? parsed : void 0;
}
function isValueWithinNumberDomain(value, domain) {
var numericValue = toFiniteNumber(value);
var lowerBound = domain[0];
var upperBound = domain[1];
if (numericValue === void 0) return false;
return numericValue >= Math.min(lowerBound, upperBound) && numericValue <= Math.max(lowerBound, upperBound);
}
function isValueWithinDomain(entry, axisDataKey, domain) {
if (domain == null || axisDataKey == null) return true;
var value = getValueByDataKey(entry, axisDataKey);
if (value == null) return true;
if (!isWellFormedNumberDomain(domain)) return true;
return isValueWithinNumberDomain(value, domain);
}
var combineActiveTooltipIndex = (tooltipInteraction, chartData, axisDataKey, domain) => {
var desiredIndex = tooltipInteraction === null || tooltipInteraction === void 0 ? void 0 : tooltipInteraction.index;
if (desiredIndex == null) return null;
var indexAsNumber = Number(desiredIndex);
if (!isWellBehavedNumber(indexAsNumber)) return desiredIndex;
var lowerLimit = 0;
var upperLimit = Infinity;
if (chartData.length > 0) upperLimit = chartData.length - 1;
var clampedIndex = Math.max(lowerLimit, Math.min(indexAsNumber, upperLimit));
var entry = chartData[clampedIndex];
if (entry == null) return String(clampedIndex);
if (!isValueWithinDomain(entry, axisDataKey, domain)) return null;
return String(clampedIndex);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineCoordinateForDefaultIndex.js
var combineCoordinateForDefaultIndex = (width, height, layout, offset, tooltipTicks, defaultIndex, tooltipConfigurations) => {
if (defaultIndex == null) return;
var firstConfiguration = tooltipConfigurations[0];
var maybePosition = firstConfiguration === null || firstConfiguration === void 0 ? void 0 : firstConfiguration.getPosition(defaultIndex);
if (maybePosition != null) return maybePosition;
var tick = tooltipTicks === null || tooltipTicks === void 0 ? void 0 : tooltipTicks[Number(defaultIndex)];
if (!tick) return;
switch (layout) {
case "horizontal": return {
x: tick.coordinate,
y: (offset.top + height) / 2
};
default: return {
x: (offset.left + width) / 2,
y: tick.coordinate
};
}
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineTooltipPayloadConfigurations.js
var combineTooltipPayloadConfigurations = (tooltipState, tooltipEventType, trigger, defaultIndex) => {
if (tooltipEventType === "axis") return tooltipState.tooltipItemPayloads;
if (tooltipState.tooltipItemPayloads.length === 0) return [];
var filterByGraphicalItemId;
if (trigger === "hover") filterByGraphicalItemId = tooltipState.itemInteraction.hover.graphicalItemId;
else filterByGraphicalItemId = tooltipState.itemInteraction.click.graphicalItemId;
if (tooltipState.syncInteraction.active && filterByGraphicalItemId == null) return tooltipState.tooltipItemPayloads;
if (filterByGraphicalItemId == null && (defaultIndex != null || tooltipState.keyboardInteraction.active)) {
var firstItemPayload = tooltipState.tooltipItemPayloads[0];
if (firstItemPayload != null) return [firstItemPayload];
return [];
}
return tooltipState.tooltipItemPayloads.filter((tpc) => {
var _tpc$settings;
return ((_tpc$settings = tpc.settings) === null || _tpc$settings === void 0 ? void 0 : _tpc$settings.graphicalItemId) === filterByGraphicalItemId;
});
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipPayloadSearcher.js
var selectTooltipPayloadSearcher = (state) => state.options.tooltipPayloadSearcher;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectTooltipState.js
var selectTooltipState = (state) => state.tooltip;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineTooltipPayload.js
function ownKeys$52(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$52(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$52(Object(t), !0).forEach(function(r) {
_defineProperty$54(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$52(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$54(e, r, t) {
return (r = _toPropertyKey$54(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$54(t) {
var i = _toPrimitive$54(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$54(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function parseName(value) {
if (typeof value === "string" || typeof value === "number") return value;
}
function parseUnit(value) {
if (typeof value === "string" || typeof value === "number" || typeof value === "boolean") return value;
}
function parseDataKey(value) {
if (typeof value === "string" || typeof value === "number") return value;
if (typeof value === "function") return (obj) => value(obj);
}
function parseColor(value) {
if (typeof value === "string") return value;
}
function parseTooltipPayloadItem(item) {
if (item == null || typeof item !== "object") return;
return {
name: "name" in item ? parseName(item.name) : void 0,
unit: "unit" in item ? parseUnit(item.unit) : void 0,
dataKey: "dataKey" in item ? parseDataKey(item.dataKey) : void 0,
payload: "payload" in item ? item.payload : void 0,
color: "color" in item ? parseColor(item.color) : void 0,
fill: "fill" in item ? parseColor(item.fill) : void 0
};
}
function selectFinalData(dataDefinedOnItem, dataDefinedOnChart) {
if (dataDefinedOnItem != null) return dataDefinedOnItem;
return dataDefinedOnChart;
}
var combineTooltipPayload = (tooltipPayloadConfigurations, activeIndex, chartDataState, tooltipAxisDataKey, activeLabel, tooltipPayloadSearcher, tooltipEventType) => {
if (activeIndex == null || tooltipPayloadSearcher == null) return;
var { chartData, computedData, dataStartIndex, dataEndIndex } = chartDataState;
return tooltipPayloadConfigurations.reduce((agg, _ref) => {
var _settings$dataKey;
var { dataDefinedOnItem, settings } = _ref;
var finalData = selectFinalData(dataDefinedOnItem, chartData);
var sliced = Array.isArray(finalData) ? getSliced(finalData, dataStartIndex, dataEndIndex) : finalData;
var finalDataKey = (_settings$dataKey = settings === null || settings === void 0 ? void 0 : settings.dataKey) !== null && _settings$dataKey !== void 0 ? _settings$dataKey : tooltipAxisDataKey;
var finalNameKey = settings === null || settings === void 0 ? void 0 : settings.nameKey;
var tooltipPayload;
if (tooltipAxisDataKey && Array.isArray(sliced) && !Array.isArray(sliced[0]) && tooltipEventType === "axis") tooltipPayload = findEntryInArray(sliced, tooltipAxisDataKey, activeLabel);
else tooltipPayload = tooltipPayloadSearcher(sliced, activeIndex, computedData, finalNameKey);
if (Array.isArray(tooltipPayload)) tooltipPayload.forEach((item) => {
var _parsedItem$color, _parsedItem$fill;
var parsedItem = parseTooltipPayloadItem(item);
var itemName = parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.name;
var itemDataKey = parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.dataKey;
var itemPayload = parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.payload;
var newSettings = _objectSpread$52(_objectSpread$52({}, settings), {}, {
name: itemName,
unit: parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.unit,
color: (_parsedItem$color = parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.color) !== null && _parsedItem$color !== void 0 ? _parsedItem$color : settings === null || settings === void 0 ? void 0 : settings.color,
fill: (_parsedItem$fill = parsedItem === null || parsedItem === void 0 ? void 0 : parsedItem.fill) !== null && _parsedItem$fill !== void 0 ? _parsedItem$fill : settings === null || settings === void 0 ? void 0 : settings.fill
});
agg.push(getTooltipEntry({
tooltipEntrySettings: newSettings,
dataKey: itemDataKey,
payload: itemPayload,
value: getValueByDataKey(itemPayload, itemDataKey),
name: itemName == null ? void 0 : String(itemName)
}));
});
else {
var _getValueByDataKey;
agg.push(getTooltipEntry({
tooltipEntrySettings: settings,
dataKey: finalDataKey,
payload: tooltipPayload,
value: getValueByDataKey(tooltipPayload, finalDataKey),
name: (_getValueByDataKey = getValueByDataKey(tooltipPayload, finalNameKey)) !== null && _getValueByDataKey !== void 0 ? _getValueByDataKey : settings === null || settings === void 0 ? void 0 : settings.name
}));
}
return agg;
}, []);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/tooltipSelectors.js
var selectTooltipAxisRealScaleType = createSelector([
selectTooltipAxis,
selectHasBar,
selectChartName
], combineRealScaleType);
var selectAllGraphicalItemsSettings = createSelector([
createSelector([(state) => state.graphicalItems.cartesianItems, (state) => state.graphicalItems.polarItems], (cartesianItems, polarItems) => [...cartesianItems, ...polarItems]),
selectTooltipAxis,
createSelector([selectTooltipAxisType, selectTooltipAxisId], itemAxisPredicate)
], combineGraphicalItemsSettings, { memoizeOptions: { resultEqualityCheck: emptyArraysAreEqualCheck } });
var selectAllStackedGraphicalItemsSettings = createSelector([selectAllGraphicalItemsSettings], (graphicalItems) => graphicalItems.filter(isStacked));
var selectTooltipGraphicalItemsData = createSelector([selectAllGraphicalItemsSettings], combineGraphicalItemsData, { memoizeOptions: { resultEqualityCheck: emptyArraysAreEqualCheck } });
var selectAnyTooltipItemUsesChartData = createSelector([selectAllGraphicalItemsSettings], (items) => items.some((item) => !item.data));
/**
* Data for tooltip always use the data with indexes set by a Brush,
* and never accept the isPanorama flag:
* because Tooltip never displays inside the panorama anyway
* so we don't need to worry what would happen there.
*/
var selectTooltipDisplayedData = createSelector([selectTooltipGraphicalItemsData, selectChartDataWithIndexes], combineDisplayedData);
var selectTooltipStackedData = createSelector([
selectAllStackedGraphicalItemsSettings,
selectChartDataWithIndexes,
selectTooltipAxis
], combineDisplayedStackedData);
var selectAllTooltipAppliedValues = createSelector([
selectTooltipDisplayedData,
selectTooltipAxis,
selectAllGraphicalItemsSettings,
selectChartDataWithIndexes,
selectAnyTooltipItemUsesChartData,
selectTooltipGraphicalItemsData
], combineAllAppliedValues);
var selectTooltipAxisDomainDefinition = createSelector([selectTooltipAxis], getDomainDefinition);
var selectTooltipDomainFromUserPreferences = createSelector([selectTooltipAxisDomainDefinition, createSelector([selectTooltipAxis], (axisSettings) => axisSettings.allowDataOverflow)], numericalDomainSpecifiedWithoutRequiringData);
var selectTooltipDomainOfStackGroups = createSelector([
createSelector([
selectTooltipStackedData,
createSelector([selectAllGraphicalItemsSettings], (graphicalItems) => graphicalItems.filter(isStacked)),
selectStackOffsetType,
selectReverseStackOrder
], combineStackGroups),
selectChartDataWithIndexes,
selectTooltipAxisType,
selectTooltipDomainFromUserPreferences
], combineDomainOfStackGroups);
var selectDomainOfAllAppliedNumericalValuesIncludingErrorValues = createSelector([
selectTooltipDisplayedData,
selectTooltipAxis,
createSelector([selectAllGraphicalItemsSettings], filterGraphicalNotStackedItems),
selectAllErrorBarSettings,
selectTooltipAxisType,
selectChartDataSliceWithIndexes
], combineDomainOfAllAppliedNumericalValuesIncludingErrorValues, { memoizeOptions: { resultEqualityCheck: numberDomainEqualityCheck } });
var selectTooltipReferenceDotsDomain = createSelector([createSelector([
selectReferenceDots,
selectTooltipAxisType,
selectTooltipAxisId
], filterReferenceElements), selectTooltipAxisType], combineDotsDomain);
var selectTooltipReferenceAreasDomain = createSelector([createSelector([
selectReferenceAreas,
selectTooltipAxisType,
selectTooltipAxisId
], filterReferenceElements), selectTooltipAxisType], combineAreasDomain);
var selectTooltipAxisDomain = createSelector([
selectTooltipAxis,
selectChartLayout,
selectTooltipDisplayedData,
selectAllTooltipAppliedValues,
selectStackOffsetType,
selectTooltipAxisType,
createSelector([
selectTooltipAxis,
selectTooltipAxisDomainDefinition,
selectTooltipDomainFromUserPreferences,
selectTooltipDomainOfStackGroups,
selectDomainOfAllAppliedNumericalValuesIncludingErrorValues,
createSelector([
selectTooltipReferenceDotsDomain,
createSelector([createSelector([
selectReferenceLines,
selectTooltipAxisType,
selectTooltipAxisId
], filterReferenceElements), selectTooltipAxisType], combineLinesDomain),
selectTooltipReferenceAreasDomain
], mergeDomains),
selectChartLayout,
selectTooltipAxisType
], combineNumericalDomain)
], combineAxisDomain);
var selectTooltipAxisDomainIncludingNiceTicks = createSelector([
selectTooltipAxis,
selectTooltipAxisDomain,
createSelector([
selectTooltipAxisDomain,
selectTooltipAxis,
selectTooltipAxisRealScaleType
], combineNiceTicks),
selectTooltipAxisType
], combineAxisDomainWithNiceTicks);
var selectTooltipAxisRange = (state) => {
return selectAxisRange(state, selectTooltipAxisType(state), selectTooltipAxisId(state), false);
};
var selectTooltipAxisRangeWithReverse = createSelector([selectTooltipAxis, selectTooltipAxisRange], combineAxisRangeWithReverse);
var selectTooltipAxisScale = createSelector([createSelector([
selectTooltipAxis,
selectTooltipAxisRealScaleType,
selectTooltipAxisDomainIncludingNiceTicks,
selectTooltipAxisRangeWithReverse
], combineConfiguredScale)], rechartsScaleFactory);
var selectTooltipDuplicateDomain = createSelector([
selectChartLayout,
selectAllTooltipAppliedValues,
selectTooltipAxis,
selectTooltipAxisType
], combineDuplicateDomain);
var selectTooltipCategoricalDomain = createSelector([
selectChartLayout,
selectAllTooltipAppliedValues,
selectTooltipAxis,
selectTooltipAxisType
], combineCategoricalDomain);
var combineTicksOfTooltipAxis = (layout, axis, realScaleType, scale, range, duplicateDomain, categoricalDomain, axisType) => {
if (!axis) return;
var { type } = axis;
var isCategorical = isCategoricalAxis(layout, axisType);
if (!scale) return;
var offsetForBand = realScaleType === "scaleBand" && scale.bandwidth ? scale.bandwidth() / 2 : 2;
var offset = type === "category" && scale.bandwidth ? scale.bandwidth() / offsetForBand : 0;
offset = axisType === "angleAxis" && range != null && (range === null || range === void 0 ? void 0 : range.length) >= 2 ? mathSign(range[0] - range[1]) * 2 * offset : offset;
if (isCategorical && categoricalDomain) return categoricalDomain.map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: entry,
index,
offset
};
}).filter(isNotNil);
return scale.domain().map((entry, index) => {
var scaled = scale.map(entry);
if (!isWellBehavedNumber(scaled)) return null;
return {
coordinate: scaled + offset,
value: duplicateDomain ? duplicateDomain[entry] : entry,
index,
offset
};
}).filter(isNotNil);
};
/**
* Of on four almost identical implementations of tick generation.
* The four horsemen of tick generation are:
* - {@link selectTooltipAxisTicks}
* - {@link combineAxisTicks}
* - {@link getTicksOfAxis}.
* - {@link combineGraphicalItemTicks}
*/
var selectTooltipAxisTicks = createSelector([
selectChartLayout,
selectTooltipAxis,
selectTooltipAxisRealScaleType,
selectTooltipAxisScale,
selectTooltipAxisRange,
selectTooltipDuplicateDomain,
selectTooltipCategoricalDomain,
selectTooltipAxisType
], combineTicksOfTooltipAxis);
var selectTooltipEventType = createSelector([
selectDefaultTooltipEventType,
selectValidateTooltipEventTypes,
selectTooltipSettings
], (defaultTooltipEventType, validateTooltipEventType, settings) => combineTooltipEventType(settings.shared, defaultTooltipEventType, validateTooltipEventType));
var selectTooltipTrigger = (state) => state.tooltip.settings.trigger;
var selectDefaultIndex = (state) => state.tooltip.settings.defaultIndex;
var selectTooltipInteractionState$1 = createSelector([
selectTooltipState,
selectTooltipEventType,
selectTooltipTrigger,
selectDefaultIndex
], combineTooltipInteractionState);
var selectActiveTooltipIndex = createSelector([
selectTooltipInteractionState$1,
selectTooltipDisplayedData,
selectTooltipAxisDataKey,
selectTooltipAxisDomain
], combineActiveTooltipIndex);
var selectActiveLabel$1 = createSelector([selectTooltipAxisTicks, selectActiveTooltipIndex], combineActiveLabel);
var selectActiveTooltipDataKey = createSelector([selectTooltipInteractionState$1], (tooltipInteraction) => {
if (!tooltipInteraction) return;
return tooltipInteraction.dataKey;
});
var selectActiveTooltipGraphicalItemId = createSelector([selectTooltipInteractionState$1], (tooltipInteraction) => {
if (!tooltipInteraction) return;
return tooltipInteraction.graphicalItemId;
});
var selectTooltipPayloadConfigurations$1 = createSelector([
selectTooltipState,
selectTooltipEventType,
selectTooltipTrigger,
selectDefaultIndex
], combineTooltipPayloadConfigurations);
var selectActiveTooltipCoordinate = createSelector([selectTooltipInteractionState$1, createSelector([
selectChartWidth,
selectChartHeight,
selectChartLayout,
selectChartOffsetInternal,
selectTooltipAxisTicks,
selectDefaultIndex,
selectTooltipPayloadConfigurations$1
], combineCoordinateForDefaultIndex)], (tooltipInteractionState, defaultIndexCoordinate) => {
if (tooltipInteractionState !== null && tooltipInteractionState !== void 0 && tooltipInteractionState.coordinate) return tooltipInteractionState.coordinate;
return defaultIndexCoordinate;
});
var selectIsTooltipActive$1 = createSelector([selectTooltipInteractionState$1], (tooltipInteractionState) => {
var _tooltipInteractionSt;
return (_tooltipInteractionSt = tooltipInteractionState === null || tooltipInteractionState === void 0 ? void 0 : tooltipInteractionState.active) !== null && _tooltipInteractionSt !== void 0 ? _tooltipInteractionSt : false;
});
var selectActiveTooltipDataPoints = createSelector([createSelector([
selectTooltipPayloadConfigurations$1,
selectActiveTooltipIndex,
selectChartDataWithIndexes,
selectTooltipAxisDataKey,
selectActiveLabel$1,
selectTooltipPayloadSearcher,
selectTooltipEventType
], combineTooltipPayload)], (payload) => {
if (payload == null) return;
var dataPoints = payload.map((p) => p.payload).filter((p) => p != null);
return Array.from(new Set(dataPoints));
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/useTooltipAxis.js
function ownKeys$51(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$51(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$51(Object(t), !0).forEach(function(r) {
_defineProperty$53(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$51(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$53(e, r, t) {
return (r = _toPropertyKey$53(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$53(t) {
var i = _toPrimitive$53(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$53(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var useTooltipAxis = () => useAppSelector(selectTooltipAxis);
var useTooltipAxisBandSize = () => {
var tooltipAxis = useTooltipAxis();
var tooltipTicks = useAppSelector(selectTooltipAxisTicks);
var tooltipAxisScale = useAppSelector(selectTooltipAxisScale);
if (!tooltipAxis || !tooltipAxisScale) return getBandSizeOfAxis(void 0, tooltipTicks);
return getBandSizeOfAxis(_objectSpread$51(_objectSpread$51({}, tooltipAxis), {}, { scale: tooltipAxisScale }), tooltipTicks);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getActiveCoordinate.js
function ownKeys$50(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$50(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$50(Object(t), !0).forEach(function(r) {
_defineProperty$52(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$50(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$52(e, r, t) {
return (r = _toPropertyKey$52(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$52(t) {
var i = _toPrimitive$52(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$52(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var getActiveCartesianCoordinate = (layout, tooltipTicks, activeIndex, pointer) => {
var entry = tooltipTicks.find((tick) => tick && tick.index === activeIndex);
if (entry) {
if (layout === "horizontal") return {
x: entry.coordinate,
y: pointer.relativeY
};
if (layout === "vertical") return {
x: pointer.relativeX,
y: entry.coordinate
};
}
return {
x: 0,
y: 0
};
};
/**
* Get the active coordinate in polar coordinate system.
* Internally we only really use x and y, but this returned object is part of public API
* (because it goes straight to the tooltip content) so we keep all the other properties
* for backwards compatibility.
*
* @param layout - The polar layout type ('centric' or 'radial').
* @param tooltipTicks - Array of tick items used for tooltips.
* @param activeIndex - The index of the active tick.
* @param rangeObj - The range object containing polar chart properties.
* @returns The active coordinate object with polar properties.
*/
var getActivePolarCoordinate = (layout, tooltipTicks, activeIndex, rangeObj) => {
var entry = tooltipTicks.find((tick) => tick && tick.index === activeIndex);
if (entry) {
if (layout === "centric") {
var _angle = entry.coordinate;
var { radius: _radius } = rangeObj;
return _objectSpread$50(_objectSpread$50(_objectSpread$50({}, rangeObj), polarToCartesian(rangeObj.cx, rangeObj.cy, _radius, _angle)), {}, {
angle: _angle,
radius: _radius
});
}
var radius = entry.coordinate;
var { angle } = rangeObj;
return _objectSpread$50(_objectSpread$50(_objectSpread$50({}, rangeObj), polarToCartesian(rangeObj.cx, rangeObj.cy, radius, angle)), {}, {
angle,
radius
});
}
return {
angle: 0,
clockWise: false,
cx: 0,
cy: 0,
endAngle: 0,
innerRadius: 0,
outerRadius: 0,
radius: 0,
startAngle: 0,
x: 0,
y: 0
};
};
function isInCartesianRange(pointer, offset) {
var { relativeX: x, relativeY: y } = pointer;
return x >= offset.left && x <= offset.left + offset.width && y >= offset.top && y <= offset.top + offset.height;
}
var calculateActiveTickIndex = (coordinate, ticks, unsortedTicks, axisType, range) => {
var _ticks$length;
var len = (_ticks$length = ticks === null || ticks === void 0 ? void 0 : ticks.length) !== null && _ticks$length !== void 0 ? _ticks$length : 0;
if (len <= 1 || coordinate == null) return 0;
if (axisType === "angleAxis" && range != null && Math.abs(Math.abs(range[1] - range[0]) - 360) <= 1e-6) for (var i = 0; i < len; i++) {
var _unsortedTicks, _unsortedTicks2, _unsortedTicks$i, _unsortedTicks$, _unsortedTicks3;
var before = i > 0 ? (_unsortedTicks = unsortedTicks[i - 1]) === null || _unsortedTicks === void 0 ? void 0 : _unsortedTicks.coordinate : (_unsortedTicks2 = unsortedTicks[len - 1]) === null || _unsortedTicks2 === void 0 ? void 0 : _unsortedTicks2.coordinate;
var cur = (_unsortedTicks$i = unsortedTicks[i]) === null || _unsortedTicks$i === void 0 ? void 0 : _unsortedTicks$i.coordinate;
var after = i >= len - 1 ? (_unsortedTicks$ = unsortedTicks[0]) === null || _unsortedTicks$ === void 0 ? void 0 : _unsortedTicks$.coordinate : (_unsortedTicks3 = unsortedTicks[i + 1]) === null || _unsortedTicks3 === void 0 ? void 0 : _unsortedTicks3.coordinate;
var sameDirectionCoord = void 0;
if (before == null || cur == null || after == null) continue;
if (mathSign(cur - before) !== mathSign(after - cur)) {
var diffInterval = [];
if (mathSign(after - cur) === mathSign(range[1] - range[0])) {
sameDirectionCoord = after;
var curInRange = cur + range[1] - range[0];
diffInterval[0] = Math.min(curInRange, (curInRange + before) / 2);
diffInterval[1] = Math.max(curInRange, (curInRange + before) / 2);
} else {
sameDirectionCoord = before;
var afterInRange = after + range[1] - range[0];
diffInterval[0] = Math.min(cur, (afterInRange + cur) / 2);
diffInterval[1] = Math.max(cur, (afterInRange + cur) / 2);
}
var sameInterval = [Math.min(cur, (sameDirectionCoord + cur) / 2), Math.max(cur, (sameDirectionCoord + cur) / 2)];
if (coordinate > sameInterval[0] && coordinate <= sameInterval[1] || coordinate >= diffInterval[0] && coordinate <= diffInterval[1]) {
var _unsortedTicks$i2;
return (_unsortedTicks$i2 = unsortedTicks[i]) === null || _unsortedTicks$i2 === void 0 ? void 0 : _unsortedTicks$i2.index;
}
} else {
var minValue = Math.min(before, after);
var maxValue = Math.max(before, after);
if (coordinate > (minValue + cur) / 2 && coordinate <= (maxValue + cur) / 2) {
var _unsortedTicks$i3;
return (_unsortedTicks$i3 = unsortedTicks[i]) === null || _unsortedTicks$i3 === void 0 ? void 0 : _unsortedTicks$i3.index;
}
}
}
else if (ticks) for (var _i = 0; _i < len; _i++) {
var curr = ticks[_i];
if (curr == null) continue;
var next = ticks[_i + 1];
var prev = ticks[_i - 1];
if (_i === 0 && next != null && coordinate <= (curr.coordinate + next.coordinate) / 2) return curr.index;
if (_i === len - 1 && prev != null && coordinate > (curr.coordinate + prev.coordinate) / 2) return curr.index;
if (_i > 0 && _i < len - 1 && prev != null && next != null && coordinate > (curr.coordinate + prev.coordinate) / 2 && coordinate <= (curr.coordinate + next.coordinate) / 2) return curr.index;
}
return -1;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectors.js
var useChartName = () => {
return useAppSelector(selectChartName);
};
var pickTooltipEventType = (_state, tooltipEventType) => tooltipEventType;
var pickTrigger = (_state, _tooltipEventType, trigger) => trigger;
var pickDefaultIndex = (_state, _tooltipEventType, _trigger, defaultIndex) => defaultIndex;
var selectOrderedTooltipTicks = createSelector(selectTooltipAxisTicks, (ticks) => (0, import_sortBy.default)(ticks, (o) => o.coordinate));
var selectTooltipInteractionState = createSelector([
selectTooltipState,
pickTooltipEventType,
pickTrigger,
pickDefaultIndex
], combineTooltipInteractionState);
var selectActiveIndex = createSelector([
selectTooltipInteractionState,
selectTooltipDisplayedData,
selectTooltipAxisDataKey,
selectTooltipAxisDomain
], combineActiveTooltipIndex);
var selectTooltipDataKey = (state, tooltipEventType, trigger) => {
if (tooltipEventType == null) return;
var tooltipState = selectTooltipState(state);
if (tooltipEventType === "axis") {
if (trigger === "hover") return tooltipState.axisInteraction.hover.dataKey;
return tooltipState.axisInteraction.click.dataKey;
}
if (trigger === "hover") return tooltipState.itemInteraction.hover.dataKey;
return tooltipState.itemInteraction.click.dataKey;
};
var selectTooltipPayloadConfigurations = createSelector([
selectTooltipState,
pickTooltipEventType,
pickTrigger,
pickDefaultIndex
], combineTooltipPayloadConfigurations);
var selectCoordinateForDefaultIndex = createSelector([
selectChartWidth,
selectChartHeight,
selectChartLayout,
selectChartOffsetInternal,
selectTooltipAxisTicks,
pickDefaultIndex,
selectTooltipPayloadConfigurations
], combineCoordinateForDefaultIndex);
var selectActiveCoordinate = createSelector([selectTooltipInteractionState, selectCoordinateForDefaultIndex], (tooltipInteractionState, defaultIndexCoordinate) => {
var _tooltipInteractionSt;
return (_tooltipInteractionSt = tooltipInteractionState.coordinate) !== null && _tooltipInteractionSt !== void 0 ? _tooltipInteractionSt : defaultIndexCoordinate;
});
var selectActiveLabel = createSelector([selectTooltipAxisTicks, selectActiveIndex], combineActiveLabel);
var selectTooltipPayload = createSelector([
selectTooltipPayloadConfigurations,
selectActiveIndex,
selectChartDataWithIndexes,
selectTooltipAxisDataKey,
selectActiveLabel,
selectTooltipPayloadSearcher,
pickTooltipEventType
], combineTooltipPayload);
var selectIsTooltipActive = createSelector([selectTooltipInteractionState, selectActiveIndex], (tooltipInteractionState, activeIndex) => {
return {
isActive: tooltipInteractionState.active && activeIndex != null,
activeIndex
};
});
var combineActiveCartesianProps = (chartEvent, layout, tooltipAxisType, tooltipAxisRange, tooltipTicks, orderedTooltipTicks, offset) => {
if (!chartEvent || !tooltipAxisType || !tooltipAxisRange || !tooltipTicks) return;
if (!isInCartesianRange(chartEvent, offset)) return;
var activeIndex = calculateActiveTickIndex(calculateCartesianTooltipPos(chartEvent, layout), orderedTooltipTicks, tooltipTicks, tooltipAxisType, tooltipAxisRange);
var activeCoordinate = getActiveCartesianCoordinate(layout, tooltipTicks, activeIndex, chartEvent);
return {
activeIndex: String(activeIndex),
activeCoordinate
};
};
var combineActivePolarProps = (chartEvent, layout, polarViewBox, tooltipAxisType, tooltipAxisRange, tooltipTicks, orderedTooltipTicks) => {
if (!chartEvent || !tooltipAxisType || !tooltipAxisRange || !tooltipTicks || !polarViewBox) return;
var rangeObj = inRangeOfSector(chartEvent, polarViewBox);
if (!rangeObj) return;
var activeIndex = calculateActiveTickIndex(calculatePolarTooltipPos(rangeObj, layout), orderedTooltipTicks, tooltipTicks, tooltipAxisType, tooltipAxisRange);
var activeCoordinate = getActivePolarCoordinate(layout, tooltipTicks, activeIndex, rangeObj);
return {
activeIndex: String(activeIndex),
activeCoordinate
};
};
var combineActiveProps = (chartEvent, layout, polarViewBox, tooltipAxisType, tooltipAxisRange, tooltipTicks, orderedTooltipTicks, offset) => {
if (!chartEvent || !layout || !tooltipAxisType || !tooltipAxisRange || !tooltipTicks) return;
if (layout === "horizontal" || layout === "vertical") return combineActiveCartesianProps(chartEvent, layout, tooltipAxisType, tooltipAxisRange, tooltipTicks, orderedTooltipTicks, offset);
return combineActivePolarProps(chartEvent, layout, polarViewBox, tooltipAxisType, tooltipAxisRange, tooltipTicks, orderedTooltipTicks);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/zIndex/zIndexSelectors.js
/**
* Given a zIndex, returns the corresponding portal element reference.
* If no zIndex is provided or if the zIndex is not registered, returns undefined.
*
* It also returns undefined in case the z-index portal has not been rendered yet.
*/
var selectZIndexPortalElement = createSelector((state) => state.zIndex.zIndexMap, (_, zIndex) => zIndex, (_, _zIndex, isPanorama) => isPanorama, (zIndexMap, zIndex, isPanorama) => {
if (zIndex == null) return;
var entry = zIndexMap[zIndex];
if (entry == null) return;
if (isPanorama) return entry.panoramaElement;
return entry.element;
});
var selectAllRegisteredZIndexes = createSelector((state) => state.zIndex.zIndexMap, (zIndexMap) => {
var allNumbers = Object.keys(zIndexMap).map((zIndexStr) => parseInt(zIndexStr, 10)).concat(Object.values(DefaultZIndexes));
return Array.from(new Set(allNumbers)).sort((a, b) => a - b);
}, { memoizeOptions: { resultEqualityCheck: arrayContentsAreEqualCheck } });
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/zIndexSlice.js
/**
* This slice contains a registry of z-index values for various components.
* The state is a map from z-index numbers to element references.
*/
function ownKeys$49(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$49(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$49(Object(t), !0).forEach(function(r) {
_defineProperty$51(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$49(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$51(e, r, t) {
return (r = _toPropertyKey$51(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$51(t) {
var i = _toPrimitive$51(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$51(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var initialState$4 = { zIndexMap: Object.values(DefaultZIndexes).reduce((acc, current) => _objectSpread$49(_objectSpread$49({}, acc), {}, { [current]: {
element: void 0,
panoramaElement: void 0,
consumers: 0
} }), {}) };
var defaultZIndexSet = new Set(Object.values(DefaultZIndexes));
function isDefaultZIndex(zIndex) {
return defaultZIndexSet.has(zIndex);
}
var zIndexSlice = createSlice({
name: "zIndex",
initialState: initialState$4,
reducers: {
registerZIndexPortal: {
reducer: (state, action) => {
var { zIndex } = action.payload;
if (state.zIndexMap[zIndex]) state.zIndexMap[zIndex].consumers += 1;
else state.zIndexMap[zIndex] = {
consumers: 1,
element: void 0,
panoramaElement: void 0
};
},
prepare: prepareAutoBatched()
},
unregisterZIndexPortal: {
reducer: (state, action) => {
var { zIndex } = action.payload;
if (state.zIndexMap[zIndex]) {
state.zIndexMap[zIndex].consumers -= 1;
if (state.zIndexMap[zIndex].consumers <= 0 && !isDefaultZIndex(zIndex)) delete state.zIndexMap[zIndex];
}
},
prepare: prepareAutoBatched()
},
registerZIndexPortalElement: {
reducer: (state, action) => {
var { zIndex, element, isPanorama } = action.payload;
if (state.zIndexMap[zIndex]) if (isPanorama) state.zIndexMap[zIndex].panoramaElement = castDraft(element);
else state.zIndexMap[zIndex].element = castDraft(element);
else state.zIndexMap[zIndex] = {
consumers: 0,
element: isPanorama ? void 0 : castDraft(element),
panoramaElement: isPanorama ? castDraft(element) : void 0
};
},
prepare: prepareAutoBatched()
},
unregisterZIndexPortalElement: {
reducer: (state, action) => {
var { zIndex } = action.payload;
if (state.zIndexMap[zIndex]) if (action.payload.isPanorama) state.zIndexMap[zIndex].panoramaElement = void 0;
else state.zIndexMap[zIndex].element = void 0;
},
prepare: prepareAutoBatched()
}
}
});
var { registerZIndexPortal, unregisterZIndexPortal, registerZIndexPortalElement, unregisterZIndexPortalElement } = zIndexSlice.actions;
var zIndexReducer = zIndexSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/zIndex/ZIndexLayer.js
/**
* @since 3.4
*/
/**
* A layer that renders its children into a portal corresponding to the given zIndex.
* We can't use regular CSS `z-index` because SVG does not support it.
* So instead, we create separate DOM nodes for each zIndex layer
* and render the children into the corresponding DOM node using React portals.
*
* This component must be used inside a Chart component.
*
* @param zIndex numeric zIndex value, higher values are rendered on top of lower values
* @param children the content to render inside this zIndex layer
*
* @since 3.4
*/
function ZIndexLayer(_ref) {
var { zIndex, children } = _ref;
var shouldRenderInPortal = useIsInChartContext() && zIndex !== void 0 && zIndex !== 0;
var isPanorama = useIsPanorama();
/**
* When zIndex changes, the new portal element is not immediately available because
* it requires a full render cycle through AllZIndexPortals → ZIndexSvgPortal.
* During this transition we keep rendering into the previous portal element
* to avoid an unmount/remount cycle that would cause children to briefly disappear.
*
* `registeredZIndexesRef` tracks every zIndex we have registered so that
* we can defer unregistration of old values until the new portal is ready.
* `lastPortalElementRef` caches the most recent valid portal DOM node.
*/
var lastPortalElementRef = (0, import_react.useRef)(void 0);
var registeredZIndexesRef = (0, import_react.useRef)(/* @__PURE__ */ new Set());
var dispatch = useAppDispatch();
var portalElement = useAppSelector((state) => selectZIndexPortalElement(state, zIndex, isPanorama));
(0, import_react.useLayoutEffect)(() => {
if (!shouldRenderInPortal) {
var registered = registeredZIndexesRef.current;
registered.forEach((z) => {
dispatch(unregisterZIndexPortal({ zIndex: z }));
});
registered.clear();
lastPortalElementRef.current = void 0;
return;
}
if (!registeredZIndexesRef.current.has(zIndex)) {
dispatch(registerZIndexPortal({ zIndex }));
registeredZIndexesRef.current.add(zIndex);
}
if (portalElement) {
lastPortalElementRef.current = portalElement;
var _registered = registeredZIndexesRef.current;
_registered.forEach((z) => {
if (z !== zIndex) {
dispatch(unregisterZIndexPortal({ zIndex: z }));
_registered.delete(z);
}
});
}
}, [
dispatch,
zIndex,
shouldRenderInPortal,
portalElement
]);
(0, import_react.useLayoutEffect)(() => {
var registered = registeredZIndexesRef.current;
return () => {
registered.forEach((z) => {
dispatch(unregisterZIndexPortal({ zIndex: z }));
});
registered.clear();
};
}, [dispatch]);
if (!shouldRenderInPortal) return children;
var targetElement = portalElement !== null && portalElement !== void 0 ? portalElement : lastPortalElementRef.current;
if (!targetElement) return null;
return /* @__PURE__ */ (0, import_react_dom.createPortal)(children, targetElement);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Cursor.js
function _extends$41() {
return _extends$41 = 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$41.apply(null, arguments);
}
function ownKeys$48(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$48(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$48(Object(t), !0).forEach(function(r) {
_defineProperty$50(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$48(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$50(e, r, t) {
return (r = _toPropertyKey$50(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$50(t) {
var i = _toPrimitive$50(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$50(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* If set false, no cursor will be drawn when tooltip is active.
* If set an object, the option is the configuration of cursor.
* If set a React element, the option is the custom react element of drawing cursor
*/
function RenderCursor(_ref) {
var { cursor, cursorComp, cursorProps } = _ref;
if (/* @__PURE__ */ (0, import_react.isValidElement)(cursor)) return /* @__PURE__ */ (0, import_react.cloneElement)(cursor, cursorProps);
return /* @__PURE__ */ (0, import_react.createElement)(cursorComp, cursorProps);
}
function CursorInternal(props) {
var _props$zIndex;
var { coordinate, payload, index, offset, tooltipAxisBandSize, layout, cursor, tooltipEventType, chartName } = props;
var activeCoordinate = coordinate;
var activePayload = payload;
var activeTooltipIndex = index;
if (!cursor || !activeCoordinate || chartName !== "ScatterChart" && tooltipEventType !== "axis") return null;
var restProps, cursorComp, preferredZIndex;
if (chartName === "ScatterChart") {
restProps = activeCoordinate;
cursorComp = Cross;
preferredZIndex = DefaultZIndexes.cursorLine;
} else if (chartName === "BarChart") {
restProps = getCursorRectangle(layout, activeCoordinate, offset, tooltipAxisBandSize);
cursorComp = Rectangle;
preferredZIndex = DefaultZIndexes.cursorRectangle;
} else if (layout === "radial" && isPolarCoordinate(activeCoordinate)) {
var { cx, cy, radius, startAngle, endAngle } = getRadialCursorPoints(activeCoordinate);
restProps = {
cx,
cy,
startAngle,
endAngle,
innerRadius: radius,
outerRadius: radius
};
cursorComp = Sector;
preferredZIndex = DefaultZIndexes.cursorLine;
} else {
restProps = { points: getCursorPoints(layout, activeCoordinate, offset) };
cursorComp = Curve;
preferredZIndex = DefaultZIndexes.cursorLine;
}
var extraClassName = typeof cursor === "object" && "className" in cursor ? cursor.className : void 0;
var cursorProps = _objectSpread$48(_objectSpread$48(_objectSpread$48(_objectSpread$48({
stroke: "#ccc",
pointerEvents: "none"
}, offset), restProps), svgPropertiesNoEventsFromUnknown(cursor)), {}, {
payload: activePayload,
payloadIndex: activeTooltipIndex,
className: clsx("recharts-tooltip-cursor", extraClassName)
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: (_props$zIndex = props.zIndex) !== null && _props$zIndex !== void 0 ? _props$zIndex : preferredZIndex }, /* @__PURE__ */ import_react.createElement(RenderCursor, {
cursor,
cursorComp,
cursorProps
}));
}
function Cursor(props) {
var tooltipAxisBandSize = useTooltipAxisBandSize();
var offset = useOffsetInternal();
var layout = useChartLayout();
var chartName = useChartName();
if (tooltipAxisBandSize == null || offset == null || layout == null || chartName == null) return null;
return /* @__PURE__ */ import_react.createElement(CursorInternal, _extends$41({}, props, {
offset,
layout,
tooltipAxisBandSize,
chartName
}));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/tooltipPortalContext.js
var TooltipPortalContext = /* @__PURE__ */ (0, import_react.createContext)(null);
var useTooltipPortal = () => (0, import_react.useContext)(TooltipPortalContext);
var eventemitter3_default = (/* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
var has = Object.prototype.hasOwnProperty, prefix = "~";
/**
* Constructor to create a storage for our `EE` objects.
* An `Events` instance is a plain object whose properties are event names.
*
* @constructor
* @private
*/
function Events() {}
if (Object.create) {
Events.prototype = Object.create(null);
if (!new Events().__proto__) prefix = false;
}
/**
* Representation of a single event listener.
*
* @param {Function} fn The listener function.
* @param {*} context The context to invoke the listener with.
* @param {Boolean} [once=false] Specify if the listener is a one-time listener.
* @constructor
* @private
*/
function EE(fn, context, once) {
this.fn = fn;
this.context = context;
this.once = once || false;
}
/**
* Add a listener for a given event.
*
* @param {EventEmitter} emitter Reference to the `EventEmitter` instance.
* @param {(String|Symbol)} event The event name.
* @param {Function} fn The listener function.
* @param {*} context The context to invoke the listener with.
* @param {Boolean} once Specify if the listener is a one-time listener.
* @returns {EventEmitter}
* @private
*/
function addListener(emitter, event, fn, context, once) {
if (typeof fn !== "function") throw new TypeError("The listener must be a function");
var listener = new EE(fn, context || emitter, once), evt = prefix ? prefix + event : event;
if (!emitter._events[evt]) emitter._events[evt] = listener, emitter._eventsCount++;
else if (!emitter._events[evt].fn) emitter._events[evt].push(listener);
else emitter._events[evt] = [emitter._events[evt], listener];
return emitter;
}
/**
* Clear event by name.
*
* @param {EventEmitter} emitter Reference to the `EventEmitter` instance.
* @param {(String|Symbol)} evt The Event name.
* @private
*/
function clearEvent(emitter, evt) {
if (--emitter._eventsCount === 0) emitter._events = new Events();
else delete emitter._events[evt];
}
/**
* Minimal `EventEmitter` interface that is molded against the Node.js
* `EventEmitter` interface.
*
* @constructor
* @public
*/
function EventEmitter() {
this._events = new Events();
this._eventsCount = 0;
}
/**
* Return an array listing the events for which the emitter has registered
* listeners.
*
* @returns {Array}
* @public
*/
EventEmitter.prototype.eventNames = function eventNames() {
var names = [], events, name;
if (this._eventsCount === 0) return names;
for (name in events = this._events) if (has.call(events, name)) names.push(prefix ? name.slice(1) : name);
if (Object.getOwnPropertySymbols) return names.concat(Object.getOwnPropertySymbols(events));
return names;
};
/**
* Return the listeners registered for a given event.
*
* @param {(String|Symbol)} event The event name.
* @returns {Array} The registered listeners.
* @public
*/
EventEmitter.prototype.listeners = function listeners(event) {
var evt = prefix ? prefix + event : event, handlers = this._events[evt];
if (!handlers) return [];
if (handlers.fn) return [handlers.fn];
for (var i = 0, l = handlers.length, ee = new Array(l); i < l; i++) ee[i] = handlers[i].fn;
return ee;
};
/**
* Return the number of listeners listening to a given event.
*
* @param {(String|Symbol)} event The event name.
* @returns {Number} The number of listeners.
* @public
*/
EventEmitter.prototype.listenerCount = function listenerCount(event) {
var evt = prefix ? prefix + event : event, listeners = this._events[evt];
if (!listeners) return 0;
if (listeners.fn) return 1;
return listeners.length;
};
/**
* Calls each of the listeners registered for a given event.
*
* @param {(String|Symbol)} event The event name.
* @returns {Boolean} `true` if the event had listeners, else `false`.
* @public
*/
EventEmitter.prototype.emit = function emit(event, a1, a2, a3, a4, a5) {
var evt = prefix ? prefix + event : event;
if (!this._events[evt]) return false;
var listeners = this._events[evt], len = arguments.length, args, i;
if (listeners.fn) {
if (listeners.once) this.removeListener(event, listeners.fn, void 0, true);
switch (len) {
case 1: return listeners.fn.call(listeners.context), true;
case 2: return listeners.fn.call(listeners.context, a1), true;
case 3: return listeners.fn.call(listeners.context, a1, a2), true;
case 4: return listeners.fn.call(listeners.context, a1, a2, a3), true;
case 5: return listeners.fn.call(listeners.context, a1, a2, a3, a4), true;
case 6: return listeners.fn.call(listeners.context, a1, a2, a3, a4, a5), true;
}
for (i = 1, args = new Array(len - 1); i < len; i++) args[i - 1] = arguments[i];
listeners.fn.apply(listeners.context, args);
} else {
var length = listeners.length, j;
for (i = 0; i < length; i++) {
if (listeners[i].once) this.removeListener(event, listeners[i].fn, void 0, true);
switch (len) {
case 1:
listeners[i].fn.call(listeners[i].context);
break;
case 2:
listeners[i].fn.call(listeners[i].context, a1);
break;
case 3:
listeners[i].fn.call(listeners[i].context, a1, a2);
break;
case 4:
listeners[i].fn.call(listeners[i].context, a1, a2, a3);
break;
default:
if (!args) for (j = 1, args = new Array(len - 1); j < len; j++) args[j - 1] = arguments[j];
listeners[i].fn.apply(listeners[i].context, args);
}
}
}
return true;
};
/**
* Add a listener for a given event.
*
* @param {(String|Symbol)} event The event name.
* @param {Function} fn The listener function.
* @param {*} [context=this] The context to invoke the listener with.
* @returns {EventEmitter} `this`.
* @public
*/
EventEmitter.prototype.on = function on(event, fn, context) {
return addListener(this, event, fn, context, false);
};
/**
* Add a one-time listener for a given event.
*
* @param {(String|Symbol)} event The event name.
* @param {Function} fn The listener function.
* @param {*} [context=this] The context to invoke the listener with.
* @returns {EventEmitter} `this`.
* @public
*/
EventEmitter.prototype.once = function once(event, fn, context) {
return addListener(this, event, fn, context, true);
};
/**
* Remove the listeners of a given event.
*
* @param {(String|Symbol)} event The event name.
* @param {Function} fn Only remove the listeners that match this function.
* @param {*} context Only remove the listeners that have this context.
* @param {Boolean} once Only remove one-time listeners.
* @returns {EventEmitter} `this`.
* @public
*/
EventEmitter.prototype.removeListener = function removeListener(event, fn, context, once) {
var evt = prefix ? prefix + event : event;
if (!this._events[evt]) return this;
if (!fn) {
clearEvent(this, evt);
return this;
}
var listeners = this._events[evt];
if (listeners.fn) {
if (listeners.fn === fn && (!once || listeners.once) && (!context || listeners.context === context)) clearEvent(this, evt);
} else {
for (var i = 0, events = [], length = listeners.length; i < length; i++) if (listeners[i].fn !== fn || once && !listeners[i].once || context && listeners[i].context !== context) events.push(listeners[i]);
if (events.length) this._events[evt] = events.length === 1 ? events[0] : events;
else clearEvent(this, evt);
}
return this;
};
/**
* Remove all listeners, or those of the specified event.
*
* @param {(String|Symbol)} [event] The event name.
* @returns {EventEmitter} `this`.
* @public
*/
EventEmitter.prototype.removeAllListeners = function removeAllListeners(event) {
var evt;
if (event) {
evt = prefix ? prefix + event : event;
if (this._events[evt]) clearEvent(this, evt);
} else {
this._events = new Events();
this._eventsCount = 0;
}
return this;
};
EventEmitter.prototype.off = EventEmitter.prototype.removeListener;
EventEmitter.prototype.addListener = EventEmitter.prototype.on;
EventEmitter.prefixed = prefix;
EventEmitter.EventEmitter = EventEmitter;
if ("undefined" !== typeof module) module.exports = EventEmitter;
})))(), 1)).default;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/Events.js
var eventCenter = new eventemitter3_default();
var TOOLTIP_SYNC_EVENT = "recharts.syncEvent.tooltip";
var BRUSH_SYNC_EVENT = "recharts.syncEvent.brush";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/optionsSlice.js
/**
* These chart options are decided internally, by Recharts,
* and will not change during the lifetime of the chart.
*
* Changing these options can be done by swapping the root element
* which will make a brand-new Redux store.
*
* If you want to store options that can be changed by the user,
* use UpdatableChartOptions in rootPropsSlice.ts.
*/
var arrayTooltipSearcher = (data, strIndex) => {
if (!strIndex) return void 0;
if (!Array.isArray(data)) return void 0;
var numIndex = Number.parseInt(strIndex, 10);
if (isNan(numIndex)) return;
return data[numIndex];
};
var optionsSlice = createSlice({
name: "options",
initialState: {
chartName: "",
tooltipPayloadSearcher: () => void 0,
eventEmitter: void 0,
defaultTooltipEventType: "axis"
},
reducers: { createEventEmitter: (state) => {
if (state.eventEmitter == null) state.eventEmitter = Symbol("rechartsEventEmitter");
} }
});
var optionsReducer = optionsSlice.reducer;
var { createEventEmitter } = optionsSlice.actions;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/synchronisation/syncSelectors.js
function selectSynchronisedTooltipState(state) {
return state.tooltip.syncInteraction;
}
var chartDataSlice = createSlice({
name: "chartData",
initialState: {
chartData: void 0,
computedData: void 0,
dataStartIndex: 0,
dataEndIndex: 0
},
reducers: {
setChartData(state, action) {
state.chartData = castDraft(action.payload);
if (action.payload == null) {
state.dataStartIndex = 0;
state.dataEndIndex = 0;
return;
}
if (action.payload.length > 0 && state.dataEndIndex !== action.payload.length - 1) state.dataEndIndex = action.payload.length - 1;
},
setComputedData(state, action) {
state.computedData = action.payload;
},
setDataStartEndIndexes(state, action) {
var { startIndex, endIndex } = action.payload;
if (startIndex != null) state.dataStartIndex = startIndex;
if (endIndex != null) state.dataEndIndex = endIndex;
}
}
});
var { setChartData, setDataStartEndIndexes, setComputedData } = chartDataSlice.actions;
var chartDataReducer = chartDataSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/synchronisation/useChartSynchronisation.js
var _excluded$32 = ["x", "y"];
function ownKeys$47(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$47(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$47(Object(t), !0).forEach(function(r) {
_defineProperty$49(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$47(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$49(e, r, t) {
return (r = _toPropertyKey$49(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$49(t) {
var i = _toPrimitive$49(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$49(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$32(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$32(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$32(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* Listens for tooltip sync events from other charts and dispatches the appropriate
* sync interaction state based on the current chart's syncMethod.
*
* Handles three sync methods:
* - 'index': passes through the tooltip index with coordinate scaling between chart viewBoxes
* - 'value': matches the incoming label against this chart's axis ticks by string comparison
* - function: delegates tick resolution to a user-provided callback
*
* When a synced label has no matching tick (e.g. sparse chart), the tooltip is hidden
* but sourceViewBox is preserved to prevent counter-emission cascades.
*/
function useTooltipSyncEventsListener() {
var mySyncId = useAppSelector(selectSyncId);
var myEventEmitter = useAppSelector(selectEventEmitter);
var dispatch = useAppDispatch();
var syncMethod = useAppSelector(selectSyncMethod);
var tooltipTicks = useAppSelector(selectTooltipAxisTicks);
var layout = useChartLayout();
var viewBox = useViewBox();
(0, import_react.useEffect)(() => {
if (mySyncId == null) return noop$2;
var listener = (incomingSyncId, action, emitter) => {
if (myEventEmitter === emitter) return;
if (mySyncId !== incomingSyncId) return;
if (action.payload.active === false) {
dispatch(setSyncInteraction({
active: false,
coordinate: void 0,
dataKey: void 0,
index: null,
label: void 0,
sourceViewBox: void 0,
graphicalItemId: void 0
}));
return;
}
if (syncMethod === "index") {
var _action$payload;
if (viewBox && action !== null && action !== void 0 && (_action$payload = action.payload) !== null && _action$payload !== void 0 && _action$payload.coordinate && action.payload.sourceViewBox) {
var _action$payload$coord = action.payload.coordinate, { x: _x, y: _y } = _action$payload$coord, otherCoordinateProps = _objectWithoutProperties$32(_action$payload$coord, _excluded$32);
var { x: sourceX, y: sourceY, width: sourceWidth, height: sourceHeight } = action.payload.sourceViewBox;
var scaledCoordinate = _objectSpread$47(_objectSpread$47({}, otherCoordinateProps), {}, {
x: viewBox.x + (sourceWidth ? (_x - sourceX) / sourceWidth : 0) * viewBox.width,
y: viewBox.y + (sourceHeight ? (_y - sourceY) / sourceHeight : 0) * viewBox.height
});
dispatch(_objectSpread$47(_objectSpread$47({}, action), {}, { payload: _objectSpread$47(_objectSpread$47({}, action.payload), {}, { coordinate: scaledCoordinate }) }));
} else dispatch(action);
return;
}
if (tooltipTicks == null) return;
var activeTick;
if (typeof syncMethod === "function") activeTick = tooltipTicks[syncMethod(tooltipTicks, {
activeTooltipIndex: action.payload.index == null ? void 0 : Number(action.payload.index),
isTooltipActive: action.payload.active,
activeIndex: action.payload.index == null ? void 0 : Number(action.payload.index),
activeLabel: action.payload.label,
activeDataKey: action.payload.dataKey,
activeCoordinate: action.payload.coordinate
})];
else if (syncMethod === "value") activeTick = tooltipTicks.find((tick) => String(tick.value) === action.payload.label);
var { coordinate } = action.payload;
if (coordinate == null || viewBox == null) {
dispatch(setSyncInteraction({
active: false,
coordinate: void 0,
dataKey: void 0,
index: null,
label: void 0,
sourceViewBox: void 0,
graphicalItemId: void 0
}));
return;
}
if (activeTick == null) {
dispatch(setSyncInteraction({
active: false,
coordinate: void 0,
dataKey: void 0,
index: null,
label: void 0,
sourceViewBox: action.payload.sourceViewBox,
graphicalItemId: void 0
}));
return;
}
var { x, y } = coordinate;
var validateChartX = Math.min(x, viewBox.x + viewBox.width);
var validateChartY = Math.min(y, viewBox.y + viewBox.height);
var activeCoordinate = {
x: layout === "horizontal" ? activeTick.coordinate : validateChartX,
y: layout === "horizontal" ? validateChartY : activeTick.coordinate
};
dispatch(setSyncInteraction({
active: action.payload.active,
coordinate: activeCoordinate,
dataKey: action.payload.dataKey,
index: String(activeTick.index),
label: action.payload.label,
sourceViewBox: action.payload.sourceViewBox,
graphicalItemId: action.payload.graphicalItemId
}));
};
eventCenter.on(TOOLTIP_SYNC_EVENT, listener);
return () => {
eventCenter.off(TOOLTIP_SYNC_EVENT, listener);
};
}, [
useAppSelector((state) => state.rootProps.className),
dispatch,
myEventEmitter,
mySyncId,
syncMethod,
tooltipTicks,
layout,
viewBox
]);
}
/**
* Listens for brush sync events from other charts and updates this chart's
* data start/end indexes to match, keeping brush positions synchronised.
*/
function useBrushSyncEventsListener() {
var mySyncId = useAppSelector(selectSyncId);
var myEventEmitter = useAppSelector(selectEventEmitter);
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
if (mySyncId == null) return noop$2;
var listener = (incomingSyncId, action, emitter) => {
if (myEventEmitter === emitter) return;
if (mySyncId === incomingSyncId) dispatch(setDataStartEndIndexes(action));
};
eventCenter.on(BRUSH_SYNC_EVENT, listener);
return () => {
eventCenter.off(BRUSH_SYNC_EVENT, listener);
};
}, [
dispatch,
myEventEmitter,
mySyncId
]);
}
/**
* Will receive synchronisation events from other charts.
*
* Reads syncMethod from state and decides how to synchronise the tooltip based on that.
*
* @returns void
*/
function useSynchronisedEventsFromOtherCharts() {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(createEventEmitter());
}, [dispatch]);
useTooltipSyncEventsListener();
useBrushSyncEventsListener();
}
/**
* Will send events to other charts.
* If syncId is undefined, no events will be sent.
*
* This ignores the syncMethod, because that is set and computed on the receiving end.
*
* Outgoing emissions are suppressed when `isReceivingSynchronisation` is true,
* which is determined by the presence of `sourceViewBox` in the sync state (not by
* the tooltip's `active` flag). This matters for charts with sparse data: when an
* incoming sync label has no matching tick, the tooltip becomes inactive but
* `sourceViewBox` remains set, so the chart is still considered "receiving" and
* will not emit a counter-sync event that would cascade-clear other charts' tooltips.
*
* @param tooltipEventType from Tooltip
* @param trigger from Tooltip
* @param activeCoordinate from state
* @param activeLabel from state
* @param activeIndex from state
* @param isTooltipActive from state
* @returns void
*/
function useTooltipChartSynchronisation(tooltipEventType, trigger, activeCoordinate, activeLabel, activeIndex, isTooltipActive) {
var activeDataKey = useAppSelector((state) => selectTooltipDataKey(state, tooltipEventType, trigger));
var activeGraphicalItemId = useAppSelector(selectActiveTooltipGraphicalItemId);
var eventEmitterSymbol = useAppSelector(selectEventEmitter);
var syncId = useAppSelector(selectSyncId);
var syncMethod = useAppSelector(selectSyncMethod);
var tooltipState = useAppSelector(selectSynchronisedTooltipState);
var isReceivingSynchronisation = (tooltipState === null || tooltipState === void 0 ? void 0 : tooltipState.sourceViewBox) != null;
var viewBox = useViewBox();
(0, import_react.useEffect)(() => {
if (isReceivingSynchronisation) return;
if (syncId == null) return;
if (eventEmitterSymbol == null) return;
var syncAction = setSyncInteraction({
active: isTooltipActive,
coordinate: activeCoordinate,
dataKey: activeDataKey,
index: activeIndex,
label: typeof activeLabel === "number" ? String(activeLabel) : activeLabel,
sourceViewBox: viewBox,
graphicalItemId: activeGraphicalItemId
});
eventCenter.emit(TOOLTIP_SYNC_EVENT, syncId, syncAction, eventEmitterSymbol);
}, [
isReceivingSynchronisation,
activeCoordinate,
activeDataKey,
activeGraphicalItemId,
activeIndex,
activeLabel,
eventEmitterSymbol,
syncId,
syncMethod,
isTooltipActive,
viewBox
]);
}
/**
* Emits brush sync events to other charts when the brush start/end indexes change.
* If syncId is undefined, no events will be sent.
*/
function useBrushChartSynchronisation() {
var syncId = useAppSelector(selectSyncId);
var eventEmitterSymbol = useAppSelector(selectEventEmitter);
var brushStartIndex = useAppSelector((state) => state.chartData.dataStartIndex);
var brushEndIndex = useAppSelector((state) => state.chartData.dataEndIndex);
(0, import_react.useEffect)(() => {
if (syncId == null || brushStartIndex == null || brushEndIndex == null || eventEmitterSymbol == null) return;
var syncAction = {
startIndex: brushStartIndex,
endIndex: brushEndIndex
};
eventCenter.emit(BRUSH_SYNC_EVENT, syncId, syncAction, eventEmitterSymbol);
}, [
brushEndIndex,
brushStartIndex,
eventEmitterSymbol,
syncId
]);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Tooltip.js
function ownKeys$46(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$46(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$46(Object(t), !0).forEach(function(r) {
_defineProperty$48(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$46(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$48(e, r, t) {
return (r = _toPropertyKey$48(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$48(t) {
var i = _toPrimitive$48(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$48(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function defaultUniqBy(entry) {
return entry.dataKey;
}
function renderContent(content, props) {
if (/* @__PURE__ */ import_react.isValidElement(content)) return /* @__PURE__ */ import_react.cloneElement(content, props);
if (typeof content === "function") return /* @__PURE__ */ import_react.createElement(content, props);
return /* @__PURE__ */ import_react.createElement(DefaultTooltipContent, props);
}
var emptyPayload = [];
var defaultTooltipProps = {
allowEscapeViewBox: {
x: false,
y: false
},
animationDuration: 400,
animationEasing: "ease",
axisId: 0,
contentStyle: {},
cursor: true,
filterNull: true,
includeHidden: false,
isAnimationActive: "auto",
itemSorter: "name",
itemStyle: {},
labelStyle: {},
offset: 10,
reverseDirection: {
x: false,
y: false
},
separator: " : ",
trigger: "hover",
useTranslate3d: false,
wrapperStyle: {}
};
/**
* The Tooltip component displays a floating box with data values when hovering over or clicking on chart elements.
*
* It can be configured to show information for individual data points or for all points at a specific axis coordinate.
* The appearance and content of the tooltip can be customized via props.
*
* @see {@link https://github.com/recharts/recharts/wiki/Tooltip-event-type-and-shared-prop Tooltip event type and shared prop wiki page}
* @see {@link https://recharts.github.io/en-US/guide/activeIndex/ Active index replacement when migrating from Recharts v2 to v3}
*
* @consumes CartesianChartContext
* @consumes PolarChartContext
* @consumes TooltipEntrySettings
*/
function Tooltip(outsideProps) {
var _useAppSelector, _ref;
var props = resolveDefaultProps(outsideProps, defaultTooltipProps);
var { active: activeFromProps, allowEscapeViewBox, animationDuration, animationEasing, content, filterNull, isAnimationActive, offset, payloadUniqBy, position, reverseDirection, useTranslate3d, wrapperStyle, cursor, shared, trigger, defaultIndex, portal: portalFromProps, axisId } = props;
var dispatch = useAppDispatch();
var defaultIndexAsString = typeof defaultIndex === "number" ? String(defaultIndex) : defaultIndex;
(0, import_react.useEffect)(() => {
dispatch(setTooltipSettingsState({
shared,
trigger,
axisId,
active: activeFromProps,
defaultIndex: defaultIndexAsString
}));
}, [
dispatch,
shared,
trigger,
axisId,
activeFromProps,
defaultIndexAsString
]);
var viewBox = useViewBox();
var accessibilityLayer = useAccessibilityLayer();
var tooltipEventType = useTooltipEventType(shared);
var { activeIndex, isActive } = (_useAppSelector = useAppSelector((state) => selectIsTooltipActive(state, tooltipEventType, trigger, defaultIndexAsString))) !== null && _useAppSelector !== void 0 ? _useAppSelector : {};
var payloadFromRedux = useAppSelector((state) => selectTooltipPayload(state, tooltipEventType, trigger, defaultIndexAsString));
var labelFromRedux = useAppSelector((state) => selectActiveLabel(state, tooltipEventType, trigger, defaultIndexAsString));
var coordinate = useAppSelector((state) => selectActiveCoordinate(state, tooltipEventType, trigger, defaultIndexAsString));
var payload = payloadFromRedux;
var tooltipPortalFromContext = useTooltipPortal();
var finalIsActive = (_ref = activeFromProps !== null && activeFromProps !== void 0 ? activeFromProps : isActive) !== null && _ref !== void 0 ? _ref : false;
var [lastBoundingBox, updateBoundingBox] = useElementOffset([payload, finalIsActive]);
var finalLabel = tooltipEventType === "axis" ? labelFromRedux : void 0;
useTooltipChartSynchronisation(tooltipEventType, trigger, coordinate, finalLabel, activeIndex, finalIsActive);
var tooltipPortal = portalFromProps !== null && portalFromProps !== void 0 ? portalFromProps : tooltipPortalFromContext;
if (tooltipPortal == null || viewBox == null || tooltipEventType == null) return null;
var finalPayload = payload !== null && payload !== void 0 ? payload : emptyPayload;
if (!finalIsActive) finalPayload = emptyPayload;
if (filterNull && finalPayload.length) finalPayload = getUniqPayload(finalPayload.filter((entry) => entry.value != null && (entry.hide !== true || props.includeHidden)), payloadUniqBy, defaultUniqBy);
var hasPayload = finalPayload.length > 0;
var tooltipContentProps = _objectSpread$46(_objectSpread$46({}, props), {}, {
payload: finalPayload,
label: finalLabel,
active: finalIsActive,
activeIndex,
coordinate,
accessibilityLayer
});
var tooltipElement = /* @__PURE__ */ import_react.createElement(TooltipBoundingBox, {
allowEscapeViewBox,
animationDuration,
animationEasing,
isAnimationActive,
active: finalIsActive,
coordinate,
hasPayload,
offset,
position,
reverseDirection,
useTranslate3d,
viewBox,
wrapperStyle,
lastBoundingBox,
innerRef: updateBoundingBox,
hasPortalFromProps: Boolean(portalFromProps)
}, renderContent(content, tooltipContentProps));
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ (0, import_react_dom.createPortal)(tooltipElement, tooltipPortal), finalIsActive && /* @__PURE__ */ import_react.createElement(Cursor, {
cursor,
tooltipEventType,
coordinate,
payload: finalPayload,
index: activeIndex
}));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Cell.js
/**
* Cell component used to define colors and styles of chart elements.
*
* This component is now deprecated and will be removed in Recharts 4.0.
*
* Please use the `shape` prop or `content` prop on the respective chart components
* to customize the rendering of chart elements instead of using `Cell`.
*
* @see {@link https://recharts.github.io/en-US/guide/cell/ Guide: Migrate from Cell component to shape prop}
*
* @deprecated
* @consumes CellReader
*/
var Cell = (_props) => null;
Cell.displayName = "Cell";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/LRUCache.js
function _defineProperty$47(e, r, t) {
return (r = _toPropertyKey$47(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$47(t) {
var i = _toPrimitive$47(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$47(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* Simple LRU (Least Recently Used) cache implementation
*/
var LRUCache = class {
constructor(maxSize) {
_defineProperty$47(this, "cache", /* @__PURE__ */ new Map());
this.maxSize = maxSize;
}
get(key) {
var value = this.cache.get(key);
if (value !== void 0) {
this.cache.delete(key);
this.cache.set(key, value);
}
return value;
}
set(key, value) {
if (this.cache.has(key)) this.cache.delete(key);
else if (this.cache.size >= this.maxSize) {
var firstKey = this.cache.keys().next().value;
if (firstKey != null) this.cache.delete(firstKey);
}
this.cache.set(key, value);
}
clear() {
this.cache.clear();
}
size() {
return this.cache.size;
}
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/DOMUtils.js
function ownKeys$45(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$45(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$45(Object(t), !0).forEach(function(r) {
_defineProperty$46(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$45(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$46(e, r, t) {
return (r = _toPropertyKey$46(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$46(t) {
var i = _toPrimitive$46(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$46(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var currentConfig = _objectSpread$45({}, {
cacheSize: 2e3,
enableCache: true
});
var stringCache = new LRUCache(currentConfig.cacheSize);
var SPAN_STYLE = {
position: "absolute",
top: "-20000px",
left: 0,
padding: 0,
margin: 0,
border: "none",
whiteSpace: "pre"
};
var MEASUREMENT_SPAN_ID = "recharts_measurement_span";
function createCacheKey(text, style) {
var fontSize = style.fontSize || "";
var fontFamily = style.fontFamily || "";
var fontWeight = style.fontWeight || "";
var fontStyle = style.fontStyle || "";
var letterSpacing = style.letterSpacing || "";
var textTransform = style.textTransform || "";
return "".concat(text, "|").concat(fontSize, "|").concat(fontFamily, "|").concat(fontWeight, "|").concat(fontStyle, "|").concat(letterSpacing, "|").concat(textTransform);
}
/**
* Measure text using DOM (accurate but slower)
* @param text - The text to measure
* @param style - CSS style properties to apply
* @returns The size of the text
*/
var measureTextWithDOM = (text, style) => {
try {
var measurementSpan = document.getElementById(MEASUREMENT_SPAN_ID);
if (!measurementSpan) {
measurementSpan = document.createElement("span");
measurementSpan.setAttribute("id", MEASUREMENT_SPAN_ID);
measurementSpan.setAttribute("aria-hidden", "true");
document.body.appendChild(measurementSpan);
}
Object.assign(measurementSpan.style, SPAN_STYLE, style);
measurementSpan.textContent = "".concat(text);
var rect = measurementSpan.getBoundingClientRect();
return {
width: rect.width,
height: rect.height
};
} catch (_unused) {
return {
width: 0,
height: 0
};
}
};
var getStringSize = function getStringSize(text) {
var style = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
if (text === void 0 || text === null || Global.isSsr) return {
width: 0,
height: 0
};
if (!currentConfig.enableCache) return measureTextWithDOM(text, style);
var cacheKey = createCacheKey(text, style);
var cachedResult = stringCache.get(cacheKey);
if (cachedResult) return cachedResult;
var result = measureTextWithDOM(text, style);
stringCache.set(cacheKey, result);
return result;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/ReduceCSSCalc.js
var _DecimalCSS;
function _defineProperty$45(e, r, t) {
return (r = _toPropertyKey$45(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$45(t) {
var i = _toPrimitive$45(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$45(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var MULTIPLY_OR_DIVIDE_REGEX = /(-?\d+(?:\.\d+)?[a-zA-Z%]*)([*/])(-?\d+(?:\.\d+)?[a-zA-Z%]*)/;
var ADD_OR_SUBTRACT_REGEX = /(-?\d+(?:\.\d+)?[a-zA-Z%]*)([+-])(-?\d+(?:\.\d+)?[a-zA-Z%]*)/;
var CSS_LENGTH_UNIT_REGEX = /^(px|cm|vh|vw|em|rem|%|mm|in|pt|pc|ex|ch|vmin|vmax|Q)$/;
var NUM_SPLIT_REGEX = /(-?\d+(?:\.\d+)?)([a-zA-Z%]+)?/;
var CONVERSION_RATES = {
cm: 96 / 2.54,
mm: 96 / 25.4,
pt: 96 / 72,
pc: 96 / 6,
in: 96,
Q: 96 / (2.54 * 40),
px: 1
};
var FIXED_CSS_LENGTH_UNITS = [
"cm",
"mm",
"pt",
"pc",
"in",
"Q",
"px"
];
function isSupportedUnit(unit) {
return FIXED_CSS_LENGTH_UNITS.includes(unit);
}
var STR_NAN = "NaN";
function convertToPx(value, unit) {
return value * CONVERSION_RATES[unit];
}
var DecimalCSS = class DecimalCSS {
static parse(str) {
var _NUM_SPLIT_REGEX$exec;
var [, numStr, unit] = (_NUM_SPLIT_REGEX$exec = NUM_SPLIT_REGEX.exec(str)) !== null && _NUM_SPLIT_REGEX$exec !== void 0 ? _NUM_SPLIT_REGEX$exec : [];
if (numStr == null) return DecimalCSS.NaN;
return new DecimalCSS(parseFloat(numStr), unit !== null && unit !== void 0 ? unit : "");
}
constructor(num, unit) {
this.num = num;
this.unit = unit;
this.num = num;
this.unit = unit;
if (isNan(num)) this.unit = "";
if (unit !== "" && !CSS_LENGTH_UNIT_REGEX.test(unit)) {
this.num = NaN;
this.unit = "";
}
if (isSupportedUnit(unit)) {
this.num = convertToPx(num, unit);
this.unit = "px";
}
}
add(other) {
if (this.unit !== other.unit) return new DecimalCSS(NaN, "");
return new DecimalCSS(this.num + other.num, this.unit);
}
subtract(other) {
if (this.unit !== other.unit) return new DecimalCSS(NaN, "");
return new DecimalCSS(this.num - other.num, this.unit);
}
multiply(other) {
if (this.unit !== "" && other.unit !== "" && this.unit !== other.unit) return new DecimalCSS(NaN, "");
return new DecimalCSS(this.num * other.num, this.unit || other.unit);
}
divide(other) {
if (this.unit !== "" && other.unit !== "" && this.unit !== other.unit) return new DecimalCSS(NaN, "");
return new DecimalCSS(this.num / other.num, this.unit || other.unit);
}
toString() {
return "".concat(this.num).concat(this.unit);
}
isNaN() {
return isNan(this.num);
}
};
_DecimalCSS = DecimalCSS;
_defineProperty$45(DecimalCSS, "NaN", new _DecimalCSS(NaN, ""));
function calculateArithmetic(expr) {
if (expr == null || expr.includes(STR_NAN)) return STR_NAN;
var newExpr = expr;
while (newExpr.includes("*") || newExpr.includes("/")) {
var _MULTIPLY_OR_DIVIDE_R;
var [, leftOperand, operator, rightOperand] = (_MULTIPLY_OR_DIVIDE_R = MULTIPLY_OR_DIVIDE_REGEX.exec(newExpr)) !== null && _MULTIPLY_OR_DIVIDE_R !== void 0 ? _MULTIPLY_OR_DIVIDE_R : [];
var lTs = DecimalCSS.parse(leftOperand !== null && leftOperand !== void 0 ? leftOperand : "");
var rTs = DecimalCSS.parse(rightOperand !== null && rightOperand !== void 0 ? rightOperand : "");
var result = operator === "*" ? lTs.multiply(rTs) : lTs.divide(rTs);
if (result.isNaN()) return STR_NAN;
newExpr = newExpr.replace(MULTIPLY_OR_DIVIDE_REGEX, result.toString());
}
while (newExpr.includes("+") || /.-\d+(?:\.\d+)?/.test(newExpr)) {
var _ADD_OR_SUBTRACT_REGE;
var [, _leftOperand, _operator, _rightOperand] = (_ADD_OR_SUBTRACT_REGE = ADD_OR_SUBTRACT_REGEX.exec(newExpr)) !== null && _ADD_OR_SUBTRACT_REGE !== void 0 ? _ADD_OR_SUBTRACT_REGE : [];
var _lTs = DecimalCSS.parse(_leftOperand !== null && _leftOperand !== void 0 ? _leftOperand : "");
var _rTs = DecimalCSS.parse(_rightOperand !== null && _rightOperand !== void 0 ? _rightOperand : "");
var _result = _operator === "+" ? _lTs.add(_rTs) : _lTs.subtract(_rTs);
if (_result.isNaN()) return STR_NAN;
newExpr = newExpr.replace(ADD_OR_SUBTRACT_REGEX, _result.toString());
}
return newExpr;
}
var PARENTHESES_REGEX = /\(([^()]*)\)/;
function calculateParentheses(expr) {
var newExpr = expr;
var match;
while ((match = PARENTHESES_REGEX.exec(newExpr)) != null) {
var [, parentheticalExpression] = match;
newExpr = newExpr.replace(PARENTHESES_REGEX, calculateArithmetic(parentheticalExpression));
}
return newExpr;
}
function evaluateExpression(expression) {
var newExpr = expression.replace(/\s+/g, "");
newExpr = calculateParentheses(newExpr);
newExpr = calculateArithmetic(newExpr);
return newExpr;
}
function safeEvaluateExpression(expression) {
try {
return evaluateExpression(expression);
} catch (_unused) {
return STR_NAN;
}
}
function reduceCSSCalc(expression) {
var result = safeEvaluateExpression(expression.slice(5, -1));
if (result === STR_NAN) return "";
return result;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Text.js
var _excluded$31 = [
"x",
"y",
"lineHeight",
"capHeight",
"fill",
"scaleToFit",
"textAnchor",
"verticalAnchor"
], _excluded2$16 = [
"dx",
"dy",
"angle",
"className",
"breakAll"
];
function _extends$40() {
return _extends$40 = 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$40.apply(null, arguments);
}
function _objectWithoutProperties$31(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$31(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$31(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var BREAKING_SPACES = /[ \f\n\r\t\v\u2028\u2029]+/;
var calculateWordWidths = (_ref) => {
var { children, breakAll, style } = _ref;
try {
var words = [];
if (!isNullish(children)) if (breakAll) words = children.toString().split("");
else words = children.toString().split(BREAKING_SPACES);
return {
wordsWithComputedWidth: words.map((word) => ({
word,
width: getStringSize(word, style).width
})),
spaceWidth: breakAll ? 0 : getStringSize("\xA0", style).width
};
} catch (_unused) {
return null;
}
};
/**
* @inline
*/
function isValidTextAnchor(value) {
return value === "start" || value === "middle" || value === "end" || value === "inherit";
}
/**
* @inline
*/
/**
* @inline
*/
function isRenderableText(val) {
return isNullish(val) || typeof val === "string" || typeof val === "number" || typeof val === "boolean";
}
var calculate = (words, lineWidth, spaceWidth, scaleToFit) => words.reduce((result, _ref2) => {
var { word, width } = _ref2;
var currentLine = result[result.length - 1];
if (currentLine && width != null && (lineWidth == null || scaleToFit || currentLine.width + width + spaceWidth < Number(lineWidth))) {
currentLine.words.push(word);
currentLine.width += width + spaceWidth;
} else {
var newLine = {
words: [word],
width
};
result.push(newLine);
}
return result;
}, []);
var findLongestLine = (words) => words.reduce((a, b) => a.width > b.width ? a : b);
var suffix = "…";
var checkOverflow = (text, index, breakAll, style, maxLines, lineWidth, spaceWidth, scaleToFit) => {
var words = calculateWordWidths({
breakAll,
style,
children: text.slice(0, index) + suffix
});
if (!words) return [false, []];
var result = calculate(words.wordsWithComputedWidth, lineWidth, spaceWidth, scaleToFit);
return [result.length > maxLines || findLongestLine(result).width > Number(lineWidth), result];
};
var calculateWordsByLines = (_ref3, initialWordsWithComputedWith, spaceWidth, lineWidth, scaleToFit) => {
var { maxLines, children, style, breakAll } = _ref3;
var shouldLimitLines = isNumber(maxLines);
var text = String(children);
var originalResult = calculate(initialWordsWithComputedWith, lineWidth, spaceWidth, scaleToFit);
if (!shouldLimitLines || scaleToFit) return originalResult;
if (!(originalResult.length > maxLines || findLongestLine(originalResult).width > Number(lineWidth))) return originalResult;
var start = 0;
var end = text.length - 1;
var iterations = 0;
var trimmedResult;
while (start <= end && iterations <= text.length - 1) {
var middle = Math.floor((start + end) / 2);
var [doesPrevOverflow, result] = checkOverflow(text, middle - 1, breakAll, style, maxLines, lineWidth, spaceWidth, scaleToFit);
var [doesMiddleOverflow] = checkOverflow(text, middle, breakAll, style, maxLines, lineWidth, spaceWidth, scaleToFit);
if (!doesPrevOverflow && !doesMiddleOverflow) start = middle + 1;
if (doesPrevOverflow && doesMiddleOverflow) end = middle - 1;
if (!doesPrevOverflow && doesMiddleOverflow) {
trimmedResult = result;
break;
}
iterations++;
}
return trimmedResult || originalResult;
};
var getWordsWithoutCalculate = (children) => {
return [{
words: !isNullish(children) ? children.toString().split(BREAKING_SPACES) : [],
width: void 0
}];
};
var getWordsByLines = (_ref4) => {
var { width, scaleToFit, children, style, breakAll, maxLines } = _ref4;
if ((width || scaleToFit) && !Global.isSsr) {
var wordsWithComputedWidth, spaceWidth;
var wordWidths = calculateWordWidths({
breakAll,
children,
style
});
if (wordWidths) {
var { wordsWithComputedWidth: wcw, spaceWidth: sw } = wordWidths;
wordsWithComputedWidth = wcw;
spaceWidth = sw;
} else return getWordsWithoutCalculate(children);
return calculateWordsByLines({
breakAll,
children,
maxLines,
style
}, wordsWithComputedWidth, spaceWidth, width, Boolean(scaleToFit));
}
return getWordsWithoutCalculate(children);
};
var DEFAULT_FILL = "#808080";
var textDefaultProps = {
angle: 0,
breakAll: false,
capHeight: "0.71em",
fill: DEFAULT_FILL,
lineHeight: "1em",
scaleToFit: false,
textAnchor: "start",
verticalAnchor: "end",
x: 0,
y: 0
};
var Text = /* @__PURE__ */ (0, import_react.forwardRef)((outsideProps, ref) => {
var _resolveDefaultProps = resolveDefaultProps(outsideProps, textDefaultProps), { x: propsX, y: propsY, lineHeight, capHeight, fill, scaleToFit, textAnchor, verticalAnchor } = _resolveDefaultProps, props = _objectWithoutProperties$31(_resolveDefaultProps, _excluded$31);
var wordsByLines = (0, import_react.useMemo)(() => {
return getWordsByLines({
breakAll: props.breakAll,
children: props.children,
maxLines: props.maxLines,
scaleToFit,
style: props.style,
width: props.width
});
}, [
props.breakAll,
props.children,
props.maxLines,
scaleToFit,
props.style,
props.width
]);
var { dx, dy, angle, className, breakAll } = props, textProps = _objectWithoutProperties$31(props, _excluded2$16);
if (!isNumOrStr(propsX) || !isNumOrStr(propsY) || wordsByLines.length === 0) return null;
var x = Number(propsX) + (isNumber(dx) ? dx : 0);
var y = Number(propsY) + (isNumber(dy) ? dy : 0);
if (!isWellBehavedNumber(x) || !isWellBehavedNumber(y)) return null;
var startDy;
switch (verticalAnchor) {
case "start":
startDy = reduceCSSCalc("calc(".concat(capHeight, ")"));
break;
case "middle":
startDy = reduceCSSCalc("calc(".concat((wordsByLines.length - 1) / 2, " * -").concat(lineHeight, " + (").concat(capHeight, " / 2))"));
break;
default:
startDy = reduceCSSCalc("calc(".concat(wordsByLines.length - 1, " * -").concat(lineHeight, ")"));
break;
}
var transforms = [];
var firstLine = wordsByLines[0];
if (scaleToFit && firstLine != null) {
var lineWidth = firstLine.width;
var { width } = props;
transforms.push("scale(".concat(isNumber(width) && isNumber(lineWidth) ? width / lineWidth : 1, ")"));
}
if (angle) transforms.push("rotate(".concat(angle, ", ").concat(x, ", ").concat(y, ")"));
if (transforms.length) textProps.transform = transforms.join(" ");
return /* @__PURE__ */ import_react.createElement("text", _extends$40({}, svgPropertiesAndEvents(textProps), {
ref,
x,
y,
className: clsx("recharts-text", className),
textAnchor,
fill: fill.includes("url") ? DEFAULT_FILL : fill
}), wordsByLines.map((line, index) => {
var words = line.words.join(breakAll ? "" : " ");
return /* @__PURE__ */ import_react.createElement("tspan", {
x,
dy: index === 0 ? startDy : lineHeight,
key: "".concat(words, "-").concat(index)
}, words);
}));
});
Text.displayName = "Text";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/getCartesianPosition.js
function ownKeys$44(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$44(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$44(Object(t), !0).forEach(function(r) {
_defineProperty$44(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$44(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$44(e, r, t) {
return (r = _toPropertyKey$44(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$44(t) {
var i = _toPrimitive$44(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$44(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* Calculates the position and alignment for a generic element in a Cartesian coordinate system.
*
* @param options - The options including viewBox, position, and offset.
* @returns The calculated x, y, alignment and size.
*/
var getCartesianPosition = (options) => {
var { viewBox, position, offset = 0, parentViewBox: parentViewBoxFromOptions, clamp } = options;
var { x, y, height, upperWidth, lowerWidth } = cartesianViewBoxToTrapezoid(viewBox);
var upperX = x;
var lowerX = x + (upperWidth - lowerWidth) / 2;
var middleX = (upperX + lowerX) / 2;
var midHeightWidth = (upperWidth + lowerWidth) / 2;
var centerX = upperX + upperWidth / 2;
var verticalSign = height >= 0 ? 1 : -1;
var verticalOffset = verticalSign * offset;
var verticalEnd = verticalSign > 0 ? "end" : "start";
var verticalStart = verticalSign > 0 ? "start" : "end";
var horizontalSign = upperWidth >= 0 ? 1 : -1;
var horizontalOffset = horizontalSign * offset;
var horizontalEnd = horizontalSign > 0 ? "end" : "start";
var horizontalStart = horizontalSign > 0 ? "start" : "end";
var parentViewBox = parentViewBoxFromOptions;
if (position === "top") {
var result = {
x: upperX + upperWidth / 2,
y: y - verticalOffset,
horizontalAnchor: "middle",
verticalAnchor: verticalEnd
};
if (clamp && parentViewBox) {
result.height = Math.max(y - parentViewBox.y, 0);
result.width = upperWidth;
}
return result;
}
if (position === "bottom") {
var _result = {
x: lowerX + lowerWidth / 2,
y: y + height + verticalOffset,
horizontalAnchor: "middle",
verticalAnchor: verticalStart
};
if (clamp && parentViewBox) {
_result.height = Math.max(parentViewBox.y + parentViewBox.height - (y + height), 0);
_result.width = lowerWidth;
}
return _result;
}
if (position === "left") {
var _result2 = {
x: middleX - horizontalOffset,
y: y + height / 2,
horizontalAnchor: horizontalEnd,
verticalAnchor: "middle"
};
if (clamp && parentViewBox) {
_result2.width = Math.max(_result2.x - parentViewBox.x, 0);
_result2.height = height;
}
return _result2;
}
if (position === "right") {
var _result3 = {
x: middleX + midHeightWidth + horizontalOffset,
y: y + height / 2,
horizontalAnchor: horizontalStart,
verticalAnchor: "middle"
};
if (clamp && parentViewBox) {
_result3.width = Math.max(parentViewBox.x + parentViewBox.width - _result3.x, 0);
_result3.height = height;
}
return _result3;
}
var sizeAttrs = clamp && parentViewBox ? {
width: midHeightWidth,
height
} : {};
if (position === "insideLeft") return _objectSpread$44({
x: middleX + horizontalOffset,
y: y + height / 2,
horizontalAnchor: horizontalStart,
verticalAnchor: "middle"
}, sizeAttrs);
if (position === "insideRight") return _objectSpread$44({
x: middleX + midHeightWidth - horizontalOffset,
y: y + height / 2,
horizontalAnchor: horizontalEnd,
verticalAnchor: "middle"
}, sizeAttrs);
if (position === "insideTop") return _objectSpread$44({
x: upperX + upperWidth / 2,
y: y + verticalOffset,
horizontalAnchor: "middle",
verticalAnchor: verticalStart
}, sizeAttrs);
if (position === "insideBottom") return _objectSpread$44({
x: lowerX + lowerWidth / 2,
y: y + height - verticalOffset,
horizontalAnchor: "middle",
verticalAnchor: verticalEnd
}, sizeAttrs);
if (position === "insideTopLeft") return _objectSpread$44({
x: upperX + horizontalOffset,
y: y + verticalOffset,
horizontalAnchor: horizontalStart,
verticalAnchor: verticalStart
}, sizeAttrs);
if (position === "insideTopRight") return _objectSpread$44({
x: upperX + upperWidth - horizontalOffset,
y: y + verticalOffset,
horizontalAnchor: horizontalEnd,
verticalAnchor: verticalStart
}, sizeAttrs);
if (position === "insideBottomLeft") return _objectSpread$44({
x: lowerX + horizontalOffset,
y: y + height - verticalOffset,
horizontalAnchor: horizontalStart,
verticalAnchor: verticalEnd
}, sizeAttrs);
if (position === "insideBottomRight") return _objectSpread$44({
x: lowerX + lowerWidth - horizontalOffset,
y: y + height - verticalOffset,
horizontalAnchor: horizontalEnd,
verticalAnchor: verticalEnd
}, sizeAttrs);
if (!!position && typeof position === "object" && (isNumber(position.x) || isPercent(position.x)) && (isNumber(position.y) || isPercent(position.y))) return _objectSpread$44({
x: x + getPercentValue(position.x, midHeightWidth),
y: y + getPercentValue(position.y, height),
horizontalAnchor: "end",
verticalAnchor: "end"
}, sizeAttrs);
return _objectSpread$44({
x: centerX,
y: y + height / 2,
horizontalAnchor: "middle",
verticalAnchor: "middle"
}, sizeAttrs);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Label.js
var _excluded$30 = ["labelRef"], _excluded2$15 = ["content"];
function _objectWithoutProperties$30(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$30(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$30(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function ownKeys$43(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$43(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$43(Object(t), !0).forEach(function(r) {
_defineProperty$43(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$43(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$43(e, r, t) {
return (r = _toPropertyKey$43(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$43(t) {
var i = _toPrimitive$43(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$43(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$39() {
return _extends$39 = 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$39.apply(null, arguments);
}
/**
* @inline
*/
/**
* @inline
*/
/**
* @inline
*/
var CartesianLabelContext = /* @__PURE__ */ (0, import_react.createContext)(null);
var CartesianLabelContextProvider = (_ref) => {
var { x, y, upperWidth, lowerWidth, width, height, children } = _ref;
var viewBox = (0, import_react.useMemo)(() => ({
x,
y,
upperWidth,
lowerWidth,
width,
height
}), [
x,
y,
upperWidth,
lowerWidth,
width,
height
]);
return /* @__PURE__ */ import_react.createElement(CartesianLabelContext.Provider, { value: viewBox }, children);
};
var useCartesianLabelContext = () => {
var labelChildContext = (0, import_react.useContext)(CartesianLabelContext);
var chartContext = useViewBox();
return labelChildContext || (chartContext ? cartesianViewBoxToTrapezoid(chartContext) : void 0);
};
var PolarLabelContext = /* @__PURE__ */ (0, import_react.createContext)(null);
var PolarLabelContextProvider = (_ref2) => {
var { cx, cy, innerRadius, outerRadius, startAngle, endAngle, clockWise, children } = _ref2;
var viewBox = (0, import_react.useMemo)(() => ({
cx,
cy,
innerRadius,
outerRadius,
startAngle,
endAngle,
clockWise
}), [
cx,
cy,
innerRadius,
outerRadius,
startAngle,
endAngle,
clockWise
]);
return /* @__PURE__ */ import_react.createElement(PolarLabelContext.Provider, { value: viewBox }, children);
};
var usePolarLabelContext = () => {
var labelChildContext = (0, import_react.useContext)(PolarLabelContext);
var chartContext = useAppSelector(selectPolarViewBox);
return labelChildContext || chartContext;
};
var getLabel = (props) => {
var { value, formatter } = props;
var label = isNullish(props.children) ? value : props.children;
if (typeof formatter === "function") return formatter(label);
return label;
};
var isLabelContentAFunction = (content) => {
return content != null && typeof content === "function";
};
var getDeltaAngle = (startAngle, endAngle) => {
return mathSign(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360);
};
var renderRadialLabel = (labelProps, position, label, attrs, viewBox) => {
var { offset, className } = labelProps;
var { cx, cy, innerRadius, outerRadius, startAngle, endAngle, clockWise } = viewBox;
var radius = (innerRadius + outerRadius) / 2;
var deltaAngle = getDeltaAngle(startAngle, endAngle);
var sign = deltaAngle >= 0 ? 1 : -1;
var labelAngle, direction;
switch (position) {
case "insideStart":
labelAngle = startAngle + sign * offset;
direction = clockWise;
break;
case "insideEnd":
labelAngle = endAngle - sign * offset;
direction = !clockWise;
break;
case "end":
labelAngle = endAngle + sign * offset;
direction = clockWise;
break;
default: throw new Error("Unsupported position ".concat(position));
}
direction = deltaAngle <= 0 ? direction : !direction;
var startPoint = polarToCartesian(cx, cy, radius, labelAngle);
var endPoint = polarToCartesian(cx, cy, radius, labelAngle + (direction ? 1 : -1) * 359);
var path = "M".concat(startPoint.x, ",").concat(startPoint.y, "\n A").concat(radius, ",").concat(radius, ",0,1,").concat(direction ? 0 : 1, ",\n ").concat(endPoint.x, ",").concat(endPoint.y);
var id = isNullish(labelProps.id) ? uniqueId("recharts-radial-line-") : labelProps.id;
return /* @__PURE__ */ import_react.createElement("text", _extends$39({}, attrs, {
dominantBaseline: "central",
className: clsx("recharts-radial-bar-label", className)
}), /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement("path", {
id,
d: path
})), /* @__PURE__ */ import_react.createElement("textPath", { xlinkHref: "#".concat(id) }, label));
};
var getAttrsOfPolarLabel = (viewBox, offset, position) => {
var { cx, cy, innerRadius, outerRadius, startAngle, endAngle } = viewBox;
var midAngle = (startAngle + endAngle) / 2;
if (position === "outside") {
var { x: _x, y: _y } = polarToCartesian(cx, cy, outerRadius + offset, midAngle);
return {
x: _x,
y: _y,
textAnchor: _x >= cx ? "start" : "end",
verticalAnchor: "middle"
};
}
if (position === "center") return {
x: cx,
y: cy,
textAnchor: "middle",
verticalAnchor: "middle"
};
if (position === "centerTop") return {
x: cx,
y: cy,
textAnchor: "middle",
verticalAnchor: "start"
};
if (position === "centerBottom") return {
x: cx,
y: cy,
textAnchor: "middle",
verticalAnchor: "end"
};
var { x, y } = polarToCartesian(cx, cy, (innerRadius + outerRadius) / 2, midAngle);
return {
x,
y,
textAnchor: "middle",
verticalAnchor: "middle"
};
};
var isPolar = (viewBox) => viewBox != null && "cx" in viewBox && isNumber(viewBox.cx);
var defaultLabelProps = {
angle: 0,
offset: 5,
zIndex: DefaultZIndexes.label,
position: "middle",
textBreakAll: false
};
function polarViewBoxToTrapezoid(viewBox) {
if (!isPolar(viewBox)) return viewBox;
var { cx, cy, outerRadius } = viewBox;
var diameter = outerRadius * 2;
return {
x: cx - outerRadius,
y: cy - outerRadius,
width: diameter,
upperWidth: diameter,
lowerWidth: diameter,
height: diameter
};
}
/**
* @consumes CartesianViewBoxContext
* @consumes PolarViewBoxContext
* @consumes CartesianLabelContext
* @consumes PolarLabelContext
*/
function Label(outerProps) {
var props = resolveDefaultProps(outerProps, defaultLabelProps);
var { viewBox: viewBoxFromProps, parentViewBox, position, value, children, content, className = "", textBreakAll, labelRef } = props;
var polarViewBox = usePolarLabelContext();
var cartesianViewBox = useCartesianLabelContext();
var resolvedViewBox = position === "center" ? cartesianViewBox : polarViewBox !== null && polarViewBox !== void 0 ? polarViewBox : cartesianViewBox;
var viewBox, label, positionAttrs;
if (viewBoxFromProps == null) viewBox = resolvedViewBox;
else if (isPolar(viewBoxFromProps)) viewBox = viewBoxFromProps;
else viewBox = cartesianViewBoxToTrapezoid(viewBoxFromProps);
var cartesianBox = polarViewBoxToTrapezoid(viewBox);
if (!viewBox || isNullish(value) && isNullish(children) && !/* @__PURE__ */ (0, import_react.isValidElement)(content) && typeof content !== "function") return null;
var propsWithViewBox = _objectSpread$43(_objectSpread$43({}, props), {}, { viewBox });
if (/* @__PURE__ */ (0, import_react.isValidElement)(content)) {
var { labelRef: _ } = propsWithViewBox;
return /* @__PURE__ */ (0, import_react.cloneElement)(content, _objectWithoutProperties$30(propsWithViewBox, _excluded$30));
}
if (typeof content === "function") {
var { content: _2 } = propsWithViewBox;
label = /* @__PURE__ */ (0, import_react.createElement)(content, _objectWithoutProperties$30(propsWithViewBox, _excluded2$15));
if (/* @__PURE__ */ (0, import_react.isValidElement)(label)) return label;
} else label = getLabel(props);
var attrs = svgPropertiesAndEvents(props);
if (isPolar(viewBox)) {
if (position === "insideStart" || position === "insideEnd" || position === "end") return renderRadialLabel(props, position, label, attrs, viewBox);
positionAttrs = getAttrsOfPolarLabel(viewBox, props.offset, props.position);
} else {
if (!cartesianBox) return null;
var cartesianResult = getCartesianPosition({
viewBox: cartesianBox,
position,
offset: props.offset,
parentViewBox: isPolar(parentViewBox) ? void 0 : parentViewBox,
clamp: true
});
positionAttrs = _objectSpread$43(_objectSpread$43({
x: cartesianResult.x,
y: cartesianResult.y,
textAnchor: cartesianResult.horizontalAnchor,
verticalAnchor: cartesianResult.verticalAnchor
}, cartesianResult.width !== void 0 ? { width: cartesianResult.width } : {}), cartesianResult.height !== void 0 ? { height: cartesianResult.height } : {});
}
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Text, _extends$39({
ref: labelRef,
className: clsx("recharts-label", className)
}, attrs, positionAttrs, {
textAnchor: isValidTextAnchor(attrs.textAnchor) ? attrs.textAnchor : positionAttrs.textAnchor,
breakAll: textBreakAll
}), label));
}
Label.displayName = "Label";
var parseLabel = (label, viewBox, labelRef) => {
if (!label) return null;
var commonProps = {
viewBox,
labelRef
};
if (label === true) return /* @__PURE__ */ import_react.createElement(Label, _extends$39({ key: "label-implicit" }, commonProps));
if (isNumOrStr(label)) return /* @__PURE__ */ import_react.createElement(Label, _extends$39({
key: "label-implicit",
value: label
}, commonProps));
if (/* @__PURE__ */ (0, import_react.isValidElement)(label)) {
if (label.type === Label) return /* @__PURE__ */ (0, import_react.cloneElement)(label, _objectSpread$43({ key: "label-implicit" }, commonProps));
return /* @__PURE__ */ import_react.createElement(Label, _extends$39({
key: "label-implicit",
content: label
}, commonProps));
}
if (isLabelContentAFunction(label)) return /* @__PURE__ */ import_react.createElement(Label, _extends$39({
key: "label-implicit",
content: label
}, commonProps));
if (label && typeof label === "object") return /* @__PURE__ */ import_react.createElement(Label, _extends$39({}, label, { key: "label-implicit" }, commonProps));
return null;
};
function CartesianLabelFromLabelProp(_ref3) {
var { label, labelRef } = _ref3;
return parseLabel(label, useCartesianLabelContext(), labelRef) || null;
}
function PolarLabelFromLabelProp(_ref4) {
var { label } = _ref4;
return parseLabel(label, usePolarLabelContext()) || null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/LabelList.js
var _excluded$29 = ["valueAccessor"], _excluded2$14 = [
"dataKey",
"clockWise",
"id",
"textBreakAll",
"zIndex"
];
function _extends$38() {
return _extends$38 = 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$38.apply(null, arguments);
}
function _objectWithoutProperties$29(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$29(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$29(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* This is public API because we expose it as the valueAccessor parameter.
*
* The properties of "viewBox" are repeated as the root props of the entry object.
* So it doesn't matter if you read entry.x or entry.viewBox.x, they are the same.
*
* It's not necessary to pass redundant data, but we keep it for backward compatibility.
*/
/**
* LabelList props do not allow refs because the same props are reused in multiple elements so we don't have a good single place to ref to.
*/
/**
* This is the type accepted for the `label` prop on various graphical items.
* It accepts:
*
* boolean:
* true = labels show,
* false = labels don't show
* React element:
* will be cloned with extra props
* function:
* is used as , so this will be called once for each individual label (so typically once for each data point)
* object:
* the props to be passed to a LabelList component
*
* @inline
*/
var defaultAccessor = (entry) => {
var val = Array.isArray(entry.value) ? entry.value[entry.value.length - 1] : entry.value;
if (isRenderableText(val)) return val;
};
var CartesianLabelListContext = /* @__PURE__ */ (0, import_react.createContext)(void 0);
var CartesianLabelListContextProvider = CartesianLabelListContext.Provider;
var PolarLabelListContext = /* @__PURE__ */ (0, import_react.createContext)(void 0);
var PolarLabelListContextProvider = PolarLabelListContext.Provider;
function useCartesianLabelListContext() {
return (0, import_react.useContext)(CartesianLabelListContext);
}
function usePolarLabelListContext() {
return (0, import_react.useContext)(PolarLabelListContext);
}
/**
* @consumes LabelListContext
*/
function LabelList(_ref) {
var { valueAccessor = defaultAccessor } = _ref, restProps = _objectWithoutProperties$29(_ref, _excluded$29);
var { dataKey, clockWise, id, textBreakAll, zIndex } = restProps, others = _objectWithoutProperties$29(restProps, _excluded2$14);
var cartesianData = useCartesianLabelListContext();
var polarData = usePolarLabelListContext();
var data = cartesianData || polarData;
if (!data || !data.length) return null;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: zIndex !== null && zIndex !== void 0 ? zIndex : DefaultZIndexes.label }, /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-label-list" }, data.map((entry, index) => {
var _restProps$fill;
var value = isNullish(dataKey) ? valueAccessor(entry, index) : getValueByDataKey(entry.payload, dataKey);
var idProps = isNullish(id) ? {} : { id: "".concat(id, "-").concat(index) };
return /* @__PURE__ */ import_react.createElement(Label, _extends$38({ key: "label-".concat(index) }, svgPropertiesAndEvents(entry), others, idProps, {
fill: (_restProps$fill = restProps.fill) !== null && _restProps$fill !== void 0 ? _restProps$fill : entry.fill,
parentViewBox: entry.parentViewBox,
value,
textBreakAll,
viewBox: entry.viewBox,
index,
zIndex: 0
}));
})));
}
LabelList.displayName = "LabelList";
function LabelListFromLabelProp(_ref2) {
var { label } = _ref2;
if (!label) return null;
if (label === true) return /* @__PURE__ */ import_react.createElement(LabelList, { key: "labelList-implicit" });
if (/* @__PURE__ */ import_react.isValidElement(label) || isLabelContentAFunction(label)) return /* @__PURE__ */ import_react.createElement(LabelList, {
key: "labelList-implicit",
content: label
});
if (typeof label === "object") return /* @__PURE__ */ import_react.createElement(LabelList, _extends$38({ key: "labelList-implicit" }, label, { type: String(label.type) }));
return null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Customized.js
/**
* @fileOverview Customized
*/
var _excluded$28 = ["component"];
function _objectWithoutProperties$28(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$28(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$28(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* Customized component used to be necessary to render custom elements in Recharts 2.x.
* Starting from Recharts 3.x, all charts are able to render arbitrary elements anywhere,
* and Customized is no longer needed.
*
* @example Before: `} />`
* @example After: ``
*
* @deprecated Just render your components directly. Will be removed in 4.0
*/
function Customized(_ref) {
var { component } = _ref, props = _objectWithoutProperties$28(_ref, _excluded$28);
var child;
if (/* @__PURE__ */ (0, import_react.isValidElement)(component)) child = /* @__PURE__ */ (0, import_react.cloneElement)(component, props);
else if (typeof component === "function") child = /* @__PURE__ */ (0, import_react.createElement)(component, props);
else warn(false, "Customized's props `component` must be React.element or Function, but got %s.", typeof component);
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-customized-wrapper" }, child);
}
Customized.displayName = "Customized";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Polygon.js
/**
* @fileOverview Polygon
*/
var _excluded$27 = [
"points",
"className",
"baseLinePoints",
"connectNulls"
];
var _templateObject$1;
function _extends$37() {
return _extends$37 = 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$37.apply(null, arguments);
}
function _objectWithoutProperties$27(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$27(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$27(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function _taggedTemplateLiteral$1(e, t) {
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } }));
}
var isValidatePoint = (point) => {
return point != null && point.x === +point.x && point.y === +point.y;
};
var getParsedPoints = function getParsedPoints() {
var points = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [];
var segmentPoints = [[]];
points.forEach((entry) => {
var lastLink = segmentPoints[segmentPoints.length - 1];
if (isValidatePoint(entry)) {
if (lastLink) lastLink.push(entry);
} else if (lastLink && lastLink.length > 0) segmentPoints.push([]);
});
var firstPoint = points[0];
var lastLink = segmentPoints[segmentPoints.length - 1];
if (isValidatePoint(firstPoint) && lastLink) lastLink.push(firstPoint);
var finalLink = segmentPoints[segmentPoints.length - 1];
if (finalLink && finalLink.length <= 0) segmentPoints = segmentPoints.slice(0, -1);
return segmentPoints;
};
var getSinglePolygonPath = (points, connectNulls) => {
var segmentPoints = getParsedPoints(points);
if (connectNulls) segmentPoints = [segmentPoints.reduce((res, segPoints) => {
return [...res, ...segPoints];
}, [])];
var polygonPath = segmentPoints.map((segPoints) => {
return segPoints.reduce((path, point, index) => {
return roundTemplateLiteral(_templateObject$1 || (_templateObject$1 = _taggedTemplateLiteral$1([
"",
"",
"",
",",
""
])), path, index === 0 ? "M" : "L", point.x, point.y);
}, "");
}).join("");
return segmentPoints.length === 1 ? "".concat(polygonPath, "Z") : polygonPath;
};
var getRanglePath = (points, baseLinePoints, connectNulls) => {
var outerPath = getSinglePolygonPath(points, connectNulls);
return "".concat(outerPath.slice(-1) === "Z" ? outerPath.slice(0, -1) : outerPath, "L").concat(getSinglePolygonPath(Array.from(baseLinePoints).reverse(), connectNulls).slice(1));
};
var Polygon = (props) => {
var { points, className, baseLinePoints, connectNulls } = props, others = _objectWithoutProperties$27(props, _excluded$27);
if (!points || !points.length) return null;
var layerClass = clsx("recharts-polygon", className);
if (baseLinePoints && baseLinePoints.length) {
var hasStroke = others.stroke && others.stroke !== "none";
var rangePath = getRanglePath(points, baseLinePoints, connectNulls);
return /* @__PURE__ */ import_react.createElement("g", { className: layerClass }, /* @__PURE__ */ import_react.createElement("path", _extends$37({}, svgPropertiesAndEvents(others), {
fill: rangePath.slice(-1) === "Z" ? others.fill : "none",
stroke: "none",
d: rangePath
})), hasStroke ? /* @__PURE__ */ import_react.createElement("path", _extends$37({}, svgPropertiesAndEvents(others), {
fill: "none",
d: getSinglePolygonPath(points, connectNulls)
})) : null, hasStroke ? /* @__PURE__ */ import_react.createElement("path", _extends$37({}, svgPropertiesAndEvents(others), {
fill: "none",
d: getSinglePolygonPath(baseLinePoints, connectNulls)
})) : null);
}
var singlePath = getSinglePolygonPath(points, connectNulls);
return /* @__PURE__ */ import_react.createElement("path", _extends$37({}, svgPropertiesAndEvents(others), {
fill: singlePath.slice(-1) === "Z" ? others.fill : "none",
className: layerClass,
d: singlePath
}));
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Dot.js
function _extends$36() {
return _extends$36 = 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$36.apply(null, arguments);
}
/**
* 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
*/
var Dot = (props) => {
var { cx, cy, r, className } = props;
var layerClass = clsx("recharts-dot", className);
if (isNumber(cx) && isNumber(cy) && isNumber(r)) return /* @__PURE__ */ import_react.createElement("circle", _extends$36({}, svgPropertiesNoEvents(props), adaptEventHandlers(props), {
className: layerClass,
cx,
cy,
r
}));
return null;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/polarSelectors.js
var selectUnfilteredPolarItems = (state) => state.graphicalItems.polarItems;
var selectPolarItemsSettings = createSelector([
selectUnfilteredPolarItems,
selectBaseAxis,
createSelector([pickAxisType, pickAxisId], itemAxisPredicate)
], combineGraphicalItemsSettings);
var selectPolarDisplayedData = createSelector([createSelector([selectPolarItemsSettings], combineGraphicalItemsData), selectChartDataAndAlwaysIgnoreIndexes], combineDisplayedData);
var selectPolarAppliedValues = createSelector([
selectPolarDisplayedData,
selectBaseAxis,
selectPolarItemsSettings
], combineAppliedValues);
createSelector([
selectPolarDisplayedData,
selectBaseAxis,
selectPolarItemsSettings
], (data, axisSettings, items) => {
if (items.length > 0) return data.flatMap((entry) => {
return items.flatMap((item) => {
var _axisSettings$dataKey;
return {
value: getValueByDataKey(entry, (_axisSettings$dataKey = axisSettings.dataKey) !== null && _axisSettings$dataKey !== void 0 ? _axisSettings$dataKey : item.dataKey),
errorDomain: []
};
});
}).filter(Boolean);
if ((axisSettings === null || axisSettings === void 0 ? void 0 : axisSettings.dataKey) != null) return data.map((item) => ({
value: getValueByDataKey(item, axisSettings.dataKey),
errorDomain: []
}));
return data.map((entry) => ({
value: entry,
errorDomain: []
}));
});
var unsupportedInPolarChart = () => void 0;
var selectPolarAxisDomain = createSelector([
selectBaseAxis,
selectChartLayout,
selectPolarDisplayedData,
selectPolarAppliedValues,
selectStackOffsetType,
pickAxisType,
createSelector([
selectBaseAxis,
selectDomainDefinition,
selectDomainFromUserPreference,
unsupportedInPolarChart,
createSelector([
selectPolarDisplayedData,
selectBaseAxis,
selectPolarItemsSettings,
selectAllErrorBarSettings,
pickAxisType,
selectChartDataSliceIgnoringIndexes
], combineDomainOfAllAppliedNumericalValuesIncludingErrorValues),
unsupportedInPolarChart,
selectChartLayout,
pickAxisType
], combineNumericalDomain)
], combineAxisDomain);
var selectPolarNiceTicks = createSelector([
selectPolarAxisDomain,
selectRenderableAxisSettings,
selectRealScaleType
], combineNiceTicks);
var selectPolarAxisCheckedDomain = createSelector([selectRealScaleType, createSelector([
selectBaseAxis,
selectPolarAxisDomain,
selectPolarNiceTicks,
pickAxisType
], combineAxisDomainWithNiceTicks)], combineCheckedDomain);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/polarScaleSelectors.js
var selectPolarAxis = (state, axisType, axisId) => {
switch (axisType) {
case "angleAxis": return selectAngleAxis(state, axisId);
case "radiusAxis": return selectRadiusAxis(state, axisId);
default: throw new Error("Unexpected axis type: ".concat(axisType));
}
};
var selectPolarAxisRangeWithReversed = (state, axisType, axisId) => {
switch (axisType) {
case "angleAxis": return selectAngleAxisRangeWithReversed(state, axisId);
case "radiusAxis": return selectRadiusAxisRangeWithReversed(state, axisId);
default: throw new Error("Unexpected axis type: ".concat(axisType));
}
};
var selectPolarAxisScale = createSelector([createSelector([
selectPolarAxis,
selectRealScaleType,
selectPolarAxisCheckedDomain,
selectPolarAxisRangeWithReversed
], combineConfiguredScale)], rechartsScaleFactory);
var selectPolarCategoricalDomain = createSelector([
selectChartLayout,
selectPolarAppliedValues,
selectRenderableAxisSettings,
pickAxisType
], combineCategoricalDomain);
var selectPolarAxisTicks = createSelector([
selectChartLayout,
selectPolarAxis,
selectRealScaleType,
selectPolarAxisScale,
selectPolarNiceTicks,
selectPolarAxisRangeWithReversed,
selectDuplicateDomain,
selectPolarCategoricalDomain,
pickAxisType
], combineAxisTicks);
var selectPolarAngleAxisTicks = createSelector([selectPolarAxisTicks], (ticks) => {
if (!ticks) return;
var uniqueTicksMap = /* @__PURE__ */ new Map();
ticks.forEach((tick) => {
var normalizedCoordinate = (tick.coordinate + 360) % 360;
if (!uniqueTicksMap.has(normalizedCoordinate)) uniqueTicksMap.set(normalizedCoordinate, tick);
});
return Array.from(uniqueTicksMap.values());
});
var selectPolarGraphicalItemAxisTicks = createSelector([
selectChartLayout,
selectPolarAxis,
selectPolarAxisScale,
selectPolarAxisRangeWithReversed,
selectDuplicateDomain,
selectPolarCategoricalDomain,
pickAxisType
], combineGraphicalItemTicks);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/polarGridSelectors.js
var selectAngleAxisTicks$2 = (state, anglexisId) => selectPolarAxisTicks(state, "angleAxis", anglexisId, false);
var selectPolarGridAngles = createSelector([selectAngleAxisTicks$2], (ticks) => {
if (!ticks) return;
return ticks.map((tick) => tick.coordinate);
});
var selectRadiusAxisTicks$2 = (state, radiusAxisId) => selectPolarAxisTicks(state, "radiusAxis", radiusAxisId, false);
var selectPolarGridRadii = createSelector([selectRadiusAxisTicks$2], (ticks) => {
if (!ticks) return;
return ticks.map((tick) => tick.coordinate);
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/PolarGrid.js
var _excluded$26 = [
"gridType",
"radialLines",
"angleAxisId",
"radiusAxisId",
"cx",
"cy",
"innerRadius",
"outerRadius",
"polarAngles",
"polarRadius",
"zIndex"
];
function _objectWithoutProperties$26(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$26(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$26(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function _extends$35() {
return _extends$35 = 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$35.apply(null, arguments);
}
function ownKeys$42(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$42(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$42(Object(t), !0).forEach(function(r) {
_defineProperty$42(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$42(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$42(e, r, t) {
return (r = _toPropertyKey$42(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$42(t) {
var i = _toPrimitive$42(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$42(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var getPolygonPath = (radius, cx, cy, polarAngles) => {
var path = "";
polarAngles.forEach((angle, i) => {
var point = polarToCartesian(cx, cy, radius, angle);
if (i) path += "L ".concat(point.x, ",").concat(point.y);
else path += "M ".concat(point.x, ",").concat(point.y);
});
path += "Z";
return path;
};
var PolarAngles = (props) => {
var { cx, cy, innerRadius, outerRadius, polarAngles, radialLines } = props;
if (!polarAngles || !polarAngles.length || !radialLines) return null;
var polarAnglesProps = _objectSpread$42({}, svgPropertiesNoEvents(props));
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-polar-grid-angle" }, polarAngles.map((entry) => {
var start = polarToCartesian(cx, cy, innerRadius, entry);
var end = polarToCartesian(cx, cy, outerRadius, entry);
return /* @__PURE__ */ import_react.createElement("line", _extends$35({ key: "line-".concat(entry) }, polarAnglesProps, {
x1: start.x,
y1: start.y,
x2: end.x,
y2: end.y
}));
}));
};
var ConcentricCircle = (props) => {
var { cx, cy, radius } = props;
var concentricCircleProps = _objectSpread$42({}, svgPropertiesNoEvents(props));
return /* @__PURE__ */ import_react.createElement("circle", _extends$35({}, concentricCircleProps, {
className: clsx("recharts-polar-grid-concentric-circle", props.className),
cx,
cy,
r: radius
}));
};
var ConcentricPolygon = (props) => {
var { radius } = props;
var concentricPolygonProps = _objectSpread$42({}, svgPropertiesNoEvents(props));
return /* @__PURE__ */ import_react.createElement("path", _extends$35({}, concentricPolygonProps, {
className: clsx("recharts-polar-grid-concentric-polygon", props.className),
d: getPolygonPath(radius, props.cx, props.cy, props.polarAngles)
}));
};
var ConcentricGridPath = (props) => {
var { polarRadius, gridType } = props;
if (!polarRadius || !polarRadius.length) return null;
var maxPolarRadius = Math.max(...polarRadius);
var renderBackground = props.fill && props.fill !== "none";
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-polar-grid-concentric" }, renderBackground && gridType === "circle" && /* @__PURE__ */ import_react.createElement(ConcentricCircle, _extends$35({}, props, { radius: maxPolarRadius })), renderBackground && gridType !== "circle" && /* @__PURE__ */ import_react.createElement(ConcentricPolygon, _extends$35({}, props, { radius: maxPolarRadius })), polarRadius.map((entry, i) => {
var key = i;
if (gridType === "circle") return /* @__PURE__ */ import_react.createElement(ConcentricCircle, _extends$35({ key }, props, {
fill: "none",
radius: entry
}));
return /* @__PURE__ */ import_react.createElement(ConcentricPolygon, _extends$35({ key }, props, {
fill: "none",
radius: entry
}));
}));
};
var defaultPolarGridProps = {
angleAxisId: 0,
radiusAxisId: 0,
gridType: "polygon",
radialLines: true,
zIndex: DefaultZIndexes.grid,
stroke: "#ccc",
strokeWidth: 1,
fill: "none"
};
/**
* @consumes PolarViewBoxContext
*/
var PolarGrid = (outsideProps) => {
var _ref, _polarViewBox$cx, _ref2, _polarViewBox$cy, _ref3, _polarViewBox$innerRa, _ref4, _polarViewBox$outerRa;
var _resolveDefaultProps = resolveDefaultProps(outsideProps, defaultPolarGridProps), { gridType, radialLines, angleAxisId, radiusAxisId, cx: cxFromOutside, cy: cyFromOutside, innerRadius: innerRadiusFromOutside, outerRadius: outerRadiusFromOutside, polarAngles: polarAnglesInput, polarRadius: polarRadiusInput, zIndex } = _resolveDefaultProps, inputs = _objectWithoutProperties$26(_resolveDefaultProps, _excluded$26);
var polarViewBox = useAppSelector(selectPolarViewBox);
var polarAnglesFromRedux = useAppSelector((state) => selectPolarGridAngles(state, angleAxisId));
var polarRadiiFromRedux = useAppSelector((state) => selectPolarGridRadii(state, radiusAxisId));
var polarAngles = Array.isArray(polarAnglesInput) ? polarAnglesInput : polarAnglesFromRedux;
var polarRadius = Array.isArray(polarRadiusInput) ? polarRadiusInput : polarRadiiFromRedux;
if (polarAngles == null || polarRadius == null) return null;
var props = _objectSpread$42({
cx: (_ref = (_polarViewBox$cx = polarViewBox === null || polarViewBox === void 0 ? void 0 : polarViewBox.cx) !== null && _polarViewBox$cx !== void 0 ? _polarViewBox$cx : cxFromOutside) !== null && _ref !== void 0 ? _ref : 0,
cy: (_ref2 = (_polarViewBox$cy = polarViewBox === null || polarViewBox === void 0 ? void 0 : polarViewBox.cy) !== null && _polarViewBox$cy !== void 0 ? _polarViewBox$cy : cyFromOutside) !== null && _ref2 !== void 0 ? _ref2 : 0,
innerRadius: (_ref3 = (_polarViewBox$innerRa = polarViewBox === null || polarViewBox === void 0 ? void 0 : polarViewBox.innerRadius) !== null && _polarViewBox$innerRa !== void 0 ? _polarViewBox$innerRa : innerRadiusFromOutside) !== null && _ref3 !== void 0 ? _ref3 : 0,
outerRadius: (_ref4 = (_polarViewBox$outerRa = polarViewBox === null || polarViewBox === void 0 ? void 0 : polarViewBox.outerRadius) !== null && _polarViewBox$outerRa !== void 0 ? _polarViewBox$outerRa : outerRadiusFromOutside) !== null && _ref4 !== void 0 ? _ref4 : 0,
polarAngles,
polarRadius,
zIndex
}, inputs);
var { outerRadius } = props;
if (outerRadius <= 0) return null;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement("g", { className: "recharts-polar-grid" }, /* @__PURE__ */ import_react.createElement(ConcentricGridPath, _extends$35({
gridType,
radialLines
}, props, {
polarAngles,
polarRadius
})), /* @__PURE__ */ import_react.createElement(PolarAngles, _extends$35({
gridType,
radialLines
}, props, {
polarAngles,
polarRadius
}))));
};
PolarGrid.displayName = "PolarGrid";
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/array/maxBy.js
var require_maxBy$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function maxBy(items, getValue) {
if (items.length === 0) return;
let maxElement = items[0];
let max = getValue(maxElement, 0, items);
for (let i = 1; i < items.length; i++) {
const element = items[i];
const value = getValue(element, i, items);
if (value > max) {
max = value;
maxElement = element;
}
}
return maxElement;
}
exports.maxBy = maxBy;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/math/maxBy.js
var require_maxBy$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var maxBy$1 = require_maxBy$2();
var identity = require_identity();
var iteratee = require_iteratee();
function maxBy(items, iteratee$1) {
if (items == null) return;
return maxBy$1.maxBy(Array.from(items), iteratee.iteratee(iteratee$1 ?? identity.identity));
}
exports.maxBy = maxBy;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/compat/maxBy.js
var require_maxBy = /* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_maxBy$1().maxBy;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/array/minBy.js
var require_minBy$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function minBy(items, getValue) {
if (items.length === 0) return;
let minElement = items[0];
let min = getValue(minElement, 0, items);
for (let i = 1; i < items.length; i++) {
const element = items[i];
const value = getValue(element, i, items);
if (value < min) {
min = value;
minElement = element;
}
}
return minElement;
}
exports.minBy = minBy;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/math/minBy.js
var require_minBy$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var minBy$1 = require_minBy$2();
var identity = require_identity();
var iteratee = require_iteratee();
function minBy(items, iteratee$1) {
if (items == null) return;
return minBy$1.minBy(Array.from(items), iteratee.iteratee(iteratee$1 ?? identity.identity));
}
exports.minBy = minBy;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/compat/minBy.js
var require_minBy = /* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_minBy$1().minBy;
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/polarAxisSlice.js
var import_maxBy = /* @__PURE__ */ __toESM(require_maxBy());
var import_minBy = /* @__PURE__ */ __toESM(require_minBy());
var polarAxisSlice = createSlice({
name: "polarAxis",
initialState: {
radiusAxis: {},
angleAxis: {}
},
reducers: {
addRadiusAxis(state, action) {
state.radiusAxis[action.payload.id] = castDraft(action.payload);
},
removeRadiusAxis(state, action) {
delete state.radiusAxis[action.payload.id];
},
addAngleAxis(state, action) {
state.angleAxis[action.payload.id] = castDraft(action.payload);
},
removeAngleAxis(state, action) {
delete state.angleAxis[action.payload.id];
}
}
});
var { addRadiusAxis, removeRadiusAxis, addAngleAxis, removeAngleAxis } = polarAxisSlice.actions;
var polarAxisReducer = polarAxisSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getClassNameFromUnknown.js
function getClassNameFromUnknown(u) {
if (u && typeof u === "object" && "className" in u && typeof u.className === "string") return u.className;
return "";
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/PolarRadiusAxis.js
var _excluded$25 = ["type"], _excluded2$13 = [
"cx",
"cy",
"angle",
"axisLine"
], _excluded3$9 = [
"angle",
"tickFormatter",
"stroke",
"tick"
];
function _extends$34() {
return _extends$34 = 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$34.apply(null, arguments);
}
function ownKeys$41(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$41(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$41(Object(t), !0).forEach(function(r) {
_defineProperty$41(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$41(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$41(e, r, t) {
return (r = _toPropertyKey$41(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$41(t) {
var i = _toPrimitive$41(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$41(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$25(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$25(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$25(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var AXIS_TYPE$1 = "radiusAxis";
function SetRadiusAxisSettings(props) {
var dispatch = useAppDispatch();
var layout = usePolarChartLayout();
var settings = (0, import_react.useMemo)(() => {
var { type: typeFromProps } = props, rest = _objectWithoutProperties$25(props, _excluded$25);
var evaluatedType = getAxisTypeBasedOnLayout(layout, "radiusAxis", typeFromProps);
if (evaluatedType == null) return;
return _objectSpread$41(_objectSpread$41({}, rest), {}, { type: evaluatedType });
}, [props, layout]);
(0, import_react.useEffect)(() => {
if (settings == null) return noop$2;
dispatch(addRadiusAxis(settings));
return () => {
dispatch(removeRadiusAxis(settings));
};
}, [dispatch, settings]);
return null;
}
/**
* Calculate the coordinate of tick
* @param coordinate The radius of tick
* @param angle from props
* @param cx from chart
* @param cy from chart
* @return (x, y)
*/
var getTickValueCoord = (_ref, angle, cx, cy) => {
var { coordinate } = _ref;
return polarToCartesian(cx, cy, coordinate, angle);
};
var getTickTextAnchor$2 = (orientation) => {
var textAnchor;
switch (orientation) {
case "left":
textAnchor = "end";
break;
case "right":
textAnchor = "start";
break;
default:
textAnchor = "middle";
break;
}
return textAnchor;
};
var getViewBox = (angle, cx, cy, ticks) => {
var maxRadiusTick = (0, import_maxBy.default)(ticks, (entry) => entry.coordinate || 0);
var minRadiusTick = (0, import_minBy.default)(ticks, (entry) => entry.coordinate || 0);
return {
cx,
cy,
startAngle: angle,
endAngle: angle,
innerRadius: (minRadiusTick === null || minRadiusTick === void 0 ? void 0 : minRadiusTick.coordinate) || 0,
outerRadius: (maxRadiusTick === null || maxRadiusTick === void 0 ? void 0 : maxRadiusTick.coordinate) || 0,
clockWise: false
};
};
var renderAxisLine = (props, ticks) => {
var { cx, cy, angle, axisLine } = props, others = _objectWithoutProperties$25(props, _excluded2$13);
var extent = ticks.reduce((result, entry) => [Math.min(result[0], entry.coordinate), Math.max(result[1], entry.coordinate)], [Infinity, -Infinity]);
var point0 = polarToCartesian(cx, cy, extent[0], angle);
var point1 = polarToCartesian(cx, cy, extent[1], angle);
var axisLineProps = _objectSpread$41(_objectSpread$41(_objectSpread$41({}, svgPropertiesNoEvents(others)), {}, { fill: "none" }, svgPropertiesNoEvents(axisLine)), {}, {
x1: point0.x,
y1: point0.y,
x2: point1.x,
y2: point1.y
});
return /* @__PURE__ */ import_react.createElement("line", _extends$34({ className: "recharts-polar-radius-axis-line" }, axisLineProps));
};
var renderTickItem = (option, tickProps, value) => {
var tickItem;
if (/* @__PURE__ */ import_react.isValidElement(option)) tickItem = /* @__PURE__ */ import_react.cloneElement(option, tickProps);
else if (typeof option === "function") tickItem = option(tickProps);
else tickItem = /* @__PURE__ */ import_react.createElement(Text, _extends$34({}, tickProps, { className: "recharts-polar-radius-axis-tick-value" }), value);
return tickItem;
};
var renderTicks = (props, ticks) => {
var { angle, tickFormatter, stroke, tick } = props, others = _objectWithoutProperties$25(props, _excluded3$9);
var textAnchor = getTickTextAnchor$2(props.orientation);
var axisProps = svgPropertiesNoEvents(others);
var customTickProps = svgPropertiesNoEventsFromUnknown(tick);
var items = ticks.map((entry, i) => {
var coord = getTickValueCoord(entry, props.angle, props.cx, props.cy);
var tickProps = _objectSpread$41(_objectSpread$41(_objectSpread$41(_objectSpread$41({
textAnchor,
transform: "rotate(".concat(90 - angle, ", ").concat(coord.x, ", ").concat(coord.y, ")")
}, axisProps), {}, {
stroke: "none",
fill: stroke
}, customTickProps), {}, { index: i }, coord), {}, { payload: entry });
return /* @__PURE__ */ import_react.createElement(Layer, _extends$34({
className: clsx("recharts-polar-radius-axis-tick", getClassNameFromUnknown(tick)),
key: "tick-".concat(entry.coordinate)
}, adaptEventsOfChild(props, entry, i)), renderTickItem(tick, tickProps, tickFormatter ? tickFormatter(entry.value, i) : entry.value));
});
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-polar-radius-axis-ticks" }, items);
};
var PolarRadiusAxisWrapper = (defaultsAndInputs) => {
var { radiusAxisId } = defaultsAndInputs;
var viewBox = useAppSelector(selectPolarViewBox);
var scale = useAppSelector((state) => selectPolarAxisScale(state, "radiusAxis", radiusAxisId));
var ticks = useAppSelector((state) => selectPolarAxisTicks(state, "radiusAxis", radiusAxisId, false));
if (viewBox == null || !ticks || !ticks.length || scale == null) return null;
var props = _objectSpread$41(_objectSpread$41({}, defaultsAndInputs), {}, { scale }, viewBox);
var { tick, axisLine } = props;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-polar-radius-axis", AXIS_TYPE$1, props.className) }, axisLine && renderAxisLine(props, ticks), tick && renderTicks(props, ticks), /* @__PURE__ */ import_react.createElement(PolarLabelContextProvider, getViewBox(props.angle, props.cx, props.cy, ticks), /* @__PURE__ */ import_react.createElement(PolarLabelFromLabelProp, { label: props.label }), props.children)));
};
/**
* @provides PolarLabelContext
* @consumes PolarViewBoxContext
*/
function PolarRadiusAxis(outsideProps) {
var _props$niceTicks;
var props = resolveDefaultProps(outsideProps, defaultPolarRadiusAxisProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetRadiusAxisSettings, {
domain: props.domain,
id: props.radiusAxisId,
scale: props.scale,
type: props.type,
dataKey: props.dataKey,
unit: void 0,
name: props.name,
allowDuplicatedCategory: props.allowDuplicatedCategory,
allowDataOverflow: props.allowDataOverflow,
reversed: props.reversed,
includeHidden: props.includeHidden,
allowDecimals: props.allowDecimals,
niceTicks: (_props$niceTicks = props.niceTicks) !== null && _props$niceTicks !== void 0 ? _props$niceTicks : "auto",
ticks: props.ticks,
tickCount: props.tickCount,
tick: props.tick
}), /* @__PURE__ */ import_react.createElement(PolarRadiusAxisWrapper, props));
}
PolarRadiusAxis.displayName = "PolarRadiusAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/PolarAngleAxis.js
var _excluded$24 = ["children", "type"], _excluded2$12 = ["ref"];
function _extends$33() {
return _extends$33 = 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$33.apply(null, arguments);
}
function ownKeys$40(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$40(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$40(Object(t), !0).forEach(function(r) {
_defineProperty$40(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$40(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$40(e, r, t) {
return (r = _toPropertyKey$40(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$40(t) {
var i = _toPrimitive$40(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$40(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$24(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$24(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$24(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var eps = 1e-5;
var COS_45 = Math.cos(degreeToRadian(45));
var AXIS_TYPE = "angleAxis";
function SetAngleAxisSettings(props) {
var dispatch = useAppDispatch();
var layout = usePolarChartLayout();
var settings = (0, import_react.useMemo)(() => {
var { children, type: typeFromProps } = props, rest = _objectWithoutProperties$24(props, _excluded$24);
var evaluatedType = getAxisTypeBasedOnLayout(layout, "angleAxis", typeFromProps);
if (evaluatedType == null) return;
return _objectSpread$40(_objectSpread$40({}, rest), {}, { type: evaluatedType });
}, [props, layout]);
var settingsAreSynchronized = settings === useAppSelector((state) => selectAngleAxis(state, settings === null || settings === void 0 ? void 0 : settings.id));
(0, import_react.useEffect)(() => {
if (settings == null) return noop$2;
dispatch(addAngleAxis(settings));
return () => {
dispatch(removeAngleAxis(settings));
};
}, [dispatch, settings]);
if (settingsAreSynchronized) return props.children;
return null;
}
/**
* Calculate the coordinate of line endpoint
* @param data The data if there are ticks
* @param props axis settings
* @return (x1, y1): The point close to text,
* (x2, y2): The point close to axis
*/
var getTickLineCoord$1 = (data, props) => {
var { cx, cy, radius, orientation, tickSize } = props;
var tickLineSize = tickSize || 8;
var p1 = polarToCartesian(cx, cy, radius, data.coordinate);
var p2 = polarToCartesian(cx, cy, radius + (orientation === "inner" ? -1 : 1) * tickLineSize, data.coordinate);
return {
x1: p1.x,
y1: p1.y,
x2: p2.x,
y2: p2.y
};
};
/**
* Get the text-anchor of each tick
* @param data Data of ticks
* @param orientation of the axis ticks
* @return text-anchor
*/
var getTickTextAnchor$1 = (data, orientation) => {
var cos = Math.cos(degreeToRadian(-data.coordinate));
if (cos > eps) return orientation === "outer" ? "start" : "end";
if (cos < -eps) return orientation === "outer" ? "end" : "start";
return "middle";
};
/**
* Get the text vertical anchor of each tick
* @param data Data of a tick
* @return text vertical anchor
*/
var getTickTextVerticalAnchor = (data) => {
var cos = Math.cos(degreeToRadian(-data.coordinate));
var sin = Math.sin(degreeToRadian(-data.coordinate));
if (Math.abs(cos) <= COS_45) return sin > 0 ? "start" : "end";
return "middle";
};
var AxisLine$1 = (props) => {
var { cx, cy, radius, axisLineType, axisLine, ticks } = props;
if (!axisLine) return null;
var axisLineProps = _objectSpread$40(_objectSpread$40({}, svgPropertiesNoEvents(props)), {}, { fill: "none" }, svgPropertiesNoEvents(axisLine));
if (axisLineType === "circle") return /* @__PURE__ */ import_react.createElement(Dot, _extends$33({ className: "recharts-polar-angle-axis-line" }, axisLineProps, {
cx,
cy,
r: radius
}));
var points = ticks.map((entry) => polarToCartesian(cx, cy, radius, entry.coordinate));
return /* @__PURE__ */ import_react.createElement(Polygon, _extends$33({ className: "recharts-polar-angle-axis-line" }, axisLineProps, { points }));
};
var TickItemText = (_ref) => {
var { tick, tickProps, value } = _ref;
if (!tick) return null;
if (/* @__PURE__ */ import_react.isValidElement(tick)) return /* @__PURE__ */ import_react.cloneElement(tick, tickProps);
if (typeof tick === "function") return tick(tickProps);
return /* @__PURE__ */ import_react.createElement(Text, _extends$33({}, tickProps, { className: "recharts-polar-angle-axis-tick-value" }), value);
};
var Ticks$1 = (props) => {
var { tick, tickLine, tickFormatter, stroke, ticks } = props;
var _svgPropertiesNoEvent = svgPropertiesNoEvents(props), { ref } = _svgPropertiesNoEvent, axisProps = _objectWithoutProperties$24(_svgPropertiesNoEvent, _excluded2$12);
var customTickProps = svgPropertiesNoEventsFromUnknown(tick);
var tickLineProps = _objectSpread$40(_objectSpread$40({}, axisProps), {}, { fill: "none" }, svgPropertiesNoEvents(tickLine));
var items = ticks.map((entry, i) => {
var lineCoord = getTickLineCoord$1(entry, props);
var textAnchor = getTickTextAnchor$1(entry, props.orientation);
var verticalAnchor = getTickTextVerticalAnchor(entry);
var tickProps = _objectSpread$40(_objectSpread$40(_objectSpread$40({}, axisProps), {}, {
textAnchor,
verticalAnchor,
stroke: "none",
fill: stroke
}, customTickProps), {}, {
index: i,
payload: entry,
x: lineCoord.x2,
y: lineCoord.y2
});
return /* @__PURE__ */ import_react.createElement(Layer, _extends$33({
className: clsx("recharts-polar-angle-axis-tick", getClassNameFromUnknown(tick)),
key: "tick-".concat(entry.coordinate)
}, adaptEventsOfChild(props, entry, i)), tickLine && /* @__PURE__ */ import_react.createElement("line", _extends$33({ className: "recharts-polar-angle-axis-tick-line" }, tickLineProps, lineCoord)), /* @__PURE__ */ import_react.createElement(TickItemText, {
tick,
tickProps,
value: tickFormatter ? tickFormatter(entry.value, i) : entry.value
}));
});
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-polar-angle-axis-ticks" }, items);
};
var PolarAngleAxisWrapper = (defaultsAndInputs) => {
var { angleAxisId } = defaultsAndInputs;
var viewBox = useAppSelector(selectPolarViewBox);
var scale = useAppSelector((state) => selectPolarAxisScale(state, "angleAxis", angleAxisId));
var isPanorama = useIsPanorama();
var ticks = useAppSelector((state) => selectPolarAngleAxisTicks(state, "angleAxis", angleAxisId, isPanorama));
if (viewBox == null || !ticks || !ticks.length || scale == null) return null;
var props = _objectSpread$40(_objectSpread$40(_objectSpread$40({}, defaultsAndInputs), {}, { scale }, viewBox), {}, {
radius: viewBox.outerRadius,
ticks
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-polar-angle-axis", AXIS_TYPE, props.className) }, /* @__PURE__ */ import_react.createElement(AxisLine$1, props), /* @__PURE__ */ import_react.createElement(Ticks$1, props)));
};
/**
* @provides PolarLabelContext
* @consumes PolarViewBoxContext
*/
function PolarAngleAxis(outsideProps) {
var _props$niceTicks;
var props = resolveDefaultProps(outsideProps, defaultPolarAngleAxisProps);
return /* @__PURE__ */ import_react.createElement(SetAngleAxisSettings, {
id: props.angleAxisId,
scale: props.scale,
type: props.type,
dataKey: props.dataKey,
unit: void 0,
name: props.name,
allowDuplicatedCategory: false,
allowDataOverflow: false,
reversed: props.reversed,
includeHidden: false,
allowDecimals: props.allowDecimals,
tickCount: props.tickCount,
niceTicks: (_props$niceTicks = props.niceTicks) !== null && _props$niceTicks !== void 0 ? _props$niceTicks : "auto",
ticks: props.ticks,
tick: props.tick,
domain: props.domain
}, /* @__PURE__ */ import_react.createElement(PolarAngleAxisWrapper, props));
}
PolarAngleAxis.displayName = "PolarAngleAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/pieSelectors.js
function ownKeys$39(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$39(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$39(Object(t), !0).forEach(function(r) {
_defineProperty$39(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$39(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$39(e, r, t) {
return (r = _toPropertyKey$39(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$39(t) {
var i = _toPrimitive$39(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$39(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var pickId$1 = (_state, id) => id;
var selectSynchronisedPieSettings = createSelector([selectUnfilteredPolarItems, pickId$1], (graphicalItems, id) => graphicalItems.filter((item) => item.type === "pie").find((item) => item.id === id));
var emptyArray = [];
var pickCells$3 = (_state, _id, cells) => {
if ((cells === null || cells === void 0 ? void 0 : cells.length) === 0) return emptyArray;
return cells;
};
var selectDisplayedData = createSelector([
selectChartDataAndAlwaysIgnoreIndexes,
selectSynchronisedPieSettings,
pickCells$3
], (_ref, pieSettings, cells) => {
var { chartData } = _ref;
if (pieSettings == null) return;
var displayedData;
if ((pieSettings === null || pieSettings === void 0 ? void 0 : pieSettings.data) != null && pieSettings.data.length > 0) displayedData = pieSettings.data;
else displayedData = chartData;
if ((!displayedData || !displayedData.length) && cells != null) displayedData = cells.map((cell) => _objectSpread$39(_objectSpread$39({}, pieSettings.presentationProps), cell.props));
if (displayedData == null) return;
return displayedData;
});
var selectPieLegend = createSelector([
selectDisplayedData,
selectSynchronisedPieSettings,
pickCells$3
], (displayedData, pieSettings, cells) => {
if (displayedData == null || pieSettings == null) return;
return displayedData.map((entry, i) => {
var _cells$i;
var name = getValueByDataKey(entry, pieSettings.nameKey, pieSettings.name);
var color;
if (cells !== null && cells !== void 0 && (_cells$i = cells[i]) !== null && _cells$i !== void 0 && (_cells$i = _cells$i.props) !== null && _cells$i !== void 0 && _cells$i.fill) color = cells[i].props.fill;
else if (typeof entry === "object" && entry != null && "fill" in entry) color = entry.fill;
else color = pieSettings.fill;
return {
value: getTooltipNameProp(name, pieSettings.dataKey),
color,
payload: entry,
type: pieSettings.legendType
};
});
});
var selectPieSectors = createSelector([
selectDisplayedData,
selectSynchronisedPieSettings,
pickCells$3,
selectChartOffsetInternal
], (displayedData, pieSettings, cells, offset) => {
if (pieSettings == null || displayedData == null) return;
return computePieSectors({
offset,
pieSettings,
displayedData,
cells
});
});
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/react-is-npm-19.2.5-d16c73c117-10c0.zip/node_modules/react-is/cjs/react-is.development.js
/**
* @license React
* react-is.development.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var require_react_is_development = /* @__PURE__ */ __commonJSMin(((exports) => {
(function() {
function typeOf(object) {
if ("object" === typeof object && null !== object) {
var $$typeof = object.$$typeof;
switch ($$typeof) {
case REACT_ELEMENT_TYPE: switch (object = object.type, object) {
case REACT_FRAGMENT_TYPE:
case REACT_PROFILER_TYPE:
case REACT_STRICT_MODE_TYPE:
case REACT_SUSPENSE_TYPE:
case REACT_SUSPENSE_LIST_TYPE:
case REACT_VIEW_TRANSITION_TYPE: return object;
default: switch (object = object && object.$$typeof, object) {
case REACT_CONTEXT_TYPE:
case REACT_FORWARD_REF_TYPE:
case REACT_LAZY_TYPE:
case REACT_MEMO_TYPE: return object;
case REACT_CONSUMER_TYPE: return object;
default: return $$typeof;
}
}
case REACT_PORTAL_TYPE: return $$typeof;
}
}
}
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_VIEW_TRANSITION_TYPE = Symbol.for("react.view_transition"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
exports.ContextConsumer = REACT_CONSUMER_TYPE;
exports.ContextProvider = REACT_CONTEXT_TYPE;
exports.Element = REACT_ELEMENT_TYPE;
exports.ForwardRef = REACT_FORWARD_REF_TYPE;
exports.Fragment = REACT_FRAGMENT_TYPE;
exports.Lazy = REACT_LAZY_TYPE;
exports.Memo = REACT_MEMO_TYPE;
exports.Portal = REACT_PORTAL_TYPE;
exports.Profiler = REACT_PROFILER_TYPE;
exports.StrictMode = REACT_STRICT_MODE_TYPE;
exports.Suspense = REACT_SUSPENSE_TYPE;
exports.SuspenseList = REACT_SUSPENSE_LIST_TYPE;
exports.isContextConsumer = function(object) {
return typeOf(object) === REACT_CONSUMER_TYPE;
};
exports.isContextProvider = function(object) {
return typeOf(object) === REACT_CONTEXT_TYPE;
};
exports.isElement = function(object) {
return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
};
exports.isForwardRef = function(object) {
return typeOf(object) === REACT_FORWARD_REF_TYPE;
};
exports.isFragment = function(object) {
return typeOf(object) === REACT_FRAGMENT_TYPE;
};
exports.isLazy = function(object) {
return typeOf(object) === REACT_LAZY_TYPE;
};
exports.isMemo = function(object) {
return typeOf(object) === REACT_MEMO_TYPE;
};
exports.isPortal = function(object) {
return typeOf(object) === REACT_PORTAL_TYPE;
};
exports.isProfiler = function(object) {
return typeOf(object) === REACT_PROFILER_TYPE;
};
exports.isStrictMode = function(object) {
return typeOf(object) === REACT_STRICT_MODE_TYPE;
};
exports.isSuspense = function(object) {
return typeOf(object) === REACT_SUSPENSE_TYPE;
};
exports.isSuspenseList = function(object) {
return typeOf(object) === REACT_SUSPENSE_LIST_TYPE;
};
exports.isValidElementType = function(type) {
return "string" === typeof type || "function" === typeof type || type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || "object" === typeof type && null !== type && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_CONSUMER_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_CLIENT_REFERENCE || void 0 !== type.getModuleId) ? !0 : !1;
};
exports.typeOf = typeOf;
})();
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/ReactUtils.js
var import_react_is = (/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_react_is_development();
})))();
/**
* @deprecated instead find another approach that does not depend on displayName.
* Get the display name of a component
* @param {Object} Comp Specified Component
* @return {String} Display name of Component
*/
var getDisplayName = (Comp) => {
if (typeof Comp === "string") return Comp;
if (!Comp) return "";
return Comp.displayName || Comp.name || "Component";
};
var lastChildren = null;
var lastResult = null;
/**
* @deprecated instead find another approach that does not require reading React Elements from DOM.
*
* @param children do not use
* @return deprecated do not use
*/
var toArray = (children) => {
if (children === lastChildren && Array.isArray(lastResult)) return lastResult;
var result = [];
import_react.Children.forEach(children, (child) => {
if (isNullish(child)) return;
if ((0, import_react_is.isFragment)(child)) result = result.concat(toArray(child.props.children));
else result.push(child);
});
lastResult = result;
lastChildren = children;
return result;
};
/**
* @deprecated instead find another approach that does not require reading React Elements from DOM.
*
* Find and return all matched children by type.
* `type` must be a React.ComponentType
*
* @param children do not use
* @param type do not use
* @return deprecated do not use
*/
function findAllByType(children, type) {
var result = [];
var types = [];
if (Array.isArray(type)) types = type.map((t) => getDisplayName(t));
else types = [getDisplayName(type)];
toArray(children).forEach((child) => {
var childType = (0, import_get.default)(child, "type.displayName") || (0, import_get.default)(child, "type.name");
if (childType && types.indexOf(childType) !== -1) result.push(child);
});
return result;
}
var isClipDot = (dot) => {
if (dot && typeof dot === "object" && "clipDot" in dot) return Boolean(dot.clipDot);
return true;
};
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.js
var require_isPlainObject$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function isPlainObject(object) {
if (typeof object !== "object") return false;
if (object == null) return false;
if (Object.getPrototypeOf(object) === null) return true;
if (Object.prototype.toString.call(object) !== "[object Object]") {
const tag = object[Symbol.toStringTag];
if (tag == null) return false;
if (!Object.getOwnPropertyDescriptor(object, Symbol.toStringTag)?.writable) return false;
return object.toString() === `[object ${tag}]`;
}
let proto = object;
while (Object.getPrototypeOf(proto) !== null) proto = Object.getPrototypeOf(proto);
return Object.getPrototypeOf(object) === proto;
}
exports.isPlainObject = isPlainObject;
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/shape/Trapezoid.js
var import_isPlainObject = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_isPlainObject$1().isPlainObject;
})))());
/**
* @fileOverview Rectangle
*/
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
function ownKeys$38(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$38(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$38(Object(t), !0).forEach(function(r) {
_defineProperty$38(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$38(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$38(e, r, t) {
return (r = _toPropertyKey$38(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$38(t) {
var i = _toPrimitive$38(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$38(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$32() {
return _extends$32 = 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$32.apply(null, arguments);
}
function _taggedTemplateLiteral(e, t) {
return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } }));
}
var getTrapezoidPath = (x, y, upperWidth, lowerWidth, height) => {
var widthGap = upperWidth - lowerWidth;
var path = roundTemplateLiteral(_templateObject || (_templateObject = _taggedTemplateLiteral([
"M ",
",",
""
])), x, y);
path += roundTemplateLiteral(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral([
"L ",
",",
""
])), x + upperWidth, y);
path += roundTemplateLiteral(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral([
"L ",
",",
""
])), x + upperWidth - widthGap / 2, y + height);
path += roundTemplateLiteral(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral([
"L ",
",",
""
])), x + upperWidth - widthGap / 2 - lowerWidth, y + height);
path += roundTemplateLiteral(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral([
"L ",
",",
" Z"
])), x, y);
return path;
};
var defaultTrapezoidProps = {
x: 0,
y: 0,
upperWidth: 0,
lowerWidth: 0,
height: 0,
isUpdateAnimationActive: false,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease"
};
var Trapezoid = (outsideProps) => {
var trapezoidProps = resolveDefaultProps(outsideProps, defaultTrapezoidProps);
var { x, y, upperWidth, lowerWidth, height, className } = trapezoidProps;
var { animationEasing, animationDuration, animationBegin, isUpdateAnimationActive } = trapezoidProps;
var pathRef = (0, import_react.useRef)(null);
var [totalLength, setTotalLength] = (0, import_react.useState)(-1);
var prevUpperWidthRef = (0, import_react.useRef)(upperWidth);
var prevLowerWidthRef = (0, import_react.useRef)(lowerWidth);
var prevHeightRef = (0, import_react.useRef)(height);
var prevXRef = (0, import_react.useRef)(x);
var prevYRef = (0, import_react.useRef)(y);
var animationId = useAnimationId(outsideProps, "trapezoid-");
(0, import_react.useEffect)(() => {
if (pathRef.current && pathRef.current.getTotalLength) try {
var pathTotalLength = pathRef.current.getTotalLength();
if (pathTotalLength) setTotalLength(pathTotalLength);
} catch (_unused) {}
}, []);
if (x !== +x || y !== +y || upperWidth !== +upperWidth || lowerWidth !== +lowerWidth || height !== +height || upperWidth === 0 && lowerWidth === 0 || height === 0) return null;
var layerClass = clsx("recharts-trapezoid", className);
if (!isUpdateAnimationActive) return /* @__PURE__ */ import_react.createElement("g", null, /* @__PURE__ */ import_react.createElement("path", _extends$32({}, svgPropertiesAndEvents(trapezoidProps), {
className: layerClass,
d: getTrapezoidPath(x, y, upperWidth, lowerWidth, height)
})));
var prevUpperWidth = prevUpperWidthRef.current;
var prevLowerWidth = prevLowerWidthRef.current;
var prevHeight = prevHeightRef.current;
var prevX = prevXRef.current;
var prevY = prevYRef.current;
var from = "0px ".concat(totalLength === -1 ? 1 : totalLength, "px");
var to = "".concat(totalLength, "px ").concat(totalLength, "px");
var transition = getTransitionVal(["strokeDasharray"], animationDuration, animationEasing);
return /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
key: animationId,
canBegin: totalLength > 0,
duration: animationDuration,
easing: animationEasing,
isActive: isUpdateAnimationActive,
begin: animationBegin
}, (t) => {
var currUpperWidth = interpolate(prevUpperWidth, upperWidth, t);
var currLowerWidth = interpolate(prevLowerWidth, lowerWidth, t);
var currHeight = interpolate(prevHeight, height, t);
var currX = interpolate(prevX, x, t);
var currY = interpolate(prevY, y, t);
if (pathRef.current) {
prevUpperWidthRef.current = currUpperWidth;
prevLowerWidthRef.current = currLowerWidth;
prevHeightRef.current = currHeight;
prevXRef.current = currX;
prevYRef.current = currY;
}
var animationStyle = t > 0 ? {
transition,
strokeDasharray: to
} : { strokeDasharray: from };
return /* @__PURE__ */ import_react.createElement("path", _extends$32({}, svgPropertiesAndEvents(trapezoidProps), {
className: layerClass,
d: getTrapezoidPath(currX, currY, currUpperWidth, currLowerWidth, currHeight),
ref: pathRef,
style: _objectSpread$38(_objectSpread$38({}, animationStyle), trapezoidProps.style)
}));
});
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/ActiveShapeUtils.js
var _excluded$23 = [
"option",
"shapeType",
"activeClassName",
"inActiveClassName"
];
function _objectWithoutProperties$23(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$23(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$23(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function ownKeys$37(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$37(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$37(Object(t), !0).forEach(function(r) {
_defineProperty$37(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$37(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$37(e, r, t) {
return (r = _toPropertyKey$37(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$37(t) {
var i = _toPrimitive$37(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$37(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* This is an abstraction for rendering a user defined prop for a customized shape in several forms.
*
* is the root and will handle taking in:
* - an object of svg properties
* - a boolean
* - a render prop(inline function that returns jsx)
* - a React element
*
* is a subcomponent of and used to match a component
* to the value of props.shapeType that is passed to the root.
*
*/
function defaultPropTransformer(option, props) {
return _objectSpread$37(_objectSpread$37({}, props), option);
}
function isSymbolsProps(shapeType, _elementProps) {
return shapeType === "symbols";
}
function ShapeSelector(_ref) {
var { shapeType, elementProps } = _ref;
switch (shapeType) {
case "rectangle": return /* @__PURE__ */ import_react.createElement(Rectangle, elementProps);
case "trapezoid": return /* @__PURE__ */ import_react.createElement(Trapezoid, elementProps);
case "sector": return /* @__PURE__ */ import_react.createElement(Sector, elementProps);
case "symbols":
if (isSymbolsProps(shapeType, elementProps)) return /* @__PURE__ */ import_react.createElement(Symbols, elementProps);
break;
case "curve": return /* @__PURE__ */ import_react.createElement(Curve, elementProps);
default: return null;
}
}
function getPropsFromShapeOption(option) {
if (/* @__PURE__ */ (0, import_react.isValidElement)(option)) return option.props;
return option;
}
function Shape(_ref2) {
var { option, shapeType, activeClassName = "recharts-active-shape", inActiveClassName = "recharts-shape" } = _ref2, props = _objectWithoutProperties$23(_ref2, _excluded$23);
var shape;
if (/* @__PURE__ */ (0, import_react.isValidElement)(option)) shape = /* @__PURE__ */ (0, import_react.cloneElement)(option, _objectSpread$37(_objectSpread$37({}, props), getPropsFromShapeOption(option)));
else if (typeof option === "function") shape = option(props, props.index);
else if ((0, import_isPlainObject.default)(option) && typeof option !== "boolean") {
var nextProps = defaultPropTransformer(option, props);
shape = /* @__PURE__ */ import_react.createElement(ShapeSelector, {
shapeType,
elementProps: nextProps
});
} else {
var elementProps = props;
shape = /* @__PURE__ */ import_react.createElement(ShapeSelector, {
shapeType,
elementProps
});
}
if (props.isActive) return /* @__PURE__ */ import_react.createElement(Layer, { className: activeClassName }, shape);
return /* @__PURE__ */ import_react.createElement(Layer, { className: inActiveClassName }, shape);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/tooltipContext.js
/**
* Some graphical items choose to provide more information to the tooltip
* and some do not.
*/
var useMouseEnterItemDispatch = (onMouseEnterFromProps, dataKey, graphicalItemId) => {
var dispatch = useAppDispatch();
return (data, index) => (event) => {
onMouseEnterFromProps === null || onMouseEnterFromProps === void 0 || onMouseEnterFromProps(data, index, event);
dispatch(setActiveMouseOverItemIndex({
activeIndex: String(index),
activeDataKey: dataKey,
activeCoordinate: data.tooltipPosition,
activeGraphicalItemId: graphicalItemId
}));
};
};
var useMouseLeaveItemDispatch = (onMouseLeaveFromProps) => {
var dispatch = useAppDispatch();
return (data, index) => (event) => {
onMouseLeaveFromProps === null || onMouseLeaveFromProps === void 0 || onMouseLeaveFromProps(data, index, event);
dispatch(mouseLeaveItem());
};
};
var useMouseClickItemDispatch = (onMouseClickFromProps, dataKey, graphicalItemId) => {
var dispatch = useAppDispatch();
return (data, index) => (event) => {
onMouseClickFromProps === null || onMouseClickFromProps === void 0 || onMouseClickFromProps(data, index, event);
dispatch(setActiveClickItemIndex({
activeIndex: String(index),
activeDataKey: dataKey,
activeCoordinate: data.tooltipPosition,
activeGraphicalItemId: graphicalItemId
}));
};
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/SetTooltipEntrySettings.js
function SetTooltipEntrySettings(_ref) {
var { tooltipEntrySettings } = _ref;
var dispatch = useAppDispatch();
var isPanorama = useIsPanorama();
var prevSettingsRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (isPanorama) return;
if (prevSettingsRef.current === null) dispatch(addTooltipEntrySettings(tooltipEntrySettings));
else if (prevSettingsRef.current !== tooltipEntrySettings) dispatch(replaceTooltipEntrySettings({
prev: prevSettingsRef.current,
next: tooltipEntrySettings
}));
prevSettingsRef.current = tooltipEntrySettings;
}, [
tooltipEntrySettings,
dispatch,
isPanorama
]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevSettingsRef.current) {
dispatch(removeTooltipEntrySettings(prevSettingsRef.current));
prevSettingsRef.current = null;
}
};
}, [dispatch]);
return null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/SetLegendPayload.js
function SetLegendPayload(_ref) {
var { legendPayload } = _ref;
var dispatch = useAppDispatch();
var isPanorama = useIsPanorama();
var prevPayloadRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (isPanorama) return;
if (prevPayloadRef.current === null) dispatch(addLegendPayload(legendPayload));
else if (prevPayloadRef.current !== legendPayload) dispatch(replaceLegendPayload({
prev: prevPayloadRef.current,
next: legendPayload
}));
prevPayloadRef.current = legendPayload;
}, [
dispatch,
isPanorama,
legendPayload
]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevPayloadRef.current) {
dispatch(removeLegendPayload(prevPayloadRef.current));
prevPayloadRef.current = null;
}
};
}, [dispatch]);
return null;
}
function SetPolarLegendPayload(_ref2) {
var { legendPayload } = _ref2;
var dispatch = useAppDispatch();
var layout = useAppSelector(selectChartLayout);
var prevPayloadRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (layout !== "centric" && layout !== "radial") return;
if (prevPayloadRef.current === null) dispatch(addLegendPayload(legendPayload));
else if (prevPayloadRef.current !== legendPayload) dispatch(replaceLegendPayload({
prev: prevPayloadRef.current,
next: legendPayload
}));
prevPayloadRef.current = legendPayload;
}, [
dispatch,
layout,
legendPayload
]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevPayloadRef.current) {
dispatch(removeLegendPayload(prevPayloadRef.current));
prevPayloadRef.current = null;
}
};
}, [dispatch]);
return null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/useId.js
var _ref;
/**
* Fallback for React.useId() for versions prior to React 18.
* Generates a unique ID using a simple counter and a prefix.
*
* @returns A unique ID that remains consistent across renders.
*/
var useIdFallback = () => {
var [id] = import_react.useState(() => uniqueId("uid-"));
return id;
};
var useId = (_ref = import_react["useId".toString()]) !== null && _ref !== void 0 ? _ref : useIdFallback;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/useUniqueId.js
/**
* A hook that generates a unique ID. It uses React.useId() in React 18+ for SSR safety
* and falls back to a client-side-only unique ID generator for older versions.
*
* The ID will stay the same across renders, and you can optionally provide a prefix.
*
* @param [prefix] - An optional prefix for the generated ID.
* @param [customId] - An optional custom ID to override the generated one.
* @returns The unique ID.
*/
function useUniqueId(prefix, customId) {
var generatedId = useId();
if (customId) return customId;
return prefix ? "".concat(prefix, "-").concat(generatedId) : generatedId;
}
/**
* The useUniqueId hook returns a unique ID that is either reused from external props or generated internally.
* Either way the ID is now guaranteed to be present so no more nulls or undefined.
*/
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/RegisterGraphicalItemId.js
var GraphicalItemIdContext = /* @__PURE__ */ (0, import_react.createContext)(void 0);
var RegisterGraphicalItemId = (_ref) => {
var { id, type, children } = _ref;
var resolvedId = useUniqueId("recharts-".concat(type), id);
return /* @__PURE__ */ import_react.createElement(GraphicalItemIdContext.Provider, { value: resolvedId }, children(resolvedId));
};
function useGraphicalItemId() {
return (0, import_react.useContext)(GraphicalItemIdContext);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/graphicalItemsSlice.js
var graphicalItemsSlice = createSlice({
name: "graphicalItems",
initialState: {
cartesianItems: [],
polarItems: []
},
reducers: {
addCartesianGraphicalItem: {
reducer(state, action) {
state.cartesianItems.push(castDraft(action.payload));
},
prepare: prepareAutoBatched()
},
replaceCartesianGraphicalItem: {
reducer(state, action) {
var { prev, next } = action.payload;
var index = current$1(state).cartesianItems.indexOf(castDraft(prev));
if (index > -1) state.cartesianItems[index] = castDraft(next);
},
prepare: prepareAutoBatched()
},
removeCartesianGraphicalItem: {
reducer(state, action) {
var index = current$1(state).cartesianItems.indexOf(castDraft(action.payload));
if (index > -1) state.cartesianItems.splice(index, 1);
},
prepare: prepareAutoBatched()
},
addPolarGraphicalItem: {
reducer(state, action) {
state.polarItems.push(castDraft(action.payload));
},
prepare: prepareAutoBatched()
},
removePolarGraphicalItem: {
reducer(state, action) {
var index = current$1(state).polarItems.indexOf(castDraft(action.payload));
if (index > -1) state.polarItems.splice(index, 1);
},
prepare: prepareAutoBatched()
},
replacePolarGraphicalItem: {
reducer(state, action) {
var { prev, next } = action.payload;
var index = current$1(state).polarItems.indexOf(castDraft(prev));
if (index > -1) state.polarItems[index] = castDraft(next);
},
prepare: prepareAutoBatched()
}
}
});
var { addCartesianGraphicalItem, replaceCartesianGraphicalItem, removeCartesianGraphicalItem, addPolarGraphicalItem, removePolarGraphicalItem, replacePolarGraphicalItem } = graphicalItemsSlice.actions;
var graphicalItemsReducer = graphicalItemsSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/SetGraphicalItem.js
var SetCartesianGraphicalItemImpl = (props) => {
var dispatch = useAppDispatch();
var prevPropsRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (prevPropsRef.current === null) dispatch(addCartesianGraphicalItem(props));
else if (prevPropsRef.current !== props) dispatch(replaceCartesianGraphicalItem({
prev: prevPropsRef.current,
next: props
}));
prevPropsRef.current = props;
}, [dispatch, props]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevPropsRef.current) {
dispatch(removeCartesianGraphicalItem(prevPropsRef.current));
prevPropsRef.current = null;
}
};
}, [dispatch]);
return null;
};
var SetCartesianGraphicalItem = /* @__PURE__ */ (0, import_react.memo)(SetCartesianGraphicalItemImpl);
var SetPolarGraphicalItemImpl = (props) => {
var dispatch = useAppDispatch();
var prevPropsRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (prevPropsRef.current === null) dispatch(addPolarGraphicalItem(props));
else if (prevPropsRef.current !== props) dispatch(replacePolarGraphicalItem({
prev: prevPropsRef.current,
next: props
}));
prevPropsRef.current = props;
}, [dispatch, props]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevPropsRef.current) {
dispatch(removePolarGraphicalItem(prevPropsRef.current));
prevPropsRef.current = null;
}
};
}, [dispatch]);
return null;
};
var SetPolarGraphicalItem = /* @__PURE__ */ (0, import_react.memo)(SetPolarGraphicalItemImpl);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/Pie.js
var _excluded$22 = ["key"], _excluded2$11 = [
"onMouseEnter",
"onClick",
"onMouseLeave"
], _excluded3$8 = ["id"], _excluded4$3 = ["id"];
function _extends$31() {
return _extends$31 = 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$31.apply(null, arguments);
}
function _objectWithoutProperties$22(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$22(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$22(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function ownKeys$36(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$36(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$36(Object(t), !0).forEach(function(r) {
_defineProperty$36(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$36(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$36(e, r, t) {
return (r = _toPropertyKey$36(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$36(t) {
var i = _toPrimitive$36(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$36(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* The `label` prop in Pie accepts a variety of alternatives.
*/
/**
* We spread the data object into the sector data item,
* so we can't really know what is going to be inside.
*
* This type represents our best effort, but it all depends on the input data
* and what is inside of it.
*
* https://github.com/recharts/recharts/issues/6380
* https://github.com/recharts/recharts/discussions/6375
*/
/**
* Internal props, combination of external props + defaultProps + private Recharts state
*/
function SetPiePayloadLegend(props) {
var cells = (0, import_react.useMemo)(() => findAllByType(props.children, Cell), [props.children]);
var legendPayload = useAppSelector((state) => selectPieLegend(state, props.id, cells));
if (legendPayload == null) return null;
return /* @__PURE__ */ import_react.createElement(SetPolarLegendPayload, { legendPayload });
}
function getActiveShapeFill(activeShape) {
if (activeShape == null || typeof activeShape === "boolean" || typeof activeShape === "function") return;
if (/* @__PURE__ */ import_react.isValidElement(activeShape)) {
var _activeShape$props;
var _fill = (_activeShape$props = activeShape.props) === null || _activeShape$props === void 0 ? void 0 : _activeShape$props.fill;
return typeof _fill === "string" ? _fill : void 0;
}
var { fill } = activeShape;
return typeof fill === "string" ? fill : void 0;
}
var SetPieTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, nameKey, sectors, stroke, strokeWidth, fill, name, hide, tooltipType, id, activeShape } = _ref;
var activeShapeFill = getActiveShapeFill(activeShape);
var tooltipEntrySettings = {
dataDefinedOnItem: sectors.map((sector) => {
var sectorTooltipPayload = sector.tooltipPayload;
if (activeShapeFill == null || sectorTooltipPayload == null) return sectorTooltipPayload;
return sectorTooltipPayload.map((item) => _objectSpread$36(_objectSpread$36({}, item), {}, {
color: activeShapeFill,
fill: activeShapeFill
}));
}),
getPosition: (index) => {
var _sectors$Number;
return (_sectors$Number = sectors[Number(index)]) === null || _sectors$Number === void 0 ? void 0 : _sectors$Number.tooltipPosition;
},
settings: {
stroke,
strokeWidth,
fill,
dataKey,
nameKey,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: fill,
unit: "",
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
var getTextAnchor = (x, cx) => {
if (x > cx) return "start";
if (x < cx) return "end";
return "middle";
};
var getOuterRadius = (dataPoint, outerRadius, maxPieRadius) => {
if (typeof outerRadius === "function") return getPercentValue(outerRadius(dataPoint), maxPieRadius, maxPieRadius * .8);
return getPercentValue(outerRadius, maxPieRadius, maxPieRadius * .8);
};
var parseCoordinateOfPie = (pieSettings, offset, dataPoint) => {
var { top, left, width, height } = offset;
var maxPieRadius = getMaxRadius(width, height);
return {
cx: left + getPercentValue(pieSettings.cx, width, width / 2),
cy: top + getPercentValue(pieSettings.cy, height, height / 2),
innerRadius: getPercentValue(pieSettings.innerRadius, maxPieRadius, 0),
outerRadius: getOuterRadius(dataPoint, pieSettings.outerRadius, maxPieRadius),
maxRadius: pieSettings.maxRadius || Math.sqrt(width * width + height * height) / 2
};
};
var parseDeltaAngle = (startAngle, endAngle) => {
return mathSign(endAngle - startAngle) * Math.min(Math.abs(endAngle - startAngle), 360);
};
var renderLabelLineItem = (option, props) => {
if (/* @__PURE__ */ import_react.isValidElement(option)) return /* @__PURE__ */ import_react.cloneElement(option, props);
if (typeof option === "function") return option(props);
var className = clsx("recharts-pie-label-line", typeof option !== "boolean" ? option.className : "");
var { key } = props, otherProps = _objectWithoutProperties$22(props, _excluded$22);
return /* @__PURE__ */ import_react.createElement(Curve, _extends$31({}, otherProps, {
type: "linear",
className
}));
};
var renderLabelItem = (option, props, value) => {
if (/* @__PURE__ */ import_react.isValidElement(option)) return /* @__PURE__ */ import_react.cloneElement(option, props);
var label = value;
if (typeof option === "function") {
label = option(props);
if (/* @__PURE__ */ import_react.isValidElement(label)) return label;
}
var className = clsx("recharts-pie-label-text", getClassNameFromUnknown(option));
return /* @__PURE__ */ import_react.createElement(Text, _extends$31({}, props, {
alignmentBaseline: "middle",
className
}), label);
};
function PieLabels(_ref2) {
var { sectors, props, showLabels } = _ref2;
var { label, labelLine, dataKey } = props;
if (!showLabels || !label || !sectors) return null;
var pieProps = svgPropertiesNoEvents(props);
var customLabelProps = svgPropertiesNoEventsFromUnknown(label);
var customLabelLineProps = svgPropertiesNoEventsFromUnknown(labelLine);
var offsetRadius = typeof label === "object" && "offsetRadius" in label && typeof label.offsetRadius === "number" && label.offsetRadius || 20;
var labels = sectors.map((entry, i) => {
var midAngle = (entry.startAngle + entry.endAngle) / 2;
var endPoint = polarToCartesian(entry.cx, entry.cy, entry.outerRadius + offsetRadius, midAngle);
var labelProps = _objectSpread$36(_objectSpread$36(_objectSpread$36(_objectSpread$36({}, pieProps), entry), {}, { stroke: "none" }, customLabelProps), {}, {
index: i,
textAnchor: getTextAnchor(endPoint.x, entry.cx)
}, endPoint);
var lineProps = _objectSpread$36(_objectSpread$36(_objectSpread$36(_objectSpread$36({}, pieProps), entry), {}, {
fill: "none",
stroke: entry.fill
}, customLabelLineProps), {}, {
index: i,
points: [polarToCartesian(entry.cx, entry.cy, entry.outerRadius, midAngle), endPoint],
key: "line"
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, {
zIndex: DefaultZIndexes.label,
key: "label-".concat(entry.startAngle, "-").concat(entry.endAngle, "-").concat(entry.midAngle, "-").concat(i)
}, /* @__PURE__ */ import_react.createElement(Layer, null, labelLine && renderLabelLineItem(labelLine, lineProps), renderLabelItem(label, labelProps, getValueByDataKey(entry, dataKey))));
});
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-pie-labels" }, labels);
}
function PieLabelList(_ref3) {
var { sectors, props, showLabels } = _ref3;
var { label } = props;
if (typeof label === "object" && label != null && "position" in label) return /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label });
return /* @__PURE__ */ import_react.createElement(PieLabels, {
sectors,
props,
showLabels
});
}
function PieSectors(props) {
var { sectors, activeShape, inactiveShape: inactiveShapeProp, allOtherPieProps, shape, id } = props;
var activeIndex = useAppSelector(selectActiveTooltipIndex);
var activeDataKey = useAppSelector(selectActiveTooltipDataKey);
var activeGraphicalItemId = useAppSelector(selectActiveTooltipGraphicalItemId);
var { onMouseEnter: onMouseEnterFromProps, onClick: onItemClickFromProps, onMouseLeave: onMouseLeaveFromProps } = allOtherPieProps, restOfAllOtherProps = _objectWithoutProperties$22(allOtherPieProps, _excluded2$11);
var onMouseEnterFromContext = useMouseEnterItemDispatch(onMouseEnterFromProps, allOtherPieProps.dataKey, id);
var onMouseLeaveFromContext = useMouseLeaveItemDispatch(onMouseLeaveFromProps);
var onClickFromContext = useMouseClickItemDispatch(onItemClickFromProps, allOtherPieProps.dataKey, id);
if (sectors == null || sectors.length === 0) return null;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, sectors.map((entry, i) => {
if ((entry === null || entry === void 0 ? void 0 : entry.startAngle) === 0 && (entry === null || entry === void 0 ? void 0 : entry.endAngle) === 0 && sectors.length !== 1) return null;
var graphicalItemMatches = activeGraphicalItemId == null || activeGraphicalItemId === id;
var isActive = String(i) === activeIndex && (activeDataKey == null || allOtherPieProps.dataKey === activeDataKey) && graphicalItemMatches;
var sectorOptions = activeShape && isActive ? activeShape : activeIndex ? inactiveShapeProp : null;
var sectorProps = _objectSpread$36(_objectSpread$36({}, entry), {}, {
stroke: entry.stroke,
tabIndex: -1,
[DATA_ITEM_INDEX_ATTRIBUTE_NAME]: i,
[DATA_ITEM_GRAPHICAL_ITEM_ID_ATTRIBUTE_NAME]: id
});
return /* @__PURE__ */ import_react.createElement(Layer, _extends$31({
key: "sector-".concat(entry === null || entry === void 0 ? void 0 : entry.startAngle, "-").concat(entry === null || entry === void 0 ? void 0 : entry.endAngle, "-").concat(entry.midAngle, "-").concat(i),
tabIndex: -1,
className: "recharts-pie-sector"
}, adaptEventsOfChild(restOfAllOtherProps, entry, i), {
onMouseEnter: onMouseEnterFromContext(entry, i),
onMouseLeave: onMouseLeaveFromContext(entry, i),
onClick: onClickFromContext(entry, i)
}), /* @__PURE__ */ import_react.createElement(Shape, _extends$31({
option: shape !== null && shape !== void 0 ? shape : sectorOptions,
index: i,
shapeType: "sector",
isActive
}, sectorProps)));
}));
}
function computePieSectors(_ref4) {
var _pieSettings$paddingA;
var { pieSettings, displayedData, cells, offset } = _ref4;
var { cornerRadius, startAngle, endAngle, dataKey, nameKey, tooltipType } = pieSettings;
var minAngle = Math.abs(pieSettings.minAngle);
var deltaAngle = parseDeltaAngle(startAngle, endAngle);
var absDeltaAngle = Math.abs(deltaAngle);
var paddingAngle = displayedData.length <= 1 ? 0 : (_pieSettings$paddingA = pieSettings.paddingAngle) !== null && _pieSettings$paddingA !== void 0 ? _pieSettings$paddingA : 0;
var notZeroItemCount = displayedData.filter((entry) => getValueByDataKey(entry, dataKey, 0) !== 0).length;
var totalPaddingAngle = (absDeltaAngle >= 360 ? notZeroItemCount : notZeroItemCount - 1) * paddingAngle;
var sum = displayedData.reduce((result, entry) => {
var val = getValueByDataKey(entry, dataKey, 0);
return result + (isNumber(val) ? val : 0);
}, 0);
var effectiveMinAngle = minAngle > 0 && sum > 0 && displayedData.some((entry) => {
var val = getValueByDataKey(entry, dataKey, 0);
var percent = (isNumber(val) ? val : 0) / sum;
return val !== 0 && percent * absDeltaAngle < minAngle;
}) ? minAngle : 0;
var realTotalAngle = absDeltaAngle - notZeroItemCount * effectiveMinAngle - totalPaddingAngle;
var sectors;
if (sum > 0) {
var prev;
sectors = displayedData.map((entry, i) => {
var val = getValueByDataKey(entry, dataKey, 0);
var name = getValueByDataKey(entry, nameKey, i);
var coordinate = parseCoordinateOfPie(pieSettings, offset, entry);
var percent = (isNumber(val) ? val : 0) / sum;
var tempStartAngle;
var entryWithCellInfo = _objectSpread$36(_objectSpread$36({}, entry), cells && cells[i] && cells[i].props);
var sectorColor = entryWithCellInfo != null && "fill" in entryWithCellInfo && typeof entryWithCellInfo.fill === "string" ? entryWithCellInfo.fill : pieSettings.fill;
if (i) tempStartAngle = prev.endAngle + mathSign(deltaAngle) * paddingAngle * (val !== 0 ? 1 : 0);
else tempStartAngle = startAngle;
var tempEndAngle = tempStartAngle + mathSign(deltaAngle) * ((val !== 0 ? effectiveMinAngle : 0) + percent * realTotalAngle);
var midAngle = (tempStartAngle + tempEndAngle) / 2;
var middleRadius = (coordinate.innerRadius + coordinate.outerRadius) / 2;
var tooltipPayload = [{
name,
value: val,
payload: entryWithCellInfo,
dataKey,
type: tooltipType,
color: sectorColor,
fill: sectorColor,
graphicalItemId: pieSettings.id
}];
var tooltipPosition = polarToCartesian(coordinate.cx, coordinate.cy, middleRadius, midAngle);
prev = _objectSpread$36(_objectSpread$36(_objectSpread$36(_objectSpread$36({}, pieSettings.presentationProps), {}, {
percent,
cornerRadius: typeof cornerRadius === "string" ? parseFloat(cornerRadius) : cornerRadius,
name,
tooltipPayload,
midAngle,
middleRadius,
tooltipPosition
}, entryWithCellInfo), coordinate), {}, {
value: val,
dataKey,
startAngle: tempStartAngle,
endAngle: tempEndAngle,
payload: entryWithCellInfo,
paddingAngle: val !== 0 ? mathSign(deltaAngle) * paddingAngle : 0
});
return prev;
});
}
return sectors;
}
function PieLabelListProvider(_ref5) {
var { showLabels, sectors, children } = _ref5;
var labelListEntries = (0, import_react.useMemo)(() => {
if (!showLabels || !sectors) return [];
return sectors.map((entry) => ({
value: entry.value,
payload: entry.payload,
clockWise: false,
parentViewBox: void 0,
viewBox: {
cx: entry.cx,
cy: entry.cy,
innerRadius: entry.innerRadius,
outerRadius: entry.outerRadius,
startAngle: entry.startAngle,
endAngle: entry.endAngle,
clockWise: false
},
fill: entry.fill
}));
}, [sectors, showLabels]);
return /* @__PURE__ */ import_react.createElement(PolarLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function SectorsWithAnimation$1(_ref6) {
var { props, previousSectorsRef, id } = _ref6;
var { sectors, isAnimationActive, animationBegin, animationDuration, animationEasing, activeShape, inactiveShape, onAnimationStart, onAnimationEnd } = props;
var animationId = useAnimationId(props, "recharts-pie-");
var prevSectors = previousSectorsRef.current;
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
return /* @__PURE__ */ import_react.createElement(PieLabelListProvider, {
showLabels: !isAnimating,
sectors
}, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationStart: handleAnimationStart,
onAnimationEnd: handleAnimationEnd,
key: animationId
}, (t) => {
var _first$startAngle;
var stepData = [];
var first = sectors && sectors[0];
var curAngle = (_first$startAngle = first === null || first === void 0 ? void 0 : first.startAngle) !== null && _first$startAngle !== void 0 ? _first$startAngle : 0;
sectors === null || sectors === void 0 || sectors.forEach((entry, index) => {
var prev = prevSectors && prevSectors[index];
var paddingAngle = index > 0 ? (0, import_get.default)(entry, "paddingAngle", 0) : 0;
if (prev) {
var angle = interpolate(prev.endAngle - prev.startAngle, entry.endAngle - entry.startAngle, t);
var latest = _objectSpread$36(_objectSpread$36({}, entry), {}, {
startAngle: curAngle + paddingAngle,
endAngle: curAngle + angle + paddingAngle
});
stepData.push(latest);
curAngle = latest.endAngle;
} else {
var { endAngle, startAngle } = entry;
var deltaAngle = interpolate(0, endAngle - startAngle, t);
var _latest = _objectSpread$36(_objectSpread$36({}, entry), {}, {
startAngle: curAngle + paddingAngle,
endAngle: curAngle + deltaAngle + paddingAngle
});
stepData.push(_latest);
curAngle = _latest.endAngle;
}
});
previousSectorsRef.current = stepData;
return /* @__PURE__ */ import_react.createElement(Layer, null, /* @__PURE__ */ import_react.createElement(PieSectors, {
sectors: stepData,
activeShape,
inactiveShape,
allOtherPieProps: props,
shape: props.shape,
id
}));
}), /* @__PURE__ */ import_react.createElement(PieLabelList, {
showLabels: !isAnimating,
sectors,
props
}), props.children);
}
var defaultPieProps = {
animationBegin: 400,
animationDuration: 1500,
animationEasing: "ease",
cx: "50%",
cy: "50%",
dataKey: "value",
endAngle: 360,
fill: "#808080",
hide: false,
innerRadius: 0,
isAnimationActive: "auto",
label: false,
labelLine: true,
legendType: "rect",
minAngle: 0,
nameKey: "name",
outerRadius: "80%",
paddingAngle: 0,
rootTabIndex: 0,
startAngle: 0,
stroke: "#fff",
zIndex: DefaultZIndexes.area
};
function PieImpl(props) {
var { id } = props, propsWithoutId = _objectWithoutProperties$22(props, _excluded3$8);
var { hide, className, rootTabIndex } = props;
var cells = (0, import_react.useMemo)(() => findAllByType(props.children, Cell), [props.children]);
var sectors = useAppSelector((state) => selectPieSectors(state, id, cells));
var previousSectorsRef = (0, import_react.useRef)(null);
var layerClass = clsx("recharts-pie", className);
if (hide || sectors == null) {
previousSectorsRef.current = null;
return /* @__PURE__ */ import_react.createElement(Layer, {
tabIndex: rootTabIndex,
className: layerClass
});
}
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(SetPieTooltipEntrySettings, {
dataKey: props.dataKey,
nameKey: props.nameKey,
sectors,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
tooltipType: props.tooltipType,
id,
activeShape: props.activeShape
}), /* @__PURE__ */ import_react.createElement(Layer, {
tabIndex: rootTabIndex,
className: layerClass
}, /* @__PURE__ */ import_react.createElement(SectorsWithAnimation$1, {
props: _objectSpread$36(_objectSpread$36({}, propsWithoutId), {}, { sectors }),
previousSectorsRef,
id
})));
}
/**
* @consumes PolarChartContext
* @provides LabelListContext
* @provides CellReader
*/
function PieFn(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultPieProps);
var { id: externalId } = props, propsWithoutId = _objectWithoutProperties$22(props, _excluded4$3);
var presentationProps = svgPropertiesNoEvents(propsWithoutId);
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: externalId,
type: "pie"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetPolarGraphicalItem, {
type: "pie",
id,
data: propsWithoutId.data,
dataKey: propsWithoutId.dataKey,
hide: propsWithoutId.hide,
angleAxisId: 0,
radiusAxisId: 0,
name: propsWithoutId.name,
nameKey: propsWithoutId.nameKey,
tooltipType: propsWithoutId.tooltipType,
legendType: propsWithoutId.legendType,
fill: propsWithoutId.fill,
cx: propsWithoutId.cx,
cy: propsWithoutId.cy,
startAngle: propsWithoutId.startAngle,
endAngle: propsWithoutId.endAngle,
paddingAngle: propsWithoutId.paddingAngle,
minAngle: propsWithoutId.minAngle,
innerRadius: propsWithoutId.innerRadius,
outerRadius: propsWithoutId.outerRadius,
cornerRadius: propsWithoutId.cornerRadius,
presentationProps,
maxRadius: props.maxRadius
}), /* @__PURE__ */ import_react.createElement(SetPiePayloadLegend, _extends$31({}, propsWithoutId, { id })), /* @__PURE__ */ import_react.createElement(PieImpl, _extends$31({}, propsWithoutId, { id }))));
}
var Pie = PieFn;
Pie.displayName = "Pie";
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/array/last.js
var require_last$2 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function last(arr) {
return arr[arr.length - 1];
}
exports.last = last;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/_internal/toArray.js
var require_toArray = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
function toArray(value) {
return Array.isArray(value) ? value : Array.from(value);
}
exports.toArray = toArray;
}));
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/es-toolkit-npm-1.45.1-9660dc6721-10c0.zip/node_modules/es-toolkit/dist/compat/array/last.js
var require_last$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
var last$1 = require_last$2();
var toArray = require_toArray();
var isArrayLike = require_isArrayLike();
function last(array) {
if (!isArrayLike.isArrayLike(array)) return;
return last$1.last(toArray.toArray(array));
}
exports.last = last;
}));
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/Dots.js
var import_last = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
module.exports = require_last$1().last;
})))());
var _excluded$21 = ["points"];
function ownKeys$35(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$35(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$35(Object(t), !0).forEach(function(r) {
_defineProperty$35(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$35(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$35(e, r, t) {
return (r = _toPropertyKey$35(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$35(t) {
var i = _toPrimitive$35(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$35(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$30() {
return _extends$30 = 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$30.apply(null, arguments);
}
function _objectWithoutProperties$21(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$21(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$21(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function DotItem(_ref) {
var { option, dotProps, className } = _ref;
if (/* @__PURE__ */ (0, import_react.isValidElement)(option)) return /* @__PURE__ */ (0, import_react.cloneElement)(option, dotProps);
if (typeof option === "function") return option(dotProps);
var finalClassName = clsx(className, typeof option !== "boolean" ? option.className : "");
var _ref2 = dotProps !== null && dotProps !== void 0 ? dotProps : {}, { points } = _ref2, props = _objectWithoutProperties$21(_ref2, _excluded$21);
return /* @__PURE__ */ import_react.createElement(Dot, _extends$30({}, props, { className: finalClassName }));
}
function shouldRenderDots(points, dot) {
if (points == null) return false;
if (dot) return true;
return points.length === 1;
}
function Dots(_ref3) {
var { points, dot, className, dotClassName, dataKey, baseProps, needClip, clipPathId, zIndex = DefaultZIndexes.scatter } = _ref3;
if (!shouldRenderDots(points, dot)) return null;
var clipDot = isClipDot(dot);
var customDotProps = svgPropertiesAndEventsFromUnknown(dot);
var dots = points.map((entry, i) => {
var _entry$x, _entry$y;
var dotProps = _objectSpread$35(_objectSpread$35(_objectSpread$35({ r: 3 }, baseProps), customDotProps), {}, {
index: i,
cx: (_entry$x = entry.x) !== null && _entry$x !== void 0 ? _entry$x : void 0,
cy: (_entry$y = entry.y) !== null && _entry$y !== void 0 ? _entry$y : void 0,
dataKey,
value: entry.value,
payload: entry.payload,
points
});
return /* @__PURE__ */ import_react.createElement(DotItem, {
key: "dot-".concat(i),
option: dot,
dotProps,
className: dotClassName
});
});
var layerProps = {};
if (needClip && clipPathId != null) layerProps.clipPath = "url(#clipPath-".concat(clipDot ? "" : "dots-").concat(clipPathId, ")");
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex }, /* @__PURE__ */ import_react.createElement(Layer, _extends$30({ className }, layerProps), dots));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/cartesianAxisSlice.js
function ownKeys$34(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$34(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$34(Object(t), !0).forEach(function(r) {
_defineProperty$34(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$34(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$34(e, r, t) {
return (r = _toPropertyKey$34(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$34(t) {
var i = _toPrimitive$34(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$34(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* This is the slice where each individual Axis element pushes its own configuration.
* Prefer to use this one instead of axisSlice.
*/
var cartesianAxisSlice = createSlice({
name: "cartesianAxis",
initialState: {
xAxis: {},
yAxis: {},
zAxis: {}
},
reducers: {
addXAxis: {
reducer(state, action) {
state.xAxis[action.payload.id] = castDraft(action.payload);
},
prepare: prepareAutoBatched()
},
replaceXAxis: {
reducer(state, action) {
var { prev, next } = action.payload;
if (state.xAxis[prev.id] !== void 0) {
if (prev.id !== next.id) delete state.xAxis[prev.id];
state.xAxis[next.id] = castDraft(next);
}
},
prepare: prepareAutoBatched()
},
removeXAxis: {
reducer(state, action) {
delete state.xAxis[action.payload.id];
},
prepare: prepareAutoBatched()
},
addYAxis: {
reducer(state, action) {
state.yAxis[action.payload.id] = castDraft(action.payload);
},
prepare: prepareAutoBatched()
},
replaceYAxis: {
reducer(state, action) {
var { prev, next } = action.payload;
if (state.yAxis[prev.id] !== void 0) {
if (prev.id !== next.id) delete state.yAxis[prev.id];
state.yAxis[next.id] = castDraft(next);
}
},
prepare: prepareAutoBatched()
},
removeYAxis: {
reducer(state, action) {
delete state.yAxis[action.payload.id];
},
prepare: prepareAutoBatched()
},
addZAxis: {
reducer(state, action) {
state.zAxis[action.payload.id] = castDraft(action.payload);
},
prepare: prepareAutoBatched()
},
replaceZAxis: {
reducer(state, action) {
var { prev, next } = action.payload;
if (state.zAxis[prev.id] !== void 0) {
if (prev.id !== next.id) delete state.zAxis[prev.id];
state.zAxis[next.id] = castDraft(next);
}
},
prepare: prepareAutoBatched()
},
removeZAxis: {
reducer(state, action) {
delete state.zAxis[action.payload.id];
},
prepare: prepareAutoBatched()
},
updateYAxisWidth(state, action) {
var { id, width } = action.payload;
var axis = state.yAxis[id];
if (axis) {
var _history$;
var history = axis.widthHistory || [];
if (history.length === 3 && history[0] === history[2] && width === history[1] && width !== axis.width && Math.abs(width - ((_history$ = history[0]) !== null && _history$ !== void 0 ? _history$ : 0)) <= 1) return;
var newHistory = [...history, width].slice(-3);
state.yAxis[id] = _objectSpread$34(_objectSpread$34({}, axis), {}, {
width,
widthHistory: newHistory
});
}
}
}
});
var { addXAxis, replaceXAxis, removeXAxis, addYAxis, replaceYAxis, removeYAxis, addZAxis, replaceZAxis, removeZAxis, updateYAxisWidth } = cartesianAxisSlice.actions;
var cartesianAxisReducer = cartesianAxisSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectChartOffset.js
var selectChartOffset = createSelector([selectChartOffsetInternal], (offsetInternal) => {
return {
top: offsetInternal.top,
bottom: offsetInternal.bottom,
left: offsetInternal.left,
right: offsetInternal.right
};
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectPlotArea.js
var selectPlotArea = createSelector([
selectChartOffset,
selectChartWidth,
selectChartHeight
], (offset, chartWidth, chartHeight) => {
if (!offset || chartWidth == null || chartHeight == null) return;
return {
x: offset.left,
y: offset.top,
width: Math.max(0, chartWidth - offset.left - offset.right),
height: Math.max(0, chartHeight - offset.top - offset.bottom)
};
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/hooks.js
var useXAxis = (xAxisId) => {
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisWithScale(state, "xAxis", xAxisId, isPanorama));
};
var useYAxis = (yAxisId) => {
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisWithScale(state, "yAxis", yAxisId, isPanorama));
};
/**
* A function that converts data values to pixel coordinates.
* @param value - The data value to convert (number, string, or category).
* @param options - Optional configuration for banded scales.
* @param options.position - Position within a band: 'start', 'middle', or 'end'.
* @returns The pixel coordinate, or `undefined` if the value is not in the domain.
*/
/**
* A function that converts pixel coordinates back to data values.
* @param pixelValue - The pixel coordinate to convert.
* @returns The closest data value in the domain.
*/
/**
* Returns a function to convert data values to pixel coordinates for an {@link XAxis}.
*
* This is useful for positioning annotations, custom shapes, or other elements
* at specific data points on the chart.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @example
* ```tsx
* const xScale = useXAxisScale();
* if (xScale) {
* const pixelX = xScale('Page A'); // Returns the pixel x-coordinate for 'Page A'
* }
* ```
*
* @param xAxisId The `xAxisId` of the XAxis. Defaults to `0` if not provided.
* @returns A scale function that maps data values to pixel coordinates, or `undefined`.
* @since 3.8
*/
var useXAxisScale = function useXAxisScale() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
var scale = useAppSelector((state) => selectAxisScale(state, "xAxis", xAxisId, isPanorama));
return scale === null || scale === void 0 ? void 0 : scale.map;
};
/**
* Returns a function to convert data values to pixel coordinates for a {@link YAxis}.
*
* This is useful for positioning annotations, custom shapes, or other elements
* at specific data points on the chart.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @example
* ```tsx
* const yScale = useYAxisScale();
* if (yScale) {
* const pixelY = yScale(1500); // Returns the pixel y-coordinate for value 1500
* }
* ```
*
* @param yAxisId The `yAxisId` of the YAxis. Defaults to `0` if not provided.
* @returns A scale function that maps data values to pixel coordinates, or `undefined`.
* @since 3.8
*/
var useYAxisScale = function useYAxisScale() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
var scale = useAppSelector((state) => selectAxisScale(state, "yAxis", yAxisId, isPanorama));
return scale === null || scale === void 0 ? void 0 : scale.map;
};
/**
* Returns a function to convert pixel coordinates back to data values for an {@link XAxis}.
*
* This is useful for implementing interactions like click-to-add-annotation,
* drag interactions, or tooltips that need to determine what data point
* corresponds to a mouse position.
*
* For continuous (numerical) scales, returns an interpolated value.
* For categorical scales, returns the closest category in the domain - which is the same behaviour as {@link useXAxisInverseDataSnapScale}.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @example
* ```tsx
* const xInverseScale = useXAxisInverseScale();
* if (xInverseScale) {
* const dataValue = xInverseScale(150); // Returns the data value at pixel x=150
* }
* ```
*
* @param xAxisId The `xAxisId` of the XAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to data values, or `undefined`.
* @since 3.8
*/
var useXAxisInverseScale = function useXAxisInverseScale() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisInverseScale(state, "xAxis", xAxisId, isPanorama));
};
/**
* Returns a function to convert pixel coordinates back to data values for an {@link XAxis},
* but snapping to the closest data point.
*
* This is similar to {@link useXAxisInverseScale}, but instead of returning the exact data value
* at the pixel position (interpolation), it returns the value of the closest data point.
*
* This is useful for implementing interactions where you want to select the closest data point
* rather than an exact value or a tick.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @param xAxisId The `xAxisId` of the XAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to the closest data value, or `undefined`.
* @since 3.8
*/
var useXAxisInverseDataSnapScale = function useXAxisInverseDataSnapScale() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisInverseDataSnapScale(state, "xAxis", xAxisId, isPanorama));
};
/**
* Returns a function to convert pixel coordinates back to data values for an {@link XAxis},
* but snapping to the closest axis tick.
*
* This is similar to {@link useXAxisInverseScale}, but instead of returning the exact data value
* at the pixel position (interpolation), it returns the value of the closest tick.
*
* This is useful for implementing interactions where you want to select the closest tick
* rather than an exact value or a data point.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @param xAxisId The `xAxisId` of the XAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to the closest tick value, or `undefined`.
* @since 3.8
*/
var useXAxisInverseTickSnapScale = function useXAxisInverseTickSnapScale() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
return useAppSelector((state) => selectAxisInverseTickSnapScale(state, "xAxis", xAxisId));
};
/**
* Returns a function to convert pixel coordinates back to data values for a {@link YAxis}.
*
* This is useful for implementing interactions like click-to-add-annotation,
* drag interactions, or tooltips that need to determine what data point
* corresponds to a mouse position.
*
* For continuous (numerical) scales, returns an interpolated value.
* For categorical scales, returns the closest category in the domain - which is the same behaviour as {@link useYAxisInverseDataSnapScale}.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @example
* ```tsx
* const yInverseScale = useYAxisInverseScale();
* if (yInverseScale) {
* const dataValue = yInverseScale(200); // Returns the data value at pixel y=200
* }
* ```
*
* @param yAxisId The `yAxisId` of the YAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to data values, or `undefined`.
* @since 3.8
*/
var useYAxisInverseScale = function useYAxisInverseScale() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisInverseScale(state, "yAxis", yAxisId, isPanorama));
};
/**
* Returns a function to convert pixel coordinates back to data values for a {@link YAxis},
* but snapping to the closest data point.
*
* This is similar to {@link useYAxisInverseScale}, but instead of returning the exact data value
* at the pixel position (interpolation), it returns the value of the closest data point.
*
* This is useful for implementing interactions where you want to select the closest data point
* rather than an exact value or a tick.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @param yAxisId The `yAxisId` of the YAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to the closest data value, or `undefined`.
* @since 3.8
*/
var useYAxisInverseDataSnapScale = function useYAxisInverseDataSnapScale() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisInverseDataSnapScale(state, "yAxis", yAxisId, isPanorama));
};
/**
* Returns a function to convert pixel coordinates back to data values for a {@link YAxis},
* but snapping to the closest axis tick.
*
* This is similar to {@link useYAxisInverseScale}, but instead of returning the exact data value
* at the pixel position (interpolation), it returns the value of the closest tick.
*
* This is useful for implementing interactions where you want to select the closest tick
* rather than an exact value or a data point.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist.
*
* @param yAxisId The `yAxisId` of the YAxis. Defaults to `0` if not provided.
* @returns An inverse scale function that maps pixel coordinates to the closest tick value, or `undefined`.
* @since 3.8
*/
var useYAxisInverseTickSnapScale = function useYAxisInverseTickSnapScale() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
return useAppSelector((state) => selectAxisInverseTickSnapScale(state, "yAxis", yAxisId));
};
/**
* Returns the ticks of an {@link XAxis}.
*
* This hook is useful for accessing the calculated ticks of an XAxis.
* The ticks are the same as the ones rendered by the XAxis component.
*
* @param xAxisId The `xAxisId` of the XAxis. Defaults to `0` if not provided.
* @returns An array of ticks, or `undefined` if the axis doesn't exist or hasn't been calculated yet.
* @since 3.8
*/
var useXAxisTicks = function useXAxisTicks() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
return useAppSelector((state) => selectRenderedTicksOfAxis(state, "xAxis", xAxisId));
};
/**
* Returns the ticks of a {@link YAxis}.
*
* This hook is useful for accessing the calculated ticks of a YAxis.
* The ticks are the same as the ones rendered by the YAxis component.
*
* @param yAxisId The `yAxisId` of the YAxis. Defaults to `0` if not provided.
* @returns An array of ticks, or `undefined` if the axis doesn't exist or hasn't been calculated yet.
* @since 3.8
*/
var useYAxisTicks = function useYAxisTicks() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
return useAppSelector((state) => selectRenderedTicksOfAxis(state, "yAxis", yAxisId));
};
/**
* Data point with x and y values that can be converted to pixel coordinates.
* The x and y values should be in the same format as your chart data.
*/
/**
* Converts a data point (in data coordinates) to pixel coordinates.
*
* This hook is useful for positioning annotations, custom shapes, or other elements
* at specific data points on the chart. It uses the axis scales to convert
* data values to their corresponding pixel positions within the chart area.
*
* This hook must be used within a chart context (inside a {@link LineChart}, {@link BarChart}, etc.).
* Returns `undefined` if used outside a chart context, or if the axes don't exist, or if the data point
* cannot be converted (e.g., if the data values are outside the axis domains).
*
* This is a convenience hook that combines {@link useXAxisScale} and {@link useYAxisScale} together in a single call.
*
* @example
* ```tsx
* // Position a marker at data point { x: 'Page C', y: 2500 }
* const pixelCoords = useCartesianScale({ x: 'Page C', y: 2500 });
* if (pixelCoords) {
* return ;
* }
* ```
*
* @param dataPoint The data point with x and y values in data coordinates.
* @param xAxisId The `xAxisId` of the X-axis. Defaults to `0` if not provided.
* @param yAxisId The `yAxisId` of the Y-axis. Defaults to `0` if not provided.
* @returns The pixel x,y coordinates, or `undefined` if conversion is not possible.
* @since 3.8
*/
var useCartesianScale = function useCartesianScale(dataPoint) {
var xAxisId = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;
var yAxisId = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 0;
var xScale = useXAxisScale(xAxisId);
var yScale = useYAxisScale(yAxisId);
if (xScale == null || yScale == null) return;
var pixelX = xScale(dataPoint.x);
var pixelY = yScale(dataPoint.y);
if (pixelX == null || pixelY == null) return;
return {
x: pixelX,
y: pixelY
};
};
/**
* Returns the active tooltip label. The label is one of the values from the chart data,
* and is used to display in the tooltip content.
*
* Returns undefined if there is no active user interaction or if used outside a chart context
*
* @returns ActiveLabel
* @since 3.0
*/
var useActiveTooltipLabel = () => {
return useAppSelector(selectActiveLabel$1);
};
/**
* Returns the offset of the chart in pixels.
*
* Offset defines the blank space between the chart and the plot area.
* This blank space is occupied by supporting elements like axes, legends, and brushes.
*
* The offset includes:
*
* - Margins
* - Width and height of the axes
* - Width and height of the legend
* - Brush height
*
* If you are interested in the margin alone, use {@link useMargin} instead.
*
* The offset is independent of charts position on the page, meaning it does not change as the chart is scrolled or resized.
*
* It is also independent of the scale and zoom, meaning that as the user zooms in and out,
* the numbers will not change as the chart gets visually larger or smaller.
*
* This hook must be used within a chart context (inside a ``, ``, etc.).
* This hook returns `undefined` if used outside a chart context.
*
* @returns Offset of the chart in pixels, or undefined if used outside a chart context.
* @since 3.1
*/
var useOffset = () => {
return useAppSelector(selectChartOffset);
};
/**
* Plot area is the area where the actual chart data is rendered.
* This means: bars, lines, scatter points, etc.
*
* The plot area is calculated based on the chart dimensions and the offset.
*
* Plot area `width` and `height` are the dimensions in pixels;
* `x` and `y` are the coordinates of the top-left corner of the plot area relative to the chart container.
*
* They are also independent of the scale and zoom, meaning that as the user zooms in and out,
* the plot area dimensions will not change as the chart gets visually larger or smaller.
*
* This hook must be used within a chart context (inside a ``, ``, etc.).
* This hook returns `undefined` if used outside a chart context.
*
* @returns Plot area of the chart in pixels, or undefined if used outside a chart context.
* @since 3.1
*/
var usePlotArea = () => {
return useAppSelector(selectPlotArea);
};
/**
* Returns the currently active data points being displayed in the Tooltip.
* Active means that it is currently visible; this hook will return `undefined` if there is no current interaction.
*
* This follows the `` props, if the Tooltip element is present in the chart.
* If there is no `` then this hook will follow the default Tooltip props.
*
* Data point is whatever you pass as an input to the chart using the `data={}` prop.
*
* This returns an array because a chart can have multiple graphical items in it (multiple Lines for example)
* and tooltip with `shared={true}` will display all items at the same time.
*
* Returns undefined when used outside a chart context.
*
* @returns Data points that are currently visible in a Tooltip
*/
var useActiveTooltipDataPoints = () => {
return useAppSelector(selectActiveTooltipDataPoints);
};
/**
* Returns the calculated domain of an X-axis.
*
* The domain can be numerical: `[min, max]`, or categorical: `['a', 'b', 'c']`.
*
* The type of the domain is defined by the `type` prop of the XAxis.
*
* The values of the domain are calculated based on the data and the `dataKey` of the axis.
*
* If the chart has a Brush, the domain will be filtered to the brushed indexes if the hook is used outside a Brush context,
* and the full domain will be returned if the hook is used inside a Brush context.
*
* @param xAxisId The `xAxisId` of the X-axis. Defaults to `0` if not provided.
* @returns The domain of the X-axis, or `undefined` if it cannot be calculated or if used outside a chart context.
* @since 3.2
*/
var useXAxisDomain = function useXAxisDomain() {
var xAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisDomain(state, "xAxis", xAxisId, isPanorama));
};
/**
* Returns the calculated domain of a Y-axis.
*
* The domain can be numerical: `[min, max]`, or categorical: `['a', 'b', 'c']`.
*
* The type of the domain is defined by the `type` prop of the YAxis.
*
* The values of the domain are calculated based on the data and the `dataKey` of the axis.
*
* Does not interact with Brushes, as Y-axes do not support brushing.
*
* @param yAxisId The `yAxisId` of the Y-axis. Defaults to `0` if not provided.
* @returns The domain of the Y-axis, or `undefined` if it cannot be calculated or if used outside a chart context.
* @since 3.2
*/
var useYAxisDomain = function useYAxisDomain() {
var yAxisId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0;
var isPanorama = useIsPanorama();
return useAppSelector((state) => selectAxisDomain(state, "yAxis", yAxisId, isPanorama));
};
/**
* Returns true if the {@link Tooltip} is currently active (visible).
*
* Returns false if the Tooltip is not active or if used outside a chart context.
*
* Recharts only allows one Tooltip per chart, so this hook does not take any parameters.
* Weird things may happen if you have multiple Tooltip components in the same chart so please don't do that.
*
* @returns {boolean} True if the Tooltip is active, false otherwise.
* @since 3.7
*/
var useIsTooltipActive = () => {
var _useAppSelector;
return (_useAppSelector = useAppSelector(selectIsTooltipActive$1)) !== null && _useAppSelector !== void 0 ? _useAppSelector : false;
};
/**
* Returns the Cartesian `x` + `y` coordinates of the active {@link Tooltip}.
*
* Returns undefined if there is no active user interaction or if used outside a chart context.
*
* Recharts only allows one Tooltip per chart, so this hook does not take any parameters.
* Weird things may happen if you have multiple Tooltip components in the same chart so please don't do that.
*
* @returns {Coordinate | undefined} The coordinate of the active Tooltip, or undefined.
* @since 3.7
*/
var useActiveTooltipCoordinate = () => {
var coordinate = useAppSelector(selectActiveTooltipCoordinate);
if (coordinate == null) return;
return {
x: coordinate.x,
y: coordinate.y
};
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/component/ActivePoints.js
function ownKeys$33(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$33(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$33(Object(t), !0).forEach(function(r) {
_defineProperty$33(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$33(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$33(e, r, t) {
return (r = _toPropertyKey$33(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$33(t) {
var i = _toPrimitive$33(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$33(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var ActivePoint = (_ref) => {
var { point, childIndex, mainColor, activeDot, dataKey, clipPath } = _ref;
if (activeDot === false || point.x == null || point.y == null) return null;
var dotProps = _objectSpread$33(_objectSpread$33(_objectSpread$33({}, {
index: childIndex,
dataKey,
cx: point.x,
cy: point.y,
r: 4,
fill: mainColor !== null && mainColor !== void 0 ? mainColor : "none",
strokeWidth: 2,
stroke: "#fff",
payload: point.payload,
value: point.value
}), svgPropertiesNoEventsFromUnknown(activeDot)), adaptEventHandlers(activeDot));
var dot;
if (/* @__PURE__ */ (0, import_react.isValidElement)(activeDot)) dot = /* @__PURE__ */ (0, import_react.cloneElement)(activeDot, dotProps);
else if (typeof activeDot === "function") dot = activeDot(dotProps);
else dot = /* @__PURE__ */ import_react.createElement(Dot, dotProps);
return /* @__PURE__ */ import_react.createElement(Layer, {
className: "recharts-active-dot",
clipPath
}, dot);
};
function ActivePoints(_ref2) {
var { points, mainColor, activeDot, itemDataKey, clipPath, zIndex = DefaultZIndexes.activeDot } = _ref2;
var activeTooltipIndex = useAppSelector(selectActiveTooltipIndex);
var activeDataPoints = useActiveTooltipDataPoints();
if (points == null || activeDataPoints == null) return null;
var activePoint = points.find((p) => activeDataPoints.includes(p.payload));
if (isNullish(activePoint)) return null;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex }, /* @__PURE__ */ import_react.createElement(ActivePoint, {
point: activePoint,
childIndex: Number(activeTooltipIndex),
mainColor,
dataKey: itemDataKey,
activeDot,
clipPath
}));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/radarSelectors.js
function ownKeys$32(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$32(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$32(Object(t), !0).forEach(function(r) {
_defineProperty$32(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$32(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$32(e, r, t) {
return (r = _toPropertyKey$32(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$32(t) {
var i = _toPrimitive$32(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$32(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var selectRadiusAxisScale = (state, radiusAxisId) => selectPolarAxisScale(state, "radiusAxis", radiusAxisId);
var selectRadiusAxisForRadar = createSelector([selectRadiusAxisScale], (scale) => {
if (scale == null) return;
return { scale };
});
var selectRadiusAxisForBandSize = createSelector([selectRadiusAxis, selectRadiusAxisScale], (axisSettings, scale) => {
if (axisSettings == null || scale == null) return;
return _objectSpread$32(_objectSpread$32({}, axisSettings), {}, { scale });
});
var selectRadiusAxisTicks$1 = (state, radiusAxisId, _angleAxisId, isPanorama) => {
return selectPolarAxisTicks(state, "radiusAxis", radiusAxisId, isPanorama);
};
var selectAngleAxisForRadar = (state, _radiusAxisId, angleAxisId) => selectAngleAxis(state, angleAxisId);
var selectPolarAxisScaleForRadar = (state, _radiusAxisId, angleAxisId) => selectPolarAxisScale(state, "angleAxis", angleAxisId);
var selectAngleAxisForBandSize = createSelector([selectAngleAxisForRadar, selectPolarAxisScaleForRadar], (axisSettings, scale) => {
if (axisSettings == null || scale == null) return;
return _objectSpread$32(_objectSpread$32({}, axisSettings), {}, { scale });
});
var selectAngleAxisTicks$1 = (state, _radiusAxisId, angleAxisId, isPanorama) => {
return selectPolarAxisTicks(state, "angleAxis", angleAxisId, isPanorama);
};
var selectAngleAxisWithScaleAndViewport = createSelector([
selectAngleAxisForRadar,
selectPolarAxisScaleForRadar,
selectPolarViewBox
], (axisOptions, scale, polarViewBox) => {
if (polarViewBox == null || scale == null) return;
return {
scale,
type: axisOptions.type,
dataKey: axisOptions.dataKey,
cx: polarViewBox.cx,
cy: polarViewBox.cy
};
});
var pickId = (_state, _radiusAxisId, _angleAxisId, _isPanorama, radarId) => radarId;
var selectBandSizeOfAxis = createSelector([
selectChartLayout,
selectRadiusAxisForBandSize,
selectRadiusAxisTicks$1,
selectAngleAxisForBandSize,
selectAngleAxisTicks$1
], (layout, radiusAxis, radiusAxisTicks, angleAxis, angleAxisTicks) => {
if (isCategoricalAxis(layout, "radiusAxis")) return getBandSizeOfAxis(radiusAxis, radiusAxisTicks, false);
return getBandSizeOfAxis(angleAxis, angleAxisTicks, false);
});
var selectRadarPoints = createSelector([
selectRadiusAxisForRadar,
selectAngleAxisWithScaleAndViewport,
selectChartDataAndAlwaysIgnoreIndexes,
createSelector([selectUnfilteredPolarItems, pickId], (graphicalItems, radarId) => {
if (graphicalItems == null) return;
var pgis = graphicalItems.find((item) => item.type === "radar" && radarId === item.id);
return pgis === null || pgis === void 0 ? void 0 : pgis.dataKey;
}),
selectBandSizeOfAxis
], (radiusAxis, angleAxis, _ref, dataKey, bandSize) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref;
if (radiusAxis == null || angleAxis == null || chartData == null || bandSize == null || dataKey == null) return;
return computeRadarPoints({
radiusAxis,
angleAxis,
displayedData: chartData.slice(dataStartIndex, dataEndIndex + 1),
dataKey,
bandSize
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/Radar.js
var _excluded$20 = ["id"];
function _extends$29() {
return _extends$29 = 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$29.apply(null, arguments);
}
function ownKeys$31(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$31(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$31(Object(t), !0).forEach(function(r) {
_defineProperty$31(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$31(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$31(e, r, t) {
return (r = _toPropertyKey$31(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$31(t) {
var i = _toPrimitive$31(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$31(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$20(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$20(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$20(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function getLegendItemColor$1(stroke, fill) {
return stroke && stroke !== "none" ? stroke : fill;
}
var computeLegendPayloadFromRadarSectors = (props) => {
var { dataKey, name, stroke, fill, legendType, hide } = props;
return [{
inactive: hide,
dataKey,
type: legendType,
color: getLegendItemColor$1(stroke, fill),
value: getTooltipNameProp(name, dataKey),
payload: props
}];
};
var SetRadarTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, stroke, strokeWidth, fill, name, hide, tooltipType, id } = _ref;
var tooltipEntrySettings = {
dataDefinedOnItem: void 0,
getPosition: noop$2,
settings: {
stroke,
strokeWidth,
fill,
nameKey: void 0,
dataKey,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: getLegendItemColor$1(stroke, fill),
unit: "",
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
function RadarDotsWrapper(_ref2) {
var { points, props } = _ref2;
var { dot, dataKey } = props;
var { id } = props;
var baseProps = svgPropertiesNoEvents(_objectWithoutProperties$20(props, _excluded$20));
return /* @__PURE__ */ import_react.createElement(Dots, {
points,
dot,
className: "recharts-radar-dots",
dotClassName: "recharts-radar-dot",
dataKey,
baseProps
});
}
function computeRadarPoints(_ref3) {
var { radiusAxis, angleAxis, displayedData, dataKey, bandSize } = _ref3;
var { cx, cy } = angleAxis;
var isRange = false;
var points = [];
var angleBandSize = angleAxis.type !== "number" ? bandSize !== null && bandSize !== void 0 ? bandSize : 0 : 0;
displayedData.forEach((entry, i) => {
var _angleAxis$scale$map, _radiusAxis$scale$map;
var name = getValueByDataKey(entry, angleAxis.dataKey, i);
var value = getValueByDataKey(entry, dataKey);
var angle = ((_angleAxis$scale$map = angleAxis.scale.map(name)) !== null && _angleAxis$scale$map !== void 0 ? _angleAxis$scale$map : 0) + angleBandSize;
var pointValue = Array.isArray(value) ? (0, import_last.default)(value) : value;
var radius = isNullish(pointValue) ? 0 : (_radiusAxis$scale$map = radiusAxis.scale.map(pointValue)) !== null && _radiusAxis$scale$map !== void 0 ? _radiusAxis$scale$map : 0;
if (Array.isArray(value) && value.length >= 2) isRange = true;
points.push(_objectSpread$31(_objectSpread$31({}, polarToCartesian(cx, cy, radius, angle)), {}, {
name,
value,
cx,
cy,
radius,
angle,
payload: entry
}));
});
var baseLinePoints = [];
if (isRange) points.forEach((point) => {
if (Array.isArray(point.value)) {
var _radiusAxis$scale$map2;
var baseValue = point.value[0];
var radius = isNullish(baseValue) ? 0 : (_radiusAxis$scale$map2 = radiusAxis.scale.map(baseValue)) !== null && _radiusAxis$scale$map2 !== void 0 ? _radiusAxis$scale$map2 : 0;
baseLinePoints.push(_objectSpread$31(_objectSpread$31({}, point), {}, { radius }, polarToCartesian(cx, cy, radius, point.angle)));
} else baseLinePoints.push(point);
});
return {
points,
isRange,
baseLinePoints
};
}
function RadarLabelListProvider(_ref4) {
var { showLabels, points, children } = _ref4;
var labelListEntries = points.map((point) => {
var _point$value;
var viewBox = {
x: point.x,
y: point.y,
width: 0,
lowerWidth: 0,
upperWidth: 0,
height: 0
};
return _objectSpread$31(_objectSpread$31({}, viewBox), {}, {
value: (_point$value = point.value) !== null && _point$value !== void 0 ? _point$value : "",
payload: point.payload,
parentViewBox: void 0,
viewBox,
fill: void 0
});
});
return /* @__PURE__ */ import_react.createElement(CartesianLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function StaticPolygon(_ref5) {
var { points, baseLinePoints, props } = _ref5;
if (points == null) return null;
var { shape, isRange, connectNulls } = props;
var handleMouseEnter = (e) => {
var { onMouseEnter } = props;
if (onMouseEnter) onMouseEnter(props, e);
};
var handleMouseLeave = (e) => {
var { onMouseLeave } = props;
if (onMouseLeave) onMouseLeave(props, e);
};
var radar;
if (/* @__PURE__ */ import_react.isValidElement(shape)) radar = /* @__PURE__ */ import_react.cloneElement(shape, _objectSpread$31(_objectSpread$31({}, props), {}, { points }));
else if (typeof shape === "function") radar = shape(_objectSpread$31(_objectSpread$31({}, props), {}, { points }));
else radar = /* @__PURE__ */ import_react.createElement(Polygon, _extends$29({}, svgPropertiesAndEvents(props), {
onMouseEnter: handleMouseEnter,
onMouseLeave: handleMouseLeave,
points,
baseLinePoints: isRange ? baseLinePoints : void 0,
connectNulls
}));
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-radar-polygon" }, radar, /* @__PURE__ */ import_react.createElement(RadarDotsWrapper, {
props,
points
}));
}
var interpolatePolarPoint = (prevPoints, prevPointsDiffFactor, t) => (entry, index) => {
var prev = prevPoints && prevPoints[Math.floor(index * prevPointsDiffFactor)];
if (prev) return _objectSpread$31(_objectSpread$31({}, entry), {}, {
x: interpolate(prev.x, entry.x, t),
y: interpolate(prev.y, entry.y, t)
});
return _objectSpread$31(_objectSpread$31({}, entry), {}, {
x: interpolate(entry.cx, entry.x, t),
y: interpolate(entry.cy, entry.y, t)
});
};
function PolygonWithAnimation(_ref6) {
var { props, previousPointsRef, previousBaseLinePointsRef } = _ref6;
var { points, baseLinePoints, isAnimationActive, animationBegin, animationDuration, animationEasing, onAnimationEnd, onAnimationStart } = props;
var prevPoints = previousPointsRef.current;
var prevBaseLinePoints = previousBaseLinePointsRef.current;
var prevPointsDiffFactor = prevPoints ? prevPoints.length / points.length : 1;
var prevBaseLinePointsDiffFactor = prevBaseLinePoints ? prevBaseLinePoints.length / baseLinePoints.length : 1;
var animationId = useAnimationId(props, "recharts-radar-");
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var showLabels = !isAnimating;
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
return /* @__PURE__ */ import_react.createElement(RadarLabelListProvider, {
showLabels,
points
}, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
key: "radar-".concat(animationId),
onAnimationEnd: handleAnimationEnd,
onAnimationStart: handleAnimationStart
}, (t) => {
var stepData = t === 1 ? points : points.map(interpolatePolarPoint(prevPoints, prevPointsDiffFactor, t));
var stepBaseLinePoints = t === 1 ? baseLinePoints : baseLinePoints === null || baseLinePoints === void 0 ? void 0 : baseLinePoints.map(interpolatePolarPoint(prevBaseLinePoints, prevBaseLinePointsDiffFactor, t));
if (t > 0) {
previousPointsRef.current = stepData;
previousBaseLinePointsRef.current = stepBaseLinePoints;
}
return /* @__PURE__ */ import_react.createElement(StaticPolygon, {
points: stepData,
baseLinePoints: stepBaseLinePoints,
props
});
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: props.label }), props.children);
}
function RenderPolygon(props) {
var previousPointsRef = (0, import_react.useRef)(void 0);
var previousBaseLinePointsRef = (0, import_react.useRef)(void 0);
return /* @__PURE__ */ import_react.createElement(PolygonWithAnimation, {
props,
previousPointsRef,
previousBaseLinePointsRef
});
}
var defaultRadarProps = {
activeDot: true,
angleAxisId: 0,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease",
dot: false,
hide: false,
isAnimationActive: "auto",
label: false,
legendType: "rect",
radiusAxisId: 0,
zIndex: DefaultZIndexes.area
};
function RadarWithState(props) {
var { hide, className, points } = props;
if (hide) return null;
var layerClass = clsx("recharts-radar", className);
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: layerClass }, /* @__PURE__ */ import_react.createElement(RenderPolygon, props)), /* @__PURE__ */ import_react.createElement(ActivePoints, {
points,
mainColor: getLegendItemColor$1(props.stroke, props.fill),
itemDataKey: props.dataKey,
activeDot: props.activeDot
}));
}
function RadarImpl(props) {
var isPanorama = useIsPanorama();
var radarPoints = useAppSelector((state) => selectRadarPoints(state, props.radiusAxisId, props.angleAxisId, isPanorama, props.id));
if ((radarPoints === null || radarPoints === void 0 ? void 0 : radarPoints.points) == null) return null;
return /* @__PURE__ */ import_react.createElement(RadarWithState, _extends$29({}, props, {
points: radarPoints === null || radarPoints === void 0 ? void 0 : radarPoints.points,
baseLinePoints: radarPoints === null || radarPoints === void 0 ? void 0 : radarPoints.baseLinePoints,
isRange: radarPoints === null || radarPoints === void 0 ? void 0 : radarPoints.isRange
}));
}
/**
* @consumes PolarChartContext
* @provides LabelListContext
*/
function Radar(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultRadarProps);
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "radar"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetPolarGraphicalItem, {
type: "radar",
id,
data: void 0,
dataKey: props.dataKey,
hide: props.hide,
angleAxisId: props.angleAxisId,
radiusAxisId: props.radiusAxisId
}), /* @__PURE__ */ import_react.createElement(SetPolarLegendPayload, { legendPayload: computeLegendPayloadFromRadarSectors(props) }), /* @__PURE__ */ import_react.createElement(SetRadarTooltipEntrySettings, {
dataKey: props.dataKey,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
tooltipType: props.tooltipType,
id
}), /* @__PURE__ */ import_react.createElement(RadarImpl, _extends$29({}, props, { id }))));
}
Radar.displayName = "Radar";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/RadialBarUtils.js
function _extends$28() {
return _extends$28 = 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$28.apply(null, arguments);
}
function parseCornerRadius(cornerRadius) {
if (typeof cornerRadius === "string") return parseInt(cornerRadius, 10);
return cornerRadius;
}
function RadialBarSector(props) {
return /* @__PURE__ */ import_react.createElement(Shape, _extends$28({ shapeType: "sector" }, props));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineBarSizeList.js
var getBarSize = (globalSize, totalSize, selfSize) => {
var barSize = selfSize !== null && selfSize !== void 0 ? selfSize : globalSize;
if (isNullish(barSize)) return;
return getPercentValue(barSize, totalSize, 0);
};
var combineBarSizeList = (allBars, globalSize, totalSize) => {
var initialValue = {};
var stackedBars = allBars.filter(isStacked);
var unstackedBars = allBars.filter((b) => b.stackId == null);
var groupByStack = stackedBars.reduce((acc, bar) => {
var s = acc[bar.stackId];
if (s == null) s = [];
s.push(bar);
acc[bar.stackId] = s;
return acc;
}, initialValue);
var stackedSizeList = Object.entries(groupByStack).map((_ref) => {
var _bars$;
var [stackId, bars] = _ref;
return {
stackId,
dataKeys: bars.map((b) => b.dataKey),
barSize: getBarSize(globalSize, totalSize, (_bars$ = bars[0]) === null || _bars$ === void 0 ? void 0 : _bars$.barSize)
};
});
var unstackedSizeList = unstackedBars.map((b) => {
return {
stackId: void 0,
dataKeys: [b.dataKey].filter((dk) => dk != null),
barSize: getBarSize(globalSize, totalSize, b.barSize)
};
});
return [...stackedSizeList, ...unstackedSizeList];
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineAllBarPositions.js
function ownKeys$30(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$30(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$30(Object(t), !0).forEach(function(r) {
_defineProperty$30(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$30(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$30(e, r, t) {
return (r = _toPropertyKey$30(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$30(t) {
var i = _toPrimitive$30(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$30(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function getBarPositions(barGap, barCategoryGap, bandSize, sizeList, maxBarSize) {
var _sizeList$;
var len = sizeList.length;
if (len < 1) return;
var realBarGap = getPercentValue(barGap, bandSize, 0, true);
var result;
var initialValue = [];
if (isWellBehavedNumber((_sizeList$ = sizeList[0]) === null || _sizeList$ === void 0 ? void 0 : _sizeList$.barSize)) {
var useFull = false;
var fullBarSize = bandSize / len;
var sum = sizeList.reduce((res, entry) => res + (entry.barSize || 0), 0);
sum += (len - 1) * realBarGap;
if (sum >= bandSize) {
sum -= (len - 1) * realBarGap;
realBarGap = 0;
}
if (sum >= bandSize && fullBarSize > 0) {
useFull = true;
fullBarSize *= .9;
sum = len * fullBarSize;
}
var prev = {
offset: ((bandSize - sum) / 2 >> 0) - realBarGap,
size: 0
};
result = sizeList.reduce((res, entry) => {
var _entry$barSize;
var newPosition = {
stackId: entry.stackId,
dataKeys: entry.dataKeys,
position: {
offset: prev.offset + prev.size + realBarGap,
size: useFull ? fullBarSize : (_entry$barSize = entry.barSize) !== null && _entry$barSize !== void 0 ? _entry$barSize : 0
}
};
var newRes = [...res, newPosition];
prev = newPosition.position;
return newRes;
}, initialValue);
} else {
var _offset = getPercentValue(barCategoryGap, bandSize, 0, true);
if (bandSize - 2 * _offset - (len - 1) * realBarGap <= 0) realBarGap = 0;
var originalSize = (bandSize - 2 * _offset - (len - 1) * realBarGap) / len;
if (originalSize > 1) originalSize >>= 0;
var size = isWellBehavedNumber(maxBarSize) ? Math.min(originalSize, maxBarSize) : originalSize;
result = sizeList.reduce((res, entry, i) => [...res, {
stackId: entry.stackId,
dataKeys: entry.dataKeys,
position: {
offset: _offset + (originalSize + realBarGap) * i + (originalSize - size) / 2,
size
}
}], initialValue);
}
return result;
}
var combineAllBarPositions = (sizeList, globalMaxBarSize, barGap, barCategoryGap, barBandSize, bandSize, childMaxBarSize) => {
var maxBarSize = isNullish(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize;
var allBarPositions = getBarPositions(barGap, barCategoryGap, barBandSize !== bandSize ? barBandSize : bandSize, sizeList, maxBarSize);
if (barBandSize !== bandSize && allBarPositions != null) allBarPositions = allBarPositions.map((pos) => _objectSpread$30(_objectSpread$30({}, pos), {}, { position: _objectSpread$30(_objectSpread$30({}, pos.position), {}, { offset: pos.position.offset - barBandSize / 2 }) }));
return allBarPositions;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineStackedData.js
var combineStackedData = (stackGroups, barSettings) => {
var stackSeriesIdentifier = getStackSeriesIdentifier(barSettings);
if (!stackGroups || stackSeriesIdentifier == null || barSettings == null) return;
var { stackId } = barSettings;
if (stackId == null) return;
var stackGroup = stackGroups[stackId];
if (!stackGroup) return;
var { stackedData } = stackGroup;
if (!stackedData) return;
return stackedData.find((sd) => sd.key === stackSeriesIdentifier);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/combiners/combineBarPosition.js
var combineBarPosition = (allBarPositions, barSettings) => {
if (allBarPositions == null || barSettings == null) return;
var position = allBarPositions.find((p) => p.stackId === barSettings.stackId && barSettings.dataKey != null && p.dataKeys.includes(barSettings.dataKey));
if (position == null) return;
return position.position;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/radialBarSelectors.js
function ownKeys$29(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$29(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$29(Object(t), !0).forEach(function(r) {
_defineProperty$29(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$29(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$29(e, r, t) {
return (r = _toPropertyKey$29(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$29(t) {
var i = _toPrimitive$29(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$29(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var selectRadiusAxisForRadialBar = (state, radiusAxisId) => selectRadiusAxis(state, radiusAxisId);
var selectRadiusAxisScaleForRadar = (state, radiusAxisId) => selectPolarAxisScale(state, "radiusAxis", radiusAxisId);
var selectRadiusAxisWithScale = createSelector([selectRadiusAxisForRadialBar, selectRadiusAxisScaleForRadar], (axis, scale) => {
if (axis == null || scale == null) return;
return _objectSpread$29(_objectSpread$29({}, axis), {}, { scale });
});
var selectRadiusAxisTicks = (state, radiusAxisId) => {
return selectPolarGraphicalItemAxisTicks(state, "radiusAxis", radiusAxisId, false);
};
var selectAngleAxisForRadialBar = (state, _radiusAxisId, angleAxisId) => selectAngleAxis(state, angleAxisId);
var selectAngleAxisScaleForRadialBar = (state, _radiusAxisId, angleAxisId) => selectPolarAxisScale(state, "angleAxis", angleAxisId);
var selectAngleAxisWithScale = createSelector([selectAngleAxisForRadialBar, selectAngleAxisScaleForRadialBar], (axis, scale) => {
if (axis == null || scale == null) return;
return _objectSpread$29(_objectSpread$29({}, axis), {}, { scale });
});
var selectAngleAxisTicks = (state, _radiusAxisId, angleAxisId) => {
return selectPolarAxisTicks(state, "angleAxis", angleAxisId, false);
};
var pickRadialBarSettings = (_state, _radiusAxisId, _angleAxisId, radialBarSettings) => radialBarSettings;
var selectSynchronisedRadialBarSettings = createSelector([selectUnfilteredPolarItems, pickRadialBarSettings], (graphicalItems, radialBarSettingsFromProps) => {
if (graphicalItems.some((pgis) => pgis.type === "radialBar" && radialBarSettingsFromProps.dataKey === pgis.dataKey && radialBarSettingsFromProps.stackId === pgis.stackId)) return radialBarSettingsFromProps;
});
var selectBandSizeOfPolarAxis = createSelector([
selectChartLayout,
selectRadiusAxisWithScale,
selectRadiusAxisTicks,
selectAngleAxisWithScale,
selectAngleAxisTicks
], (layout, radiusAxis, radiusAxisTicks, angleAxis, angleAxisTicks) => {
if (isCategoricalAxis(layout, "radiusAxis")) return getBandSizeOfAxis(radiusAxis, radiusAxisTicks, false);
return getBandSizeOfAxis(angleAxis, angleAxisTicks, false);
});
var selectBaseValue = createSelector([
selectAngleAxisWithScale,
selectRadiusAxisWithScale,
selectChartLayout
], (angleAxis, radiusAxis, layout) => {
var numericAxis = layout === "radial" ? angleAxis : radiusAxis;
if (numericAxis == null || numericAxis.scale == null) return;
return getBaseValueOfBar({ numericAxis });
});
var pickCells$2 = (_state, _radiusAxisId, _angleAxisId, _radialBarSettings, cells) => cells;
var pickAngleAxisId = (_state, _radiusAxisId, angleAxisId, _radialBarSettings, _cells) => angleAxisId;
var pickRadiusAxisId = (_state, radiusAxisId, _angleAxisId, _radialBarSettings, _cells) => radiusAxisId;
var pickMaxBarSize = (_state, _radiusAxisId, _angleAxisId, radialBarSettings, _cells) => radialBarSettings.maxBarSize;
var isRadialBar = (item) => item.type === "radialBar";
var selectAllVisibleRadialBars = createSelector([
selectChartLayout,
selectUnfilteredPolarItems,
pickAngleAxisId,
pickRadiusAxisId
], (layout, allItems, angleAxisId, radiusAxisId) => {
return allItems.filter((i) => {
if (layout === "centric") return i.angleAxisId === angleAxisId;
return i.radiusAxisId === radiusAxisId;
}).filter((i) => i.hide === false).filter(isRadialBar);
});
/**
* The generator never returned the totalSize which means that barSize in polar chart can not support percent values.
* We can add that if we want to I suppose.
* @returns undefined - but it should be a total size of numerical axis in polar chart
*/
var selectPolarBarAxisSize = () => void 0;
var selectPolarBarPosition = createSelector([createSelector([
createSelector([
selectAllVisibleRadialBars,
selectRootBarSize,
selectPolarBarAxisSize
], combineBarSizeList),
selectRootMaxBarSize,
selectBarGap,
selectBarCategoryGap,
createSelector([
selectChartLayout,
selectRootMaxBarSize,
selectAngleAxisWithScale,
selectAngleAxisTicks,
selectRadiusAxisWithScale,
selectRadiusAxisTicks,
pickMaxBarSize
], (layout, globalMaxBarSize, angleAxis, angleAxisTicks, radiusAxis, radiusAxisTicks, childMaxBarSize) => {
var _ref2, _getBandSizeOfAxis2;
var maxBarSize = isNullish(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize;
if (layout === "centric") {
var _ref, _getBandSizeOfAxis;
return (_ref = (_getBandSizeOfAxis = getBandSizeOfAxis(angleAxis, angleAxisTicks, true)) !== null && _getBandSizeOfAxis !== void 0 ? _getBandSizeOfAxis : maxBarSize) !== null && _ref !== void 0 ? _ref : 0;
}
return (_ref2 = (_getBandSizeOfAxis2 = getBandSizeOfAxis(radiusAxis, radiusAxisTicks, true)) !== null && _getBandSizeOfAxis2 !== void 0 ? _getBandSizeOfAxis2 : maxBarSize) !== null && _ref2 !== void 0 ? _ref2 : 0;
}),
selectBandSizeOfPolarAxis,
pickMaxBarSize
], combineAllBarPositions), selectSynchronisedRadialBarSettings], combineBarPosition);
var selectStackedRadialBars = createSelector([selectPolarItemsSettings], (allPolarItems) => allPolarItems.filter(isRadialBar).filter(isStacked));
var selectStackGroups = createSelector([
createSelector([
selectStackedRadialBars,
selectChartDataAndAlwaysIgnoreIndexes,
selectTooltipAxis
], combineDisplayedStackedData),
selectStackedRadialBars,
selectStackOffsetType,
selectReverseStackOrder
], combineStackGroups);
var selectRadialBarStackGroups = (state, radiusAxisId, angleAxisId) => {
if (selectChartLayout(state) === "centric") return selectStackGroups(state, "radiusAxis", radiusAxisId);
return selectStackGroups(state, "angleAxis", angleAxisId);
};
var selectRadialBarSectors = createSelector([
selectAngleAxisWithScale,
selectAngleAxisTicks,
selectRadiusAxisWithScale,
selectRadiusAxisTicks,
selectChartDataWithIndexes,
selectSynchronisedRadialBarSettings,
selectBandSizeOfPolarAxis,
selectChartLayout,
selectBaseValue,
selectPolarViewBox,
pickCells$2,
selectPolarBarPosition,
createSelector([selectRadialBarStackGroups, selectSynchronisedRadialBarSettings], combineStackedData)
], (angleAxis, angleAxisTicks, radiusAxis, radiusAxisTicks, _ref3, radialBarSettings, bandSize, layout, baseValue, polarViewBox, cells, pos, stackedData) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref3;
if (radialBarSettings == null || radiusAxis == null || angleAxis == null || chartData == null || bandSize == null || pos == null || layout !== "centric" && layout !== "radial" || radiusAxisTicks == null || polarViewBox == null) return [];
var { dataKey, minPointSize } = radialBarSettings;
var { cx, cy, startAngle, endAngle } = polarViewBox;
return computeRadialBarDataItems({
angleAxis,
angleAxisTicks,
bandSize,
baseValue,
cells,
cx,
cy,
dataKey,
dataStartIndex,
displayedData: chartData.slice(dataStartIndex, dataEndIndex + 1),
endAngle,
layout,
minPointSize,
pos,
radiusAxis,
radiusAxisTicks,
stackedData,
stackedDomain: stackedData ? (layout === "centric" ? radiusAxis : angleAxis).scale.domain() : null,
startAngle
});
});
var selectRadialBarLegendPayload = createSelector([selectChartDataAndAlwaysIgnoreIndexes, (_s, l) => l], (_ref4, legendType) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref4;
if (chartData == null) return [];
var displayedData = chartData.slice(dataStartIndex, dataEndIndex + 1);
if (displayedData.length === 0) return [];
return displayedData.map((entry) => {
return {
type: legendType,
value: entry.name,
color: entry.fill,
payload: entry
};
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/zIndex/getZIndexFromUnknown.js
function getZIndexFromUnknown(input, defaultZIndex) {
if (input && typeof input === "object" && "zIndex" in input && typeof input.zIndex === "number" && isWellBehavedNumber(input.zIndex)) return input.zIndex;
return defaultZIndex;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/polar/RadialBar.js
var _excluded$19 = [
"shape",
"activeShape",
"cornerRadius",
"id"
], _excluded2$10 = [
"onMouseEnter",
"onClick",
"onMouseLeave"
], _excluded3$7 = ["value", "background"];
function _extends$27() {
return _extends$27 = 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$27.apply(null, arguments);
}
function ownKeys$28(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$28(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$28(Object(t), !0).forEach(function(r) {
_defineProperty$28(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$28(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$28(e, r, t) {
return (r = _toPropertyKey$28(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$28(t) {
var i = _toPrimitive$28(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$28(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$19(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$19(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$19(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var STABLE_EMPTY_ARRAY = [];
function RadialBarLabelListProvider(_ref) {
var { showLabels, sectors, children } = _ref;
var labelListEntries = sectors.map((sector) => ({
value: sector.value,
payload: sector.payload,
parentViewBox: void 0,
clockWise: false,
viewBox: {
cx: sector.cx,
cy: sector.cy,
innerRadius: sector.innerRadius,
outerRadius: sector.outerRadius,
startAngle: sector.startAngle,
endAngle: sector.endAngle,
clockWise: false
},
fill: sector.fill
}));
return /* @__PURE__ */ import_react.createElement(PolarLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function RadialBarSectors(_ref2) {
var { sectors, allOtherRadialBarProps, showLabels } = _ref2;
var { shape, activeShape, cornerRadius, id } = allOtherRadialBarProps, others = _objectWithoutProperties$19(allOtherRadialBarProps, _excluded$19);
var baseProps = svgPropertiesNoEvents(others);
var activeIndex = useAppSelector(selectActiveTooltipIndex);
var { onMouseEnter: onMouseEnterFromProps, onClick: onItemClickFromProps, onMouseLeave: onMouseLeaveFromProps } = allOtherRadialBarProps, restOfAllOtherProps = _objectWithoutProperties$19(allOtherRadialBarProps, _excluded2$10);
var onMouseEnterFromContext = useMouseEnterItemDispatch(onMouseEnterFromProps, allOtherRadialBarProps.dataKey, id);
var onMouseLeaveFromContext = useMouseLeaveItemDispatch(onMouseLeaveFromProps);
var onClickFromContext = useMouseClickItemDispatch(onItemClickFromProps, allOtherRadialBarProps.dataKey, id);
if (sectors == null) return null;
return /* @__PURE__ */ import_react.createElement(RadialBarLabelListProvider, {
showLabels,
sectors
}, sectors.map((entry, i) => {
var isActive = Boolean(activeShape && activeIndex === String(i));
var onMouseEnter = onMouseEnterFromContext(entry, i);
var onMouseLeave = onMouseLeaveFromContext(entry, i);
var onClick = onClickFromContext(entry, i);
var radialBarSectorProps = _objectSpread$28(_objectSpread$28(_objectSpread$28(_objectSpread$28({}, baseProps), {}, { cornerRadius: parseCornerRadius(cornerRadius) }, entry), adaptEventsOfChild(restOfAllOtherProps, entry, i)), {}, {
onMouseEnter,
onMouseLeave,
onClick,
className: "recharts-radial-bar-sector ".concat(entry.className),
forceCornerRadius: others.forceCornerRadius,
cornerIsExternal: others.cornerIsExternal,
isActive,
option: isActive ? activeShape : shape,
index: i
});
if (isActive) return /* @__PURE__ */ import_react.createElement(ZIndexLayer, {
zIndex: DefaultZIndexes.activeBar,
key: "sector-".concat(entry.cx, "-").concat(entry.cy, "-").concat(entry.innerRadius, "-").concat(entry.outerRadius, "-").concat(entry.startAngle, "-").concat(entry.endAngle, "-").concat(i)
}, /* @__PURE__ */ import_react.createElement(RadialBarSector, radialBarSectorProps));
return /* @__PURE__ */ import_react.createElement(RadialBarSector, _extends$27({ key: "sector-".concat(entry.cx, "-").concat(entry.cy, "-").concat(entry.innerRadius, "-").concat(entry.outerRadius, "-").concat(entry.startAngle, "-").concat(entry.endAngle, "-").concat(i) }, radialBarSectorProps));
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: allOtherRadialBarProps.label }), allOtherRadialBarProps.children);
}
function SectorsWithAnimation(_ref3) {
var { props, previousSectorsRef } = _ref3;
var { sectors, isAnimationActive, animationBegin, animationDuration, animationEasing, onAnimationEnd, onAnimationStart } = props;
var animationId = useAnimationId(props, "recharts-radialbar-");
var prevData = previousSectorsRef.current;
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
return /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationStart: handleAnimationStart,
onAnimationEnd: handleAnimationEnd,
key: animationId
}, (t) => {
var stepData = t === 1 ? sectors : (sectors !== null && sectors !== void 0 ? sectors : STABLE_EMPTY_ARRAY).map((entry, index) => {
var prev = prevData && prevData[index];
if (prev) return _objectSpread$28(_objectSpread$28({}, entry), {}, {
startAngle: interpolate(prev.startAngle, entry.startAngle, t),
endAngle: interpolate(prev.endAngle, entry.endAngle, t)
});
var { endAngle, startAngle } = entry;
return _objectSpread$28(_objectSpread$28({}, entry), {}, { endAngle: interpolate(startAngle, endAngle, t) });
});
if (t > 0) previousSectorsRef.current = stepData !== null && stepData !== void 0 ? stepData : null;
return /* @__PURE__ */ import_react.createElement(RadialBarSectors, {
sectors: stepData !== null && stepData !== void 0 ? stepData : STABLE_EMPTY_ARRAY,
allOtherRadialBarProps: props,
showLabels: !isAnimating
});
});
}
function RenderSectors(props) {
var previousSectorsRef = (0, import_react.useRef)(null);
return /* @__PURE__ */ import_react.createElement(SectorsWithAnimation, {
props,
previousSectorsRef
});
}
function SetRadialBarPayloadLegend(props) {
var legendPayload = useAppSelector((state) => selectRadialBarLegendPayload(state, props.legendType));
return /* @__PURE__ */ import_react.createElement(SetPolarLegendPayload, { legendPayload: legendPayload !== null && legendPayload !== void 0 ? legendPayload : [] });
}
var SetRadialBarTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref4) => {
var { dataKey, sectors, stroke, strokeWidth, name, hide, fill, tooltipType, id } = _ref4;
var tooltipEntrySettings = {
dataDefinedOnItem: sectors,
getPosition: noop$2,
settings: {
graphicalItemId: id,
stroke,
strokeWidth,
fill,
nameKey: void 0,
dataKey,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: fill,
unit: ""
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
var RadialBarWithState = class extends import_react.PureComponent {
renderBackground(sectors) {
if (sectors == null) return null;
var { cornerRadius } = this.props;
var backgroundProps = svgPropertiesNoEventsFromUnknown(this.props.background);
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: getZIndexFromUnknown(this.props.background, DefaultZIndexes.barBackground) }, sectors.map((entry, i) => {
var { value, background } = entry, rest = _objectWithoutProperties$19(entry, _excluded3$7);
if (!background) return null;
var props = _objectSpread$28(_objectSpread$28(_objectSpread$28(_objectSpread$28(_objectSpread$28({ cornerRadius: parseCornerRadius(cornerRadius) }, rest), {}, { fill: "#eee" }, background), backgroundProps), adaptEventsOfChild(this.props, entry, i)), {}, {
index: i,
className: clsx("recharts-radial-bar-background-sector", String(backgroundProps === null || backgroundProps === void 0 ? void 0 : backgroundProps.className)),
option: background,
isActive: false
});
return /* @__PURE__ */ import_react.createElement(RadialBarSector, _extends$27({ key: "background-".concat(rest.cx, "-").concat(rest.cy, "-").concat(rest.innerRadius, "-").concat(rest.outerRadius, "-").concat(rest.startAngle, "-").concat(rest.endAngle, "-").concat(i) }, props));
}));
}
render() {
var { hide, sectors, className, background } = this.props;
if (hide) return null;
var layerClass = clsx("recharts-area", className);
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: this.props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: layerClass }, background && /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-radial-bar-background" }, this.renderBackground(sectors)), /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-radial-bar-sectors" }, /* @__PURE__ */ import_react.createElement(RenderSectors, this.props))));
}
};
function RadialBarImpl(props) {
var _useAppSelector;
var cells = import_react.useMemo(() => findAllByType(props.children, Cell), [props.children]);
var radialBarSettings = import_react.useMemo(() => ({
data: void 0,
hide: false,
id: props.id,
dataKey: props.dataKey,
minPointSize: props.minPointSize,
stackId: getNormalizedStackId(props.stackId),
maxBarSize: props.maxBarSize,
barSize: props.barSize,
type: "radialBar",
angleAxisId: props.angleAxisId,
radiusAxisId: props.radiusAxisId
}), [
props.id,
props.dataKey,
props.minPointSize,
props.stackId,
props.maxBarSize,
props.barSize,
props.angleAxisId,
props.radiusAxisId
]);
var sectors = (_useAppSelector = useAppSelector((state) => selectRadialBarSectors(state, props.radiusAxisId, props.angleAxisId, radialBarSettings, cells))) !== null && _useAppSelector !== void 0 ? _useAppSelector : STABLE_EMPTY_ARRAY;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetRadialBarTooltipEntrySettings, {
dataKey: props.dataKey,
sectors,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
name: props.name,
hide: props.hide,
fill: props.fill,
tooltipType: props.tooltipType,
id: props.id
}), /* @__PURE__ */ import_react.createElement(RadialBarWithState, _extends$27({}, props, { sectors })));
}
var defaultRadialBarProps = {
angleAxisId: 0,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease",
background: false,
cornerIsExternal: false,
cornerRadius: 0,
forceCornerRadius: false,
hide: false,
isAnimationActive: "auto",
label: false,
legendType: "rect",
minPointSize: 0,
radiusAxisId: 0,
zIndex: DefaultZIndexes.bar
};
function computeRadialBarDataItems(_ref5) {
var { displayedData, stackedData, dataStartIndex, stackedDomain, dataKey, baseValue, layout, radiusAxis, radiusAxisTicks, bandSize, pos, angleAxis, minPointSize, cx, cy, angleAxisTicks, cells, startAngle: rootStartAngle, endAngle: rootEndAngle } = _ref5;
if (angleAxisTicks == null || radiusAxisTicks == null) return STABLE_EMPTY_ARRAY;
return (displayedData !== null && displayedData !== void 0 ? displayedData : []).map((entry, index) => {
var value, innerRadius, outerRadius, startAngle, endAngle, backgroundSector;
if (stackedData) value = truncateByDomain(stackedData[dataStartIndex + index], stackedDomain);
else {
value = getValueByDataKey(entry, dataKey);
if (!Array.isArray(value)) value = [baseValue, value];
}
if (layout === "radial") {
var _angleAxis$scale$map, _angleAxis$scale$map2;
startAngle = (_angleAxis$scale$map = angleAxis.scale.map(value[0])) !== null && _angleAxis$scale$map !== void 0 ? _angleAxis$scale$map : rootStartAngle;
endAngle = (_angleAxis$scale$map2 = angleAxis.scale.map(value[1])) !== null && _angleAxis$scale$map2 !== void 0 ? _angleAxis$scale$map2 : rootEndAngle;
innerRadius = getCateCoordinateOfBar({
axis: radiusAxis,
ticks: radiusAxisTicks,
bandSize,
offset: pos.offset,
entry,
index
});
if (innerRadius != null && endAngle != null && startAngle != null) {
outerRadius = innerRadius + pos.size;
var deltaAngle = endAngle - startAngle;
if (Math.abs(minPointSize) > 0 && Math.abs(deltaAngle) < Math.abs(minPointSize)) {
var delta = mathSign(deltaAngle || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaAngle));
endAngle += delta;
}
backgroundSector = { background: {
cx,
cy,
innerRadius,
outerRadius,
startAngle: rootStartAngle,
endAngle: rootEndAngle
} };
}
} else {
innerRadius = radiusAxis.scale.map(value[0]);
outerRadius = radiusAxis.scale.map(value[1]);
startAngle = getCateCoordinateOfBar({
axis: angleAxis,
ticks: angleAxisTicks,
bandSize,
offset: pos.offset,
entry,
index
});
if (innerRadius != null && outerRadius != null && startAngle != null) {
endAngle = startAngle + pos.size;
var deltaRadius = outerRadius - innerRadius;
if (Math.abs(minPointSize) > 0 && Math.abs(deltaRadius) < Math.abs(minPointSize)) {
var _delta = mathSign(deltaRadius || minPointSize) * (Math.abs(minPointSize) - Math.abs(deltaRadius));
outerRadius += _delta;
}
}
}
return _objectSpread$28(_objectSpread$28(_objectSpread$28({}, entry), backgroundSector), {}, {
payload: entry,
value: stackedData ? value : value[1],
cx,
cy,
innerRadius,
outerRadius,
startAngle,
endAngle
}, cells && cells[index] && cells[index].props);
});
}
/**
* @consumes PolarChartContext
* @provides LabelListContext
* @provides CellReader
*/
function RadialBar(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultRadialBarProps);
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "radialBar"
}, (id) => {
var _props$hide, _props$angleAxisId, _props$radiusAxisId;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetPolarGraphicalItem, {
type: "radialBar",
id,
data: void 0,
dataKey: props.dataKey,
hide: (_props$hide = props.hide) !== null && _props$hide !== void 0 ? _props$hide : defaultRadialBarProps.hide,
angleAxisId: (_props$angleAxisId = props.angleAxisId) !== null && _props$angleAxisId !== void 0 ? _props$angleAxisId : defaultRadialBarProps.angleAxisId,
radiusAxisId: (_props$radiusAxisId = props.radiusAxisId) !== null && _props$radiusAxisId !== void 0 ? _props$radiusAxisId : defaultRadialBarProps.radiusAxisId,
stackId: getNormalizedStackId(props.stackId),
barSize: props.barSize,
minPointSize: props.minPointSize,
maxBarSize: props.maxBarSize
}), /* @__PURE__ */ import_react.createElement(SetRadialBarPayloadLegend, props), /* @__PURE__ */ import_react.createElement(RadialBarImpl, _extends$27({}, props, { id })));
});
}
RadialBar.displayName = "RadialBar";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/CssPrefixUtils.js
function ownKeys$27(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$27(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$27(Object(t), !0).forEach(function(r) {
_defineProperty$27(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$27(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$27(e, r, t) {
return (r = _toPropertyKey$27(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$27(t) {
var i = _toPrimitive$27(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$27(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
var PREFIX_LIST = [
"Webkit",
"Moz",
"O",
"ms"
];
var generatePrefixStyle = (name, value) => {
if (!name) return;
var camelName = name.replace(/(\w)/, (v) => v.toUpperCase());
var result = PREFIX_LIST.reduce((res, entry) => _objectSpread$27(_objectSpread$27({}, res), {}, { [entry + camelName]: value }), {});
result[name] = value;
return result;
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/chartDataContext.js
var ChartDataContextProvider = (props) => {
var { chartData } = props;
var dispatch = useAppDispatch();
var isPanorama = useIsPanorama();
(0, import_react.useEffect)(() => {
if (isPanorama) return () => {};
dispatch(setChartData(chartData));
return () => {
dispatch(setChartData(void 0));
};
}, [
chartData,
dispatch,
isPanorama
]);
return null;
};
var SetComputedData = (props) => {
var { computedData } = props;
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(setComputedData(computedData));
return () => {
dispatch(setChartData(void 0));
};
}, [computedData, dispatch]);
return null;
};
var selectChartData = (state) => state.chartData.chartData;
/**
* "data" is the data of the chart - it has no type because this part of recharts is very flexible.
* Basically it's an array of "something" and then there's the dataKey property in various places
* that's meant to pull other things away from the data.
*
* Some charts have `data` defined on the chart root, and they will return the array through this hook.
* For example: .
*
* Other charts, such as Pie, have data defined on individual graphical elements.
* These charts will return `undefined` through this hook, and you need to read the data from children.
* For example:
*
* Some charts also allow setting both - data on the parent, and data on the children at the same time!
* However, this particular selector will only return the ones defined on the parent.
*
* @deprecated use one of the other selectors instead - which one, depends on how do you identify the applicable graphical items.
*
* @return data array for some charts and undefined for other
*/
var useChartData = () => useAppSelector(selectChartData);
var selectDataIndex = (state) => {
var { dataStartIndex, dataEndIndex } = state.chartData;
return {
startIndex: dataStartIndex,
endIndex: dataEndIndex
};
};
/**
* startIndex and endIndex are data boundaries, set through Brush.
*
* @return object with startIndex and endIndex
*/
var useDataIndex = () => {
return useAppSelector(selectDataIndex);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/brushUpdateContext.js
var BrushUpdateDispatchContext = /* @__PURE__ */ (0, import_react.createContext)(() => {});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/brushSlice.js
/**
* From all Brush properties, only height has a default value and will always be defined.
* Other properties are nullable and will be computed from offsets and margins if they are not set.
*/
var initialState$3 = {
x: 0,
y: 0,
width: 0,
height: 0,
padding: {
top: 0,
right: 0,
bottom: 0,
left: 0
}
};
var brushSlice = createSlice({
name: "brush",
initialState: initialState$3,
reducers: { setBrushSettings(_state, action) {
if (action.payload == null) return initialState$3;
return action.payload;
} }
});
var { setBrushSettings } = brushSlice.actions;
var brushReducer = brushSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/Brush.js
function _extends$26() {
return _extends$26 = 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$26.apply(null, arguments);
}
function ownKeys$26(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$26(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$26(Object(t), !0).forEach(function(r) {
_defineProperty$26(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$26(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$26(e, r, t) {
return (r = _toPropertyKey$26(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$26(t) {
var i = _toPrimitive$26(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$26(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function DefaultTraveller(props) {
var { x, y, width, height, stroke } = props;
var lineY = Math.floor(y + height / 2) - 1;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement("rect", {
x,
y,
width,
height,
fill: stroke,
stroke: "none"
}), /* @__PURE__ */ import_react.createElement("line", {
x1: x + 1,
y1: lineY,
x2: x + width - 1,
y2: lineY,
fill: "none",
stroke: "#fff"
}), /* @__PURE__ */ import_react.createElement("line", {
x1: x + 1,
y1: lineY + 2,
x2: x + width - 1,
y2: lineY + 2,
fill: "none",
stroke: "#fff"
}));
}
function Traveller(props) {
var { travellerProps, travellerType } = props;
if (/* @__PURE__ */ import_react.isValidElement(travellerType)) return /* @__PURE__ */ import_react.cloneElement(travellerType, travellerProps);
if (typeof travellerType === "function") return travellerType(travellerProps);
return /* @__PURE__ */ import_react.createElement(DefaultTraveller, travellerProps);
}
function getNameFromUnknown(value) {
if (isNotNil(value) && typeof value === "object" && "name" in value && typeof value.name === "string") return value.name;
}
function getAriaLabel(data, startIndex, endIndex) {
var start = getNameFromUnknown(data[startIndex]);
var end = getNameFromUnknown(data[endIndex]);
return "Min value: ".concat(start, ", Max value: ").concat(end);
}
function TravellerLayer(_ref) {
var { otherProps, travellerX, id, onMouseEnter, onMouseLeave, onMouseDown, onTouchStart, onTravellerMoveKeyboard, onFocus, onBlur } = _ref;
var { y, x: xFromProps, travellerWidth, height, traveller, ariaLabel, data, startIndex, endIndex } = otherProps;
var x = Math.max(travellerX, xFromProps);
var travellerProps = _objectSpread$26(_objectSpread$26({}, svgPropertiesNoEvents(otherProps)), {}, {
x,
y,
width: travellerWidth,
height
});
var ariaLabelBrush = ariaLabel || getAriaLabel(data, startIndex, endIndex);
return /* @__PURE__ */ import_react.createElement(Layer, {
tabIndex: 0,
role: "slider",
"aria-label": ariaLabelBrush,
"aria-valuenow": travellerX,
className: "recharts-brush-traveller",
onMouseEnter,
onMouseLeave,
onMouseDown,
onTouchStart,
onKeyDown: (e) => {
if (!["ArrowLeft", "ArrowRight"].includes(e.key)) return;
e.preventDefault();
e.stopPropagation();
onTravellerMoveKeyboard(e.key === "ArrowRight" ? 1 : -1, id);
},
onFocus,
onBlur,
style: { cursor: "col-resize" }
}, /* @__PURE__ */ import_react.createElement(Traveller, {
travellerType: traveller,
travellerProps
}));
}
function getTextOfTick(props) {
var { index, data, tickFormatter, dataKey } = props;
var text = getValueByDataKey(data[index], dataKey, index);
return typeof tickFormatter === "function" ? tickFormatter(text, index) : text;
}
function getIndexInRange(valueRange, x) {
var len = valueRange.length;
var start = 0;
var end = len - 1;
while (end - start > 1) {
var middle = Math.floor((start + end) / 2);
var middleValue = valueRange[middle];
if (middleValue != null && middleValue > x) end = middle;
else start = middle;
}
var endValue = valueRange[end];
return endValue != null && x >= endValue ? end : start;
}
function getIndex(_ref2) {
var { startX, endX, scaleValues, gap, data } = _ref2;
var lastIndex = data.length - 1;
var min = Math.min(startX, endX);
var max = Math.max(startX, endX);
var minIndex = getIndexInRange(scaleValues, min);
var maxIndex = getIndexInRange(scaleValues, max);
return {
startIndex: minIndex - minIndex % gap,
endIndex: maxIndex === lastIndex ? lastIndex : maxIndex - maxIndex % gap
};
}
function Background$1(_ref3) {
var { x, y, width, height, fill, stroke } = _ref3;
return /* @__PURE__ */ import_react.createElement("rect", {
stroke,
fill,
x,
y,
width,
height
});
}
function BrushText(_ref4) {
var { startIndex, endIndex, y, height, travellerWidth, stroke, tickFormatter, dataKey, data, startX, endX } = _ref4;
var offset = 5;
var attrs = {
pointerEvents: "none",
fill: stroke
};
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-brush-texts" }, /* @__PURE__ */ import_react.createElement(Text, _extends$26({
textAnchor: "end",
verticalAnchor: "middle",
x: Math.min(startX, endX) - offset,
y: y + height / 2
}, attrs), getTextOfTick({
index: startIndex,
tickFormatter,
dataKey,
data
})), /* @__PURE__ */ import_react.createElement(Text, _extends$26({
textAnchor: "start",
verticalAnchor: "middle",
x: Math.max(startX, endX) + travellerWidth + offset,
y: y + height / 2
}, attrs), getTextOfTick({
index: endIndex,
tickFormatter,
dataKey,
data
})));
}
function Slide(_ref5) {
var { y, height, stroke, travellerWidth, startX, endX, onMouseEnter, onMouseLeave, onMouseDown, onTouchStart } = _ref5;
var x = Math.min(startX, endX) + travellerWidth;
var width = Math.max(Math.abs(endX - startX) - travellerWidth, 0);
return /* @__PURE__ */ import_react.createElement("rect", {
className: "recharts-brush-slide",
onMouseEnter,
onMouseLeave,
onMouseDown,
onTouchStart,
style: { cursor: "move" },
stroke: "none",
fill: stroke,
fillOpacity: .2,
x,
y,
width,
height
});
}
function Panorama(_ref6) {
var { x, y, width, height, data, children, padding } = _ref6;
if (!(import_react.Children.count(children) === 1)) return null;
var chartElement = import_react.Children.only(children);
if (!chartElement) return null;
return /* @__PURE__ */ import_react.cloneElement(chartElement, {
x,
y,
width,
height,
margin: padding,
compact: true,
data
});
}
var createScale = (_ref7) => {
var { data, startIndex, endIndex, x, width, travellerWidth } = _ref7;
if (!data || !data.length) return {};
var len = data.length;
var scale = point().domain((0, import_range.default)(0, len)).range([x, x + width - travellerWidth]);
var scaleValues = scale.domain().map((entry) => scale(entry)).filter(isNotNil);
return {
isTextActive: false,
isSlideMoving: false,
isTravellerMoving: false,
isTravellerFocused: false,
startX: scale(startIndex),
endX: scale(endIndex),
scale,
scaleValues
};
};
var isTouch = (e) => e.changedTouches && !!e.changedTouches.length;
var BrushWithState = class extends import_react.PureComponent {
constructor(props) {
super(props);
_defineProperty$26(this, "handleDrag", (e) => {
if (this.leaveTimer) {
clearTimeout(this.leaveTimer);
this.leaveTimer = null;
}
if (this.state.isTravellerMoving) this.handleTravellerMove(e);
else if (this.state.isSlideMoving) this.handleSlideDrag(e);
});
_defineProperty$26(this, "handleTouchMove", (e) => {
var _e$changedTouches;
var touch = (_e$changedTouches = e.changedTouches) === null || _e$changedTouches === void 0 ? void 0 : _e$changedTouches[0];
if (touch != null) this.handleDrag(touch);
});
_defineProperty$26(this, "handleDragEnd", () => {
this.setState({
isTravellerMoving: false,
isSlideMoving: false
}, () => {
var { endIndex, onDragEnd, startIndex } = this.props;
onDragEnd === null || onDragEnd === void 0 || onDragEnd({
endIndex,
startIndex
});
});
this.detachDragEndListener();
});
_defineProperty$26(this, "handleLeaveWrapper", () => {
if (this.state.isTravellerMoving || this.state.isSlideMoving) this.leaveTimer = window.setTimeout(this.handleDragEnd, this.props.leaveTimeOut);
});
_defineProperty$26(this, "handleEnterSlideOrTraveller", () => {
this.setState({ isTextActive: true });
});
_defineProperty$26(this, "handleLeaveSlideOrTraveller", () => {
this.setState({ isTextActive: false });
});
_defineProperty$26(this, "handleSlideDragStart", (e) => {
var event = isTouch(e) ? e.changedTouches[0] : e;
if (event == null) return;
this.setState({
isTravellerMoving: false,
isSlideMoving: true,
slideMoveStartX: event.pageX
});
this.attachDragEndListener();
});
_defineProperty$26(this, "handleTravellerMoveKeyboard", (direction, id) => {
var { data, gap, startIndex, endIndex } = this.props;
var { scaleValues, startX, endX } = this.state;
if (scaleValues == null) return;
var currentIndex = -1;
if (id === "startX") currentIndex = startIndex;
else if (id === "endX") currentIndex = endIndex;
if (currentIndex < 0 || currentIndex >= data.length) return;
var newIndex = currentIndex + direction;
if (newIndex === -1 || newIndex >= scaleValues.length) return;
var newScaleValue = scaleValues[newIndex];
if (newScaleValue == null) return;
if (id === "startX" && newScaleValue >= endX || id === "endX" && newScaleValue <= startX) return;
this.setState({ [id]: newScaleValue }, () => {
this.props.onChange(getIndex({
startX: this.state.startX,
endX: this.state.endX,
data,
gap,
scaleValues
}));
});
});
this.travellerDragStartHandlers = {
startX: this.handleTravellerDragStart.bind(this, "startX"),
endX: this.handleTravellerDragStart.bind(this, "endX")
};
this.state = {
brushMoveStartX: 0,
movingTravellerId: void 0,
endX: 0,
startX: 0,
slideMoveStartX: 0
};
}
static getDerivedStateFromProps(nextProps, prevState) {
var { data, width, x, travellerWidth, startIndex, endIndex, startIndexControlledFromProps, endIndexControlledFromProps } = nextProps;
if (data !== prevState.prevData) return _objectSpread$26({
prevData: data,
prevTravellerWidth: travellerWidth,
prevX: x,
prevWidth: width
}, data && data.length ? createScale({
data,
width,
x,
travellerWidth,
startIndex,
endIndex
}) : {
scale: void 0,
scaleValues: void 0
});
var prevScale = prevState.scale;
if (prevScale && (width !== prevState.prevWidth || x !== prevState.prevX || travellerWidth !== prevState.prevTravellerWidth)) {
prevScale.range([x, x + width - travellerWidth]);
var scaleValues = prevScale.domain().map((entry) => prevScale(entry)).filter((value) => value != null);
return {
prevData: data,
prevTravellerWidth: travellerWidth,
prevX: x,
prevWidth: width,
startX: prevScale(nextProps.startIndex),
endX: prevScale(nextProps.endIndex),
scaleValues
};
}
if (prevState.scale && !prevState.isSlideMoving && !prevState.isTravellerMoving && !prevState.isTravellerFocused && !prevState.isTextActive) {
if (startIndexControlledFromProps != null && prevState.prevStartIndexControlledFromProps !== startIndexControlledFromProps) return {
startX: prevState.scale(startIndexControlledFromProps),
prevStartIndexControlledFromProps: startIndexControlledFromProps
};
if (endIndexControlledFromProps != null && prevState.prevEndIndexControlledFromProps !== endIndexControlledFromProps) return {
endX: prevState.scale(endIndexControlledFromProps),
prevEndIndexControlledFromProps: endIndexControlledFromProps
};
}
return null;
}
componentWillUnmount() {
if (this.leaveTimer) {
clearTimeout(this.leaveTimer);
this.leaveTimer = null;
}
this.detachDragEndListener();
}
attachDragEndListener() {
window.addEventListener("mouseup", this.handleDragEnd, true);
window.addEventListener("touchend", this.handleDragEnd, true);
window.addEventListener("mousemove", this.handleDrag, true);
}
detachDragEndListener() {
window.removeEventListener("mouseup", this.handleDragEnd, true);
window.removeEventListener("touchend", this.handleDragEnd, true);
window.removeEventListener("mousemove", this.handleDrag, true);
}
handleSlideDrag(e) {
var { slideMoveStartX, startX, endX, scaleValues } = this.state;
if (scaleValues == null) return;
var { x, width, travellerWidth, startIndex, endIndex, onChange, data, gap } = this.props;
var delta = e.pageX - slideMoveStartX;
if (delta > 0) delta = Math.min(delta, x + width - travellerWidth - endX, x + width - travellerWidth - startX);
else if (delta < 0) delta = Math.max(delta, x - startX, x - endX);
var newIndex = getIndex({
startX: startX + delta,
endX: endX + delta,
data,
gap,
scaleValues
});
if ((newIndex.startIndex !== startIndex || newIndex.endIndex !== endIndex) && onChange) onChange(newIndex);
this.setState({
startX: startX + delta,
endX: endX + delta,
slideMoveStartX: e.pageX
});
}
handleTravellerDragStart(id, e) {
var event = isTouch(e) ? e.changedTouches[0] : e;
if (event == null) return;
this.setState({
isSlideMoving: false,
isTravellerMoving: true,
movingTravellerId: id,
brushMoveStartX: event.pageX
});
this.attachDragEndListener();
}
handleTravellerMove(e) {
var { brushMoveStartX, movingTravellerId, endX, startX, scaleValues } = this.state;
if (movingTravellerId == null || scaleValues == null) return;
var prevValue = this.state[movingTravellerId];
var { x, width, travellerWidth, onChange, gap, data } = this.props;
var params = {
startX: this.state.startX,
endX: this.state.endX,
data,
gap,
scaleValues
};
var delta = e.pageX - brushMoveStartX;
if (delta > 0) delta = Math.min(delta, x + width - travellerWidth - prevValue);
else if (delta < 0) delta = Math.max(delta, x - prevValue);
params[movingTravellerId] = prevValue + delta;
var newIndex = getIndex(params);
var { startIndex, endIndex } = newIndex;
var isFullGap = () => {
var lastIndex = data.length - 1;
if (movingTravellerId === "startX" && (endX > startX ? startIndex % gap === 0 : endIndex % gap === 0) || endX < startX && endIndex === lastIndex || movingTravellerId === "endX" && (endX > startX ? endIndex % gap === 0 : startIndex % gap === 0) || endX > startX && endIndex === lastIndex) return true;
return false;
};
this.setState({
[movingTravellerId]: prevValue + delta,
brushMoveStartX: e.pageX
}, () => {
if (onChange) {
if (isFullGap()) onChange(newIndex);
}
});
}
render() {
var { data, className, children, x, y, dy, width, height, alwaysShowText, fill, stroke, startIndex, endIndex, travellerWidth, tickFormatter, dataKey, padding } = this.props;
var { startX, endX, isTextActive, isSlideMoving, isTravellerMoving, isTravellerFocused } = this.state;
if (!data || !data.length || !isNumber(x) || !isNumber(y) || !isNumber(width) || !isNumber(height) || width <= 0 || height <= 0) return null;
var layerClass = clsx("recharts-brush", className);
var style = generatePrefixStyle("userSelect", "none");
var calculatedY = y + (dy !== null && dy !== void 0 ? dy : 0);
return /* @__PURE__ */ import_react.createElement(Layer, {
className: layerClass,
onMouseLeave: this.handleLeaveWrapper,
onTouchMove: this.handleTouchMove,
style
}, /* @__PURE__ */ import_react.createElement(Background$1, {
x,
y: calculatedY,
width,
height,
fill,
stroke
}), /* @__PURE__ */ import_react.createElement(PanoramaContextProvider, null, /* @__PURE__ */ import_react.createElement(Panorama, {
x,
y: calculatedY,
width,
height,
data,
padding
}, children)), /* @__PURE__ */ import_react.createElement(Slide, {
y: calculatedY,
height,
stroke,
travellerWidth,
startX,
endX,
onMouseEnter: this.handleEnterSlideOrTraveller,
onMouseLeave: this.handleLeaveSlideOrTraveller,
onMouseDown: this.handleSlideDragStart,
onTouchStart: this.handleSlideDragStart
}), /* @__PURE__ */ import_react.createElement(TravellerLayer, {
travellerX: startX,
id: "startX",
otherProps: _objectSpread$26(_objectSpread$26({}, this.props), {}, { y: calculatedY }),
onMouseEnter: this.handleEnterSlideOrTraveller,
onMouseLeave: this.handleLeaveSlideOrTraveller,
onMouseDown: this.travellerDragStartHandlers.startX,
onTouchStart: this.travellerDragStartHandlers.startX,
onTravellerMoveKeyboard: this.handleTravellerMoveKeyboard,
onFocus: () => {
this.setState({ isTravellerFocused: true });
},
onBlur: () => {
this.setState({ isTravellerFocused: false });
}
}), /* @__PURE__ */ import_react.createElement(TravellerLayer, {
travellerX: endX,
id: "endX",
otherProps: _objectSpread$26(_objectSpread$26({}, this.props), {}, { y: calculatedY }),
onMouseEnter: this.handleEnterSlideOrTraveller,
onMouseLeave: this.handleLeaveSlideOrTraveller,
onMouseDown: this.travellerDragStartHandlers.endX,
onTouchStart: this.travellerDragStartHandlers.endX,
onTravellerMoveKeyboard: this.handleTravellerMoveKeyboard,
onFocus: () => {
this.setState({ isTravellerFocused: true });
},
onBlur: () => {
this.setState({ isTravellerFocused: false });
}
}), (isTextActive || isSlideMoving || isTravellerMoving || isTravellerFocused || alwaysShowText) && /* @__PURE__ */ import_react.createElement(BrushText, {
startIndex,
endIndex,
y: calculatedY,
height,
travellerWidth,
stroke,
tickFormatter,
dataKey,
data,
startX,
endX
}));
}
};
function BrushInternal(props) {
var dispatch = useAppDispatch();
var chartData = useChartData();
var dataIndexes = useDataIndex();
var onChangeFromContext = (0, import_react.useContext)(BrushUpdateDispatchContext);
var onChangeFromProps = props.onChange;
var { startIndex: startIndexFromProps, endIndex: endIndexFromProps } = props;
(0, import_react.useEffect)(() => {
dispatch(setDataStartEndIndexes({
startIndex: startIndexFromProps,
endIndex: endIndexFromProps
}));
}, [
dispatch,
endIndexFromProps,
startIndexFromProps
]);
useBrushChartSynchronisation();
var onChange = (0, import_react.useCallback)((nextState) => {
if (dataIndexes == null) return;
var { startIndex, endIndex } = dataIndexes;
if (nextState.startIndex !== startIndex || nextState.endIndex !== endIndex) {
onChangeFromContext === null || onChangeFromContext === void 0 || onChangeFromContext(nextState);
onChangeFromProps === null || onChangeFromProps === void 0 || onChangeFromProps(nextState);
dispatch(setDataStartEndIndexes(nextState));
}
}, [
onChangeFromProps,
onChangeFromContext,
dispatch,
dataIndexes
]);
var brushDimensions = useAppSelector(selectBrushDimensions);
if (brushDimensions == null || dataIndexes == null || chartData == null || !chartData.length) return null;
var { startIndex, endIndex } = dataIndexes;
var { x, y, width } = brushDimensions;
var contextProperties = {
data: chartData,
x,
y,
width,
startIndex,
endIndex,
onChange
};
return /* @__PURE__ */ import_react.createElement(BrushWithState, _extends$26({}, props, contextProperties, {
startIndexControlledFromProps: startIndexFromProps !== null && startIndexFromProps !== void 0 ? startIndexFromProps : void 0,
endIndexControlledFromProps: endIndexFromProps !== null && endIndexFromProps !== void 0 ? endIndexFromProps : void 0
}));
}
function BrushSettingsDispatcher(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(setBrushSettings(props));
return () => {
dispatch(setBrushSettings(null));
};
}, [dispatch, props]);
return null;
}
var defaultBrushProps = {
height: 40,
travellerWidth: 5,
gap: 1,
fill: "#fff",
stroke: "#666",
padding: {
top: 1,
right: 1,
bottom: 1,
left: 1
},
leaveTimeOut: 1e3,
alwaysShowText: false
};
/**
* Renders a scrollbar that allows the user to zoom and pan in the chart along its XAxis.
* It also allows you to render a small overview of the chart inside the brush that is always visible
* and shows the full data set so that the user can see where they are zoomed in.
*
* If a chart is synchronized with other charts using the `syncId` prop on the chart,
* the brush will also synchronize the zooming and panning between all synchronized charts.
*
* @see {@link https://recharts.github.io/en-US/examples/BrushBarChart/ BarChart with Brush}
* @see {@link https://recharts.github.io/en-US/examples/SynchronizedLineChart/ Synchronized Brush}
*
* @consumes CartesianChartContext
*/
function Brush(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultBrushProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(BrushSettingsDispatcher, {
height: props.height,
x: props.x,
y: props.y,
width: props.width,
padding: props.padding
}), /* @__PURE__ */ import_react.createElement(BrushInternal, props));
}
Brush.displayName = "Brush";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/CartesianUtils.js
var rectWithPoints = (_ref, _ref2) => {
var { x: x1, y: y1 } = _ref;
var { x: x2, y: y2 } = _ref2;
return {
x: Math.min(x1, x2),
y: Math.min(y1, y2),
width: Math.abs(x2 - x1),
height: Math.abs(y2 - y1)
};
};
/**
* Compute the x, y, width, and height of a box from two reference points.
* @param {Object} coords x1, x2, y1, and y2
* @return {Object} object
*/
var rectWithCoords = (_ref3) => {
var { x1, y1, x2, y2 } = _ref3;
return rectWithPoints({
x: x1,
y: y1
}, {
x: x2,
y: y2
});
};
/** Normalizes the angle so that 0 <= angle < 180.
* @param {number} angle Angle in degrees.
* @return {number} the normalized angle with a value of at least 0 and never greater or equal to 180. */
function normalizeAngle(angle) {
return (angle % 180 + 180) % 180;
}
/** Calculates the width of the largest horizontal line that fits inside a rectangle that is displayed at an angle.
* @param {Object} size Width and height of the text in a horizontal position.
* @param {number} angle Angle in degrees in which the text is displayed.
* @return {number} The width of the largest horizontal line that fits inside a rectangle that is displayed at an angle.
*/
var getAngledRectangleWidth = function getAngledRectangleWidth(_ref4) {
var { width, height } = _ref4;
var angleRadians = normalizeAngle(arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0) * Math.PI / 180;
var angleThreshold = Math.atan(height / width);
var angledWidth = angleRadians > angleThreshold && angleRadians < Math.PI - angleThreshold ? height / Math.sin(angleRadians) : width / Math.cos(angleRadians);
return Math.abs(angledWidth);
};
var referenceElementsSlice = createSlice({
name: "referenceElements",
initialState: {
dots: [],
areas: [],
lines: []
},
reducers: {
addDot: (state, action) => {
state.dots.push(action.payload);
},
removeDot: (state, action) => {
var index = current$1(state).dots.findIndex((dot) => dot === action.payload);
if (index !== -1) state.dots.splice(index, 1);
},
addArea: (state, action) => {
state.areas.push(action.payload);
},
removeArea: (state, action) => {
var index = current$1(state).areas.findIndex((area) => area === action.payload);
if (index !== -1) state.areas.splice(index, 1);
},
addLine: (state, action) => {
state.lines.push(castDraft(action.payload));
},
removeLine: (state, action) => {
var index = current$1(state).lines.findIndex((line) => line === action.payload);
if (index !== -1) state.lines.splice(index, 1);
}
}
});
var { addDot, removeDot, addArea, removeArea, addLine, removeLine } = referenceElementsSlice.actions;
var referenceElementsReducer = referenceElementsSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/container/ClipPathProvider.js
var ClipPathIdContext = /* @__PURE__ */ (0, import_react.createContext)(void 0);
/**
* Generates a unique clip path ID for use in SVG elements,
* and puts it in a context provider.
*
* To read the clip path ID, use the `useClipPathId` hook,
* or render `` component which will automatically use the ID from this context.
*
* @param props children - React children to be wrapped by the provider
* @returns React Context Provider
*/
var ClipPathProvider = (_ref) => {
var { children } = _ref;
var [clipPathId] = (0, import_react.useState)("".concat(uniqueId("recharts"), "-clip"));
var plotArea = usePlotArea();
if (plotArea == null) return null;
var { x, y, width, height } = plotArea;
return /* @__PURE__ */ import_react.createElement(ClipPathIdContext.Provider, { value: clipPathId }, /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement("clipPath", { id: clipPathId }, /* @__PURE__ */ import_react.createElement("rect", {
x,
y,
height,
width
}))), children);
};
var useClipPathId = () => {
return (0, import_react.useContext)(ClipPathIdContext);
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/scale/CartesianScaleHelper.js
/**
* Groups X and Y scale functions together and provides helper methods.
*/
var CartesianScaleHelperImpl = class {
constructor(_ref) {
var { x, y } = _ref;
this.xAxisScale = x;
this.yAxisScale = y;
}
map(value, _ref2) {
var _this$xAxisScale$map, _this$yAxisScale$map;
var { position } = _ref2;
return {
x: (_this$xAxisScale$map = this.xAxisScale.map(value.x, { position })) !== null && _this$xAxisScale$map !== void 0 ? _this$xAxisScale$map : 0,
y: (_this$yAxisScale$map = this.yAxisScale.map(value.y, { position })) !== null && _this$yAxisScale$map !== void 0 ? _this$yAxisScale$map : 0
};
}
mapWithFallback(value, _ref3) {
var _this$xAxisScale$map2, _this$yAxisScale$map2;
var { position, fallback } = _ref3;
var fallbackY, fallbackX;
if (fallback === "rangeMin") fallbackY = this.yAxisScale.rangeMin();
else if (fallback === "rangeMax") fallbackY = this.yAxisScale.rangeMax();
else fallbackY = 0;
if (fallback === "rangeMin") fallbackX = this.xAxisScale.rangeMin();
else if (fallback === "rangeMax") fallbackX = this.xAxisScale.rangeMax();
else fallbackX = 0;
return {
x: (_this$xAxisScale$map2 = this.xAxisScale.map(value.x, { position })) !== null && _this$xAxisScale$map2 !== void 0 ? _this$xAxisScale$map2 : fallbackX,
y: (_this$yAxisScale$map2 = this.yAxisScale.map(value.y, { position })) !== null && _this$yAxisScale$map2 !== void 0 ? _this$yAxisScale$map2 : fallbackY
};
}
isInRange(_ref4) {
var { x, y } = _ref4;
var xInRange = x == null || this.xAxisScale.isInRange(x);
var yInRange = y == null || this.yAxisScale.isInRange(y);
return xInRange && yInRange;
}
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/ReferenceLine.js
/**
* @fileOverview Reference Line
*/
function ownKeys$25(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$25(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$25(Object(t), !0).forEach(function(r) {
_defineProperty$25(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$25(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$25(e, r, t) {
return (r = _toPropertyKey$25(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$25(t) {
var i = _toPrimitive$25(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$25(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$25() {
return _extends$25 = 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$25.apply(null, arguments);
}
/**
* Single point that defines one end of a segment.
* These coordinates are in data space, meaning that you should provide
* values that correspond to the data domain of the axes.
* So you would provide a value of `Page A` to indicate the data value `Page A`
* and then recharts will convert that to pixels.
*
* Likewise for numbers. If your x-axis goes from 0 to 100,
* and you want the line to end at 50, you would provide `50` here.
*
* @inline
*/
/**
* This excludes `viewBox` prop from svg for two reasons:
* 1. The components wants viewBox of object type, and svg wants string
* - so there's a conflict, and the component will throw if it gets string
* 2. Internally the component calls `svgPropertiesNoEvents` which filters the viewBox away anyway
*/
var renderLine = (option, props) => {
var line;
if (/* @__PURE__ */ import_react.isValidElement(option)) line = /* @__PURE__ */ import_react.cloneElement(option, props);
else if (typeof option === "function") line = option(props);
else {
if (!isWellBehavedNumber(props.x1) || !isWellBehavedNumber(props.y1) || !isWellBehavedNumber(props.x2) || !isWellBehavedNumber(props.y2)) return null;
line = /* @__PURE__ */ import_react.createElement("line", _extends$25({}, props, { className: "recharts-reference-line-line" }));
}
return line;
};
var getHorizontalLineEndPoints = (yCoord, ifOverflow, position, yAxisOrientation, yAxisScale, viewBox) => {
var { x, width } = viewBox;
var coord = yAxisScale.map(yCoord, { position });
if (!isWellBehavedNumber(coord)) return null;
if (ifOverflow === "discard" && !yAxisScale.isInRange(coord)) return null;
var points = [{
x: x + width,
y: coord
}, {
x,
y: coord
}];
return yAxisOrientation === "left" ? points.reverse() : points;
};
var getVerticalLineEndPoints = (xCoord, ifOverflow, position, xAxisOrientation, xAxisScale, viewBox) => {
var { y, height } = viewBox;
var coord = xAxisScale.map(xCoord, { position });
if (!isWellBehavedNumber(coord)) return null;
if (ifOverflow === "discard" && !xAxisScale.isInRange(coord)) return null;
var points = [{
x: coord,
y: y + height
}, {
x: coord,
y
}];
return xAxisOrientation === "top" ? points.reverse() : points;
};
var getSegmentLineEndPoints = (segment, ifOverflow, position, scales) => {
var points = [scales.mapWithFallback(segment[0], {
position,
fallback: "rangeMin"
}), scales.mapWithFallback(segment[1], {
position,
fallback: "rangeMax"
})];
if (ifOverflow === "discard" && points.some((p) => !scales.isInRange(p))) return null;
return points;
};
var getEndPoints = (xAxisScale, yAxisScale, viewBox, position, xAxisOrientation, yAxisOrientation, props) => {
var { x: xCoord, y: yCoord, segment, ifOverflow } = props;
var isFixedX = isNumOrStr(xCoord);
if (isNumOrStr(yCoord)) return getHorizontalLineEndPoints(yCoord, ifOverflow, position, yAxisOrientation, yAxisScale, viewBox);
if (isFixedX) return getVerticalLineEndPoints(xCoord, ifOverflow, position, xAxisOrientation, xAxisScale, viewBox);
if (segment != null && segment.length === 2) return getSegmentLineEndPoints(segment, ifOverflow, position, new CartesianScaleHelperImpl({
x: xAxisScale,
y: yAxisScale
}));
return null;
};
function ReportReferenceLine(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(addLine(props));
return () => {
dispatch(removeLine(props));
};
});
return null;
}
function ReferenceLineImpl(props) {
var { xAxisId, yAxisId, shape, className, ifOverflow } = props;
var isPanorama = useIsPanorama();
var clipPathId = useClipPathId();
var xAxis = useAppSelector((state) => selectXAxisSettings(state, xAxisId));
var yAxis = useAppSelector((state) => selectYAxisSettings(state, yAxisId));
var xAxisScale = useAppSelector((state) => selectAxisScale(state, "xAxis", xAxisId, isPanorama));
var yAxisScale = useAppSelector((state) => selectAxisScale(state, "yAxis", yAxisId, isPanorama));
var viewBox = useViewBox();
if (!clipPathId || !viewBox || xAxis == null || yAxis == null || xAxisScale == null || yAxisScale == null) return null;
var endPoints = getEndPoints(xAxisScale, yAxisScale, viewBox, props.position, xAxis.orientation, yAxis.orientation, props);
if (!endPoints) return null;
var point1 = endPoints[0];
var point2 = endPoints[1];
if (point1 == null || point2 == null) return null;
var { x: x1, y: y1 } = point1;
var { x: x2, y: y2 } = point2;
var lineProps = _objectSpread$25(_objectSpread$25({ clipPath: ifOverflow === "hidden" ? "url(#".concat(clipPathId, ")") : void 0 }, svgPropertiesAndEvents(props)), {}, {
x1,
y1,
x2,
y2
});
var rect = rectWithCoords({
x1,
y1,
x2,
y2
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-reference-line", className) }, renderLine(shape, lineProps), /* @__PURE__ */ import_react.createElement(CartesianLabelContextProvider, _extends$25({}, rect, {
lowerWidth: rect.width,
upperWidth: rect.width
}), /* @__PURE__ */ import_react.createElement(CartesianLabelFromLabelProp, { label: props.label }), props.children)));
}
var referenceLineDefaultProps = {
ifOverflow: "discard",
xAxisId: 0,
yAxisId: 0,
fill: "none",
label: false,
stroke: "#ccc",
fillOpacity: 1,
strokeWidth: 1,
position: "middle",
zIndex: DefaultZIndexes.line
};
/**
* Draws a line on the chart connecting two points.
*
* This component, unlike {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/line line}, is aware of the cartesian coordinate system,
* so you specify the dimensions by using data coordinates instead of pixels.
*
* ReferenceLine will calculate the pixels based on the provided data coordinates.
*
* If you prefer to render using pixels rather than data coordinates,
* consider using the {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/line line SVG element} instead.
*
* @provides CartesianLabelContext
* @consumes CartesianChartContext
*/
function ReferenceLine(outsideProps) {
var props = resolveDefaultProps(outsideProps, referenceLineDefaultProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(ReportReferenceLine, {
yAxisId: props.yAxisId,
xAxisId: props.xAxisId,
ifOverflow: props.ifOverflow,
x: props.x,
y: props.y,
segment: props.segment
}), /* @__PURE__ */ import_react.createElement(ReferenceLineImpl, props));
}
ReferenceLine.displayName = "ReferenceLine";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/ReferenceDot.js
function ownKeys$24(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$24(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$24(Object(t), !0).forEach(function(r) {
_defineProperty$24(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$24(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$24(e, r, t) {
return (r = _toPropertyKey$24(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$24(t) {
var i = _toPrimitive$24(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$24(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$24() {
return _extends$24 = 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$24.apply(null, arguments);
}
var useCoordinate = (x, y, xAxisId, yAxisId, ifOverflow) => {
var isX = isNumOrStr(x);
var isY = isNumOrStr(y);
var isPanorama = useIsPanorama();
var xAxisScale = useAppSelector((state) => selectAxisScale(state, "xAxis", xAxisId, isPanorama));
var yAxisScale = useAppSelector((state) => selectAxisScale(state, "yAxis", yAxisId, isPanorama));
if (!isX || !isY || xAxisScale == null || yAxisScale == null) return null;
var scales = new CartesianScaleHelperImpl({
x: xAxisScale,
y: yAxisScale
});
var result = scales.map({
x,
y
}, { position: "middle" });
if (ifOverflow === "discard" && !scales.isInRange(result)) return null;
return result;
};
function ReportReferenceDot(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(addDot(props));
return () => {
dispatch(removeDot(props));
};
});
return null;
}
var renderDot = (option, props) => {
var dot;
if (/* @__PURE__ */ import_react.isValidElement(option)) dot = /* @__PURE__ */ import_react.cloneElement(option, props);
else if (typeof option === "function") dot = option(props);
else dot = /* @__PURE__ */ import_react.createElement(Dot, _extends$24({}, props, {
cx: props.cx,
cy: props.cy,
className: "recharts-reference-dot-dot"
}));
return dot;
};
function ReferenceDotImpl(props) {
var { x, y, r } = props;
var clipPathId = useClipPathId();
var coordinate = useCoordinate(x, y, props.xAxisId, props.yAxisId, props.ifOverflow);
if (!coordinate) return null;
var { x: cx, y: cy } = coordinate;
var { shape, className, ifOverflow } = props;
var dotProps = _objectSpread$24(_objectSpread$24({ clipPath: ifOverflow === "hidden" ? "url(#".concat(clipPathId, ")") : void 0 }, svgPropertiesAndEvents(props)), {}, {
cx: cx !== null && cx !== void 0 ? cx : void 0,
cy: cy !== null && cy !== void 0 ? cy : void 0
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-reference-dot", className) }, renderDot(shape, dotProps), /* @__PURE__ */ import_react.createElement(CartesianLabelContextProvider, {
x: cx - r,
y: cy - r,
width: 2 * r,
height: 2 * r,
upperWidth: 2 * r,
lowerWidth: 2 * r
}, /* @__PURE__ */ import_react.createElement(CartesianLabelFromLabelProp, { label: props.label }), props.children)));
}
var referenceDotDefaultProps = {
ifOverflow: "discard",
xAxisId: 0,
yAxisId: 0,
r: 10,
label: false,
fill: "#fff",
stroke: "#ccc",
fillOpacity: 1,
strokeWidth: 1,
zIndex: DefaultZIndexes.scatter
};
/**
* Draws a circle on the chart to highlight a specific point.
*
* This component, unlike {@link Dot} or {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/circle circle}, is aware of the cartesian coordinate system,
* so you specify its center by using data coordinates instead of pixels.
*
* ReferenceDot will calculate the pixels based on the provided data coordinates.
*
* If you prefer to render dots using pixels rather than data coordinates,
* consider using the {@link Dot} component instead.
*
* @provides CartesianLabelContext
* @consumes CartesianChartContext
*/
function ReferenceDot(outsideProps) {
var props = resolveDefaultProps(outsideProps, referenceDotDefaultProps);
var { x, y, r, ifOverflow, yAxisId, xAxisId } = props;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(ReportReferenceDot, {
y,
x,
r,
yAxisId,
xAxisId,
ifOverflow
}), /* @__PURE__ */ import_react.createElement(ReferenceDotImpl, props));
}
ReferenceDot.displayName = "ReferenceDot";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/ReferenceArea.js
function ownKeys$23(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$23(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$23(Object(t), !0).forEach(function(r) {
_defineProperty$23(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$23(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$23(e, r, t) {
return (r = _toPropertyKey$23(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$23(t) {
var i = _toPrimitive$23(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$23(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$23() {
return _extends$23 = 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$23.apply(null, arguments);
}
var getRect = (hasX1, hasX2, hasY1, hasY2, xAxisScale, yAxisScale, props) => {
var _xAxisScale$map, _yAxisScale$map, _xAxisScale$map2, _yAxisScale$map2;
var { x1: xValue1, x2: xValue2, y1: yValue1, y2: yValue2 } = props;
if (xAxisScale == null || yAxisScale == null) return null;
var scales = new CartesianScaleHelperImpl({
x: xAxisScale,
y: yAxisScale
});
var p1 = {
x: hasX1 ? (_xAxisScale$map = xAxisScale.map(xValue1, { position: "start" })) !== null && _xAxisScale$map !== void 0 ? _xAxisScale$map : null : xAxisScale.rangeMin(),
y: hasY1 ? (_yAxisScale$map = yAxisScale.map(yValue1, { position: "start" })) !== null && _yAxisScale$map !== void 0 ? _yAxisScale$map : null : yAxisScale.rangeMin()
};
var p2 = {
x: hasX2 ? (_xAxisScale$map2 = xAxisScale.map(xValue2, { position: "end" })) !== null && _xAxisScale$map2 !== void 0 ? _xAxisScale$map2 : null : xAxisScale.rangeMax(),
y: hasY2 ? (_yAxisScale$map2 = yAxisScale.map(yValue2, { position: "end" })) !== null && _yAxisScale$map2 !== void 0 ? _yAxisScale$map2 : null : yAxisScale.rangeMax()
};
if (props.ifOverflow === "discard" && (!scales.isInRange(p1) || !scales.isInRange(p2))) return null;
return rectWithPoints(p1, p2);
};
var renderRect = (option, props) => {
var rect;
if (/* @__PURE__ */ import_react.isValidElement(option)) rect = /* @__PURE__ */ import_react.cloneElement(option, props);
else if (typeof option === "function") rect = option(props);
else rect = /* @__PURE__ */ import_react.createElement(Rectangle, _extends$23({}, props, { className: "recharts-reference-area-rect" }));
return rect;
};
function ReportReferenceArea(props) {
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
dispatch(addArea(props));
return () => {
dispatch(removeArea(props));
};
});
return null;
}
function ReferenceAreaImpl(props) {
var { x1, x2, y1, y2, className, shape, xAxisId, yAxisId } = props;
var clipPathId = useClipPathId();
var isPanorama = useIsPanorama();
var xAxisScale = useAppSelector((state) => selectAxisScale(state, "xAxis", xAxisId, isPanorama));
var yAxisScale = useAppSelector((state) => selectAxisScale(state, "yAxis", yAxisId, isPanorama));
if (xAxisScale == null || yAxisScale == null) return null;
var hasX1 = isNumOrStr(x1);
var hasX2 = isNumOrStr(x2);
var hasY1 = isNumOrStr(y1);
var hasY2 = isNumOrStr(y2);
if (!hasX1 && !hasX2 && !hasY1 && !hasY2 && !shape) return null;
var rect = getRect(hasX1, hasX2, hasY1, hasY2, xAxisScale, yAxisScale, props);
if (!rect && !shape) return null;
var clipPath = props.ifOverflow === "hidden" ? "url(#".concat(clipPathId, ")") : void 0;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-reference-area", className) }, renderRect(shape, _objectSpread$23(_objectSpread$23({ clipPath }, svgPropertiesAndEvents(props)), rect)), rect != null && /* @__PURE__ */ import_react.createElement(CartesianLabelContextProvider, _extends$23({}, rect, {
lowerWidth: rect.width,
upperWidth: rect.width
}), /* @__PURE__ */ import_react.createElement(CartesianLabelFromLabelProp, { label: props.label }), props.children)));
}
var referenceAreaDefaultProps = {
ifOverflow: "discard",
xAxisId: 0,
yAxisId: 0,
radius: 0,
fill: "#ccc",
label: false,
fillOpacity: .5,
stroke: "none",
strokeWidth: 1,
zIndex: DefaultZIndexes.area
};
/**
* Draws a rectangular area on the chart to highlight a specific range.
*
* This component, unlike {@link Rectangle} or {@link https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Element/rect rect}, is aware of the cartesian coordinate system,
* so you specify the area by using data coordinates instead of pixels.
*
* ReferenceArea will calculate the pixels based on the provided data coordinates.
*
* If you prefer to render rectangles using pixels rather than data coordinates,
* consider using the {@link Rectangle} component instead.
*
* @provides CartesianLabelContext
* @consumes CartesianChartContext
*/
function ReferenceArea(outsideProps) {
var props = resolveDefaultProps(outsideProps, referenceAreaDefaultProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(ReportReferenceArea, {
yAxisId: props.yAxisId,
xAxisId: props.xAxisId,
ifOverflow: props.ifOverflow,
x1: props.x1,
x2: props.x2,
y1: props.y1,
y2: props.y2
}), /* @__PURE__ */ import_react.createElement(ReferenceAreaImpl, props));
}
ReferenceArea.displayName = "ReferenceArea";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getEveryNth.js
/**
* Given an array and a number N, return a new array which contains every nTh
* element of the input array. For n below 1, an empty array is returned.
* For n equal to 1, the input array is returned as is.
* For n greater than the length of the array, an array containing the first element
* and every nTh element after that (if any) is returned.
*
* @param array An input array.
* @param n A number specifying which elements to take.
* @returns The result array of the same type as the input array.
*/
function getEveryNth(array, n) {
if (n < 1) return [];
if (n === 1) return array;
var result = [];
for (var i = 0; i < array.length; i += n) {
var item = array[i];
if (item !== void 0) result.push(item);
}
return result;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/TickUtils.js
function getAngledTickWidth(contentSize, unitSize, angle) {
return getAngledRectangleWidth({
width: contentSize.width + unitSize.width,
height: contentSize.height + unitSize.height
}, angle);
}
function getTickBoundaries(viewBox, sign, sizeKey) {
var isWidth = sizeKey === "width";
var { x, y, width, height } = viewBox;
if (sign === 1) return {
start: isWidth ? x : y,
end: isWidth ? x + width : y + height
};
return {
start: isWidth ? x + width : y + height,
end: isWidth ? x : y
};
}
function isVisible(sign, tickPosition, getSize, start, end) {
if (sign * tickPosition < sign * start || sign * tickPosition > sign * end) return false;
var size = getSize();
return sign * (tickPosition - sign * size / 2 - start) >= 0 && sign * (tickPosition + sign * size / 2 - end) <= 0;
}
function getNumberIntervalTicks(ticks, interval) {
return getEveryNth(ticks, interval + 1);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/getEquidistantTicks.js
function getEquidistantTicks(sign, boundaries, getTickSize, ticks, minTickGap) {
var result = (ticks || []).slice();
var { start: initialStart, end } = boundaries;
var index = 0;
var stepsize = 1;
var start = initialStart;
var _loop = function _loop() {
var entry = ticks === null || ticks === void 0 ? void 0 : ticks[index];
if (entry === void 0) return { v: getEveryNth(ticks, stepsize) };
var i = index;
var size;
var getSize = () => {
if (size === void 0) size = getTickSize(entry, i);
return size;
};
var tickCoord = entry.coordinate;
var isShow = index === 0 || isVisible(sign, tickCoord, getSize, start, end);
if (!isShow) {
index = 0;
start = initialStart;
stepsize += 1;
}
if (isShow) {
start = tickCoord + sign * (getSize() / 2 + minTickGap);
index += stepsize;
}
}, _ret;
while (stepsize <= result.length) {
_ret = _loop();
if (_ret) return _ret.v;
}
return [];
}
function getEquidistantPreserveEndTicks(sign, boundaries, getTickSize, ticks, minTickGap) {
var len = (ticks || []).slice().length;
if (len === 0) return [];
var { start: initialStart, end } = boundaries;
for (var stepsize = 1; stepsize <= len; stepsize++) {
var offset = (len - 1) % stepsize;
var start = initialStart;
var ok = true;
var _loop2 = function _loop2() {
var entry = ticks[index];
if (entry == null) return 0;
var i = index;
var size;
var getSize = () => {
if (size === void 0) size = getTickSize(entry, i);
return size;
};
var tickCoord = entry.coordinate;
var isShow = index === offset || isVisible(sign, tickCoord, getSize, start, end);
if (!isShow) {
ok = false;
return 1;
}
if (isShow) start = tickCoord + sign * (getSize() / 2 + minTickGap);
}, _ret2;
for (var index = offset; index < len; index += stepsize) {
_ret2 = _loop2();
if (_ret2 === 0) continue;
if (_ret2 === 1) break;
}
if (ok) {
var finalTicks = [];
for (var _index = offset; _index < len; _index += stepsize) {
var tick = ticks[_index];
if (tick != null) finalTicks.push(tick);
}
return finalTicks;
}
}
return [];
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/getTicks.js
function ownKeys$22(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$22(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$22(Object(t), !0).forEach(function(r) {
_defineProperty$22(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$22(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$22(e, r, t) {
return (r = _toPropertyKey$22(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$22(t) {
var i = _toPrimitive$22(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$22(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function getTicksEnd(sign, boundaries, getTickSize, ticks, minTickGap) {
var result = (ticks || []).slice();
var len = result.length;
var { start } = boundaries;
var { end } = boundaries;
var _loop = function _loop(i) {
var initialEntry = result[i];
if (initialEntry == null) return 1;
var entry = initialEntry;
var size;
var getSize = () => {
if (size === void 0) size = getTickSize(initialEntry, i);
return size;
};
if (i === len - 1) {
var gap = sign * (entry.coordinate + sign * getSize() / 2 - end);
result[i] = entry = _objectSpread$22(_objectSpread$22({}, entry), {}, { tickCoord: gap > 0 ? entry.coordinate - gap * sign : entry.coordinate });
} else result[i] = entry = _objectSpread$22(_objectSpread$22({}, entry), {}, { tickCoord: entry.coordinate });
if (entry.tickCoord != null) {
if (isVisible(sign, entry.tickCoord, getSize, start, end)) {
end = entry.tickCoord - sign * (getSize() / 2 + minTickGap);
result[i] = _objectSpread$22(_objectSpread$22({}, entry), {}, { isShow: true });
}
}
};
for (var i = len - 1; i >= 0; i--) if (_loop(i)) continue;
return result;
}
function getTicksStart(sign, boundaries, getTickSize, ticks, minTickGap, preserveEnd) {
var result = (ticks || []).slice();
var len = result.length;
var { start, end } = boundaries;
if (preserveEnd) {
var tail = ticks[len - 1];
if (tail != null) {
var tailSize = getTickSize(tail, len - 1);
var tailGap = sign * (tail.coordinate + sign * tailSize / 2 - end);
result[len - 1] = tail = _objectSpread$22(_objectSpread$22({}, tail), {}, { tickCoord: tailGap > 0 ? tail.coordinate - tailGap * sign : tail.coordinate });
if (tail.tickCoord != null) {
if (isVisible(sign, tail.tickCoord, () => tailSize, start, end)) {
end = tail.tickCoord - sign * (tailSize / 2 + minTickGap);
result[len - 1] = _objectSpread$22(_objectSpread$22({}, tail), {}, { isShow: true });
}
}
}
}
var count = preserveEnd ? len - 1 : len;
var _loop2 = function _loop2(i) {
var initialEntry = result[i];
if (initialEntry == null) return 1;
var entry = initialEntry;
var size;
var getSize = () => {
if (size === void 0) size = getTickSize(initialEntry, i);
return size;
};
if (i === 0) {
var gap = sign * (entry.coordinate - sign * getSize() / 2 - start);
result[i] = entry = _objectSpread$22(_objectSpread$22({}, entry), {}, { tickCoord: gap < 0 ? entry.coordinate - gap * sign : entry.coordinate });
} else result[i] = entry = _objectSpread$22(_objectSpread$22({}, entry), {}, { tickCoord: entry.coordinate });
if (entry.tickCoord != null) {
if (isVisible(sign, entry.tickCoord, getSize, start, end)) {
start = entry.tickCoord + sign * (getSize() / 2 + minTickGap);
result[i] = _objectSpread$22(_objectSpread$22({}, entry), {}, { isShow: true });
}
}
};
for (var i = 0; i < count; i++) if (_loop2(i)) continue;
return result;
}
function getTicks(props, fontSize, letterSpacing) {
var { tick, ticks, viewBox, minTickGap, orientation, interval, tickFormatter, unit, angle } = props;
if (!ticks || !ticks.length || !tick) return [];
if (isNumber(interval) || Global.isSsr) {
var _getNumberIntervalTic;
return (_getNumberIntervalTic = getNumberIntervalTicks(ticks, isNumber(interval) ? interval : 0)) !== null && _getNumberIntervalTic !== void 0 ? _getNumberIntervalTic : [];
}
var candidates = [];
var sizeKey = orientation === "top" || orientation === "bottom" ? "width" : "height";
var unitSize = unit && sizeKey === "width" ? getStringSize(unit, {
fontSize,
letterSpacing
}) : {
width: 0,
height: 0
};
var getTickSize = (content, index) => {
var value = typeof tickFormatter === "function" ? tickFormatter(content.value, index) : content.value;
return sizeKey === "width" ? getAngledTickWidth(getStringSize(value, {
fontSize,
letterSpacing
}), unitSize, angle) : getStringSize(value, {
fontSize,
letterSpacing
})[sizeKey];
};
var tick0 = ticks[0];
var tick1 = ticks[1];
var sign = ticks.length >= 2 && tick0 != null && tick1 != null ? mathSign(tick1.coordinate - tick0.coordinate) : 1;
var boundaries = getTickBoundaries(viewBox, sign, sizeKey);
if (interval === "equidistantPreserveStart") return getEquidistantTicks(sign, boundaries, getTickSize, ticks, minTickGap);
if (interval === "equidistantPreserveEnd") return getEquidistantPreserveEndTicks(sign, boundaries, getTickSize, ticks, minTickGap);
if (interval === "preserveStart" || interval === "preserveStartEnd") candidates = getTicksStart(sign, boundaries, getTickSize, ticks, minTickGap, interval === "preserveStartEnd");
else candidates = getTicksEnd(sign, boundaries, getTickSize, ticks, minTickGap);
return candidates.filter((entry) => entry.isShow);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/YAxisUtils.js
/**
* Calculates the width of the Y-axis based on the tick labels and the axis label.
* @param params - The parameters object.
* @param [params.ticks] - An array-like object of tick elements, each with a `getBoundingClientRect` method.
* @param [params.label] - The axis label element, with a `getBoundingClientRect` method.
* @param [params.labelGapWithTick=5] - The gap between the label and the tick.
* @param [params.tickSize=0] - The length of the tick line.
* @param [params.tickMargin=0] - The margin between the tick line and the tick text.
* @returns The calculated width of the Y-axis.
*/
var getCalculatedYAxisWidth = (_ref) => {
var { ticks, label, labelGapWithTick = 5, tickSize = 0, tickMargin = 0 } = _ref;
var maxTickWidth = 0;
if (ticks) {
Array.from(ticks).forEach((tickNode) => {
if (tickNode) {
var bbox = tickNode.getBoundingClientRect();
if (bbox.width > maxTickWidth) maxTickWidth = bbox.width;
}
});
var labelWidth = label ? label.getBoundingClientRect().width : 0;
var tickWidth = tickSize + tickMargin;
var updatedYAxisWidth = maxTickWidth + tickWidth + labelWidth + (label ? labelGapWithTick : 0);
return Math.round(updatedYAxisWidth);
}
return 0;
};
var renderedTicksSlice = createSlice({
name: "renderedTicks",
initialState: {
xAxis: {},
yAxis: {}
},
reducers: {
setRenderedTicks: (state, action) => {
var { axisType, axisId, ticks } = action.payload;
state[axisType][axisId] = castDraft(ticks);
},
removeRenderedTicks: (state, action) => {
var { axisType, axisId } = action.payload;
delete state[axisType][axisId];
}
}
});
var { setRenderedTicks, removeRenderedTicks } = renderedTicksSlice.actions;
var renderedTicksReducer = renderedTicksSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/CartesianAxis.js
/**
* @fileOverview Cartesian Axis
*/
var _excluded$18 = [
"axisLine",
"width",
"height",
"className",
"hide",
"ticks",
"axisType",
"axisId"
];
function _objectWithoutProperties$18(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$18(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$18(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function _extends$22() {
return _extends$22 = 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$22.apply(null, arguments);
}
function ownKeys$21(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$21(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$21(Object(t), !0).forEach(function(r) {
_defineProperty$21(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$21(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$21(e, r, t) {
return (r = _toPropertyKey$21(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$21(t) {
var i = _toPrimitive$21(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$21(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/** The orientation of the axis in correspondence to the chart */
/** A unit to be appended to a value */
/** The formatter function of tick */
var defaultCartesianAxisProps = {
x: 0,
y: 0,
width: 0,
height: 0,
viewBox: {
x: 0,
y: 0,
width: 0,
height: 0
},
orientation: "bottom",
ticks: [],
stroke: "#666",
tickLine: true,
axisLine: true,
tick: true,
mirror: false,
minTickGap: 5,
tickSize: 6,
tickMargin: 2,
interval: "preserveEnd",
zIndex: DefaultZIndexes.axis
};
function AxisLine(axisLineProps) {
var { x, y, width, height, orientation, mirror, axisLine, otherSvgProps } = axisLineProps;
if (!axisLine) return null;
var props = _objectSpread$21(_objectSpread$21(_objectSpread$21({}, otherSvgProps), svgPropertiesNoEvents(axisLine)), {}, { fill: "none" });
if (orientation === "top" || orientation === "bottom") {
var needHeight = +(orientation === "top" && !mirror || orientation === "bottom" && mirror);
props = _objectSpread$21(_objectSpread$21({}, props), {}, {
x1: x,
y1: y + needHeight * height,
x2: x + width,
y2: y + needHeight * height
});
} else {
var needWidth = +(orientation === "left" && !mirror || orientation === "right" && mirror);
props = _objectSpread$21(_objectSpread$21({}, props), {}, {
x1: x + needWidth * width,
y1: y,
x2: x + needWidth * width,
y2: y + height
});
}
return /* @__PURE__ */ import_react.createElement("line", _extends$22({}, props, { className: clsx("recharts-cartesian-axis-line", (0, import_get.default)(axisLine, "className")) }));
}
/**
* Calculate the coordinates of endpoints in ticks.
* @param data The data of a simple tick.
* @param x The x-coordinate of the axis.
* @param y The y-coordinate of the axis.
* @param width The width of the axis.
* @param height The height of the axis.
* @param orientation The orientation of the axis.
* @param tickSize The length of the tick line.
* @param mirror If true, the ticks are mirrored.
* @param tickMargin The margin between the tick line and the tick text.
* @returns An object with `line` and `tick` coordinates.
* `line` is the coordinates for the tick line, and `tick` is the coordinate for the tick text.
*/
function getTickLineCoord(data, x, y, width, height, orientation, tickSize, mirror, tickMargin) {
var x1, x2, y1, y2, tx, ty;
var sign = mirror ? -1 : 1;
var finalTickSize = data.tickSize || tickSize;
var tickCoord = isNumber(data.tickCoord) ? data.tickCoord : data.coordinate;
switch (orientation) {
case "top":
x1 = x2 = data.coordinate;
y2 = y + +!mirror * height;
y1 = y2 - sign * finalTickSize;
ty = y1 - sign * tickMargin;
tx = tickCoord;
break;
case "left":
y1 = y2 = data.coordinate;
x2 = x + +!mirror * width;
x1 = x2 - sign * finalTickSize;
tx = x1 - sign * tickMargin;
ty = tickCoord;
break;
case "right":
y1 = y2 = data.coordinate;
x2 = x + +mirror * width;
x1 = x2 + sign * finalTickSize;
tx = x1 + sign * tickMargin;
ty = tickCoord;
break;
default:
x1 = x2 = data.coordinate;
y2 = y + +mirror * height;
y1 = y2 + sign * finalTickSize;
ty = y1 + sign * tickMargin;
tx = tickCoord;
break;
}
return {
line: {
x1,
y1,
x2,
y2
},
tick: {
x: tx,
y: ty
}
};
}
/**
* @param orientation The orientation of the axis.
* @param mirror If true, the ticks are mirrored.
* @returns The text anchor of the tick.
*/
function getTickTextAnchor(orientation, mirror) {
switch (orientation) {
case "left": return mirror ? "start" : "end";
case "right": return mirror ? "end" : "start";
default: return "middle";
}
}
/**
* @param orientation The orientation of the axis.
* @param mirror If true, the ticks are mirrored.
* @returns The vertical text anchor of the tick.
*/
function getTickVerticalAnchor(orientation, mirror) {
switch (orientation) {
case "left":
case "right": return "middle";
case "top": return mirror ? "start" : "end";
default: return mirror ? "end" : "start";
}
}
function TickItem(props) {
var { option, tickProps, value } = props;
var tickItem;
var combinedClassName = clsx(tickProps.className, "recharts-cartesian-axis-tick-value");
if (/* @__PURE__ */ import_react.isValidElement(option)) tickItem = /* @__PURE__ */ import_react.cloneElement(option, _objectSpread$21(_objectSpread$21({}, tickProps), {}, { className: combinedClassName }));
else if (typeof option === "function") tickItem = option(_objectSpread$21(_objectSpread$21({}, tickProps), {}, { className: combinedClassName }));
else {
var className = "recharts-cartesian-axis-tick-value";
if (typeof option !== "boolean") className = clsx(className, getClassNameFromUnknown(option));
tickItem = /* @__PURE__ */ import_react.createElement(Text, _extends$22({}, tickProps, { className }), value);
}
return tickItem;
}
function RenderedTicksReporter(_ref) {
var { ticks, axisType, axisId } = _ref;
var dispatch = useAppDispatch();
(0, import_react.useEffect)(() => {
if (axisId == null || axisType == null) return noop$2;
dispatch(setRenderedTicks({
ticks: ticks.map((tick) => ({
value: tick.value,
coordinate: tick.coordinate,
offset: tick.offset,
index: tick.index
})),
axisId,
axisType
}));
return () => {
dispatch(removeRenderedTicks({
axisId,
axisType
}));
};
}, [
dispatch,
ticks,
axisId,
axisType
]);
return null;
}
var Ticks = /* @__PURE__ */ (0, import_react.forwardRef)((props, ref) => {
var { ticks = [], tick, tickLine, stroke, tickFormatter, unit, padding, tickTextProps, orientation, mirror, x, y, width, height, tickSize, tickMargin, fontSize, letterSpacing, getTicksConfig, events, axisType, axisId } = props;
var finalTicks = getTicks(_objectSpread$21(_objectSpread$21({}, getTicksConfig), {}, { ticks }), fontSize, letterSpacing);
var axisProps = svgPropertiesNoEvents(getTicksConfig);
var customTickProps = svgPropertiesNoEventsFromUnknown(tick);
var textAnchor = isValidTextAnchor(axisProps.textAnchor) ? axisProps.textAnchor : getTickTextAnchor(orientation, mirror);
var verticalAnchor = getTickVerticalAnchor(orientation, mirror);
var tickLinePropsObject = {};
if (typeof tickLine === "object") tickLinePropsObject = tickLine;
var tickLineProps = _objectSpread$21(_objectSpread$21({}, axisProps), {}, { fill: "none" }, tickLinePropsObject);
var tickLineCoords = finalTicks.map((entry) => _objectSpread$21({ entry }, getTickLineCoord(entry, x, y, width, height, orientation, tickSize, mirror, tickMargin)));
var tickLines = tickLineCoords.map((_ref2) => {
var { entry, line: lineCoord } = _ref2;
return /* @__PURE__ */ import_react.createElement(Layer, {
className: "recharts-cartesian-axis-tick",
key: "tick-".concat(entry.value, "-").concat(entry.coordinate, "-").concat(entry.tickCoord)
}, tickLine && /* @__PURE__ */ import_react.createElement("line", _extends$22({}, tickLineProps, lineCoord, { className: clsx("recharts-cartesian-axis-tick-line", (0, import_get.default)(tickLine, "className")) })));
});
var tickLabels = tickLineCoords.map((_ref3, i) => {
var _ref4, _tickTextProps$angle;
var { entry, tick: tickCoord } = _ref3;
var finalTickProps = _objectSpread$21(_objectSpread$21({}, _objectSpread$21(_objectSpread$21(_objectSpread$21(_objectSpread$21({ verticalAnchor }, axisProps), {}, {
textAnchor,
stroke: "none",
fill: stroke
}, tickCoord), {}, {
index: i,
payload: entry,
visibleTicksCount: finalTicks.length,
tickFormatter,
padding
}, tickTextProps), {}, { angle: (_ref4 = (_tickTextProps$angle = tickTextProps === null || tickTextProps === void 0 ? void 0 : tickTextProps.angle) !== null && _tickTextProps$angle !== void 0 ? _tickTextProps$angle : axisProps.angle) !== null && _ref4 !== void 0 ? _ref4 : 0 })), customTickProps);
return /* @__PURE__ */ import_react.createElement(Layer, _extends$22({
className: "recharts-cartesian-axis-tick-label",
key: "tick-label-".concat(entry.value, "-").concat(entry.coordinate, "-").concat(entry.tickCoord)
}, adaptEventsOfChild(events, entry, i)), tick && /* @__PURE__ */ import_react.createElement(TickItem, {
option: tick,
tickProps: finalTickProps,
value: "".concat(typeof tickFormatter === "function" ? tickFormatter(entry.value, i) : entry.value).concat(unit || "")
}));
});
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-axis-ticks recharts-".concat(axisType, "-ticks") }, /* @__PURE__ */ import_react.createElement(RenderedTicksReporter, {
ticks: finalTicks,
axisId,
axisType
}), tickLabels.length > 0 && /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: DefaultZIndexes.label }, /* @__PURE__ */ import_react.createElement("g", {
className: "recharts-cartesian-axis-tick-labels recharts-".concat(axisType, "-tick-labels"),
ref
}, tickLabels)), tickLines.length > 0 && /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-axis-tick-lines recharts-".concat(axisType, "-tick-lines") }, tickLines));
});
var CartesianAxisComponent = /* @__PURE__ */ (0, import_react.forwardRef)((props, ref) => {
var { axisLine, width, height, className, hide, ticks, axisType, axisId } = props, rest = _objectWithoutProperties$18(props, _excluded$18);
var [fontSize, setFontSize] = (0, import_react.useState)("");
var [letterSpacing, setLetterSpacing] = (0, import_react.useState)("");
var tickRefs = (0, import_react.useRef)(null);
(0, import_react.useImperativeHandle)(ref, () => ({ getCalculatedWidth: () => {
var _props$labelRef;
return getCalculatedYAxisWidth({
ticks: tickRefs.current,
label: (_props$labelRef = props.labelRef) === null || _props$labelRef === void 0 ? void 0 : _props$labelRef.current,
labelGapWithTick: 5,
tickSize: props.tickSize,
tickMargin: props.tickMargin
});
} }));
var layerRef = (0, import_react.useCallback)((el) => {
if (el) {
var tickNodes = el.getElementsByClassName("recharts-cartesian-axis-tick-value");
tickRefs.current = tickNodes;
var tick = tickNodes[0];
if (tick) {
var computedStyle = window.getComputedStyle(tick);
var calculatedFontSize = computedStyle.fontSize;
var calculatedLetterSpacing = computedStyle.letterSpacing;
if (calculatedFontSize !== fontSize || calculatedLetterSpacing !== letterSpacing) {
setFontSize(calculatedFontSize);
setLetterSpacing(calculatedLetterSpacing);
}
}
}
}, [fontSize, letterSpacing]);
if (hide) return null;
if (width != null && width <= 0 || height != null && height <= 0) return null;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: clsx("recharts-cartesian-axis", className) }, /* @__PURE__ */ import_react.createElement(AxisLine, {
x: props.x,
y: props.y,
width,
height,
orientation: props.orientation,
mirror: props.mirror,
axisLine,
otherSvgProps: svgPropertiesNoEvents(props)
}), /* @__PURE__ */ import_react.createElement(Ticks, {
ref: layerRef,
axisType,
events: rest,
fontSize,
getTicksConfig: props,
height: props.height,
letterSpacing,
mirror: props.mirror,
orientation: props.orientation,
padding: props.padding,
stroke: props.stroke,
tick: props.tick,
tickFormatter: props.tickFormatter,
tickLine: props.tickLine,
tickMargin: props.tickMargin,
tickSize: props.tickSize,
tickTextProps: props.tickTextProps,
ticks,
unit: props.unit,
width: props.width,
x: props.x,
y: props.y,
axisId
}), /* @__PURE__ */ import_react.createElement(CartesianLabelContextProvider, {
x: props.x,
y: props.y,
width: props.width,
height: props.height,
lowerWidth: props.width,
upperWidth: props.width
}, /* @__PURE__ */ import_react.createElement(CartesianLabelFromLabelProp, {
label: props.label,
labelRef: props.labelRef
}), props.children)));
});
/**
* @deprecated
*
* This component is not meant to be used directly in app code.
* Use XAxis or YAxis instead.
*
* Starting from Recharts v4.0 we will make this component internal only.
*/
var CartesianAxis = /* @__PURE__ */ import_react.forwardRef((outsideProps, ref) => {
var props = resolveDefaultProps(outsideProps, defaultCartesianAxisProps);
return /* @__PURE__ */ import_react.createElement(CartesianAxisComponent, _extends$22({}, props, { ref }));
});
CartesianAxis.displayName = "CartesianAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/CartesianGrid.js
var _excluded$17 = [
"x1",
"y1",
"x2",
"y2",
"key"
], _excluded2$9 = ["offset"], _excluded3$6 = ["xAxisId", "yAxisId"], _excluded4$2 = ["xAxisId", "yAxisId"];
function ownKeys$20(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$20(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$20(Object(t), !0).forEach(function(r) {
_defineProperty$20(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$20(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$20(e, r, t) {
return (r = _toPropertyKey$20(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$20(t) {
var i = _toPrimitive$20(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$20(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _extends$21() {
return _extends$21 = 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$21.apply(null, arguments);
}
function _objectWithoutProperties$17(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$17(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$17(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* The {
var { fill } = props;
if (!fill || fill === "none") return null;
var { fillOpacity, x, y, width, height, ry } = props;
return /* @__PURE__ */ import_react.createElement("rect", {
x,
y,
ry,
width,
height,
stroke: "none",
fill,
fillOpacity,
className: "recharts-cartesian-grid-bg"
});
};
function LineItem(_ref) {
var { option, lineItemProps } = _ref;
var lineItem;
if (/* @__PURE__ */ import_react.isValidElement(option)) lineItem = /* @__PURE__ */ import_react.cloneElement(option, lineItemProps);
else if (typeof option === "function") lineItem = option(lineItemProps);
else {
var _svgPropertiesNoEvent;
var { x1, y1, x2, y2, key } = lineItemProps;
var _ref2 = (_svgPropertiesNoEvent = svgPropertiesNoEvents(_objectWithoutProperties$17(lineItemProps, _excluded$17))) !== null && _svgPropertiesNoEvent !== void 0 ? _svgPropertiesNoEvent : {}, { offset: __ } = _ref2, restOfFilteredProps = _objectWithoutProperties$17(_ref2, _excluded2$9);
lineItem = /* @__PURE__ */ import_react.createElement("line", _extends$21({}, restOfFilteredProps, {
x1,
y1,
x2,
y2,
fill: "none",
key
}));
}
return lineItem;
}
function HorizontalGridLines(props) {
var { x, width, horizontal = true, horizontalPoints } = props;
if (!horizontal || !horizontalPoints || !horizontalPoints.length) return null;
var { xAxisId, yAxisId } = props, otherLineItemProps = _objectWithoutProperties$17(props, _excluded3$6);
var items = horizontalPoints.map((entry, i) => {
var lineItemProps = _objectSpread$20(_objectSpread$20({}, otherLineItemProps), {}, {
x1: x,
y1: entry,
x2: x + width,
y2: entry,
key: "line-".concat(i),
index: i
});
return /* @__PURE__ */ import_react.createElement(LineItem, {
key: "line-".concat(i),
option: horizontal,
lineItemProps
});
});
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-grid-horizontal" }, items);
}
function VerticalGridLines(props) {
var { y, height, vertical = true, verticalPoints } = props;
if (!vertical || !verticalPoints || !verticalPoints.length) return null;
var { xAxisId, yAxisId } = props, otherLineItemProps = _objectWithoutProperties$17(props, _excluded4$2);
var items = verticalPoints.map((entry, i) => {
var lineItemProps = _objectSpread$20(_objectSpread$20({}, otherLineItemProps), {}, {
x1: entry,
y1: y,
x2: entry,
y2: y + height,
key: "line-".concat(i),
index: i
});
return /* @__PURE__ */ import_react.createElement(LineItem, {
option: vertical,
lineItemProps,
key: "line-".concat(i)
});
});
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-grid-vertical" }, items);
}
function HorizontalStripes(props) {
var { horizontalFill, fillOpacity, x, y, width, height, horizontalPoints, horizontal = true } = props;
if (!horizontal || !horizontalFill || !horizontalFill.length || horizontalPoints == null) return null;
var roundedSortedHorizontalPoints = horizontalPoints.map((e) => Math.round(e + y - y)).sort((a, b) => a - b);
if (y !== roundedSortedHorizontalPoints[0]) roundedSortedHorizontalPoints.unshift(0);
var items = roundedSortedHorizontalPoints.map((entry, i) => {
var nextPoint = roundedSortedHorizontalPoints[i + 1];
var lineHeight = nextPoint == null ? y + height - entry : nextPoint - entry;
if (lineHeight <= 0) return null;
var colorIndex = i % horizontalFill.length;
return /* @__PURE__ */ import_react.createElement("rect", {
key: "react-".concat(i),
y: entry,
x,
height: lineHeight,
width,
stroke: "none",
fill: horizontalFill[colorIndex],
fillOpacity,
className: "recharts-cartesian-grid-bg"
});
});
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-gridstripes-horizontal" }, items);
}
function VerticalStripes(props) {
var { vertical = true, verticalFill, fillOpacity, x, y, width, height, verticalPoints } = props;
if (!vertical || !verticalFill || !verticalFill.length) return null;
var roundedSortedVerticalPoints = verticalPoints.map((e) => Math.round(e + x - x)).sort((a, b) => a - b);
if (x !== roundedSortedVerticalPoints[0]) roundedSortedVerticalPoints.unshift(0);
var items = roundedSortedVerticalPoints.map((entry, i) => {
var nextPoint = roundedSortedVerticalPoints[i + 1];
var lineWidth = nextPoint == null ? x + width - entry : nextPoint - entry;
if (lineWidth <= 0) return null;
var colorIndex = i % verticalFill.length;
return /* @__PURE__ */ import_react.createElement("rect", {
key: "react-".concat(i),
x: entry,
y,
width: lineWidth,
height,
stroke: "none",
fill: verticalFill[colorIndex],
fillOpacity,
className: "recharts-cartesian-grid-bg"
});
});
return /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-gridstripes-vertical" }, items);
}
var defaultVerticalCoordinatesGenerator = (_ref3, syncWithTicks) => {
var { xAxis, width, height, offset } = _ref3;
return getCoordinatesOfGrid(getTicks(_objectSpread$20(_objectSpread$20(_objectSpread$20({}, defaultCartesianAxisProps), xAxis), {}, {
ticks: getTicksOfAxis(xAxis, true),
viewBox: {
x: 0,
y: 0,
width,
height
}
})), offset.left, offset.left + offset.width, syncWithTicks);
};
var defaultHorizontalCoordinatesGenerator = (_ref4, syncWithTicks) => {
var { yAxis, width, height, offset } = _ref4;
return getCoordinatesOfGrid(getTicks(_objectSpread$20(_objectSpread$20(_objectSpread$20({}, defaultCartesianAxisProps), yAxis), {}, {
ticks: getTicksOfAxis(yAxis, true),
viewBox: {
x: 0,
y: 0,
width,
height
}
})), offset.top, offset.top + offset.height, syncWithTicks);
};
var defaultCartesianGridProps = {
horizontal: true,
vertical: true,
horizontalPoints: [],
verticalPoints: [],
stroke: "#ccc",
fill: "none",
verticalFill: [],
horizontalFill: [],
xAxisId: 0,
yAxisId: 0,
syncWithTicks: false,
zIndex: DefaultZIndexes.grid
};
/**
* Renders background grid with lines and fill colors in a Cartesian chart.
*
* @consumes CartesianChartContext
*/
function CartesianGrid(props) {
var chartWidth = useChartWidth();
var chartHeight = useChartHeight();
var offset = useOffsetInternal();
var propsIncludingDefaults = _objectSpread$20(_objectSpread$20({}, resolveDefaultProps(props, defaultCartesianGridProps)), {}, {
x: isNumber(props.x) ? props.x : offset.left,
y: isNumber(props.y) ? props.y : offset.top,
width: isNumber(props.width) ? props.width : offset.width,
height: isNumber(props.height) ? props.height : offset.height
});
var { xAxisId, yAxisId, x, y, width, height, syncWithTicks, horizontalValues, verticalValues } = propsIncludingDefaults;
var isPanorama = useIsPanorama();
var xAxis = useAppSelector((state) => selectAxisPropsNeededForCartesianGridTicksGenerator(state, "xAxis", xAxisId, isPanorama));
var yAxis = useAppSelector((state) => selectAxisPropsNeededForCartesianGridTicksGenerator(state, "yAxis", yAxisId, isPanorama));
if (!isPositiveNumber(width) || !isPositiveNumber(height) || !isNumber(x) || !isNumber(y)) return null;
var verticalCoordinatesGenerator = propsIncludingDefaults.verticalCoordinatesGenerator || defaultVerticalCoordinatesGenerator;
var horizontalCoordinatesGenerator = propsIncludingDefaults.horizontalCoordinatesGenerator || defaultHorizontalCoordinatesGenerator;
var { horizontalPoints, verticalPoints } = propsIncludingDefaults;
if ((!horizontalPoints || !horizontalPoints.length) && typeof horizontalCoordinatesGenerator === "function") {
var isHorizontalValues = horizontalValues && horizontalValues.length;
var generatorResult = horizontalCoordinatesGenerator({
yAxis: yAxis ? _objectSpread$20(_objectSpread$20({}, yAxis), {}, { ticks: isHorizontalValues ? horizontalValues : yAxis.ticks }) : void 0,
width: chartWidth !== null && chartWidth !== void 0 ? chartWidth : width,
height: chartHeight !== null && chartHeight !== void 0 ? chartHeight : height,
offset
}, isHorizontalValues ? true : syncWithTicks);
warn(Array.isArray(generatorResult), "horizontalCoordinatesGenerator should return Array but instead it returned [".concat(typeof generatorResult, "]"));
if (Array.isArray(generatorResult)) horizontalPoints = generatorResult;
}
if ((!verticalPoints || !verticalPoints.length) && typeof verticalCoordinatesGenerator === "function") {
var isVerticalValues = verticalValues && verticalValues.length;
var _generatorResult = verticalCoordinatesGenerator({
xAxis: xAxis ? _objectSpread$20(_objectSpread$20({}, xAxis), {}, { ticks: isVerticalValues ? verticalValues : xAxis.ticks }) : void 0,
width: chartWidth !== null && chartWidth !== void 0 ? chartWidth : width,
height: chartHeight !== null && chartHeight !== void 0 ? chartHeight : height,
offset
}, isVerticalValues ? true : syncWithTicks);
warn(Array.isArray(_generatorResult), "verticalCoordinatesGenerator should return Array but instead it returned [".concat(typeof _generatorResult, "]"));
if (Array.isArray(_generatorResult)) verticalPoints = _generatorResult;
}
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: propsIncludingDefaults.zIndex }, /* @__PURE__ */ import_react.createElement("g", { className: "recharts-cartesian-grid" }, /* @__PURE__ */ import_react.createElement(Background, {
fill: propsIncludingDefaults.fill,
fillOpacity: propsIncludingDefaults.fillOpacity,
x: propsIncludingDefaults.x,
y: propsIncludingDefaults.y,
width: propsIncludingDefaults.width,
height: propsIncludingDefaults.height,
ry: propsIncludingDefaults.ry
}), /* @__PURE__ */ import_react.createElement(HorizontalStripes, _extends$21({}, propsIncludingDefaults, { horizontalPoints })), /* @__PURE__ */ import_react.createElement(VerticalStripes, _extends$21({}, propsIncludingDefaults, { verticalPoints })), /* @__PURE__ */ import_react.createElement(HorizontalGridLines, _extends$21({}, propsIncludingDefaults, {
offset,
horizontalPoints,
xAxis,
yAxis
})), /* @__PURE__ */ import_react.createElement(VerticalGridLines, _extends$21({}, propsIncludingDefaults, {
offset,
verticalPoints,
xAxis,
yAxis
}))));
}
CartesianGrid.displayName = "CartesianGrid";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/errorBarSlice.js
var errorBarSlice = createSlice({
name: "errorBars",
initialState: {},
reducers: {
addErrorBar: (state, action) => {
var { itemId, errorBar } = action.payload;
if (!state[itemId]) state[itemId] = [];
state[itemId].push(errorBar);
},
replaceErrorBar: (state, action) => {
var { itemId, prev, next } = action.payload;
if (state[itemId]) state[itemId] = state[itemId].map((e) => e.dataKey === prev.dataKey && e.direction === prev.direction ? next : e);
},
removeErrorBar: (state, action) => {
var { itemId, errorBar } = action.payload;
if (state[itemId]) state[itemId] = state[itemId].filter((e) => e.dataKey !== errorBar.dataKey || e.direction !== errorBar.direction);
}
}
});
var { addErrorBar, replaceErrorBar, removeErrorBar } = errorBarSlice.actions;
var errorBarReducer = errorBarSlice.reducer;
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/context/ErrorBarContext.js
var _excluded$16 = ["children"];
function _objectWithoutProperties$16(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$16(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$16(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var ErrorBarContext = /* @__PURE__ */ (0, import_react.createContext)({
data: [],
xAxisId: "xAxis-0",
yAxisId: "yAxis-0",
dataPointFormatter: () => ({
x: 0,
y: 0,
value: 0
}),
errorBarOffset: 0
});
function SetErrorBarContext(props) {
var { children } = props, rest = _objectWithoutProperties$16(props, _excluded$16);
return /* @__PURE__ */ import_react.createElement(ErrorBarContext.Provider, { value: rest }, children);
}
var useErrorBarContext = () => (0, import_react.useContext)(ErrorBarContext);
function ReportErrorBarSettings(props) {
var dispatch = useAppDispatch();
var graphicalItemId = useGraphicalItemId();
var prevPropsRef = (0, import_react.useRef)(null);
(0, import_react.useEffect)(() => {
if (graphicalItemId == null) return;
if (prevPropsRef.current === null) dispatch(addErrorBar({
itemId: graphicalItemId,
errorBar: props
}));
else if (prevPropsRef.current !== props) dispatch(replaceErrorBar({
itemId: graphicalItemId,
prev: prevPropsRef.current,
next: props
}));
prevPropsRef.current = props;
}, [
dispatch,
graphicalItemId,
props
]);
(0, import_react.useEffect)(() => {
return () => {
if (prevPropsRef.current != null && graphicalItemId != null) {
dispatch(removeErrorBar({
itemId: graphicalItemId,
errorBar: prevPropsRef.current
}));
prevPropsRef.current = null;
}
};
}, [dispatch, graphicalItemId]);
return null;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/GraphicalItemClipPath.js
function useNeedsClip(xAxisId, yAxisId) {
var _xAxis$allowDataOverf, _yAxis$allowDataOverf;
var xAxis = useAppSelector((state) => selectXAxisSettings(state, xAxisId));
var yAxis = useAppSelector((state) => selectYAxisSettings(state, yAxisId));
var needClipX = (_xAxis$allowDataOverf = xAxis === null || xAxis === void 0 ? void 0 : xAxis.allowDataOverflow) !== null && _xAxis$allowDataOverf !== void 0 ? _xAxis$allowDataOverf : implicitXAxis.allowDataOverflow;
var needClipY = (_yAxis$allowDataOverf = yAxis === null || yAxis === void 0 ? void 0 : yAxis.allowDataOverflow) !== null && _yAxis$allowDataOverf !== void 0 ? _yAxis$allowDataOverf : implicitYAxis.allowDataOverflow;
return {
needClip: needClipX || needClipY,
needClipX,
needClipY
};
}
function GraphicalItemClipPath(_ref) {
var { xAxisId, yAxisId, clipPathId } = _ref;
var plotArea = usePlotArea();
var { needClipX, needClipY, needClip } = useNeedsClip(xAxisId, yAxisId);
if (!needClip || !plotArea) return null;
var { x, y, width, height } = plotArea;
return /* @__PURE__ */ import_react.createElement("clipPath", { id: "clipPath-".concat(clipPathId) }, /* @__PURE__ */ import_react.createElement("rect", {
x: needClipX ? x : x - width / 2,
y: needClipY ? y : y - height / 2,
width: needClipX ? width : width * 2,
height: needClipY ? height : height * 2
}));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/lineSelectors.js
var selectXAxisWithScale$3 = (state, xAxisId, _yAxisId, isPanorama) => selectAxisWithScale(state, "xAxis", xAxisId, isPanorama);
var selectXAxisTicks$3 = (state, xAxisId, _yAxisId, isPanorama) => selectTicksOfGraphicalItem(state, "xAxis", xAxisId, isPanorama);
var selectYAxisWithScale$3 = (state, _xAxisId, yAxisId, isPanorama) => selectAxisWithScale(state, "yAxis", yAxisId, isPanorama);
var selectYAxisTicks$3 = (state, _xAxisId, yAxisId, isPanorama) => selectTicksOfGraphicalItem(state, "yAxis", yAxisId, isPanorama);
var selectBandSize$1 = createSelector([
selectChartLayout,
selectXAxisWithScale$3,
selectYAxisWithScale$3,
selectXAxisTicks$3,
selectYAxisTicks$3
], (layout, xAxis, yAxis, xAxisTicks, yAxisTicks) => {
if (isCategoricalAxis(layout, "xAxis")) return getBandSizeOfAxis(xAxis, xAxisTicks, false);
return getBandSizeOfAxis(yAxis, yAxisTicks, false);
});
var pickLineId = (_state, _xAxisId, _yAxisId, _isPanorama, id) => id;
function isLineSettings(item) {
return item.type === "line";
}
var selectLinePoints = createSelector([
selectChartLayout,
selectXAxisWithScale$3,
selectYAxisWithScale$3,
selectXAxisTicks$3,
selectYAxisTicks$3,
createSelector([selectUnfilteredCartesianItems, pickLineId], (graphicalItems, id) => graphicalItems.filter(isLineSettings).find((x) => x.id === id)),
selectBandSize$1,
selectChartDataWithIndexesIfNotInPanoramaPosition4
], (layout, xAxis, yAxis, xAxisTicks, yAxisTicks, lineSettings, bandSize, _ref) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref;
if (lineSettings == null || xAxis == null || yAxis == null || xAxisTicks == null || yAxisTicks == null || xAxisTicks.length === 0 || yAxisTicks.length === 0 || bandSize == null || layout !== "horizontal" && layout !== "vertical") return;
var { dataKey, data } = lineSettings;
var displayedData;
if (data != null && data.length > 0) displayedData = data;
else displayedData = chartData === null || chartData === void 0 ? void 0 : chartData.slice(dataStartIndex, dataEndIndex + 1);
if (displayedData == null) return;
return computeLinePoints({
layout,
xAxis,
yAxis,
xAxisTicks,
yAxisTicks,
dataKey,
bandSize,
displayedData
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getRadiusAndStrokeWidthFromDot.js
function getRadiusAndStrokeWidthFromDot(dot) {
var props = svgPropertiesNoEventsFromUnknown(dot);
var defaultR = 3;
var defaultStrokeWidth = 2;
if (props != null) {
var { r, strokeWidth } = props;
var realR = Number(r);
var realStrokeWidth = Number(strokeWidth);
if (Number.isNaN(realR) || realR < 0) realR = defaultR;
if (Number.isNaN(realStrokeWidth) || realStrokeWidth < 0) realStrokeWidth = defaultStrokeWidth;
return {
r: realR,
strokeWidth: realStrokeWidth
};
}
return {
r: defaultR,
strokeWidth: defaultStrokeWidth
};
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/Line.js
var _excluded$15 = ["id"], _excluded2$8 = [
"type",
"layout",
"connectNulls",
"needClip",
"shape"
], _excluded3$5 = [
"activeDot",
"animateNewValues",
"animationBegin",
"animationDuration",
"animationEasing",
"connectNulls",
"dot",
"hide",
"isAnimationActive",
"label",
"legendType",
"xAxisId",
"yAxisId",
"id"
];
function _extends$20() {
return _extends$20 = 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$20.apply(null, arguments);
}
function ownKeys$19(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$19(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$19(Object(t), !0).forEach(function(r) {
_defineProperty$19(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$19(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$19(e, r, t) {
return (r = _toPropertyKey$19(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$19(t) {
var i = _toPrimitive$19(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$19(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$15(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$15(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$15(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* Internal props, combination of external props + defaultProps + private Recharts state
*/
/**
* External props, intended for end users to fill in
*/
/**
* Because of naming conflict, we are forced to ignore certain (valid) SVG attributes.
*/
var computeLegendPayloadFromAreaData$1 = (props) => {
var { dataKey, name, stroke, legendType, hide } = props;
return [{
inactive: hide,
dataKey,
type: legendType,
color: stroke,
value: getTooltipNameProp(name, dataKey),
payload: props
}];
};
var SetLineTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, data, stroke, strokeWidth, fill, name, hide, unit, tooltipType, id } = _ref;
var tooltipEntrySettings = {
dataDefinedOnItem: data,
getPosition: noop$2,
settings: {
stroke,
strokeWidth,
fill,
dataKey,
nameKey: void 0,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: stroke,
unit,
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
/**
* Generates a simple stroke-dasharray string for animating a line draw effect.
*
* Uses `totalLength` as the gap (instead of `totalLength - length`) to prevent a floating-point
* precision artifact: when fractional dash and gap values are serialized to a string attribute
* and re-parsed by the SVG renderer, their sum can differ from the actual path length by a ULP,
* causing the dasharray pattern to repeat and render a phantom dot at the path endpoint
* with round or square strokeLinecap.
*
* @param totalLength The total length of the SVG path
* @param length The currently visible portion of the path
* @returns A stroke-dasharray string like "50px 200px"
*/
var generateSimpleStrokeDasharray = (totalLength, length) => {
return "".concat(length, "px ").concat(totalLength, "px");
};
/**
* Repeats a dash pattern array a given number of times.
*
* If the input array has an odd length, a trailing `0` is appended to make it even
* before repeating, because SVG stroke-dasharray patterns must have an even number
* of values to cycle correctly between dash and gap segments.
*
* @param lines Array of dash/gap lengths to repeat
* @param count Number of times to repeat the pattern
* @returns A new array with the pattern repeated `count` times
*/
function repeat(lines, count) {
var linesUnit = lines.length % 2 !== 0 ? [...lines, 0] : lines;
var result = [];
for (var i = 0; i < count; ++i) result.push(...linesUnit);
return result;
}
/**
* Computes a stroke-dasharray string for animating a custom-dashed line draw effect.
*
* Given a user-specified dash pattern (e.g. `"7,3"`), this function builds a dasharray
* that reveals exactly `length` pixels of that pattern, followed by a gap of `totalLength`
* to hide the remainder of the path.
*
* Like {@link generateSimpleStrokeDasharray}, the trailing gap uses `totalLength` rather than
* `totalLength - length` to avoid floating-point precision artifacts with round/square strokeLinecap.
*
* @param length The currently visible portion of the path
* @param totalLength The total length of the SVG path
* @param lines The user-specified dash pattern as an array of numbers (e.g. [7, 3])
* @returns A stroke-dasharray string incorporating the custom dash pattern
*/
var getStrokeDasharray = (length, totalLength, lines) => {
var lineLength = lines.reduce((pre, next) => pre + next, 0);
if (!lineLength) return generateSimpleStrokeDasharray(totalLength, length);
var count = Math.floor(length / lineLength);
var remainLength = length % lineLength;
var remainLines = [];
for (var i = 0, sum = 0; i < lines.length; sum += (_lines$i = lines[i]) !== null && _lines$i !== void 0 ? _lines$i : 0, ++i) {
var _lines$i;
var lineValue = lines[i];
if (lineValue != null && sum + lineValue > remainLength) {
remainLines = [...lines.slice(0, i), remainLength - sum];
break;
}
}
var emptyLines = remainLines.length % 2 === 0 ? [0, totalLength] : [totalLength];
return [
...repeat(lines, count),
...remainLines,
...emptyLines
].map((line) => "".concat(line, "px")).join(", ");
};
function LineDotsWrapper(_ref2) {
var { clipPathId, points, props } = _ref2;
var { dot, dataKey, needClip } = props;
var { id } = props;
var lineProps = svgPropertiesNoEvents(_objectWithoutProperties$15(props, _excluded$15));
return /* @__PURE__ */ import_react.createElement(Dots, {
points,
dot,
className: "recharts-line-dots",
dotClassName: "recharts-line-dot",
dataKey,
baseProps: lineProps,
needClip,
clipPathId
});
}
function LineLabelListProvider(_ref3) {
var { showLabels, children, points } = _ref3;
var labelListEntries = (0, import_react.useMemo)(() => {
return points === null || points === void 0 ? void 0 : points.map((point) => {
var _point$x, _point$y;
var viewBox = {
x: (_point$x = point.x) !== null && _point$x !== void 0 ? _point$x : 0,
y: (_point$y = point.y) !== null && _point$y !== void 0 ? _point$y : 0,
width: 0,
lowerWidth: 0,
upperWidth: 0,
height: 0
};
return _objectSpread$19(_objectSpread$19({}, viewBox), {}, {
value: point.value,
payload: point.payload,
viewBox,
parentViewBox: void 0,
fill: void 0
});
});
}, [points]);
return /* @__PURE__ */ import_react.createElement(CartesianLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function StaticCurve(_ref4) {
var { clipPathId, pathRef, points, strokeDasharray, props } = _ref4;
var { type, layout, connectNulls, needClip, shape } = props;
var curveProps = _objectSpread$19(_objectSpread$19({}, svgPropertiesAndEvents(_objectWithoutProperties$15(props, _excluded2$8))), {}, {
fill: "none",
className: "recharts-line-curve",
clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : void 0,
points,
type,
layout,
connectNulls,
strokeDasharray: strokeDasharray !== null && strokeDasharray !== void 0 ? strokeDasharray : props.strokeDasharray
});
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, (points === null || points === void 0 ? void 0 : points.length) > 1 && /* @__PURE__ */ import_react.createElement(Shape, _extends$20({
shapeType: "curve",
option: shape
}, curveProps, { pathRef })), /* @__PURE__ */ import_react.createElement(LineDotsWrapper, {
points,
clipPathId,
props
}));
}
function getTotalLength(mainCurve) {
try {
return mainCurve && mainCurve.getTotalLength && mainCurve.getTotalLength() || 0;
} catch (_unused) {
return 0;
}
}
function CurveWithAnimation(_ref5) {
var { clipPathId, props, pathRef, previousPointsRef, longestAnimatedLengthRef } = _ref5;
var { points, strokeDasharray, isAnimationActive, animationBegin, animationDuration, animationEasing, animateNewValues, width, height, onAnimationEnd, onAnimationStart } = props;
var prevPoints = previousPointsRef.current;
var animationId = useAnimationId(points, "recharts-line-");
var animationIdRef = (0, import_react.useRef)(animationId);
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var showLabels = !isAnimating;
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
var totalLength = getTotalLength(pathRef.current);
var startingPointRef = (0, import_react.useRef)(0);
if (animationIdRef.current !== animationId) {
startingPointRef.current = longestAnimatedLengthRef.current;
animationIdRef.current = animationId;
}
var startingPoint = startingPointRef.current;
return /* @__PURE__ */ import_react.createElement(LineLabelListProvider, {
points,
showLabels
}, props.children, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationEnd: handleAnimationEnd,
onAnimationStart: handleAnimationStart,
key: animationId
}, (t) => {
var lengthInterpolated = interpolate(startingPoint, totalLength + startingPoint, t);
var curLength = Math.min(lengthInterpolated, totalLength);
var currentStrokeDasharray;
if (isAnimationActive) if (strokeDasharray) currentStrokeDasharray = getStrokeDasharray(curLength, totalLength, "".concat(strokeDasharray).split(/[,\s]+/gim).map((num) => parseFloat(num)));
else currentStrokeDasharray = generateSimpleStrokeDasharray(totalLength, curLength);
else currentStrokeDasharray = strokeDasharray == null ? void 0 : String(strokeDasharray);
if (t > 0 && totalLength > 0) {
previousPointsRef.current = points;
longestAnimatedLengthRef.current = Math.max(longestAnimatedLengthRef.current, curLength);
}
if (prevPoints) {
var prevPointsDiffFactor = prevPoints.length / points.length;
var stepData = t === 1 ? points : points.map((entry, index) => {
var prevPointIndex = Math.floor(index * prevPointsDiffFactor);
if (prevPoints[prevPointIndex]) {
var prev = prevPoints[prevPointIndex];
return _objectSpread$19(_objectSpread$19({}, entry), {}, {
x: interpolate(prev.x, entry.x, t),
y: interpolate(prev.y, entry.y, t)
});
}
if (animateNewValues) return _objectSpread$19(_objectSpread$19({}, entry), {}, {
x: interpolate(width * 2, entry.x, t),
y: interpolate(height / 2, entry.y, t)
});
return _objectSpread$19(_objectSpread$19({}, entry), {}, {
x: entry.x,
y: entry.y
});
});
previousPointsRef.current = stepData;
return /* @__PURE__ */ import_react.createElement(StaticCurve, {
props,
points: stepData,
clipPathId,
pathRef,
strokeDasharray: currentStrokeDasharray
});
}
return /* @__PURE__ */ import_react.createElement(StaticCurve, {
props,
points,
clipPathId,
pathRef,
strokeDasharray: currentStrokeDasharray
});
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: props.label }));
}
function RenderCurve(_ref6) {
var { clipPathId, props } = _ref6;
var previousPointsRef = (0, import_react.useRef)(null);
var longestAnimatedLengthRef = (0, import_react.useRef)(0);
var pathRef = (0, import_react.useRef)(null);
return /* @__PURE__ */ import_react.createElement(CurveWithAnimation, {
props,
clipPathId,
previousPointsRef,
longestAnimatedLengthRef,
pathRef
});
}
var errorBarDataPointFormatter$2 = (dataPoint, dataKey) => {
var _dataPoint$x, _dataPoint$y;
return {
x: (_dataPoint$x = dataPoint.x) !== null && _dataPoint$x !== void 0 ? _dataPoint$x : void 0,
y: (_dataPoint$y = dataPoint.y) !== null && _dataPoint$y !== void 0 ? _dataPoint$y : void 0,
value: dataPoint.value,
errorVal: getValueByDataKey(dataPoint.payload, dataKey)
};
};
var LineWithState = class extends import_react.Component {
render() {
var { hide, dot, points, className, xAxisId, yAxisId, top, left, width, height, id, needClip, zIndex } = this.props;
if (hide) return null;
var layerClass = clsx("recharts-line", className);
var clipPathId = id;
var { r, strokeWidth } = getRadiusAndStrokeWidthFromDot(dot);
var clipDot = isClipDot(dot);
var dotSize = r * 2 + strokeWidth;
var activePointsClipPath = needClip ? "url(#clipPath-".concat(clipDot ? "" : "dots-").concat(clipPathId, ")") : void 0;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: layerClass }, needClip && /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement(GraphicalItemClipPath, {
clipPathId,
xAxisId,
yAxisId
}), !clipDot && /* @__PURE__ */ import_react.createElement("clipPath", { id: "clipPath-dots-".concat(clipPathId) }, /* @__PURE__ */ import_react.createElement("rect", {
x: left - dotSize / 2,
y: top - dotSize / 2,
width: width + dotSize,
height: height + dotSize
}))), /* @__PURE__ */ import_react.createElement(SetErrorBarContext, {
xAxisId,
yAxisId,
data: points,
dataPointFormatter: errorBarDataPointFormatter$2,
errorBarOffset: 0
}, /* @__PURE__ */ import_react.createElement(RenderCurve, {
props: this.props,
clipPathId
}))), /* @__PURE__ */ import_react.createElement(ActivePoints, {
activeDot: this.props.activeDot,
points,
mainColor: this.props.stroke,
itemDataKey: this.props.dataKey,
clipPath: activePointsClipPath
}));
}
};
var defaultLineProps = {
activeDot: true,
animateNewValues: true,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease",
connectNulls: false,
dot: true,
fill: "#fff",
hide: false,
isAnimationActive: "auto",
label: false,
legendType: "line",
stroke: "#3182bd",
strokeWidth: 1,
xAxisId: 0,
yAxisId: 0,
zIndex: DefaultZIndexes.line,
type: "linear"
};
function LineImpl(props) {
var _resolveDefaultProps = resolveDefaultProps(props, defaultLineProps), { activeDot, animateNewValues, animationBegin, animationDuration, animationEasing, connectNulls, dot, hide, isAnimationActive, label, legendType, xAxisId, yAxisId, id } = _resolveDefaultProps, everythingElse = _objectWithoutProperties$15(_resolveDefaultProps, _excluded3$5);
var { needClip } = useNeedsClip(xAxisId, yAxisId);
var plotArea = usePlotArea();
var layout = useChartLayout();
var isPanorama = useIsPanorama();
var points = useAppSelector((state) => selectLinePoints(state, xAxisId, yAxisId, isPanorama, id));
if (layout !== "horizontal" && layout !== "vertical" || points == null || plotArea == null) return null;
var { height, width, x: left, y: top } = plotArea;
return /* @__PURE__ */ import_react.createElement(LineWithState, _extends$20({}, everythingElse, {
id,
connectNulls,
dot,
activeDot,
animateNewValues,
animationBegin,
animationDuration,
animationEasing,
isAnimationActive,
hide,
label,
legendType,
xAxisId,
yAxisId,
points,
layout,
height,
width,
left,
top,
needClip
}));
}
function computeLinePoints(_ref7) {
var { layout, xAxis, yAxis, xAxisTicks, yAxisTicks, dataKey, bandSize, displayedData } = _ref7;
return displayedData.map((entry, index) => {
var value = getValueByDataKey(entry, dataKey);
if (layout === "horizontal") {
var _x = getCateCoordinateOfLine({
axis: xAxis,
ticks: xAxisTicks,
bandSize,
entry,
index
});
var _y = isNullish(value) ? null : yAxis.scale.map(value);
return {
x: _x,
y: _y !== null && _y !== void 0 ? _y : null,
value,
payload: entry
};
}
var x = isNullish(value) ? null : xAxis.scale.map(value);
var y = getCateCoordinateOfLine({
axis: yAxis,
ticks: yAxisTicks,
bandSize,
entry,
index
});
if (x == null || y == null) return null;
return {
x,
y,
value,
payload: entry
};
}).filter(Boolean);
}
function LineFn(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultLineProps);
var isPanorama = useIsPanorama();
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "line"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetLegendPayload, { legendPayload: computeLegendPayloadFromAreaData$1(props) }), /* @__PURE__ */ import_react.createElement(SetLineTooltipEntrySettings, {
dataKey: props.dataKey,
data: props.data,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
unit: props.unit,
tooltipType: props.tooltipType,
id
}), /* @__PURE__ */ import_react.createElement(SetCartesianGraphicalItem, {
type: "line",
id,
data: props.data,
xAxisId: props.xAxisId,
yAxisId: props.yAxisId,
zAxisId: 0,
dataKey: props.dataKey,
hide: props.hide,
isPanorama
}), /* @__PURE__ */ import_react.createElement(LineImpl, _extends$20({}, props, { id }))));
}
/**
* @provides LabelListContext
* @provides ErrorBarContext
* @consumes CartesianChartContext
*/
var Line = /* @__PURE__ */ import_react.memo(LineFn, propsAreEqual);
Line.displayName = "Line";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/graphicalItemSelectors.js
function selectXAxisIdFromGraphicalItemId(state, id) {
var _state$graphicalItems, _state$graphicalItems2;
return (_state$graphicalItems = (_state$graphicalItems2 = state.graphicalItems.cartesianItems.find((item) => item.id === id)) === null || _state$graphicalItems2 === void 0 ? void 0 : _state$graphicalItems2.xAxisId) !== null && _state$graphicalItems !== void 0 ? _state$graphicalItems : 0;
}
function selectYAxisIdFromGraphicalItemId(state, id) {
var _state$graphicalItems3, _state$graphicalItems4;
return (_state$graphicalItems3 = (_state$graphicalItems4 = state.graphicalItems.cartesianItems.find((item) => item.id === id)) === null || _state$graphicalItems4 === void 0 ? void 0 : _state$graphicalItems4.yAxisId) !== null && _state$graphicalItems3 !== void 0 ? _state$graphicalItems3 : 0;
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/areaSelectors.js
var selectXAxisWithScale$2 = (state, graphicalItemId, isPanorama) => selectAxisWithScale(state, "xAxis", selectXAxisIdFromGraphicalItemId(state, graphicalItemId), isPanorama);
var selectXAxisTicks$2 = (state, graphicalItemId, isPanorama) => selectTicksOfGraphicalItem(state, "xAxis", selectXAxisIdFromGraphicalItemId(state, graphicalItemId), isPanorama);
var selectYAxisWithScale$2 = (state, graphicalItemId, isPanorama) => selectAxisWithScale(state, "yAxis", selectYAxisIdFromGraphicalItemId(state, graphicalItemId), isPanorama);
var selectYAxisTicks$2 = (state, graphicalItemId, isPanorama) => selectTicksOfGraphicalItem(state, "yAxis", selectYAxisIdFromGraphicalItemId(state, graphicalItemId), isPanorama);
var selectBandSize = createSelector([
selectChartLayout,
selectXAxisWithScale$2,
selectYAxisWithScale$2,
selectXAxisTicks$2,
selectYAxisTicks$2
], (layout, xAxis, yAxis, xAxisTicks, yAxisTicks) => {
if (isCategoricalAxis(layout, "xAxis")) return getBandSizeOfAxis(xAxis, xAxisTicks, false);
return getBandSizeOfAxis(yAxis, yAxisTicks, false);
});
var pickAreaId = (_state, id) => id;
var selectSynchronisedAreaSettings = createSelector([selectUnfilteredCartesianItems, pickAreaId], (graphicalItems, id) => graphicalItems.filter((item) => item.type === "area").find((item) => item.id === id));
var selectNumericalAxisType = (state) => {
return isCategoricalAxis(selectChartLayout(state), "xAxis") ? "yAxis" : "xAxis";
};
var selectNumericalAxisIdFromGraphicalItemId = (state, graphicalItemId) => {
if (selectNumericalAxisType(state) === "yAxis") return selectYAxisIdFromGraphicalItemId(state, graphicalItemId);
return selectXAxisIdFromGraphicalItemId(state, graphicalItemId);
};
var selectNumericalAxisStackGroups = (state, graphicalItemId, isPanorama) => selectStackGroups$1(state, selectNumericalAxisType(state), selectNumericalAxisIdFromGraphicalItemId(state, graphicalItemId), isPanorama);
var selectArea = createSelector([
selectChartLayout,
selectXAxisWithScale$2,
selectYAxisWithScale$2,
selectXAxisTicks$2,
selectYAxisTicks$2,
createSelector([selectSynchronisedAreaSettings, selectNumericalAxisStackGroups], (areaSettings, stackGroups) => {
var _stackGroups$stackId;
if (areaSettings == null || stackGroups == null) return;
var { stackId } = areaSettings;
var stackSeriesIdentifier = getStackSeriesIdentifier(areaSettings);
if (stackId == null || stackSeriesIdentifier == null) return;
var groups = (_stackGroups$stackId = stackGroups[stackId]) === null || _stackGroups$stackId === void 0 ? void 0 : _stackGroups$stackId.stackedData;
var found = groups === null || groups === void 0 ? void 0 : groups.find((v) => v.key === stackSeriesIdentifier);
if (found == null) return;
return found.map((item) => [item[0], item[1]]);
}),
selectChartDataWithIndexesIfNotInPanoramaPosition3,
selectBandSize,
selectSynchronisedAreaSettings,
selectChartBaseValue
], (layout, xAxis, yAxis, xAxisTicks, yAxisTicks, stackedData, _ref, bandSize, areaSettings, chartBaseValue) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref;
if (areaSettings == null || layout !== "horizontal" && layout !== "vertical" || xAxis == null || yAxis == null || xAxisTicks == null || yAxisTicks == null || xAxisTicks.length === 0 || yAxisTicks.length === 0 || bandSize == null) return;
var { data } = areaSettings;
var displayedData;
if (data && data.length > 0) displayedData = data;
else displayedData = chartData === null || chartData === void 0 ? void 0 : chartData.slice(dataStartIndex, dataEndIndex + 1);
if (displayedData == null) return;
return computeArea({
layout,
xAxis,
yAxis,
xAxisTicks,
yAxisTicks,
dataStartIndex,
areaSettings,
stackedData,
displayedData,
chartBaseValue,
bandSize
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/Area.js
var _excluded$14 = ["id"], _excluded2$7 = [
"activeDot",
"animationBegin",
"animationDuration",
"animationEasing",
"connectNulls",
"dot",
"fill",
"fillOpacity",
"hide",
"isAnimationActive",
"legendType",
"stroke",
"xAxisId",
"yAxisId"
];
function _extends$19() {
return _extends$19 = 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$19.apply(null, arguments);
}
function _objectWithoutProperties$14(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$14(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$14(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function ownKeys$18(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$18(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$18(Object(t), !0).forEach(function(r) {
_defineProperty$18(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$18(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$18(e, r, t) {
return (r = _toPropertyKey$18(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$18(t) {
var i = _toPrimitive$18(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$18(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* @inline
*/
/**
* Our base value array has payload in it, and we expose it externally too.
*/
/**
* Internal props, combination of external props + defaultProps + private Recharts state
*/
/**
* External props, intended for end users to fill in
*/
/**
* Because of naming conflict, we are forced to ignore certain (valid) SVG attributes.
*/
function getLegendItemColor(stroke, fill) {
return stroke && stroke !== "none" ? stroke : fill;
}
var computeLegendPayloadFromAreaData = (props) => {
var { dataKey, name, stroke, fill, legendType, hide } = props;
return [{
inactive: hide,
dataKey,
type: legendType,
color: getLegendItemColor(stroke, fill),
value: getTooltipNameProp(name, dataKey),
payload: props
}];
};
var SetAreaTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, data, stroke, strokeWidth, fill, name, hide, unit, tooltipType, id } = _ref;
var tooltipEntrySettings = {
dataDefinedOnItem: data,
getPosition: noop$2,
settings: {
stroke,
strokeWidth,
fill,
dataKey,
nameKey: void 0,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: getLegendItemColor(stroke, fill),
unit,
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
function AreaDotsWrapper(_ref2) {
var { clipPathId, points, props } = _ref2;
var { needClip, dot, dataKey } = props;
var areaProps = svgPropertiesNoEvents(props);
return /* @__PURE__ */ import_react.createElement(Dots, {
points,
dot,
className: "recharts-area-dots",
dotClassName: "recharts-area-dot",
dataKey,
baseProps: areaProps,
needClip,
clipPathId
});
}
function AreaLabelListProvider(_ref3) {
var { showLabels, children, points } = _ref3;
var labelListEntries = points.map((point) => {
var _point$x, _point$y;
var viewBox = {
x: (_point$x = point.x) !== null && _point$x !== void 0 ? _point$x : 0,
y: (_point$y = point.y) !== null && _point$y !== void 0 ? _point$y : 0,
width: 0,
lowerWidth: 0,
upperWidth: 0,
height: 0
};
return _objectSpread$18(_objectSpread$18({}, viewBox), {}, {
value: point.value,
payload: point.payload,
parentViewBox: void 0,
viewBox,
fill: void 0
});
});
return /* @__PURE__ */ import_react.createElement(CartesianLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function StaticArea(_ref4) {
var { points, baseLine, needClip, clipPathId, props } = _ref4;
var { layout, type, stroke, connectNulls, isRange } = props;
var { id } = props, propsWithoutId = _objectWithoutProperties$14(props, _excluded$14);
var allOtherProps = svgPropertiesNoEvents(propsWithoutId);
var propsWithEvents = svgPropertiesAndEvents(propsWithoutId);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, (points === null || points === void 0 ? void 0 : points.length) > 1 && /* @__PURE__ */ import_react.createElement(Layer, { clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : void 0 }, /* @__PURE__ */ import_react.createElement(Curve, _extends$19({}, propsWithEvents, {
id,
points,
connectNulls,
type,
baseLine,
layout,
stroke: "none",
className: "recharts-area-area"
})), stroke !== "none" && /* @__PURE__ */ import_react.createElement(Curve, _extends$19({}, allOtherProps, {
className: "recharts-area-curve",
layout,
type,
connectNulls,
fill: "none",
points
})), stroke !== "none" && isRange && Array.isArray(baseLine) && /* @__PURE__ */ import_react.createElement(Curve, _extends$19({}, allOtherProps, {
className: "recharts-area-curve",
layout,
type,
connectNulls,
fill: "none",
points: baseLine
}))), /* @__PURE__ */ import_react.createElement(AreaDotsWrapper, {
points,
props: propsWithoutId,
clipPathId
}));
}
function VerticalRect(_ref5) {
var _points$, _points;
var { alpha, baseLine, points, strokeWidth } = _ref5;
var startY = (_points$ = points[0]) === null || _points$ === void 0 ? void 0 : _points$.y;
var endY = (_points = points[points.length - 1]) === null || _points === void 0 ? void 0 : _points.y;
if (!isWellBehavedNumber(startY) || !isWellBehavedNumber(endY)) return null;
var height = alpha * Math.abs(startY - endY);
var maxX = Math.max(...points.map((entry) => entry.x || 0));
if (isNumber(baseLine)) maxX = Math.max(baseLine, maxX);
else if (baseLine && Array.isArray(baseLine) && baseLine.length) maxX = Math.max(...baseLine.map((entry) => entry.x || 0), maxX);
if (isNumber(maxX)) return /* @__PURE__ */ import_react.createElement("rect", {
x: 0,
y: startY < endY ? startY : startY - height,
width: maxX + (strokeWidth ? parseInt("".concat(strokeWidth), 10) : 1),
height: Math.floor(height)
});
return null;
}
function HorizontalRect(_ref6) {
var _points$2, _points2;
var { alpha, baseLine, points, strokeWidth } = _ref6;
var startX = (_points$2 = points[0]) === null || _points$2 === void 0 ? void 0 : _points$2.x;
var endX = (_points2 = points[points.length - 1]) === null || _points2 === void 0 ? void 0 : _points2.x;
if (!isWellBehavedNumber(startX) || !isWellBehavedNumber(endX)) return null;
var width = alpha * Math.abs(startX - endX);
var maxY = Math.max(...points.map((entry) => entry.y || 0));
if (isNumber(baseLine)) maxY = Math.max(baseLine, maxY);
else if (baseLine && Array.isArray(baseLine) && baseLine.length) maxY = Math.max(...baseLine.map((entry) => entry.y || 0), maxY);
if (isNumber(maxY)) return /* @__PURE__ */ import_react.createElement("rect", {
x: startX < endX ? startX : startX - width,
y: 0,
width,
height: Math.floor(maxY + (strokeWidth ? parseInt("".concat(strokeWidth), 10) : 1))
});
return null;
}
function ClipRect(_ref7) {
var { alpha, layout, points, baseLine, strokeWidth } = _ref7;
if (layout === "vertical") return /* @__PURE__ */ import_react.createElement(VerticalRect, {
alpha,
points,
baseLine,
strokeWidth
});
return /* @__PURE__ */ import_react.createElement(HorizontalRect, {
alpha,
points,
baseLine,
strokeWidth
});
}
function AreaWithAnimation(_ref8) {
var { needClip, clipPathId, props, previousPointsRef, previousBaselineRef } = _ref8;
var { points, baseLine, isAnimationActive, animationBegin, animationDuration, animationEasing, onAnimationStart, onAnimationEnd } = props;
var animationId = useAnimationId((0, import_react.useMemo)(() => ({
points,
baseLine
}), [points, baseLine]), "recharts-area-");
var layout = useCartesianChartLayout();
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var showLabels = !isAnimating;
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
if (layout == null) return null;
var prevPoints = previousPointsRef.current;
var prevBaseLine = previousBaselineRef.current;
return /* @__PURE__ */ import_react.createElement(AreaLabelListProvider, {
showLabels,
points
}, props.children, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationEnd: handleAnimationEnd,
onAnimationStart: handleAnimationStart,
key: animationId
}, (t) => {
if (prevPoints) {
var prevPointsDiffFactor = prevPoints.length / points.length;
var stepPoints = t === 1 ? points : points.map((entry, index) => {
var prevPointIndex = Math.floor(index * prevPointsDiffFactor);
if (prevPoints[prevPointIndex]) {
var prev = prevPoints[prevPointIndex];
return _objectSpread$18(_objectSpread$18({}, entry), {}, {
x: interpolate(prev.x, entry.x, t),
y: interpolate(prev.y, entry.y, t)
});
}
return entry;
});
var stepBaseLine;
if (isNumber(baseLine)) stepBaseLine = interpolate(prevBaseLine, baseLine, t);
else if (isNullish(baseLine) || isNan(baseLine)) stepBaseLine = interpolate(prevBaseLine, 0, t);
else stepBaseLine = baseLine.map((entry, index) => {
var prevPointIndex = Math.floor(index * prevPointsDiffFactor);
if (Array.isArray(prevBaseLine) && prevBaseLine[prevPointIndex]) {
var prev = prevBaseLine[prevPointIndex];
return _objectSpread$18(_objectSpread$18({}, entry), {}, {
x: interpolate(prev.x, entry.x, t),
y: interpolate(prev.y, entry.y, t)
});
}
return entry;
});
if (t > 0) {
previousPointsRef.current = stepPoints;
previousBaselineRef.current = stepBaseLine;
}
return /* @__PURE__ */ import_react.createElement(StaticArea, {
points: stepPoints,
baseLine: stepBaseLine,
needClip,
clipPathId,
props
});
}
if (t > 0) {
previousPointsRef.current = points;
previousBaselineRef.current = baseLine;
}
return /* @__PURE__ */ import_react.createElement(Layer, null, isAnimationActive && /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement("clipPath", { id: "animationClipPath-".concat(clipPathId) }, /* @__PURE__ */ import_react.createElement(ClipRect, {
alpha: t,
points,
baseLine,
layout,
strokeWidth: props.strokeWidth
}))), /* @__PURE__ */ import_react.createElement(Layer, { clipPath: "url(#animationClipPath-".concat(clipPathId, ")") }, /* @__PURE__ */ import_react.createElement(StaticArea, {
points,
baseLine,
needClip,
clipPathId,
props
})));
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: props.label }));
}
function RenderArea(_ref9) {
var { needClip, clipPathId, props } = _ref9;
var previousPointsRef = (0, import_react.useRef)(null);
var previousBaselineRef = (0, import_react.useRef)();
return /* @__PURE__ */ import_react.createElement(AreaWithAnimation, {
needClip,
clipPathId,
props,
previousPointsRef,
previousBaselineRef
});
}
var AreaWithState = class extends import_react.PureComponent {
render() {
var { hide, dot, points, className, top, left, needClip, xAxisId, yAxisId, width, height, id, baseLine, zIndex } = this.props;
if (hide) return null;
var layerClass = clsx("recharts-area", className);
var clipPathId = id;
var { r, strokeWidth } = getRadiusAndStrokeWidthFromDot(dot);
var clipDot = isClipDot(dot);
var dotSize = r * 2 + strokeWidth;
var activePointsClipPath = needClip ? "url(#clipPath-".concat(clipDot ? "" : "dots-").concat(clipPathId, ")") : void 0;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex }, /* @__PURE__ */ import_react.createElement(Layer, { className: layerClass }, needClip && /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement(GraphicalItemClipPath, {
clipPathId,
xAxisId,
yAxisId
}), !clipDot && /* @__PURE__ */ import_react.createElement("clipPath", { id: "clipPath-dots-".concat(clipPathId) }, /* @__PURE__ */ import_react.createElement("rect", {
x: left - dotSize / 2,
y: top - dotSize / 2,
width: width + dotSize,
height: height + dotSize
}))), /* @__PURE__ */ import_react.createElement(RenderArea, {
needClip,
clipPathId,
props: this.props
})), /* @__PURE__ */ import_react.createElement(ActivePoints, {
points,
mainColor: getLegendItemColor(this.props.stroke, this.props.fill),
itemDataKey: this.props.dataKey,
activeDot: this.props.activeDot,
clipPath: activePointsClipPath
}), this.props.isRange && Array.isArray(baseLine) && /* @__PURE__ */ import_react.createElement(ActivePoints, {
points: baseLine,
mainColor: getLegendItemColor(this.props.stroke, this.props.fill),
itemDataKey: this.props.dataKey,
activeDot: this.props.activeDot,
clipPath: activePointsClipPath
}));
}
};
var defaultAreaProps = {
activeDot: true,
animationBegin: 0,
animationDuration: 1500,
animationEasing: "ease",
connectNulls: false,
dot: false,
fill: "#3182bd",
fillOpacity: .6,
hide: false,
isAnimationActive: "auto",
legendType: "line",
stroke: "#3182bd",
strokeWidth: 1,
type: "linear",
label: false,
xAxisId: 0,
yAxisId: 0,
zIndex: DefaultZIndexes.area
};
function AreaImpl(props) {
var _useAppSelector;
var { activeDot, animationBegin, animationDuration, animationEasing, connectNulls, dot, fill, fillOpacity, hide, isAnimationActive, legendType, stroke, xAxisId, yAxisId } = props, everythingElse = _objectWithoutProperties$14(props, _excluded2$7);
var layout = useChartLayout();
var chartName = useChartName();
var { needClip } = useNeedsClip(xAxisId, yAxisId);
var isPanorama = useIsPanorama();
var { points, isRange, baseLine } = (_useAppSelector = useAppSelector((state) => selectArea(state, props.id, isPanorama))) !== null && _useAppSelector !== void 0 ? _useAppSelector : {};
var plotArea = usePlotArea();
if (layout !== "horizontal" && layout !== "vertical" || plotArea == null) return null;
if (chartName !== "AreaChart" && chartName !== "ComposedChart") return null;
var { height, width, x: left, y: top } = plotArea;
if (!points || !points.length) return null;
return /* @__PURE__ */ import_react.createElement(AreaWithState, _extends$19({}, everythingElse, {
activeDot,
animationBegin,
animationDuration,
animationEasing,
baseLine,
connectNulls,
dot,
fill,
fillOpacity,
height,
hide,
layout,
isAnimationActive,
isRange,
legendType,
needClip,
points,
stroke,
width,
left,
top,
xAxisId,
yAxisId
}));
}
var getBaseValue = (layout, chartBaseValue, itemBaseValue, xAxis, yAxis) => {
var baseValue = itemBaseValue !== null && itemBaseValue !== void 0 ? itemBaseValue : chartBaseValue;
if (isNumber(baseValue)) return baseValue;
var numericAxis = layout === "horizontal" ? yAxis : xAxis;
var domain = numericAxis.scale.domain();
if (numericAxis.type === "number") {
var domainMax = Math.max(domain[0], domain[1]);
var domainMin = Math.min(domain[0], domain[1]);
if (baseValue === "dataMin") return domainMin;
if (baseValue === "dataMax") return domainMax;
return domainMax < 0 ? domainMax : Math.max(Math.min(domain[0], domain[1]), 0);
}
if (baseValue === "dataMin") return domain[0];
if (baseValue === "dataMax") return domain[1];
return domain[0];
};
function computeArea(_ref0) {
var { areaSettings: { connectNulls, baseValue: itemBaseValue, dataKey }, stackedData, layout, chartBaseValue, xAxis, yAxis, displayedData, dataStartIndex, xAxisTicks, yAxisTicks, bandSize } = _ref0;
var hasStack = stackedData && stackedData.length;
var baseValue = getBaseValue(layout, chartBaseValue, itemBaseValue, xAxis, yAxis);
var isHorizontalLayout = layout === "horizontal";
var isRange = false;
var points = displayedData.map((entry, index) => {
var _valueAsArray$, _valueAsArray, _xAxis$scale$map;
var valueAsArray;
if (hasStack) valueAsArray = stackedData[dataStartIndex + index];
else {
var rawValue = getValueByDataKey(entry, dataKey);
if (!Array.isArray(rawValue)) valueAsArray = [baseValue, rawValue];
else {
valueAsArray = rawValue;
isRange = true;
}
}
var value1 = (_valueAsArray$ = (_valueAsArray = valueAsArray) === null || _valueAsArray === void 0 ? void 0 : _valueAsArray[1]) !== null && _valueAsArray$ !== void 0 ? _valueAsArray$ : null;
var isBreakPoint = value1 == null || hasStack && !connectNulls && getValueByDataKey(entry, dataKey) == null;
if (isHorizontalLayout) {
var _yAxis$scale$map;
return {
x: getCateCoordinateOfLine({
axis: xAxis,
ticks: xAxisTicks,
bandSize,
entry,
index
}),
y: isBreakPoint ? null : (_yAxis$scale$map = yAxis.scale.map(value1)) !== null && _yAxis$scale$map !== void 0 ? _yAxis$scale$map : null,
value: valueAsArray,
payload: entry
};
}
return {
x: isBreakPoint ? null : (_xAxis$scale$map = xAxis.scale.map(value1)) !== null && _xAxis$scale$map !== void 0 ? _xAxis$scale$map : null,
y: getCateCoordinateOfLine({
axis: yAxis,
ticks: yAxisTicks,
bandSize,
entry,
index
}),
value: valueAsArray,
payload: entry
};
});
var baseLine;
if (hasStack || isRange) baseLine = points.map((entry) => {
var _xAxis$scale$map2;
var x = Array.isArray(entry.value) ? entry.value[0] : null;
if (isHorizontalLayout) {
var _yAxis$scale$map2;
return {
x: entry.x,
y: x != null && entry.y != null ? (_yAxis$scale$map2 = yAxis.scale.map(x)) !== null && _yAxis$scale$map2 !== void 0 ? _yAxis$scale$map2 : null : null,
payload: entry.payload
};
}
return {
x: x != null ? (_xAxis$scale$map2 = xAxis.scale.map(x)) !== null && _xAxis$scale$map2 !== void 0 ? _xAxis$scale$map2 : null : null,
y: entry.y,
payload: entry.payload
};
});
else baseLine = isHorizontalLayout ? yAxis.scale.map(baseValue) : xAxis.scale.map(baseValue);
return {
points,
baseLine: baseLine !== null && baseLine !== void 0 ? baseLine : 0,
isRange
};
}
function AreaFn(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultAreaProps);
var isPanorama = useIsPanorama();
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "area"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetLegendPayload, { legendPayload: computeLegendPayloadFromAreaData(props) }), /* @__PURE__ */ import_react.createElement(SetAreaTooltipEntrySettings, {
dataKey: props.dataKey,
data: props.data,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
unit: props.unit,
tooltipType: props.tooltipType,
id
}), /* @__PURE__ */ import_react.createElement(SetCartesianGraphicalItem, {
type: "area",
id,
data: props.data,
dataKey: props.dataKey,
xAxisId: props.xAxisId,
yAxisId: props.yAxisId,
zAxisId: 0,
stackId: getNormalizedStackId(props.stackId),
hide: props.hide,
barSize: void 0,
baseValue: props.baseValue,
isPanorama,
connectNulls: props.connectNulls
}), /* @__PURE__ */ import_react.createElement(AreaImpl, _extends$19({}, props, { id }))));
}
/**
* @provides LabelListContext
* @consumes CartesianChartContext
*/
var Area = /* @__PURE__ */ import_react.memo(AreaFn, propsAreEqual);
Area.displayName = "Area";
//#endregion
//#region ../../AppData/Local/Yarn/Berry/cache/tiny-invariant-npm-1.3.3-e622f1447c-10c0.zip/node_modules/tiny-invariant/dist/esm/tiny-invariant.js
var isProduction = false;
var prefix = "Invariant failed";
function invariant(condition, message) {
if (condition) return;
if (isProduction) throw new Error(prefix);
var provided = typeof message === "function" ? message() : message;
var value = provided ? "".concat(prefix, ": ").concat(provided) : prefix;
throw new Error(value);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/BarUtils.js
function _extends$18() {
return _extends$18 = 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$18.apply(null, arguments);
}
function BarRectangle(props) {
return /* @__PURE__ */ import_react.createElement(Shape, _extends$18({
shapeType: "rectangle",
activeClassName: "recharts-active-bar",
inActiveClassName: "recharts-inactive-bar"
}, props));
}
/**
* Safely gets minPointSize from the minPointSize prop if it is a function
* @param minPointSize minPointSize as passed to the Bar component
* @param defaultValue default minPointSize
* @returns minPointSize
*/
var minPointSizeCallback = function minPointSizeCallback(minPointSize) {
var defaultValue = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;
return (value, index) => {
if (isNumber(minPointSize)) return minPointSize;
var isValueNumberOrNil = isNumber(value) || isNullish(value);
if (isValueNumberOrNil) return minPointSize(value, index);
!isValueNumberOrNil && invariant(false, "minPointSize callback function received a value with type of ".concat(typeof value, ". Currently only numbers or null/undefined are supported."));
return defaultValue;
};
};
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/barSelectors.js
var pickIsPanorama$1 = (_state, _id, isPanorama) => isPanorama;
var pickBarId = (_state, id) => id;
var selectSynchronisedBarSettings = createSelector([selectUnfilteredCartesianItems, pickBarId], (graphicalItems, id) => graphicalItems.filter((item) => item.type === "bar").find((item) => item.id === id));
var selectMaxBarSize = createSelector([selectSynchronisedBarSettings], (barSettings) => barSettings === null || barSettings === void 0 ? void 0 : barSettings.maxBarSize);
var pickCells$1 = (_state, _id, _isPanorama, cells) => cells;
var selectAllVisibleBars = createSelector([
selectChartLayout,
selectUnfilteredCartesianItems,
selectXAxisIdFromGraphicalItemId,
selectYAxisIdFromGraphicalItemId,
pickIsPanorama$1
], (layout, allItems, xAxisId, yAxisId, isPanorama) => allItems.filter((i) => {
if (layout === "horizontal") return i.xAxisId === xAxisId;
return i.yAxisId === yAxisId;
}).filter((i) => i.isPanorama === isPanorama).filter((i) => i.hide === false).filter((i) => i.type === "bar"));
var selectBarStackGroups = (state, id, isPanorama) => {
var layout = selectChartLayout(state);
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null || yAxisId == null) return;
if (layout === "horizontal") return selectStackGroups$1(state, "yAxis", yAxisId, isPanorama);
return selectStackGroups$1(state, "xAxis", xAxisId, isPanorama);
};
var selectBarCartesianAxisSize = (state, id) => {
var layout = selectChartLayout(state);
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null || yAxisId == null) return;
if (layout === "horizontal") return selectCartesianAxisSize(state, "xAxis", xAxisId);
return selectCartesianAxisSize(state, "yAxis", yAxisId);
};
var selectBarSizeList = createSelector([
selectAllVisibleBars,
selectRootBarSize,
selectBarCartesianAxisSize
], combineBarSizeList);
var selectBarBandSize = (state, id, isPanorama) => {
var _ref, _getBandSizeOfAxis;
var barSettings = selectSynchronisedBarSettings(state, id);
if (barSettings == null) return 0;
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null || yAxisId == null) return 0;
var layout = selectChartLayout(state);
var globalMaxBarSize = selectRootMaxBarSize(state);
var { maxBarSize: childMaxBarSize } = barSettings;
var maxBarSize = isNullish(childMaxBarSize) ? globalMaxBarSize : childMaxBarSize;
var axis, ticks;
if (layout === "horizontal") {
axis = selectAxisWithScale(state, "xAxis", xAxisId, isPanorama);
ticks = selectTicksOfGraphicalItem(state, "xAxis", xAxisId, isPanorama);
} else {
axis = selectAxisWithScale(state, "yAxis", yAxisId, isPanorama);
ticks = selectTicksOfGraphicalItem(state, "yAxis", yAxisId, isPanorama);
}
return (_ref = (_getBandSizeOfAxis = getBandSizeOfAxis(axis, ticks, true)) !== null && _getBandSizeOfAxis !== void 0 ? _getBandSizeOfAxis : maxBarSize) !== null && _ref !== void 0 ? _ref : 0;
};
var selectAxisBandSize = (state, id, isPanorama) => {
var layout = selectChartLayout(state);
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null || yAxisId == null) return;
var axis, ticks;
if (layout === "horizontal") {
axis = selectAxisWithScale(state, "xAxis", xAxisId, isPanorama);
ticks = selectTicksOfGraphicalItem(state, "xAxis", xAxisId, isPanorama);
} else {
axis = selectAxisWithScale(state, "yAxis", yAxisId, isPanorama);
ticks = selectTicksOfGraphicalItem(state, "yAxis", yAxisId, isPanorama);
}
return getBandSizeOfAxis(axis, ticks);
};
var selectAllBarPositions = createSelector([
selectBarSizeList,
selectRootMaxBarSize,
selectBarGap,
selectBarCategoryGap,
selectBarBandSize,
selectAxisBandSize,
selectMaxBarSize
], combineAllBarPositions);
var selectXAxisWithScale$1 = (state, id, isPanorama) => {
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null) return;
return selectAxisWithScale(state, "xAxis", xAxisId, isPanorama);
};
var selectYAxisWithScale$1 = (state, id, isPanorama) => {
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (yAxisId == null) return;
return selectAxisWithScale(state, "yAxis", yAxisId, isPanorama);
};
var selectXAxisTicks$1 = (state, id, isPanorama) => {
var xAxisId = selectXAxisIdFromGraphicalItemId(state, id);
if (xAxisId == null) return;
return selectTicksOfGraphicalItem(state, "xAxis", xAxisId, isPanorama);
};
var selectYAxisTicks$1 = (state, id, isPanorama) => {
var yAxisId = selectYAxisIdFromGraphicalItemId(state, id);
if (yAxisId == null) return;
return selectTicksOfGraphicalItem(state, "yAxis", yAxisId, isPanorama);
};
var selectBarRectangles = createSelector([
selectChartOffsetInternal,
selectAxisViewBox,
selectXAxisWithScale$1,
selectYAxisWithScale$1,
selectXAxisTicks$1,
selectYAxisTicks$1,
createSelector([selectAllBarPositions, selectSynchronisedBarSettings], combineBarPosition),
selectChartLayout,
selectChartDataWithIndexesIfNotInPanoramaPosition3,
selectAxisBandSize,
createSelector([selectBarStackGroups, selectSynchronisedBarSettings], combineStackedData),
selectSynchronisedBarSettings,
pickCells$1
], (offset, axisViewBox, xAxis, yAxis, xAxisTicks, yAxisTicks, pos, layout, _ref2, bandSize, stackedData, barSettings, cells) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref2;
if (barSettings == null || pos == null || axisViewBox == null || layout !== "horizontal" && layout !== "vertical" || xAxis == null || yAxis == null || xAxisTicks == null || yAxisTicks == null || bandSize == null) return;
var { data } = barSettings;
var displayedData;
if (data != null && data.length > 0) displayedData = data;
else displayedData = chartData === null || chartData === void 0 ? void 0 : chartData.slice(dataStartIndex, dataEndIndex + 1);
if (displayedData == null) return;
return computeBarRectangles({
layout,
barSettings,
pos,
parentViewBox: axisViewBox,
bandSize,
xAxis,
yAxis,
xAxisTicks,
yAxisTicks,
stackedData,
displayedData,
offset,
cells,
dataStartIndex
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/barStackSelectors.js
var pickStackId = (state, stackId) => stackId;
var pickIsPanorama = (state, stackId, isPanorama) => isPanorama;
var selectAllBarIdsInStack = createSelector([createSelector([
pickStackId,
selectUnfilteredCartesianItems,
pickIsPanorama
], (stackId, allItems, isPanorama) => {
return allItems.filter((i) => i.type === "bar").filter((i) => i.stackId === stackId).filter((i) => i.isPanorama === isPanorama).filter((i) => !i.hide);
})], (allBars) => {
return allBars.map((bar) => bar.id);
});
/**
* Takes two rectangles and returns a new rectangle that encompasses both.
* It takes the minimum x and y, and the maximum width and height.
* It handles overlapping rectangles, and rectangles with a gap between them.
* @param rect1
* @param rect2
*/
var expandRectangle = (rect1, rect2) => {
if (!rect1) return rect2;
if (!rect2) return rect1;
var x = Math.min(rect1.x, rect1.x + rect1.width, rect2.x, rect2.x + rect2.width);
var y = Math.min(rect1.y, rect1.y + rect1.height, rect2.y, rect2.y + rect2.height);
var maxX = Math.max(rect1.x, rect1.x + rect1.width, rect2.x, rect2.x + rect2.width);
var maxY = Math.max(rect1.y, rect1.y + rect1.height, rect2.y, rect2.y + rect2.height);
return {
x,
y,
width: maxX - x,
height: maxY - y
};
};
var combineStackRects = (state, stackId, isPanorama) => {
var allBarIds = selectAllBarIdsInStack(state, stackId, isPanorama);
var stackRects = [];
allBarIds.forEach((barId) => {
var rectangles = selectBarRectangles(state, barId, isPanorama, void 0);
rectangles === null || rectangles === void 0 || rectangles.forEach((rect) => {
var rectIndex = rect.originalDataIndex;
stackRects[rectIndex] = expandRectangle(stackRects[rectIndex], rect);
});
});
return stackRects;
};
var selectStackRects = createSelector([
(state) => state,
pickStackId,
pickIsPanorama
], combineStackRects);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/BarStack.js
var _excluded$13 = ["index"];
function _extends$17() {
return _extends$17 = 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$17.apply(null, arguments);
}
function _objectWithoutProperties$13(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$13(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$13(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var BarStackContext = /* @__PURE__ */ (0, import_react.createContext)(void 0);
/**
* Hook to resolve the stack ID for a Bar component.
* If a stack ID is provided via props, it is used directly.
* Otherwise, this will read stack ID from BarStack context if available.
* If both are undefined, it returns undefined.
* @param childStackId
*/
var useStackId = (childStackId) => {
var stackSettings = (0, import_react.useContext)(BarStackContext);
if (stackSettings != null) return stackSettings.stackId;
if (childStackId == null) return;
return getNormalizedStackId(childStackId);
};
var defaultBarStackProps = { radius: 0 };
var getClipPathId = (stackId, index) => {
return "recharts-bar-stack-clip-path-".concat(stackId, "-").concat(index);
};
var useBarStackClipPathUrl = (index) => {
var barStackContext = (0, import_react.useContext)(BarStackContext);
if (barStackContext == null) return;
var { stackId } = barStackContext;
return "url(#".concat(getClipPathId(stackId, index), ")");
};
var BarStackClipLayer = (_ref) => {
var { index } = _ref, rest = _objectWithoutProperties$13(_ref, _excluded$13);
var clipPathUrl = useBarStackClipPathUrl(index);
return /* @__PURE__ */ import_react.createElement(Layer, _extends$17({
className: "recharts-bar-stack-layer",
clipPath: clipPathUrl
}, rest));
};
/**
* This React component will render a clipPath that the individual bars in the stack will reference
* to achieve rounded corners for the entire stack.
*/
var BarStackClipPath = (_ref2) => {
var { stackId, radius } = _ref2;
var isPanorama = useIsPanorama();
var positions = useAppSelector((state) => selectStackRects(state, stackId, isPanorama));
if (positions == null || positions.length === 0) return null;
return /* @__PURE__ */ import_react.createElement("defs", null, positions.map((pos, index) => {
if (pos == null) return null;
var clipPathId = getClipPathId(stackId, index);
return /* @__PURE__ */ import_react.createElement("clipPath", {
key: clipPathId,
id: clipPathId
}, /* @__PURE__ */ import_react.createElement(Rectangle, {
isAnimationActive: false,
isUpdateAnimationActive: false,
x: pos.x,
y: pos.y,
width: pos.width,
height: pos.height,
radius
}));
}));
};
var BarStackImpl = (props) => {
var resolvedStackId = useUniqueId("recharts-bar-stack", getNormalizedStackId(props.stackId));
var { children, radius } = resolveDefaultProps(props, defaultBarStackProps);
var context = (0, import_react.useMemo)(() => ({
stackId: resolvedStackId,
radius
}), [resolvedStackId, radius]);
return /* @__PURE__ */ import_react.createElement(BarStackContext.Provider, { value: context }, /* @__PURE__ */ import_react.createElement(BarStackClipPath, {
stackId: resolvedStackId,
radius
}), children);
};
/**
* @provides BarStackContext
* @since 3.6
*/
var BarStack = /* @__PURE__ */ import_react.memo(BarStackImpl, propsAreEqual);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/Bar.js
var _excluded$12 = [
"onMouseEnter",
"onMouseLeave",
"onClick"
], _excluded2$6 = [
"value",
"background",
"tooltipPosition"
], _excluded3$4 = ["id"], _excluded4$1 = [
"onMouseEnter",
"onClick",
"onMouseLeave"
];
function _extends$16() {
return _extends$16 = 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$16.apply(null, arguments);
}
function ownKeys$17(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$17(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$17(Object(t), !0).forEach(function(r) {
_defineProperty$17(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$17(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$17(e, r, t) {
return (r = _toPropertyKey$17(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$17(t) {
var i = _toPrimitive$17(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$17(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$12(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$12(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$12(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
var computeLegendPayloadFromBarData = (props) => {
var { dataKey, name, fill, legendType, hide } = props;
return [{
inactive: hide,
dataKey,
type: legendType,
color: fill,
value: getTooltipNameProp(name, dataKey),
payload: props
}];
};
var SetBarTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, stroke, strokeWidth, fill, name, hide, unit, tooltipType, id } = _ref;
var tooltipEntrySettings = {
dataDefinedOnItem: void 0,
getPosition: noop$2,
settings: {
stroke,
strokeWidth,
fill,
dataKey,
nameKey: void 0,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: fill,
unit,
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
function BarBackground(props) {
var activeIndex = useAppSelector(selectActiveTooltipIndex);
var { data, dataKey, background: backgroundFromProps, allOtherBarProps } = props;
var { onMouseEnter: onMouseEnterFromProps, onMouseLeave: onMouseLeaveFromProps, onClick: onItemClickFromProps } = allOtherBarProps, restOfAllOtherProps = _objectWithoutProperties$12(allOtherBarProps, _excluded$12);
var onMouseEnterFromContext = useMouseEnterItemDispatch(onMouseEnterFromProps, dataKey, allOtherBarProps.id);
var onMouseLeaveFromContext = useMouseLeaveItemDispatch(onMouseLeaveFromProps);
var onClickFromContext = useMouseClickItemDispatch(onItemClickFromProps, dataKey, allOtherBarProps.id);
if (!backgroundFromProps || data == null) return null;
var backgroundProps = svgPropertiesNoEventsFromUnknown(backgroundFromProps);
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: getZIndexFromUnknown(backgroundFromProps, DefaultZIndexes.barBackground) }, data.map((entry, i) => {
var { value, background: backgroundFromDataEntry, tooltipPosition } = entry, rest = _objectWithoutProperties$12(entry, _excluded2$6);
if (!backgroundFromDataEntry) return null;
var onMouseEnter = onMouseEnterFromContext(entry, i);
var onMouseLeave = onMouseLeaveFromContext(entry, i);
var onClick = onClickFromContext(entry, i);
var barRectangleProps = _objectSpread$17(_objectSpread$17(_objectSpread$17(_objectSpread$17(_objectSpread$17({
option: backgroundFromProps,
isActive: String(i) === activeIndex
}, rest), {}, { fill: "#eee" }, backgroundFromDataEntry), backgroundProps), adaptEventsOfChild(restOfAllOtherProps, entry, i)), {}, {
onMouseEnter,
onMouseLeave,
onClick,
dataKey,
index: i,
className: "recharts-bar-background-rectangle"
});
return /* @__PURE__ */ import_react.createElement(BarRectangle, _extends$16({ key: "background-bar-".concat(i) }, barRectangleProps));
}));
}
function BarLabelListProvider(_ref2) {
var { showLabels, children, rects } = _ref2;
var labelListEntries = rects === null || rects === void 0 ? void 0 : rects.map((entry) => {
var viewBox = {
x: entry.x,
y: entry.y,
width: entry.width,
lowerWidth: entry.width,
upperWidth: entry.width,
height: entry.height
};
return _objectSpread$17(_objectSpread$17({}, viewBox), {}, {
value: entry.value,
payload: entry.payload,
parentViewBox: entry.parentViewBox,
viewBox,
fill: entry.fill
});
});
return /* @__PURE__ */ import_react.createElement(CartesianLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function BarRectangleWithActiveState(props) {
var { shape, activeBar, baseProps, entry, index, dataKey } = props;
var activeIndex = useAppSelector(selectActiveTooltipIndex);
var activeDataKey = useAppSelector(selectActiveTooltipDataKey);
var isActive = activeBar && String(entry.originalDataIndex) === activeIndex && (activeDataKey == null || dataKey === activeDataKey);
var [stayInLayer, setStayInLayer] = (0, import_react.useState)(false);
var [hasMountedActive, setHasMountedActive] = (0, import_react.useState)(false);
(0, import_react.useEffect)(() => {
var rafId;
if (isActive) {
setStayInLayer(true);
rafId = requestAnimationFrame(() => {
setHasMountedActive(true);
});
} else setHasMountedActive(false);
return () => {
cancelAnimationFrame(rafId);
};
}, [isActive]);
var handleTransitionEnd = (0, import_react.useCallback)(() => {
if (!isActive) setStayInLayer(false);
}, [isActive]);
var isVisuallyActive = isActive && hasMountedActive;
var shouldRenderInLayer = isActive || stayInLayer;
var option;
if (isActive) if (activeBar === true) option = shape;
else option = activeBar;
else option = shape;
var content = /* @__PURE__ */ import_react.createElement(BarRectangle, _extends$16({}, baseProps, { name: String(baseProps.name) }, entry, {
isActive: isVisuallyActive,
option,
index,
dataKey,
onTransitionEnd: handleTransitionEnd
}));
if (shouldRenderInLayer) return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: DefaultZIndexes.activeBar }, /* @__PURE__ */ import_react.createElement(BarStackClipLayer, { index: entry.originalDataIndex }, content));
return content;
}
function BarRectangleNeverActive(props) {
var { shape, baseProps, entry, index, dataKey } = props;
return /* @__PURE__ */ import_react.createElement(BarRectangle, _extends$16({}, baseProps, { name: String(baseProps.name) }, entry, {
isActive: false,
option: shape,
index,
dataKey
}));
}
function BarRectangles(_ref3) {
var _svgPropertiesNoEvent;
var { data, props } = _ref3;
var _ref4 = (_svgPropertiesNoEvent = svgPropertiesNoEvents(props)) !== null && _svgPropertiesNoEvent !== void 0 ? _svgPropertiesNoEvent : {}, { id } = _ref4, baseProps = _objectWithoutProperties$12(_ref4, _excluded3$4);
var { shape, dataKey, activeBar } = props;
var { onMouseEnter: onMouseEnterFromProps, onClick: onItemClickFromProps, onMouseLeave: onMouseLeaveFromProps } = props, restOfAllOtherProps = _objectWithoutProperties$12(props, _excluded4$1);
var onMouseEnterFromContext = useMouseEnterItemDispatch(onMouseEnterFromProps, dataKey, id);
var onMouseLeaveFromContext = useMouseLeaveItemDispatch(onMouseLeaveFromProps);
var onClickFromContext = useMouseClickItemDispatch(onItemClickFromProps, dataKey, id);
if (!data) return null;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, data.map((entry, i) => {
return /* @__PURE__ */ import_react.createElement(BarStackClipLayer, _extends$16({
index: entry.originalDataIndex,
key: "rectangle-".concat(entry === null || entry === void 0 ? void 0 : entry.x, "-").concat(entry === null || entry === void 0 ? void 0 : entry.y, "-").concat(entry === null || entry === void 0 ? void 0 : entry.value, "-").concat(i),
className: "recharts-bar-rectangle"
}, adaptEventsOfChild(restOfAllOtherProps, entry, i), {
onMouseEnter: onMouseEnterFromContext(entry, i),
onMouseLeave: onMouseLeaveFromContext(entry, i),
onClick: onClickFromContext(entry, i)
}), activeBar ? /* @__PURE__ */ import_react.createElement(BarRectangleWithActiveState, {
shape,
activeBar,
baseProps,
entry,
index: i,
dataKey
}) : /* @__PURE__ */ import_react.createElement(BarRectangleNeverActive, {
shape,
baseProps,
entry,
index: i,
dataKey
}));
}));
}
function RectanglesWithAnimation(_ref5) {
var { props, previousRectanglesRef } = _ref5;
var { data, layout, isAnimationActive, animationBegin, animationDuration, animationEasing, onAnimationEnd, onAnimationStart } = props;
var prevData = previousRectanglesRef.current;
var animationId = useAnimationId(props, "recharts-bar-");
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var showLabels = !isAnimating;
var handleAnimationEnd = (0, import_react.useCallback)(() => {
if (typeof onAnimationEnd === "function") onAnimationEnd();
setIsAnimating(false);
}, [onAnimationEnd]);
var handleAnimationStart = (0, import_react.useCallback)(() => {
if (typeof onAnimationStart === "function") onAnimationStart();
setIsAnimating(true);
}, [onAnimationStart]);
return /* @__PURE__ */ import_react.createElement(BarLabelListProvider, {
showLabels,
rects: data
}, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationEnd: handleAnimationEnd,
onAnimationStart: handleAnimationStart,
key: animationId
}, (t) => {
var stepData = t === 1 ? data : data === null || data === void 0 ? void 0 : data.map((entry, index) => {
var prev = prevData && prevData[index];
if (prev) return _objectSpread$17(_objectSpread$17({}, entry), {}, {
x: interpolate(prev.x, entry.x, t),
y: interpolate(prev.y, entry.y, t),
width: interpolate(prev.width, entry.width, t),
height: interpolate(prev.height, entry.height, t)
});
if (layout === "horizontal") {
var height = interpolate(0, entry.height, t);
var y = interpolate(entry.stackedBarStart, entry.y, t);
return _objectSpread$17(_objectSpread$17({}, entry), {}, {
y,
height
});
}
var w = interpolate(0, entry.width, t);
var x = interpolate(entry.stackedBarStart, entry.x, t);
return _objectSpread$17(_objectSpread$17({}, entry), {}, {
width: w,
x
});
});
if (t > 0) previousRectanglesRef.current = stepData !== null && stepData !== void 0 ? stepData : null;
if (stepData == null) return null;
return /* @__PURE__ */ import_react.createElement(Layer, null, /* @__PURE__ */ import_react.createElement(BarRectangles, {
props,
data: stepData
}));
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: props.label }), props.children);
}
function RenderRectangles(props) {
var previousRectanglesRef = (0, import_react.useRef)(null);
return /* @__PURE__ */ import_react.createElement(RectanglesWithAnimation, {
previousRectanglesRef,
props
});
}
var defaultMinPointSize = 0;
var errorBarDataPointFormatter$1 = (dataPoint, dataKey) => {
/**
* if the value coming from `selectBarRectangles` is an array then this is a stacked bar chart.
* arr[1] represents end value of the bar since the data is in the form of [startValue, endValue].
* */
var value = Array.isArray(dataPoint.value) ? dataPoint.value[1] : dataPoint.value;
return {
x: dataPoint.x,
y: dataPoint.y,
value,
errorVal: getValueByDataKey(dataPoint, dataKey)
};
};
var BarWithState = class extends import_react.PureComponent {
render() {
var { hide, data, dataKey, className, xAxisId, yAxisId, needClip, background, id } = this.props;
if (hide || data == null) return null;
var layerClass = clsx("recharts-bar", className);
var clipPathId = id;
return /* @__PURE__ */ import_react.createElement(Layer, {
className: layerClass,
id
}, needClip && /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement(GraphicalItemClipPath, {
clipPathId,
xAxisId,
yAxisId
})), /* @__PURE__ */ import_react.createElement(Layer, {
className: "recharts-bar-rectangles",
clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : void 0
}, /* @__PURE__ */ import_react.createElement(BarBackground, {
data,
dataKey,
background,
allOtherBarProps: this.props
}), /* @__PURE__ */ import_react.createElement(RenderRectangles, this.props)));
}
};
var defaultBarProps = {
activeBar: false,
animationBegin: 0,
animationDuration: 400,
animationEasing: "ease",
background: false,
hide: false,
isAnimationActive: "auto",
label: false,
legendType: "rect",
minPointSize: defaultMinPointSize,
xAxisId: 0,
yAxisId: 0,
zIndex: DefaultZIndexes.bar
};
function BarImpl(props) {
var { xAxisId, yAxisId, hide, legendType, minPointSize, activeBar, animationBegin, animationDuration, animationEasing, isAnimationActive } = props;
var { needClip } = useNeedsClip(xAxisId, yAxisId);
var layout = useChartLayout();
var isPanorama = useIsPanorama();
var cells = findAllByType(props.children, Cell);
var rects = useAppSelector((state) => selectBarRectangles(state, props.id, isPanorama, cells));
if (layout !== "vertical" && layout !== "horizontal") return null;
var errorBarOffset;
var firstDataPoint = rects === null || rects === void 0 ? void 0 : rects[0];
if (firstDataPoint == null || firstDataPoint.height == null || firstDataPoint.width == null) errorBarOffset = 0;
else errorBarOffset = layout === "vertical" ? firstDataPoint.height / 2 : firstDataPoint.width / 2;
return /* @__PURE__ */ import_react.createElement(SetErrorBarContext, {
xAxisId,
yAxisId,
data: rects,
dataPointFormatter: errorBarDataPointFormatter$1,
errorBarOffset
}, /* @__PURE__ */ import_react.createElement(BarWithState, _extends$16({}, props, {
layout,
needClip,
data: rects,
xAxisId,
yAxisId,
hide,
legendType,
minPointSize,
activeBar,
animationBegin,
animationDuration,
animationEasing,
isAnimationActive
})));
}
function computeBarRectangles(_ref6) {
var { layout, barSettings: { dataKey, minPointSize: minPointSizeProp, hasCustomShape }, pos, bandSize, xAxis, yAxis, xAxisTicks, yAxisTicks, stackedData, displayedData, offset, cells, parentViewBox, dataStartIndex } = _ref6;
var numericAxis = layout === "horizontal" ? yAxis : xAxis;
var stackedDomain = stackedData ? numericAxis.scale.domain() : null;
var baseValue = getBaseValueOfBar({ numericAxis });
var stackedBarStart = numericAxis.scale.map(baseValue);
return displayedData.map((entry, index) => {
var value, x, y, width, height, background;
if (stackedData) {
var untruncatedValue = stackedData[index + dataStartIndex];
if (untruncatedValue == null) return null;
value = truncateByDomain(untruncatedValue, stackedDomain);
} else {
value = getValueByDataKey(entry, dataKey);
if (!Array.isArray(value)) value = [baseValue, value];
}
var minPointSize = minPointSizeCallback(minPointSizeProp, defaultMinPointSize)(value[1], index);
if (layout === "horizontal") {
var _ref7;
var baseValueScale = yAxis.scale.map(value[0]);
var currentValueScale = yAxis.scale.map(value[1]);
if (baseValueScale == null || currentValueScale == null) return null;
x = getCateCoordinateOfBar({
axis: xAxis,
ticks: xAxisTicks,
bandSize,
offset: pos.offset,
entry,
index
});
y = (_ref7 = currentValueScale !== null && currentValueScale !== void 0 ? currentValueScale : baseValueScale) !== null && _ref7 !== void 0 ? _ref7 : void 0;
width = pos.size;
var computedHeight = baseValueScale - currentValueScale;
height = isNan(computedHeight) ? 0 : computedHeight;
background = {
x,
y: offset.top,
width,
height: offset.height
};
if (Math.abs(minPointSize) > 0 && Math.abs(height) < Math.abs(minPointSize)) {
var delta = mathSign(height || minPointSize) * (Math.abs(minPointSize) - Math.abs(height));
y -= delta;
height += delta;
}
} else {
var _baseValueScale = xAxis.scale.map(value[0]);
var _currentValueScale = xAxis.scale.map(value[1]);
if (_baseValueScale == null || _currentValueScale == null) return null;
x = _baseValueScale;
y = getCateCoordinateOfBar({
axis: yAxis,
ticks: yAxisTicks,
bandSize,
offset: pos.offset,
entry,
index
});
width = _currentValueScale - _baseValueScale;
height = pos.size;
background = {
x: offset.left,
y,
width: offset.width,
height
};
if (Math.abs(minPointSize) > 0 && Math.abs(width) < Math.abs(minPointSize)) {
var _delta = mathSign(width || minPointSize) * (Math.abs(minPointSize) - Math.abs(width));
width += _delta;
}
}
if (x == null || y == null || width == null || height == null || !hasCustomShape && (width === 0 || height === 0)) return null;
return _objectSpread$17(_objectSpread$17({}, entry), {}, {
stackedBarStart,
x,
y,
width,
height,
value: stackedData ? value : value[1],
payload: entry,
background,
tooltipPosition: {
x: x + width / 2,
y: y + height / 2
},
parentViewBox,
originalDataIndex: index
}, cells && cells[index] && cells[index].props);
}).filter(Boolean);
}
function BarFn(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultBarProps);
var stackId = useStackId(props.stackId);
var isPanorama = useIsPanorama();
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "bar"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetLegendPayload, { legendPayload: computeLegendPayloadFromBarData(props) }), /* @__PURE__ */ import_react.createElement(SetBarTooltipEntrySettings, {
dataKey: props.dataKey,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
unit: props.unit,
tooltipType: props.tooltipType,
id
}), /* @__PURE__ */ import_react.createElement(SetCartesianGraphicalItem, {
type: "bar",
id,
data: void 0,
xAxisId: props.xAxisId,
yAxisId: props.yAxisId,
zAxisId: 0,
dataKey: props.dataKey,
stackId,
hide: props.hide,
barSize: props.barSize,
minPointSize: props.minPointSize,
maxBarSize: props.maxBarSize,
isPanorama,
hasCustomShape: props.shape != null
}), /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(BarImpl, _extends$16({}, props, { id })))));
}
/**
* @provides ErrorBarContext
* @provides LabelListContext
* @provides CellReader
* @consumes CartesianChartContext
* @consumes BarStackContext
*/
var Bar = /* @__PURE__ */ import_react.memo(BarFn, propsAreEqual);
Bar.displayName = "Bar";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/ScatterUtils.js
var _excluded$11 = ["option", "isActive"];
function _extends$15() {
return _extends$15 = 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$15.apply(null, arguments);
}
function _objectWithoutProperties$11(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$11(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$11(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function ScatterSymbol(_ref) {
var { option, isActive } = _ref, props = _objectWithoutProperties$11(_ref, _excluded$11);
if (typeof option === "string") return /* @__PURE__ */ import_react.createElement(Shape, _extends$15({
option: /* @__PURE__ */ import_react.createElement(Symbols, _extends$15({ type: option }, props)),
isActive,
shapeType: "symbols"
}, props));
return /* @__PURE__ */ import_react.createElement(Shape, _extends$15({
option,
isActive,
shapeType: "symbols"
}, props));
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/scatterSelectors.js
var selectXAxisWithScale = (state, xAxisId, _yAxisId, _zAxisId, _id, _cells, isPanorama) => selectAxisWithScale(state, "xAxis", xAxisId, isPanorama);
var selectXAxisTicks = (state, xAxisId, _yAxisId, _zAxisId, _id, _cells, isPanorama) => selectTicksOfGraphicalItem(state, "xAxis", xAxisId, isPanorama);
var selectYAxisWithScale = (state, _xAxisId, yAxisId, _zAxisId, _id, _cells, isPanorama) => selectAxisWithScale(state, "yAxis", yAxisId, isPanorama);
var selectYAxisTicks = (state, _xAxisId, yAxisId, _zAxisId, _id, _cells, isPanorama) => selectTicksOfGraphicalItem(state, "yAxis", yAxisId, isPanorama);
var selectZAxis = (state, _xAxisId, _yAxisId, zAxisId) => selectZAxisWithScale(state, "zAxis", zAxisId, false);
var pickScatterId = (_state, _xAxisId, _yAxisId, _zAxisId, id) => id;
var pickCells = (_state, _xAxisId, _yAxisId, _zAxisId, _id, cells) => cells;
var scatterChartDataSelector = (state, _xAxisId, _yAxisId, _zAxisId, _id, _cells, isPanorama) => selectChartDataWithIndexesIfNotInPanoramaPosition4(state, void 0, void 0, isPanorama);
var selectScatterPoints = createSelector([
scatterChartDataSelector,
selectXAxisWithScale,
selectXAxisTicks,
selectYAxisWithScale,
selectYAxisTicks,
selectZAxis,
createSelector([selectUnfilteredCartesianItems, pickScatterId], (graphicalItems, id) => {
return graphicalItems.filter((item) => item.type === "scatter").find((item) => item.id === id);
}),
pickCells
], (_ref, xAxis, xAxisTicks, yAxis, yAxisTicks, zAxis, scatterSettings, cells) => {
var { chartData, dataStartIndex, dataEndIndex } = _ref;
if (scatterSettings == null) return;
var displayedData;
if ((scatterSettings === null || scatterSettings === void 0 ? void 0 : scatterSettings.data) != null && scatterSettings.data.length > 0) displayedData = scatterSettings.data;
else displayedData = chartData === null || chartData === void 0 ? void 0 : chartData.slice(dataStartIndex, dataEndIndex + 1);
if (displayedData == null || xAxis == null || yAxis == null || xAxisTicks == null || yAxisTicks == null || (xAxisTicks === null || xAxisTicks === void 0 ? void 0 : xAxisTicks.length) === 0 || (yAxisTicks === null || yAxisTicks === void 0 ? void 0 : yAxisTicks.length) === 0) return;
return computeScatterPoints({
displayedData,
xAxis,
yAxis,
zAxis,
scatterSettings,
xAxisTicks,
yAxisTicks,
cells
});
});
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/Scatter.js
var _excluded$10 = ["id"], _excluded2$5 = [
"onMouseEnter",
"onClick",
"onMouseLeave"
], _excluded3$3 = [
"animationBegin",
"animationDuration",
"animationEasing",
"hide",
"isAnimationActive",
"legendType",
"lineJointType",
"lineType",
"shape",
"xAxisId",
"yAxisId",
"zAxisId"
];
function _objectWithoutProperties$10(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$10(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$10(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function _extends$14() {
return _extends$14 = 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$14.apply(null, arguments);
}
function ownKeys$16(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$16(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$16(Object(t), !0).forEach(function(r) {
_defineProperty$16(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$16(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$16(e, r, t) {
return (r = _toPropertyKey$16(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$16(t) {
var i = _toPrimitive$16(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$16(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
/**
* Scatter coordinates are nullable because sometimes the point value is out of the domain,
* and we can't compute a valid coordinate for it.
*
* Scatter -> Symbol ignores points with null cx or cy so those won't render if using the default shapes.
* However: the points are exposed via various props and can be used in custom shapes so we keep them around.
*/
/**
* Internal props, combination of external props + defaultProps + private Recharts state
*/
/**
* External props, intended for end users to fill in
*/
/**
* Because of naming conflict, we are forced to ignore certain (valid) SVG attributes.
*/
var computeLegendPayloadFromScatterProps = (props) => {
var { dataKey, name, fill, legendType, hide } = props;
return [{
inactive: hide,
dataKey,
type: legendType,
color: fill,
value: getTooltipNameProp(name, dataKey),
payload: props
}];
};
var SetScatterTooltipEntrySettings = /* @__PURE__ */ import_react.memo((_ref) => {
var { dataKey, points, stroke, strokeWidth, fill, name, hide, tooltipType, id } = _ref;
var tooltipEntrySettings = {
dataDefinedOnItem: points === null || points === void 0 ? void 0 : points.map((p) => p.tooltipPayload),
getPosition: (index) => {
var _points$Number;
return points === null || points === void 0 || (_points$Number = points[Number(index)]) === null || _points$Number === void 0 ? void 0 : _points$Number.tooltipPosition;
},
settings: {
stroke,
strokeWidth,
fill,
nameKey: void 0,
dataKey,
name: getTooltipNameProp(name, dataKey),
hide,
type: tooltipType,
color: fill,
unit: "",
graphicalItemId: id
}
};
return /* @__PURE__ */ import_react.createElement(SetTooltipEntrySettings, { tooltipEntrySettings });
});
function ScatterLine(_ref2) {
var { points, props } = _ref2;
var { line, lineType, lineJointType } = props;
if (!line) return null;
var scatterProps = svgPropertiesNoEvents(props);
var customLineProps = svgPropertiesNoEventsFromUnknown(line);
var linePoints, lineItem;
if (lineType === "joint") linePoints = points.map((entry) => {
var _entry$cx, _entry$cy;
return {
x: (_entry$cx = entry.cx) !== null && _entry$cx !== void 0 ? _entry$cx : null,
y: (_entry$cy = entry.cy) !== null && _entry$cy !== void 0 ? _entry$cy : null
};
});
else if (lineType === "fitting") {
var { xmin, xmax, a, b } = getLinearRegression(points);
var linearExp = (x) => a * x + b;
linePoints = [{
x: xmin,
y: linearExp(xmin)
}, {
x: xmax,
y: linearExp(xmax)
}];
}
var lineProps = _objectSpread$16(_objectSpread$16(_objectSpread$16({}, scatterProps), {}, {
fill: "none",
stroke: scatterProps && scatterProps.fill
}, customLineProps), {}, { points: linePoints });
if (/* @__PURE__ */ import_react.isValidElement(line)) lineItem = /* @__PURE__ */ import_react.cloneElement(line, lineProps);
else if (typeof line === "function") lineItem = line(lineProps);
else lineItem = /* @__PURE__ */ import_react.createElement(Curve, _extends$14({}, lineProps, { type: lineJointType }));
return /* @__PURE__ */ import_react.createElement(Layer, {
className: "recharts-scatter-line",
key: "recharts-scatter-line"
}, lineItem);
}
function ScatterLabelListProvider(_ref3) {
var { showLabels, points, children } = _ref3;
var chartViewBox = useViewBox();
var labelListEntries = (0, import_react.useMemo)(() => {
return points === null || points === void 0 ? void 0 : points.map((point) => {
var _point$x, _point$y;
var viewBox = {
x: (_point$x = point.x) !== null && _point$x !== void 0 ? _point$x : 0,
y: (_point$y = point.y) !== null && _point$y !== void 0 ? _point$y : 0,
width: point.width,
height: point.height,
lowerWidth: point.width,
upperWidth: point.width
};
return _objectSpread$16(_objectSpread$16({}, viewBox), {}, {
value: void 0,
payload: point.payload,
viewBox,
parentViewBox: chartViewBox,
fill: void 0
});
});
}, [chartViewBox, points]);
return /* @__PURE__ */ import_react.createElement(CartesianLabelListContextProvider, { value: showLabels ? labelListEntries : void 0 }, children);
}
function ScatterSymbols(props) {
var { points, allOtherScatterProps } = props;
var { shape, activeShape, dataKey } = allOtherScatterProps;
var { id } = allOtherScatterProps, allOtherPropsWithoutId = _objectWithoutProperties$10(allOtherScatterProps, _excluded$10);
var activeIndex = useAppSelector(selectActiveTooltipIndex);
var { onMouseEnter: onMouseEnterFromProps, onClick: onItemClickFromProps, onMouseLeave: onMouseLeaveFromProps } = allOtherScatterProps, restOfAllOtherProps = _objectWithoutProperties$10(allOtherScatterProps, _excluded2$5);
var onMouseEnterFromContext = useMouseEnterItemDispatch(onMouseEnterFromProps, dataKey, id);
var onMouseLeaveFromContext = useMouseLeaveItemDispatch(onMouseLeaveFromProps);
var onClickFromContext = useMouseClickItemDispatch(onItemClickFromProps, dataKey, id);
if (!isNonEmptyArray(points)) return null;
var baseProps = svgPropertiesNoEvents(allOtherPropsWithoutId);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(ScatterLine, {
points,
props: allOtherPropsWithoutId
}), points.map((entry, i) => {
var hasActiveShape = activeShape != null && activeShape !== false;
var isActive = hasActiveShape && activeIndex === String(i);
var option = hasActiveShape && isActive ? activeShape : shape;
var symbolProps = _objectSpread$16(_objectSpread$16(_objectSpread$16({}, baseProps), entry), {}, {
index: i,
[DATA_ITEM_GRAPHICAL_ITEM_ID_ATTRIBUTE_NAME]: String(id)
});
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, {
key: "symbol-".concat(entry === null || entry === void 0 ? void 0 : entry.cx, "-").concat(entry === null || entry === void 0 ? void 0 : entry.cy, "-").concat(entry === null || entry === void 0 ? void 0 : entry.size, "-").concat(i),
zIndex: isActive ? DefaultZIndexes.activeDot : void 0
}, /* @__PURE__ */ import_react.createElement(Layer, _extends$14({ className: "recharts-scatter-symbol" }, adaptEventsOfChild(restOfAllOtherProps, entry, i), {
onMouseEnter: onMouseEnterFromContext(entry, i),
onMouseLeave: onMouseLeaveFromContext(entry, i),
onClick: onClickFromContext(entry, i)
}), /* @__PURE__ */ import_react.createElement(ScatterSymbol, _extends$14({
option,
isActive
}, symbolProps))));
}));
}
function SymbolsWithAnimation(_ref4) {
var { previousPointsRef, props } = _ref4;
var { points, isAnimationActive, animationBegin, animationDuration, animationEasing } = props;
var prevPoints = previousPointsRef.current;
var animationId = useAnimationId(props, "recharts-scatter-");
var [isAnimating, setIsAnimating] = (0, import_react.useState)(false);
var handleAnimationEnd = (0, import_react.useCallback)(() => {
setIsAnimating(false);
}, []);
var handleAnimationStart = (0, import_react.useCallback)(() => {
setIsAnimating(true);
}, []);
var showLabels = !isAnimating;
return /* @__PURE__ */ import_react.createElement(ScatterLabelListProvider, {
showLabels,
points
}, props.children, /* @__PURE__ */ import_react.createElement(JavascriptAnimate, {
animationId,
begin: animationBegin,
duration: animationDuration,
isActive: isAnimationActive,
easing: animationEasing,
onAnimationEnd: handleAnimationEnd,
onAnimationStart: handleAnimationStart,
key: animationId
}, (t) => {
var stepData = t === 1 ? points : points === null || points === void 0 ? void 0 : points.map((entry, index) => {
var prev = prevPoints && prevPoints[index];
if (prev) return _objectSpread$16(_objectSpread$16({}, entry), {}, {
cx: entry.cx == null ? void 0 : interpolate(prev.cx, entry.cx, t),
cy: entry.cy == null ? void 0 : interpolate(prev.cy, entry.cy, t),
size: interpolate(prev.size, entry.size, t)
});
return _objectSpread$16(_objectSpread$16({}, entry), {}, { size: interpolate(0, entry.size, t) });
});
if (t > 0) previousPointsRef.current = stepData;
return /* @__PURE__ */ import_react.createElement(Layer, null, /* @__PURE__ */ import_react.createElement(ScatterSymbols, {
points: stepData,
allOtherScatterProps: props,
showLabels
}));
}), /* @__PURE__ */ import_react.createElement(LabelListFromLabelProp, { label: props.label }));
}
function computeScatterPoints(_ref5) {
var { displayedData, xAxis, yAxis, zAxis, scatterSettings, xAxisTicks, yAxisTicks, cells } = _ref5;
var xAxisDataKey = isNullish(xAxis.dataKey) ? scatterSettings.dataKey : xAxis.dataKey;
var yAxisDataKey = isNullish(yAxis.dataKey) ? scatterSettings.dataKey : yAxis.dataKey;
var zAxisDataKey = zAxis && zAxis.dataKey;
var defaultRangeZ = zAxis ? zAxis.range : implicitZAxis.range;
var defaultZ = defaultRangeZ && defaultRangeZ[0];
var xBandSize = xAxis.scale.bandwidth ? xAxis.scale.bandwidth() : 0;
var yBandSize = yAxis.scale.bandwidth ? yAxis.scale.bandwidth() : 0;
return displayedData.map((entry, index) => {
var x = getValueByDataKey(entry, xAxisDataKey);
var y = getValueByDataKey(entry, yAxisDataKey);
var z = !isNullish(zAxisDataKey) && getValueByDataKey(entry, zAxisDataKey) || "-";
var tooltipPayload = [{
name: isNullish(xAxis.dataKey) ? scatterSettings.name : xAxis.name || String(xAxis.dataKey),
unit: xAxis.unit || "",
value: x,
payload: entry,
dataKey: xAxisDataKey,
type: scatterSettings.tooltipType,
graphicalItemId: scatterSettings.id
}, {
name: isNullish(yAxis.dataKey) ? scatterSettings.name : yAxis.name || String(yAxis.dataKey),
unit: yAxis.unit || "",
value: y,
payload: entry,
dataKey: yAxisDataKey,
type: scatterSettings.tooltipType,
graphicalItemId: scatterSettings.id
}];
if (z !== "-" && zAxis != null) tooltipPayload.push({
name: zAxis.name || zAxis.dataKey,
unit: zAxis.unit || "",
value: z,
payload: entry,
dataKey: zAxisDataKey,
type: scatterSettings.tooltipType,
graphicalItemId: scatterSettings.id
});
var cx = getCateCoordinateOfLine({
axis: xAxis,
ticks: xAxisTicks,
bandSize: xBandSize,
entry,
index,
dataKey: xAxisDataKey
});
var cy = getCateCoordinateOfLine({
axis: yAxis,
ticks: yAxisTicks,
bandSize: yBandSize,
entry,
index,
dataKey: yAxisDataKey
});
var size = z !== "-" && zAxis != null ? zAxis.scale.map(z) : defaultZ;
var radius = size == null ? 0 : Math.sqrt(Math.max(size, 0) / Math.PI);
return _objectSpread$16(_objectSpread$16({}, entry), {}, {
cx,
cy,
x: cx == null ? void 0 : cx - radius,
y: cy == null ? void 0 : cy - radius,
width: 2 * radius,
height: 2 * radius,
size,
node: {
x,
y,
z
},
tooltipPayload,
tooltipPosition: {
x: cx,
y: cy
},
payload: entry
}, cells && cells[index] && cells[index].props);
});
}
var errorBarDataPointFormatter = (dataPoint, dataKey, direction) => {
return {
x: dataPoint.cx,
y: dataPoint.cy,
value: direction === "x" ? Number(dataPoint.node.x) : Number(dataPoint.node.y),
errorVal: getValueByDataKey(dataPoint, dataKey)
};
};
function ScatterWithId(props) {
var { hide, points, className, needClip, xAxisId, yAxisId, id } = props;
var previousPointsRef = (0, import_react.useRef)(null);
if (hide) return null;
var layerClass = clsx("recharts-scatter", className);
var clipPathId = id;
return /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex: props.zIndex }, /* @__PURE__ */ import_react.createElement(Layer, {
className: layerClass,
clipPath: needClip ? "url(#clipPath-".concat(clipPathId, ")") : void 0,
id
}, needClip && /* @__PURE__ */ import_react.createElement("defs", null, /* @__PURE__ */ import_react.createElement(GraphicalItemClipPath, {
clipPathId,
xAxisId,
yAxisId
})), /* @__PURE__ */ import_react.createElement(SetErrorBarContext, {
xAxisId,
yAxisId,
data: points,
dataPointFormatter: errorBarDataPointFormatter,
errorBarOffset: 0
}, /* @__PURE__ */ import_react.createElement(Layer, { key: "recharts-scatter-symbols" }, /* @__PURE__ */ import_react.createElement(SymbolsWithAnimation, {
props,
previousPointsRef
})))));
}
var defaultScatterProps = {
xAxisId: 0,
yAxisId: 0,
zAxisId: 0,
label: false,
line: false,
legendType: "circle",
lineType: "joint",
lineJointType: "linear",
shape: "circle",
hide: false,
isAnimationActive: "auto",
animationBegin: 0,
animationDuration: 400,
animationEasing: "linear",
zIndex: DefaultZIndexes.scatter
};
function ScatterImpl(props) {
var _resolveDefaultProps = resolveDefaultProps(props, defaultScatterProps), { animationBegin, animationDuration, animationEasing, hide, isAnimationActive, legendType, lineJointType, lineType, shape, xAxisId, yAxisId, zAxisId } = _resolveDefaultProps, everythingElse = _objectWithoutProperties$10(_resolveDefaultProps, _excluded3$3);
var { needClip } = useNeedsClip(xAxisId, yAxisId);
var cells = (0, import_react.useMemo)(() => findAllByType(props.children, Cell), [props.children]);
var isPanorama = useIsPanorama();
var points = useAppSelector((state) => {
return selectScatterPoints(state, xAxisId, yAxisId, zAxisId, props.id, cells, isPanorama);
});
if (needClip == null) return null;
if (points == null) return null;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetScatterTooltipEntrySettings, {
dataKey: props.dataKey,
points,
stroke: props.stroke,
strokeWidth: props.strokeWidth,
fill: props.fill,
name: props.name,
hide: props.hide,
tooltipType: props.tooltipType,
id: props.id
}), /* @__PURE__ */ import_react.createElement(ScatterWithId, _extends$14({}, everythingElse, {
xAxisId,
yAxisId,
zAxisId,
lineType,
lineJointType,
legendType,
shape,
hide,
isAnimationActive,
animationBegin,
animationDuration,
animationEasing,
points,
needClip
})));
}
function ScatterFn(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultScatterProps);
var isPanorama = useIsPanorama();
return /* @__PURE__ */ import_react.createElement(RegisterGraphicalItemId, {
id: props.id,
type: "scatter"
}, (id) => /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetLegendPayload, { legendPayload: computeLegendPayloadFromScatterProps(props) }), /* @__PURE__ */ import_react.createElement(SetCartesianGraphicalItem, {
type: "scatter",
id,
data: props.data,
xAxisId: props.xAxisId,
yAxisId: props.yAxisId,
zAxisId: props.zAxisId,
dataKey: props.dataKey,
hide: props.hide,
name: props.name,
tooltipType: props.tooltipType,
isPanorama
}), /* @__PURE__ */ import_react.createElement(ScatterImpl, _extends$14({}, props, { id }))));
}
/**
* @provides LabelListContext
* @provides ErrorBarContext
* @provides CellReader
* @consumes CartesianChartContext
*/
var Scatter = /* @__PURE__ */ import_react.memo(ScatterFn, propsAreEqual);
Scatter.displayName = "Scatter";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/axisPropsAreEqual.js
var _excluded$9 = ["domain", "range"], _excluded2$4 = ["domain", "range"];
function _objectWithoutProperties$9(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$9(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$9(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function shortArraysAreEqual(arr1, arr2) {
if (arr1 === arr2) return true;
if (Array.isArray(arr1) && arr1.length === 2 && Array.isArray(arr2) && arr2.length === 2) return arr1[0] === arr2[0] && arr1[1] === arr2[1];
return false;
}
/**
* Usually we would not compare array props deeply for performance consideration.
* However, for axis props, domain is sometimes defined as a two-elements array, and range is always
* a two-elements array. So we can do a shallow comparison for the rest props and a shallow
* comparison for these two array props.
* @param prevProps
* @param nextProps
*/
function axisPropsAreEqual(prevProps, nextProps) {
if (prevProps === nextProps) return true;
var { domain: prevDomain, range: prevRange } = prevProps, prevRest = _objectWithoutProperties$9(prevProps, _excluded$9);
var { domain: nextDomain, range: nextRange } = nextProps, nextRest = _objectWithoutProperties$9(nextProps, _excluded2$4);
if (!shortArraysAreEqual(prevDomain, nextDomain)) return false;
if (!shortArraysAreEqual(prevRange, nextRange)) return false;
return propsAreEqual(prevRest, nextRest);
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/XAxis.js
/**
* @fileOverview X Axis
*/
var _excluded$8 = ["type"], _excluded2$3 = [
"dangerouslySetInnerHTML",
"ticks",
"scale"
], _excluded3$2 = ["id", "scale"];
function _extends$13() {
return _extends$13 = 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$13.apply(null, arguments);
}
function ownKeys$15(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$15(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$15(Object(t), !0).forEach(function(r) {
_defineProperty$15(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$15(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$15(e, r, t) {
return (r = _toPropertyKey$15(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$15(t) {
var i = _toPrimitive$15(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$15(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$8(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$8(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$8(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function SetXAxisSettings(props) {
var dispatch = useAppDispatch();
var prevSettingsRef = (0, import_react.useRef)(null);
var layout = useCartesianChartLayout();
var { type: typeFromProps } = props, restProps = _objectWithoutProperties$8(props, _excluded$8);
var evaluatedType = getAxisTypeBasedOnLayout(layout, "xAxis", typeFromProps);
var settings = (0, import_react.useMemo)(() => {
if (evaluatedType == null) return;
return _objectSpread$15(_objectSpread$15({}, restProps), {}, { type: evaluatedType });
}, [restProps, evaluatedType]);
(0, import_react.useLayoutEffect)(() => {
if (settings == null) return;
if (prevSettingsRef.current === null) dispatch(addXAxis(settings));
else if (prevSettingsRef.current !== settings) dispatch(replaceXAxis({
prev: prevSettingsRef.current,
next: settings
}));
prevSettingsRef.current = settings;
}, [settings, dispatch]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevSettingsRef.current) {
dispatch(removeXAxis(prevSettingsRef.current));
prevSettingsRef.current = null;
}
};
}, [dispatch]);
return null;
}
var XAxisImpl = (props) => {
var { xAxisId, className } = props;
var viewBox = useAppSelector(selectAxisViewBox);
var isPanorama = useIsPanorama();
var axisType = "xAxis";
var cartesianTickItems = useAppSelector((state) => selectTicksOfAxis(state, axisType, xAxisId, isPanorama));
var axisSize = useAppSelector((state) => selectXAxisSize(state, xAxisId));
var position = useAppSelector((state) => selectXAxisPosition(state, xAxisId));
var synchronizedSettings = useAppSelector((state) => selectXAxisSettingsNoDefaults(state, xAxisId));
if (axisSize == null || position == null || synchronizedSettings == null) return null;
var { dangerouslySetInnerHTML, ticks, scale: del } = props, allOtherProps = _objectWithoutProperties$8(props, _excluded2$3);
var { id, scale: del2 } = synchronizedSettings, restSynchronizedSettings = _objectWithoutProperties$8(synchronizedSettings, _excluded3$2);
return /* @__PURE__ */ import_react.createElement(CartesianAxis, _extends$13({}, allOtherProps, restSynchronizedSettings, {
x: position.x,
y: position.y,
width: axisSize.width,
height: axisSize.height,
className: clsx("recharts-".concat(axisType, " ").concat(axisType), className),
viewBox,
ticks: cartesianTickItems,
axisType,
axisId: xAxisId
}));
};
var xAxisDefaultProps = {
allowDataOverflow: implicitXAxis.allowDataOverflow,
allowDecimals: implicitXAxis.allowDecimals,
allowDuplicatedCategory: implicitXAxis.allowDuplicatedCategory,
angle: implicitXAxis.angle,
axisLine: defaultCartesianAxisProps.axisLine,
height: implicitXAxis.height,
hide: false,
includeHidden: implicitXAxis.includeHidden,
interval: implicitXAxis.interval,
label: false,
minTickGap: implicitXAxis.minTickGap,
mirror: implicitXAxis.mirror,
orientation: implicitXAxis.orientation,
padding: implicitXAxis.padding,
reversed: implicitXAxis.reversed,
scale: implicitXAxis.scale,
tick: implicitXAxis.tick,
tickCount: implicitXAxis.tickCount,
tickLine: defaultCartesianAxisProps.tickLine,
tickSize: defaultCartesianAxisProps.tickSize,
type: implicitXAxis.type,
niceTicks: implicitXAxis.niceTicks,
xAxisId: 0
};
var XAxisSettingsDispatcher = (outsideProps) => {
var props = resolveDefaultProps(outsideProps, xAxisDefaultProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetXAxisSettings, {
allowDataOverflow: props.allowDataOverflow,
allowDecimals: props.allowDecimals,
allowDuplicatedCategory: props.allowDuplicatedCategory,
angle: props.angle,
dataKey: props.dataKey,
domain: props.domain,
height: props.height,
hide: props.hide,
id: props.xAxisId,
includeHidden: props.includeHidden,
interval: props.interval,
minTickGap: props.minTickGap,
mirror: props.mirror,
name: props.name,
orientation: props.orientation,
padding: props.padding,
reversed: props.reversed,
scale: props.scale,
tick: props.tick,
tickCount: props.tickCount,
tickFormatter: props.tickFormatter,
ticks: props.ticks,
type: props.type,
unit: props.unit,
niceTicks: props.niceTicks
}), /* @__PURE__ */ import_react.createElement(XAxisImpl, props));
};
/**
* @consumes CartesianViewBoxContext
* @provides CartesianLabelContext
*/
var XAxis = /* @__PURE__ */ import_react.memo(XAxisSettingsDispatcher, axisPropsAreEqual);
XAxis.displayName = "XAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/YAxis.js
var _excluded$7 = ["type"], _excluded2$2 = [
"dangerouslySetInnerHTML",
"ticks",
"scale"
], _excluded3$1 = ["id", "scale"];
function _extends$12() {
return _extends$12 = 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$12.apply(null, arguments);
}
function ownKeys$14(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$14(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$14(Object(t), !0).forEach(function(r) {
_defineProperty$14(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$14(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$14(e, r, t) {
return (r = _toPropertyKey$14(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$14(t) {
var i = _toPrimitive$14(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$14(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$7(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$7(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$7(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
function SetYAxisSettings(props) {
var dispatch = useAppDispatch();
var prevSettingsRef = (0, import_react.useRef)(null);
var layout = useCartesianChartLayout();
var { type: typeFromProps } = props, restProps = _objectWithoutProperties$7(props, _excluded$7);
var evaluatedType = getAxisTypeBasedOnLayout(layout, "yAxis", typeFromProps);
var settings = (0, import_react.useMemo)(() => {
if (evaluatedType == null) return;
return _objectSpread$14(_objectSpread$14({}, restProps), {}, { type: evaluatedType });
}, [evaluatedType, restProps]);
(0, import_react.useLayoutEffect)(() => {
if (settings == null) return;
if (prevSettingsRef.current === null) dispatch(addYAxis(settings));
else if (prevSettingsRef.current !== settings) dispatch(replaceYAxis({
prev: prevSettingsRef.current,
next: settings
}));
prevSettingsRef.current = settings;
}, [settings, dispatch]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevSettingsRef.current) {
dispatch(removeYAxis(prevSettingsRef.current));
prevSettingsRef.current = null;
}
};
}, [dispatch]);
return null;
}
function YAxisImpl(props) {
var { yAxisId, className, width, label } = props;
var cartesianAxisRef = (0, import_react.useRef)(null);
var labelRef = (0, import_react.useRef)(null);
var viewBox = useAppSelector(selectAxisViewBox);
var isPanorama = useIsPanorama();
var dispatch = useAppDispatch();
var axisType = "yAxis";
var axisSize = useAppSelector((state) => selectYAxisSize(state, yAxisId));
var position = useAppSelector((state) => selectYAxisPosition(state, yAxisId));
var cartesianTickItems = useAppSelector((state) => selectTicksOfAxis(state, axisType, yAxisId, isPanorama));
var synchronizedSettings = useAppSelector((state) => selectYAxisSettingsNoDefaults(state, yAxisId));
(0, import_react.useLayoutEffect)(() => {
if (width !== "auto" || !axisSize || isLabelContentAFunction(label) || /* @__PURE__ */ (0, import_react.isValidElement)(label) || synchronizedSettings == null) return;
var axisComponent = cartesianAxisRef.current;
if (!axisComponent) return;
var updatedYAxisWidth = axisComponent.getCalculatedWidth();
if (Math.round(axisSize.width) !== Math.round(updatedYAxisWidth)) dispatch(updateYAxisWidth({
id: yAxisId,
width: updatedYAxisWidth
}));
}, [
cartesianTickItems,
axisSize,
dispatch,
label,
yAxisId,
width,
synchronizedSettings
]);
if (axisSize == null || position == null || synchronizedSettings == null) return null;
var { dangerouslySetInnerHTML, ticks, scale: del } = props, allOtherProps = _objectWithoutProperties$7(props, _excluded2$2);
var { id, scale: del2 } = synchronizedSettings, restSynchronizedSettings = _objectWithoutProperties$7(synchronizedSettings, _excluded3$1);
return /* @__PURE__ */ import_react.createElement(CartesianAxis, _extends$12({}, allOtherProps, restSynchronizedSettings, {
ref: cartesianAxisRef,
labelRef,
x: position.x,
y: position.y,
tickTextProps: width === "auto" ? { width: void 0 } : { width },
width: axisSize.width,
height: axisSize.height,
className: clsx("recharts-".concat(axisType, " ").concat(axisType), className),
viewBox,
ticks: cartesianTickItems,
axisType,
axisId: yAxisId
}));
}
var yAxisDefaultProps = {
allowDataOverflow: implicitYAxis.allowDataOverflow,
allowDecimals: implicitYAxis.allowDecimals,
allowDuplicatedCategory: implicitYAxis.allowDuplicatedCategory,
angle: implicitYAxis.angle,
axisLine: defaultCartesianAxisProps.axisLine,
hide: false,
includeHidden: implicitYAxis.includeHidden,
interval: implicitYAxis.interval,
label: false,
minTickGap: implicitYAxis.minTickGap,
mirror: implicitYAxis.mirror,
orientation: implicitYAxis.orientation,
padding: implicitYAxis.padding,
reversed: implicitYAxis.reversed,
scale: implicitYAxis.scale,
tick: implicitYAxis.tick,
tickCount: implicitYAxis.tickCount,
tickLine: defaultCartesianAxisProps.tickLine,
tickSize: defaultCartesianAxisProps.tickSize,
type: implicitYAxis.type,
niceTicks: implicitYAxis.niceTicks,
width: implicitYAxis.width,
yAxisId: 0
};
var YAxisSettingsDispatcher = (outsideProps) => {
var props = resolveDefaultProps(outsideProps, yAxisDefaultProps);
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(SetYAxisSettings, {
interval: props.interval,
id: props.yAxisId,
scale: props.scale,
type: props.type,
domain: props.domain,
allowDataOverflow: props.allowDataOverflow,
dataKey: props.dataKey,
allowDuplicatedCategory: props.allowDuplicatedCategory,
allowDecimals: props.allowDecimals,
tickCount: props.tickCount,
padding: props.padding,
includeHidden: props.includeHidden,
reversed: props.reversed,
ticks: props.ticks,
width: props.width,
orientation: props.orientation,
mirror: props.mirror,
hide: props.hide,
unit: props.unit,
name: props.name,
angle: props.angle,
minTickGap: props.minTickGap,
tick: props.tick,
tickFormatter: props.tickFormatter,
niceTicks: props.niceTicks
}), /* @__PURE__ */ import_react.createElement(YAxisImpl, props));
};
/**
* @consumes CartesianViewBoxContext
* @provides CartesianLabelContext
*/
var YAxis = /* @__PURE__ */ import_react.memo(YAxisSettingsDispatcher, axisPropsAreEqual);
YAxis.displayName = "YAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/ZAxis.js
function SetZAxisSettings(settings) {
var dispatch = useAppDispatch();
var prevSettingsRef = (0, import_react.useRef)(null);
(0, import_react.useLayoutEffect)(() => {
if (prevSettingsRef.current === null) dispatch(addZAxis(settings));
else if (prevSettingsRef.current !== settings) dispatch(replaceZAxis({
prev: prevSettingsRef.current,
next: settings
}));
prevSettingsRef.current = settings;
}, [settings, dispatch]);
(0, import_react.useLayoutEffect)(() => {
return () => {
if (prevSettingsRef.current) {
dispatch(removeZAxis(prevSettingsRef.current));
prevSettingsRef.current = null;
}
};
}, [dispatch]);
return null;
}
var zAxisDefaultProps = {
zAxisId: 0,
range: implicitZAxis.range,
scale: implicitZAxis.scale,
type: implicitZAxis.type
};
/**
* Virtual axis, does not render anything itself. Has no ticks, grid lines, or labels.
* Useful for dynamically setting Scatter point size, based on data.
*
* @consumes CartesianViewBoxContext
*/
function ZAxis(outsideProps) {
var props = resolveDefaultProps(outsideProps, zAxisDefaultProps);
return /* @__PURE__ */ import_react.createElement(SetZAxisSettings, {
domain: props.domain,
id: props.zAxisId,
dataKey: props.dataKey,
name: props.name,
unit: props.unit,
range: props.range,
scale: props.scale,
type: props.type,
allowDuplicatedCategory: implicitZAxis.allowDuplicatedCategory,
allowDataOverflow: implicitZAxis.allowDataOverflow,
reversed: implicitZAxis.reversed,
includeHidden: implicitZAxis.includeHidden
});
}
ZAxis.displayName = "ZAxis";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/animation/CSSTransitionAnimate.js
var defaultProps = {
begin: 0,
duration: 1e3,
easing: "ease",
isActive: true,
canBegin: true,
onAnimationEnd: () => {},
onAnimationStart: () => {}
};
function CSSTransitionAnimate(outsideProps) {
var props = resolveDefaultProps(outsideProps, defaultProps);
var { animationId, from, to, attributeName, isActive: isActiveProp, canBegin, duration, easing, begin, onAnimationEnd, onAnimationStart: onAnimationStartFromProps, children } = props;
var prefersReducedMotion = usePrefersReducedMotion();
var isActive = isActiveProp === "auto" ? !Global.isSsr && !prefersReducedMotion : isActiveProp;
var animationManager = useAnimationManager(animationId + attributeName, props.animationManager);
var [style, setStyle] = (0, import_react.useState)(() => {
if (!isActive) return to;
return from;
});
var initialized = (0, import_react.useRef)(false);
var onAnimationStart = (0, import_react.useCallback)(() => {
setStyle(from);
onAnimationStartFromProps();
}, [from, onAnimationStartFromProps]);
(0, import_react.useEffect)(() => {
if (!isActive || !canBegin) return noop$2;
initialized.current = true;
var unsubscribe = animationManager.subscribe(setStyle);
animationManager.start([
onAnimationStart,
begin,
to,
duration,
onAnimationEnd
]);
return () => {
animationManager.stop();
if (unsubscribe) unsubscribe();
onAnimationEnd();
};
}, [
isActive,
canBegin,
duration,
easing,
begin,
onAnimationStart,
onAnimationEnd,
animationManager,
to,
from
]);
if (!isActive) return children({ [attributeName]: to });
if (!canBegin) return children({ [attributeName]: from });
if (initialized.current) return children({
transition: getTransitionVal([attributeName], duration, easing),
[attributeName]: style
});
return children({ [attributeName]: from });
}
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/cartesian/ErrorBar.js
/**
* @fileOverview Render a group of error bar
*/
var _excluded$6 = [
"direction",
"width",
"dataKey",
"isAnimationActive",
"animationBegin",
"animationDuration",
"animationEasing"
];
function _extends$11() {
return _extends$11 = 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$11.apply(null, arguments);
}
function ownKeys$13(e, r) {
var t = Object.keys(e);
if (Object.getOwnPropertySymbols) {
var o = Object.getOwnPropertySymbols(e);
r && (o = o.filter(function(r) {
return Object.getOwnPropertyDescriptor(e, r).enumerable;
})), t.push.apply(t, o);
}
return t;
}
function _objectSpread$13(e) {
for (var r = 1; r < arguments.length; r++) {
var t = null != arguments[r] ? arguments[r] : {};
r % 2 ? ownKeys$13(Object(t), !0).forEach(function(r) {
_defineProperty$13(e, r, t[r]);
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys$13(Object(t)).forEach(function(r) {
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
});
}
return e;
}
function _defineProperty$13(e, r, t) {
return (r = _toPropertyKey$13(r)) in e ? Object.defineProperty(e, r, {
value: t,
enumerable: !0,
configurable: !0,
writable: !0
}) : e[r] = t, e;
}
function _toPropertyKey$13(t) {
var i = _toPrimitive$13(t, "string");
return "symbol" == typeof i ? i : i + "";
}
function _toPrimitive$13(t, r) {
if ("object" != typeof t || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != typeof i) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
function _objectWithoutProperties$6(e, t) {
if (null == e) return {};
var o, r, i = _objectWithoutPropertiesLoose$6(e, t);
if (Object.getOwnPropertySymbols) {
var n = Object.getOwnPropertySymbols(e);
for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
}
return i;
}
function _objectWithoutPropertiesLoose$6(r, e) {
if (null == r) return {};
var t = {};
for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
if (-1 !== e.indexOf(n)) continue;
t[n] = r[n];
}
return t;
}
/**
* So usually the direction is decided by the chart layout.
* Horizontal layout means error bars are vertical means direction=y
* Vertical layout means error bars are horizontal means direction=x
*
* Except! In Scatter chart, error bars can go both ways.
*
* So this property is only ever used in Scatter chart, and ignored elsewhere.
*/
/**
* External ErrorBar props, visible for users of the library
*/
/**
* Props after defaults, and required props have been applied.
*/
function ErrorBarImpl(props) {
var { direction, width, dataKey, isAnimationActive, animationBegin, animationDuration, animationEasing } = props;
var svgProps = svgPropertiesNoEvents(_objectWithoutProperties$6(props, _excluded$6));
var { data, dataPointFormatter, xAxisId, yAxisId, errorBarOffset: offset } = useErrorBarContext();
var xAxis = useXAxis(xAxisId);
var yAxis = useYAxis(yAxisId);
if ((xAxis === null || xAxis === void 0 ? void 0 : xAxis.scale) == null || (yAxis === null || yAxis === void 0 ? void 0 : yAxis.scale) == null || data == null) return null;
if (direction === "x" && xAxis.type !== "number") return null;
var errorBars = data.map((entry, dataIndex) => {
var { x, y, value, errorVal } = dataPointFormatter(entry, dataKey, direction);
if (!errorVal || x == null || y == null) return null;
var lineCoordinates = [];
var lowBound, highBound;
if (Array.isArray(errorVal)) {
var [low, high] = errorVal;
if (low == null || high == null) return null;
lowBound = low;
highBound = high;
} else lowBound = highBound = errorVal;
if (direction === "x") {
var { scale } = xAxis;
var yMid = y + offset;
var yMin = yMid + width;
var yMax = yMid - width;
var xMin = scale.map(value - lowBound);
var xMax = scale.map(value + highBound);
if (xMin != null && xMax != null) {
lineCoordinates.push({
x1: xMax,
y1: yMin,
x2: xMax,
y2: yMax
});
lineCoordinates.push({
x1: xMin,
y1: yMid,
x2: xMax,
y2: yMid
});
lineCoordinates.push({
x1: xMin,
y1: yMin,
x2: xMin,
y2: yMax
});
}
} else if (direction === "y") {
var { scale: _scale } = yAxis;
var xMid = x + offset;
var _xMin = xMid - width;
var _xMax = xMid + width;
var _yMin = _scale.map(value - lowBound);
var _yMax = _scale.map(value + highBound);
if (_yMin != null && _yMax != null) {
lineCoordinates.push({
x1: _xMin,
y1: _yMax,
x2: _xMax,
y2: _yMax
});
lineCoordinates.push({
x1: xMid,
y1: _yMin,
x2: xMid,
y2: _yMax
});
lineCoordinates.push({
x1: _xMin,
y1: _yMin,
x2: _xMax,
y2: _yMin
});
}
}
var scaleDirection = direction === "x" ? "scaleX" : "scaleY";
var transformOrigin = "".concat(x + offset, "px ").concat(y + offset, "px");
return /* @__PURE__ */ import_react.createElement(Layer, _extends$11({
className: "recharts-errorBar",
key: "bar-".concat(x, "-").concat(y, "-").concat(value, "-").concat(dataIndex)
}, svgProps), lineCoordinates.map((c, lineIndex) => {
var lineStyle = isAnimationActive ? { transformOrigin } : void 0;
return /* @__PURE__ */ import_react.createElement(CSSTransitionAnimate, {
animationId: "error-bar-".concat(direction, "_").concat(c.x1, "-").concat(c.x2, "-").concat(c.y1, "-").concat(c.y2),
from: "".concat(scaleDirection, "(0)"),
to: "".concat(scaleDirection, "(1)"),
attributeName: "transform",
begin: animationBegin,
easing: animationEasing,
isActive: isAnimationActive,
duration: animationDuration,
key: "errorbar-".concat(dataIndex, "-").concat(c.x1, "-").concat(c.y1, "-").concat(c.x2, "-").concat(c.y2, "-").concat(lineIndex)
}, (style) => /* @__PURE__ */ import_react.createElement("line", _extends$11({}, c, { style: _objectSpread$13(_objectSpread$13({}, lineStyle), style) })));
}));
});
return /* @__PURE__ */ import_react.createElement(Layer, { className: "recharts-errorBars" }, errorBars);
}
function useErrorBarDirection(directionFromProps) {
var layout = useChartLayout();
if (directionFromProps != null) return directionFromProps;
if (layout != null) return layout === "horizontal" ? "y" : "x";
return "x";
}
var errorBarDefaultProps = {
stroke: "black",
strokeWidth: 1.5,
width: 5,
offset: 0,
isAnimationActive: true,
animationBegin: 0,
animationDuration: 400,
animationEasing: "ease-in-out",
zIndex: DefaultZIndexes.line
};
/**
* ErrorBar renders whiskers to represent error margins on a chart.
*
* It must be a child of a graphical element.
*
* ErrorBar expects data in one of the following forms:
* - Symmetric error bars: a single error value representing both lower and upper bounds.
* - Asymmetric error bars: an array of two values representing lower and upper bounds separately. First value is the lower bound, second value is the upper bound.
*
* The values provided are relative to the main data value.
* For example, if the main data value is 10 and the error value is 2,
* the error bar will extend from 8 to 12 for symmetric error bars.
*
* In other words, what ErrorBar will render is:
* - For symmetric error bars: [value - errorVal, value + errorVal]
* - For asymmetric error bars: [value - errorVal[0], value + errorVal[1]]
*
* In stacked or ranged Bar charts, ErrorBar will use the higher data value
* as the reference point for calculating the error bar positions.
*
* @consumes ErrorBarContext
*/
function ErrorBar(outsideProps) {
var realDirection = useErrorBarDirection(outsideProps.direction);
var props = resolveDefaultProps(outsideProps, errorBarDefaultProps);
var { width, isAnimationActive, animationBegin, animationDuration, animationEasing, zIndex } = props;
return /* @__PURE__ */ import_react.createElement(import_react.Fragment, null, /* @__PURE__ */ import_react.createElement(ReportErrorBarSettings, {
dataKey: props.dataKey,
direction: realDirection
}), /* @__PURE__ */ import_react.createElement(ZIndexLayer, { zIndex }, /* @__PURE__ */ import_react.createElement(ErrorBarImpl, _extends$11({}, props, {
direction: realDirection,
width,
isAnimationActive,
animationBegin,
animationDuration,
animationEasing
}))));
}
ErrorBar.displayName = "ErrorBar";
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/state/selectors/selectActivePropsFromChartPointer.js
var pickChartPointer = (_state, chartPointer) => chartPointer;
var selectActivePropsFromChartPointer = createSelector([
pickChartPointer,
selectChartLayout,
selectPolarViewBox,
selectTooltipAxisType,
selectTooltipAxisRangeWithReverse,
selectTooltipAxisTicks,
selectOrderedTooltipTicks,
selectChartOffsetInternal
], combineActiveProps);
//#endregion
//#region .yarn/__virtual__/recharts-virtual-325d88ca36/3/AppData/Local/Yarn/Berry/cache/recharts-npm-3.8.1-9f57b72cb4-10c0.zip/node_modules/recharts/es6/util/getRelativeCoordinate.js
/**
* Type guard to check if the pointer event is from an SVG element.
*/
function isSvgPointer(pointer) {
return "getBBox" in pointer.currentTarget && typeof pointer.currentTarget.getBBox === "function";
}
/**
* Computes relative element coordinates from mouse or touch event.
*
* The output coordinates are relative to the top-left corner of the active element (= currentTarget),
* where the top-left corner is (0, 0).
* Moving right, the x-coordinate increases, and moving down, the y-coordinate increases.
*
* The coordinates are rounded to the nearest integer and account for CSS transform scale.
* So element that's scaled will return the same coordinates as element that's not scaled.
*
* In other words: you zoom in or out, numbers stay the same.
*
* This function works with both HTML elements and SVG elements.
*
* It works with both Mouse and Touch events.
* For Touch events, it returns an array of coordinates, one for each touch point.
* For Mouse events, it returns a single coordinate object.
*
* @example
* ```tsx
* // In an HTML element event handler. Legend passes the native event as the 3rd argument.
*