initial commit after project creation

This commit is contained in:
Gerhard Scheikl
2026-04-01 09:38:50 +02:00
commit b02af637d4
292 changed files with 61408 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
import { FileStructureField } from "@/tina/customFields/file-structure";
export const FileStructureTemplate = {
name: "fileStructure",
label: "File Structure",
fields: [
{
type: "object",
name: "fileStructure",
label: "File Structure",
ui: {
component: FileStructureField,
},
list: true,
fields: [
{
type: "string",
name: "id",
label: "ID",
},
{
type: "string",
name: "name",
label: "Name",
},
{
type: "string",
name: "type",
label: "Type",
},
{
type: "string",
name: "parentId",
label: "Parent ID",
},
],
},
{
type: "string",
name: "caption",
label: "Caption",
description: "Optional caption that appears under the component",
},
],
};