-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
852 additions
and
561 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
return [ | ||
'label' => 'Category', | ||
'plural_label' => 'Categories', | ||
'navigation_label' => 'Categories', | ||
'name' => 'Name', | ||
'slug' => 'Slug', | ||
'ordering' => 'Ordering', | ||
'is_active' => 'Is Active', | ||
'not_active' => 'Not Active', | ||
'description' => 'Description', | ||
'logo' => 'Logo', | ||
'Forms' => 'forms', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
return [ | ||
'label' => 'Collection', | ||
'plural_label' => 'Collections', | ||
'navigation_label' => 'Collections', | ||
'name' => 'Collections Name', | ||
'values' => 'Collections Values', | ||
'value' => 'Value', | ||
'key' => 'what the user will see', | ||
'key_help' => 'what store in the form', | ||
'default' => 'selected by default', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
return [ | ||
'checkbox_list' => [ | ||
'title' => 'Checkbox List', | ||
'description' => 'checkbox items from data source', | ||
], | ||
'color_picker' => [ | ||
'title' => 'Color Picker', | ||
'description' => 'pick a color with rgb, rgba or hsl', | ||
], | ||
'date_picker' => [ | ||
'title' => 'Date Picker', | ||
'description' => 'full date picker', | ||
], | ||
'date_time_picker' => [ | ||
'title' => 'Date Time Picker', | ||
'description' => 'full date and time picker', | ||
], | ||
'file_upload' => [ | ||
'title' => 'File Upload', | ||
'description' => 'single or multiple file uploader', | ||
], | ||
'paragraph' => [ | ||
'title' => 'Paragraph', | ||
'description' => 'display a paragraph in your form', | ||
], | ||
'radio' => [ | ||
'title' => 'Radio', | ||
'description' => 'single choice from a datasource', | ||
], | ||
'rich_editor' => [ | ||
'title' => 'Rich Editor', | ||
'description' => 'Text editor with styling', | ||
], | ||
'select' => [ | ||
'title' => 'Select Menu', | ||
'description' => 'select single or multiple items from a dropdown list', | ||
], | ||
'textarea' => [ | ||
'title' => 'Textarea', | ||
'description' => 'multi line textarea', | ||
], | ||
'text_input' => [ | ||
'title' => 'Text Input', | ||
'description' => 'text input', | ||
], | ||
'time_picker' => [ | ||
'title' => 'Time Picker', | ||
'description' => 'time picker', | ||
], | ||
'toggle' => [ | ||
'title' => 'Toggle', | ||
'description' => 'toggle', | ||
], | ||
]; |
Oops, something went wrong.