Skip to content

Commit 6cfb5b7

Browse files
committed
rerun format
1 parent c655115 commit 6cfb5b7

File tree

3 files changed

+43
-43
lines changed

3 files changed

+43
-43
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@
4848
"typescript": "^5.3.3"
4949
},
5050
"packageManager": "[email protected]+sha1.553376bb7b5de4b1cf2b5f3471f674b678c7e14d"
51-
}
51+
}

packages/playground/src/samples/made-by-aokiapp/cms.tsx

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const schema = Type.Object(
1212
Type.String({
1313
title: 'サブタイトル',
1414
description: 'サブタイトルをつけると、より一層読み手を惹きつけることができます。',
15-
})
15+
}),
1616
),
1717
tags: Type.Array(
1818
Type.String({
@@ -22,7 +22,7 @@ const schema = Type.Object(
2222
uniqueItems: true,
2323
title: 'タグ',
2424
description: 'タグをつけると、検索しやすくなります。',
25-
}
25+
},
2626
),
2727
body: Type.String({
2828
title: '本文',
@@ -36,21 +36,21 @@ const schema = Type.Object(
3636
uniqueItems: true,
3737
title: '画像',
3838
description: '本文中に挿入する画像を選択してください。画像は最大10枚まで挿入できます。',
39-
}
39+
},
4040
),
4141
thumbnail: Type.Optional(
4242
Type.String({
4343
title: 'サムネイル',
4444
description: '設定しない場合は、本文中の最初の画像がサムネイルになります。',
4545
format: 'data-url',
46-
})
46+
}),
4747
),
4848
publishedAt: Type.Optional(
4949
Type.String({
5050
title: '公開日時',
5151
description: '設定しない場合は、すぐに公開されます。',
5252
format: 'date-time',
53-
})
53+
}),
5454
),
5555
scope: NamedStringEnum(
5656
{
@@ -62,19 +62,19 @@ const schema = Type.Object(
6262
{
6363
title: '公開範囲',
6464
description: '公開範囲を設定します。',
65-
}
65+
},
6666
),
6767
price: Type.Optional(
6868
Type.Number({
6969
title: '価格',
7070
description: '価格を設定します。',
7171
minimum: 0,
72-
})
72+
}),
7373
),
7474
},
7575
{
7676
title: '',
77-
}
77+
},
7878
);
7979

8080
const uiSchema = {

packages/playground/src/samples/made-by-aokiapp/hsema.tsx

+34-34
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const userIdentInfo = Type.Object(
2828
},
2929
{
3030
title: '性別',
31-
}
31+
},
3232
),
3333
birthDate: Type.String({
3434
title: '生年月日',
@@ -49,7 +49,7 @@ const userIdentInfo = Type.Object(
4949
{
5050
title: '',
5151
$id: '#/definitions/userIdentInfo',
52-
}
52+
},
5353
);
5454

5555
const definitions = {
@@ -66,7 +66,7 @@ const subjectEnum = NamedStringEnum(
6666
},
6767
{
6868
title: '受験科目',
69-
}
69+
},
7070
);
7171
const schema = Type.Object(
7272
{
@@ -94,7 +94,7 @@ const schema = Type.Object(
9494
{
9595
title: '管理情報',
9696
description: '出願に対する管理上の事項です。',
97-
}
97+
},
9898
),
9999
acceptanceInfo: Type.Object(
100100
{
@@ -115,13 +115,13 @@ const schema = Type.Object(
115115
{
116116
title: '申請状況',
117117
description: '申請の状況を選択してください。',
118-
}
118+
},
119119
),
120120
},
121121
{
122122
title: '受付情報',
123123
description: '受付に関する情報です。',
124-
}
124+
},
125125
),
126126
examinee: Type.Object(
127127
{
@@ -139,7 +139,7 @@ const schema = Type.Object(
139139
readOnly: true,
140140
}),
141141
},
142-
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' }
142+
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' },
143143
),
144144
applicant: ObjectIfThenElse(
145145
Type.Object({
@@ -150,7 +150,7 @@ const schema = Type.Object(
150150
},
151151
{
152152
title: '申請者の有無',
153-
}
153+
},
154154
),
155155
}),
156156
Type.Object({
@@ -162,7 +162,7 @@ const schema = Type.Object(
162162
{
163163
title: '申請者情報',
164164
description: '本申請書を提出し、連絡や書類の返送を受けるための連絡先を入力してください',
165-
}
165+
},
166166
),
167167

168168
guardian: ObjectIfThenElse(
@@ -173,7 +173,7 @@ const schema = Type.Object(
173173
sameAsApplicant: '申請者と同じ',
174174
other: '申請者と異なる',
175175
},
176-
{ title: '保護者の有無' }
176+
{ title: '保護者の有無' },
177177
),
178178
}),
179179
Type.Object({
@@ -185,7 +185,7 @@ const schema = Type.Object(
185185
{
186186
title: '保護者情報',
187187
description: '保護者または成年後見人の情報を入力してください',
188-
}
188+
},
189189
),
190190

191191
applicationInfo: Type.Object(
@@ -204,7 +204,7 @@ const schema = Type.Object(
204204
subdepartment: Type.Optional(
205205
Type.String({
206206
title: '学科/専攻等名',
207-
})
207+
}),
208208
),
209209
departmentCode: Type.String({
210210
title: '学科/専攻等コード',
@@ -220,7 +220,7 @@ const schema = Type.Object(
220220
{
221221
title: '入学種別',
222222
examples: [0],
223-
}
223+
},
224224
),
225225
enterAt: Type.String({
226226
title: '入学年月',
@@ -234,7 +234,7 @@ const schema = Type.Object(
234234
{
235235
title: '出願情報',
236236
description: '申請書に記載される出願に関する情報を入力してください。',
237-
}
237+
},
238238
),
239239
examinationInfo: Type.Object(
240240
{
@@ -261,21 +261,21 @@ const schema = Type.Object(
261261
title: '受験科目と問題番号',
262262
description: '受験する科目と問題番号を入力してください。',
263263
uniqueItems: true,
264-
}
264+
},
265265
),
266266
},
267267
{
268268
title: '試験情報',
269269
description: '当日の試験に関する情報を入力してください。',
270-
}
270+
},
271271
),
272272
handicap: Type.Object(
273273
{
274274
isMild: Type.Optional(
275275
Type.Boolean({
276276
title: '軽症者特例',
277277
description: '軽症者特例を適用しますか?',
278-
})
278+
}),
279279
),
280280
vision: Type.Optional(
281281
NamedStringEnum(
@@ -289,8 +289,8 @@ const schema = Type.Object(
289289
},
290290
{
291291
title: '視覚',
292-
}
293-
)
292+
},
293+
),
294294
),
295295
hearing: Type.Optional(
296296
NamedStringEnum(
@@ -300,8 +300,8 @@ const schema = Type.Object(
300300
},
301301
{
302302
title: '聴覚',
303-
}
304-
)
303+
},
304+
),
305305
),
306306
physical: Type.Optional(
307307
NamedStringEnum(
@@ -314,8 +314,8 @@ const schema = Type.Object(
314314
},
315315
{
316316
title: '肢体不自由',
317-
}
318-
)
317+
},
318+
),
319319
),
320320
developmental: Type.Optional(
321321
NamedStringEnum(
@@ -324,8 +324,8 @@ const schema = Type.Object(
324324
},
325325
{
326326
title: '発達障害',
327-
}
328-
)
327+
},
328+
),
329329
),
330330
needPreExamHelp: Type.Boolean({
331331
title: '試験前の配慮',
@@ -336,19 +336,19 @@ const schema = Type.Object(
336336
Type.String({
337337
title: '障害の特徴に関する自由記述欄',
338338
description: '障害について記入してください。',
339-
})
339+
}),
340340
),
341341
helps: Type.Optional(
342342
Type.String({
343343
title: '配慮内容に関する自由記述欄',
344344
description: '配慮内容について記入してください。',
345-
})
345+
}),
346346
),
347347
},
348348
{
349349
title: '配慮の有無',
350350
description: '受験上の配慮についての情報を入力してください。',
351-
}
351+
},
352352
),
353353
fee: Type.Object(
354354
{
@@ -373,13 +373,13 @@ const schema = Type.Object(
373373
{
374374
uniqueItems: true,
375375
title: '特例',
376-
}
376+
},
377377
),
378378
},
379379
{
380380
title: '受験料等',
381381
description: '受験料等に関する情報を入力してください。',
382-
}
382+
},
383383
),
384384
delay: ObjectIfThenElse(
385385
Type.Object({
@@ -405,7 +405,7 @@ const schema = Type.Object(
405405
}),
406406
{
407407
title: '遅延出願',
408-
}
408+
},
409409
),
410410
memo: Type.Object(
411411
{
@@ -421,18 +421,18 @@ const schema = Type.Object(
421421
{
422422
title: 'メモアイテム',
423423
description: 'メモのアイテムです。',
424-
}
424+
},
425425
),
426426
},
427427
{
428428
title: 'メモ・申し送り',
429429
description: '操作者別のメモや申し送りです。',
430-
}
430+
},
431431
),
432432
},
433433
{
434434
definitions,
435-
}
435+
},
436436
);
437437

438438
function UserIdentInfoField(props: FieldProps) {

0 commit comments

Comments
 (0)