Remove XCUI demo panel from editor

This commit is contained in:
2026-04-07 20:43:31 +08:00
parent 901a6ecc26
commit fe00aa1305
6 changed files with 0 additions and 219 deletions

View File

@@ -1,23 +0,0 @@
<Theme name="XCUIDemoTheme">
<Token name="color.surface" type="color" value="#11161D" />
<Token name="color.surface.elevated" type="color" value="#1A212B" />
<Token name="color.surface.debug" type="color" value="#121820" />
<Token name="color.text.primary" type="color" value="#F2F5F8" />
<Token name="color.text.muted" type="color" value="#9AA8B7" />
<Token name="color.outline" type="color" value="#485666" />
<Token name="color.accent" type="color" value="#49B5FF" />
<Token name="color.accent.alt" type="color" value="#FF9A52" />
<Token name="color.button.text" type="color" value="#0D131A" />
<Token name="space.compact" type="float" value="6" />
<Token name="space.regular" type="float" value="10" />
<Token name="space.loose" type="float" value="14" />
<Token name="padding.panel" type="thickness" value="18" />
<Token name="padding.card" type="thickness" value="14" />
<Token name="padding.button" type="thickness" value="12,10,12,10" />
<Token name="radius.card" type="corner-radius" value="10" />
<Token name="radius.button" type="corner-radius" value="8" />
<Token name="font.body" type="float" value="14" />
<Token name="font.title" type="float" value="20" />
<Token name="font.metric" type="float" value="16" />
<Token name="line.default" type="float" value="1" />
</Theme>

View File

@@ -1,33 +0,0 @@
<View name="XCUI Demo" theme="xcui_demo_theme.xctheme" style="Root">
<Column id="root" gap="12" padding="18">
<Card id="hero" style="HeroCard">
<Row id="heroRow" gap="12">
<StatusDot id="statusDot" />
<Column id="heroCopy" gap="4" width="stretch">
<Text id="title" text="XCUI Demo" style="HeroTitle" />
<Text id="subtitle" text="Markup -> Tree -> Layout -> Style -> Input -> DrawData" style="HeroSubtitle" />
</Column>
</Row>
</Card>
<Row id="metrics" gap="12">
<Card id="metricPipeline" style="MetricCard" width="stretch">
<Text text="Pipeline" style="MetricLabel" />
<Text text="True XCUI path" style="MetricValue" />
</Card>
<Card id="metricBackend" style="MetricCard" width="stretch">
<Text text="Backend" style="MetricLabel" />
<Text text="ImGui transition" style="MetricValue" />
</Card>
</Row>
<Button id="toggleAccent" style="AccentButton" action="demo.toggleAccent">
<Text id="toggleLabel" text="Toggle Accent" style="ButtonLabel" />
</Button>
<Card id="debugCard" style="DebugCard">
<Column id="debugStack" gap="4">
<Text id="focusStatus" style="Meta" />
<Text id="treeStatus" style="Meta" />
<Text id="commandStatus" style="Meta" />
</Column>
</Card>
</Column>
</View>