import type { RequiredDataFromCollection } from 'payload/types' import type { ArrayField } from '../../payload-types.js' export const arrayDoc: RequiredDataFromCollection = { arrayWithMinRows: [ { text: 'first row', }, { text: 'second row', }, ], collapsedArray: [ { text: 'initialize collapsed', }, ], items: [ { text: 'first row', }, { text: 'second row', }, { text: 'third row', }, { text: 'fourth row', }, { text: 'fifth row', }, { text: 'sixth row', }, ], title: 'array doc 1', } export const anotherArrayDoc: RequiredDataFromCollection = { arrayWithMinRows: [ { text: 'first row', }, { text: 'second row', }, ], collapsedArray: [ { text: 'initialize collapsed', }, ], items: [ { text: 'first row', }, { text: 'second row', }, { text: 'third row', }, ], title: 'array doc 2', }