Skip to content
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.

Commit

Permalink
fix: removed events
Browse files Browse the repository at this point in the history
  • Loading branch information
artemnih committed Nov 16, 2018
1 parent 919c205 commit 3244608
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 19 deletions.
2 changes: 1 addition & 1 deletion dist/ngx-forms.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ export { FormComponentType } from "./src/app/models/enums";
export { NgxFormModule } from "./src/app";
export { Field } from "./src/app/models/field.interface";
export { DynamicFieldService } from "./src/app/services/dynamic-field.service";
export { DynamicFormComponent } from "./src/app/containers/dynamic-form/dynamic-form.component";
export { Events } from "./src/app/models/events";
export { DynamicFormComponent } from "./src/app/containers/dynamic-form/dynamic-form.component";
5 changes: 2 additions & 3 deletions src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { DataService } from './app/services/data.service';
import { DynamicFieldService } from "./app/services/dynamic-field.service";
import { PreloadService } from './app/services/preload.service';
import { Events } from './app/models/events';

@NgModule({
imports: [
Expand All @@ -22,7 +21,7 @@ import { Events } from './app/models/events';
TagInputModule
],
declarations: [
Components,
Components,
DynamicFieldDirective,
DynamicFormComponent,
DynamicPanelComponent,
Expand All @@ -44,4 +43,4 @@ import { Events } from './app/models/events';
})
export class NgxFormModule { }

export { DynamicFieldService, DataService, Events }
export { DynamicFieldService, DataService }
1 change: 0 additions & 1 deletion src/app/containers/dynamic-form/dynamic-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Input, OnChanges, OnInit, OnDestroy } from '@angular/core';
import { FormGroup, FormBuilder, Validators, FormControl, FormArray } from '@angular/forms';
import { IFieldConfig } from '../../models/field-config.interface';
import { DataService } from '../../services/data.service';
import { Events } from '../../models/events';
import { ISubscription } from "rxjs/Subscription";
import { FormInputComponent } from '../../components/form-input/form-input.component';
import { FormSelectComponent } from '../../components/form-select/form-select.component';
Expand Down
12 changes: 0 additions & 12 deletions src/app/models/events.ts

This file was deleted.

0 comments on commit 3244608

Please sign in to comment.