Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
29
frontend/node_modules/recharts/lib/state/polarOptionsSlice.js
generated
vendored
Normal file
29
frontend/node_modules/recharts/lib/state/polarOptionsSlice.js
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.updatePolarOptions = exports.polarOptionsReducer = void 0;
|
||||
var _toolkit = require("@reduxjs/toolkit");
|
||||
var initialState = null;
|
||||
var reducers = {
|
||||
updatePolarOptions: (state, action) => {
|
||||
if (state === null) {
|
||||
return action.payload;
|
||||
}
|
||||
state.startAngle = action.payload.startAngle;
|
||||
state.endAngle = action.payload.endAngle;
|
||||
state.cx = action.payload.cx;
|
||||
state.cy = action.payload.cy;
|
||||
state.innerRadius = action.payload.innerRadius;
|
||||
state.outerRadius = action.payload.outerRadius;
|
||||
return state;
|
||||
}
|
||||
};
|
||||
var polarOptionsSlice = (0, _toolkit.createSlice)({
|
||||
name: 'polarOptions',
|
||||
initialState,
|
||||
reducers
|
||||
});
|
||||
var updatePolarOptions = exports.updatePolarOptions = polarOptionsSlice.actions.updatePolarOptions;
|
||||
var polarOptionsReducer = exports.polarOptionsReducer = polarOptionsSlice.reducer;
|
||||
Loading…
Add table
Add a link
Reference in a new issue