Skip to content

Commit

Permalink
rerun format
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-js committed Aug 2, 2024
1 parent c655115 commit 6cfb5b7
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
"typescript": "^5.3.3"
},
"packageManager": "npm@9.6.6+sha1.553376bb7b5de4b1cf2b5f3471f674b678c7e14d"
}
}
16 changes: 8 additions & 8 deletions packages/playground/src/samples/made-by-aokiapp/cms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const schema = Type.Object(
Type.String({
title: 'サブタイトル',
description: 'サブタイトルをつけると、より一層読み手を惹きつけることができます。',
})
}),
),
tags: Type.Array(
Type.String({
Expand All @@ -22,7 +22,7 @@ const schema = Type.Object(
uniqueItems: true,
title: 'タグ',
description: 'タグをつけると、検索しやすくなります。',
}
},
),
body: Type.String({
title: '本文',
Expand All @@ -36,21 +36,21 @@ const schema = Type.Object(
uniqueItems: true,
title: '画像',
description: '本文中に挿入する画像を選択してください。画像は最大10枚まで挿入できます。',
}
},
),
thumbnail: Type.Optional(
Type.String({
title: 'サムネイル',
description: '設定しない場合は、本文中の最初の画像がサムネイルになります。',
format: 'data-url',
})
}),
),
publishedAt: Type.Optional(
Type.String({
title: '公開日時',
description: '設定しない場合は、すぐに公開されます。',
format: 'date-time',
})
}),
),
scope: NamedStringEnum(
{
Expand All @@ -62,19 +62,19 @@ const schema = Type.Object(
{
title: '公開範囲',
description: '公開範囲を設定します。',
}
},
),
price: Type.Optional(
Type.Number({
title: '価格',
description: '価格を設定します。',
minimum: 0,
})
}),
),
},
{
title: '',
}
},
);

const uiSchema = {
Expand Down
68 changes: 34 additions & 34 deletions packages/playground/src/samples/made-by-aokiapp/hsema.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const userIdentInfo = Type.Object(
},
{
title: '性別',
}
},
),
birthDate: Type.String({
title: '生年月日',
Expand All @@ -49,7 +49,7 @@ const userIdentInfo = Type.Object(
{
title: '',
$id: '#/definitions/userIdentInfo',
}
},
);

const definitions = {
Expand All @@ -66,7 +66,7 @@ const subjectEnum = NamedStringEnum(
},
{
title: '受験科目',
}
},
);
const schema = Type.Object(
{
Expand Down Expand Up @@ -94,7 +94,7 @@ const schema = Type.Object(
{
title: '管理情報',
description: '出願に対する管理上の事項です。',
}
},
),
acceptanceInfo: Type.Object(
{
Expand All @@ -115,13 +115,13 @@ const schema = Type.Object(
{
title: '申請状況',
description: '申請の状況を選択してください。',
}
},
),
},
{
title: '受付情報',
description: '受付に関する情報です。',
}
},
),
examinee: Type.Object(
{
Expand All @@ -139,7 +139,7 @@ const schema = Type.Object(
readOnly: true,
}),
},
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' }
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' },
),
applicant: ObjectIfThenElse(
Type.Object({
Expand All @@ -150,7 +150,7 @@ const schema = Type.Object(
},
{
title: '申請者の有無',
}
},
),
}),
Type.Object({
Expand All @@ -162,7 +162,7 @@ const schema = Type.Object(
{
title: '申請者情報',
description: '本申請書を提出し、連絡や書類の返送を受けるための連絡先を入力してください',
}
},
),

guardian: ObjectIfThenElse(
Expand All @@ -173,7 +173,7 @@ const schema = Type.Object(
sameAsApplicant: '申請者と同じ',
other: '申請者と異なる',
},
{ title: '保護者の有無' }
{ title: '保護者の有無' },
),
}),
Type.Object({
Expand All @@ -185,7 +185,7 @@ const schema = Type.Object(
{
title: '保護者情報',
description: '保護者または成年後見人の情報を入力してください',
}
},
),

applicationInfo: Type.Object(
Expand All @@ -204,7 +204,7 @@ const schema = Type.Object(
subdepartment: Type.Optional(
Type.String({
title: '学科/専攻等名',
})
}),
),
departmentCode: Type.String({
title: '学科/専攻等コード',
Expand All @@ -220,7 +220,7 @@ const schema = Type.Object(
{
title: '入学種別',
examples: [0],
}
},
),
enterAt: Type.String({
title: '入学年月',
Expand All @@ -234,7 +234,7 @@ const schema = Type.Object(
{
title: '出願情報',
description: '申請書に記載される出願に関する情報を入力してください。',
}
},
),
examinationInfo: Type.Object(
{
Expand All @@ -261,21 +261,21 @@ const schema = Type.Object(
title: '受験科目と問題番号',
description: '受験する科目と問題番号を入力してください。',
uniqueItems: true,
}
},
),
},
{
title: '試験情報',
description: '当日の試験に関する情報を入力してください。',
}
},
),
handicap: Type.Object(
{
isMild: Type.Optional(
Type.Boolean({
title: '軽症者特例',
description: '軽症者特例を適用しますか?',
})
}),
),
vision: Type.Optional(
NamedStringEnum(
Expand All @@ -289,8 +289,8 @@ const schema = Type.Object(
},
{
title: '視覚',
}
)
},
),
),
hearing: Type.Optional(
NamedStringEnum(
Expand All @@ -300,8 +300,8 @@ const schema = Type.Object(
},
{
title: '聴覚',
}
)
},
),
),
physical: Type.Optional(
NamedStringEnum(
Expand All @@ -314,8 +314,8 @@ const schema = Type.Object(
},
{
title: '肢体不自由',
}
)
},
),
),
developmental: Type.Optional(
NamedStringEnum(
Expand All @@ -324,8 +324,8 @@ const schema = Type.Object(
},
{
title: '発達障害',
}
)
},
),
),
needPreExamHelp: Type.Boolean({
title: '試験前の配慮',
Expand All @@ -336,19 +336,19 @@ const schema = Type.Object(
Type.String({
title: '障害の特徴に関する自由記述欄',
description: '障害について記入してください。',
})
}),
),
helps: Type.Optional(
Type.String({
title: '配慮内容に関する自由記述欄',
description: '配慮内容について記入してください。',
})
}),
),
},
{
title: '配慮の有無',
description: '受験上の配慮についての情報を入力してください。',
}
},
),
fee: Type.Object(
{
Expand All @@ -373,13 +373,13 @@ const schema = Type.Object(
{
uniqueItems: true,
title: '特例',
}
},
),
},
{
title: '受験料等',
description: '受験料等に関する情報を入力してください。',
}
},
),
delay: ObjectIfThenElse(
Type.Object({
Expand All @@ -405,7 +405,7 @@ const schema = Type.Object(
}),
{
title: '遅延出願',
}
},
),
memo: Type.Object(
{
Expand All @@ -421,18 +421,18 @@ const schema = Type.Object(
{
title: 'メモアイテム',
description: 'メモのアイテムです。',
}
},
),
},
{
title: 'メモ・申し送り',
description: '操作者別のメモや申し送りです。',
}
},
),
},
{
definitions,
}
},
);

function UserIdentInfoField(props: FieldProps) {
Expand Down

0 comments on commit 6cfb5b7

Please sign in to comment.