css refactor

This commit is contained in:
2026-02-19 18:24:36 +03:00
parent d5a5c3b902
commit db47e4ce55
45 changed files with 1798 additions and 1857 deletions

View File

@@ -10,9 +10,12 @@
import { t } from '../../lib/i18n';
/** @type {Object} */
export let documentation = null;
export let onSave = async (doc) => {};
export let onCancel = () => {};
let {
content = "",
type = 'markdown',
format = 'text',
} = $props();
let isSaving = false;

View File

@@ -12,8 +12,11 @@
import { requestApi } from '../../lib/api';
/** @type {Array} */
export let providers = [];
export let onSave = () => {};
let {
provider,
config = {},
} = $props();
let editingProvider = null;
let showForm = false;

View File

@@ -3,7 +3,10 @@
<!-- @PURPOSE: Displays the results of an LLM-based dashboard validation task. -->
<script>
export let result = null;
let {
report,
} = $props();
function getStatusColor(status) {
switch (status) {