├── .github └── contributing.md ├── .gitignore ├── assets ├── js │ ├── add.js │ ├── clone.js │ ├── count.js │ ├── delete.js │ ├── id.js │ ├── outline.js │ ├── render.js │ ├── script.js │ ├── sort.js │ ├── toggleActive.js │ ├── toggleDropdown.js │ └── trigger.js └── scss │ ├── action-items.scss │ ├── delete-message.scss │ ├── dropdown.scss │ ├── empty.scss │ ├── grid.scss │ ├── has-fieldsets.scss │ ├── outline.scss │ ├── output.scss │ ├── plugins.scss │ ├── row-actions.scss │ ├── skeleton.scss │ ├── sort.scss │ ├── style.scss │ └── table.scss ├── docs ├── advanced-for-plugin-developers.md ├── blueprint.md ├── changelog.md ├── compare.md ├── examples.md ├── fields.md ├── fieldsets.png ├── hero.png ├── install.md ├── license.md ├── nesting.png ├── options.md ├── presentation.png ├── screenshot.png ├── screenshots.md ├── sorting.png ├── templates-snippets.md ├── troubleshooting.md └── usage.md ├── field-engineer.php ├── fields └── engineer │ ├── assets │ ├── css │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.css.min.map │ │ └── style.min.css │ └── js │ │ ├── script.js │ │ └── script.min.js │ └── engineer.php ├── gulpfile.js ├── lib ├── field.php ├── form.php ├── outline.php ├── presentation-array.php ├── presentation.php └── tpl.php ├── package.json ├── readme.md ├── snippets ├── actions.php ├── delete.php ├── dropdown.php ├── outline.php ├── presentation.php ├── row-actions.php ├── row-empty.php ├── row-meta.php └── template.php └── tests └── blueprints ├── fieldsets.yml ├── grid.yml ├── nesting.yml ├── options.yml ├── panel-fields.yml ├── supported-fields.yml ├── table.yml └── working-fields.yml /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /assets/js/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/add.js -------------------------------------------------------------------------------- /assets/js/clone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/clone.js -------------------------------------------------------------------------------- /assets/js/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/count.js -------------------------------------------------------------------------------- /assets/js/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/delete.js -------------------------------------------------------------------------------- /assets/js/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/id.js -------------------------------------------------------------------------------- /assets/js/outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/outline.js -------------------------------------------------------------------------------- /assets/js/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/render.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /assets/js/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/sort.js -------------------------------------------------------------------------------- /assets/js/toggleActive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/toggleActive.js -------------------------------------------------------------------------------- /assets/js/toggleDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/toggleDropdown.js -------------------------------------------------------------------------------- /assets/js/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/js/trigger.js -------------------------------------------------------------------------------- /assets/scss/action-items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/action-items.scss -------------------------------------------------------------------------------- /assets/scss/delete-message.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/delete-message.scss -------------------------------------------------------------------------------- /assets/scss/dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/dropdown.scss -------------------------------------------------------------------------------- /assets/scss/empty.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/empty.scss -------------------------------------------------------------------------------- /assets/scss/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/grid.scss -------------------------------------------------------------------------------- /assets/scss/has-fieldsets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/has-fieldsets.scss -------------------------------------------------------------------------------- /assets/scss/outline.scss: -------------------------------------------------------------------------------- 1 | .egr-outline { 2 | opacity: .5; 3 | } -------------------------------------------------------------------------------- /assets/scss/output.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/output.scss -------------------------------------------------------------------------------- /assets/scss/plugins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/scss/row-actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/row-actions.scss -------------------------------------------------------------------------------- /assets/scss/skeleton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/skeleton.scss -------------------------------------------------------------------------------- /assets/scss/sort.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/sort.scss -------------------------------------------------------------------------------- /assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/style.scss -------------------------------------------------------------------------------- /assets/scss/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/assets/scss/table.scss -------------------------------------------------------------------------------- /docs/advanced-for-plugin-developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/advanced-for-plugin-developers.md -------------------------------------------------------------------------------- /docs/blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/blueprint.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/compare.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/fields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/fields.md -------------------------------------------------------------------------------- /docs/fieldsets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/fieldsets.png -------------------------------------------------------------------------------- /docs/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/hero.png -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/nesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/nesting.png -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/presentation.png -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /docs/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/screenshots.md -------------------------------------------------------------------------------- /docs/sorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/sorting.png -------------------------------------------------------------------------------- /docs/templates-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/templates-snippets.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/docs/usage.md -------------------------------------------------------------------------------- /field-engineer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/field-engineer.php -------------------------------------------------------------------------------- /fields/engineer/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/css/style.css -------------------------------------------------------------------------------- /fields/engineer/assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/css/style.css.map -------------------------------------------------------------------------------- /fields/engineer/assets/css/style.css.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/css/style.css.min.map -------------------------------------------------------------------------------- /fields/engineer/assets/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/css/style.min.css -------------------------------------------------------------------------------- /fields/engineer/assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/js/script.js -------------------------------------------------------------------------------- /fields/engineer/assets/js/script.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/assets/js/script.min.js -------------------------------------------------------------------------------- /fields/engineer/engineer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/fields/engineer/engineer.php -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/field.php -------------------------------------------------------------------------------- /lib/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/form.php -------------------------------------------------------------------------------- /lib/outline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/outline.php -------------------------------------------------------------------------------- /lib/presentation-array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/presentation-array.php -------------------------------------------------------------------------------- /lib/presentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/presentation.php -------------------------------------------------------------------------------- /lib/tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/lib/tpl.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/readme.md -------------------------------------------------------------------------------- /snippets/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/actions.php -------------------------------------------------------------------------------- /snippets/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/delete.php -------------------------------------------------------------------------------- /snippets/dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/dropdown.php -------------------------------------------------------------------------------- /snippets/outline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/outline.php -------------------------------------------------------------------------------- /snippets/presentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/presentation.php -------------------------------------------------------------------------------- /snippets/row-actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/row-actions.php -------------------------------------------------------------------------------- /snippets/row-empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/row-empty.php -------------------------------------------------------------------------------- /snippets/row-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/row-meta.php -------------------------------------------------------------------------------- /snippets/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/snippets/template.php -------------------------------------------------------------------------------- /tests/blueprints/fieldsets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/fieldsets.yml -------------------------------------------------------------------------------- /tests/blueprints/grid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/grid.yml -------------------------------------------------------------------------------- /tests/blueprints/nesting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/nesting.yml -------------------------------------------------------------------------------- /tests/blueprints/options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/options.yml -------------------------------------------------------------------------------- /tests/blueprints/panel-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/panel-fields.yml -------------------------------------------------------------------------------- /tests/blueprints/supported-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/supported-fields.yml -------------------------------------------------------------------------------- /tests/blueprints/table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/table.yml -------------------------------------------------------------------------------- /tests/blueprints/working-fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirby-deprecated-plugins/field-engineer/HEAD/tests/blueprints/working-fields.yml --------------------------------------------------------------------------------