ngx-rs-ant 2.0.9 → 2.1.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.
- package/data-grid/data-grid.service.d.ts +10 -12
- package/esm2020/data-grid/data-grid.component.mjs +3 -2
- package/esm2020/data-grid/data-grid.service.mjs +21 -17
- package/esm2020/form/form.component.mjs +4 -6
- package/fesm2015/ngx-rs-ant.mjs +26 -22
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +26 -22
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/form/form.component.d.ts +2 -2
- package/package.json +1 -1
package/form/form.component.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { FormService } from "./form.service";
|
|
3
|
-
import { DxButtonComponent
|
|
3
|
+
import { DxButtonComponent } from "devextreme-angular";
|
|
4
4
|
import { UniqueId } from "../util/UniqueId";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FormComponent extends UniqueId implements OnInit, OnChanges, OnDestroy {
|
|
@@ -20,9 +20,9 @@ export declare class FormComponent extends UniqueId implements OnInit, OnChanges
|
|
|
20
20
|
readonly: boolean;
|
|
21
21
|
config: any;
|
|
22
22
|
extraValidator?: string;
|
|
23
|
-
validator: DxValidationGroupComponent;
|
|
24
23
|
formSubmitter: DxButtonComponent;
|
|
25
24
|
onDataLoaded: EventEmitter<{
|
|
25
|
+
id: string;
|
|
26
26
|
config: any;
|
|
27
27
|
model: any;
|
|
28
28
|
}>;
|