mirror of https://github.com/abpframework/abp.git
5 changed files with 21 additions and 6 deletions
@ -1,3 +0,0 @@ |
|||
# @abp/ng.components/dynamic-form |
|||
|
|||
Secondary entry point of `@abp/ng.components`. It can be used by importing from `@abp/ng.components/dynamic-form`. |
|||
@ -0,0 +1,9 @@ |
|||
import { ChangeDetectionStrategy, Component } from '@angular/core'; |
|||
|
|||
@Component({ |
|||
selector: 'abp-dynamic-form-field', |
|||
template: ``, |
|||
changeDetection: ChangeDetectionStrategy.OnPush |
|||
}) |
|||
|
|||
export class DynamicFormFieldComponent {} |
|||
@ -1,8 +1,9 @@ |
|||
import { Component } from "@angular/core"; |
|||
import { ChangeDetectionStrategy, Component } from '@angular/core'; |
|||
|
|||
@Component({ |
|||
selector: 'lib-dynamic-form', |
|||
template: `` |
|||
selector: 'abp-dynamic-form', |
|||
template: ``, |
|||
changeDetection: ChangeDetectionStrategy.OnPush |
|||
}) |
|||
|
|||
export class DynamicFormComponent {} |
|||
|
|||
@ -0,0 +1,8 @@ |
|||
import { Injectable } from '@angular/core'; |
|||
|
|||
@Injectable({ |
|||
providedIn: 'root', |
|||
}) |
|||
export class DynamicFormFieldService { |
|||
// Add any shared logic for dynamic form fields here if needed in the future
|
|||
} |
|||
Loading…
Reference in new issue