feat: 开发练习纸

This commit is contained in:
R524809
2026-08-25 15:40:38 +08:00
parent c0b8666257
commit f82ac4d89d
13 changed files with 1238 additions and 1 deletions
+1
View File
@@ -10,3 +10,4 @@ export { PINYIN_DICTATION_WORKSHEET_DEFINITIONS } from './pinyin';
export { PEN_CONTROL_WORKSHEET_DEFINITIONS } from './penControl';
export { WORD_COLORING_WORKSHEET_DEFINITIONS } from './wordColoring';
export { WORD_TEST_WORKSHEET_DEFINITIONS } from './wordTest';
export { PAPER_SHEET_WORKSHEET_DEFINITIONS } from './papers';
+26
View File
@@ -0,0 +1,26 @@
import type { WorksheetDefinition } from './types';
export const PAPER_SHEET_WORKSHEET_DEFINITIONS = [
{
id: 'paper-sheet',
icon: 'draw-o',
title: '作业纸',
subtitle: '田字格 / 方格 / 信纸等多种作业纸一键打印',
ageMin: 3,
ageMax: 12,
difficulty: 1,
tags: [
'作业纸',
'田字格',
'米字格',
'方格',
'四线三格',
'信纸',
'横线',
'竖线',
'听写',
'作业登记表',
],
sortOrder: 50,
},
] as const satisfies ReadonlyArray<WorksheetDefinition>;