├── src ├── assets │ └── .gitkeep ├── app │ ├── app.component.scss │ ├── form-builder │ │ ├── form-builder.component.scss │ │ ├── form-builder.component.html │ │ ├── form-builder.component.spec.ts │ │ ├── form-builder.component.ts │ │ └── options.ts │ ├── form-renderer │ │ ├── form-renderer.component.scss │ │ ├── form-renderer.component.html │ │ ├── form-renderer.component.ts │ │ └── form-renderer.component.spec.ts │ ├── app-routing.module.ts │ ├── app.module.ts │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.component.html ├── favicon.ico ├── styles.scss ├── main.ts └── index.html ├── screenshots ├── formBuilder.png ├── formBuilderBlank.png ├── formRendererBlank.png ├── formRendererFilled.png └── formRendererReadOnly.png ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── tsconfig.app.json ├── tsconfig.spec.json ├── .editorconfig ├── .gitignore ├── tsconfig.json ├── package.json ├── angular.json └── README.md /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/form-builder/form-builder.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/form-renderer/form-renderer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /screenshots/formBuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/screenshots/formBuilder.png -------------------------------------------------------------------------------- /screenshots/formBuilderBlank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/screenshots/formBuilderBlank.png -------------------------------------------------------------------------------- /screenshots/formRendererBlank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/screenshots/formRendererBlank.png -------------------------------------------------------------------------------- /screenshots/formRendererFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/screenshots/formRendererFilled.png -------------------------------------------------------------------------------- /screenshots/formRendererReadOnly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AniruddhaSadhukhan/dynamic-forms/HEAD/screenshots/formRendererReadOnly.png -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 3 | "recommendations": ["angular.ng-template"] 4 | } 5 | -------------------------------------------------------------------------------- /src/app/form-renderer/form-renderer.component.html: -------------------------------------------------------------------------------- 1 |
67 | {{form | json }}
68 |
69 |
98 | {{currentSubmission | json }}
99 |
100 |