ngx-iso-form 3.3.0 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/README.md +2 -0
  2. package/fesm2022/ngx-iso-form.mjs +117 -67
  3. package/fesm2022/ngx-iso-form.mjs.map +1 -1
  4. package/index.d.ts +272 -5
  5. package/lib/styles/index.scss +1 -1
  6. package/package.json +3 -3
  7. package/lib/Models/Control.d.ts +0 -20
  8. package/lib/Models/IsoForm.d.ts +0 -11
  9. package/lib/Models/Schema.d.ts +0 -28
  10. package/lib/components/controls/iso-base-control.component.d.ts +0 -10
  11. package/lib/components/controls/iso-mat-checkbox.component.d.ts +0 -6
  12. package/lib/components/controls/iso-mat-currency.component.d.ts +0 -6
  13. package/lib/components/controls/iso-mat-date.component.d.ts +0 -6
  14. package/lib/components/controls/iso-mat-datetime.component.d.ts +0 -6
  15. package/lib/components/controls/iso-mat-input.component.d.ts +0 -6
  16. package/lib/components/controls/iso-mat-select.component.d.ts +0 -6
  17. package/lib/components/controls/iso-mat-textarea.component.d.ts +0 -6
  18. package/lib/components/index.d.ts +0 -9
  19. package/lib/components/iso-control/iso-control.component.d.ts +0 -21
  20. package/lib/ngx-iso-form.component.d.ts +0 -39
  21. package/lib/ngx-iso-form.module.d.ts +0 -33
  22. package/lib/ngx-iso-form.service.d.ts +0 -20
  23. package/lib/shared/components/dynamic/ngx-dynamic.component.d.ts +0 -13
  24. package/lib/shared/directives/component-content.directive.d.ts +0 -8
  25. package/lib/shared/models/component.model.d.ts +0 -6
  26. package/lib/shared/pipe/error.pipe.d.ts +0 -10
  27. package/lib/shared/pipe/general.pipe.d.ts +0 -10
  28. package/lib/shared/pipe/translate.pipe.d.ts +0 -10
  29. package/lib/shared/services/component.service.d.ts +0 -8
  30. package/lib/shared/services/control.service.d.ts +0 -9
  31. package/lib/shared/services/custom-date-adapter.d.ts +0 -9
  32. package/lib/shared/services/index.d.ts +0 -2
  33. package/public-api.d.ts +0 -6
@@ -1,9 +0,0 @@
1
- import { FormControl } from "@angular/forms";
2
- import { ComponentModel } from "../models/component.model";
3
- import { SchemaElement } from "../../Models/Schema";
4
- import * as i0 from "@angular/core";
5
- export declare class ControlService {
6
- getComponentByType(controlModel: SchemaElement, formControl: FormControl): ComponentModel;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<ControlService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<ControlService>;
9
- }
@@ -1,9 +0,0 @@
1
- import { NativeDateAdapter, MatDateFormats } from '@angular/material/core';
2
- import * as i0 from "@angular/core";
3
- export declare class CustomDateAdapter extends NativeDateAdapter {
4
- format(date: Date, displayFormat: Object): string;
5
- private _to2digit;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<CustomDateAdapter, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<CustomDateAdapter>;
8
- }
9
- export declare const CUSTOM_DATE_FORMATS: MatDateFormats;
@@ -1,2 +0,0 @@
1
- export * from './component.service';
2
- export * from './control.service';
package/public-api.d.ts DELETED
@@ -1,6 +0,0 @@
1
- export * from './lib/ngx-iso-form.module';
2
- export * from './lib/ngx-iso-form.component';
3
- export * from './lib/shared/services';
4
- export { SchemaElement } from './lib/Models/Schema';
5
- export * from './lib/Models/Control';
6
- export * from './lib/Models/IsoForm';