ngx-rs-ant 1.8.7 → 1.8.8
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/esm2020/box-container/PluginManager.mjs +2 -1
- package/esm2020/form/form.component.mjs +10 -8
- package/esm2020/types/component/form-item-component-base.mjs +1 -1
- package/esm2020/util/UniqueId.mjs +10 -0
- package/esm2020/util/utils.mjs +16 -6
- package/fesm2015/ngx-rs-ant.mjs +101 -83
- package/fesm2015/ngx-rs-ant.mjs.map +1 -1
- package/fesm2020/ngx-rs-ant.mjs +35 -13
- package/fesm2020/ngx-rs-ant.mjs.map +1 -1
- package/form/form.component.d.ts +2 -1
- package/package.json +1 -1
- package/types/component/form-item-component-base.d.ts +4 -0
- package/util/UniqueId.d.ts +6 -0
- package/util/utils.d.ts +3 -2
package/form/form.component.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { FormService } from "./form.service";
|
|
3
3
|
import { DxButtonComponent, DxValidationGroupComponent } from "devextreme-angular";
|
|
4
|
+
import { UniqueId } from "../util/UniqueId";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FormComponent implements OnInit, OnChanges, OnDestroy {
|
|
6
|
+
export declare class FormComponent extends UniqueId implements OnInit, OnChanges, OnDestroy {
|
|
6
7
|
protected viewContainerRef: ViewContainerRef;
|
|
7
8
|
private service;
|
|
8
9
|
private elementRef;
|
package/package.json
CHANGED
package/util/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DxValidatorComponent } from "devextreme-angular";
|
|
2
2
|
export declare function notify_error(message: string): void;
|
|
3
3
|
export declare function notify_warning(message: string): void;
|
|
4
4
|
export declare function notify_success(message: string): void;
|
|
@@ -11,4 +11,5 @@ export declare function format_file_size(size: number): string;
|
|
|
11
11
|
export declare function filename_from_disposition(disposition: string): string | null;
|
|
12
12
|
export declare function download_file(blob: Blob, filename: string, callback?: Function): void;
|
|
13
13
|
export declare function validate(validator: DxValidatorComponent): Promise<boolean>;
|
|
14
|
-
export declare function validate_group(
|
|
14
|
+
export declare function validate_group(validationGroupComponent: any): Promise<boolean>;
|
|
15
|
+
export declare function validate_group_by_name(name: string, brokenElementParent: Element): Promise<boolean>;
|