chore: update application configuration and UI components for improved styling and functionality
This commit is contained in:
parent
0af6b17792
commit
37ab8d7bab
54 changed files with 23293 additions and 1666 deletions
|
|
@ -35,10 +35,10 @@ export const useScenariosStore = defineStore("scenarios", () => {
|
|||
|
||||
// What-if sliders state
|
||||
const sliders = ref({
|
||||
monthlyRevenue: 12000,
|
||||
paidHoursPerMonth: 320,
|
||||
winRatePct: 70,
|
||||
avgPayoutDelayDays: 30,
|
||||
monthlyRevenue: 0,
|
||||
paidHoursPerMonth: 0,
|
||||
winRatePct: 0,
|
||||
avgPayoutDelayDays: 0,
|
||||
hourlyWageAdjust: 0,
|
||||
});
|
||||
|
||||
|
|
@ -47,9 +47,9 @@ export const useScenariosStore = defineStore("scenarios", () => {
|
|||
|
||||
// Computed scenario results (will be calculated by composables)
|
||||
const scenarioResults = computed(() => ({
|
||||
runway: 2.8,
|
||||
monthlyCosts: 8700,
|
||||
cashflowRisk: "medium",
|
||||
runway: 0,
|
||||
monthlyCosts: 0,
|
||||
cashflowRisk: "low",
|
||||
recommendations: [],
|
||||
}));
|
||||
|
||||
|
|
@ -66,10 +66,10 @@ export const useScenariosStore = defineStore("scenarios", () => {
|
|||
|
||||
function resetSliders() {
|
||||
sliders.value = {
|
||||
monthlyRevenue: 12000,
|
||||
paidHoursPerMonth: 320,
|
||||
winRatePct: 70,
|
||||
avgPayoutDelayDays: 30,
|
||||
monthlyRevenue: 0,
|
||||
paidHoursPerMonth: 0,
|
||||
winRatePct: 0,
|
||||
avgPayoutDelayDays: 0,
|
||||
hourlyWageAdjust: 0,
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue