@dignite-ng/expand.dynamic-form 3.0.0-rc.23 → 3.0.0-rc.25
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/esm2022/lib/components/form/form-control-group.mjs +4 -2
- package/esm2022/lib/components/form/numeric-edit/numberic-edit-control.component.mjs +9 -7
- package/esm2022/lib/components/form/numeric-edit/numeric-edit-search.component.mjs +107 -0
- package/esm2022/lib/components/form/select/select-search.component.mjs +8 -7
- package/esm2022/lib/dynamic-form.module.mjs +5 -2
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs +122 -15
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs.map +1 -1
- package/lib/components/form/numeric-edit/numberic-edit-control.component.d.ts +1 -1
- package/lib/components/form/numeric-edit/numeric-edit-search.component.d.ts +35 -0
- package/lib/dynamic-form.module.d.ts +7 -6
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ export declare class NumbericEditControlComponent {
|
|
|
18
18
|
_selected: any;
|
|
19
19
|
set selected(v: any);
|
|
20
20
|
/**表单实体 */
|
|
21
|
-
_entity: FormGroup |
|
|
21
|
+
_entity: FormGroup | any;
|
|
22
22
|
set entity(v: any);
|
|
23
23
|
submitclick: ElementRef;
|
|
24
24
|
get extraProperties(): FormGroup;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NumericEditSearchComponent {
|
|
5
|
+
private fb;
|
|
6
|
+
constructor(fb: FormBuilder);
|
|
7
|
+
/**字段配置列表 */
|
|
8
|
+
_fields: any;
|
|
9
|
+
set fields(v: any);
|
|
10
|
+
/**父级字段名称,用于为表单设置控件赋值 */
|
|
11
|
+
_parentFiledName: any;
|
|
12
|
+
set parentFiledName(v: any);
|
|
13
|
+
/**父级字段名称,用于为表单设置控件赋值 */
|
|
14
|
+
_selected: any;
|
|
15
|
+
set selected(v: any);
|
|
16
|
+
/**表单实体 */
|
|
17
|
+
_entity: FormGroup | undefined;
|
|
18
|
+
set entity(v: any);
|
|
19
|
+
submitclick: ElementRef;
|
|
20
|
+
get extraProperties(): FormGroup;
|
|
21
|
+
private cdr;
|
|
22
|
+
/**数据加载完成 */
|
|
23
|
+
dataLoaded(): Promise<void>;
|
|
24
|
+
/**定义动态字符 */
|
|
25
|
+
get numberInput(): FormControl;
|
|
26
|
+
/**定义number表单用于获取最小值最大值 */
|
|
27
|
+
numberForm: FormGroup;
|
|
28
|
+
get minInput(): FormControl;
|
|
29
|
+
get maxInput(): FormControl;
|
|
30
|
+
formConfiguration: any;
|
|
31
|
+
AfterInit(): Promise<unknown>;
|
|
32
|
+
ngOnDestroy(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericEditSearchComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericEditSearchComponent, "df-numeric-edit-search", never, { "fields": { "alias": "fields"; "required": false; }; "parentFiledName": { "alias": "parentFiledName"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; }, {}, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -23,14 +23,15 @@ import * as i20 from "./components/dynamic/dynamic-search.component";
|
|
|
23
23
|
import * as i21 from "./components/form/select/select-search.component";
|
|
24
24
|
import * as i22 from "./components/form/text-edit/text-edit-search.component";
|
|
25
25
|
import * as i23 from "./components/form/switch/switch-search.component";
|
|
26
|
-
import * as i24 from "
|
|
27
|
-
import * as i25 from "@
|
|
28
|
-
import * as i26 from "@abp/ng.
|
|
29
|
-
import * as i27 from "@
|
|
30
|
-
import * as i28 from "ng-
|
|
26
|
+
import * as i24 from "./components/form/numeric-edit/numeric-edit-search.component";
|
|
27
|
+
import * as i25 from "@angular/forms";
|
|
28
|
+
import * as i26 from "@abp/ng.core";
|
|
29
|
+
import * as i27 from "@abp/ng.theme.shared";
|
|
30
|
+
import * as i28 from "@ng-bootstrap/ng-bootstrap";
|
|
31
|
+
import * as i29 from "ng-zorro-antd/select";
|
|
31
32
|
export declare class DynamicFormModule {
|
|
32
33
|
static forRoot(config?: any): ModuleWithProviders<DynamicFormModule>;
|
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormModule, never>;
|
|
34
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormModule, [typeof i1.TextEditConfigComponent, typeof i2.TextEditComponent, typeof i3.SwitchConfigComponent, typeof i4.SwitchControlComponent, typeof i5.NumbericEditConfigComponent, typeof i6.NumbericEditControlComponent, typeof i7.DateEditConfigComponent, typeof i8.DateEditControlComponent, typeof i9.SelectConfigComponent, typeof i10.SelectControlComponent, typeof i11.DynamicComponent, typeof i12.DynamicConfigComponent, typeof i13.DynamicViewComponent, typeof i14.DynamicControlComponent, typeof i15.SelectViewComponent, typeof i16.SwitchViewComponent, typeof i17.TextEditViewComponent, typeof i18.DateEditViewComponent, typeof i19.NumericEditViewComponent, typeof i20.DynamicSearchComponent, typeof i21.SelectSearchComponent, typeof i22.TextEditSearchComponent, typeof i23.SwitchSearchComponent], [typeof
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormModule, [typeof i1.TextEditConfigComponent, typeof i2.TextEditComponent, typeof i3.SwitchConfigComponent, typeof i4.SwitchControlComponent, typeof i5.NumbericEditConfigComponent, typeof i6.NumbericEditControlComponent, typeof i7.DateEditConfigComponent, typeof i8.DateEditControlComponent, typeof i9.SelectConfigComponent, typeof i10.SelectControlComponent, typeof i11.DynamicComponent, typeof i12.DynamicConfigComponent, typeof i13.DynamicViewComponent, typeof i14.DynamicControlComponent, typeof i15.SelectViewComponent, typeof i16.SwitchViewComponent, typeof i17.TextEditViewComponent, typeof i18.DateEditViewComponent, typeof i19.NumericEditViewComponent, typeof i20.DynamicSearchComponent, typeof i21.SelectSearchComponent, typeof i22.TextEditSearchComponent, typeof i23.SwitchSearchComponent, typeof i24.NumericEditSearchComponent], [typeof i25.FormsModule, typeof i26.CoreModule, typeof i27.ThemeSharedModule, typeof i25.ReactiveFormsModule, typeof i28.NgbDropdownModule, typeof i29.NzSelectModule], [typeof i1.TextEditConfigComponent, typeof i2.TextEditComponent, typeof i17.TextEditViewComponent, typeof i3.SwitchConfigComponent, typeof i4.SwitchControlComponent, typeof i16.SwitchViewComponent, typeof i5.NumbericEditConfigComponent, typeof i6.NumbericEditControlComponent, typeof i7.DateEditConfigComponent, typeof i8.DateEditControlComponent, typeof i18.DateEditViewComponent, typeof i9.SelectConfigComponent, typeof i10.SelectControlComponent, typeof i15.SelectViewComponent, typeof i21.SelectSearchComponent, typeof i11.DynamicComponent, typeof i12.DynamicConfigComponent, typeof i13.DynamicViewComponent, typeof i14.DynamicControlComponent, typeof i20.DynamicSearchComponent]>;
|
|
35
36
|
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFormModule>;
|
|
36
37
|
}
|