File tree 2 files changed +3
-22
lines changed
projects/ng-dynamic-forms/core/src/lib
2 files changed +3
-22
lines changed Original file line number Diff line number Diff line change 3
3
### **Features**
4
4
5
5
* Migration to Angular 16
6
+ * NG Dynamic Forms now exposes standalone components
6
7
7
8
### **Breaking Changes**
8
9
9
- * NG Dynamic Forms now exposes standalone components only
10
- * Kendo UI package is no longer be supported
10
+ * Kendo UI package is no longer supported
11
11
12
12
***
13
13
Original file line number Diff line number Diff line change 1
1
import { CommonModule } from "@angular/common" ;
2
- import { ModuleWithProviders , NgModule } from "@angular/core" ;
2
+ import { NgModule } from "@angular/core" ;
3
3
import { ReactiveFormsModule } from "@angular/forms" ;
4
4
import { DynamicListDirective } from "./directive/dynamic-list.directive" ;
5
5
import { DynamicTemplateDirective } from "./directive/dynamic-template.directive" ;
6
- import { DynamicFormService } from "./service/dynamic-form.service" ;
7
- import { DynamicFormLayoutService } from "./service/dynamic-form-layout.service" ;
8
- import { DynamicFormValidationService } from "./service/dynamic-form-validation.service" ;
9
- import { DynamicFormComponentService } from "./service/dynamic-form-component.service" ;
10
- import { DynamicFormRelationService } from "./service/dynamic-form-relation.service" ;
11
6
12
7
@NgModule ( {
13
8
imports : [
@@ -22,18 +17,4 @@ import { DynamicFormRelationService } from "./service/dynamic-form-relation.serv
22
17
]
23
18
} )
24
19
export class DynamicFormsCoreModule {
25
- /*@deprecated */
26
- static forRoot ( ) : ModuleWithProviders < DynamicFormsCoreModule > {
27
-
28
- return {
29
- ngModule : DynamicFormsCoreModule ,
30
- providers : [
31
- DynamicFormService ,
32
- DynamicFormLayoutService ,
33
- DynamicFormValidationService ,
34
- DynamicFormComponentService ,
35
- DynamicFormRelationService
36
- ]
37
- } ;
38
- }
39
20
}
You can’t perform that action at this time.
0 commit comments