Update content through Mattrbld

This commit is contained in:
2025-02-08 10:13:00 -06:00
parent f574a1eb9d
commit 2dd18e38c6
6 changed files with 124 additions and 86 deletions

View File

@@ -5,7 +5,7 @@
"disablePreview": false, "disablePreview": false,
"draftByDefault": false, "draftByDefault": false,
"schemas": [ "schemas": [
"/.mattrbld/schemas/skills.json" "/.mattrbld/schemas/Skills.json"
], ],
"linkable": false, "linkable": false,
"maxSize": null, "maxSize": null,

View File

@@ -46,6 +46,9 @@
"onlyPrivileged": true, "onlyPrivileged": true,
"protected": true "protected": true
}, },
{
"separator": true
},
{ {
"icon": "bullet-list", "icon": "bullet-list",
"label": "Skills", "label": "Skills",

View File

@@ -1,13 +1,79 @@
{ {
"fields": [ "fields": [
{ {
"type": "group", "type": "rows",
"displayField": null, "default": null,
"icon": "group", "icon": "rows",
"key": "skills", "key": "skills",
"label": "Skills", "label": "Skills",
"options": {
"compact": true,
"allowEditing": true,
"itemLabel": "Row"
},
"tab": "Untitled Tab", "tab": "Untitled Tab",
"validation": {
"max": null,
"min": null,
"unit": "rows"
},
"value": [ "value": [
{
"type": "select",
"default": null,
"icon": "dropdown",
"key": "category",
"label": "Category",
"options": {
"filterable": false,
"removable": false,
"placeholder": "Select a value…",
"options": [
"Experienced"
]
},
"tab": "Untitled Tab",
"validation": {
"required": true
},
"value": null,
"version": 1,
"visibility": {
"hidden": false,
"showByValue": {
"field": null
}
}
},
{
"type": "select",
"default": null,
"icon": "dropdown",
"key": "group",
"label": "Group",
"options": {
"filterable": false,
"removable": false,
"placeholder": "Select a value…",
"options": [
"Infrastructure as Code",
"Front-End Web Development",
"CI/CD"
]
},
"tab": "Untitled Tab",
"validation": {
"required": true
},
"value": null,
"version": 1,
"visibility": {
"hidden": false,
"showByValue": {
"field": null
}
}
},
{ {
"type": "rows", "type": "rows",
"default": null, "default": null,
@@ -26,67 +92,11 @@
"unit": "rows" "unit": "rows"
}, },
"value": [ "value": [
{
"type": "select",
"default": null,
"icon": "dropdown",
"key": "category",
"label": "Category",
"options": {
"filterable": false,
"removable": false,
"placeholder": "Select a value…",
"options": [
"Experienced"
]
},
"tab": "Untitled Tab",
"validation": {
"required": false
},
"value": null,
"version": 1,
"visibility": {
"hidden": false,
"showByValue": {
"field": null
}
}
},
{
"type": "select",
"default": null,
"icon": "dropdown",
"key": "group",
"label": "Group",
"options": {
"filterable": false,
"removable": false,
"placeholder": "Select a value…",
"options": [
"Front-End Web Development",
"Infrastructure as Code",
"CI/CD"
]
},
"tab": "Untitled Tab",
"validation": {
"required": false
},
"value": null,
"version": 1,
"visibility": {
"hidden": false,
"showByValue": {
"field": null
}
}
},
{ {
"type": "text", "type": "text",
"default": null, "default": null,
"icon": "text-input", "icon": "text-input",
"key": "skill", "key": "name",
"label": "Skill", "label": "Skill",
"localised": false, "localised": false,
"options": { "options": {
@@ -100,7 +110,7 @@
"min": null, "min": null,
"regex": null, "regex": null,
"regexError": null, "regexError": null,
"required": false, "required": true,
"unit": "length" "unit": "length"
}, },
"value": null, "value": null,

View File

@@ -1,5 +0,0 @@
{
"rows": null,
"___mb_schema": "/.mattrbld/schemas/Skills.json",
"___mb_unedited": true
}

View File

@@ -1,19 +0,0 @@
{
"skills": {
"rows": [
{
"___mb_type": "category",
"category": "Experienced"
},
{
"___mb_type": "group",
"group": "Front-End Web Development"
},
{
"___mb_type": "skill",
"skill": "React"
}
]
},
"___mb_schema": "/.mattrbld/schemas/skills.json"
}

49
skills/skills3.json Normal file
View File

@@ -0,0 +1,49 @@
{
"skills": [
{
"___mb_type": "category",
"category": "Experienced"
},
{
"___mb_type": "group",
"group": "Front-End Web Development"
},
{
"___mb_type": "rows",
"rows": [
"React",
"Node.js",
"HTML/CSS"
]
},
{
"___mb_type": "category",
"category": "Experienced"
},
{
"___mb_type": "group",
"group": "Infrastructure as Code"
},
{
"___mb_type": "rows",
"rows": [
"Terraform"
]
},
{
"___mb_type": "category",
"category": "Experienced"
},
{
"___mb_type": "group",
"group": "CI/CD"
},
{
"___mb_type": "rows",
"rows": [
"GitHub Actions"
]
}
],
"___mb_schema": "/.mattrbld/schemas/Skills.json"
}