Skip to content

Commit 7305619

Browse files
committed
git cache
1 parent c3c191d commit 7305619

File tree

5 files changed

+1585
-1
lines changed

5 files changed

+1585
-1
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
.idea
1+
.idea
2+
docs/.vitepress/cache
3+
docs/.vitepress/dist
4+
node_modules
5+
.DS_Store

docs/.vitepress/config.mts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import { defineConfig } from 'vitepress'
2+
3+
// https://vitepress.dev/reference/site-config
4+
export default defineConfig({
5+
title: "FilamentPHP Custom Fields",
6+
description: "Filament plugin that allows to add dynamic, user-defined form fields, enhancing the customization and functionality of admin panels.",
7+
themeConfig: {
8+
// https://vitepress.dev/reference/default-theme-config
9+
nav: [
10+
{ text: 'Home', link: '/' },
11+
{ text: 'Documentation', link: '/introduction' },
12+
{ text: 'Buy', link: 'https://relaticle.lemonsqueezy.com/buy/803d5933-4b12-4869-9d93-f96797339603'}
13+
],
14+
15+
sidebar: [
16+
{
17+
text: 'Getting Started',
18+
items: [
19+
{ text: 'Introduction', link: '/introduction' },
20+
{ text: 'Installation', link: '/installation' }
21+
]
22+
},
23+
{
24+
text: 'Usage',
25+
items: [
26+
{
27+
text: 'Setting Up', link: '/setting-up',
28+
},
29+
{
30+
text: 'Configuration', link: '/configuration'
31+
},
32+
{
33+
text: 'Presets', link: '/presets'
34+
}
35+
]
36+
}
37+
],
38+
39+
socialLinks: [
40+
{ icon: 'github', link: 'https://github.com/Relaticle' }
41+
]
42+
},
43+
ignoreDeadLinks: true
44+
})

docs/index.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
# https://vitepress.dev/reference/default-theme-home-page
3+
layout: home
4+
5+
hero:
6+
name: "FilamentPHP Custom Fields"
7+
tagline: "Filament plugin that allows to add dynamic, user-defined form fields, enhancing the customization and functionality of admin panels."
8+
actions:
9+
- theme: brand
10+
text: Buy Now
11+
link: https://relaticle.lemonsqueezy.com/buy/803d5933-4b12-4869-9d93-f96797339603
12+
- theme: alt
13+
text: View Documentation
14+
link: /introduction
15+
16+
features:
17+
- title: Wide Variety of Field Types
18+
details: Support for various field types including Text, Number, Link, Textarea, Currency, Date, and more. Additional field types to be added soon.
19+
20+
- title: Dynamic Field Management
21+
details: Easily create, edit, and delete custom fields. Assign custom fields to any Filament resource and organize them using a drag-and-drop interface.
22+
23+
- title: Validation and Data Integrity
24+
details: Define validation rules for each custom field to ensure data integrity and prevent invalid data submissions.
25+
26+
- title: Seamless Integration with Filament
27+
details: Dynamically render custom fields within Filament forms and table views. Full support for dark mode and responsive design.
28+
29+
- title: Advanced Features
30+
details: Includes a Custom Field Builder for easy creation and management. Supports multi-tenancy, tenant awareness, and is compatible with Filament's features.
31+
32+
---
33+

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"devDependencies": {
3+
"vitepress": "^1.4.2"
4+
},
5+
"scripts": {
6+
"docs:dev": "vitepress dev docs",
7+
"docs:build": "vitepress build docs",
8+
"docs:preview": "vitepress preview docs"
9+
}
10+
}

0 commit comments

Comments
 (0)