feat: 开发时钟连线

This commit is contained in:
R524809
2026-07-29 16:41:29 +08:00
parent 37586b7bf2
commit 2ffd0b302d
15 changed files with 780 additions and 14 deletions
@@ -14,15 +14,9 @@ export const UNRELEASED_PAGE_ENTRIES: UnreleasedPageEntry[] = [
path: '/mathPages/clockReading/clockReading',
},
{
id: 'pen-control-sheet',
title: '控笔',
subtitle: '控笔练习',
path: '/chinesePages/penControlSheet/penControlSheet',
},
{
id: 'word-test-sheet',
title: '测字表',
subtitle: '测字表',
path: '/chinesePages/wordTestSheet/wordTestSheet',
id: 'clock-connect',
title: '时钟连线',
subtitle: '看钟表连对应时间,认识时刻',
path: '/mathPages/clockConnect/clockConnect',
},
];
@@ -1,6 +1,7 @@
import { MOCK_SEED_COUNTS } from './mockLikes';
import {
MATH_WORKSHEET_DEFINITIONS,
CLOCK_CONNECT_WORKSHEET_DEFINITIONS,
FOCUS_WORKSHEET_DEFINITIONS,
LETTER_TRACING_WORKSHEET_DEFINITIONS,
PINYIN_DICTATION_WORKSHEET_DEFINITIONS,
@@ -79,6 +80,10 @@ const CONFIG_SOURCES: ConfigSource[] = [
label: 'wordColoring',
data: WORD_COLORING_WORKSHEET_DEFINITIONS,
},
{
label: 'clockConnect',
data: CLOCK_CONNECT_WORKSHEET_DEFINITIONS,
},
];
function isWorksheetDefinition(value: unknown): value is WorksheetDefinition {