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
@@ -13,3 +13,17 @@ export const CLOCK_READING_WORKSHEET_DEFINITIONS = [
sortOrder: 127,
},
] as const satisfies ReadonlyArray<WorksheetDefinition>;
export const CLOCK_CONNECT_WORKSHEET_DEFINITIONS = [
{
id: 'clock-connect',
icon: 'clock',
title: '时钟连线',
subtitle: '看钟表连对应时间,认识时刻',
ageMin: 4,
ageMax: 7,
difficulty: 2,
tags: ['数学', '钟表', '时间', '连线'],
sortOrder: 128,
},
] as const satisfies ReadonlyArray<WorksheetDefinition>;
+4 -1
View File
@@ -1,6 +1,9 @@
export type { WorksheetDefinition } from './types';
export { MATH_WORKSHEET_DEFINITIONS } from './math';
export { CLOCK_READING_WORKSHEET_DEFINITIONS } from './clockReading';
export {
CLOCK_READING_WORKSHEET_DEFINITIONS,
CLOCK_CONNECT_WORKSHEET_DEFINITIONS,
} from './clock';
export { FOCUS_WORKSHEET_DEFINITIONS } from './focus';
export { LETTER_TRACING_WORKSHEET_DEFINITIONS } from './letterTracing';
export { PINYIN_DICTATION_WORKSHEET_DEFINITIONS } from './pinyin';